|
@@ -1,140 +1,203 @@
|
|
|
<template>
|
|
|
- <view>
|
|
|
- <view class="content">
|
|
|
- <view class="rate">
|
|
|
- <view class="_label">
|
|
|
- 商品评价
|
|
|
- </view>
|
|
|
- <u-rate :count="count" v-model="value" size="22"></u-rate>
|
|
|
- </view>
|
|
|
- <view class="_text">
|
|
|
- <u--textarea border='none' v-model="value1" height="150" placeholder="展开说说对商品的想法"></u--textarea>
|
|
|
- </view>
|
|
|
- <u-upload :fileList="fileList1" @afterRead="afterRead" @delete="deletePic" name="1" multiple :maxCount="10">
|
|
|
- <view class="upload-photo">
|
|
|
- <u-icon name="camera" size="26"></u-icon>
|
|
|
- <text>添加图片/视频</text>
|
|
|
- </view>
|
|
|
- </u-upload>
|
|
|
- </view>
|
|
|
- <button class="btn-1">提交评价</button>
|
|
|
- </view>
|
|
|
+ <view>
|
|
|
+ <view class="content" v-for="item in orderDetail.goods">
|
|
|
+ <view class="goods-title">
|
|
|
+ <image class="goods-img" :src="item.goods_image" mode="scaleToFill" />
|
|
|
+ <view class="title"> 立白大师香氛洗衣液持久留香香水机洗护理洗… </view>
|
|
|
+ </view>
|
|
|
+ <view class="rate">
|
|
|
+ <view class="_label"> 商品评价 </view>
|
|
|
+ <u-rate :count="count" v-model="value" size="22"></u-rate>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <u-upload
|
|
|
+ :fileList="fileList1"
|
|
|
+ @afterRead="afterRead"
|
|
|
+ @delete="deletePic"
|
|
|
+ name="1"
|
|
|
+ multiple
|
|
|
+ :maxCount="10"
|
|
|
+ >
|
|
|
+ <view class="upload-photo">
|
|
|
+ <u-icon name="camera" size="26"></u-icon>
|
|
|
+ <text>添加图片/视频</text>
|
|
|
+ </view>
|
|
|
+ </u-upload>
|
|
|
+ <view class="_text">
|
|
|
+ <u--textarea
|
|
|
+ border="none"
|
|
|
+ v-model="value1"
|
|
|
+ height="150"
|
|
|
+ placeholder="展开说说对商品的想法"
|
|
|
+ ></u--textarea>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <button class="btn-1" @click="submit">提交评价</button>
|
|
|
+ </view>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
- export default {
|
|
|
- data() {
|
|
|
- return {
|
|
|
- count: 5,
|
|
|
- value: 1,
|
|
|
- value1: "",
|
|
|
- fileList1: [],
|
|
|
- };
|
|
|
- },
|
|
|
- methods: {
|
|
|
- // 删除图片
|
|
|
- deletePic(event) {
|
|
|
- this[`fileList${event.name}`].splice(event.index, 1)
|
|
|
- },
|
|
|
- // 新增图片
|
|
|
- async afterRead(event) {
|
|
|
- console.log(event)
|
|
|
- // 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
|
|
|
- let lists = [].concat(event.file)
|
|
|
- let fileListLen = this[`fileList${event.name}`].length
|
|
|
- lists.map((item) => {
|
|
|
- this[`fileList${event.name}`].push({
|
|
|
- ...item,
|
|
|
- status: 'uploading',
|
|
|
- message: '上传中'
|
|
|
- })
|
|
|
- })
|
|
|
- for (let i = 0; i < lists.length; i++) {
|
|
|
- const result = await this.uploadFilePromise(lists[i].url)
|
|
|
- let item = this[`fileList${event.name}`][fileListLen]
|
|
|
- this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
|
|
|
- status: 'success',
|
|
|
- message: '',
|
|
|
- url: result
|
|
|
- }))
|
|
|
- fileListLen++
|
|
|
- }
|
|
|
- },
|
|
|
- uploadFilePromise(url) {
|
|
|
- return new Promise((resolve, reject) => {
|
|
|
- let a = uni.uploadFile({
|
|
|
- url: 'http://192.168.2.21:7001/upload', // 仅为示例,非真实的接口地址
|
|
|
- filePath: url,
|
|
|
- name: 'file',
|
|
|
- formData: {
|
|
|
- user: 'test'
|
|
|
- },
|
|
|
- success: (res) => {
|
|
|
- setTimeout(() => {
|
|
|
- resolve(res.data.data)
|
|
|
- }, 1000)
|
|
|
- }
|
|
|
- });
|
|
|
- })
|
|
|
- },
|
|
|
- },
|
|
|
- mounted() {
|
|
|
- uni.setNavigationBarTitle({
|
|
|
- title: '评价'
|
|
|
- })
|
|
|
- }
|
|
|
- }
|
|
|
+export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ count: 5,
|
|
|
+ value: 5,
|
|
|
+ value1: "",
|
|
|
+ fileList1: [],
|
|
|
+ status: "",
|
|
|
+ orderDetail: {},
|
|
|
+ };
|
|
|
+ },
|
|
|
+ onLoad(options) {
|
|
|
+ this.status = options.orderId;
|
|
|
+ this.getDetail();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ //提交评价
|
|
|
+ submit() {
|
|
|
+ let imgList = [];
|
|
|
+ this.fileList1.map((item) => {
|
|
|
+ imgList.push(item.thumb);
|
|
|
+ });
|
|
|
+ uni.$u.http
|
|
|
+ .post(`/api/order/comment`, {
|
|
|
+ order_goods_id: this.orderDetail.goods[0].id,
|
|
|
+ content: this.value1,
|
|
|
+ score: this.value,
|
|
|
+ image: imgList.join(","),
|
|
|
+ video: "",
|
|
|
+ })
|
|
|
+ .then((res) => {
|
|
|
+ console.log(res);
|
|
|
+ });
|
|
|
+ },
|
|
|
+ // 删除图片
|
|
|
+ deletePic(event) {
|
|
|
+ this[`fileList${event.name}`].splice(event.index, 1);
|
|
|
+ },
|
|
|
+ // 新增图片
|
|
|
+ async afterRead(event) {
|
|
|
+ console.log(event);
|
|
|
+ // 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
|
|
|
+ let lists = [].concat(event.file);
|
|
|
+ let fileListLen = this[`fileList${event.name}`].length;
|
|
|
+ lists.map((item) => {
|
|
|
+ this[`fileList${event.name}`].push({
|
|
|
+ ...item,
|
|
|
+ status: "uploading",
|
|
|
+ message: "上传中",
|
|
|
+ });
|
|
|
+ });
|
|
|
+ for (let i = 0; i < lists.length; i++) {
|
|
|
+ const result = await this.uploadFilePromise(lists[i].url);
|
|
|
+ let item = this[`fileList${event.name}`][fileListLen];
|
|
|
+ this[`fileList${event.name}`].splice(
|
|
|
+ fileListLen,
|
|
|
+ 1,
|
|
|
+ Object.assign(item, {
|
|
|
+ status: "success",
|
|
|
+ message: "",
|
|
|
+ url: result,
|
|
|
+ })
|
|
|
+ );
|
|
|
+ fileListLen++;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ uploadFilePromise(url) {
|
|
|
+ return new Promise((resolve, reject) => {
|
|
|
+ let a = uni.uploadFile({
|
|
|
+ url: `${uni.$u.http.config.baseURL}/api/upload/images`, // 仅为示例,非真实的接口地址
|
|
|
+ filePath: url,
|
|
|
+ name: "file",
|
|
|
+ formData: {
|
|
|
+ user: "test",
|
|
|
+ },
|
|
|
+ success: (res) => {
|
|
|
+ setTimeout(() => {
|
|
|
+ resolve(res.data.data);
|
|
|
+ }, 1000);
|
|
|
+ },
|
|
|
+ });
|
|
|
+ });
|
|
|
+ },
|
|
|
+ getDetail() {
|
|
|
+ uni.$u.http.get(`/api/order/read?id=${this.status}`).then((res) => {
|
|
|
+ this.orderDetail = res;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+ uni.setNavigationBarTitle({
|
|
|
+ title: "评价",
|
|
|
+ });
|
|
|
+ },
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
- .content {
|
|
|
- background-color: #fff;
|
|
|
- padding: 40rpx 24rpx;
|
|
|
-
|
|
|
- .rate {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
+.content {
|
|
|
+ background-color: #fff;
|
|
|
+ padding: 40rpx 24rpx;
|
|
|
+ .goods-title {
|
|
|
+ display: flex;
|
|
|
+ justify-content: flex-start;
|
|
|
+ align-items: center;
|
|
|
+ .goods-img {
|
|
|
+ width: 52rpx;
|
|
|
+ height: 52rpx;
|
|
|
+ border-radius: 6rpx;
|
|
|
+ }
|
|
|
+ .title {
|
|
|
+ font-size: 24rpx;
|
|
|
+ color: rgba(51, 51, 51, 0.5);
|
|
|
+ margin-left: 20rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- ._label {
|
|
|
- font-size: 32rpx;
|
|
|
- font-weight: 600;
|
|
|
- margin-right: 22rpx;
|
|
|
- }
|
|
|
- }
|
|
|
+ .rate {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ margin-bottom: 20rpx;
|
|
|
|
|
|
- ._text {
|
|
|
- margin-top: 32rpx;
|
|
|
- padding-top: 26rpx;
|
|
|
- border-top: 2rpx solid rgba(151, 151, 151, .1);
|
|
|
+ ._label {
|
|
|
+ font-size: 32rpx;
|
|
|
+ font-weight: 600;
|
|
|
+ margin-right: 22rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- }
|
|
|
+ ._text {
|
|
|
+ margin-top: 32rpx;
|
|
|
+ padding-top: 26rpx;
|
|
|
+ border-top: 2rpx solid rgba(151, 151, 151, 0.1);
|
|
|
+ }
|
|
|
|
|
|
- .upload-photo {
|
|
|
- width: 180rpx;
|
|
|
- height: 180rpx;
|
|
|
- border: 2rpx dashed #979797;
|
|
|
- border-radius: 8rpx;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- flex-direction: column;
|
|
|
- justify-content: center;
|
|
|
- font-size: 24rpx;
|
|
|
- color: rgba(34, 34, 34, .8);
|
|
|
- }
|
|
|
+ .upload-photo {
|
|
|
+ width: 180rpx;
|
|
|
+ height: 180rpx;
|
|
|
+ border: 2rpx dashed #979797;
|
|
|
+ border-radius: 8rpx;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: center;
|
|
|
+ font-size: 24rpx;
|
|
|
+ color: rgba(34, 34, 34, 0.8);
|
|
|
+ }
|
|
|
|
|
|
- ::v-deep .u-textarea {
|
|
|
- background-color: #fff;
|
|
|
- }
|
|
|
- }
|
|
|
- .btn-1{
|
|
|
- background-color: #f83224;
|
|
|
- color: #fff;
|
|
|
- border-radius: 40rpx;
|
|
|
- height: 80rpx;
|
|
|
- line-height: 80rpx;
|
|
|
- width: 90%;
|
|
|
- margin: 0 auto;
|
|
|
- margin-top: 70rpx;
|
|
|
- font-size: 32rpx;
|
|
|
- }
|
|
|
-</style>
|
|
|
+ ::v-deep .u-textarea {
|
|
|
+ background-color: #fff;
|
|
|
+ }
|
|
|
+}
|
|
|
+.btn-1 {
|
|
|
+ background-color: #f83224;
|
|
|
+ color: #fff;
|
|
|
+ border-radius: 40rpx;
|
|
|
+ height: 80rpx;
|
|
|
+ line-height: 80rpx;
|
|
|
+ width: 90%;
|
|
|
+ margin: 0 auto;
|
|
|
+ margin-top: 70rpx;
|
|
|
+ font-size: 32rpx;
|
|
|
+}
|
|
|
+</style>
|