mainWbTable.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. <template>
  2. <!-- 记录事项 -->
  3. <div class="detail-dialog">
  4. <!-- <el-dialog :title='`${major}${tabName}记录事项`' width='80%' :visible.sync='visible' style='height:900px;overflow-y:scroll;'> -->
  5. <div class="bottom-table" style="height: 100%;">
  6. <el-table
  7. :data="tableData"
  8. :height="tableHeight"
  9. :border="true"
  10. style="width: 100%; margin-bottom: 12px;"
  11. :span-method="objectSpanMethod"
  12. v-if="tableData.length > 0"
  13. >
  14. <el-table-column label="位置" prop width="230" show-overflow-tooltip resizable>
  15. <template slot-scope="{ row }">{{ row.smswz || '--' }}</template>
  16. </el-table-column>
  17. <el-table-column label="设备" width="280" resizable>
  18. <template slot-scope="{ row }">{{ row.smsasset || '--' }}</template>
  19. </el-table-column>
  20. <el-table-column label="记录事项" show-overflow-tooltip resizable>
  21. <template slot-scope="{ row , $index }">
  22. <p class="p-style" v-for="(item, index) in row.children" :key="item.sn">
  23. <span v-if="item.lable==1">{{ index + 1 }}) {{ item.matter }}</span>
  24. </p>
  25. <p>
  26. <span
  27. class="morestyle"
  28. @click="changeOpensta($index)"
  29. v-if="row.showNewlist && row.close"
  30. >
  31. <i>更多</i>
  32. <i v-if="row.close" class="el-icon-caret-bottom"></i>
  33. </span>
  34. </p>
  35. <section>
  36. <p class="p-style" v-for="(item, index) in row.children" :key="item.sn">
  37. <span v-if="item.lable==2 && !row.close">{{ index + 1 }}) {{ item.matter }}</span>
  38. </p>
  39. </section>
  40. <p>
  41. <span
  42. class="morestyle"
  43. @click="changeOpensta($index)"
  44. v-if="row.showNewlist && !row.close"
  45. >
  46. <i>收起</i>
  47. <i class="el-icon-caret-top"></i>
  48. </span>
  49. </p>
  50. </template>
  51. </el-table-column>
  52. <el-table-column show-overflow-tooltip resizable>
  53. <template slot="header" slot-scope="scope">
  54. <p>维护结果</p>
  55. <p>(本年度内此工作出现次数/此工作涉及到的设备数量)</p>
  56. </template>
  57. <template slot-scope="{ row }">
  58. <p
  59. class="p-style"
  60. v-for="(item, index) in row.children"
  61. @click="goTabs(row,item)"
  62. :key="index"
  63. >
  64. <span class="lastp">
  65. <span
  66. v-if="item.lable==1"
  67. >{{ item.workNum?item.workNum:'-' }} / {{ item.equipmentNum?item.equipmentNum:'-'}}</span>
  68. <span
  69. v-if="item.lable==2 && !row.close"
  70. >{{ item.workNum?item.workNum:'-' }} / {{ item.equipmentNum?item.equipmentNum:'-'}}</span>
  71. </span>
  72. </p>
  73. </template>
  74. </el-table-column>
  75. </el-table>
  76. </div>
  77. </div>
  78. </template>
  79. <script>
  80. import { queryRecord } from "@/api/equipmentList.js";
  81. export default {
  82. props: {
  83. paramsdata: {
  84. type: Array,
  85. default: () => {
  86. return [];
  87. }
  88. },
  89. smsxt: {
  90. type: [Number, String],
  91. default: "1002"
  92. }
  93. },
  94. data() {
  95. return {
  96. visible: false,
  97. major: "",
  98. tabName: "",
  99. tableData: []
  100. };
  101. },
  102. computed: {
  103. newparamsdata() {
  104. return this.paramsdata.slice(1, this.paramsdata.length - 1).map(item => {
  105. return {
  106. system_code: this.smsxt,
  107. apply: item.param.apply,
  108. plazaId: this.$store.state.plazaId,
  109. wznw: item.param.wznw,
  110. difference: item.param.difference,
  111. tab_code: item.param.tab_code
  112. };
  113. });
  114. },
  115. tableHeight() {
  116. if (window.screen.height <= 768) {
  117. return 560;
  118. } else {
  119. return 800;
  120. }
  121. },
  122. height() {
  123. if (window.screen.height <= 768) {
  124. return 500;
  125. } else {
  126. return 600;
  127. }
  128. }
  129. },
  130. methods: {
  131. changeOpensta(v) {
  132. this.tableData[v].close = !this.tableData[v].close;
  133. },
  134. goTabs(val, val2) {
  135. this.$emit("change-table", {
  136. tab_code: val.tab_code,
  137. from_mainpage: true,
  138. smsasset: val.smsasset,
  139. marks: val2.matter
  140. });
  141. },
  142. async addGetRecordList() {
  143. const result1 = await this.getRecordList(this.newparamsdata[0]);
  144. if (this.newparamsdata.length > 1) {
  145. const result2 = await this.getRecordList(this.newparamsdata[1]);
  146. this.tableData = [...result1, ...result2];
  147. } else {
  148. this.tableData = [...result1];
  149. }
  150. // debugger
  151. this.tableData.forEach(item => {
  152. if (item.children && item.children.length > 0) {
  153. //判断是否有新增得数据,lable为2 显示更多按钮,全是1不显示
  154. if (
  155. item.children.some(k => {
  156. if (k.lable == 2) {
  157. return true;
  158. }
  159. })
  160. ) {
  161. item.showNewlist = true;
  162. this.$set(item, "close", true);
  163. }
  164. item.children.sort((a, b) => {
  165. return a.lable - b.lable;
  166. });
  167. }
  168. });
  169. },
  170. open({ system_code, wznw, apply, difference }) {
  171. this.visible = true;
  172. this.getRecordList({ system_code, wznw, apply, difference });
  173. },
  174. objectSpanMethod({ row, column, rowIndex, columnIndex }) {
  175. if (columnIndex === 0) {
  176. if (row.col0Count > 0) {
  177. return {
  178. rowspan: row.col0Count,
  179. colspan: 1
  180. };
  181. }
  182. return {
  183. rowspan: 0,
  184. colspan: 0
  185. };
  186. }
  187. },
  188. /**
  189. * @param { string } system_code 八大系统code
  190. * @param { string } wznw 区分各系统内外(如: 慧云机房内,慧云机房外)
  191. * @param { string } apply 事项类型, 含: 维修维保,专维及其
  192. */
  193. getRecordList(params) {
  194. const getParams = { ...params };
  195. // 处理给排水
  196. if (getParams.difference) {
  197. delete getParams.wznw; //不上传内外
  198. }
  199. if (getParams.wznw == "0" || getParams.wznw == "-1") {
  200. delete getParams.wznw; //不上传内外
  201. }
  202. return new Promise((resolve, reject) => {
  203. queryRecord({ getParams })
  204. .then(res => {
  205. const tableData = [];
  206. res.data.forEach(i => {
  207. i.children.forEach((j, index) => {
  208. tableData.push({
  209. tab_code: params.tab_code,
  210. tableType: getParams.wznw,
  211. smswz: i.smswz,
  212. smsasset: j.smsasset,
  213. col0Count: index === 0 ? i.children.length : 0,
  214. children: j.children
  215. });
  216. });
  217. });
  218. resolve(tableData);
  219. })
  220. .catch(err => {
  221. console.log(err);
  222. reject(err);
  223. });
  224. });
  225. }
  226. },
  227. mounted() {
  228. this.addGetRecordList();
  229. }
  230. };
  231. </script>
  232. <style lang="less" scoped>
  233. .morestyle {
  234. color: #025baa;
  235. margin-left: 10px;
  236. cursor: pointer;
  237. i {
  238. color: #025baa;
  239. }
  240. }
  241. .lastp {
  242. cursor: pointer;
  243. }
  244. </style>
  245. <style lang="less">
  246. .detail-dialog {
  247. .el-dialog__wrapper {
  248. // overflow: hidden !important;
  249. }
  250. .el-dialog__header {
  251. // background: #fff !important;
  252. // color: #909399 !important;
  253. }
  254. .el-dialog__title {
  255. color: #fff !important;
  256. }
  257. .el-dialog__close {
  258. // color: #909399 !important;
  259. }
  260. /deep/.el-dialog {
  261. margin-top: 7vh !important;
  262. padding-bottom: 5px;
  263. // overflow-y: scroll !important;
  264. }
  265. }
  266. </style>