zixunList.vue 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <template>
  2. <view>
  3. <view class="" style="width: 690rpx;
  4. background: #FFFFFF;
  5. border-radius: 28rpx;margin: 0 auto 20rpx;padding: 24rpx 20rpx;box-sizing: border-box;margin-bottom: 20rpx;" @click="toinfo(item)" v-for="(item,index) in list" :key="index">
  6. <view class="content" style="">
  7. {{item.problem}}
  8. </view>
  9. <view class="u-flex u-row-between" style="margin-top: 20rpx;">
  10. <text style="font-size: 24rpx;color: #888888;">{{item.create_time}}</text>
  11. <view class="" style="width: 144rpx;
  12. height: 52rpx;
  13. border-radius: 26rpx;
  14. border: 1px solid #979797;line-height: 52rpx;text-align: center;" @click.stop="delectItem(item)">
  15. 删除
  16. </view>
  17. </view>
  18. </view>
  19. <u-empty
  20. v-if="list.length==0"
  21. mode="list"
  22. icon="http://cdn.uviewui.com/uview/empty/list.png"
  23. >
  24. </u-empty>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. onLoad() {
  30. this.getList()
  31. },
  32. data() {
  33. return {
  34. list:[]
  35. }
  36. },
  37. methods: {
  38. toinfo(item){
  39. uni.navigateTo({
  40. url:'./zixunInfo?id='+item.id
  41. })
  42. },
  43. getList(){
  44. uni.$u.http.post('/api/index/emotion_list').then(res => {
  45. if(res.code==1){
  46. this.list=res.data
  47. }
  48. })
  49. },
  50. delectItem(item){
  51. var that=this
  52. uni.showModal({
  53. title: '提示',
  54. content: '确定要删除吗',
  55. success: function (res) {
  56. if (res.confirm) {
  57. uni.$u.http.post('/api/index/delete_emotion',{e_id:item.id}).then(res => {
  58. if(res.code==1){
  59. that.getList()
  60. }
  61. })
  62. } else if (res.cancel) {
  63. console.log('用户点击取消');
  64. }
  65. }
  66. });
  67. }
  68. }
  69. }
  70. </script>
  71. <style>
  72. page{
  73. padding-top: 30rpx;
  74. background: #F3F3F3;
  75. }
  76. .content{
  77. /* height: 100px; 如果设置了高度,且高度超过文本显示行数,在第三行会正常出现省略号,但是三行之后的仍然正常显示*/
  78. /* 设置高度是行高的倍数,防止文本露出一半 */
  79. /* 旧版弹性盒 */
  80. display: -webkit-box;
  81. /* 弹性盒子元素垂直排列 */
  82. -webkit-box-orient: vertical;
  83. /* 控制要显示的行数 */
  84. -webkit-line-clamp: 3;
  85. overflow: hidden;
  86. }
  87. </style>