Browse Source

Merge branch 'dev_contract'

shibei_master
zhangyuan 3 years ago
parent
commit
cd7ced96d6
  1. 10
      src/views/modules/plugins/rent/rentcontractinfo-add-or-update.vue

10
src/views/modules/plugins/rent/rentcontractinfo-add-or-update.vue

@ -255,6 +255,16 @@ export default {
homeId: this.dataForm.homeId
}
this.$http.post('/pli/power/rentContractInfo/review', params).then(({ data: res }) => {
if (res.code !== 0) {
return this.$message.error(res.msg)
}
//
this.fileJurisdiction(params)
}).catch(() => {})
},
//
fileJurisdiction (params) {
this.$http.post('/pli/power/rentContractInfo/send', params).then(({ data: res }) => {
if (res.code !== 0) {
return this.$message.error(res.msg)
}

Loading…
Cancel
Save