| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441 |
- <template>
- <view class="container">
- <view class="main-title">
- <view class="tit">
- 规格类型
- </view>
- <view class="cate-add" @click="addAttr">
- 新增
- </view>
- </view>
- <view class="cate-list">
- <view class="cate-item" v-for="(item,index) in attr" :key="index">
- <view class="cate-header">
- <view class="cate-name">
- <image class="pen" src="@/static/images/edit-pen.png"></image>
- <up-input class="cate-name-ipt" v-model="item.attrName" placeholder="请输入规格类型" inputAlign="left"
- border="none" type="text">
- </up-input>
- </view>
- <view class="delete-icon" @click="deleteAttr(index)">
- <image class="delete" src="/static/images/delete.png"></image>
- </view>
- </view>
- <view class="cate-child">
- <view class="children">
- <view class="children-item" v-for="(child,idx) in item.attrValue" :key="'c'+idx">
- <view class="cname">
- {{child}}
- </view>
- <image class="close" @click="deleteSub(index,idx)" src="@/static/images/close-icon.png"
- mode=""></image>
- </view>
- </view>
- <view class="cate-child-add" @click="addSub(index)">
- <image class="plus" src="@/static/images/plus-icon.png" mode=""></image>
- <view class="add">
- 添加规格项
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="bottom-actions">
- <view class="action-btn" @click="throttle(ensureClickHandle,500)"> 确定 </view>
- </view>
- <up-popup :show="showPopUp" :round="20" :duration="150" mode="bottom" @close="showPopUp=false"
- @open="showPopUp=true">
- <view class="pop-container">
- <view class="pop-header">
- 规格类型
- <image class="pop-close" src="/static/images/close-icon.png" mode="" @click="showPopUp=false">
- </image>
- </view>
- <view class="pop-ipt">
- <textarea class="item-textarea" @confirm="ensureAttrHandle" maxlength="100" :focus="iptFocus"
- v-model="cipt" placeholder="请输入规格类型" />
- </view>
- <view class="action-btn" @click="ensureAttrHandle"> 确定 </view>
- </view>
- </up-popup>
- </view>
- </template>
- <script setup>
- import {
- ref,
- computed,
- watch,
- nextTick
- } from 'vue';
- import {
- onShow,
- onLoad,
- onBackPress
- } from "@dcloudio/uni-app";
- import {
- productCategory,
- productSave,
- productUpdate,
- templatesList,
- productInfo
- } from "@/api/merchant";
- import CategorySelector from '@/components/CategorySelector';
- import {
- useAppStore
- } from "@/stores/app";
- import {
- useImageUpload
- } from "@/hooks/useImageUpload";
- import {
- useToast
- } from "@/hooks/useToast";
- import {
- debounce,
- throttle
- } from '../../../uni_modules/uview-plus';
- const {
- Toast
- } = useToast();
- const appStore = useAppStore();
- const cateDemo = {
- "id": 1586,
- "productId": 729,
- "attrName": "圈号",
- "attrValues": "56mm,68mm,78mm",
- "type": 0,
- "isDel": false
- }
- const attr = ref([])
- const showPopUp = ref(false)
- const cipt = ref('')
- const cIndex = ref();
- const cSubIndex = ref()
- const iptFocus = ref(false)
- // 当前变更类型,0代表规格值,1代表规格子值
- const cType = ref(0)
- const ensureClickHandle = () => {
- console.log("ensure")
- let flag = true;
- if (!attr.value || attr.value.length <= 0) {
- return Toast({
- title: "规格不能为空"
- })
- }
- attr.value.forEach(item => {
- if (!item.attrName) {
- flag = false
- return Toast({
- title: "规格名称不能为空"
- })
- }
- if (item.attrValue && item.attrValue.length > 0) {
- item.attrValue.forEach(child => {
- if (!child) {
- flag = false
- return Toast({
- title: "规格子集名称不能为空"
- })
- }
- })
- } else {
- flag = false
- return Toast({
- title: "规格子集不能为空"
- })
- }
- })
- if (!flag) return
- appStore.SET_CPATTR(attr.value)
- uni.$emit("updateAttr", attr.value)
- setTimeout(() => {
- uni.navigateBack()
- },300)
- }
- onLoad(() => {
- const data = appStore.cProductAttr;
- attr.value = data.concat();
- })
- throttle()
- // 添加规格
- const addAttr = () => {
- attr.value.push({
- attrName: '',
- attrValue: []
- })
- cType.value = 0;
- cIndex.value = attr.value.length - 1
- cipt.value = '';
- showPopUp.value = true;
- setTimeout(() => {
- iptFocus.value = true
- }, 500)
- }
- // 删除规格
- const deleteAttr = (index) => {
- attr.value.splice(index, 1)
- }
- // 删除规格子项值
- const deleteSub = (index, idx) => {
- attr.value[index].attrValue.splice(idx, 1)
- }
- // 新增规格子项值
- const addSub = (index) => {
- cType.value = 1;
- cIndex.value = index
- cipt.value = '';
- showPopUp.value = true;
- setTimeout(() => {
- iptFocus.value = true
- }, 500)
- }
- const ensureAttrHandle = () => {
- if (!cipt.value || !cipt.value.trim()) {
- return Toast({
- title: "请输入规格值"
- });
- }
- if (cType.value == 0) {
- attr.value[cIndex.value].attrName = cipt.value.trim()
- } else {
- attr.value[cIndex.value].attrValue.push(
- cipt.value.trim()
- )
- }
- iptFocus.value = false
- console.log(attr.value)
- showPopUp.value = false;
- }
- </script>
- <style scoped lang="scss">
- page {
- background-color: #f9f7f0;
- height: 100%;
- }
- .container {
- padding: 16rpx;
- background-color: #f9f7f0;
- padding-bottom: calc(132rpx + constant(safe-area-inset-bottom));
- padding-bottom: calc(132rpx + env(safe-area-inset-bottom));
- .main-title {
- width: 100%;
- height: 48rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 16rpx;
- .tit {
- font-size: 32rpx;
- color: #333;
- font-weight: bold;
- }
- .cate-add {
- padding: 16rpx 0 16rpx 16rpx;
- font-size: 28rpx;
- color: #F8C008;
- font-weight: bold;
- }
- }
- }
- .cate-list {
- .cate-item {
- width: 100%;
- padding: 20rpx;
- background-color: #fff;
- border-radius: 16rpx;
- margin-bottom: 20rpx;
- .cate-header {
- width: 100%;
- height: 64rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1px solid #F1F3F8;
- padding-bottom: 20rpx;
- .cate-name {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- .pen {
- width: 32rpx;
- height: 32rpx;
- margin-right: 16rpx;
- }
- .cate-name-ipt {
- height: 44rpx;
- line-height: 44rpx;
- font-size: 28rpx;
- color: #333;
- }
- }
- .delete-icon {
- padding: 10rpx 0 10rpx 10rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- .delete {
- width: 32rpx;
- height: 32rpx;
- }
- }
- }
- .children {
- width: 100%;
- display: flex;
- margin-top: 20rpx;
- justify-content: flex-start;
- align-items: center;
- flex-wrap: wrap;
- }
- .children-item {
- min-width: 120rpx;
- padding: 8rpx 16rpx;
- border-radius: 8rpx;
- margin-right: 20rpx;
- margin-bottom: 20rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- background-color: #F9F7F0;
- .cname {
- font-size: 28rpx;
- color: #333;
- margin-right: 16rpx;
- line-height: 44rpx;
- }
- .close {
- width: 32rpx;
- height: 32rpx;
- }
- }
- .cate-child-add {
- padding: 8rpx 16rpx;
- width: 220rpx;
- background-color: rgba(248, 192, 8, 0.10);
- border-radius: 8rpx;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- .add {
- font-size: 28rpx;
- line-height: 44rpx;
- color: #F8C008;
- }
- .plus {
- width: 32rpx;
- height: 32rpx;
- margin-right: 16rpx;
- }
- }
- }
- }
- .bottom-actions {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- width: 100%;
- z-index: 8;
- background: #FFFFFF;
- padding: 22rpx 32rpx calc(22rpx + constant(safe-area-inset-bottom));
- padding: 22rpx 32rpx calc(22rpx + env(safe-area-inset-bottom));
- }
- .action-btn {
- font-weight: bold;
- line-height: 88rpx;
- text-align: center;
- border-radius: 16rpx;
- font-size: 32rpx;
- font-weight: bold;
- background: #F8C008;
- }
- .pop-container {
- background-color: #fff;
- border-radius: 40rpx 40rpx 0 0;
- position: relative;
- padding: 22rpx 32rpx calc(22rpx + constant(safe-area-inset-bottom));
- padding: 22rpx 32rpx calc(22rpx + env(safe-area-inset-bottom));
- .pop-header {
- height: 44rpx;
- width: 100%;
- text-align: center;
- line-height: 48rpx;
- font-size: 32rpx;
- color: #333;
- font-weight: bold;
- .pop-close {
- width: 32rpx;
- height: 32rpx;
- position: absolute;
- right: 32rpx;
- top: 32rpx;
- }
- }
- .pop-ipt {
- width: 100%;
- display: flex;
- background-color: #F9F7F0;
- border-radius: 16rpx;
- margin-top: 32rpx;
- margin-bottom: 32rpx;
- }
- }
- .item-textarea {
- width: 100rpx;
- height: 200rpx;
- padding: 16rpx;
- flex: 1;
- text-align: left;
- }
- </style>
|