123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- <template>
- <view class="container">
- <global-loading />
- <!-- 评论商品 -->
- <view class="addEvaluate-box flex-items-plus flex-column-plus">
- <view class="addEvaluate flex-column-plus">
- <view class="addEvaluateTitle-box flex-row-plus mar-top-20 mar-left-20">
- <image class="title-img" :src="commentData.image"></image>
- <view class="title-textbox overflow">
- <label class="fs24 title-text">{{ commentData.productName }}</label>
- <view class="font-color-999 fs22 mar-top-10">
- {{ commentData.value }}
- </view>
- </view>
- </view>
- <view class="fs26 mar-top-50 flex-display flex-sp-around">
- <label>宝贝描述</label>
- <u-rate
- v-model="commentStar" size="40" active-color="#C5AA7B" inactive-color="#b2b2b2"
- gutter="32"
- @change="onCommentStarChange"
- ></u-rate>
- <label v-if="commentStar < 2" style="width: 80upx;">差</label>
- <label v-else-if="commentStar < 4" style="width: 80upx;">好</label>
- <label v-else style="width: 80upx;">非常好</label>
- </view>
- <view class="textarea-box mar-top-40 mar-left-20">
- <textarea
- v-model="commentText" class="textarea-text" maxlength="200" placeholder-style="color:#BBBBBB"
- placeholder="感谢您对宝贝的看法"
- />
- </view>
- <view class="mar-left-10 evaluateImg">
- <u-upload
- ref="uUpload" :action="action" :limit-type="['png', 'jpg', 'jpeg', 'webp', 'gif', 'image']"
- :header="headerToken" :form-data="formData"
- ></u-upload>
- </view>
- <!-- <view class="addPicture-box flex-column-plus">
- <label class="addPicture-icon">+</label>
- <label class="fs24 addPicture">图片</label>
- </view> -->
- </view>
- </view>
- <view class="storeEvaluate-box">
- <view class="storeEvaluate flex-start flex-column">
- <view class="fs26 mar-top-30 flex-display flex-sp-around">
- <label>描述相符</label>
- <u-rate
- v-model="descStar" size="40" active-color="#C5AA7B" inactive-color="#b2b2b2"
- gutter="32"
- @change="ondescStarChange"
- ></u-rate>
- <label v-if="descStar < 2" style="width: 80upx;">差</label>
- <label v-else-if="descStar < 4" style="width: 80upx;">好</label>
- <label v-else style="width: 80upx;">非常好</label>
- </view>
- <view class="fs26 mar-top-50 flex-display flex-sp-around">
- <label>物流服务</label>
- <u-rate
- v-model="logisticsStar" size="40" active-color="#C5AA7B" inactive-color="#b2b2b2"
- gutter="32"
- @click="onlogisticsStarChange"
- ></u-rate>
- <label v-if="logisticsStar < 2" style="width: 80upx;">差</label>
- <label v-else-if="logisticsStar < 4" style="width: 80upx;">好</label>
- <label v-else style="width: 80upx;">非常好</label>
- </view>
- <view class="fs26 mar-top-50 flex-display flex-sp-around">
- <label>服务态度</label>
- <u-rate
- v-model="serviceStar" size="40" active-color="#C5AA7B" inactive-color="#b2b2b2"
- gutter="32"
- @click="onserviceStarChange"
- ></u-rate>
- <label v-if="serviceStar < 2" style="width: 80upx;">差</label>
- <label v-else-if="serviceStar < 4" style="width: 80upx;">好</label>
- <label v-else style="width: 80upx;">非常好</label>
- </view>
- </view>
- </view>
- <view class="butBox flex-items-plus">
- <view class="submitbut" @click="submitTap">发表评论</view>
- </view>
- </view>
- </template>
- <script>
- import { J_STORAGE_KEY } from '../../config/constant'
- const NET = require('../../utils/request')
- const API = require('../../config/api')
- export default {
- data() {
- return {
- commentData: {},
- orderId: 0,
- commentStar: 5,
- descStar: 5,
- logisticsStar: 5,
- serviceStar: 5,
- fileList: [],
- action: API.UploadUrl,
- formData: { 'folderId': -1 },
- commentText: '',
- commentImgsFlag: false,
- commentImgs: '',
- headerToken: { Authorization: '' }
- }
- },
- onLoad(options) {
- if (options.detail) {
- const params = this.$getJumpParam(options)
- this.commentData = params.commentData
- this.orderId = params.orderId
- } else {
- this.commentData = uni.getStorageSync('evaluateItem')
- this.orderId = uni.getStorageSync('orderId')
- uni.removeStorageSync('evaluateItem')
- uni.removeStorageSync('orderId')
- }
- const res = uni.getStorageSync(J_STORAGE_KEY)
- this.headerToken.Authorization = res.token
- },
- onReady() {
- this.fileList = this.$refs.uUpload.lists
- },
- methods: {
- onCommentStarChange(e) {
- this.commentStar = e
- },
- ondescStarChange(e) {
- this.descStar = e
- },
- onlogisticsStarChange(e) {
- this.logisticsStar = e
- },
- onserviceStarChange(e) {
- this.serviceStar = e
- },
- submitTap() {
- if (!this.commentText) {
- uni.showToast({
- title: '请先说点什么吧',
- icon: 'none'
- })
- return
- }
- // uni.showLoading({
- // mask: true,
- // title: '提交中...',
- // })
- if (this.fileList.length > 0) {
- this.commentImgsFlag = true
- for (let i = 0; i < this.fileList.length; i++) {
- this.commentImgs += this.fileList[i].response.data.url + ','
- }
- }
- const data = [ {
- orderId: this.orderId,
- skuId: this.commentData.skuId,
- productId: this.commentData.productId,
- image: this.commentImgs,
- comment: this.commentText,
- star: this.commentStar,
- des: this.descStar,
- delivery: this.logisticsStar,
- attitude: this.serviceStar
- } ]
- NET.request(API.Comment, {
- params: data
- }, 'POST').then((res) => {
- uni.hideLoading()
- uni.showToast({
- title: '评价成功'
- })
- setTimeout(() => {
- uni.redirectTo({
- url: '../goodsModule/evaSuccessful'
- })
- }, 1500)
- })
- .catch((res) => {
- uni.hideLoading()
- uni.showToast({
- title: res.message
- })
- })
- }
- }
- }
- </script>
- <style lang="scss">
- page {
- background-color: #F7F7F7;
- }
- .container {
- .addEvaluate-box {
- margin-top: 20upx;
- .addEvaluate {
- width: 690upx;
- height: auto;
- background-color: #FFFFFF;
- border-radius: 10upx;
- padding-bottom: 30upx;
- .addEvaluateTitle-box {
- .title-img {
- width: 90upx;
- height: 90upx;
- border-radius: 4upx;
- }
- .title-textbox {
- width: 530upx;
- margin-left: 20upx;
- }
- }
- }
- .textarea-box {
- .textarea-text {
- width: 610upx;
- height: 200upx;
- font-size: 26upx;
- padding: 20upx 20upx;
- border: 2rpx solid #E4E5E6;
- }
- }
- .addPicture-box {
- background-color: #F5F5F5;
- width: 150upx;
- height: 150upx;
- margin-top: 40upx;
- margin-left: 20upx;
- border-radius: 10upx;
- display: flex;
- justify-content: center;
- align-items: center;
- color: #BBBBBB;
- .addPicture-icon {
- font-size: 100upx;
- font-weight: 300;
- margin-top: -30upx;
- }
- .addPicture {
- margin-top: -20upx;
- }
- }
- }
- .storeEvaluate-box {
- margin-top: 20upx;
- margin-left: 30upx;
- height: 440upx;
- .storeEvaluate {
- background-color: #FFFFFF;
- width: 690upx;
- height: 270upx;
- border-radius: 10upx;
- }
- }
- .butBox {
- position: fixed;
- bottom: 20upx;
- width: 100%;
- .submitbut {
- height: 100upx;
- width: 690upx;
- background: #333333;
- color: #FFEBC4;
- font-size: 28upx;
- text-align: center;
- line-height: 100upx;
- margin: 0 auto;
- }
- }
- }
- </style>
- <style scoped>.evaluateImg /deep/ .u-upload .u-list-item {
- background: none;
- border: 2rpx solid #E4E5E6;
- border-radius: 0;
- }
- .evaluateImg /deep/ .u-upload .u-list-item .uicon-plus:before {
- content: '';
- height: 71rpx;
- width: 71rpx;
- background: url("../../static/images/origin/addImg.png") no-repeat center center;
- display: block;
- background-size: contain;
- }</style>
|