UpdateRecord.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. <template>
  2. <div class='update-record'>
  3. <van-nav-bar title='说明书更新记录' left-arrow @click-left='backPage' />
  4. <van-dropdown-menu active-color='#1989fa'>
  5. <van-dropdown-item v-model='objType' :options='option' />
  6. </van-dropdown-menu>
  7. <div class='record'>
  8. <!-- 引入list,触底更新 -->
  9. <van-list class='record-list' v-model='loading' :finished='finished' finished-text='没有更多了' @load='onLoad'>
  10. <div class='info' v-for='i in list' :key='i'>
  11. <div class='left'>
  12. <div class='dot'></div>
  13. <div class='line'></div>
  14. </div>
  15. <div class='right'>
  16. <div class='title'>
  17. <span class='date'>2020.08.19 {{i}}</span>
  18. </div>
  19. <div class='content' @click='goToDetailInfo'>
  20. <p class='type'>重要维保</p>
  21. <p>电梯系统-货梯-3-报停后的维保管理建筑-3#直梯光幕更换</p>
  22. </div>
  23. <div class='content' v-if='i===1'>
  24. <p class='type'>重要维修</p>
  25. <p>电梯系统-货梯-3-报停后的维保管理建筑-3#直梯光幕更换</p>
  26. </div>
  27. </div>
  28. </div>
  29. </van-list>
  30. </div>
  31. </div>
  32. </template>
  33. <script>
  34. /**
  35. * 说明书更新记录
  36. */
  37. import Vue from 'vue'
  38. import { NavBar, DropdownMenu, DropdownItem, List } from 'vant'
  39. Vue.use(NavBar)
  40. Vue.use(DropdownMenu).use(DropdownItem)
  41. Vue.use(List)
  42. import { mapGetters } from 'vuex'
  43. // import { getChangeList } from '@/api/homePage'
  44. import { queryEventypes } from '@/api/overview'
  45. import { querySelect } from '@/api/public'
  46. export default {
  47. name: 'UpdateRecord',
  48. props: {},
  49. components: {},
  50. data() {
  51. return {
  52. objType: 0,
  53. option: [
  54. { text: '全部', value: 0 },
  55. { text: '重要维保', value: 1 },
  56. { text: '重要维修', value: 4 },
  57. { text: '其他事项', value: 5 },
  58. { text: '综合事项', value: 3 },
  59. ],
  60. // 1: '重要维保',
  61. // 3: '综合事项',
  62. // 4: '重要维修',
  63. // 5: '其他事项',
  64. list: [],
  65. loading: false,
  66. finished: false,
  67. }
  68. },
  69. computed: {
  70. ...mapGetters(['plazaId']),
  71. },
  72. created() {
  73. let params = {
  74. getParams: {
  75. plazaId: this.plazaId,
  76. page: 1,
  77. size: 100,
  78. },
  79. }
  80. getChangeList(params).then((res) => {
  81. console.log(res)
  82. })
  83. this.querySelect()
  84. },
  85. beforeMount() {},
  86. mounted() {},
  87. methods: {
  88. /**
  89. *
  90. */
  91. async querySelect() {
  92. let data = {
  93. plazaId: this.plazaId,
  94. },
  95. postParams = [
  96. {
  97. tableName: 'rpt_change_record',
  98. columnName: {
  99. objtype: 'objtype',
  100. },
  101. },
  102. ]
  103. let resData = await queryEventypes({ data, postParams })
  104. console.log('%c======', 'color:blue')
  105. console.log(resData)
  106. },
  107. // 返回上一个页面(项目概况)
  108. backPage() {
  109. this.$router.go(-1)
  110. },
  111. goToDetailInfo() {
  112. this.$router.push({ name: 'UpdateRecordDetail', params: { a: 1 } })
  113. },
  114. onLoad() {
  115. // 异步更新数据
  116. // setTimeout 仅做示例,真实场景中一般为 ajax 请求
  117. setTimeout(() => {
  118. for (let i = 0; i < 5; i++) {
  119. this.list.push(this.list.length + 1)
  120. }
  121. // 加载状态结束
  122. this.loading = false
  123. // 数据全部加载完成
  124. if (this.list.length >= 40) {
  125. this.finished = true
  126. }
  127. }, 1000)
  128. },
  129. },
  130. }
  131. </script>
  132. <style lang='less' scoped>
  133. .update-record {
  134. width: 100%;
  135. height: 100%;
  136. // background-color: lightblue;
  137. // 下拉菜单
  138. /deep/.van-dropdown-menu__item {
  139. justify-content: flex-start !important;
  140. padding-left: 8px;
  141. }
  142. // 主体内容
  143. .record {
  144. width: 100%;
  145. height: calc(100% - 95px);
  146. padding: 15px;
  147. background-color: #f5f6f7;
  148. overflow: auto;
  149. .record-list {
  150. width: 100%;
  151. height: 100%;
  152. }
  153. .info {
  154. width: 100%;
  155. height: auto;
  156. display: flex;
  157. .left {
  158. width: 8px;
  159. height: auto;
  160. display: flex;
  161. flex-direction: column;
  162. .dot {
  163. margin-top: 6px;
  164. width: 8px;
  165. height: 8px;
  166. background-color: #025baa;
  167. border-radius: 50%;
  168. }
  169. .line {
  170. margin: 0 auto;
  171. width: 2px;
  172. flex: 1;
  173. margin-top: 6px;
  174. background: #dcdcdc;
  175. // background-color: red;
  176. }
  177. }
  178. .right {
  179. flex: 1;
  180. padding-left: 10px;
  181. padding-bottom: 30px;
  182. .title {
  183. width: 100%;
  184. height: 20px;
  185. font-size: 14px;
  186. font-weight: 400;
  187. color: #666666;
  188. .type {
  189. margin-left: 15px;
  190. }
  191. }
  192. .content {
  193. width: 100%;
  194. height: 95px;
  195. margin-top: 8px;
  196. font-size: 14px;
  197. font-weight: 400;
  198. color: #333333;
  199. line-height: 25px;
  200. background-color: #fff;
  201. padding: 12px 10px;
  202. .type {
  203. font-weight: 500;
  204. color: #333333;
  205. }
  206. }
  207. }
  208. }
  209. }
  210. }
  211. </style>