|
@@ -70,11 +70,11 @@ export default {
|
|
|
this.getfieldList(rowdata.bsm);
|
|
|
},
|
|
|
async getfieldList(id) {
|
|
|
+ this.fieldList = [];
|
|
|
let res = await Getfiledslist({ id });
|
|
|
// this.fieldList = res.data;
|
|
|
- this.fieldList = [];
|
|
|
res.data.forEach((field) => {
|
|
|
- this.fieldList.push({ ...field, checked: field == 0 });
|
|
|
+ this.fieldList.push({ ...field, checked: field.shareDisplay == 0 });
|
|
|
});
|
|
|
},
|
|
|
changeShare(row, index) {
|