123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- <template>
- <view class="page">
- <view class="feedback-title">
- <text>问题和意见</text>
- <text class="feedback-quick" @tap="chooseMsg">快速键入 <text class="iconfont iconxia"></text></text>
- </view>
- <view class="feedback-body">
- <textarea placeholder="请详细描述您的问题和意见..." v-model="sendDate.content" class="feedback-textare" />
- </view>
- <view class="feedback-title">
- <text>图片(选填,提供问题截图,总大小10M以下)</text>
- </view>
- <view class="feedback-body feedback-uploader oa-uploader">
- <view class="uni-uploader">
- <view class="uni-uploader-head">
- <view class="uni-uploader-title">点击预览图片</view>
- <view class="uni-uploader-info">{{ imageList.length }}/9</view>
- </view>
- <view class="uni-uploader-body">
- <view class="uni-uploader__files">
- <block v-for="(image, index) in imageList" :key="index">
- <view class="uni-uploader__file" style="position: relative;">
- <oa-image class="uni-uploader__img" :src="image"></oa-image>
- <view class="close-view" @tap="close(index)" :class="'bg-' + themeColor.name">x</view>
- </view>
- </block>
- <view class="uni-uploader__input-box" v-if="imageList.length < 9">
- <view class="uni-uploader__input" @tap="uploadImage"></view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="feedback-title">
- <text>反馈类型</text>
- </view>
- <view class="feedback-body">
- <radio-group @change="handleFeedbackTypeChange">
- <label
- class="gender-item"
- v-for="(item, index) in feedbackType"
- :key="index"
- >
- <radio
- class="gender-item-radio"
- :color="themeColor.color"
- :value="item.value"
- :checked="item.value === sendDate.type"
- />
- <text class="gender-item-text">{{ item.name }}</text>
- </label>
- </radio-group>
- </view>
- <view class="feedback-title">
- <text>QQ/邮箱/手机号</text>
- </view>
- <view class="feedback-body">
- <input
- class="feedback-input"
- v-model="sendDate.contact_way"
- placeholder="(选填,方便我们联系您 )"
- />
- </view>
- <button
- class="confirm-btn"
- :class="'bg-' + themeColor.name"
- :disabled="btnLoading"
- :loading="btnLoading"
- @tap="send"
- >
- 提交
- </button>
- <view class="feedback-title">
- <text>反馈结果可在设置 -> 意见反馈 -> 点击列表后查看!</text>
- </view>
- </view>
- </template>
- <script>
- import { opinionCreate } from '@/api/userInfo';
- export default {
- data() {
- return {
- msgContents: [
- '界面显示错乱',
- '启动缓慢,卡出翔了',
- 'UI无法直视,丑哭了',
- '偶发性崩溃'
- ],
- stars: [1, 2, 3, 4, 5],
- imageList: [],
- feedbackType: [
- {
- value: '1',
- name: '功能建议'
- },
- {
- value: '2',
- name: 'BUG反馈'
- },
- {
- value: '3',
- name: '业务咨询'
- }
- ],
- sendDate: {
- type: '1',
- covers: '',
- content: '',
- contact_way: ''
- },
- btnLoading: false
- };
- },
- onShow() {
- uni.setNavigationBarColor({
- frontColor: '#ffffff',
- backgroundColor: this.themeColor.color,
- animation: {
- duration: 400,
- timingFunc: 'easeIn'
- }
- })
- },
- methods: {
- // 监听反馈类型事件
- handleFeedbackTypeChange(e) {
- this.sendDate.type = e.detail.value;
- },
- // 打开相册选图
- uploadImage() {
- const _this = this;
- uni.chooseImage({
- count: 9, // 最多一次可以选择的图片张数
- sizeType: ['compressed'],
- sourceType: ['album', 'camera'], // album 从相册选图,camera 使用相机
- success: function(res) {
- if (_this.imageList.length + res.tempFiles.length > 9) {
- _this.$mHelper.toast('不要贪心哦,最多只可上传9张照片');
- return;
- }
- _this.handleUploadFile(res.tempFilePaths);
- }
- });
- },
- // 依次上传图片
- handleUploadFile(data) {
- this.$mHelper.toast('上传成功');
- },
- // 删除已选中图片
- close(e) {
- this.imageList.splice(e, 1);
- },
- // 快速输入
- chooseMsg() {
- uni.showActionSheet({
- itemList: this.msgContents,
- success: res => {
- this.sendDate.content = this.msgContents[res.tapIndex];
- }
- });
- },
- // 发送反馈
- async send() {
- this.$mHelper.toast('意见反馈成功');
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- background-color: $page-color-base;
- }
- /*问题反馈*/
- .feedback-title {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- padding: $spacing-base;
- margin-top: $spacing-base;
- font-size: $font-base;
- }
- .feedback-star-view.feedback-title {
- justify-content: flex-start;
- margin: 0;
- }
- .feedback-quick {
- position: relative;
- padding-right: 40upx;
- .iconfont {
- font-size: $font-sm;
- }
- }
- .feedback-body {
- background: $color-white;
- padding: $spacing-sm $spacing-base;
- .gender-item {
- margin-right: 20upx;
- .gender-item-text {
- padding-left: 10upx;
- }
- radio .wx-radio-input.wx-radio-input-checked {
- background: $uni-color-primary;
- border-color: $uni-color-primary;
- }
- }
- }
- .feedback-textare {
- height: 200upx;
- font-size: 34upx;
- line-height: 50upx;
- width: 100%;
- box-sizing: border-box;
- padding: 20upx 30upx 0;
- }
- .feedback-input {
- font-size: 28upx;
- height: 72upx;
- min-height: 50upx;
- padding: 15upx 20upx;
- line-height: 72upx;
- }
- .feedback-uploader {
- padding: 22upx 20upx;
- }
- </style>
|