123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- <template>
- <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: 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;
- .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;
- }
- }
- .rate {
- display: flex;
- align-items: center;
- margin-bottom: 20rpx;
- ._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, 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>
|