Просмотр исходного кода

Merge branch 'deploy' of http://git.chelingzhu.com/jianguan-web/qpls-md-html into deploy

lilei 4 лет назад
Родитель
Сommit
a9361f8edc

+ 1 - 1
src/views/financialManagement/companyReceivablePayable/chooseBillModal.vue

@@ -23,7 +23,7 @@
                 v-model="queryParam.bizType"
                 ref="bizType"
                 id="chooseBillModal-bizType"
-                code="PUT_STOCK_TYPE"
+                code="SETTLE_BIZ_TYPE"
                 placeholder="请选择单据类型"
                 allowClear></v-select>
             </a-form-item>

+ 3 - 3
src/views/financialManagement/companyReceivablePayable/list.vue

@@ -64,10 +64,10 @@ export default {
       // 表头
       columns: [
         { title: '序号', dataIndex: 'no', width: 80, align: 'center' },
-        { title: '单位名称', dataIndex: 'unitSettleName', align: 'center', customRender: function (text) { return text || '--' } },
+        { title: '单位名称', dataIndex: 'settleClientName', align: 'center', customRender: function (text) { return text || '--' } },
         { title: '单位类型', dataIndex: 'settleClientTypeDictValue', align: 'center', customRender: function (text) { return text || '--' } },
-        { title: '应收金额', dataIndex: 'totalP', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
-        { title: '应付金额', dataIndex: 'tostalP', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
+        { title: '应收金额', dataIndex: 'unSettleAmountReceipt', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
+        { title: '应付金额', dataIndex: 'unSettleAmountPay', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
         { title: '操作', scopedSlots: { customRender: 'action' }, width: 250, align: 'center' }
       ],
       // 加载数据方法 必须为 Promise 对象