|
@@ -2,114 +2,77 @@
|
|
|
<div class="product-store-container flex flex-col">
|
|
|
<div class="product-store__header">
|
|
|
<div class="search-box">
|
|
|
- <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 class="sub-title">
|
|
|
<span>商品库</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
-
|
|
|
<!-- 展示内容 -->
|
|
|
<div class="product-store__main">
|
|
|
- <div class="row"
|
|
|
- v-for="(item, idx) in tableData"
|
|
|
- :key="idx"
|
|
|
- >
|
|
|
- <div class="row__header row__header--b-line flex flex-row flex-row-aic">
|
|
|
- <div class="row__header__content">
|
|
|
- {{ item.label }}
|
|
|
- </div>
|
|
|
- <div class="row__header__more flex flex-row flex-row-aic" @click="handleClickRow(item, idx)">
|
|
|
- <van-icon name="cluster-o" :size="26" color="#3290C4" />
|
|
|
- <span class="txt">下级</span>
|
|
|
+ <van-radio-group v-model="radioCategory">
|
|
|
+ <div class="row" v-for="(item, idx) in tableData" :key="idx">
|
|
|
+ <div class="row__header row__header--b-line flex flex-row flex-row-aic">
|
|
|
+ <div class="row__header__content">
|
|
|
+ {{ item.name }}
|
|
|
+ </div>
|
|
|
+ <div class="row__header__more flex flex-row flex-row-aic" @click="handleClickRow(item, idx)">
|
|
|
+ <van-icon name="cluster-o" :size="26" color="#3290C4" />
|
|
|
+ <span class="txt">下级</span>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
- <div class="row__main" v-if="item.expand">
|
|
|
- <div class="row__second"
|
|
|
- v-for="(second, idx2) in item.children"
|
|
|
- :key="idx2"
|
|
|
- >
|
|
|
- <div class="row__second__header row__second__header--b-line flex flex-row flex-row-aic" @click="handleClickSecondRow(second, idx2)">
|
|
|
- <div class="row__second__header__content">
|
|
|
- {{ second.label }}
|
|
|
- </div>
|
|
|
- <div class="row__second__header__more">
|
|
|
- <!-- <van-icon name="arrow-up" /> -->
|
|
|
- <van-icon v-if="second.expand" name="arrow-up" :size="24" color="rgba(162, 163, 164, 1)" />
|
|
|
- <van-icon v-else name="arrow-down" :size="24" color="rgba(162, 163, 164, 1)" />
|
|
|
+ <div class="row__main" v-if="item.expand">
|
|
|
+ <div class="row__second" v-for="(second, idx2) in item.childlist" :key="idx2">
|
|
|
+ <div class="row__second__header row__second__header--b-line flex flex-row flex-row-aic"
|
|
|
+ @click="type === '1' ? handleClickSecondRow(second, idx2) : null">
|
|
|
+ <!-- NOTE: Radio. 单选组件 -->
|
|
|
+ <div class="radio-box" v-if="type === '2'">
|
|
|
+ <van-radio :name="second.id">{{ second.name }}</van-radio>
|
|
|
+ </div>
|
|
|
+ <div v-else class="row__second__header__content">
|
|
|
+ {{ second.name }}
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- NOTE: 只存在于选择商品 -->
|
|
|
+ <div class="row__second__header__more" v-if="type === '1'">
|
|
|
+ <van-icon v-if="second.expand" name="arrow-up" :size="24" color="rgba(162, 163, 164, 1)" />
|
|
|
+ <van-icon v-else name="arrow-down" :size="24" color="rgba(162, 163, 164, 1)" />
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
- <div class="row__second__main" v-if="second.expand">
|
|
|
- <div class="row__third-item flex flex-row flex-row-aic"
|
|
|
- v-for="(third, idx3) in second.children"
|
|
|
- :key="idx3"
|
|
|
- >
|
|
|
- <van-checkbox
|
|
|
- v-model="third.checked"
|
|
|
- for="c1"
|
|
|
- >
|
|
|
- <span id="c1" class="content">{{ third.label }}</span>
|
|
|
- </van-checkbox>
|
|
|
+ <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>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
-
|
|
|
- <!-- TEMPORARY: 临时 -->
|
|
|
- <div @click=" popupVisibility = true">open the door</div>
|
|
|
+ </van-radio-group>
|
|
|
</div>
|
|
|
|
|
|
- <van-popup
|
|
|
- class="popup flex flex-col"
|
|
|
- v-model="popupVisibility"
|
|
|
- position="bottom"
|
|
|
- :style="{ height: '60%' }"
|
|
|
- closeable
|
|
|
- close-icon-position="top-right"
|
|
|
- >
|
|
|
+ <van-popup class="popup flex flex-col" v-model="popupVisibility" position="bottom" :style="{ height: '60%' }"
|
|
|
+ closeable close-icon-position="top-right">
|
|
|
<div class="popup__header">
|
|
|
- <span class="product__title">校服</span>
|
|
|
- <span class="product__inventory">库存剩余:20件</span>
|
|
|
+ <span class="product__title" v-if="choosedStock">{{ choosedStock.goods_name }}</span>
|
|
|
+
|
|
|
+ <span class="product__inventory">{{ leftStockComp }}</span>
|
|
|
</div>
|
|
|
<div class="popup__main">
|
|
|
- <template
|
|
|
- v-for="(item, idx) in productData"
|
|
|
- >
|
|
|
+ <template v-for="(item, idx) in productData">
|
|
|
<template v-if="item.type === 'total'">
|
|
|
- <c-input
|
|
|
- title="物品数量"
|
|
|
- placeholder="请输入物品数量"
|
|
|
- :maxlength="5"
|
|
|
- :showWordLimit="false"
|
|
|
- input-type="number"
|
|
|
- v-model="item.val"
|
|
|
- :key="idx"
|
|
|
- />
|
|
|
+ <c-input :title="item.label" :placeholder="`请输入${item.label}`" :maxlength="5" :showWordLimit="false"
|
|
|
+ input-type="digit" v-model="item.val" :key="idx" />
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
- <div
|
|
|
- :key="idx"
|
|
|
- class="product__row"
|
|
|
- >
|
|
|
+ <div :key="idx" class="product__row">
|
|
|
<div class="product__row__header">
|
|
|
{{ item.label }}
|
|
|
</div>
|
|
|
<div class="product__row__main">
|
|
|
- <span
|
|
|
- v-for="(type, idx) in item.list"
|
|
|
- :key="idx"
|
|
|
- :data-id="type.id"
|
|
|
- :class="{'selected': item.val == type.id}"
|
|
|
- @click="handleClickItem(item, type)"
|
|
|
- >{{ type.name }}</span>
|
|
|
+ <span v-for="(type, idx) in item.list" :key="idx" :data-id="type.id"
|
|
|
+ :class="{ 'selected': item.val == type.id }" @click="handleClickItem(item, type)">{{ type.name }}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -126,20 +89,24 @@
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
@import url('@/styles/variables.less');
|
|
|
+
|
|
|
.product-store {
|
|
|
&-container {
|
|
|
height: 100vh;
|
|
|
justify-content: space-between;
|
|
|
}
|
|
|
+
|
|
|
&__header {
|
|
|
padding: 10px 12px 0;
|
|
|
background-color: @white;
|
|
|
+
|
|
|
.search-box {
|
|
|
.van-cell.van-field {
|
|
|
- background: rgba(118,118,128,0.12);
|
|
|
+ background: rgba(118, 118, 128, 0.12);
|
|
|
border-radius: 8px;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.sub-title {
|
|
|
font-size: @font-size-third;
|
|
|
font-weight: 400;
|
|
@@ -148,26 +115,33 @@
|
|
|
padding: 10px 0;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
&__main {
|
|
|
padding: 10px 0;
|
|
|
height: 0;
|
|
|
flex: 1;
|
|
|
+
|
|
|
.row {
|
|
|
margin-bottom: 10px;
|
|
|
background-color: @white;
|
|
|
+
|
|
|
&__header {
|
|
|
padding: 10px 12px;
|
|
|
justify-content: space-between;
|
|
|
+
|
|
|
&--b-line {
|
|
|
border-bottom: 1px solid #eee;
|
|
|
}
|
|
|
+
|
|
|
&__content {
|
|
|
font-size: @font-size-secondery;
|
|
|
}
|
|
|
+
|
|
|
&__more {
|
|
|
font-size: 16px;
|
|
|
border-left: 1px solid rgba(151, 151, 151, 0.4);
|
|
|
padding: 3px 10px 3px 20px;
|
|
|
+
|
|
|
span.txt {
|
|
|
padding-left: 6px;
|
|
|
color: #3290c4;
|
|
@@ -183,38 +157,52 @@
|
|
|
&__header {
|
|
|
padding: 10px 12px;
|
|
|
justify-content: space-between;
|
|
|
+
|
|
|
&--b-line {
|
|
|
border-bottom: 1px solid #eee;
|
|
|
}
|
|
|
+
|
|
|
&__content {
|
|
|
font-size: @font-size-secondery;
|
|
|
}
|
|
|
- &__more {
|
|
|
|
|
|
+ &__more {}
|
|
|
+
|
|
|
+ /deep/.van-radio__label {
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
+
|
|
|
+ // .van-radio__icon--checked .van-icon
|
|
|
+ /deep/.van-radio__icon--checked .van-icon {
|
|
|
+ background-color: @main-color;
|
|
|
+ border-color: @main-color;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
&__main {
|
|
|
padding-left: 30px;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
&__third-item {
|
|
|
padding: 10px 12px;
|
|
|
font-size: @font-size-third;
|
|
|
border-bottom: 1px solid #eee;
|
|
|
+
|
|
|
&:last-child {
|
|
|
border-bottom-color: transparent;
|
|
|
}
|
|
|
- .content {
|
|
|
- padding-left: 10px;
|
|
|
- }
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
.popup {
|
|
|
justify-content: space-between;
|
|
|
padding: 8px 0 0;
|
|
|
box-sizing: border-box;
|
|
|
+
|
|
|
&__header {
|
|
|
margin: 0 12px;
|
|
|
padding-right: 30px;
|
|
@@ -223,17 +211,24 @@
|
|
|
border-bottom: 1px solid rgba(151, 151, 151, 0.3);
|
|
|
font-size: @font-size-common;
|
|
|
}
|
|
|
+
|
|
|
&__main {
|
|
|
+ margin: 18px 0;
|
|
|
+ height: 0;
|
|
|
+ flex: 1;
|
|
|
overflow: auto;
|
|
|
+
|
|
|
.layout-container {
|
|
|
padding-top: 12px;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
&__footer {
|
|
|
position: relative;
|
|
|
z-index: 9;
|
|
|
border-top: 12px solid rgba(248, 248, 248, 1);
|
|
|
box-shadow: 0 -2px 16px 1px rgba(0, 0, 0, 0.2);
|
|
|
+
|
|
|
.btn-container {
|
|
|
margin-top: initial;
|
|
|
}
|
|
@@ -243,15 +238,18 @@
|
|
|
.product {
|
|
|
&__row {
|
|
|
padding: 6px 12px 16px;
|
|
|
+
|
|
|
&:nth-last-of-type(2) {
|
|
|
border-bottom: 1px solid rgba(151, 151, 151, 0.3);
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
&__title {
|
|
|
font-size: 16px;
|
|
|
font-weight: 500;
|
|
|
color: #191A1E;
|
|
|
}
|
|
|
+
|
|
|
&__inventory {
|
|
|
padding-left: 10px;
|
|
|
font-size: 12px;
|
|
@@ -259,17 +257,20 @@
|
|
|
color: #727273;
|
|
|
vertical-align: bottom;
|
|
|
}
|
|
|
+
|
|
|
&__row {
|
|
|
&__header {
|
|
|
font-size: @font-size-common;
|
|
|
padding: 8px 0 10px;
|
|
|
color: #191A1E;
|
|
|
}
|
|
|
+
|
|
|
&__main {
|
|
|
display: grid;
|
|
|
grid-template-columns: repeat(2, 49%);
|
|
|
column-gap: 2%;
|
|
|
row-gap: 10px;
|
|
|
+
|
|
|
span {
|
|
|
display: inline-block;
|
|
|
text-align: center;
|
|
@@ -281,6 +282,7 @@
|
|
|
padding: 8px 0;
|
|
|
transition-property: background-color, color;
|
|
|
transition-duration: 0.2s;
|
|
|
+
|
|
|
&.selected {
|
|
|
background: #0a83d3;
|
|
|
color: @white;
|
|
@@ -292,134 +294,200 @@
|
|
|
</style>
|
|
|
|
|
|
<script>
|
|
|
-
|
|
|
+/**
|
|
|
+ * @description 当前页面处理为多种展示格式。
|
|
|
+ * - 商品单选
|
|
|
+ * - 分类选择
|
|
|
+ */
|
|
|
import vueBus from '@/utils/vueBus';
|
|
|
-
|
|
|
import CInput from './components/CInput.vue';
|
|
|
|
|
|
+import * as goodsApi from '@/api/goods'
|
|
|
+
|
|
|
export default {
|
|
|
name: "ProductStore",
|
|
|
components: {
|
|
|
CInput
|
|
|
},
|
|
|
+ computed: {
|
|
|
+ leftStockComp() {
|
|
|
+ if (!this.choosedStock) return ''
|
|
|
+ const [{ val, list }] = this.productData
|
|
|
+ let currentData = list.filter(item => item.id === val)
|
|
|
+ if (currentData.length) {
|
|
|
+ let len = currentData[0].stock
|
|
|
+ return len > 0 ? `库存剩余:${len}件` : `暂无库存`
|
|
|
+ } else return ''
|
|
|
+ }
|
|
|
+ },
|
|
|
data: () => ({
|
|
|
- searchVal: '',
|
|
|
- tableData: [
|
|
|
- {
|
|
|
- label: '卫生用品',
|
|
|
- children: [
|
|
|
- {
|
|
|
- label: '服装用品',
|
|
|
- children: [
|
|
|
- {
|
|
|
- label: '防护服'
|
|
|
- },
|
|
|
- {
|
|
|
- label: '防护服222'
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- label: '生活用品',
|
|
|
- children: [
|
|
|
- {
|
|
|
- label: '鞋刷子'
|
|
|
- }
|
|
|
- ]
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- label: '卫生用品2',
|
|
|
- children: [
|
|
|
- {
|
|
|
- label: '服装用品2-1',
|
|
|
- children: [
|
|
|
- {
|
|
|
- label: '防护服2-1-1'
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- label: '生活用品2-2',
|
|
|
- children: [
|
|
|
- {
|
|
|
- label: '鞋刷子2-2-1'
|
|
|
- }
|
|
|
- ]
|
|
|
- }
|
|
|
- ]
|
|
|
- },
|
|
|
- ],
|
|
|
-
|
|
|
+ type: "1", // 页面状态。 默认1:商品选择。 可选项2:选择分类
|
|
|
+ radioCategory: '', // 二级分类Id
|
|
|
+ searchVal: '', // 搜索商品?
|
|
|
+ tableData: [], // 分类数据
|
|
|
// NOTE: Popup data and context data
|
|
|
popupVisibility: false,
|
|
|
- productData: [
|
|
|
- {
|
|
|
- label: '颜色',
|
|
|
- val: 1,
|
|
|
- list: [
|
|
|
- { id: 1, name: 'black' },
|
|
|
- { id: 2, name: 'white' },
|
|
|
- { id: 3, name: 'yellow' },
|
|
|
- { id: 4, name: 'yellow' },
|
|
|
- { id: 5, name: 'blue' },
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- label: '长度',
|
|
|
- val: '',
|
|
|
- list: [
|
|
|
- { id: 1, name: '150cm' },
|
|
|
- { id: 2, name: '160cm' },
|
|
|
- { id: 3, name: '170cm' },
|
|
|
- { id: 4, name: '180cm' },
|
|
|
- ]
|
|
|
- },
|
|
|
- {
|
|
|
- label: '数量',
|
|
|
- type: 'total',
|
|
|
- val: ''
|
|
|
- }
|
|
|
- ]
|
|
|
+ productData: [], // 弹出选择商品的数量等。
|
|
|
+ choosedStock: null,
|
|
|
}),
|
|
|
+
|
|
|
+ created() {
|
|
|
+ this.__init__()
|
|
|
+ },
|
|
|
methods: {
|
|
|
- __init__ () {
|
|
|
- // TODO: 调用接口
|
|
|
+ async __init__() {
|
|
|
+ try {
|
|
|
+ let query = this.$route.query
|
|
|
+ if (query) {
|
|
|
+ // type = 1 // 页面类型。1 => 选择商品。 2 => 选择分类
|
|
|
+ if (query.type) this.type = query.type
|
|
|
+ }
|
|
|
+
|
|
|
+ await this.__queryCategoay__() // initalization query categray
|
|
|
+ } catch (error) {
|
|
|
+ console.log('ProductStore __init__ error', error);
|
|
|
+ }
|
|
|
},
|
|
|
|
|
|
- __query_data__ () {},
|
|
|
+ __query_data__() { },
|
|
|
|
|
|
- handleClickSearchBox(){},
|
|
|
+ handleClickSearchBox() { },
|
|
|
|
|
|
// 点击一级
|
|
|
handleClickRow(row) {
|
|
|
- console.log('%c printlog >>>', 'background: blue; color: #fff', row);
|
|
|
-
|
|
|
row.expand = !row.expand
|
|
|
this.$forceUpdate()
|
|
|
},
|
|
|
|
|
|
// 点击二级
|
|
|
- handleClickSecondRow (row) {
|
|
|
- row.expand = !row.expand
|
|
|
- this.$forceUpdate()
|
|
|
+ async handleClickSecondRow(row) {
|
|
|
+ try {
|
|
|
+ if (!row.expand && !row.childlist) { // NOTE: 只有打开时&无子级别查询
|
|
|
+ const toastInstance = this.$toast({
|
|
|
+ type: 'loading',
|
|
|
+ message: '加载数据中',
|
|
|
+ duration: 0
|
|
|
+ })
|
|
|
+ const list = await this.__queryStoreData__(row.id)
|
|
|
+ row.childlist = [...list]
|
|
|
+
|
|
|
+ toastInstance.clear()
|
|
|
+ }
|
|
|
+ row.expand = !row.expand
|
|
|
+ this.$forceUpdate()
|
|
|
+ } catch (error) {
|
|
|
+ this.$toast(error.message)
|
|
|
+ }
|
|
|
},
|
|
|
-
|
|
|
+
|
|
|
// 选择类型
|
|
|
- handleClickItem (row, item) {
|
|
|
+ handleClickItem(row, item) {
|
|
|
row.val = item.id
|
|
|
},
|
|
|
|
|
|
// 弹窗确认
|
|
|
- handleConfirmInput () {
|
|
|
- let isAllInput = this.productData.every(item => item.val)
|
|
|
- if (!isAllInput) return this.$toast('检查选择填写情况')
|
|
|
- this.$toast(this.productData.map(item => item.val).join(','))
|
|
|
- vueBus.$emit('updateProductList', {
|
|
|
- name: 'xiaofu'
|
|
|
+ handleConfirmInput() {
|
|
|
+ try {
|
|
|
+ let _list = this.productData
|
|
|
+ let isAllInput = _list.every(item => item.val)
|
|
|
+ if (!isAllInput) return this.$toast('检查填写情况')
|
|
|
+
|
|
|
+ const [choosedGoodsId, customCount, GoodsPrice] = _list.map(item => item.val)
|
|
|
+
|
|
|
+ // 选中的类别对象
|
|
|
+ let choosedGoodsS = _list[0].list.filter(item => item.id === choosedGoodsId)[0]
|
|
|
+ let ChoosedGoodsStock = 0
|
|
|
+ if (choosedGoodsS) {
|
|
|
+ ChoosedGoodsStock = choosedGoodsS.stock
|
|
|
+ }
|
|
|
+
|
|
|
+ // 判断输入的数量是否大于库存
|
|
|
+ if (customCount > ChoosedGoodsStock) {
|
|
|
+ return this.$toast('当前商品规格数量不足')
|
|
|
+ }
|
|
|
+
|
|
|
+ if (GoodsPrice <= 0) {
|
|
|
+ return this.$toast('当前商品价格不对')
|
|
|
+ }
|
|
|
+
|
|
|
+ // if (this.type === '1') {}
|
|
|
+ vueBus.$emit('updateProductList', {
|
|
|
+ item: this.choosedStock,
|
|
|
+ goodsStock: choosedGoodsS,
|
|
|
+ customCount,
|
|
|
+ GoodsPrice
|
|
|
+ })
|
|
|
+ this.$router.go(-1);
|
|
|
+ } catch (error) {
|
|
|
+ console.log(error);
|
|
|
+ }
|
|
|
+
|
|
|
+ },
|
|
|
+
|
|
|
+ // NOTE: 选中某商品进行业务
|
|
|
+ handleSelectedGoods(item) {
|
|
|
+ const { goods_stock } = item
|
|
|
+ this.choosedStock = item
|
|
|
+ this.productData = [
|
|
|
+ {
|
|
|
+ label: '规格',
|
|
|
+ val: '',
|
|
|
+ list: goods_stock
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '物品数量',
|
|
|
+ type: 'total',
|
|
|
+ val: ''
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '物品单价',
|
|
|
+ type: 'total',
|
|
|
+ val: ''
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ this.popupVisibility = true
|
|
|
+ },
|
|
|
+
|
|
|
+ // NOTE: 查询分类数据
|
|
|
+ __queryCategoay__() {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ goodsApi.category().then(result => {
|
|
|
+ if (result.code === 1) {
|
|
|
+ this.tableData = result.data
|
|
|
+ resolve()
|
|
|
+ } else {
|
|
|
+ reject()
|
|
|
+ }
|
|
|
+ }).catch(error => {
|
|
|
+ console.log('%c error >>>', 'background: blue; color: #fff', error);
|
|
|
+ reject()
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ // NOTE: 查询商品数据
|
|
|
+ // @returns [] | throw error
|
|
|
+ __queryStoreData__(category_id) {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ goodsApi.list({
|
|
|
+ category_id
|
|
|
+ }).then(result => {
|
|
|
+ if (result.code === 1) {
|
|
|
+ resolve(result.data || [])
|
|
|
+ }
|
|
|
+ }).catch(error => {
|
|
|
+ reject(error)
|
|
|
+ })
|
|
|
})
|
|
|
}
|
|
|
+ },
|
|
|
+
|
|
|
+
|
|
|
+ watch: {
|
|
|
+ radio(val) {
|
|
|
+ console.log('%c radio value watch? >>>', 'background: blue; color: #fff', val);
|
|
|
+
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
}
|