mydongtai.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. <template>
  2. <view>
  3. <image src="../../static/bg.png" mode="" class="bg"></image>
  4. <view class="nodongtai u-flex-col u-col-center" v-if="dongtaiList.length==0">
  5. <image src="../../static/profile/nodongtai.png" mode=""></image>
  6. <text class="tips">暂无动态,快去发一条吧!</text>
  7. <view class="publish" @click="tofabu">
  8. 发布动态
  9. </view>
  10. </view>
  11. <view class="content" v-else>
  12. <view class="item" v-for="(item,index) in dongtaiList" :key="index" @click="itemClick(item)" >
  13. <view class="top1 u-flex u-row-between">
  14. <view class="topleft u-flex">
  15. <image :src="info.headimg" mode=""></image>
  16. <view class="">
  17. <view class="name">
  18. {{item.nickame}}
  19. </view>
  20. <view class="area">
  21. {{item.city?item.city+'·':''}}{{item.age?item.age+'岁':''}}
  22. </view>
  23. </view>
  24. </view>
  25. <view class="" style="color: #FFB422;font-size: 24rpx;" v-if="item.status==1">
  26. 审核中
  27. </view>
  28. <view class="" style="color: #FF7676;font-size: 24rpx;" v-if="item.status==3">
  29. 审核失败
  30. </view>
  31. <view class="" style="color: #6BC159;font-size: 24rpx;" v-if="item.status==2">
  32. 已通过
  33. </view>
  34. </view>
  35. <view class="iteminfo">
  36. {{item.content}}
  37. </view>
  38. <view class="imaglist u-flex" v-if="item.suffix=='png'||item.suffix=='jpg'">
  39. <view class="imgbox" v-for="(ite,ind) in item.show_images" :key="ind" >
  40. <image :src="ite" mode="" @click="lookImage(ite)"></image>
  41. </view>
  42. </view>
  43. <video :src="item.show_images[0]" objectFit="fill" class="video" v-if="item.suffix=='mp4'"></video>
  44. <view class="bottom u-flex u-row-right" v-if="item.status!=2">
  45. <view class="" @click.stop="edit(item)" style="padding: 4rpx 20rpx;border-radius: 4px;border: 1px solid #979797;font-size: 28rpx;margin-right: 24rpx;">
  46. 编辑
  47. </view>
  48. <view class="" @click.stop="delectItem(item,index)" style="padding: 4rpx 20rpx;border-radius: 4px;border: 1px solid #FF7676;font-size: 28rpx;color: #FF2828;">
  49. 删除
  50. </view>
  51. <!-- <view class="u-flex u-row-left">
  52. <view class="zan">
  53. <image src="../../static/forum/5@2x.png" mode=""></image>
  54. <text>{{item.give}}</text>
  55. </view>
  56. <view class="talk">
  57. <image src="../../static/forum/3@2x.png" mode=""></image>
  58. <text>{{item.comment}}</text>
  59. </view>
  60. </view>
  61. <image src="../../static/forum/more.png" mode="" style="width: 36rpx;height: 36rpx;" @click.stop="delectItem(index)"></image> -->
  62. </view>
  63. </view>
  64. </view>
  65. <image src="../../static/forum/4@2x.png" mode="" @click="tofabu" class="fa"></image>
  66. <u-action-sheet :actions="list" cancelText='取消' @close='close' @select='select' round='20' :show="show"></u-action-sheet>
  67. </view>
  68. </template>
  69. <script>
  70. export default {
  71. onShow() {
  72. this.getList()
  73. },
  74. data() {
  75. return {
  76. info:JSON.parse(uni.getStorageSync('userInfo')),
  77. page:1,
  78. dongtaiList:[],
  79. current:null,
  80. show:false,
  81. list: [
  82. {
  83. name:'删除',
  84. color:'#FF2F2F',
  85. fontSize:'20'
  86. },
  87. ]
  88. }
  89. },
  90. methods: {
  91. edit(item){
  92. uni.navigateTo({
  93. url:'/pages/forum/publish?item='+JSON.stringify(item)
  94. })
  95. },
  96. getList(){
  97. uni.$u.http.post('/api/user/dynamic',{page:this.page}).then(res => {
  98. if(this.page==1){
  99. this.dongtaiList=res.data
  100. }else{
  101. this.dongtaiList=[...this.dongtaiList,...res.data]
  102. }
  103. })
  104. },
  105. delectItem(item,index){
  106. // this.current=index
  107. // this.show=true
  108. var that=this
  109. uni.showModal({
  110. title: '提示',
  111. content: '确定要删除该动态吗',
  112. success: function (res) {
  113. if (res.confirm) {
  114. uni.$u.http.post('/api/user/deldynbamic',{id:item.id}).then(res => {
  115. if(res.code==1){
  116. that.dongtaiList.splice(index,1)
  117. }
  118. })
  119. } else if (res.cancel) {
  120. console.log('用户点击取消');
  121. }
  122. }
  123. });
  124. },
  125. close(){
  126. this.show=false
  127. },
  128. select(e){
  129. // console.log(e)
  130. this.show=false
  131. },
  132. itemClick(item){
  133. // uni.navigateTo({
  134. // url: '../forum/forumInfo'
  135. // });
  136. if(item.status==2){
  137. uni.navigateTo({
  138. url: '../forum/forumInfo?id='+item.id
  139. });
  140. }
  141. },
  142. tofabu(){
  143. uni.navigateTo({
  144. url:'../forum/publish'
  145. })
  146. },
  147. lookImage(ite) {
  148. let imgsArray = [];
  149. imgsArray[0] = ite;
  150. uni.previewImage({
  151. current: 0,
  152. urls: imgsArray,
  153. });
  154. },
  155. }
  156. }
  157. </script>
  158. <style lang="scss">
  159. .fa{
  160. width: 100rpx;
  161. height: 102rpx;
  162. position: fixed;
  163. bottom: 100rpx;
  164. right: 30rpx;
  165. }
  166. .bottom{
  167. color: #999999;
  168. font-size: 24rpx;
  169. .zan{
  170. margin-right: 40rpx;
  171. // font-weight: 400;
  172. // background: linear-gradient(180deg, #FFAEAE 0%, #A890FE 100%);
  173. // -webkit-background-clip: text;
  174. // -webkit-text-fill-color: transparent;
  175. image{
  176. vertical-align: middle;
  177. width: 36rpx;
  178. height: 36rpx;
  179. margin-right: 4rpx;
  180. }
  181. }
  182. .talk{
  183. image{
  184. vertical-align: middle;
  185. width: 36rpx;
  186. height: 36rpx;
  187. margin-right: 4rpx;
  188. }
  189. }
  190. }
  191. .imaglist{
  192. flex-wrap: wrap;
  193. .imgbox{
  194. margin-right: 15rpx;
  195. max-width: 220rpx;
  196. max-height: 220rpx;
  197. margin-bottom: 20rpx;
  198. image{
  199. max-width: 220rpx;
  200. max-height: 220rpx;
  201. border-radius: 20px;
  202. }
  203. }
  204. .imgbox:nth-child(3n+3) {
  205. margin-right: 0;
  206. }
  207. }
  208. .iteminfo{
  209. margin: 22rpx 0 20rpx;
  210. font-size: 28rpx;
  211. color: #222222;
  212. }
  213. .content{
  214. width: 750rpx;
  215. background: #FFFFFF;
  216. border-radius: 40rpx;
  217. .item{
  218. padding: 36rpx 30rpx;
  219. border-bottom: 2rpx solid #F2F2F2;
  220. .video{
  221. margin-bottom: 42rpx;
  222. width: 690rpx;
  223. height: 320rpx;
  224. border-radius: 20rpx;
  225. }
  226. .topleft{
  227. image{
  228. width: 76rpx;
  229. height: 76rpx;
  230. border-radius: 50%;
  231. margin-right: 20rpx;
  232. }
  233. .name{
  234. font-size: 28rpx;
  235. color: #222222;
  236. font-weight: 600;
  237. image{
  238. margin-left: 8rpx;
  239. width: 28rpx;
  240. height: 28rpx;
  241. }
  242. }
  243. .area{
  244. font-size: 20rpx;
  245. color: #999999;
  246. }
  247. }
  248. .topright{
  249. width: 108rpx;
  250. height: 56rpx;
  251. text-align: center;
  252. line-height: 56rpx;
  253. border-radius: 28rpx;
  254. border: 3rpx solid #C7A6CE;
  255. font-weight: 400;
  256. color: #999999;
  257. background: linear-gradient(180deg, #FFAEAE 0%, #A890FE 100%);
  258. -webkit-background-clip: text;
  259. -webkit-text-fill-color: transparent;
  260. }
  261. }
  262. }
  263. .publish{
  264. margin:0 auto;
  265. width: 550rpx;
  266. height: 96rpx;
  267. line-height: 96rpx;
  268. text-align: center;
  269. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  270. border-radius: 52rpx;
  271. font-size: 36rpx;
  272. color: #fff;
  273. }
  274. .nodongtai{
  275. position: fixed;
  276. top: 244rpx;
  277. left: 50%;
  278. transform: translateX(-50%);
  279. image{
  280. width: 370rpx;
  281. height: 260rpx;
  282. }
  283. .tips{
  284. font-size: 28rpx;
  285. margin: 148rpx 0 108rpx;
  286. }
  287. }
  288. </style>