소스 검색

列表 去掉点状标识

chenrui 3 년 전
부모
커밋
6df12f3e0b

+ 0 - 4
src/views/allocationManagement/transferOut/list.vue

@@ -78,10 +78,6 @@
         <template slot="allocateNo" slot-scope="text, record">
           <span :class="$hasPermissions('M_transferOut_detail')?'active':'common'" @click="handleDetail(record)">{{ record.allocateNo }}</span>
         </template>
-        <!-- 财务状态 -->
-        <template slot="settleState" slot-scope="text, record">
-          <a-badge :color="text=='FINISH'?'#87d068':'gold'" :text="record.settleStateDictValue" />
-        </template>
         <!-- 操作 -->
         <template slot="action" slot-scope="text, record">
           <a-button

+ 1 - 5
src/views/financialManagement/financialCollection/list.vue

@@ -127,10 +127,6 @@
         <template slot="salesBillNo" slot-scope="text, record">
           <span :class="$hasPermissions('B_salesDetail')?'active':'common'" @click="handleDetail(record)">{{ record.salesBillNo }}</span>
         </template>
-        <!-- 财务状态 -->
-        <template slot="financialStatus" slot-scope="text, record">
-          <a-badge :color="text=='FINISH'?'#87d068':'gold'" :text="record.financialStatusDictValue" />
-        </template>
         <!-- 操作 -->
         <template slot="action" slot-scope="text, record">
           <a-button
@@ -193,7 +189,7 @@ export default {
         { title: '收款方式', dataIndex: 'settleStyleSnDictValue', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
         { title: '备注', dataIndex: 'remarks', width: 200, align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
         { title: '业务状态', dataIndex: 'billStatusDictValue', width: 120, align: 'center', customRender: function (text) { return text || '--' } },
-        { title: '财务状态', dataIndex: 'financialStatus', scopedSlots: { customRender: 'financialStatus' }, width: 120, align: 'center' },
+        { title: '财务状态', dataIndex: 'financialStatusDictValue', width: 120, align: 'center', customRender: function (text) { return text || '--' } },
         { title: '操作', scopedSlots: { customRender: 'action' }, width: 100, align: 'center', fixed: 'right' }
       ],
       // 加载数据方法 必须为 Promise 对象

+ 1 - 5
src/views/productManagement/productInfo/list.vue

@@ -134,10 +134,6 @@
           <span v-if="record.productTypeName2 || record.productTypeName3">{{ record.productTypeName2 }} {{ record.productTypeName3 ? '>' : '' }} {{ record.productTypeName3 }}</span>
           <span v-else>--</span>
         </template>
-        <!-- 定价状态 -->
-        <template slot="pricingState" slot-scope="text, record">
-          <a-badge :color="record.pricingState=='WAIT_PRICING'?'gold':record.pricingState=='WAIT_PRICING_AUDIT'?'volcano':'#87d068'" :text="record.pricingStateDictValue" />
-        </template>
         <!-- 操作 -->
         <template slot="action" slot-scope="text, record">
           <a-button
@@ -231,7 +227,7 @@ export default {
         { slots: { title: 'arrowFalgTitle' }, scopedSlots: { customRender: 'arrowFalg' }, width: 100, align: 'center' },
         { title: '最近修改时间', dataIndex: 'updateDate', width: 160, align: 'center', customRender: function (text) { return text || '--' } },
         { title: '产品状态', dataIndex: 'stateDictValue', width: 140, align: 'center', customRender: function (text) { return text || '--' } },
-        { title: '定价状态', scopedSlots: { customRender: 'pricingState' }, width: 140, align: 'center' },
+        { title: '定价状态', dataIndex: 'pricingStateDictValue', width: 140, align: 'center', customRender: function (text) { return text || '--' } },
         { title: '操作', scopedSlots: { customRender: 'action' }, width: 250, align: 'center', fixed: 'right' }
       ],
       selectedRowKeys: [], // Check here to configure the default column

+ 1 - 5
src/views/productManagement/productPricing/list.vue

@@ -79,10 +79,6 @@
         <span v-if="record.productTypeName2 || record.productTypeName3">{{ record.productTypeName2 }} {{ record.productTypeName3 ? '>' : '' }} {{ record.productTypeName3 }}</span>
         <span v-else>--</span>
       </template>
-      <!-- 定价状态 -->
-      <template slot="pricingState" slot-scope="text, record">
-        <a-badge :color="record.pricingState=='WAIT_PRICING'?'gold':record.pricingState=='WAIT_PRICING_AUDIT'?'volcano':'#87d068'" :text="record.pricingStateDictValue" />
-      </template>
       <!-- 成本价 -->
       <template slot="sterminaldsdPrice" slot-scope="text, record">
         <div v-if="record.supplierProductList">
@@ -151,7 +147,7 @@ export default {
         { title: '品牌', dataIndex: 'productBrandName', width: 200, align: 'center', customRender: function (text) { return text || '--' } },
         { title: '产品分类', scopedSlots: { customRender: 'productType' }, width: 200, align: 'center' },
         { title: '产品状态', dataIndex: 'stateDictValue', width: 140, align: 'center', customRender: function (text) { return text || '--' } },
-        { title: '定价状态', scopedSlots: { customRender: 'pricingState' }, width: 140, align: 'center' },
+        { title: '定价状态', dataIndex: 'pricingStateDictValue', width: 140, align: 'center', customRender: function (text) { return text || '--' } },
         { title: '成本价', scopedSlots: { customRender: 'sterminaldsdPrice' }, width: 200, align: 'center' },
         { title: '省级价', dataIndex: 'provincePrice', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
         { title: '市级价', dataIndex: 'cityPrice', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },

+ 0 - 4
src/views/purchasingManagement/bulkWarehousingOrder/list.vue

@@ -54,10 +54,6 @@
         <template slot="sparePartsNo" slot-scope="text, record">
           <span :class="$hasPermissions('B_sparePartsDetail')?'active':'common'" @click="handleDetail(record)">{{ record.sparePartsNo }}</span>
         </template>
-        <!-- 财务状态 -->
-        <template slot="settleState" slot-scope="text, record">
-          <a-badge :color="text=='FINISH'?'#87d068':'gold'" :text="record.settleStateDictValue" />
-        </template>
         <!-- 操作 -->
         <template slot="action" slot-scope="text, record">
           <a-button

+ 1 - 5
src/views/salesManagement/salesQuery/list.vue

@@ -122,10 +122,6 @@
         <template slot="totalQty" slot-scope="text, record">
           {{ record.totalQty }}
         </template>
-        <!-- 财务状态 -->
-        <template slot="financialStatus" slot-scope="text, record">
-          <a-badge :color="text=='FINISH'?'#87d068':'gold'" :text="record.financialStatusDictValue" />
-        </template>
         <!-- 操作 -->
         <template slot="action" slot-scope="text, record">
           <a-button
@@ -255,7 +251,7 @@ export default {
         { title: '审核时间', dataIndex: 'auditDate', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
         { title: '最近备货时间', dataIndex: 'lastStockUpDate', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
         { title: '业务状态', dataIndex: 'billStatusDictValue', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
-        { title: '财务状态', dataIndex: 'financialStatus', scopedSlots: { customRender: 'financialStatus' }, width: 100, align: 'center' },
+        { title: '财务状态', dataIndex: 'financialStatusDictValue', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
         { title: '打印次数', dataIndex: 'detailPrintTimes', width: 50, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
         { title: '操作', scopedSlots: { customRender: 'action' }, width: 150, align: 'center', fixed: 'right' }
       ],

+ 0 - 4
src/views/salesManagement/salesReturn/list.vue

@@ -94,10 +94,6 @@
           <span style="color: #ed1c24;cursor: pointer;" v-if="$hasPermissions('B_salesReturnDetail')" @click="handleDetail(record)">{{ record.salesReturnBillNo }}</span>
           <span v-else>{{ record.salesReturnBillNo }}</span>
         </template>
-        <!-- 财务状态 -->
-        <!-- <template slot="financialStatus" slot-scope="text, record">
-          <a-badge :color="text=='FINISH'?'#87d068':'gold'" :text="record.financialStatusDictValue" />
-        </template> -->
         <!-- 操作 -->
         <template slot="action" slot-scope="text, record">
           <a-button