add-luntan.vue 8.7 KB

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