Commit abad8974 by 潘际乾
parents 5ec74000 fa1afa9e
...@@ -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:{
......
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
<m-outp :model="model" :codes="codes"></m-outp> <m-outp :model="model" :codes="codes"></m-outp>
</el-tab-pane> </el-tab-pane>
</el-tabs> </el-tabs>
<c-bus-button :$pntvm="this"></c-bus-button>
</el-form> </el-form>
</div> </div>
</c-page> </c-page>
...@@ -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