mainWbTable.vue 9.0 KB

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