|
|
@@ -1,35 +1,33 @@ |
|
|
|
<template> |
|
|
|
<view style="height: 100%"> |
|
|
|
<view> |
|
|
|
<custom-nav-bar position="fixed" color="black" left-text="评价" left-arrow /> |
|
|
|
|
|
|
|
<view class="appraise flex flex-v-center"> |
|
|
|
<view class="mr-25">满意度:</view> |
|
|
|
<van-rate :value="form.appraiseStar" :size="22" gutter="36rpx" icon="/images/void-icon2.png" |
|
|
|
void-icon="/images/rate-icon.png" @change="headleChange" /> |
|
|
|
<block v-for="item in 5" :key="item"> |
|
|
|
<image src="/static/images/void-icon2.png" v-if="form.appraiseStar >= item" @click="headleChange(item)" style="width: 36rpx;height: 36rpx;margin-right: 10rpx;" mode=""></image> |
|
|
|
<image src="/static/images/rate-icon.png" v-else @click="headleChange(item)" style="width: 36rpx;height: 36rpx;margin-right: 10rpx;" mode=""></image> |
|
|
|
</block> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="division"></view> |
|
|
|
|
|
|
|
<!-- 描述 --> |
|
|
|
<view class="describe"> |
|
|
|
<view>描述</view> |
|
|
|
<textarea class="textarea" placeholder="请输入" @input="headleInput" maxlength="300" :value="form.title" |
|
|
|
data-name="appraiseContent" focus auto-height></textarea> |
|
|
|
<view class="form-image"> |
|
|
|
<van-uploader @after-read="afterRead" :file-list="fileList" :deletable="true" max-count="9" |
|
|
|
@delete="imageDelete"> |
|
|
|
<van-uploader :after-read="afterRead" v-model="fileList" :deletable="true" max-count="9" |
|
|
|
:delete="imageDelete"> |
|
|
|
<image class="camera" src="/static/images/icon9.png"></image> |
|
|
|
</van-uploader> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="van-button"> |
|
|
|
<van-button v-if="form.appraiseContent === '' && form.appraiseStar === 0" |
|
|
|
custom-style="color:#000;background-color:#D9E2EE;border-radius: 8rpx;" block> |
|
|
|
<van-button color="#fe3b53" v-if="form.appraiseContent === '' && form.appraiseStar === 0" block> |
|
|
|
提交评价 |
|
|
|
</van-button> |
|
|
|
<van-button @tap.native="submit" v-if="form.appraiseContent !== '' || form.appraiseStar !== 0" |
|
|
|
custom-style="color:#fff;background-color:#FE3B53;border-radius: 8rpx;" block> |
|
|
|
<van-button color="#fe3b53" @tap.native="submit" v-if="form.appraiseContent !== '' || form.appraiseStar !== 0" block> |
|
|
|
提交评价 |
|
|
|
</van-button> |
|
|
|
</view> |
|
|
@@ -61,23 +59,18 @@ |
|
|
|
}; |
|
|
|
}, |
|
|
|
onLoad(options) { |
|
|
|
this.setData({ |
|
|
|
options |
|
|
|
}); |
|
|
|
this.options = options |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
headleChange(event) { |
|
|
|
this.setData({ |
|
|
|
...this.form, |
|
|
|
['form.appraiseStar']: event.detail |
|
|
|
}); |
|
|
|
this.form.appraiseStar = event |
|
|
|
}, |
|
|
|
|
|
|
|
// 上传图片 |
|
|
|
async afterRead(event) { |
|
|
|
const { |
|
|
|
file |
|
|
|
} = event.detail; |
|
|
|
} = event; |
|
|
|
const res = await getApp().globalData.upload({ |
|
|
|
file |
|
|
|
}); |
|
|
@@ -88,21 +81,9 @@ |
|
|
|
}); |
|
|
|
return false; |
|
|
|
} |
|
|
|
const { |
|
|
|
fileList |
|
|
|
} = this; |
|
|
|
const { |
|
|
|
appealEnclosure |
|
|
|
} = this; |
|
|
|
const url = res.data; |
|
|
|
fileList.push({ |
|
|
|
url |
|
|
|
}); |
|
|
|
appealEnclosure.push(url); |
|
|
|
this.setData({ |
|
|
|
fileList, |
|
|
|
appealEnclosure |
|
|
|
}); |
|
|
|
// this.fileList.push({url}); |
|
|
|
this.appealEnclosure.push(url); |
|
|
|
}, |
|
|
|
|
|
|
|
// 清楚对应的image图片 |
|
|
@@ -110,11 +91,8 @@ |
|
|
|
const { |
|
|
|
index |
|
|
|
} = event.detail; |
|
|
|
const Image = this.fileList; |
|
|
|
Image.splice(index, 1); |
|
|
|
this.setData({ |
|
|
|
fileList: Image |
|
|
|
}); |
|
|
|
this.fileList.splice(index, 1); |
|
|
|
this.appealEnclosure.splice(index,1) |
|
|
|
}, |
|
|
|
|
|
|
|
headleInput(event) { |
|
|
@@ -125,10 +103,7 @@ |
|
|
|
name |
|
|
|
} = event.currentTarget.dataset; |
|
|
|
this.form[name] = value; |
|
|
|
this.setData({ |
|
|
|
...this.form, |
|
|
|
[name]: this[name] |
|
|
|
}); |
|
|
|
this[name] = this[name] |
|
|
|
}, |
|
|
|
|
|
|
|
// 提交 |
|
|
@@ -249,6 +224,5 @@ |
|
|
|
bottom: 0; |
|
|
|
z-index: 99; |
|
|
|
background-color: #fff; |
|
|
|
padding: 20px 50rpx 50rpx 50rpx; |
|
|
|
} |
|
|
|
</style> |