feedback.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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="sub_btn" @click="subMit">
  24. <button class='modifyBnt' >提交</button>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. import {saveFilecontent} from '@/api/groupon.js'
  30. export default {
  31. name: 'feedback',
  32. data () {
  33. return {
  34. fileList1: [],
  35. param:{
  36. type:1,
  37. content:'',
  38. imgUrl:''
  39. },
  40. }
  41. },
  42. onLoad () {
  43. },
  44. methods: {
  45. /**
  46. * 上传微信二维码
  47. */
  48. uploadQrCord(){
  49. let _this = this;
  50. this.$util.uploadImageOne({
  51. name: "file"
  52. }, function(res) {
  53. console.log("上传文件成功+++++++++++++++++++",res.data.link)
  54. _this.param.imgUrl = res.data.link
  55. });
  56. },
  57. clickBadge(){
  58. this.param.imgUrl ='';
  59. console.log("点击了XX")
  60. },
  61. subMit () {
  62. if (!this.param.content) {
  63. return this.$util.Tips({
  64. title: this.$t(`请输入建议内容`)
  65. })
  66. }
  67. saveFilecontent(this.param).then(res => {
  68. uni.$u.toast(res.msg)
  69. setTimeout(()=>{
  70. uni.navigateBack({
  71. delta: 1
  72. })
  73. },2000)
  74. }).catch(err =>{
  75. uni.$u.toast(err)
  76. })
  77. }
  78. }
  79. }
  80. </script>
  81. <style scoped lang="scss">
  82. @import '../../../static/css/common.css';
  83. .qr-cord-box{
  84. width: 200rpx;
  85. height: 200rpx;
  86. border: 1px solid rgba(238, 238, 238, 1);
  87. .image{
  88. width: 200rpx;
  89. height: 200rpx;
  90. }
  91. .add-file-image{
  92. width: 100rpx;
  93. height: 100rpx;
  94. margin-left: 50rpx;
  95. margin-top: 50rpx;
  96. }
  97. text{
  98. overflow-wrap: break-word;
  99. color: rgba(153, 153, 153, 1);
  100. font-size: 28rpx;
  101. font-weight: NaN;
  102. text-align: center;
  103. white-space: nowrap;
  104. line-height: 40rpx;
  105. margin-top: 20rpx;
  106. }
  107. }
  108. .feedback-wrapper{
  109. background: #fff;
  110. margin-top: 20rpx;
  111. padding: 30rpx;
  112. }
  113. .info{
  114. height: 44rpx;
  115. font-size: 28rpx;
  116. font-weight: 400;
  117. color: #999999;
  118. line-height: 44rpx;
  119. }
  120. .modifyBnt {
  121. width: 85%;
  122. margin: auto;
  123. margin-top: 50rpx;
  124. height: 84rpx;
  125. background: #B42A3E;
  126. border-radius: 8rpx;
  127. font-size: 32rpx;
  128. color: #fff;
  129. text-align: center;
  130. line-height: 84rpx;
  131. }
  132. </style>