deming/pageE/more/WriteComments.vue

104 lines
2.2 KiB
Vue
Raw Normal View History

2020-06-04 08:21:34 +08:00
<template>
<view class="write-complaints">
<view class="main-container">
2020-06-18 14:57:26 +08:00
<textarea auto-height placeholder="发表您的意见吧,我们会做得更好." maxlength="200" v-model="text" />
2020-06-04 08:21:34 +08:00
<u-upload
2020-07-07 17:47:00 +08:00
ref="uUpload"
2020-06-04 08:21:34 +08:00
:custom-btn="true"
:max-count="count"
:auto-upload="false"
2020-07-10 09:03:19 +08:00
:action="action"
:header="header"
:form-data="formData"
2020-06-04 08:21:34 +08:00
>
<view slot="addBtn" class="slot-btn" hover-class="slot-btn__hover" hover-stay-time="150">
<img src="../static/mine/27.png" />
</view>
</u-upload>
</view>
<view class="write-btn" @click="submit">发表意见</view>
</view>
</template>
<script>
export default {
data() {
return {
2020-07-10 09:03:19 +08:00
action: this.$u.http.config.baseUrl + '/Upload/uploadfile',
2020-06-04 08:21:34 +08:00
count: 4, // 最大图片数量
2020-06-18 14:57:26 +08:00
text: '',
2020-07-10 09:03:19 +08:00
imageList: [],
header: {
"authorization": 'Bearer' + " " + uni.getStorageSync('token')
},
formData: {
name: '',
}
2020-06-04 08:21:34 +08:00
}
},
methods: {
submit() {
2020-07-07 17:47:00 +08:00
console.log(this.action);
console.log(this.imageList);
2020-07-10 09:03:19 +08:00
this.$refs.uUpload.upload();
2020-07-07 17:47:00 +08:00
let promise = [];
this.imageList.forEach(url => {
// this.uploadImage(url);
})
2020-07-10 09:03:19 +08:00
// Promise.all(promise).then(() => {
2020-07-07 17:47:00 +08:00
2020-07-10 09:03:19 +08:00
// })
2020-07-07 17:47:00 +08:00
},
2020-07-10 09:03:19 +08:00
async beforeUpload(index, list) {
console.log(index, list);
// let data = await this.$u.post('url');
// return true; // 或者根据逻辑返回false
2020-07-07 17:47:00 +08:00
},
writeFeedback() {
this.$u.api.writeFeedback({
fb_content: this.text,
fb_images: '',
}).then(res => {
if(res.errCode == 0) {}
})
2020-06-04 08:21:34 +08:00
},
},
}
</script>
<style lang="scss" scoped>
.write-complaints {
min-height: calc(100vh - var(--window-top));
background-color: #ECECEC;
.main-container {
background-color: #ffffff;
padding: 30rpx;
textarea {
width: 100% !important;
margin-bottom: 60rpx;
}
.slot-btn {
width: 140rpx;
height: 140rpx;
background: rgba(236,236,236,1);
border-radius: 10rpx;
text-align: center;
> img {
margin-top: 48rpx;
width: 54rpx;
height: 49rpx;
}
}
}
.write-btn {
margin: 120rpx auto 0;
width: 690rpx;
height: 98rpx;
background: rgba(255,120,15,1);
border-radius: 46rpx;
font-size: 36rpx;
color: rgba(255,255,255,1);
text-align: center;
line-height: 98rpx;
}
}
</style>