|
@@ -1,18 +1,19 @@
|
|
<template>
|
|
<template>
|
|
<div class="product-store-container flex flex-col">
|
|
<div class="product-store-container flex flex-col">
|
|
<div class="product-store__header">
|
|
<div class="product-store__header">
|
|
- <div class="search-box">
|
|
|
|
|
|
+ <div class="search-box" v-if="type === '1'">
|
|
<van-field v-model="searchVal" clearable placeholder="搜索" left-icon="search" @click="handleClickSearchBox" />
|
|
<van-field v-model="searchVal" clearable placeholder="搜索" left-icon="search" @click="handleClickSearchBox" />
|
|
</div>
|
|
</div>
|
|
<div class="sub-title">
|
|
<div class="sub-title">
|
|
- <span>商品库</span>
|
|
|
|
|
|
+ <span v-if="type === '2'">请选择商品分类</span>
|
|
|
|
+ <span v-else>商品库</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!-- 展示内容 -->
|
|
<!-- 展示内容 -->
|
|
<div class="product-store__main">
|
|
<div class="product-store__main">
|
|
<van-radio-group v-model="radioCategory">
|
|
<van-radio-group v-model="radioCategory">
|
|
- <div class="row" v-for="(item, idx) in tableData" :key="idx">
|
|
|
|
|
|
+ <div class="row" v-for="(item, idx) in categoryData" :key="idx">
|
|
<div class="row__header row__header--b-line flex flex-row flex-row-aic">
|
|
<div class="row__header row__header--b-line flex flex-row flex-row-aic">
|
|
<div class="row__header__content">
|
|
<div class="row__header__content">
|
|
{{ item.name }}
|
|
{{ item.name }}
|
|
@@ -52,6 +53,12 @@
|
|
</van-radio-group>
|
|
</van-radio-group>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
+
|
|
|
|
+ <!-- 提交 -->
|
|
|
|
+ <div class="btn-container" v-if="type === '2'">
|
|
|
|
+ <div class="btn-span" @click="handleConfirmCategory">确定</div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
<van-popup class="popup flex flex-col" v-model="popupVisibility" position="bottom" :style="{ height: '60%' }"
|
|
<van-popup class="popup flex flex-col" v-model="popupVisibility" position="bottom" :style="{ height: '60%' }"
|
|
closeable close-icon-position="top-right">
|
|
closeable close-icon-position="top-right">
|
|
<div class="popup__header">
|
|
<div class="popup__header">
|
|
@@ -328,7 +335,7 @@ export default {
|
|
type: "1", // 页面状态。 默认1:商品选择。 可选项2:选择分类
|
|
type: "1", // 页面状态。 默认1:商品选择。 可选项2:选择分类
|
|
radioCategory: '', // 二级分类Id
|
|
radioCategory: '', // 二级分类Id
|
|
searchVal: '', // 搜索商品?
|
|
searchVal: '', // 搜索商品?
|
|
- tableData: [], // 分类数据
|
|
|
|
|
|
+ categoryData: [], // 分类数据
|
|
// NOTE: Popup data and context data
|
|
// NOTE: Popup data and context data
|
|
popupVisibility: false,
|
|
popupVisibility: false,
|
|
productData: [], // 弹出选择商品的数量等。
|
|
productData: [], // 弹出选择商品的数量等。
|
|
@@ -389,7 +396,7 @@ export default {
|
|
row.val = item.id
|
|
row.val = item.id
|
|
},
|
|
},
|
|
|
|
|
|
- // 弹窗确认
|
|
|
|
|
|
+ // NOTE: popup confirm 确认数据正常
|
|
handleConfirmInput() {
|
|
handleConfirmInput() {
|
|
try {
|
|
try {
|
|
let _list = this.productData
|
|
let _list = this.productData
|
|
@@ -459,7 +466,7 @@ export default {
|
|
return new Promise((resolve, reject) => {
|
|
return new Promise((resolve, reject) => {
|
|
goodsApi.category().then(result => {
|
|
goodsApi.category().then(result => {
|
|
if (result.code === 1) {
|
|
if (result.code === 1) {
|
|
- this.tableData = result.data
|
|
|
|
|
|
+ this.categoryData = result.data
|
|
resolve()
|
|
resolve()
|
|
} else {
|
|
} else {
|
|
reject()
|
|
reject()
|
|
@@ -485,6 +492,32 @@ export default {
|
|
reject(error)
|
|
reject(error)
|
|
})
|
|
})
|
|
})
|
|
})
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ // NOTE: 确定选择的分类
|
|
|
|
+ handleConfirmCategory() {
|
|
|
|
+ let selId = this.radioCategory
|
|
|
|
+ let arrs = this.categoryData
|
|
|
|
+ for (let i = 0; i < arrs.length; i++) {
|
|
|
|
+ const row = arrs[i];
|
|
|
|
+ const childlist = row.childlist
|
|
|
|
+ for (let j = 0; j < childlist.length; j++) {
|
|
|
|
+ const item = childlist[j];
|
|
|
|
+ if (selId === item.id) {
|
|
|
|
+ let first = { ...row }
|
|
|
|
+ delete first.childlist
|
|
|
|
+ delete first.expand
|
|
|
|
+ vueBus.$emit('listenCategoryEvent', {
|
|
|
|
+ first,
|
|
|
|
+ second: { ...item }
|
|
|
|
+ })
|
|
|
|
+ break
|
|
|
|
+ // row, item,
|
|
|
|
+ // NOTE: 选中项这边
|
|
|
|
+ } else continue
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ this.$router.go(-1)
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
|