Commit 4f8df7e9 by javaHeight

Merge branch 'development-202206' of http://114.115.138.98:8900/fukai/vue-gjjs…

Merge branch 'development-202206' of http://114.115.138.98:8900/fukai/vue-gjjs into development-202206
parents 678ef1ec 0d4acfe9
...@@ -144,18 +144,12 @@ export default { ...@@ -144,18 +144,12 @@ export default {
this.navcode.push(newList); this.navcode.push(newList);
} }
// 交易状态信息 // 交易状态信息
const arr = [] const selbut = this.model.selbut ?? {}
arr.push( const arr = Object.keys(selbut)
this.model.selbut.dsppndclm, .filter(key => key.startsWith("dsp"))
this.model.selbut.dsppndram, .map(key => selbut[key] || "")
this.model.selbut.dspamenbr, .filter(s => s.trim()!== "")
this.model.selbut.dspclsdat, this.tState = arr
this.model.dspgcdclsdat
)
this.tState = arr.filter(s => {
const v = s.trim()
return v !== ""
})
} else { } else {
this.navcode = []; this.navcode = [];
this.$notify.error({ title: "错误", message: "服务请求失败!" }); 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