wenda-info.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482
  1. <template>
  2. <view class="wenda-info">
  3. <view class="fangchan-wenda">
  4. <view class="wenda-box">
  5. <view class="box-top u-flex u-row-between">
  6. <text class="text1">问</text>
  7. <image class="img" :src="pinglundetail.user_headimg" mode=""></image>
  8. <text class="text2">{{pinglundetail.user_name || ''}}</text>
  9. <!-- <text class="admin">管理员</text>
  10. <text class="yewu">业务人员</text> -->
  11. <text class="text3 u-flex-1">{{pinglundetail.create_time ? pinglundetail.create_time : ''}}</text>
  12. </view>
  13. <view class="tiwen-zhiding u-flex" v-if="is_allow == 1 && user_id == pinglundetail.u_id && pinglundetail.quiz_type == 2">
  14. <text class="text">置顶</text>
  15. <u-switch v-model="checked"></u-switch>
  16. </view>
  17. <view class="table-header u-flex u-row-center" v-if="pinglundetail.quiz_type == 2">
  18. <input type="text" placeholder="请输入" class="u-flex-1" :value="JSON.parse(pinglundetail.content).title" :disabled="true">
  19. </view>
  20. <scroll-view v-if="pinglundetail.quiz_type == 2" scroll-y="true" scroll-x="true" class="wenda-table">
  21. <view class="table-row" v-for="(a,b) in JSON.parse(pinglundetail.content).list" :key="b">
  22. <view class="table-col u-line-1" v-for="(c,d) in a" :key="d" @click.stop="$u.toast(c.value)">{{c.value}}</view>
  23. </view>
  24. </scroll-view>
  25. <view class="wenda-text" v-if="pinglundetail.quiz_type == 1">
  26. {{pinglundetail.content || ''}}
  27. </view>
  28. </view>
  29. <view class="wenda-box" v-for="(item,index) in pinglunlist" :key="index">
  30. <view class="box-top u-flex u-row-between">
  31. <text class="text1" style="background-color: #04B578;">答</text>
  32. <image class="img" :src="item.user_headimg" mode=""></image>
  33. <text class="text2">{{item.user_name}}</text>
  34. <text class="admin" v-if="item.reply_type == 2">管理员</text>
  35. <text class="yewu" v-if="item.reply_type == 3">业务人员</text>
  36. <text class="text3 u-flex-1">{{item.create_time}}</text>
  37. </view>
  38. <view class="wenda-text">
  39. {{item.content}}
  40. </view>
  41. </view>
  42. </view>
  43. <view class="" style="height: 170rpx;"></view>
  44. <view class="houses-btn u-flex u-row-between">
  45. <view class="btn-left u-flex u-row-center" @click="openhuifu">
  46. <image src="../../static/images/huifu.png" mode=""></image>
  47. <text>立即回复</text>
  48. </view>
  49. <view class="btn-right" @click="tochat">在线咨询</view>
  50. </view>
  51. <u-popup v-model="showlogin" mode="center" background="rgba(0,0,0,0)">
  52. <view class="tocall-box u-flex-col u-col-center">
  53. <image class="tocall-img" src="../../static/images/popup1-1.png" mode=""></image>
  54. <view class="u-flex-col u-col-center tocall-text">你目前处于未登录状态请前往登录</view>
  55. <view class="u-flex u-row-between tocall-btn">
  56. <text @click="showlogin = false">取消</text>
  57. <text @click="tologin">确定</text>
  58. </view>
  59. </view>
  60. </u-popup>
  61. <u-popup v-model="showhuifu" mode="center" border-radius="20">
  62. <view class="huifu-popup">
  63. <view class="textarea">
  64. <textarea placeholder="请输入回复内容" v-model="huifu"></textarea>
  65. </view>
  66. <view class="huifu-btn u-flex u-row-center" @click="tohuifu">
  67. <image src="../../static/images/huifu.png" mode=""></image>
  68. <text>回复</text>
  69. </view>
  70. </view>
  71. </u-popup>
  72. <gf-chat ref="chatlist" @over="getuser"></gf-chat>
  73. </view>
  74. </template>
  75. <script>
  76. export default {
  77. data() {
  78. return {
  79. checked: false,
  80. showlogin: false,
  81. showhuifu: false,
  82. id: '',
  83. louid: '',
  84. detail: {},
  85. pinglundetail: {},
  86. pinglunlist: [],
  87. page: 1,
  88. is_allow: 0,
  89. user_id: '',
  90. huifu: '',
  91. worker_id: 0,
  92. worker_phone: '',
  93. worker_hx_username: ''
  94. }
  95. },
  96. onLoad(option) {
  97. this.id = option.id
  98. this.louid = option.louid
  99. this.getlou()
  100. this.getdata()
  101. },
  102. onShow() {
  103. if (uni.getStorageSync("token")) {
  104. this.getuser()
  105. }
  106. },
  107. onReachBottom() {
  108. if (this.pinglunlist.length % 10 == 0) {
  109. this.page++
  110. this.getdata()
  111. }
  112. },
  113. methods: {
  114. tohuifu() {
  115. if (!this.huifu) {
  116. this.$u.toast("请输入回复内容")
  117. return
  118. }
  119. uni.showLoading({
  120. mask: true,
  121. title: "请稍后"
  122. })
  123. this.$u.post('/api/Comment/reply_comment', {
  124. comment_id: this.id,
  125. content: this.huifu
  126. }).then(res => {
  127. this.$u.toast(res.msg)
  128. if (res.code == 1) {
  129. this.showhuifu = false
  130. this.huifu = ''
  131. setTimeout(() => {
  132. this.page = 1
  133. this.pinglunlist = []
  134. this.getdata()
  135. }, 800)
  136. }
  137. })
  138. },
  139. getuser() {
  140. this.$u.post('/api/Member/member_info').then(res => {
  141. this.is_allow = res.data.is_allow
  142. this.user_id = res.data.id
  143. this.worker_id = res.data.worker_id
  144. this.worker_phone = res.data.worker_phone
  145. this.worker_hx_username = res.data.worker_hx_username
  146. })
  147. },
  148. getdata() {
  149. this.$u.post('/api/Comment/consult_reply_comment_list', {
  150. id: this.id,
  151. page: this.page
  152. }).then(res => {
  153. if (this.page == 1) {
  154. this.pinglundetail = res.data.comment
  155. }
  156. this.pinglunlist = this.pinglunlist.concat(res.data.list)
  157. })
  158. },
  159. openhuifu() {
  160. if (uni.getStorageSync("token")) {
  161. this.showhuifu = true
  162. } else {
  163. this.showlogin = true
  164. }
  165. },
  166. getlou() {
  167. this.$u.post('/api/Property/property_detail', {
  168. id: this.louid
  169. }).then(res => {
  170. this.detail = res.data
  171. })
  172. },
  173. tochat() {
  174. if (uni.getStorageSync("token")) {
  175. if (this.worker_id == 0) {
  176. this.$refs.chatlist.open(this.louid)
  177. } else {
  178. this.$u.post('/api/Member/consult_record', {
  179. type: 2
  180. })
  181. uni.navigateTo({
  182. url: "/pages/index/chat?hx_username=" + this.worker_hx_username + "&worker_id=" + this.worker_id
  183. })
  184. }
  185. } else {
  186. this.showlogin = true
  187. }
  188. },
  189. tologin() {
  190. this.showlogin = false
  191. uni.navigateTo({
  192. url: "/pages/mine/login"
  193. })
  194. },
  195. }
  196. }
  197. </script>
  198. <style lang="scss">
  199. .wenda-info {
  200. .huifu-popup {
  201. width: 650rpx;
  202. background: #FFFFFF;
  203. border-radius: 20rpx;
  204. padding: 24rpx;
  205. .huifu-btn {
  206. width: 602rpx;
  207. height: 88rpx;
  208. background: #04B578;
  209. border-radius: 20rpx;
  210. image {
  211. width: 40rpx;
  212. height: 40rpx;
  213. margin-right: 20rpx;
  214. }
  215. text {
  216. font-size: 28rpx;
  217. font-family: PingFangSC-Regular, PingFang SC;
  218. font-weight: 400;
  219. color: #FFFFFF;
  220. }
  221. }
  222. .textarea {
  223. width: 602rpx;
  224. height: 326rpx;
  225. background: #FFFFFF;
  226. border-radius: 20rpx;
  227. border: 2rpx solid #CCCCCC;
  228. padding: 20rpx;
  229. margin-bottom: 24rpx;
  230. textarea {
  231. width: 100%;
  232. height: 100%;
  233. }
  234. }
  235. }
  236. .tocall-box {
  237. position: relative;
  238. .tocall-img {
  239. width: 650rpx;
  240. height: 476rpx;
  241. }
  242. .tocall-btn {
  243. position: absolute;
  244. bottom: 70rpx;
  245. left: 0;
  246. width: 100%;
  247. padding: 0 48rpx;
  248. text:first-child {
  249. width: 254rpx;
  250. line-height: 80rpx;
  251. background: #FFA120;
  252. border-radius: 20rpx;
  253. text-align: center;
  254. font-size: 34rpx;
  255. font-family: PingFangSC-Medium, PingFang SC;
  256. font-weight: 500;
  257. color: #FFFFFF;
  258. }
  259. text:last-child {
  260. width: 254rpx;
  261. line-height: 80rpx;
  262. background: #1F7EFF;
  263. border-radius: 20rpx;
  264. text-align: center;
  265. font-size: 34rpx;
  266. font-family: PingFangSC-Medium, PingFang SC;
  267. font-weight: 500;
  268. color: #FFFFFF;
  269. }
  270. }
  271. .tocall-text {
  272. text-align: center;
  273. font-size: 24rpx;
  274. font-family: PingFangSC-Regular, PingFang SC;
  275. font-weight: 400;
  276. color: #999999;
  277. position: absolute;
  278. top: 244rpx;
  279. left: 0;
  280. z-index: 10;
  281. width: 100%;
  282. }
  283. }
  284. .houses-btn {
  285. position: fixed;
  286. bottom: 0;
  287. left: 0;
  288. width: 750rpx;
  289. height: 166rpx;
  290. background: #FFFFFF;
  291. padding: 0 24rpx 54rpx 24rpx;
  292. z-index: 1;
  293. .btn-left {
  294. width: 338rpx;
  295. height: 84rpx;
  296. background: #04B578;
  297. border-radius: 20rpx;
  298. font-size: 28rpx;
  299. font-family: PingFangSC-Regular, PingFang SC;
  300. font-weight: 400;
  301. color: #FFFFFF;
  302. image {
  303. width: 40rpx;
  304. height: 40rpx;
  305. margin-right: 20rpx;
  306. }
  307. }
  308. .btn-right {
  309. width: 338rpx;
  310. line-height: 84rpx;
  311. background: #1F7EFF;
  312. border-radius: 20rpx;
  313. text-align: center;
  314. font-size: 28rpx;
  315. font-family: PingFangSC-Regular, PingFang SC;
  316. font-weight: 400;
  317. color: #FFFFFF;
  318. }
  319. }
  320. .fangchan-wenda {
  321. width: 702rpx;
  322. background: #FFFFFF;
  323. border-radius: 20rpx;
  324. margin: 20rpx auto;
  325. padding: 24rpx 24rpx 20rpx 24rpx;
  326. .wenda-box {
  327. padding: 0 20rpx;
  328. .tiwen-zhiding {
  329. margin-bottom: 20rpx;
  330. .text {
  331. font-size: 28rpx;
  332. font-family: PingFangSC-Regular, PingFang SC;
  333. font-weight: 400;
  334. color: #666666;
  335. margin-right: 16rpx;
  336. }
  337. }
  338. .table-header {
  339. width: 620rpx;
  340. height: 94rpx;
  341. border: 2rpx solid #F0F0F0;
  342. input {
  343. text-align: center;
  344. color: red;
  345. }
  346. }
  347. .wenda-table {
  348. width: 620rpx;
  349. max-height: 378rpx;
  350. border-radius: 16rpx;
  351. margin-bottom: 20rpx;
  352. .table-row {
  353. white-space: nowrap;
  354. height: 94rpx;
  355. .table-col {
  356. width: 155rpx;
  357. line-height: 94rpx;
  358. height: 94rpx;
  359. border-bottom: 2rpx solid #F0F0F0;
  360. border-left: 2rpx solid #F0F0F0;
  361. padding: 0 16rpx;
  362. display: inline-block;
  363. font-size: 24rpx;
  364. font-family: PingFangSC-Regular, PingFang SC;
  365. font-weight: 400;
  366. color: rgba(102, 102, 102, 0.88);
  367. }
  368. .table-col:last-child {
  369. border-right: 2rpx solid #F0F0F0;
  370. }
  371. }
  372. .table-row:last-child {
  373. .table-col {
  374. border-bottom: 2rpx solid #F0F0F0;
  375. }
  376. }
  377. }
  378. .wenda-text {
  379. font-size: 24rpx;
  380. font-family: PingFangSC-Regular, PingFang SC;
  381. font-weight: 400;
  382. color: #666666;
  383. margin-bottom: 20rpx;
  384. }
  385. .box-top {
  386. margin-bottom: 20rpx;
  387. .yewu {
  388. width: 118rpx;
  389. line-height: 36rpx;
  390. border-radius: 8rpx;
  391. border: 2rpx solid #1677FF;
  392. text-align: center;
  393. font-size: 24rpx;
  394. font-family: PingFangSC-Regular, PingFang SC;
  395. font-weight: 400;
  396. color: #1677FF;
  397. }
  398. .admin {
  399. width: 118rpx;
  400. line-height: 36rpx;
  401. border-radius: 8rpx;
  402. border: 2rpx solid #FF9F18;
  403. text-align: center;
  404. font-size: 24rpx;
  405. font-family: PingFangSC-Regular, PingFang SC;
  406. font-weight: 400;
  407. color: #FF9F18;
  408. }
  409. .text2 {
  410. font-size: 24rpx;
  411. font-family: PingFangSC-Regular, PingFang SC;
  412. font-weight: 400;
  413. color: #666666;
  414. margin-right: 20rpx;
  415. }
  416. .text3 {
  417. font-size: 24rpx;
  418. font-family: PingFangSC-Regular, PingFang SC;
  419. font-weight: 400;
  420. color: #999999;
  421. text-align: right;
  422. }
  423. .img {
  424. width: 36rpx;
  425. height: 36rpx;
  426. border-radius: 100rpx;
  427. margin: 0 20rpx;
  428. }
  429. .text1 {
  430. width: 36rpx;
  431. line-height: 36rpx;
  432. background: #1677FF;
  433. border-radius: 8rpx;
  434. text-align: center;
  435. font-size: 24rpx;
  436. font-family: PingFangSC-Semibold, PingFang SC;
  437. font-weight: 600;
  438. color: #FFFFFF;
  439. }
  440. }
  441. }
  442. }
  443. }
  444. </style>