6.8/完善

This commit is contained in:
THK3121 2023-06-08 15:56:18 +08:00
parent e4950a2686
commit c29aecfcc0
4 changed files with 18 additions and 8 deletions

View File

@ -208,6 +208,7 @@
onShow() {
if (this.isLogin) {
this.emptyText = '暂无可用应用'
this.jurisdiction = false
} else {
this.emptyText = '请登录'
this.jurisdiction = true

View File

@ -1,6 +1,6 @@
<template>
<view class="container">
<input-goods-detils @getProductContent="getProductContent" title="填写商品描述" :prodectContent="goodsDis" :maxLength="200"></input-goods-detils>
<input-goods-detils @getProductContent="getProductContent" :title="store_name" :prodectContent="goodsDis" :maxLength="200"></input-goods-detils>
<view class="handle"><view class="handle_button" @click="save">保存</view></view>
</view>
@ -17,6 +17,7 @@
data() {
return {
goodsDis: {imageList: []},
store_name:''
}
},
created() {
@ -29,7 +30,9 @@
}
},
getProductContent(obj) {
console.log(obj);
this.goodsDis = obj;
this.a=obj.store_name
},
save() {
setStorage('goodsDis', this.goodsDis);

View File

@ -1,7 +1,7 @@
<template>
<view class="input_content">
<view class="input_content_textarea">
<textarea v-model="prodectContent.store_name" :placeholder="title" placeholder-class="placeholderStyle"
<textarea v-model="prodectContent.store_name" placeholder="请输入简介" placeholder-class="placeholderStyle"
:maxlength="maxLength" />
<view><text v-if="prodectContent.store_name">{{prodectContent.store_name.length}}</text><text
v-else>0</text>/{{maxLength}}</view>
@ -80,15 +80,21 @@
data() {
return {
uploadImg: this.prodectContent.imageList,
upstore : '',
isUpload: true,
imgName: ""
};
},
watch: {
prodectContent: {
handler(val) {
console.log(val.store_name);
this.upstore=val.store_name
this.$emit('getProductContent', val);
},
immediate: true,
deep: true
},
uploadImg: {
@ -99,6 +105,7 @@
this.isUpload = val.length < 1 ? true : false
}
},
immediate: true,
deep: true
}
},
@ -138,7 +145,7 @@
console.log(uploadFileRes.data);
let imgData = JSON.parse(uploadFileRes.data)
// that.prodectContent.imageList.push(imgData.data.path)
that.prodectContent = { imageList: [...that.prodectContent.imageList, imgData.data.path] }
that.prodectContent = { imageList: [...that.prodectContent.imageList, imgData.data.path] ,store_name:this.upstore}
},
complete(res) {
console.log(res)

View File

@ -71,13 +71,12 @@ export default {
},
//
selectTap(item, index) {
console.log(item);
// console.log(item);
this.selectIndex = index;
this.selectClassifiedData = serialize(item.children);
console.log(index);
if(this.tapList.length == 1){
console.log('123');
// this.selectClassifiedData = serialize(this.classifiedData);
if(index == 0){
this.tapList=[]
this.selectClassifiedData = serialize(this.classifiedData);
}
},
//