|
@@ -37,16 +37,22 @@
|
|
{{ item.goods_name }}
|
|
{{ item.goods_name }}
|
|
</div>
|
|
</div>
|
|
<div class="prow-header__right">
|
|
<div class="prow-header__right">
|
|
- <span class="update" @click="handleUpdateRow">更改</span>
|
|
|
|
- <span class="remove" @click="handleRemoveRow">删除</span>
|
|
|
|
|
|
+ <span class="update" @click="handleUpdateRow(item, idx)">更改</span>
|
|
|
|
+ <span class="remove" @click="handleRemoveRow(item, idx)">删除</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<template v-for="(goodsStock, idx) in item.goods_stock">
|
|
<template v-for="(goodsStock, idx) in item.goods_stock">
|
|
- <div class="prow-middle flex flex-row flex-row-aic" :key="idx">
|
|
|
|
- <div class="tags">{{ goodsStock.name }}</div>
|
|
|
|
- <div class="count">x40</div>
|
|
|
|
|
|
+ <div class="prow-middle flex flex-row flex--row-aic" :key="idx">
|
|
|
|
+ <div class="flex flex-row flex-row-aic">
|
|
|
|
+ <div class="tags">{{ goodsStock.name }}</div>
|
|
|
|
+ <div class="price">¥{{ goodsStock.price }}</div>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="count">x{{ goodsStock.stock }}</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
+ <div class="prow-total">
|
|
|
|
+ <span>¥</span>{{ item.goods_stock | sumPrice }}
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
@@ -221,11 +227,32 @@
|
|
}
|
|
}
|
|
|
|
|
|
&-middle {
|
|
&-middle {
|
|
- padding: 3px 0;
|
|
|
|
|
|
+ padding: 5px 0;
|
|
justify-content: space-between;
|
|
justify-content: space-between;
|
|
font-size: @font-size-common;
|
|
font-size: @font-size-common;
|
|
font-weight: 400;
|
|
font-weight: 400;
|
|
color: #727273;
|
|
color: #727273;
|
|
|
|
+
|
|
|
|
+ >div:first-child {
|
|
|
|
+ .price {
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ margin-left: 10px;
|
|
|
|
+ vertical-align: text-bottom;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ &-total {
|
|
|
|
+ span {
|
|
|
|
+ font-size: 12px;
|
|
|
|
+ vertical-align: baseline;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ padding-top: 6px;
|
|
|
|
+ font-size: 16px;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ color: #F45642;
|
|
|
|
+ line-height: 24px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -289,33 +316,71 @@ export default {
|
|
}),
|
|
}),
|
|
|
|
|
|
created() {
|
|
created() {
|
|
|
|
+ // 商品库选择
|
|
vueBus.$on('updateProductList', this.handleUpdateList)
|
|
vueBus.$on('updateProductList', this.handleUpdateList)
|
|
|
|
+
|
|
|
|
+ // 添加/更新商品
|
|
|
|
+ vueBus.$on('changeGoods', this.handleAddOrUpdateData)
|
|
},
|
|
},
|
|
|
|
|
|
deactivated() {
|
|
deactivated() {
|
|
console.log('页面隐藏?');
|
|
console.log('页面隐藏?');
|
|
},
|
|
},
|
|
|
|
|
|
|
|
+ mounted() {
|
|
|
|
+ this.handleUpdateValues()
|
|
|
|
+ },
|
|
|
|
+
|
|
methods: {
|
|
methods: {
|
|
|
|
|
|
|
|
+ handleUpdateValues() {
|
|
|
|
+ const arrs = this.value
|
|
|
|
+ if (Array.isArray(arrs) && arrs.length) this.list = [...arrs]
|
|
|
|
+ },
|
|
|
|
+
|
|
handleTest() {
|
|
handleTest() {
|
|
this.list.push({ name: 1 })
|
|
this.list.push({ name: 1 })
|
|
},
|
|
},
|
|
|
|
+
|
|
|
|
+ // NOTE: 处理新增和修改商品
|
|
|
|
+ // 更新 flag = 3。 新增 flag = 1
|
|
|
|
+ handleAddOrUpdateData(data) {
|
|
|
|
+ console.log('%c add & update data >>>', 'background: blue; color: #fff', data);
|
|
|
|
+
|
|
|
|
+ },
|
|
// NOTE: 商品库选择数据
|
|
// NOTE: 商品库选择数据
|
|
handleUpdateList(data) {
|
|
handleUpdateList(data) {
|
|
const { customCount, goodsStock, item, GoodsPrice } = data
|
|
const { customCount, goodsStock, item, GoodsPrice } = data
|
|
console.log('handleUpdateList', customCount, goodsStock, item, GoodsPrice);
|
|
console.log('handleUpdateList', customCount, goodsStock, item, GoodsPrice);
|
|
-
|
|
|
|
- let isHasGoods = this.list.some(goods => goods.id === item.id)
|
|
|
|
-
|
|
|
|
- // TODO: 优先判断是否存在该商品。不存在新增。 存在添加到商品`goos_stock`中
|
|
|
|
|
|
+ const isHasGoods = this.list.some(goods => goods.goods_id === item.id)
|
|
if (isHasGoods) {
|
|
if (isHasGoods) {
|
|
- let idx = this.list.findIndex(goods => goods.id === item.id)
|
|
|
|
- console.log('%c query idx >>>', 'background: blue; color: #fff', idx);
|
|
|
|
|
|
+ let idx = this.list.findIndex(goods => goods.goods_id === item.id)
|
|
|
|
+ const { goods_stock } = this.list[idx]
|
|
|
|
+ // 判断是否以添加规格
|
|
|
|
+ let hasGoodsStock = goods_stock.some(standard => standard.id === goodsStock.id)
|
|
|
|
+ if (hasGoodsStock) {
|
|
|
|
+ let _idx = goods_stock.findIndex(standard => standard.id === goodsStock.id)
|
|
|
|
+ if (_idx >= 0) {
|
|
|
|
+ goods_stock[_idx] = {
|
|
|
|
+ ...goods_stock[_idx],
|
|
|
|
+ price: GoodsPrice,
|
|
|
|
+ stock: customCount
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ goods_stock.push({
|
|
|
|
+ id: goodsStock.id,
|
|
|
|
+ name: goodsStock.name,
|
|
|
|
+ price: GoodsPrice,
|
|
|
|
+ stock: customCount
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ this.$forceUpdate()
|
|
} else {
|
|
} else {
|
|
const _template_ = {
|
|
const _template_ = {
|
|
flag: 3,
|
|
flag: 3,
|
|
id: item.id,
|
|
id: item.id,
|
|
|
|
+ goods_id: item.id,
|
|
goods_category_first: item.goods_category_first,
|
|
goods_category_first: item.goods_category_first,
|
|
goods_category_id: item.goods_category_id,
|
|
goods_category_id: item.goods_category_id,
|
|
goods_no: item.goods_no,
|
|
goods_no: item.goods_no,
|
|
@@ -323,7 +388,7 @@ export default {
|
|
goods_brand: item.goods_brand,
|
|
goods_brand: item.goods_brand,
|
|
goods_stock: [
|
|
goods_stock: [
|
|
{
|
|
{
|
|
- id: goodsStock.goods_id,
|
|
|
|
|
|
+ id: goodsStock.id,
|
|
name: goodsStock.name,
|
|
name: goodsStock.name,
|
|
price: GoodsPrice,
|
|
price: GoodsPrice,
|
|
stock: customCount
|
|
stock: customCount
|
|
@@ -414,18 +479,16 @@ export default {
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
|
|
- handleRemoveRow() {
|
|
|
|
- let article = '学生秋冬季节校服样式二'
|
|
|
|
|
|
+ handleRemoveRow(item, idx) {
|
|
|
|
+ let article = item.goods_name
|
|
this.$dialog.confirm({
|
|
this.$dialog.confirm({
|
|
- title: '删除领用物品',
|
|
|
|
|
|
+ title: `删除${this.title}`,
|
|
message: `请确认是否删除“${article}”的信息`,
|
|
message: `请确认是否删除“${article}”的信息`,
|
|
confirmButtonText: '否',
|
|
confirmButtonText: '否',
|
|
confirmButtonColor: '#576B95',
|
|
confirmButtonColor: '#576B95',
|
|
cancelButtonText: '是'
|
|
cancelButtonText: '是'
|
|
- }).then(res => {
|
|
|
|
- this.$toast(res)
|
|
|
|
- }).catch(err => {
|
|
|
|
- this.$toast(err)
|
|
|
|
|
|
+ }).catch(() => {
|
|
|
|
+ this.list.splice(idx, 1)
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
|
|
@@ -447,15 +510,38 @@ export default {
|
|
},
|
|
},
|
|
// NOTE: 添加新商品
|
|
// NOTE: 添加新商品
|
|
handleAddGoods() {
|
|
handleAddGoods() {
|
|
- this.$toast('添加商品页面')
|
|
|
|
- this.$router.push({
|
|
|
|
- name: 'Goods'
|
|
|
|
|
|
+ this.$store.commit({
|
|
|
|
+ type: "app/ROUTE_ADD",
|
|
|
|
+ value: "Goods"
|
|
})
|
|
})
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
+ this.$router.push({
|
|
|
|
+ name: 'Goods'
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ filters: {
|
|
|
|
+ // NOTE: 累加器
|
|
|
|
+ sumPrice(arrs) {
|
|
|
|
+ let sum = 0
|
|
|
|
+ return arrs.reduce((accumulator, cur) => (accumulator + (Number(cur.price) * Number(cur.stock))), sum)
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ watch: {
|
|
|
|
+ list: {
|
|
|
|
+ handler(arrs) {
|
|
|
|
+ if (Array.isArray(arrs) && arrs.length) {
|
|
|
|
+ this.$listeners['input'] && this.$emit('input', arrs)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|
|
},
|
|
},
|
|
beforeDestroy() {
|
|
beforeDestroy() {
|
|
console.log('%c destory $off updateProductList >>>', 'background: blue; color: #fff',);
|
|
console.log('%c destory $off updateProductList >>>', 'background: blue; color: #fff',);
|
|
vueBus.$off('updateProductList')
|
|
vueBus.$off('updateProductList')
|
|
|
|
+ vueBus.$off('changeGoods')
|
|
},
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|