|
@@ -1,7 +1,10 @@
|
|
<template>
|
|
<template>
|
|
<div class="goods-container flex flex-col">
|
|
<div class="goods-container flex flex-col">
|
|
<div class="goods__main">
|
|
<div class="goods__main">
|
|
- <c-select-imitate title="商品分类" :value="goods_category_text" @click="handleClickCategory"
|
|
|
|
|
|
+
|
|
|
|
+ <!-- NOTE: flag === 3 时、商品分类不展示。因为无法展示禁用状态 -->
|
|
|
|
+ <!-- <div class="tips">商品编辑不能修改分类</div> -->
|
|
|
|
+ <c-select-imitate v-if="flag === '1'" title="商品分类" :value="goods_category_text" @click="handleClickCategory"
|
|
@clear="handleClearCategory" />
|
|
@clear="handleClearCategory" />
|
|
|
|
|
|
<c-input title="商品编号" v-model="goods_no" />
|
|
<c-input title="商品编号" v-model="goods_no" />
|
|
@@ -12,14 +15,11 @@
|
|
|
|
|
|
<c-select-imitate title="商品规格" :value="goodsStandarsTxt" @click="handleClickStandards"
|
|
<c-select-imitate title="商品规格" :value="goodsStandarsTxt" @click="handleClickStandards"
|
|
@clear="handleClearStandards" />
|
|
@clear="handleClearStandards" />
|
|
- <c-select-imitate title="单价及数量设置" :value="goodsStandarsTxt" @click="handleClickCategory"
|
|
|
|
- @clear="handleClearStandards" />
|
|
|
|
-
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="goods__footer">
|
|
<div class="goods__footer">
|
|
<div class="btn-container">
|
|
<div class="btn-container">
|
|
- <div class="btn-span">提交</div>
|
|
|
|
|
|
+ <div class="btn-span" @click="handleConfirmSubmit">{{ flag === '3' ? '修改' : '提交' }}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -52,13 +52,13 @@
|
|
/**
|
|
/**
|
|
* @description 添加商品/修改商品页
|
|
* @description 添加商品/修改商品页
|
|
* @date 2023/11/30
|
|
* @date 2023/11/30
|
|
- * @param flag = edit 表示修改
|
|
|
|
|
|
+ * @param flag = 3 表示修改
|
|
* @param goods_id = xxx 商品Id
|
|
* @param goods_id = xxx 商品Id
|
|
*/
|
|
*/
|
|
|
|
|
|
import vueBus from '@/utils/vueBus';
|
|
import vueBus from '@/utils/vueBus';
|
|
import CInput from './components/CInput.vue';
|
|
import CInput from './components/CInput.vue';
|
|
-import CSelect from './components/CSelect.vue';
|
|
|
|
|
|
+// import CSelect from './components/CSelect.vue';
|
|
import CSelectImitate from './components/CSelectImitate.vue'
|
|
import CSelectImitate from './components/CSelectImitate.vue'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
@@ -66,34 +66,49 @@ export default {
|
|
name_cn: '商品', // 新增或修改商品单项时存在
|
|
name_cn: '商品', // 新增或修改商品单项时存在
|
|
components: {
|
|
components: {
|
|
CInput,
|
|
CInput,
|
|
- CSelect,
|
|
|
|
|
|
+ // CSelect,
|
|
CSelectImitate
|
|
CSelectImitate
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
goodsStandarsTxt() {
|
|
goodsStandarsTxt() {
|
|
- if (this.standars.length) {
|
|
|
|
- return `共${this.standars.length}个规格`
|
|
|
|
|
|
+ if (this.goods_stock.length) {
|
|
|
|
+ return `共${this.goods_stock.length}个规格`
|
|
} else {
|
|
} else {
|
|
return ''
|
|
return ''
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
+ },
|
|
},
|
|
},
|
|
data: () => ({
|
|
data: () => ({
|
|
flag: '1', // 默认是新增:1 修改:3
|
|
flag: '1', // 默认是新增:1 修改:3
|
|
- id: '', // 与goods_id 相同
|
|
|
|
- goodsId: undefined, // 商品id
|
|
|
|
|
|
+ id: '', // 自定义商品的Id
|
|
|
|
+ goods_id: undefined, // 商品id
|
|
goods_category_first: '',
|
|
goods_category_first: '',
|
|
goods_category_id: '',
|
|
goods_category_id: '',
|
|
goods_category_text: '',
|
|
goods_category_text: '',
|
|
goods_no: '',
|
|
goods_no: '',
|
|
goods_name: '',
|
|
goods_name: '',
|
|
goods_brand: '',
|
|
goods_brand: '',
|
|
- standars: [], // string[]
|
|
|
|
goods_stock: [] // object[]
|
|
goods_stock: [] // object[]
|
|
}),
|
|
}),
|
|
created() {
|
|
created() {
|
|
vueBus.$on('listenCategoryEvent', this.handleCategoryData)
|
|
vueBus.$on('listenCategoryEvent', this.handleCategoryData)
|
|
vueBus.$on('listenStrandarsEvent', this.handleStandarsData)
|
|
vueBus.$on('listenStrandarsEvent', this.handleStandarsData)
|
|
|
|
+ const { flag } = this.$route.query
|
|
|
|
+ if (flag === '3') { // update state
|
|
|
|
+ const row = JSON.parse(this.$route.query.edit)
|
|
|
|
+ if (row) {
|
|
|
|
+ this.flag = flag
|
|
|
|
+ this.goods_id = row.goods_id
|
|
|
|
+ this.goods_category_first = row.goods_category_first
|
|
|
|
+ this.goods_category_id = row.goods_category_id
|
|
|
|
+ this.goods_no = row.goods_no
|
|
|
|
+ this.goods_name = row.goods_name
|
|
|
|
+ this.goods_brand = row.goods_brand
|
|
|
|
+ this.goods_stock = row.goods_stock
|
|
|
|
+ if (row.__id__) this.id = row.__id__ // 自定义添加商品才有
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
handleClickCategory() {
|
|
handleClickCategory() {
|
|
@@ -120,30 +135,55 @@ export default {
|
|
this.$router.push({
|
|
this.$router.push({
|
|
name: 'GoodsSpeci',
|
|
name: 'GoodsSpeci',
|
|
query: {
|
|
query: {
|
|
- standars: this.standars.join(',')
|
|
|
|
|
|
+ // standars: this.standars.join(','),
|
|
|
|
+ goods_stock: JSON.stringify(this.goods_stock)
|
|
}
|
|
}
|
|
})
|
|
})
|
|
},
|
|
},
|
|
handleClearStandards() {
|
|
handleClearStandards() {
|
|
- this.standars = []
|
|
|
|
|
|
+ // this.standars = []
|
|
|
|
+ this.goods_stock = []
|
|
},
|
|
},
|
|
|
|
+
|
|
// NOTE: 更新规格数据
|
|
// NOTE: 更新规格数据
|
|
- handleStandarsData(data) {
|
|
|
|
- this.standars = data.value
|
|
|
|
|
|
+ handleStandarsData(arrs) {
|
|
|
|
+ console.log('%c ???? >>>', 'background: blue; color: #fff', arrs);
|
|
|
|
+
|
|
|
|
+ // this.standars = arrs
|
|
|
|
+ this.goods_stock = [...arrs]
|
|
},
|
|
},
|
|
|
|
|
|
- handleClickUnit() {
|
|
|
|
- this.$router.push({
|
|
|
|
- name: 'GoodsUnit',
|
|
|
|
- query: {
|
|
|
|
- standars: this.standars.join(',')
|
|
|
|
|
|
+ // 确认提交
|
|
|
|
+ handleConfirmSubmit() {
|
|
|
|
+
|
|
|
|
+ const temporary = {
|
|
|
|
+ flag: this.flag,
|
|
|
|
+ goods_category_first: this.goods_category_first,
|
|
|
|
+ goods_category_id: this.goods_category_id,
|
|
|
|
+ goods_no: this.goods_no,
|
|
|
|
+ goods_name: this.goods_name,
|
|
|
|
+ goods_brand: this.goods_brand,
|
|
|
|
+ goods_stock: this.goods_stock
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (this.flag === '3') { // update online goods
|
|
|
|
+ if (this.goods_id) { // 线上商品
|
|
|
|
+ temporary.goods_id = this.goods_id
|
|
|
|
+ } else if (this.id) { // 新增商品-修改
|
|
|
|
+ temporary['__id__'] = this.id
|
|
}
|
|
}
|
|
|
|
+ } else temporary['__id__'] = Date.now()
|
|
|
|
+
|
|
|
|
+ vueBus.$emit('changeGoods', temporary)
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
+ this.$router.go(-1)
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|
|
},
|
|
},
|
|
beforeDestroy() {
|
|
beforeDestroy() {
|
|
vueBus.$off('listenCategoryEvent')
|
|
vueBus.$off('listenCategoryEvent')
|
|
|
|
+ vueBus.$off('listenStrandarsEvent')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|