|
@@ -1,31 +1,20 @@
|
|
|
<template>
|
|
|
<div class="goods-container flex flex-col">
|
|
|
<div class="goods__main">
|
|
|
+ <c-select-imitate title="商品分类" :value="goods_category_text" @click="handleClickCategory"
|
|
|
+ @clear="handleClearCategory" />
|
|
|
|
|
|
- <!-- TODO: 商品分类是否可以采用数据多级别联动。 不跳转页面 -->
|
|
|
- <c-select
|
|
|
- title="商品分类"
|
|
|
- />
|
|
|
+ <c-input title="商品编号" v-model="goods_no" />
|
|
|
|
|
|
- <c-input
|
|
|
- title="商品编号"
|
|
|
- />
|
|
|
+ <c-input title="商品名称" v-model="goods_name" />
|
|
|
|
|
|
- <c-input
|
|
|
- title="商品名称"
|
|
|
- ></c-input>
|
|
|
+ <c-input title="商品品牌" v-model="goods_brand" />
|
|
|
|
|
|
- <c-input
|
|
|
- title="商品品牌"
|
|
|
- ></c-input>
|
|
|
+ <c-select-imitate title="商品规格" :value="goodsStandarsTxt" @click="handleClickStandards"
|
|
|
+ @clear="handleClearStandards" />
|
|
|
+ <c-select-imitate title="单价及数量设置" :value="goodsStandarsTxt" @click="handleClickCategory"
|
|
|
+ @clear="handleClearStandards" />
|
|
|
|
|
|
- <c-select
|
|
|
- title="商品规格"
|
|
|
- />
|
|
|
-
|
|
|
- <c-select
|
|
|
- title="单价及数量设置"
|
|
|
- />
|
|
|
</div>
|
|
|
|
|
|
<div class="goods__footer">
|
|
@@ -41,13 +30,16 @@
|
|
|
&-container {
|
|
|
height: 100vh;
|
|
|
justify-content: space-between;
|
|
|
+
|
|
|
.layout-container {
|
|
|
margin-top: 10px;
|
|
|
}
|
|
|
+
|
|
|
.btn-container {
|
|
|
margin-top: initial;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
&__main {
|
|
|
height: 0;
|
|
|
flex: 1;
|
|
@@ -61,24 +53,97 @@
|
|
|
* @description 添加商品/修改商品页
|
|
|
* @date 2023/11/30
|
|
|
* @param flag = edit 表示修改
|
|
|
- * @param goodsId = xxx 商品Id
|
|
|
+ * @param goods_id = xxx 商品Id
|
|
|
*/
|
|
|
|
|
|
+import vueBus from '@/utils/vueBus';
|
|
|
import CInput from './components/CInput.vue';
|
|
|
import CSelect from './components/CSelect.vue';
|
|
|
+import CSelectImitate from './components/CSelectImitate.vue'
|
|
|
|
|
|
export default {
|
|
|
name: 'Goods',
|
|
|
name_cn: '商品', // 新增或修改商品单项时存在
|
|
|
components: {
|
|
|
CInput,
|
|
|
- CSelect
|
|
|
+ CSelect,
|
|
|
+ CSelectImitate
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ goodsStandarsTxt() {
|
|
|
+ if (this.standars.length) {
|
|
|
+ return `共${this.standars.length}个规格`
|
|
|
+ } else {
|
|
|
+ return ''
|
|
|
+ }
|
|
|
+ }
|
|
|
},
|
|
|
data: () => ({
|
|
|
- flag: 'new', // 默认是新增
|
|
|
+ flag: '1', // 默认是新增:1 修改:3
|
|
|
+ id: '', // 与goods_id 相同
|
|
|
goodsId: undefined, // 商品id
|
|
|
+ goods_category_first: '',
|
|
|
+ goods_category_id: '',
|
|
|
+ goods_category_text: '',
|
|
|
+ goods_no: '',
|
|
|
+ goods_name: '',
|
|
|
+ goods_brand: '',
|
|
|
+ standars: [], // string[]
|
|
|
+ goods_stock: [] // object[]
|
|
|
}),
|
|
|
+ created() {
|
|
|
+ vueBus.$on('listenCategoryEvent', this.handleCategoryData)
|
|
|
+ vueBus.$on('listenStrandarsEvent', this.handleStandarsData)
|
|
|
+ },
|
|
|
methods: {
|
|
|
+ handleClickCategory() {
|
|
|
+ this.$router.push({
|
|
|
+ name: 'ProductStore',
|
|
|
+ query: {
|
|
|
+ type: '2'
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ handleClearCategory() {
|
|
|
+ this.goods_category_first = ''
|
|
|
+ this.goods_category_id = ''
|
|
|
+ this.goods_category_text = ''
|
|
|
+ },
|
|
|
+ // NOTE: 处理商品分类数据
|
|
|
+ handleCategoryData(data) {
|
|
|
+ const { first, second } = data
|
|
|
+ this.goods_category_text = `${first.name}/${second.name}`
|
|
|
+ this.goods_category_first = first.id
|
|
|
+ this.goods_category_id = second.id
|
|
|
+ },
|
|
|
+ handleClickStandards() {
|
|
|
+ this.$router.push({
|
|
|
+ name: 'GoodsSpeci',
|
|
|
+ query: {
|
|
|
+ standars: this.standars.join(',')
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ handleClearStandards() {
|
|
|
+ this.standars = []
|
|
|
+ },
|
|
|
+ // NOTE: 更新规格数据
|
|
|
+ handleStandarsData(data) {
|
|
|
+ this.standars = data.value
|
|
|
+ },
|
|
|
+
|
|
|
+ handleClickUnit() {
|
|
|
+ this.$router.push({
|
|
|
+ name: 'GoodsUnit',
|
|
|
+ query: {
|
|
|
+ standars: this.standars.join(',')
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
+ },
|
|
|
+ beforeDestroy() {
|
|
|
+ vueBus.$off('listenCategoryEvent')
|
|
|
}
|
|
|
}
|
|
|
</script>
|