104 lines
2.2 KiB
Vue
104 lines
2.2 KiB
Vue
<template>
|
|
<view class="write-complaints">
|
|
<view class="main-container">
|
|
<textarea auto-height placeholder="发表您的意见吧,我们会做得更好." maxlength="200" v-model="text" />
|
|
<u-upload
|
|
ref="uUpload"
|
|
:custom-btn="true"
|
|
:max-count="count"
|
|
:auto-upload="false"
|
|
:action="action"
|
|
:header="header"
|
|
:form-data="formData"
|
|
>
|
|
<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 {
|
|
action: this.$u.http.config.baseUrl + '/Upload/uploadfile',
|
|
count: 4, // 最大图片数量
|
|
text: '',
|
|
imageList: [],
|
|
header: {
|
|
"authorization": 'Bearer' + " " + uni.getStorageSync('token')
|
|
},
|
|
formData: {
|
|
name: '',
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
submit() {
|
|
console.log(this.action);
|
|
console.log(this.imageList);
|
|
this.$refs.uUpload.upload();
|
|
let promise = [];
|
|
this.imageList.forEach(url => {
|
|
// this.uploadImage(url);
|
|
})
|
|
// Promise.all(promise).then(() => {
|
|
|
|
// })
|
|
},
|
|
async beforeUpload(index, list) {
|
|
console.log(index, list);
|
|
|
|
// let data = await this.$u.post('url');
|
|
// return true; // 或者根据逻辑返回false
|
|
},
|
|
writeFeedback() {
|
|
this.$u.api.writeFeedback({
|
|
fb_content: this.text,
|
|
fb_images: '',
|
|
}).then(res => {
|
|
if(res.errCode == 0) {}
|
|
})
|
|
},
|
|
},
|
|
}
|
|
</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> |