Browse Source

修改说明

liujun 2 năm trước cách đây
mục cha
commit
ff73bc5bbf

+ 2 - 2
src/views/financialManagement/collectionDetailStatic/list.vue

@@ -147,7 +147,7 @@
           </div>
         </template>
         <!-- 收款打印状态 -->
-        <template slot="note" slot-scope="text, record">
+        <template slot="printStatus" slot-scope="text, record">
           <span v-if="record.printStatus!='NO_PRINT'&&record.printStatus!='PRINT'">{{record.printStatusDictValue}}</span>
           <span @click="handlePrint(record)" class="link-bule" v-else>{{record.printStatusDictValue}}</span>
         </template>
@@ -289,7 +289,7 @@ export default {
         { title: '户名', dataIndex: 'bankAccount', align: 'center', width: '5%', customRender: function (text) { return text || '--' } },
         { title: '汇入银行', dataIndex: 'bankName', align: 'center', width: '5%', customRender: function (text) { return text || '--' } },
         { title: '足额打款', dataIndex: 'fullPaymentFlagDictValue', align: 'center', width: '5%',customRender: function (text) { return (text == 0 || text) ? text : '--' }},
-        { title: '说明', dataIndex: 'remarks', align: 'center', width: '8%', customRender: function (text) { return text || '--' }, ellipsis: true },
+        { title: '说明', dataIndex: 'explainInfo', align: 'center', width: '8%', customRender: function (text) { return text || '--' }, ellipsis: true },
         { title: '开票日期', scopedSlots: { customRender: 'draftDate' },align: 'center', width: '8%'},
         { title: '收款打印状态', scopedSlots: { customRender: 'printStatus' },align: 'center', width: '8%'},
         { title: '备注', scopedSlots: { customRender: 'note' },align: 'center', width: '8%'},