|
@@ -441,6 +441,13 @@
|
|
|
},
|
|
|
async created() {
|
|
|
this.itemOption = await this.getColumnData(this.getColumnName(62), itemOption);
|
|
|
+ if (JSON.parse(localStorage.getItem("saber-userInfo")).content.tenant_id === '681169'){
|
|
|
+ for (let item in this.itemOption.column){
|
|
|
+ if (this.itemOption.column[item].prop === 'billNo'){
|
|
|
+ this.itemOption.column.splice(item, 1)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
//是否需要根据 登录人所属公司 区分不用option
|
|
|
|
|
|
//币别
|
|
@@ -746,6 +753,13 @@
|
|
|
if (inSave) {
|
|
|
this.$message.success("重置成功");
|
|
|
this.itemOption = itemOption;
|
|
|
+ if (JSON.parse(localStorage.getItem("saber-userInfo")).content.tenant_id === '681169'){
|
|
|
+ for (let item in this.itemOption.column){
|
|
|
+ if (this.itemOption.column[item].prop === 'billNo'){
|
|
|
+ this.itemOption.column.splice(item, 1)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
//关闭窗口
|
|
|
this.$refs.crud.$refs.dialogColumn.columnBox = false;
|
|
|
}
|