|
@@ -22,8 +22,11 @@
|
|
|
</a-col>
|
|
</a-col>
|
|
|
<template v-if="advanced">
|
|
<template v-if="advanced">
|
|
|
<a-col :md="6" :sm="24">
|
|
<a-col :md="6" :sm="24">
|
|
|
- <a-form-item label="变更状态">
|
|
|
|
|
- <v-select code="ENABLE_FLAG" id="productChangeRecordList-productStatus" v-model="queryParam.enabledFlag" allowClear placeholder="请选择变更状态"></v-select>
|
|
|
|
|
|
|
+ <a-form-item label="是否显示">
|
|
|
|
|
+ <a-select id="productChangeRecordList-productStatus" v-model="queryParam.enabledFlag" allowClear placeholder="请选择是否显示">
|
|
|
|
|
+ <a-select-option value="1">显示</a-select-option>
|
|
|
|
|
+ <a-select-option value="0">不显示</a-select-option>
|
|
|
|
|
+ </a-select>
|
|
|
</a-form-item>
|
|
</a-form-item>
|
|
|
</a-col>
|
|
</a-col>
|
|
|
<a-col :md="6" :sm="24">
|
|
<a-col :md="6" :sm="24">
|
|
@@ -79,7 +82,7 @@
|
|
|
</template>
|
|
</template>
|
|
|
<!-- 变更状态 -->
|
|
<!-- 变更状态 -->
|
|
|
<span slot="productStatus" slot-scope="text, record">
|
|
<span slot="productStatus" slot-scope="text, record">
|
|
|
- <a-switch checkedChildren="启用" :id="'productChangeRecordList-enabledFlag'+record.id" unCheckedChildren="禁用" v-model="record.enabledFlag" @change="changeFlagHandle(text, record)"/>
|
|
|
|
|
|
|
+ <a-switch checkedChildren="显示" :id="'productChangeRecordList-enabledFlag'+record.id" unCheckedChildren="不显示" v-model="record.enabledFlag" @change="changeFlagHandle(text, record)"/>
|
|
|
</span>
|
|
</span>
|
|
|
<!-- 省级价变更后 -->
|
|
<!-- 省级价变更后 -->
|
|
|
<template slot="afterProvincePrice" slot-scope="text, record">
|
|
<template slot="afterProvincePrice" slot-scope="text, record">
|
|
@@ -189,7 +192,7 @@ export default {
|
|
|
{ title: '产品分类', scopedSlots: { customRender: 'productType' }, width: 120, align: 'left' },
|
|
{ title: '产品分类', scopedSlots: { customRender: 'productType' }, width: 120, align: 'left' },
|
|
|
{ title: '单位', dataIndex: 'productEntity.unit', width: 50, align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '单位', dataIndex: 'productEntity.unit', width: 50, align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '变更原因', dataIndex: 'changeReason', width: 70, align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
{ title: '变更原因', dataIndex: 'changeReason', width: 70, align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
- { title: '变更状态', scopedSlots: { customRender: 'productStatus' }, width: 70, align: 'center' }
|
|
|
|
|
|
|
+ { title: '是否显示', scopedSlots: { customRender: 'productStatus' }, width: 70, align: 'center' }
|
|
|
]
|
|
]
|
|
|
arr.push({
|
|
arr.push({
|
|
|
title: '省级价',
|
|
title: '省级价',
|