yujialong 3 months ago
parent 50879e3708
commit debdf2a559
  1. 13
      src/pages/counter/list/index.vue
  2. 1629
      src/pages/lobbyManager/list/index.vue
  3. 12
      src/pages/manage/list/corporateLoans/apply/creditApplication/index.vue
  4. 1
      src/pages/manage/list/personalLoans/detail.vue

@ -698,10 +698,6 @@ export default {
},
computed: {
...mapState('system', ['isCredit', 'creditImportIndex', 'creditImportIds']),
//
isCredit: function () {
return this.$store.state.system.isCredit;
},
// id
isSeal () {
const stampMap2 = {
@ -1568,9 +1564,12 @@ export default {
closeData () {
this.checkList = [];
},
showManage () {//
this.manageVisible = true;
this.$router.push(sessionStorage.getItem(this.isCredit ? 'creditPath' : 'computerPath') || (this.isCredit ? '/counter/list/manage/personalLoans' : '/counter/list/manage/consumerClient'))
showManage (toDefault) {//
const path = sessionStorage.getItem(this.isCredit ? 'creditPath' : 'computerPath')
if (path || toDefault) {
this.manageVisible = true;
this.$router.push(path || (this.isCredit ? '/counter/list/manage/personalLoans' : '/counter/list/manage/consumerClient'))
}
},
popSure () {/* 弹框-确定 */
//

File diff suppressed because it is too large Load Diff

@ -408,13 +408,13 @@ export default {
const preId = '285,' + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id + ',766,768'
const rule = []
form.cooperationPeriod && rule.push({ answerId: 875, emptyOne: 149, emptyTwo: form.cooperationPeriod, operationIds: preId + ',875', type: 3 })
form.matureRepayment && rule.push({ answerId: 798, emptyOne: 147, emptyTwo: 269, operationIds: preId + ',798', type: 1 })
form.otherRepayments && rule.push({ answerId: 798, emptyOne: 147, emptyTwo: 270, operationIds: preId + ',798', type: 1 })
form.matureRepayment && rule.push({ answerId: 907, emptyOne: '', emptyTwo: '', operationIds: preId + ',798,907', type: '' })
form.otherRepayments && rule.push({ answerId: 894, emptyOne: 153, emptyTwo: form.otherRepayments, operationIds: preId + ',798,894', type: 3 })
form.paymentForMaterials && rule.push({ answerId: 833, emptyOne: 148, emptyTwo: 271, operationIds: preId + ',833', type: 1 })
form.payLaborCosts && rule.push({ answerId: 833, emptyOne: 148, emptyTwo: 272, operationIds: preId + ',833', type: 1 })
form.payExpenses && rule.push({ answerId: 833, emptyOne: 148, emptyTwo: 273, operationIds: preId + ',833', type: 1 })
form.otherUses && rule.push({ answerId: 833, emptyOne: 148, emptyTwo: 274, operationIds: preId + ',833', type: 1 })
form.paymentForMaterials && rule.push({ answerId: 908, emptyOne: '', emptyTwo: '', operationIds: preId + ',833,908', type: '' })
form.payLaborCosts && rule.push({ answerId: 909, emptyOne: '', emptyTwo: '', operationIds: preId + ',833,909', type: '' })
form.payExpenses && rule.push({ answerId: 910, emptyOne: '', emptyTwo: '', operationIds: preId + ',833,910', type: '' })
form.otherUses && rule.push({ answerId: 895, emptyOne: 153, emptyTwo: form.otherUses, operationIds: preId + ',833,895', type: 3 })
form.specialInstructions && rule.push({ answerId: 802, emptyOne: 125, emptyTwo: form.specialInstructions, operationIds: preId + ',802', type: 3 })

@ -445,6 +445,7 @@ export default {
},
mounted () {
this.getDetail()
sessionStorage.removeItem('creditPath')
},
methods: {
...mapMutations({

Loading…
Cancel
Save