ComprehensiveMatterList.vue 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. <template>
  2. <div class='comprehensive-matter-list'>
  3. <van-nav-bar :title='title' left-arrow @click-left='backPage' />
  4. <div class='main' v-show='!noData'>
  5. <van-list class='matters-list' v-model='loading' :finished='finished' finished-text :immediate-check='false' @load>
  6. <div class='card' v-for='(item,index) in list' :key='index'>
  7. <div class='date-attachment'>
  8. <div class='date'>
  9. <span class='label'>日期:</span>
  10. <span class='data'>{{item.date}}</span>
  11. </div>
  12. <div class='attachment' @click='showImg(item)'>
  13. <span class='label'>附件:</span>
  14. <span class='data'>{{item.attachmentCount}}</span>
  15. </div>
  16. </div>
  17. <div class='record'>
  18. <span class='label'>记录事项:</span>
  19. <!-- 该条的showMore为true或者undefined,数据最多显示3行 -->
  20. <div class='data' :class='item.showMore || item.showMore === undefined ?"van-multi-ellipsis--l3":"" '>{{item.recordsx ||'--'}}</div>
  21. </div>
  22. <div class='work' v-if='item.showMore === false'>
  23. <span class='label'>工作要求:</span>
  24. <div class='data'>{{item.workyq ||'--'}}</div>
  25. </div>
  26. <div class='matter' v-if='item.showMore === false'>
  27. <span class='label'>整改事项:</span>
  28. <div class='data'>{{item.zgyq || '--'}}</div>
  29. </div>
  30. <div class='show-more' v-if='item.showMore || item.showMore === undefined ' @click='changeStatus(item,false)'>
  31. <i class='iconfont wanda-zhankai'></i>
  32. <span>展开</span>
  33. </div>
  34. <div class='show-less' v-else @click='changeStatus(item,true)'>
  35. <!-- TODO: 收起 箭头 -->
  36. <i class='iconfont wanda-shouqi'></i>
  37. <span>收起</span>
  38. </div>
  39. </div>
  40. </van-list>
  41. </div>
  42. <div class='main' v-show='noData'>
  43. <van-empty description='暂无数据' />
  44. </div>
  45. <!-- 现场照片预览 -->
  46. <ImagePreview :key='imgKey' class='update-img-preview' :visible.sync='showImgPreview' :imgList='imgList' />
  47. </div>
  48. </template>
  49. <script>
  50. /**
  51. * 综合事项,政府/其他部门 列表页面
  52. */
  53. import Vue from 'vue'
  54. import { NavBar, List } from 'vant'
  55. Vue.use(NavBar).use(List)
  56. import { queryDetailList } from '@/api/other'
  57. import { mapGetters } from 'vuex'
  58. import moment from 'moment'
  59. import ImagePreview from '@/components/ImagePreview'
  60. export default {
  61. name: 'ComprehensiveMatterList',
  62. props: {},
  63. components: { ImagePreview },
  64. data() {
  65. return {
  66. // 列表数据
  67. list: [
  68. // { index: 0, date: '2020-08-20', id: 1 },
  69. // { index: 1, date: '2020-08-20', id: 2 },
  70. // { index: 2, date: '2020-08-20', id: 3 },
  71. // { index: 3, date: '2020-08-20', id: 4 },
  72. ],
  73. // 点击条的信息
  74. currentInfo: {
  75. showMore: true,
  76. },
  77. loading: false, // list加载中
  78. finished: true, //list组件,加载完成
  79. page: 1, //页码
  80. size: 5, //分页条数
  81. count: 0, //总条数
  82. title: '',
  83. params: {}, //跳转改页面时,路由传参
  84. showImgPreview: false, //是否展示图片预览
  85. imgList: [], //图片数组
  86. imgKey: `img${new Date().getTime()}`, //重新渲染图片预览组件使用
  87. noData: false,
  88. }
  89. },
  90. computed: {
  91. ...mapGetters(['plazaId']),
  92. },
  93. created() {
  94. console.log(this.$route.params)
  95. let { type, department, otherdescription, size, createdateStartDate, createdateEndDate } = this.$route.params
  96. this.size = size
  97. if (type === 1) {
  98. this.params = { department, createdateStartDate, createdateEndDate }
  99. this.title = department
  100. } else {
  101. this.params = { department, otherdescription, createdateStartDate, createdateEndDate }
  102. this.title = '其他部门'
  103. }
  104. this.getList()
  105. },
  106. beforeMount() {},
  107. mounted() {},
  108. methods: {
  109. // 返回上一个页面
  110. backPage() {
  111. this.$router.go(-1)
  112. },
  113. /**
  114. * 切换 展开,收起
  115. */
  116. changeStatus(item, showMore) {
  117. this.currentInfo = item
  118. this.$set(this.currentInfo, 'showMore', showMore)
  119. },
  120. async getList() {
  121. let params = this.params
  122. let getParams = {
  123. ...params,
  124. plazaId: this.plazaId,
  125. page: this.page,
  126. size: 100 || this.size, //TODO: size
  127. orderBy: 'createdate,0',
  128. }
  129. let res = await queryDetailList({ getParams })
  130. if (!res?.data) {
  131. return false
  132. }
  133. let data = res.data
  134. data.map((item) => {
  135. item.date = moment(item.createdate).format('YYYY-MM-DD')
  136. item.attachmentCount = item.glsmsZhsxfj ? item.glsmsZhsxfj.length : '--'
  137. })
  138. this.list = data
  139. if (!this.list.length) {
  140. this.noData = true
  141. } else {
  142. this.noData = false
  143. }
  144. },
  145. /**
  146. * 预览图片
  147. */
  148. showImg(data) {
  149. if (!data.attachmentCount) {
  150. return false
  151. }
  152. let imgList = []
  153. data.glsmsZhsxfj.map((attachment) => {
  154. imgList.push(attachment.urlname)
  155. })
  156. this.imgList = imgList
  157. imgList.length && (this.showImgPreview = true)
  158. },
  159. async onLoad() {},
  160. },
  161. }
  162. </script>
  163. <style lang='less' scoped>
  164. .comprehensive-matter-list {
  165. width: 100%;
  166. height: 100%;
  167. background-color: #f5f6f7;
  168. .main {
  169. width: 100%;
  170. height: calc(100% - 50px);
  171. // overflow: auto;
  172. .matters-list {
  173. width: 100%;
  174. height: 100%;
  175. overflow: auto;
  176. .card {
  177. width: 100%;
  178. padding: 15px;
  179. background-color: #fff;
  180. margin-bottom: 10px;
  181. .date-attachment,
  182. .record,
  183. .work,
  184. .matter {
  185. width: 100%;
  186. display: flex;
  187. justify-content: space-between;
  188. line-height: 20px;
  189. font-size: 14px;
  190. font-weight: 400;
  191. color: #666666;
  192. margin-bottom: 12px;
  193. .label {
  194. width: 70px;
  195. }
  196. .data {
  197. flex: 1;
  198. color: #333;
  199. }
  200. }
  201. // 日期,附件
  202. .date-attachment {
  203. .label {
  204. // margin-right: 10px;
  205. display: inline-block;
  206. width: 45px;
  207. }
  208. .attachment {
  209. color: #025baa;
  210. .data {
  211. color: #025baa;
  212. }
  213. }
  214. }
  215. .show-more,
  216. .show-less {
  217. margin: 0 auto;
  218. width: 72px;
  219. height: 30px;
  220. line-height: 30px;
  221. text-align: center;
  222. background: #e5eef6;
  223. border-radius: 2px;
  224. display: flex;
  225. align-items: center;
  226. justify-content: center;
  227. font-weight: 400;
  228. color: #025baa;
  229. font-size: 14px;
  230. border-radius: 3px;
  231. i {
  232. position: relative;
  233. top: 2px;
  234. right: 3px;
  235. width: 25px;
  236. }
  237. span {
  238. height: 100%;
  239. }
  240. }
  241. }
  242. }
  243. }
  244. }
  245. </style>