add-quanzi.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. <template>
  2. <view class="add-quanzi">
  3. <view class="add-quanzi-upload">
  4. <view v-if="images" class="quanzi-image u-flex u-row-center" @click="uploadimg">
  5. <image :src="images" mode="aspectFill"></image>
  6. </view>
  7. <view v-else class="upload-box u-flex u-row-center" @click="uploadimg">
  8. <text>封面</text>
  9. <image src="static/upload.png" mode=""></image>
  10. </view>
  11. </view>
  12. <view class="quanzi-name u-flex u-row-between">
  13. <input type="text" maxlength="20" placeholder="填写圈子标题(必填)" v-model="textarea">
  14. <text>{{textarea.length}}/20</text>
  15. </view>
  16. <view v-if="msg == '包含敏感词'" class="quanzi-tips">
  17. 包含敏感文字请重新填写
  18. </view>
  19. <view class="fabu-btn" @click="toover">
  20. 立即创建
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. import {
  26. create_group
  27. } from "@/units/inquire.js"
  28. export default {
  29. data() {
  30. return {
  31. textarea: '',
  32. images: '',
  33. msg: ''
  34. }
  35. },
  36. onLoad() {
  37. },
  38. methods: {
  39. uploadimg() {
  40. uni.chooseImage({
  41. count: 1,
  42. success: (img) => {
  43. uni.showLoading({
  44. mask: true,
  45. title: "请稍后"
  46. })
  47. uni.uploadFile({
  48. url: 'https://hire.hdlkeji.com' + '/api/common/upload',
  49. filePath: img.tempFilePaths[0],
  50. name: 'file',
  51. success: (res) => {
  52. uni.hideLoading()
  53. if (JSON.parse(res.data).code == 1) {
  54. this.images = JSON.parse(res.data).data.fullurl
  55. } else {
  56. this.$u.toast(JSON.parse(res.data).msg)
  57. }
  58. },
  59. fail: (e) => {
  60. console.log(e);
  61. }
  62. })
  63. }
  64. })
  65. },
  66. toover() {
  67. if (!this.images) {
  68. this.$u.toast("请上传圈子封面")
  69. return
  70. }
  71. if (!this.textarea) {
  72. this.$u.toast("请输入圈子名称")
  73. return
  74. }
  75. // uni.showLoading({
  76. // mask: true,
  77. // title: "请稍后"
  78. // })
  79. create_group({
  80. title: this.textarea,
  81. image: this.images
  82. }).then(res => {
  83. this.msg = res.msg
  84. if (res.code == 1) {
  85. setTimeout(() => {
  86. uni.redirectTo({
  87. url: "/pagesC/add-quanzi-over"
  88. })
  89. }, 800)
  90. }
  91. })
  92. }
  93. }
  94. }
  95. </script>
  96. <style lang="scss">
  97. .add-quanzi {
  98. padding: 0 32rpx;
  99. .fabu-btn {
  100. position: fixed;
  101. bottom: 30rpx;
  102. left: 32rpx;
  103. width: 686rpx;
  104. line-height: 92rpx;
  105. background: #0C66C2;
  106. border-radius: 12rpx;
  107. text-align: center;
  108. font-size: 32rpx;
  109. font-family: PingFangSC-Medium, PingFang SC;
  110. font-weight: 500;
  111. color: #FFFFFF;
  112. }
  113. .quanzi-tips {
  114. font-size: 24rpx;
  115. font-family: PingFangSC-Regular, PingFang SC;
  116. font-weight: 400;
  117. color: #FF2D2D;
  118. }
  119. .quanzi-name {
  120. padding: 32rpx 0;
  121. border-bottom: 2rpx solid #F4F4F4;
  122. margin-bottom: 30rpx;
  123. input {
  124. flex: 1;
  125. font-size: 32rpx;
  126. }
  127. text {
  128. font-size: 26rpx;
  129. font-family: PingFangSC-Regular, PingFang SC;
  130. font-weight: 400;
  131. color: #C8C8C8;
  132. }
  133. }
  134. .add-quanzi-upload {
  135. padding: 32rpx 0;
  136. .quanzi-image {
  137. width: 210rpx;
  138. height: 210rpx;
  139. image {
  140. width: 210rpx;
  141. height: 210rpx;
  142. }
  143. }
  144. .upload-box {
  145. width: 210rpx;
  146. height: 210rpx;
  147. background: #F6F6F6;
  148. border-radius: 16rpx;
  149. position: relative;
  150. text {
  151. width: 70rpx;
  152. line-height: 36rpx;
  153. background: rgba(85, 85, 85, 0.6);
  154. border-radius: 16rpx 0rpx 16rpx 0rpx;
  155. text-align: center;
  156. font-size: 22rpx;
  157. font-family: PingFangSC-Regular, PingFang SC;
  158. font-weight: 400;
  159. color: #FFFFFF;
  160. position: absolute;
  161. top: 0;
  162. left: 0;
  163. z-index: 1;
  164. }
  165. image {
  166. width: 70rpx;
  167. height: 70rpx;
  168. }
  169. }
  170. }
  171. }
  172. </style>