|
@@ -101,11 +101,11 @@
|
|
|
</el-col>
|
|
|
<el-col :span="4" style="width: 145px; padding: 0 0 0 10px">
|
|
|
<el-select
|
|
|
- v-model="parmValue.good_type"
|
|
|
+ v-model="parmValue.isonline"
|
|
|
filterable
|
|
|
clearable
|
|
|
:size="searchSize"
|
|
|
- placeholder="是否定制"
|
|
|
+ placeholder="是否上线"
|
|
|
style="width: 100%"
|
|
|
@change="
|
|
|
pageInfo.curr = 1;
|
|
@@ -114,8 +114,8 @@
|
|
|
"
|
|
|
>
|
|
|
<el-option
|
|
|
- v-for="item in options1"
|
|
|
- :key="'good_type' + item.id"
|
|
|
+ v-for="item in isonlineoptions"
|
|
|
+ :key="'isonline' + item.id"
|
|
|
:label="item.name"
|
|
|
:value="item.id"
|
|
|
/>
|
|
@@ -209,13 +209,15 @@
|
|
|
"
|
|
|
></el-tag>
|
|
|
</template>
|
|
|
- <template #good_type="{ scope }">
|
|
|
+ <template #isonline="{ scope }">
|
|
|
<el-tag
|
|
|
:size="tablebtnSize"
|
|
|
- :type="scope.row.good_type == '0' ? 'warning' : ''"
|
|
|
+ :type="scope.row.is_online == '0' ? 'warning' : ''"
|
|
|
v-text="
|
|
|
- (options1.find((item) => item.id == scope.row.good_type) || {})
|
|
|
- .name || '--'
|
|
|
+ (
|
|
|
+ isonlineoptions.find((item) => item.id == scope.row.is_online) ||
|
|
|
+ {}
|
|
|
+ ).name || '--'
|
|
|
"
|
|
|
></el-tag>
|
|
|
</template>
|
|
@@ -392,6 +394,10 @@ export default {
|
|
|
type: "info",
|
|
|
},
|
|
|
],
|
|
|
+ isonlineoptions: [
|
|
|
+ { id: "0", name: "未上线" },
|
|
|
+ { id: "1", name: "已上线" },
|
|
|
+ ],
|
|
|
showModel: false,
|
|
|
options1: options1,
|
|
|
loading: false,
|
|
@@ -409,6 +415,7 @@ export default {
|
|
|
good_type: "",
|
|
|
companyNo: "",
|
|
|
supplierNo: "",
|
|
|
+ isonline:"",
|
|
|
// creater: "",
|
|
|
},
|
|
|
sinput: "",
|
|
@@ -459,6 +466,7 @@ export default {
|
|
|
cat_id: [],
|
|
|
brandid: "",
|
|
|
good_type: "",
|
|
|
+ isonline:"",
|
|
|
companyNo: "",
|
|
|
supplierNo: "",
|
|
|
};
|