Commit eb5deb80 by 吴佳

2022.01.04 wujia 信用证开立查询界面,处理 弹出菜单调整

parent dc9cf630
...@@ -79,18 +79,22 @@ export default { ...@@ -79,18 +79,22 @@ export default {
//this.model.didgrp.rec.inr = rtnmsg.data.didgrp_rec_inr //this.model.didgrp.rec.inr = rtnmsg.data.didgrp_rec_inr
const length = this.model.cfgfil.btnstm.rows.length const length = this.model.cfgfil.btnstm.rows.length
let btnStr = this.model.cfgfil.btnstm.rows let btnStr = this.model.cfgfil.btnstm.rows
let j = 0;
for(let i=0; i < length; i++){ for(let i=0; i < length; i++){
//获取数组中每行的数据 //获取数组中每行的数据
let arr = btnStr[i].split("\t"); if(!( btnStr[i].indexOf("保证金") >= 0)){
let newList = { let arr = btnStr[i].split("\t");
let newList = {
code:arr[0], code:arr[0],
label:arr[1], label:arr[1],
isDis:arr[2], isDis:arr[2],
title:arr[3] title:arr[3]
}
//添加到navcode数组中
this.navcode.splice(j,0,newList)
} }
//添加到navcode数组中
this.navcode.splice(i,0,newList) }
}
} }
......
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