Browse Source

完善财务逾期对账

master
yunuo970428 1 year ago
parent
commit
7aed4cb53b
  1. 20
      anrui-riskcenter-ui/src/views/overduereconciliationfinancing/overduereconciliationfinancing.vue
  2. 6
      anrui-riskcenter-ui/src/views/workFlow/caiwuduizhangFlow/caiwuduizhangByExport.vue
  3. 6
      anrui-riskcenter-ui/src/views/workFlow/caiwuduizhangFlow/caiwuduizhangDaiBan.vue

20
anrui-riskcenter-ui/src/views/overduereconciliationfinancing/overduereconciliationfinancing.vue

@ -57,12 +57,12 @@
<span v-else @click="flowRecord(scope.row)" class="bluezi">{{ scope.row.nodeState }}</span>
</template>
</el-table-column>
<el-table-column label="分公司" align="center">
<el-table-column label="分公司" align="center" width="120">
<template slot-scope="scope">
<span>{{ scope.row.useOrgName }}</span>
</template>
</el-table-column>
<el-table-column label="申请部门" align="center">
<el-table-column label="申请部门" align="center" width="130">
<template slot-scope="scope">
<span>{{ scope.row.createDept }}</span>
</template>
@ -167,6 +167,7 @@ export default {
tableKey: 0,
list: [],
sids: [], // SIDs
multipleSelection: [],
FormLoading: false,
listLoading: false,
//
@ -255,6 +256,7 @@ export default {
// sid
handleSelectionChange(row) {
const aa = []
this.multipleSelection = row
row.forEach(element => {
aa.push(element.sid)
})
@ -314,8 +316,12 @@ export default {
this.$refs['divAdd'].showAdd()
},
toEdit(row) {
this.viewState = 3
this.$refs['divAdd'].showEdit(row)
if (row.allowModify) {
this.viewState = 3
this.$refs['divAdd'].showEdit(row)
} else {
this.$message({ showClose: true, type: 'error', message: '非本人发起的申请,无权限操作' })
}
},
toInfo(row) {
this.viewState = 4
@ -327,6 +333,12 @@ export default {
this.$message({ showClose: true, type: 'error', message: '请选择至少一条记录进行删除操作' })
return
}
for (var i = 0; i < this.multipleSelection.length; i++) {
if (!this.multipleSelection[i].allowModify) {
this.$message({ showClose: true, type: 'error', message: '非本人发起的申请,无权限操作' })
return
}
}
const tip = '请确认是否删除所选 ' + this.sids.length + ' 条记录?'
this.$confirm(tip, '提示', {
confirmButtonText: '确定',

6
anrui-riskcenter-ui/src/views/workFlow/caiwuduizhangFlow/caiwuduizhangByExport.vue

@ -140,6 +140,7 @@
<script>
import req from '@/api/overduereconciliationfinancing/overduereconciliationfinancing'
import { selectStaffListss } from '@/api/Common/dictcommons'
export default {
name: 'CaiWuDuiZhangByExport',
@ -265,6 +266,11 @@ export default {
}
}
})
selectStaffListss().then((res) => {
if (res.success) {
this.options = res.data
}
})
},
//
toExport() {

6
anrui-riskcenter-ui/src/views/workFlow/caiwuduizhangFlow/caiwuduizhangDaiBan.vue

@ -102,6 +102,7 @@
<script>
import req from '@/api/overduereconciliationfinancing/overduereconciliationfinancing'
import { selectStaffListss } from '@/api/Common/dictcommons'
export default {
name: 'CaiWuDuiZhangDaiBan',
@ -213,6 +214,11 @@ export default {
}
}
})
selectStaffListss().then((res) => {
if (res.success) {
this.options = res.data
}
})
},
//
openCountersign(val) {

Loading…
Cancel
Save