add-luntan.vue 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. <template>
  2. <view class="add-luntan">
  3. <textarea placeholder="分享你的想法..." v-model="textarea" class="textarea"></textarea>
  4. <view class="upload-file u-flex u-flex-wrap">
  5. <view class="upload-btn" v-for="(item,index) in images" :key="index" style="border: none;"
  6. @click="$openimage(images,index)">
  7. <view class="del-img" @click.stop>
  8. <u-icon name="close-circle" size="36" color="red" @click="del(index)"></u-icon>
  9. </view>
  10. <image :src="item" mode="aspectFill" class="image"></image>
  11. </view>
  12. <view class="upload-btn u-flex u-row-center" @click="upload" v-if="images.length < 6">
  13. <image src="static/upload.png" class="upload" mode=""></image>
  14. </view>
  15. </view>
  16. <view class="quanzi-box u-flex u-row-between">
  17. <view v-if="quanzi.id" class="u-flex quanzi-content">
  18. <view class="quanzi-img1 u-flex u-row-center">
  19. <image src="../static/images/quanzi.png" mode=""></image>
  20. </view>
  21. <view class="quanzi-name1">
  22. {{quanzi.title}}
  23. </view>
  24. <u-icon @click="quanzi = {}" name="close" color="#0C66C2" size="24"></u-icon>
  25. </view>
  26. <view v-else class="u-flex" @click="show = true">
  27. <view class="quanzi-img u-flex u-row-center">
  28. <image src="../static/images/quanzi.png" mode=""></image>
  29. </view>
  30. <view class="quanzi-name">
  31. 选择圈子
  32. </view>
  33. </view>
  34. <u-icon name="arrow-right" @click="show = true"></u-icon>
  35. </view>
  36. <view class="fabu-btn" @click="toover">
  37. 立即发布
  38. </view>
  39. <u-popup :show="show" mode="bottom" round="28">
  40. <view class="quanzi-popup">
  41. <view class="popup-header u-flex u-row-between">
  42. <u-icon name="close" size="0" @click="show = false" color="#222222"></u-icon>
  43. <text class="text">添加圈子</text>
  44. <u-icon name="close" size="22" @click="show = false" color="#222222"></u-icon>
  45. </view>
  46. <view class="header-search">
  47. <view class="search-box u-flex">
  48. <u-icon name="search" color="#979797" size="36"></u-icon>
  49. <input type="text" class="input" placeholder="搜索圈子" v-model="keywords1" confirm-type="search"
  50. @confirm="tosearch">
  51. </view>
  52. </view>
  53. <view class="scroll-box u-flex">
  54. <scroll-view scroll-y="true" class="quanzi-right" @scrolltolower="todown">
  55. <view v-for="(a,b) in list" :key="b" class="right-item u-flex" @click="quanzi = a;show = false">
  56. <image :src="a.image" class="item-img" mode=""></image>
  57. <view class="item-text u-flex-col">
  58. <text>{{a.title}}</text>
  59. <text>{{a.article_count}}条内容|{{a.follow_count}}人关注</text>
  60. </view>
  61. </view>
  62. </scroll-view>
  63. </view>
  64. <view class="safe-area-inset-bottom"></view>
  65. </view>
  66. </u-popup>
  67. <u-popup :show="show1" @close="close" >
  68. <view>
  69. <text>出淤泥而不染,濯清涟而不妖</text>
  70. </view>
  71. </u-popup>
  72. </view>
  73. </template>
  74. <script>
  75. import {
  76. group_list,
  77. create_article
  78. } from "@/units/inquire.js"
  79. export default {
  80. data() {
  81. return {
  82. show1:false,
  83. show: false,
  84. left: 0,
  85. page: 1,
  86. list: [],
  87. total: 0,
  88. textarea: '',
  89. quanzi: {},
  90. images: [],
  91. keywords1: '',
  92. keywords: ''
  93. }
  94. },
  95. onLoad(option) {
  96. if (option.quanzi) {
  97. this.quanzi = JSON.parse(option.quanzi)
  98. }
  99. this.getquanzi()
  100. },
  101. methods: {
  102. todown() {
  103. if (this.total != this.list.length) {
  104. this.page++
  105. this.getquanzi()
  106. }
  107. },
  108. tosearch() {
  109. this.keywords = this.keywords1
  110. this.page = 1
  111. this.list = []
  112. this.getquanzi()
  113. },
  114. del(index) {
  115. uni.showModal({
  116. title: "提示",
  117. content: "确定删除吗?",
  118. success: (e) => {
  119. if (e.confirm) {
  120. this.images.splice(index, 1)
  121. }
  122. }
  123. })
  124. },
  125. upload() {
  126. uni.chooseImage({
  127. count: 6 - this.images.length,
  128. success: (e) => {
  129. this.afterRead(e.tempFilePaths)
  130. },
  131. fail: (err) => {
  132. console.log(err);
  133. }
  134. })
  135. },
  136. async afterRead(lists) {
  137. uni.showLoading({
  138. mask: true,
  139. title: "上传中"
  140. })
  141. for (let i = 0; i < lists.length; i++) {
  142. const result = await this.uploadFilePromise(lists[i])
  143. if (result.code == 1) {
  144. this.images.push(result.data.fullurl)
  145. }
  146. }
  147. uni.hideLoading()
  148. },
  149. uploadFilePromise(url) {
  150. return new Promise((resolve, reject) => {
  151. uni.uploadFile({
  152. url: 'https://hire.hdlkeji.com' + '/api/common/upload',
  153. filePath: url,
  154. name: 'file',
  155. success: (res) => {
  156. setTimeout(() => {
  157. resolve(JSON.parse(res.data))
  158. }, 1000)
  159. },
  160. fail: (e) => {
  161. console.log(e);
  162. }
  163. })
  164. })
  165. },
  166. getquanzi() {
  167. group_list({
  168. page: this.page,
  169. keywords: this.keywords
  170. }).then(res => {
  171. this.list = this.list.concat(res.data.data)
  172. this.total = res.data.total
  173. })
  174. },
  175. toover() {
  176. if (!this.textarea) {
  177. this.$u.toast("请输入内容")
  178. return
  179. }
  180. if (!this.quanzi.id) {
  181. this.$u.toast("请选择圈子")
  182. return
  183. }
  184. uni.showLoading({
  185. mask: true,
  186. title: "请稍后"
  187. })
  188. create_article({
  189. circle_id: this.quanzi.id,
  190. content: this.textarea,
  191. images: this.images.join(",")
  192. }).then(res => {
  193. this.$u.toast(res.msg)
  194. if (res.code == 1) {
  195. setTimeout(() => {
  196. uni.redirectTo({
  197. url: "/pagesC/add-luntan-over"
  198. })
  199. }, 800)
  200. }
  201. })
  202. }
  203. }
  204. }
  205. </script>
  206. <style lang="scss">
  207. .add-luntan {
  208. padding: 28rpx 32rpx;
  209. .fabu-btn {
  210. position: fixed;
  211. bottom: 30rpx;
  212. left: 32rpx;
  213. width: 686rpx;
  214. line-height: 92rpx;
  215. background: #0C66C2;
  216. border-radius: 12rpx;
  217. text-align: center;
  218. font-size: 32rpx;
  219. font-family: PingFangSC-Medium, PingFang SC;
  220. font-weight: 500;
  221. color: #FFFFFF;
  222. }
  223. .quanzi-popup {
  224. width: 750rpx;
  225. background: #FFFFFF;
  226. .scroll-box {
  227. height: 60vh;
  228. .quanzi-right {
  229. flex: 1;
  230. height: 100%;
  231. min-width: 1rpx;
  232. .right-item {
  233. padding: 22rpx 28rpx;
  234. .item-text {
  235. flex: 1;
  236. min-width: 1rpx;
  237. text:first-child {
  238. font-size: 28rpx;
  239. font-family: PingFangSC-Medium, PingFang SC;
  240. font-weight: 500;
  241. color: #222222;
  242. margin-bottom: 4rpx;
  243. }
  244. text:last-child {
  245. font-size: 22rpx;
  246. font-family: PingFangSC-Regular, PingFang SC;
  247. font-weight: 400;
  248. color: #777777;
  249. }
  250. }
  251. .item-img {
  252. width: 76rpx;
  253. height: 76rpx;
  254. border-radius: 10rpx;
  255. margin-right: 16rpx;
  256. background-color: rgba(0, 0, 0, 0.1);
  257. }
  258. }
  259. }
  260. .quanzi-left {
  261. width: 208rpx;
  262. background: #F6F6F6;
  263. height: 100%;
  264. .left-item {
  265. line-height: 96rpx;
  266. font-size: 30rpx;
  267. font-family: PingFangSC-Medium, PingFang SC;
  268. font-weight: 500;
  269. color: #777777;
  270. text-align: center;
  271. }
  272. .leftactive {
  273. background-color: #fff;
  274. font-size: 30rpx;
  275. font-family: PingFangSC-Medium, PingFang SC;
  276. font-weight: 500;
  277. color: #0C66C2;
  278. }
  279. }
  280. }
  281. .header-search {
  282. padding: 0 32rpx 36rpx 32rpx;
  283. border-bottom: 2rpx solid #F4F4F4;
  284. .search-box {
  285. height: 80rpx;
  286. background: #F6F6F6;
  287. border-radius: 16rpx;
  288. padding: 0 20rpx;
  289. .input {
  290. flex: 1;
  291. margin-left: 12rpx;
  292. font-size: 28rpx;
  293. }
  294. }
  295. }
  296. .popup-header {
  297. height: 120rpx;
  298. padding: 0 32rpx;
  299. .text {
  300. font-size: 36rpx;
  301. font-family: PingFangSC-Medium, PingFang SC;
  302. font-weight: 500;
  303. color: #222222;
  304. }
  305. }
  306. }
  307. .quanzi-box {
  308. height: 100rpx;
  309. border-bottom: 2rpx solid #F4F4F4;
  310. .quanzi-content {
  311. padding: 0 14rpx;
  312. height: 50rpx;
  313. background: rgba(12, 102, 194, 0.06);
  314. border-radius: 28rpx;
  315. .quanzi-name1 {
  316. font-size: 24rpx;
  317. font-family: PingFangSC-Medium, PingFang SC;
  318. font-weight: 500;
  319. color: #0C66C2;
  320. margin-right: 14rpx;
  321. }
  322. .quanzi-img1 {
  323. margin-right: 8rpx;
  324. image {
  325. width: 28rpx;
  326. height: 28rpx;
  327. }
  328. }
  329. }
  330. .quanzi-name {
  331. flex: 1;
  332. margin: 0 20rpx;
  333. font-size: 28rpx;
  334. font-family: PingFangSC-Medium, PingFang SC;
  335. font-weight: 500;
  336. color: #444444;
  337. }
  338. .quanzi-img {
  339. width: 48rpx;
  340. height: 48rpx;
  341. background: #F6F6F6;
  342. border-radius: 28rpx;
  343. image {
  344. width: 28rpx;
  345. height: 28rpx;
  346. }
  347. }
  348. }
  349. .upload-file {
  350. .upload-btn {
  351. margin-right: 10rpx;
  352. margin-bottom: 10rpx;
  353. width: 210rpx;
  354. height: 210rpx;
  355. border-radius: 20rpx;
  356. border: 2rpx dashed #D1D1D1;
  357. position: relative;
  358. .del-img {
  359. position: absolute;
  360. top: 0;
  361. right: 0;
  362. z-index: 10;
  363. }
  364. .image {
  365. width: 210rpx;
  366. height: 210rpx;
  367. }
  368. .upload {
  369. width: 88rpx;
  370. height: 88rpx;
  371. }
  372. }
  373. }
  374. .textarea {
  375. width: 100%;
  376. height: 300rpx;
  377. }
  378. }
  379. </style>