feedback.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. <!-- 问题反馈 -->
  2. <template>
  3. <u-form :model="model" ref="uForm">
  4. <view class="feedback-wrap u-p-30">
  5. <!-- 选择类型 -->
  6. <u-form-item label-position="top" :border-bottom="false" :labelStyle="labelStyle" label="请选择类型" prop="type" label-width="150">
  7. <u-radio-group v-model="model.type" width="100%" active-color="#f37b1d">
  8. <u-radio shape="circle" v-for="(item, index) in typeList" :key="index" :name="item.code">{{ item.name }}</u-radio>
  9. </u-radio-group>
  10. </u-form-item>
  11. <!-- 相关描述 -->
  12. <view class="form-item">
  13. <label>
  14. <view class="inp-title">相关描述</view>
  15. <view class="area-box">
  16. <textarea
  17. class="inp-area"
  18. v-model="model.content"
  19. name="message"
  20. placeholder="客官~您对我们的服务还满意吗,请给予我们你的意见我们将做的更好~"
  21. placeholder-class="pl-style"
  22. />
  23. <view class="img-box">
  24. <u-upload
  25. :showProgress="false"
  26. @on-uploaded="uploadSuccess"
  27. @on-remove="uploadRemove"
  28. :action="`${$API_URL}index/upload`"
  29. width="140"
  30. height="140"
  31. maxCount="9"
  32. ></u-upload>
  33. </view>
  34. </view>
  35. </label>
  36. </view>
  37. <!-- 联系方式 -->
  38. <view class="form-item">
  39. <label>
  40. <view class="inp-title">联系方式</view>
  41. <input class="inp" v-model="model.phone" name="phone" type="number" placeholder="请输入您的联系电话" placeholder-class="pl-style" />
  42. </label>
  43. </view>
  44. <!-- 底部按钮 -->
  45. <view class="foot_box u-flex u-row-between u-col-center">
  46. <button class="u-reset-button post-btn" @tap="addFeedback">提交</button>
  47. <button class="u-reset-button contact-btn" @tap="onService">联系客服</button>
  48. </view>
  49. </view>
  50. </u-form>
  51. </template>
  52. <script>
  53. export default {
  54. components: {},
  55. data() {
  56. return {
  57. model: {
  58. type: '',
  59. content: '',
  60. phone: '',
  61. images: []
  62. },
  63. labelStyle: {
  64. 'font-size': '30rpx',
  65. 'font-weight': '600',
  66. color: '#333'
  67. },
  68. imgList: [], //图片
  69. typeList: [] //类型列表
  70. };
  71. },
  72. computed: {},
  73. onLoad() {
  74. this.getFeedbackType();
  75. },
  76. methods: {
  77. // 跳转客服
  78. onService() {
  79. this.$Router.push('/pages/public/chat/index');
  80. },
  81. // 获取意见分类
  82. getFeedbackType() {
  83. let that = this;
  84. that.$http('other.feedbackType').then(res => {
  85. if (res.code === 1) {
  86. that.typeList = res.data;
  87. }
  88. });
  89. },
  90. // 上传图片成功
  91. uploadSuccess(e) {
  92. this.model.images = [];
  93. e.forEach(item => {
  94. this.model.images.push(item.response.data.url);
  95. });
  96. },
  97. // 移除图片
  98. uploadRemove(index) {
  99. this.model.images.splice(index, 1);
  100. },
  101. // 提交意见
  102. addFeedback() {
  103. let that = this;
  104. that.$http('other.feedbackAdd', that.model, '提交中...').then(res => {
  105. uni.hideKeyboard();
  106. if (res.code === 1) {
  107. that.$u.toast('提交成功');
  108. that.$Router.back();
  109. }
  110. });
  111. }
  112. }
  113. };
  114. </script>
  115. <style lang="scss">
  116. .feedback-wrap {
  117. background: #fff;
  118. }
  119. .form-item {
  120. margin-top: 30rpx;
  121. .inp-title {
  122. font-size: 30rpx;
  123. font-weight: bold;
  124. color: rgba(51, 51, 51, 1);
  125. align-items: center;
  126. margin-bottom: 30rpx;
  127. }
  128. .inp {
  129. width: 690rpx;
  130. height: 84rpx;
  131. background: rgba(249, 250, 251, 1);
  132. border-radius: 20rpx;
  133. padding: 0 30rpx;
  134. font-size: 26rpx;
  135. font-weight: 500;
  136. color: #333;
  137. margin-bottom: 38rpx;
  138. }
  139. .area-inp {
  140. height: 190upx;
  141. padding: 30rpx;
  142. }
  143. .pl-style {
  144. font-size: 26rpx;
  145. color: rgba(177, 179, 199, 1);
  146. }
  147. }
  148. .area-box {
  149. width: 690rpx;
  150. min-height: 306rpx;
  151. background: rgba(249, 250, 251, 1);
  152. border-radius: 20rpx;
  153. padding: 20rpx;
  154. .pl-style {
  155. font-size: 26rpx;
  156. font-weight: 500;
  157. color: rgba(177, 179, 199, 1);
  158. line-height: 50rpx;
  159. }
  160. .inp-area {
  161. font-size: 26rpx;
  162. font-weight: 500;
  163. color: #333;
  164. line-height: 50rpx;
  165. width: 100%;
  166. }
  167. .img-box {
  168. display: flex;
  169. align-items: center;
  170. flex-wrap: wrap;
  171. margin-top: 20rpx;
  172. }
  173. }
  174. // 底部按钮
  175. .foot_box {
  176. height: 100rpx;
  177. width: 100%;
  178. margin-top: 100rpx;
  179. .contact-btn {
  180. width: 340rpx;
  181. line-height: 74rpx;
  182. background: linear-gradient(90deg, rgba(103, 104, 105, 1), rgba(82, 82, 82, 1));
  183. box-shadow: 0px 2rpx 5rpx 0px rgba(102, 103, 104, 0.46);
  184. border-radius: 35rpx;
  185. font-size: 28rpx;
  186. font-weight: 500;
  187. color: rgba(255, 255, 255, 1);
  188. }
  189. .post-btn {
  190. width: 340rpx;
  191. line-height: 74rpx;
  192. background: linear-gradient(90deg, rgba(233, 180, 97, 1), rgba(238, 204, 137, 1));
  193. box-shadow: 0px 7rpx 6rpx 0rpx rgba(229, 138, 0, 0.22);
  194. border-radius: 37rpx;
  195. font-size: 28rpx;
  196. font-weight: 500;
  197. color: rgba(255, 255, 255, 1);
  198. }
  199. }
  200. </style>