publish.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <!-- 发布邻里圈 -->
  2. <template>
  3. <view class="">
  4. <view class="content">
  5. <view class="text">
  6. <textarea style="width: 100%;" :auto-height="true" placeholder="这一刻的想法" v-model="textarea"></textarea>
  7. </view>
  8. <view class="imgBox">
  9. <view class="upImg">
  10. <image :src="item" v-for="(item,index) in imgData" :key="index" style="width:208rpx;height: 208rpx;margin-right: 10rpx;margin-bottom: 10rpx;"
  11. v-show="imgData.length>0"></image>
  12. <image src="../../static/circle_image@2x.png" style="width:208rpx;height: 208rpx;margin-bottom: 10rpx;" @tap="chooseImg"></image>
  13. </view>
  14. <!-- <view style="width: 208rpx;height: 208rpx;" @tap="chooseImg">
  15. <image src="../../static/circle_image@2x.png" style="width: 100%;height: 100%;"></image>
  16. </view> -->
  17. </view>
  18. </view>
  19. <view class="btn" :class="{active:textarea}" @tap="push">发表</view>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. data() {
  25. return {
  26. imgData: [], //图片数据
  27. textarea: '', //文本数据
  28. }
  29. },
  30. methods: {
  31. // 发表
  32. push() {
  33. if (this.textarea) {
  34. let img = ''
  35. // 判断是否上传图片
  36. if (this.imgData.length > 0) {
  37. img = this.imgData.join()
  38. } else {
  39. img = ''
  40. }
  41. this.http.httpRequest('/wxapplet/prop/comtycircle/add', 'post', {
  42. userId: uni.getStorageSync('userId'),
  43. content: this.textarea,
  44. photosUrlList: img,
  45. createBy: uni.getStorageSync('createBy'),
  46. comtyId:uni.getStorageSync('comtyId'),
  47. }, true).then((res) => {
  48. console.log(res)
  49. if (res.code == 0) {
  50. uni.showToast({
  51. 'icon':'success',
  52. title:'发表成功'
  53. })
  54. setTimeout(()=>{
  55. uni.switchTab({
  56. url:'./circles'
  57. })
  58. },800)
  59. } else {
  60. uni.showToast({
  61. title: res.msg,
  62. 'icon': 'none'
  63. })
  64. }
  65. })
  66. } else {
  67. return
  68. }
  69. },
  70. // 添加照片
  71. chooseImg() {
  72. // 判断当前选择图片是否大于九张
  73. if (this.imgData.length == 9) {
  74. uni.showToast({
  75. "icon": 'none',
  76. title: '最多只能上传九张图片'
  77. })
  78. return
  79. }
  80. uni.chooseImage({
  81. count: 9, //默认9
  82. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  83. // sourceType: ['album'], //从相册选择
  84. success: (res) => {
  85. var successUp = 0; //成功个数
  86. var failUp = 0; //失败个数
  87. var length = res.tempFilePaths.length; //总共个数
  88. var i = 0; //第几个
  89. this.uploadDIY(res.tempFilePaths, successUp, failUp, i, length);
  90. }
  91. });
  92. },
  93. // 上传图片
  94. uploadDIY(filePaths, successUp, failUp, i, length) {
  95. wx.uploadFile({
  96. filePath: filePaths[i],
  97. url: 'https://www.szdeao.com/wxapplet/upload/imgPhoto ', //仅为示例,非真实的接口地址
  98. name: 'photo',
  99. method: 'post',
  100. success: (resp) => {
  101. let data =JSON.parse(resp.data)
  102. console.log(data)
  103. let reg=/,$/gi;
  104. let str=data.data.imagesPath.replace(reg,"");
  105. this.imgData.push(str)
  106. console.log(this.imgData)
  107. successUp++;
  108. },
  109. fail: (res) => {
  110. failUp++;
  111. },
  112. complete: () => {
  113. i++;
  114. if (i == length) {
  115. } else { //递归调用uploadDIY函数
  116. this.uploadDIY(filePaths, successUp, failUp, i, length);
  117. }
  118. },
  119. });
  120. },
  121. }
  122. }
  123. </script>
  124. <style>
  125. .upImg {
  126. display: flex;
  127. flex-wrap: wrap;
  128. }
  129. .imgBox {
  130. width: 100%;
  131. margin-top: 30rpx;
  132. /* display: flex;
  133. flex-wrap: wrap; */
  134. }
  135. .content {
  136. width: 702rpx;
  137. margin: 0 auto;
  138. margin-top: 34rpx;
  139. }
  140. .text {
  141. width: 100%;
  142. font-size: 32rpx;
  143. font-family: PingFang SC;
  144. font-weight: 400;
  145. color: rgba(51, 51, 51, 1);
  146. }
  147. .btn {
  148. width: 702rpx;
  149. height: 90rpx;
  150. background: rgba(247, 247, 247, 1);
  151. opacity: 1;
  152. border-radius: 18rpx;
  153. font-size: 32rpx;
  154. font-family: PingFang SC;
  155. font-weight: bold;
  156. color: rgba(204, 204, 204, 1);
  157. text-align: center;
  158. line-height: 90rpx;
  159. position: fixed;
  160. bottom: 56rpx;
  161. left: 26rpx;
  162. }
  163. .active {
  164. color: rgba(255, 255, 255, 1);
  165. background: rgba(41, 138, 253, 1);
  166. }
  167. </style>