|
|
@ -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) |
|
|
|
} |
|
|
|