Browse Source

完善出纳款项确认--查询条件中认款状态改为审核状态

master
yunuo970428 2 years ago
parent
commit
367316a91c
  1. 30
      anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/paymentConfirmation/cashierConfirmation.vue

30
anrui-buscenter/anrui-finmanage-ui/src/views/anruifinmanagement/paymentConfirmation/cashierConfirmation.vue

@ -20,9 +20,9 @@
<el-option v-for="item in receiptBank_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictKey"/>
</el-select>
</el-form-item>
<el-form-item label="认款状态:" class="searchlist">
<el-select v-model="listQuery.params.subscriptionState" placeholder="请选择" filterable clearable>
<el-option v-for="item in subscriptionState_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictKey"/>
<el-form-item label="审核状态:" class="searchlist">
<el-select v-model="listQuery.params.auditState" placeholder="请选择" filterable clearable>
<el-option v-for="item in auditState_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictKey"/>
</el-select>
</el-form-item>
<el-form-item label="盖章日期:" class="searchlist">
@ -58,11 +58,11 @@
<span>{{ scope.row.auditState == 1 ? '待审核' : scope.row.auditState == 2 ? '已驳回' : scope.row.auditState ==3 ? '已审核' : '其他' }}</span>
</template>
</el-table-column>
<el-table-column label="认款状态" align="center" width="100">
<template slot-scope="scope">
<span>{{ scope.row.subscriptionState == 1 ? '未认款' : scope.row.subscriptionState == 2 ? '部分认款' : scope.row.subscriptionState == 3 ? '已认款' : '其他' }}</span>
</template>
</el-table-column>
<!-- <el-table-column label="认款状态" align="center" width="100">-->
<!-- <template slot-scope="scope">-->
<!-- <span>{{ scope.row.subscriptionState == 1 ? '未认款' : scope.row.subscriptionState == 2 ? '部分认款' : scope.row.subscriptionState == 3 ? '已认款' : '其他' }}</span>-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column label="下载次数" align="center" width="90">
<template slot-scope="scope">
<span>{{ scope.row.downNum }}</span>
@ -200,18 +200,18 @@ export default {
btnLabel: '关闭'
}
],
subscriptionState_list: [
auditState_list: [
{
dictKey: 1,
dictValue: '未认款'
dictValue: '待审核'
},
{
dictKey: 2,
dictValue: '部分认款'
dictValue: '已驳回'
},
{
dictKey: 3,
dictValue: '已认款'
dictValue: '已审核'
}
],
listLoading: false,
@ -228,7 +228,8 @@ export default {
useOrgSid: '',
createBySid: '',
state: '',
orgPath: ''
orgPath: '',
auditState: ''
},
total: 0
}
@ -333,7 +334,8 @@ export default {
useOrgSid: '',
createBySid: '',
state: '',
orgPath: ''
orgPath: '',
auditState: ''
},
total: 0
}

Loading…
Cancel
Save