Commit a257c25c by 潘际乾

交易入口显示交易的粗略信息

parent 3dde5cb7
......@@ -21,6 +21,11 @@
:disabled="item.isDis === 'N'"
>{{ item.label }}</c-button
>
<div style="margin-top: 15px;margin-left: 10px;">
<div v-for="(str,idx) in tState" :key="idx" style="margin-bottom: 5px;font-weight: bold;">
{{str}}
</div>
</div>
</div>
</div>
</div>
......@@ -60,6 +65,7 @@ export default {
navcode: [
// {code:"",label:"",isDis:"",title:""},
],
tState: []
};
},
methods: {
......@@ -137,6 +143,19 @@ export default {
};
this.navcode.push(newList);
}
// 交易状态信息
const arr = []
arr.push(
this.model.selbut.dsppndclm,
this.model.selbut.dsppndram,
this.model.selbut.dspamenbr,
this.model.selbut.dspclsdat,
this.model.dspgcdclsdat
)
this.tState = arr.filter(s => {
const v = s.trim()
return v !== ""
})
} else {
this.navcode = [];
this.$notify.error({ title: "错误", message: "服务请求失败!" });
......
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