|
@@ -4266,6 +4266,15 @@ export default {
|
|
});
|
|
});
|
|
return name;
|
|
return name;
|
|
},
|
|
},
|
|
|
|
+ fStorageTypeFormat(row, fStorageTypeOptions) {
|
|
|
|
+ let fStorageType;
|
|
|
|
+ fStorageTypeOptions.map((e) => {
|
|
|
|
+ if (row == e.dictValue) {
|
|
|
|
+ fStorageType = e.dictLabel;
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ return fStorageType;
|
|
|
|
+ },
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
init() {
|
|
init() {
|
|
@@ -5061,6 +5070,15 @@ export default {
|
|
});
|
|
});
|
|
return fStorageType;
|
|
return fStorageType;
|
|
},
|
|
},
|
|
|
|
+ // fStorageTypeFormat(row, fStorageTypeOptions) {
|
|
|
|
+ // let fStorageType;
|
|
|
|
+ // fStorageTypeOptions.map((e) => {
|
|
|
|
+ // if (row == e.dictValue) {
|
|
|
|
+ // fStorageType = e.dictLabel;
|
|
|
|
+ // }
|
|
|
|
+ // });
|
|
|
|
+ // return fStorageType;
|
|
|
|
+ // },
|
|
fCntrtypeFormat(row) {
|
|
fCntrtypeFormat(row) {
|
|
let fCntrtype;
|
|
let fCntrtype;
|
|
this.cntrList.map((e) => {
|
|
this.cntrList.map((e) => {
|