chat.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  1. <template>
  2. <view class="content">
  3. <u-navbar :title="other_user.name" placeholder autoBack>
  4. <view class="u-nav-right" slot="right">
  5. <u-icon name="more-dot-fill" color="#575B66" size="18" @click="show_menu = !show_menu"></u-icon>
  6. <view class="menu vflex" v-if="show_menu" @click.stop="show_menu = true">
  7. <view class="menu-item hflex acenter" @click="tolist">
  8. <u-icon name="clock" size="14" color="#555555"></u-icon>
  9. <view class="menu-text">聊天记录</view>
  10. </view>
  11. <view class="menu-item hflex acenter" @click="show_jubao = true">
  12. <image src="static/warn.png" mode="aspectFill"></image>
  13. <view class="menu-text">举报</view>
  14. </view>
  15. </view>
  16. </view>
  17. </u-navbar>
  18. <view class="list">
  19. <view class="list-item" v-for="(item,index) in list" :key="index">
  20. <view class="time">{{item.time}}</view>
  21. <view class=" hflex acenter jbetween">
  22. <image :src="other_user.avatar" style="margin-right: 12rpx;" mode="aspectFill"
  23. v-if="item.id == other_user.id"></image>
  24. <view v-else style="width: 68rpx;"></view>
  25. <view class="text" :style="item.id == user.id ? 'background: #00B0B0;color: #FFFFFF' : ''">
  26. {{item.content}}
  27. </view>
  28. <image :src="user.avatar" style="margin-left: 12rpx;" mode="aspectFill" v-if="item.id == user.id">
  29. </image>
  30. <view v-else style="width: 68rpx;"></view>
  31. </view>
  32. </view>
  33. </view>
  34. <view class="bottom hflex acenter jbetween">
  35. <u-input v-model="text" placeholder="输入消息" border="none"></u-input>
  36. <view class="btn" :class="text != '' ? 'btn2' : ''" @click="send">发送</view>
  37. </view>
  38. <u-popup :show="show_jubao" @close="toclose" mode="bottom" :round="10">
  39. <view class="popu">
  40. <view class="title hflex acenter jbetween">
  41. <text>内容描述</text>
  42. <u-icon name="close" color="#000000" size="14" @click="toclose"></u-icon>
  43. </view>
  44. <u--textarea v-model="jubao" placeholder="请对您举报的内容进行文字描述"></u--textarea>
  45. <view class="title">
  46. <text>辅助图片</text>
  47. </view>
  48. <u-upload :fileList="fileList1" @afterRead="afterRead" @delete="deletePic" name="1" :maxCount="9"
  49. width="160rpx" height="160rpx">
  50. <view class="upload-bg hflex acenter jcenter">
  51. <u-icon name="plus" color="#CCCCCC" size="20"></u-icon>
  52. </view>
  53. </u-upload>
  54. <view class="btn" :class="jubao != '' ? 'btn2' : ''" @click="submit">确定</view>
  55. </view>
  56. </u-popup>
  57. </view>
  58. </template>
  59. <script>
  60. import $api from '@/static/js/api.js'
  61. export default {
  62. data() {
  63. return {
  64. user: {},
  65. other_user: {},
  66. list: [],
  67. text: '',
  68. show_menu: false,
  69. show_jubao: false,
  70. jubao: '',
  71. imgs: '',
  72. fileList1: [],
  73. chat_user_id: '',
  74. userid: '',
  75. }
  76. },
  77. onLoad(options) {
  78. this.chat_user_id = options.chat_user_id
  79. this.userid = uni.getStorageSync('userid')
  80. this.getdata()
  81. },
  82. onShow() {
  83. },
  84. onPullDownRefresh() {
  85. },
  86. onReachBottom() {
  87. },
  88. methods: {
  89. submit() {
  90. var that = this
  91. let image = []
  92. if(that.fileList1.length>0) {
  93. for(var i=0;i<that.fileList1.length;i++) {
  94. image.push(that.fileList1[i].url)
  95. }
  96. }
  97. $api.req({
  98. url: 'report',
  99. method: 'post',
  100. data: {
  101. source_type: 'chat',
  102. source_id: this.chat_user_id,
  103. content: this.jubao,
  104. images: image
  105. }
  106. }, function(res) {
  107. $api.info('举报成功')
  108. that.toclose()
  109. })
  110. },
  111. send() {
  112. var that = this
  113. $api.req({
  114. url: 'chat',
  115. method: 'post',
  116. data: {
  117. chat_user_id: this.chat_user_id,
  118. content: this.text
  119. }
  120. }, function(res) {
  121. $api.info('发送成功')
  122. })
  123. },
  124. getdata() {
  125. var that = this
  126. $api.req({
  127. url: 'chat/detail',
  128. data: {
  129. is_page: 1,
  130. page: 1,
  131. limit: 25,
  132. chat_user_id: this.chat_user_id
  133. }
  134. }, function(res) {
  135. that.list = res.data.list
  136. })
  137. },
  138. // 删除图片
  139. deletePic(event) {
  140. this[`fileList${event.name}`].splice(event.index, 1)
  141. },
  142. // 新增图片
  143. async afterRead(event) {
  144. // 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
  145. let lists = [].concat(event.file)
  146. let fileListLen = this[`fileList${event.name}`].length
  147. lists.map((item) => {
  148. this[`fileList${event.name}`].push({
  149. ...item,
  150. status: 'uploading',
  151. message: '上传中'
  152. })
  153. })
  154. for (let i = 0; i < lists.length; i++) {
  155. const result = await this.uploadFilePromise(lists[i].url)
  156. let item = this[`fileList${event.name}`][fileListLen]
  157. this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
  158. status: 'success',
  159. message: '',
  160. url: result
  161. }))
  162. fileListLen++
  163. }
  164. },
  165. uploadFilePromise(url) {
  166. return new Promise((resolve, reject) => {
  167. let a = uni.uploadFile({
  168. url: 'http://192.168.2.21:7001/upload', // 仅为示例,非真实的接口地址
  169. filePath: url,
  170. name: 'file',
  171. formData: {
  172. user: 'test'
  173. },
  174. success: (res) => {
  175. let data = JSON.parse(res.data)
  176. setTimeout(() => {
  177. resolve(data.data.url)
  178. }, 1000)
  179. }
  180. });
  181. })
  182. },
  183. toclose() {
  184. this.show_jubao = false
  185. },
  186. tolist() {
  187. uni.navigateTo({
  188. url: '/pageA/chat-list'
  189. })
  190. },
  191. }
  192. }
  193. </script>
  194. <style lang="scss">
  195. .content::v-deep {
  196. background: #FFFFFF;
  197. padding: 20rpx 28rpx;
  198. .popu {
  199. background: #FFFFFF;
  200. border-radius: 20rpx 20rpx 0rpx 0rpx;
  201. box-sizing: border-box;
  202. padding: 0 28rpx;
  203. .title {
  204. padding: 36rpx 0 28rpx;
  205. width: 100%;
  206. text {
  207. font-size: 32rpx;
  208. font-weight: 500;
  209. color: #333333;
  210. }
  211. }
  212. .u-textarea {
  213. width: 694rpx;
  214. height: 236rpx;
  215. background: #F5F5F5;
  216. border-radius: 12rpx;
  217. padding: 28rpx 20rpx !important;
  218. box-sizing: border-box;
  219. border: none;
  220. }
  221. .upload-bg {
  222. width: 160rpx;
  223. height: 160rpx;
  224. background: #F5F5F5;
  225. border-radius: 12rpx;
  226. }
  227. .btn2 {
  228. opacity: 1 !important;
  229. }
  230. .btn {
  231. margin: 156rpx 0 54rpx;
  232. width: 694rpx;
  233. height: 88rpx;
  234. background: #00B0B0;
  235. border-radius: 44rpx;
  236. opacity: 0.2;
  237. font-size: 32rpx;
  238. font-family: PingFangSC, PingFang SC;
  239. font-weight: 500;
  240. color: #FFFFFF;
  241. line-height: 88rpx;
  242. text-align: center;
  243. }
  244. }
  245. .u-nav-right {
  246. position: relative;
  247. .menu {
  248. position: absolute;
  249. right: 0;
  250. top: 56rpx;
  251. width: 188rpx;
  252. height: 144rpx;
  253. background: #FFFFFF;
  254. box-shadow: 0rpx 4rpx 20rpx -4rpx rgba(0, 0, 0, 0.2);
  255. border-radius: 8rpx;
  256. box-sizing: border-box;
  257. padding: 26rpx 24rpx 0;
  258. .menu-item {
  259. padding: 0 0 32rpx;
  260. image {
  261. width: 36rpx;
  262. height: 36rpx;
  263. }
  264. .menu-text {
  265. padding-left: 12rpx;
  266. font-size: 24rpx;
  267. font-family: PingFangSC, PingFang SC;
  268. font-weight: 400;
  269. color: #555555;
  270. }
  271. }
  272. }
  273. }
  274. .bottom {
  275. border-top: 1px solid #E5E5E5;
  276. width: 100%;
  277. position: fixed;
  278. bottom: 0;
  279. left: 0;
  280. background: #FFFFFF;
  281. padding: 14rpx 28rpx 76rpx;
  282. box-sizing: border-box;
  283. .u-input {
  284. width: 528rpx !important;
  285. height: 76rpx;
  286. box-sizing: border-box;
  287. background: #F5F5F5;
  288. border-radius: 40rpx;
  289. padding: 18rpx 40rpx !important;
  290. }
  291. .btn2 {
  292. opacity: 1 !important;
  293. }
  294. .btn {
  295. margin-left: 20rpx;
  296. width: 146rpx;
  297. height: 76rpx;
  298. background: #00B0B0;
  299. border-radius: 40rpx;
  300. opacity: 0.5;
  301. font-size: 28rpx;
  302. font-family: PingFangSC, PingFang SC;
  303. font-weight: 400;
  304. color: #FFFFFF;
  305. text-align: center;
  306. line-height: 76rpx;
  307. }
  308. }
  309. .list {
  310. .list-item {
  311. margin: 0 0 44rpx;
  312. .time {
  313. width: 100%;
  314. text-align: center;
  315. font-size: 26rpx;
  316. font-family: PingFangSC, PingFang SC;
  317. font-weight: 400;
  318. color: #999999;
  319. padding-bottom: 24rpx;
  320. }
  321. image {
  322. width: 68rpx;
  323. height: 68rpx;
  324. border-radius: 50%;
  325. }
  326. .text {
  327. width: 512rpx;
  328. background: #F5F5F5;
  329. font-size: 28rpx;
  330. font-family: SFPro, SFPro;
  331. font-weight: 400;
  332. color: #333333;
  333. padding: 18rpx 28rpx;
  334. border-radius: 16rpx;
  335. }
  336. }
  337. }
  338. }
  339. </style>