123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <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>
- </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: '评价'
- })
- }
- }
- </script>
- <style lang="scss" scoped>
- .content {
- background-color: #fff;
- padding: 40rpx 24rpx;
- .rate {
- display: flex;
- align-items: center;
- ._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, .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);
- }
- ::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>
|