publish.vue 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  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" maxlength="300"></textarea>
  7. </view>
  8. <view class="imgBox">
  9. <view class="upImg" >
  10. <image :src="item" v-for="(item,index) in imgData" :key="index" @longpress="deleteImg(index)" @tap="prew(imgData,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" v-if="imgData.length<9"></image>
  13. <!-- <view style="font-size: 18rpx;line-height:114rpx;color: #999999;margin-left: 10rpx;" v-if="imgData.length>0">长按图片可以进行删除</view> -->
  14. </view>
  15. <!-- <view style="width: 208rpx;height: 208rpx;" @tap="chooseImg">
  16. <image src="../../static/circle_image@2x.png" style="width: 100%;height: 100%;"></image>
  17. </view> -->
  18. </view>
  19. </view>
  20. <view v-if="imgData.length>0 || textarea" @tap="push" class="btn active">发表</view>
  21. <view v-else @tap="push" class="btn">发表</view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {
  28. imgData: [], //图片数据
  29. textarea: '', //文本数据
  30. num:9
  31. }
  32. },
  33. methods: {
  34. // 计算还能选择几张
  35. formatNum(){
  36. this.num=9-this.imgData.length
  37. },
  38. // 预览图片
  39. prew(item,index){
  40. uni.previewImage({
  41. current:item[index],
  42. urls:item,
  43. success:(res)=>{
  44. },
  45. })
  46. },
  47. // 长按图片删除
  48. deleteImg(index){
  49. wx.showModal({
  50. title: '提示',
  51. content: '确定要删除此图片吗?',
  52. success: (res) =>{
  53. if (res.confirm) {
  54. this.imgData.splice(index, 1);
  55. this.formatNum()
  56. } else if (res.cancel) {
  57. return false;
  58. }
  59. }
  60. })
  61. },
  62. // 发表
  63. push() {
  64. if (this.textarea || this.imgData.length>0) {
  65. let img = ''
  66. // 判断是否上传图片
  67. if (this.imgData.length > 0) {
  68. img = this.imgData.join()
  69. } else {
  70. img = ''
  71. }
  72. uni.showLoading({
  73. mask:true,
  74. title:'加载中'
  75. })
  76. this.http.httpRequest('/wxapplet/prop/comtycircle/add', 'post', {
  77. userId: uni.getStorageSync('userId'),
  78. content: this.textarea,
  79. photosUrlList: img,
  80. createBy: uni.getStorageSync('createBy'),
  81. comtyId:uni.getStorageSync('comtyId'),
  82. }, true).then((res) => {
  83. console.log(res)
  84. if (res.code == 0) {
  85. uni.hideLoading()
  86. uni.showToast({
  87. 'icon':'success',
  88. title:'发表成功'
  89. })
  90. this.textarea=''
  91. this.imgData=[]
  92. setTimeout(()=>{
  93. uni.switchTab({
  94. url:'./circles'
  95. })
  96. },800)
  97. } else {
  98. uni.hideLoading()
  99. uni.showToast({
  100. title: res.msg,
  101. 'icon': 'none'
  102. })
  103. }
  104. }).catch(()=>{
  105. uni.hideLoading()
  106. })
  107. } else {
  108. return
  109. }
  110. },
  111. // 添加照片
  112. chooseImg() {
  113. // 判断当前选择图片是否大于九张
  114. if (this.imgData.length >= 9) {
  115. uni.showToast({
  116. "icon": 'none',
  117. title: '最多只能上传九张图片'
  118. })
  119. return
  120. }
  121. uni.chooseImage({
  122. count: this.num, //默认9
  123. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  124. // sourceType: ['album'], //从相册选择
  125. success: (res) => {
  126. var successUp = 0; //成功个数
  127. var failUp = 0; //失败个数
  128. var length = res.tempFilePaths.length; //总共个数
  129. var i = 0; //第几个
  130. this.uploadDIY(res.tempFilePaths, successUp, failUp, i, length);
  131. }
  132. });
  133. },
  134. // 上传图片
  135. uploadDIY(filePaths, successUp, failUp, i, length) {
  136. uni.showLoading({
  137. mask:true,
  138. title:'上传中'
  139. })
  140. wx.uploadFile({
  141. filePath: filePaths[i],
  142. url: 'https://www.szdeao.com/wxapplet/upload/imgPhoto ', //仅为示例,非真实的接口地址
  143. name: 'photo',
  144. method: 'post',
  145. success: (resp) => {
  146. let data =JSON.parse(resp.data)
  147. if(data.code==0){
  148. let reg=/,$/gi;
  149. let str=data.data.imagesPath.replace(reg,"");
  150. if(this.imgData.length<9){
  151. this.imgData.push(str)
  152. this.formatNum()
  153. uni.hideLoading()
  154. setTimeout(()=>{
  155. uni.showToast({
  156. title:'上传成功',
  157. 'icon':'success'
  158. })
  159. },1000)
  160. }
  161. successUp++;
  162. }else{
  163. uni.showToast({
  164. title:'上传失败,'+data.msg,
  165. 'icon':'none'
  166. })
  167. }
  168. console.log(data)
  169. },
  170. fail: (res) => {
  171. console.log(res)
  172. failUp++;
  173. },
  174. complete: () => {
  175. i++;
  176. if (i == length) {
  177. } else { //递归调用uploadDIY函数
  178. this.uploadDIY(filePaths, successUp, failUp, i, length);
  179. }
  180. },
  181. });
  182. },
  183. }
  184. }
  185. </script>
  186. <style>
  187. .upImg {
  188. display: flex;
  189. flex-wrap: wrap;
  190. }
  191. .imgBox {
  192. width: 100%;
  193. margin-top: 30rpx;
  194. /* display: flex;
  195. flex-wrap: wrap; */
  196. }
  197. .content {
  198. width: 702rpx;
  199. margin: 0 auto;
  200. margin-top: 34rpx;
  201. }
  202. .text {
  203. width: 100%;
  204. font-size: 32rpx;
  205. font-family: PingFang SC;
  206. font-weight: 400;
  207. color: rgba(51, 51, 51, 1);
  208. }
  209. .btn {
  210. width: 702rpx;
  211. height: 90rpx;
  212. background: rgba(247, 247, 247, 1);
  213. opacity: 1;
  214. border-radius: 18rpx;
  215. font-size: 32rpx;
  216. font-family: PingFang SC;
  217. font-weight: bold;
  218. color: rgba(204, 204, 204, 1);
  219. text-align: center;
  220. line-height: 90rpx;
  221. position: fixed;
  222. bottom: 56rpx;
  223. left: 26rpx;
  224. }
  225. .active {
  226. color: rgba(255, 255, 255, 1) !important;
  227. background: rgba(41, 138, 253, 1) !important;
  228. }
  229. </style>