|
@@ -2,16 +2,31 @@
|
|
<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" v-if="type === '1'">
|
|
<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" center placeholder="搜索" left-icon="search" @click="handleClickSearchBox">
|
|
|
|
+ <template #button>
|
|
|
|
+ <van-button size="small" @click="handleLaunchSearch" type="primary">搜索</van-button>
|
|
|
|
+ </template>
|
|
|
|
+ </van-field>
|
|
</div>
|
|
</div>
|
|
- <div class="sub-title">
|
|
|
|
|
|
+ <div class="sub-title flex flex-row flex-row-aic flex-row-jcsp">
|
|
<span v-if="type === '2'">请选择商品分类</span>
|
|
<span v-if="type === '2'">请选择商品分类</span>
|
|
<span v-else>商品库</span>
|
|
<span v-else>商品库</span>
|
|
|
|
+ <van-button v-show="searchData.length" size="small" @click="handleResetSearch" type="primary">重置搜索</van-button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!-- 展示内容 -->
|
|
<!-- 展示内容 -->
|
|
- <div class="product-store__main">
|
|
|
|
|
|
+ <div class="product-store__main" v-if="searchData.length">
|
|
|
|
+ <div class="search-row" v-for="(good, idx) in searchData" :key="idx" @click="handleSelectedGoods(good)">
|
|
|
|
+ <div class="search-row__category">
|
|
|
|
+ {{ good.goods_category_first_en }}/{{ good.goods_category_en }}
|
|
|
|
+ </div>
|
|
|
|
+ <div class="search-row__title ellipsis">{{ good.goods_name }}</div>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <!-- 分类内容 -->
|
|
|
|
+ <div class="product-store__main" v-else>
|
|
<van-radio-group v-model="radioCategory">
|
|
<van-radio-group v-model="radioCategory">
|
|
<div class="row" v-for="(item, idx) in categoryData" :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">
|
|
@@ -42,9 +57,9 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row__second__main" v-if="second.expand && second.childlist">
|
|
<div class="row__second__main" v-if="second.expand && second.childlist">
|
|
- <div class="row__third-item flex flex-row flex-row-aic" v-for="(third, idx3) in second.childlist"
|
|
|
|
- :key="idx3" @click="handleSelectedGoods(third, idx3)">
|
|
|
|
- <span id="c1">{{ third.goods_name }}</span>
|
|
|
|
|
|
+ <div class="row__third-item flex flex-row flex-row-aic" v-for="(good, idx3) in second.childlist"
|
|
|
|
+ :key="idx3" @click="handleSelectedGoods(good, idx3)">
|
|
|
|
+ <span id="c1">{{ good.goods_name }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -54,6 +69,7 @@
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
<!-- 提交 -->
|
|
<!-- 提交 -->
|
|
<div class="btn-container" v-if="type === '2'">
|
|
<div class="btn-container" v-if="type === '2'">
|
|
<div class="btn-span" @click="handleConfirmCategory">确定</div>
|
|
<div class="btn-span" @click="handleConfirmCategory">确定</div>
|
|
@@ -125,6 +141,11 @@
|
|
line-height: 18px;
|
|
line-height: 18px;
|
|
padding: 10px 0;
|
|
padding: 10px 0;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ .van-button--primary {
|
|
|
|
+ background-color: @main-color;
|
|
|
|
+ border: 1px solid @main-color;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
&__main {
|
|
&__main {
|
|
@@ -206,6 +227,22 @@
|
|
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ .search-row {
|
|
|
|
+ padding: 10px 10px;
|
|
|
|
+ background-color: #fff;
|
|
|
|
+
|
|
|
|
+ &__category {
|
|
|
|
+ font-size: 12px;
|
|
|
|
+ color: #8d8c8c;
|
|
|
|
+ margin-bottom: 8px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ &__title {
|
|
|
|
+ font-size: 16px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -342,6 +379,7 @@ export default {
|
|
popupVisibility: false,
|
|
popupVisibility: false,
|
|
productData: [], // 弹出选择商品的数量等。
|
|
productData: [], // 弹出选择商品的数量等。
|
|
choosedStock: null,
|
|
choosedStock: null,
|
|
|
|
+ searchData: [], // 搜索数据存储列表
|
|
}),
|
|
}),
|
|
|
|
|
|
created() {
|
|
created() {
|
|
@@ -360,15 +398,12 @@ export default {
|
|
this.module = query.module
|
|
this.module = query.module
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
await this.__queryCategoay__() // initalization query categray
|
|
await this.__queryCategoay__() // initalization query categray
|
|
} catch (error) {
|
|
} catch (error) {
|
|
console.log('ProductStore __init__ error', error);
|
|
console.log('ProductStore __init__ error', error);
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
|
|
- __query_data__() { },
|
|
|
|
-
|
|
|
|
handleClickSearchBox() { },
|
|
handleClickSearchBox() { },
|
|
|
|
|
|
// 点击一级
|
|
// 点击一级
|
|
@@ -379,22 +414,22 @@ export default {
|
|
|
|
|
|
// 点击二级
|
|
// 点击二级
|
|
async handleClickSecondRow(row) {
|
|
async handleClickSecondRow(row) {
|
|
|
|
+ const toastInstance = this.$toast({
|
|
|
|
+ type: 'loading',
|
|
|
|
+ message: '加载数据中',
|
|
|
|
+ duration: 0
|
|
|
|
+ })
|
|
try {
|
|
try {
|
|
if (!row.expand && !row.childlist) { // NOTE: 只有打开时&无子级别查询
|
|
if (!row.expand && !row.childlist) { // NOTE: 只有打开时&无子级别查询
|
|
- const toastInstance = this.$toast({
|
|
|
|
- type: 'loading',
|
|
|
|
- message: '加载数据中',
|
|
|
|
- duration: 0
|
|
|
|
- })
|
|
|
|
const list = await this.__queryStoreData__(row.id)
|
|
const list = await this.__queryStoreData__(row.id)
|
|
row.childlist = [...list]
|
|
row.childlist = [...list]
|
|
-
|
|
|
|
- toastInstance.clear()
|
|
|
|
}
|
|
}
|
|
row.expand = !row.expand
|
|
row.expand = !row.expand
|
|
this.$forceUpdate()
|
|
this.$forceUpdate()
|
|
} catch (error) {
|
|
} catch (error) {
|
|
this.$toast(error.message)
|
|
this.$toast(error.message)
|
|
|
|
+ } finally {
|
|
|
|
+ toastInstance.clear()
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
|
|
@@ -529,7 +564,69 @@ export default {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
this.$router.go(-1)
|
|
this.$router.go(-1)
|
|
- }
|
|
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ // NOTE: 根据id展示分类名称
|
|
|
|
+ __category_en__(good) {
|
|
|
|
+ const { goods_category_first, goods_category_id } = good
|
|
|
|
+ const temporary = {
|
|
|
|
+ goods_category_first_en: '',
|
|
|
|
+ goods_category_en: ''
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ let arrs = this.categoryData
|
|
|
|
+ for (let i = 0; i < arrs.length; i++) {
|
|
|
|
+ const firs = arrs[i];
|
|
|
|
+ if (firs.id === goods_category_first) {
|
|
|
|
+ for (let j = 0; j < firs.childlist.length; j++) {
|
|
|
|
+ const itm = firs.childlist[j];
|
|
|
|
+ if (itm.id === goods_category_id) {
|
|
|
|
+ temporary.goods_category_first_en = firs.name
|
|
|
|
+ temporary.goods_category_en = itm.name
|
|
|
|
+ break
|
|
|
|
+ } else continue
|
|
|
|
+ }
|
|
|
|
+ } else continue
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return temporary
|
|
|
|
+ },
|
|
|
|
+ // NOTE: Search Event
|
|
|
|
+ async handleLaunchSearch() {
|
|
|
|
+ let keyword = this.searchVal
|
|
|
|
+ if (!keyword) return
|
|
|
|
+ const toastInstance = this.$toast({
|
|
|
|
+ type: 'loading',
|
|
|
|
+ message: '搜索中...',
|
|
|
|
+ duration: 0
|
|
|
|
+ })
|
|
|
|
+ try {
|
|
|
|
+ const result = await goodsApi.list({
|
|
|
|
+ search: keyword
|
|
|
|
+ })
|
|
|
|
+ if (result.code === 1) {
|
|
|
|
+ if (result.data.length) {
|
|
|
|
+ this.searchData = result.data.map(good => ({
|
|
|
|
+ ...good,
|
|
|
|
+ ...this.__category_en__(good)
|
|
|
|
+ }))
|
|
|
|
+ toastInstance.clear()
|
|
|
|
+ } else {
|
|
|
|
+ toastInstance.clear()
|
|
|
|
+ this.$toast(`暂无与${keyword}相关商品`)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ } catch (error) {
|
|
|
|
+ toastInstance.clear()
|
|
|
|
+ console.log('%c handleLaunchSearchError >>>', 'background: blue; color: #fff', error);
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ // Reset search
|
|
|
|
+ handleResetSearch() {
|
|
|
|
+ this.searchData = []
|
|
|
|
+ this.searchVal = ''
|
|
|
|
+ },
|
|
},
|
|
},
|
|
|
|
|
|
|
|
|