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() { onShow() {
if (this.isLogin) { if (this.isLogin) {
this.emptyText = '暂无可用应用' this.emptyText = '暂无可用应用'
this.jurisdiction = false
} else { } else {
this.emptyText = '请登录' this.emptyText = '请登录'
this.jurisdiction = true this.jurisdiction = true

View File

@ -1,6 +1,6 @@
<template> <template>
<view class="container"> <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 class="handle"><view class="handle_button" @click="save">保存</view></view>
</view> </view>
@ -17,6 +17,7 @@
data() { data() {
return { return {
goodsDis: {imageList: []}, goodsDis: {imageList: []},
store_name:''
} }
}, },
created() { created() {
@ -29,7 +30,9 @@
} }
}, },
getProductContent(obj) { getProductContent(obj) {
console.log(obj);
this.goodsDis = obj; this.goodsDis = obj;
this.a=obj.store_name
}, },
save() { save() {
setStorage('goodsDis', this.goodsDis); setStorage('goodsDis', this.goodsDis);

View File

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

View File

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