|
@@ -70,6 +70,22 @@
|
|
</a-select>
|
|
</a-select>
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
|
+ <a-form-item label="开票状态">
|
|
|
|
+ <v-select
|
|
|
|
+ v-model="queryParam.invoiceDateType"
|
|
|
|
+ ref="invoiceDateType"
|
|
|
|
+ id="collectionDetail-invoiceDateType"
|
|
|
|
+ code="FLAG"
|
|
|
|
+ placeholder="请选择开票状态"
|
|
|
|
+ allowClear></v-select>
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
|
+ <a-form-item label="收款日期">
|
|
|
|
+ <rangeDate ref="receiptDate" :value="receiptDate" @change="receiptDateChange" />
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
<a-col :md="4" :sm="24">
|
|
<a-col :md="4" :sm="24">
|
|
<a-form-item label="所属区域">
|
|
<a-form-item label="所属区域">
|
|
<subarea id="collectionDetail-subarea" v-model="queryParam.subareaSn"></subarea>
|
|
<subarea id="collectionDetail-subarea" v-model="queryParam.subareaSn"></subarea>
|
|
@@ -122,6 +138,11 @@
|
|
:data="loadData"
|
|
:data="loadData"
|
|
:scroll="{ y: tableHeight }"
|
|
:scroll="{ y: tableHeight }"
|
|
bordered>
|
|
bordered>
|
|
|
|
+ <!-- 开票日期 -->
|
|
|
|
+ <template slot="draftDate" slot-scope="text, record">
|
|
|
|
+ <span v-if="$hasPermissions('B_fc_detail')" class="link-bule" @click="handleDetail(record)">{{ record.bookNo }}</span>
|
|
|
|
+ <span v-else>{{ record.bookNo }}</span>
|
|
|
|
+ </template>
|
|
</s-table>
|
|
</s-table>
|
|
</a-spin>
|
|
</a-spin>
|
|
</a-card>
|
|
</a-card>
|
|
@@ -237,6 +258,7 @@ export default {
|
|
{ title: '户名', dataIndex: 'bankAccount', align: 'center', width: '5%', customRender: function (text) { return text || '--' } },
|
|
{ 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: '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: 'fullPaymentFlagDictValue', align: 'center', width: '5%', customRender: function (text) { return (text == 0 || text) ? text : '--' } },
|
|
|
|
+ { title: '开票日期', scopedSlots: { customRender: 'draftDate' },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: 'remarks', align: 'center', width: '8%', customRender: function (text) { return text || '--' }, ellipsis: true }
|
|
]
|
|
]
|
|
return arr
|
|
return arr
|