2024-03-21 17:52:58 +08:00
|
|
|
<template>
|
|
|
|
<view class="container">
|
|
|
|
<input-goods-detils @getProductContent="getProductContent" title="填写商品描述" :prodectContent="goodsDis" :maxLength="200"></input-goods-detils>
|
|
|
|
<view class="handle"><view class="handle_button" @click="save">保存</view></view>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
<script>
|
2024-03-21 18:05:36 +08:00
|
|
|
|
2024-03-21 17:52:58 +08:00
|
|
|
import inputGoodsDetils from '../components/inputGoodsDetils.vue';
|
|
|
|
import { navigateTo, navigateBack, setStorage, getStorage } from '../../../libs/uniApi.js';
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
inputGoodsDetils
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
goodsDis: {imageList: []},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.initData();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
initData() {
|
|
|
|
if(getStorage('goodsDis')) {
|
|
|
|
this.goodsDis = getStorage('goodsDis');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
getProductContent(obj) {
|
|
|
|
this.goodsDis = obj;
|
|
|
|
},
|
|
|
|
save() {
|
|
|
|
setStorage('goodsDis', this.goodsDis);
|
|
|
|
navigateBack(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.container {
|
|
|
|
padding-top: 20rpx;
|
|
|
|
}
|
|
|
|
.handle {
|
|
|
|
width: 100%;
|
|
|
|
height: 126rpx;
|
|
|
|
background: #ffffff;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
position: fixed;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
&_button {
|
|
|
|
width: 690rpx;
|
|
|
|
height: 86rpx;
|
|
|
|
background: #e93323;
|
|
|
|
border-radius: 43px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: 32rpx;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|