修改添加商品时,商品详情不能添加图品
This commit is contained in:
parent
e5a37372b8
commit
6ef97fbed3
@ -1,18 +1,24 @@
|
||||
<template>
|
||||
<view class="input_content">
|
||||
<view class="input_content_textarea">
|
||||
<textarea v-model="prodectContent.store_name" :placeholder="title" placeholder-class="placeholderStyle" :maxlength="maxLength"/>
|
||||
<view><text v-if="prodectContent.store_name">{{prodectContent.store_name.length}}</text><text v-else>0</text>/{{maxLength}}</view>
|
||||
<textarea v-model="prodectContent.store_name" :placeholder="title" placeholder-class="placeholderStyle"
|
||||
:maxlength="maxLength" />
|
||||
<view><text v-if="prodectContent.store_name">{{prodectContent.store_name.length}}</text><text
|
||||
v-else>0</text>/{{maxLength}}</view>
|
||||
|
||||
</view>
|
||||
|
||||
<view class="input_content_photo">
|
||||
<view class="input_content_photo_adPh" v-for="(item, index) in prodectContent.imageList" :key="index">
|
||||
<image :src="item" class="myimg2 photos"></image>
|
||||
<view class="input_content_photo_adPh_jiao" @click="deleteImage(index)"><image src="../static/images/close.png" mode=""></image></view>
|
||||
<view class="input_content_photo_adPh_jiao" @click="deleteImage(index)">
|
||||
<image src="../static/images/close.png" mode=""></image>
|
||||
</view>
|
||||
</view>
|
||||
<view v-if="isUpload" class="input_content_photo_adPh" @click="clk">
|
||||
<view><image src="../static/images/creamer.png" mode="widthFix"></image></view>
|
||||
<view>
|
||||
<image src="../static/images/creamer.png" mode="widthFix"></image>
|
||||
</view>
|
||||
<view>添加图片</view>
|
||||
</view>
|
||||
</view>
|
||||
@ -25,24 +31,27 @@
|
||||
<text v-else>0</text>/200
|
||||
</view>
|
||||
</view>
|
||||
<view class="input_content_describe_textarea"><textarea v-model="prodectContent.store_info" value="" placeholder="请填写商品简介" placeholderClass="placeholderClass" maxlength="200"/></view>
|
||||
<view class="input_content_describe_textarea"><textarea v-model="prodectContent.store_info" value=""
|
||||
placeholder="请填写商品简介" placeholderClass="placeholderClass" maxlength="200" /></view>
|
||||
</view>
|
||||
|
||||
<view class="input_content_keyword" v-if="isShowDescribe">
|
||||
<view class="input_content_keyword_label">关键字</view>
|
||||
<view class="input_content_keyword_value"><input v-model="prodectContent.keyword" type="text" value="" placeholder="填写关键字" /></view>
|
||||
<view class="input_content_keyword_value"><input v-model="prodectContent.keyword" type="text" value=""
|
||||
placeholder="填写关键字" /></view>
|
||||
</view>
|
||||
<avatar @upload="doUpload" @getName="getImgName" quality="1" ref="avatar" selWidth="250upx" selHeight="250upx"></avatar>
|
||||
<avatar @upload="doUpload" @getName="getImgName" quality="1" ref="avatar" selWidth="250upx" selHeight="250upx">
|
||||
</avatar>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { chooseImage } from '../../../libs/uniApi.js';
|
||||
import { TOKENNAME, HTTP_REQUEST_URL } from '../../../config/app.js';
|
||||
import avatar from "@/components/yq-avatar/yq-avatar.vue";
|
||||
import store from '@/store';
|
||||
import { chooseImage } from '../../../libs/uniApi.js';
|
||||
import { TOKENNAME, HTTP_REQUEST_URL } from '../../../config/app.js';
|
||||
import avatar from "@/components/yq-avatar/yq-avatar.vue";
|
||||
import store from '@/store';
|
||||
|
||||
export default {
|
||||
export default {
|
||||
components: {
|
||||
avatar
|
||||
},
|
||||
@ -65,7 +74,7 @@ export default {
|
||||
},
|
||||
prodectContent: {
|
||||
type: Object,
|
||||
default: ()=>{return {imageList: []}}
|
||||
default: () => { return { imageList: [] } }
|
||||
}
|
||||
},
|
||||
data() {
|
||||
@ -84,10 +93,10 @@ export default {
|
||||
},
|
||||
uploadImg: {
|
||||
handler(val) {
|
||||
if(this.isMultiple){
|
||||
this.isUpload = val.length<6?true : false
|
||||
}else{
|
||||
this.isUpload = val.length <1?true : false
|
||||
if (this.isMultiple) {
|
||||
this.isUpload = val.length < 6 ? true : false
|
||||
} else {
|
||||
this.isUpload = val.length < 1 ? true : false
|
||||
}
|
||||
},
|
||||
deep: true
|
||||
@ -99,14 +108,14 @@ export default {
|
||||
methods: {
|
||||
handleChooseImage() {
|
||||
let that = this;
|
||||
that.$util.uploadImageOne('upload/image', function (res) {
|
||||
that.$util.uploadImageOne('upload/image', function(res) {
|
||||
that.uploadImg.push(res.data.path);
|
||||
that.$set(that.prodectContent,'imageList',that.uploadImg);
|
||||
that.$set(that.prodectContent, 'imageList', that.uploadImg);
|
||||
});
|
||||
},
|
||||
clk() {
|
||||
let avatar = this.$refs.avatar;
|
||||
avatar.fChooseImg(1,{selWidth: '350upx', selHeight: '350upx', inner: true});
|
||||
avatar.fChooseImg(1, { selWidth: '350upx', selHeight: '350upx', inner: true });
|
||||
},
|
||||
doUpload(rsp) {
|
||||
console.log(rsp);
|
||||
@ -128,14 +137,15 @@ export default {
|
||||
success: (uploadFileRes) => {
|
||||
console.log(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] }
|
||||
},
|
||||
complete(res) {
|
||||
console.log(res)
|
||||
}
|
||||
});
|
||||
},
|
||||
getImgName(name){
|
||||
getImgName(name) {
|
||||
this.imgName = name
|
||||
},
|
||||
// 删除图片
|
||||
@ -144,24 +154,27 @@ export default {
|
||||
this.uploadImg = this.prodectContent.imageList
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.input_content {
|
||||
.input_content {
|
||||
background: #fff;
|
||||
padding: 20rpx 40rpx 40rpx 30rpx;
|
||||
width: 710rpx;
|
||||
margin: auto;
|
||||
box-sizing: border-box;
|
||||
border-radius: 10rpx;
|
||||
|
||||
&_textarea {
|
||||
border-bottom: 1px solid #eeeeee;
|
||||
padding-bottom: 19rpx;
|
||||
|
||||
textarea {
|
||||
height: 114rpx;
|
||||
}
|
||||
> view {
|
||||
|
||||
>view {
|
||||
text-align: right;
|
||||
color: #666666;
|
||||
font-size: 24rpx;
|
||||
@ -172,10 +185,12 @@ export default {
|
||||
margin-top: 41rpx;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
.photos{
|
||||
|
||||
.photos {
|
||||
width: 156rpx;
|
||||
height: 156rpx;
|
||||
}
|
||||
|
||||
&_adPh {
|
||||
position: relative;
|
||||
width: 156rpx;
|
||||
@ -187,22 +202,25 @@ export default {
|
||||
border-radius: 8rpx;
|
||||
margin-right: 30rpx;
|
||||
margin-bottom: 30rpx;
|
||||
> image {
|
||||
|
||||
>image {
|
||||
height: 100%;
|
||||
margin: auto;
|
||||
}
|
||||
> view:nth-child(1) {
|
||||
|
||||
>view:nth-child(1) {
|
||||
height: 37rpx;
|
||||
margin-bottom: 16rpx;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
||||
image {
|
||||
width: 45rpx;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
> view:nth-child(2) {
|
||||
>view:nth-child(2) {
|
||||
text-align: center;
|
||||
color: #bbbbbb;
|
||||
font-size: 24rpx;
|
||||
@ -219,6 +237,7 @@ export default {
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 50%;
|
||||
|
||||
image {
|
||||
width: 16rpx;
|
||||
height: 16rpx;
|
||||
@ -226,19 +245,23 @@ export default {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&_describe {
|
||||
border-top: 1px solid #eeeeee;
|
||||
padding-top: 30rpx;
|
||||
padding-bottom: 47rpx;
|
||||
border-bottom: 1px solid #eeeeee;
|
||||
|
||||
&_title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
|
||||
&_msg {
|
||||
color: #333333;
|
||||
font-size: 30rpx;
|
||||
}
|
||||
|
||||
&_num {
|
||||
color: #666666;
|
||||
font-size: 24rpx;
|
||||
@ -251,6 +274,7 @@ export default {
|
||||
height: 180rpx;
|
||||
background: #f5f5f5;
|
||||
padding: 20rpx;
|
||||
|
||||
textarea {
|
||||
font-size: 28rpx;
|
||||
}
|
||||
@ -263,19 +287,21 @@ export default {
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
font-size: 30rpx;
|
||||
|
||||
&_value {
|
||||
flex: 1;
|
||||
margin-left: 30rpx;
|
||||
|
||||
input {
|
||||
width: 100%;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.placeholderClass {
|
||||
.placeholderClass {
|
||||
color: #bbbbbb;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
}
|
||||
</style>
|
Loading…
x
Reference in New Issue
Block a user