|
@@ -133,28 +133,6 @@
|
|
|
</el-select>
|
|
|
</el-col>
|
|
|
|
|
|
- <!-- <el-col :span="4" style="width: 147px; padding: 0 0 0 10px">
|
|
|
- <el-select
|
|
|
- v-model="parmValue.has_account"
|
|
|
- filterable
|
|
|
- clearable
|
|
|
- :size="searchSize"
|
|
|
- placeholder="供应商账号"
|
|
|
- style="width: 100%"
|
|
|
- @change="
|
|
|
- pageInfo.curr = 1;
|
|
|
- parmValue.page = 1;
|
|
|
- searchList();
|
|
|
- "
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="item in has_account_list"
|
|
|
- :key="'status' + item.code"
|
|
|
- :label="item.name"
|
|
|
- :value="item.code"
|
|
|
- />
|
|
|
- </el-select>
|
|
|
- </el-col>-->
|
|
|
<el-col :span="3" style="margin: 0 10px">
|
|
|
<search-supplier
|
|
|
:size="'mini'"
|
|
@@ -512,7 +490,7 @@ export default {
|
|
|
}
|
|
|
};
|
|
|
return {
|
|
|
- isNobleMetal:false,
|
|
|
+ isNobleMetal: false,
|
|
|
dialogFormVisible: false,
|
|
|
has_account_list,
|
|
|
donline_formStOps: [],
|
|
@@ -949,31 +927,42 @@ export default {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- const categoryIds = this.changeList.map(({cat_info, is_gold_price}) => ({
|
|
|
- id: String(cat_info[0].id),
|
|
|
- isGoldPrice: String(is_gold_price)
|
|
|
- }))
|
|
|
+ const categoryIds = this.changeList.map(
|
|
|
+ ({ cat_info, is_gold_price }) => ({
|
|
|
+ id: String(cat_info[0].id),
|
|
|
+ isGoldPrice: String(is_gold_price)
|
|
|
+ })
|
|
|
+ );
|
|
|
|
|
|
- const nobleMetalIds = categoryIds.filter(({ id, isGoldPrice }
|
|
|
- ) => id === '6' && isGoldPrice === "1")
|
|
|
+ const nobleMetalIds = categoryIds.filter(
|
|
|
+ ({ id, isGoldPrice }) => id === "6" && isGoldPrice === "1"
|
|
|
+ );
|
|
|
|
|
|
- if(nobleMetalIds.length > 0 && categoryIds.length !== nobleMetalIds.length){
|
|
|
+ if (
|
|
|
+ nobleMetalIds.length > 0 &&
|
|
|
+ categoryIds.length !== nobleMetalIds.length
|
|
|
+ ) {
|
|
|
const h = this.$createElement;
|
|
|
|
|
|
this.$message({
|
|
|
- message: h('p', null, [
|
|
|
- h('span', null, '勾选商品必须全部为'),
|
|
|
- h('i', { style: 'color: red' }, '开启实时金价贵金属商品'),
|
|
|
- h('span', null, '或者全部为'),
|
|
|
- h('i', { style: 'color: red' }, '未开启实时金价的贵金属商品和非贵金属商品')
|
|
|
+ message: h("p", null, [
|
|
|
+ h("span", null, "勾选商品必须全部为"),
|
|
|
+ h("i", { style: "color: red" }, "开启实时金价贵金属商品"),
|
|
|
+ h("span", null, "或者全部为"),
|
|
|
+ h(
|
|
|
+ "i",
|
|
|
+ { style: "color: red" },
|
|
|
+ "未开启实时金价的贵金属商品和非贵金属商品"
|
|
|
+ )
|
|
|
]),
|
|
|
- type: 'warning',
|
|
|
+ type: "warning",
|
|
|
dangerouslyUseHTMLString: true
|
|
|
- })
|
|
|
- return
|
|
|
+ });
|
|
|
+ return;
|
|
|
}
|
|
|
|
|
|
- this.isNobleMetal = nobleMetalIds.length > 0 && categoryIds.length === nobleMetalIds.length;
|
|
|
+ this.isNobleMetal =
|
|
|
+ nobleMetalIds.length > 0 && categoryIds.length === nobleMetalIds.length;
|
|
|
|
|
|
let isok = true;
|
|
|
this.changeList.forEach(e => {
|