feedback.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <template>
  2. <view class="feedback-wrapper">
  3. <view>
  4. <textarea type="text" placeholder="请输入您要反馈的内容" v-model="param.content" />
  5. </view>
  6. <view class="flex-col">
  7. <text class="info" selectable="false" space="false" decode="false">
  8. 上传图片
  9. </text>
  10. <view v-if="param.imgUrl">
  11. <view class="qr-cord-box ">
  12. <uni-badge class="uni-badge-left-margin" text="X" absolute="rightTop" size="small" @click="clickBadge">
  13. <image class="image" :src="param.imgUrl" ></image>
  14. </uni-badge>
  15. </view>
  16. </view>
  17. <view v-else>
  18. <view class="qr-cord-box flex-col">
  19. <image class="add-file-image " src="../../../static/images/addFile.png" @click="uploadQrCord"></image>
  20. </view>
  21. </view>
  22. </view>
  23. <view class="inputPhone flex-row justify-start">
  24. <text class="info" selectable="false" space="false" decode="false">
  25. 电话号码:
  26. </text>
  27. <input class="input " type="number" placeholder="请输入您的电话号码" v-model="param.phone" />
  28. </view>
  29. <view class="sub_btn" @click="subMit">
  30. <button class='modifyBnt' >提交</button>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. import {saveFilecontent} from '@/api/groupon.js'
  36. export default {
  37. name: 'feedback',
  38. data () {
  39. return {
  40. fileList1: [],
  41. param:{
  42. type:1,
  43. content:'',
  44. imgUrl:'',
  45. phone:''
  46. },
  47. }
  48. },
  49. onLoad () {
  50. },
  51. methods: {
  52. /**
  53. * 上传微信二维码
  54. */
  55. uploadQrCord(){
  56. let _this = this;
  57. this.$util.uploadImageOne({
  58. name: "file"
  59. }, function(res) {
  60. console.log("上传文件成功+++++++++++++++++++",res.data.link)
  61. _this.param.imgUrl = res.data.link
  62. });
  63. },
  64. clickBadge(){
  65. this.param.imgUrl ='';
  66. console.log("点击了XX")
  67. },
  68. subMit () {
  69. if (!this.param.content) {
  70. return this.$util.Tips({
  71. title: this.$t(`请输入建议内容`)
  72. })
  73. }
  74. saveFilecontent(this.param).then(res => {
  75. uni.$u.toast(res.msg)
  76. setTimeout(()=>{
  77. uni.navigateBack({
  78. delta: 1
  79. })
  80. },2000)
  81. }).catch(err =>{
  82. uni.$u.toast(err)
  83. })
  84. }
  85. }
  86. }
  87. </script>
  88. <style scoped lang="scss">
  89. @import '../../../static/css/common.css';
  90. .qr-cord-box{
  91. width: 200rpx;
  92. height: 200rpx;
  93. border: 1px solid rgba(238, 238, 238, 1);
  94. .image{
  95. width: 200rpx;
  96. height: 200rpx;
  97. }
  98. .add-file-image{
  99. width: 100rpx;
  100. height: 100rpx;
  101. margin-left: 50rpx;
  102. margin-top: 50rpx;
  103. }
  104. text{
  105. overflow-wrap: break-word;
  106. color: rgba(153, 153, 153, 1);
  107. font-size: 28rpx;
  108. font-weight: NaN;
  109. text-align: center;
  110. white-space: nowrap;
  111. line-height: 40rpx;
  112. margin-top: 20rpx;
  113. }
  114. }
  115. .feedback-wrapper{
  116. background: #fff;
  117. margin-top: 20rpx;
  118. padding: 30rpx;
  119. }
  120. .info{
  121. height: 44rpx;
  122. font-size: 28rpx;
  123. font-weight: 400;
  124. /*color: #999999;*/
  125. line-height: 44rpx;
  126. }
  127. .modifyBnt {
  128. width: 85%;
  129. margin: auto;
  130. margin-top: 50rpx;
  131. height: 84rpx;
  132. background: #B42A3E;
  133. border-radius: 8rpx;
  134. font-size: 32rpx;
  135. color: #fff;
  136. text-align: center;
  137. line-height: 84rpx;
  138. }
  139. .inputPhone{
  140. margin-top: 20rpx;
  141. }
  142. .input{
  143. border: 1px solid rgba(238, 238, 238, 1);
  144. }
  145. </style>