|
@@ -62,23 +62,62 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+
|
|
|
+ <!-- TEMPORARY: 临时 -->
|
|
|
+ <div @click=" popupVisibility = true">open the door</div>
|
|
|
</div>
|
|
|
-
|
|
|
+
|
|
|
<van-popup
|
|
|
- class="popupxx"
|
|
|
+ class="popup flex flex-col"
|
|
|
v-model="popupVisibility"
|
|
|
position="bottom"
|
|
|
:style="{ height: '60%' }"
|
|
|
closeable
|
|
|
close-icon-position="top-right"
|
|
|
>
|
|
|
- <div class="popup__header">全部筛选</div>
|
|
|
+ <div class="popup__header">
|
|
|
+ <span class="product__title">校服</span>
|
|
|
+ <span class="product__inventory">库存剩余:20件</span>
|
|
|
+ </div>
|
|
|
<div class="popup__main">
|
|
|
- 123
|
|
|
+ <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"
|
|
|
+ />
|
|
|
+ </template>
|
|
|
+ <template v-else>
|
|
|
+ <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>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </template>
|
|
|
</div>
|
|
|
<div class="popup__footer">
|
|
|
<div class="btn-container">
|
|
|
- <span class="btn-span">submit</span>
|
|
|
+ <div class="btn-span" @click="handleConfirmInput">确认</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</van-popup>
|
|
@@ -171,27 +210,98 @@
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
-
|
|
|
.popup {
|
|
|
- &__title {
|
|
|
- text-align: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding: 8px 0 0;
|
|
|
+ box-sizing: border-box;
|
|
|
+ &__header {
|
|
|
+ margin: 0 12px;
|
|
|
+ padding-right: 30px;
|
|
|
+ padding-bottom: 10px;
|
|
|
+ padding-top: 8px;
|
|
|
+ border-bottom: 1px solid rgba(151, 151, 151, 0.3);
|
|
|
font-size: @font-size-common;
|
|
|
- font-weight: 600;
|
|
|
- color: #0A1629;
|
|
|
- line-height: 46px;
|
|
|
- padding-bottom: 30px;
|
|
|
}
|
|
|
- &__main {}
|
|
|
- &__footer {}
|
|
|
+ &__main {
|
|
|
+ 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;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.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;
|
|
|
+ font-weight: 400;
|
|
|
+ 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;
|
|
|
+ background: #EFF7FB;
|
|
|
+ border-radius: 8px;
|
|
|
+ font-size: @font-size-secondery;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #727273;
|
|
|
+ padding: 8px 0;
|
|
|
+ transition-property: background-color, color;
|
|
|
+ transition-duration: 0.2s;
|
|
|
+ &.selected {
|
|
|
+ background: #0a83d3;
|
|
|
+ color: @white;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|
|
|
|
|
|
<script>
|
|
|
-// vueBus.$emit('updateProductList', [])
|
|
|
+
|
|
|
+import vueBus from '@/utils/vueBus';
|
|
|
+
|
|
|
+import CInput from './components/CInput.vue';
|
|
|
+
|
|
|
export default {
|
|
|
name: "ProductStore",
|
|
|
+ components: {
|
|
|
+ CInput
|
|
|
+ },
|
|
|
data: () => ({
|
|
|
searchVal: '',
|
|
|
tableData: [
|
|
@@ -241,19 +351,74 @@ export default {
|
|
|
]
|
|
|
},
|
|
|
],
|
|
|
- popupVisibility: true
|
|
|
+
|
|
|
+ // 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: ''
|
|
|
+ }
|
|
|
+ ]
|
|
|
}),
|
|
|
methods: {
|
|
|
+ __init__ () {
|
|
|
+ // TODO: 调用接口
|
|
|
+ },
|
|
|
+
|
|
|
+ __query_data__ () {},
|
|
|
+
|
|
|
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()
|
|
|
+ },
|
|
|
+
|
|
|
+ // 选择类型
|
|
|
+ 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'
|
|
|
+ })
|
|
|
}
|
|
|
}
|
|
|
|