Commit 54382f5b by wangguangchao

面函添加事件,fince页面元素赋值修正,排版优化

parent ce8c64da
...@@ -205,6 +205,7 @@ export default class Cptopn{ ...@@ -205,6 +205,7 @@ export default class Cptopn{
seainf:"", // .trnmod.trndoc.rcvatt.seainf seainf:"", // .trnmod.trndoc.rcvatt.seainf
}, },
filrecv:"", // File Receiver .trnmod.trndoc.filrecv filrecv:"", // File Receiver .trnmod.trndoc.filrecv
doceot:[],
}, },
}, },
finmod:{ finmod:{
......
...@@ -145,6 +145,30 @@ export default { ...@@ -145,6 +145,30 @@ export default {
this.$refs.glepan.stmData.data = res.data.setmod_glemod_gleshwstm.rows; this.$refs.glepan.stmData.data = res.data.setmod_glemod_gleshwstm.rows;
}) })
} }
if (label === "Messages") {
this.executeRule("trnmod.trndoc.docpan").then(res => {
if (res.respCode == "AAAAAA"){
const data = res.data;
Utils.copyValueFromVO(this.model, data)
var stm = [];
let k = 0;
for(let i = 0; i < res.data.trnmod_trndoc_doceot.length; i++){
if(res.data.trnmod_trndoc_doceot[i].role != ""){
stm[k++] = res.data.trnmod_trndoc_doceot[i];
}
}
this.$refs.docpan.stmData.data = stm
}
})
}
if (label === "Attachments") {
this.executeRule("trnmod.trndoc.doctre").then(res => {
if (res.respCode == "AAAAAA"){
const data = res.data;
Utils.copyValueFromVO(this.model, data)
}
})
}
} }
}, },
created: async function () { created: async function () {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment