Browse Source

更新驳回

epdc-admin-dangqun
fengyu 3 years ago
parent
commit
f45215c255
  1. 2
      public/index.html
  2. 15
      src/views/modules/events/item-reject-deal-detail-view.vue

2
public/index.html

@ -36,7 +36,7 @@
<% if (process.env.VUE_APP_NODE_ENV === 'dev') { %>
<script>
// window.SITE_CONFIG['apiURL'] = 'http://localhost:9094/epdc-api'
window.SITE_CONFIG['apiURL'] = 'http://192.168.43.20:9094/epdc-api'
window.SITE_CONFIG['apiURL'] = 'https://epdc-shibei.elinkservice.cn/epdc-api'
</script>
<% } %>
<!-- 集成测试环境 -->

15
src/views/modules/events/item-reject-deal-detail-view.vue

@ -590,8 +590,11 @@ export default {
this.dataForm.handleAdvice = val
},
'postDataForm.handleAdviceRadios': function (val) {
if(val){
this.postDataForm.handleAdvice = '您反映的诉求属于不予受理情形中的“' + val + '”,不属于平台受理范围,感谢您对“北尚诉办”的支持!'
this.dataForm.handleAdviceRadios = '您反映的诉求属于不予受理情形中的“' + val + '”,不属于平台受理范围,感谢您对“北尚诉办”的支持!'
}
},
'postDataForm.outHandleAdvice': function (val) {
@ -927,14 +930,24 @@ export default {
if (res.code !== 0) {
return this.$message.error(res.msg)
}
this.postDataForm.handlerDept = res.data.handlerDept
this.postDataForm.handlerDeptId = res.data.handlerDeptId
this.getHandleResultDTOS()
this.postDataForm = res.data;
this.postDataForm.handlerDeptIdRule = res.data.handlerDeptId
this.dataForm = res.data;
this.timeloading = false
this.dataForm = {
...this.dataForm,
...res.data
}
let imagesList =[];
res.data.images.forEach(element => {
imagesList.push({name:"",url:element})
});
console.log(imagesList)
this.postDataForm.handleImagesPC = imagesList
this.dataForm.handleProgressResultDTOS.forEach((item, index, arr) => {
// if (index === arr.length - 1) {
// item.type = 'issue-project'

Loading…
Cancel
Save