pipe.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. <template>
  2. <div>
  3. <el-row>
  4. <el-col :span="12">
  5. <el-row>
  6. <el-col class="btn-top" :span="24">
  7. <el-button type="primary" @click="saveData">确定范围</el-button>
  8. <el-button @click="clearData">清空</el-button>
  9. </el-col>
  10. </el-row>
  11. <el-collapse v-model="activeName" accordion>
  12. <el-collapse-item
  13. v-for="(item, key) in pipeList"
  14. :key="key"
  15. :title="item.name"
  16. :name="key + 1"
  17. >
  18. <div style="float: right">
  19. <el-button
  20. icon="el-icon-plus"
  21. @click="openaddPipe(item)"
  22. size="mini"
  23. >添加</el-button
  24. >
  25. </div>
  26. <el-table :data="item.tableData" stripe style="width: 100%">
  27. <el-table-column
  28. v-for="(headitem, key) in tableHead"
  29. :key="key"
  30. :prop="headitem.name"
  31. :label="headitem.label"
  32. :width="headitem.width"
  33. >
  34. <template slot-scope="scope">
  35. <div v-if="scope.row[headitem.name] == 'name'">
  36. {{ scope.row[headitem.name] }}
  37. </div>
  38. <div v-else>
  39. <el-checkbox :value="scope.row[headitem.name] == '1'?true:false"></el-checkbox>
  40. </div>
  41. </template>
  42. </el-table-column>
  43. <el-table-column label="操作">
  44. <template slot-scope="scope">
  45. <i
  46. class="el-icon-delete"
  47. @click="handleEdit(scope.$index, scope.row)"
  48. ></i>
  49. </template>
  50. </el-table-column>
  51. </el-table>
  52. <!-- <div class="table-type">
  53. <span>精细化机房</span>
  54. <el-checkbox v-model="checked"></el-checkbox>
  55. </div> -->
  56. </el-collapse-item>
  57. </el-collapse>
  58. </el-col>
  59. </el-row>
  60. <el-dialog
  61. title="新增管道"
  62. :visible.sync="dialogVisible"
  63. width="40%"
  64. :before-close="handleClose"
  65. >
  66. <div>
  67. <div>
  68. <el-cascader
  69. :options="pipeTypeList"
  70. v-model="addpipeValue"
  71. :props="{
  72. value: 'code',
  73. label: 'name',
  74. children: 'children',
  75. }"
  76. clearable
  77. ></el-cascader>
  78. </div>
  79. <span slot="footer" class="dialog-footer">
  80. <el-button @click="handleClose">取 消</el-button>
  81. <el-button type="primary" @click="addPipe">确 定</el-button>
  82. </span>
  83. </div>
  84. </el-dialog>
  85. </div>
  86. </template>
  87. <script>
  88. import {
  89. major_mr,
  90. major_sys,
  91. dict_pipe,
  92. set_sys_diagram,
  93. get_sys_diagram,
  94. } from "@/api/workScope.js";
  95. export default {
  96. data() {
  97. return {
  98. activeName: "1",
  99. pipeList: [],
  100. pipeTypeList: [], // 所有设备类型
  101. addpipeValue: [], // 新增管道类型
  102. tableHead: [
  103. {
  104. label: "管道类型名",
  105. name: "name",
  106. width: "180",
  107. },
  108. {
  109. label: "仅干管",
  110. name: "main",
  111. width: "180",
  112. },
  113. {
  114. label: "含支路管道",
  115. name: "branch",
  116. width: "180",
  117. },
  118. {
  119. label: "其他",
  120. name: "anthor",
  121. width: "180",
  122. },
  123. ],
  124. defaultProps: {
  125. children: "children",
  126. label: "name",
  127. },
  128. // 机房list
  129. checked: false,
  130. value: "",
  131. dialogVisible: false, // 弹窗显示
  132. currentItem: null, // 当前选中的系统管道
  133. };
  134. },
  135. methods: {
  136. // 更改勾选内容
  137. changePipe(node, choiceKey, v) {},
  138. // 删除管道
  139. handleEdit() {},
  140. // 添加管道
  141. openaddPipe(item) {
  142. const data = {};
  143. this.currentItem = null;
  144. dict_pipe(data).then((res) => {
  145. if (res.rtn && res.rtn.length) {
  146. this.pipeTypeList = res.rtn;
  147. }
  148. this.dialogVisible = true;
  149. this.currentItem = item;
  150. });
  151. },
  152. addPipe() {
  153. this.currentItem.tableData.push({
  154. name: 123,
  155. code: this.addpipeValue[1],
  156. main: 0,
  157. branch: 0,
  158. anthor: 0,
  159. });
  160. this.addpipeValue = [];
  161. this.dialogVisible = false;
  162. },
  163. // 关闭弹窗
  164. handleClose() {
  165. this.dialogVisible = false;
  166. },
  167. // 保存数据
  168. saveData() {
  169. let data = {
  170. type: "device",
  171. target: "action",
  172. codes: this.choiceCheckList,
  173. };
  174. set_scope(data).then(() => {
  175. this.readData();
  176. });
  177. },
  178. //清空
  179. clearData() {
  180. this.$confirm("是否继续?", "提示", {
  181. confirmButtonText: "确定",
  182. cancelButtonText: "取消",
  183. type: "warning",
  184. })
  185. .then(() => {
  186. this.choiceCheckList = [];
  187. this.$refs.tree.setCheckedKeys([]);
  188. this.saveData();
  189. this.$message({
  190. type: "success",
  191. message: "删除成功!",
  192. });
  193. })
  194. .catch(() => {
  195. this.$message({
  196. type: "info",
  197. message: "已取消删除",
  198. });
  199. });
  200. },
  201. majorSys() {
  202. const data = { scopeFilter: true, target: "rtn" };
  203. major_sys(data).then((res) => {
  204. let arr = [];
  205. res.rtn.forEach((item) => {
  206. item.children && item.children.length > 0
  207. ? (arr = [...arr, ...item.children])
  208. : arr;
  209. });
  210. arr.map((item) => {
  211. return Object.assign(item, {
  212. tableData: [],
  213. });
  214. });
  215. // 读取所有系统下的管道
  216. this.pipeList = arr;
  217. });
  218. },
  219. },
  220. created() {
  221. this.majorSys();
  222. },
  223. mounted() {},
  224. };
  225. </script>
  226. <style lang="less" scoped>
  227. .checkList {
  228. display: block;
  229. }
  230. .btn-top {
  231. margin-bottom: 12px;
  232. display: flex;
  233. justify-content: flex-end;
  234. }
  235. .table-type {
  236. margin-top: 12px;
  237. display: flex;
  238. span {
  239. margin-right: 12px;
  240. }
  241. }
  242. .dialog-footer {
  243. margin-top: 12px;
  244. display: flex;
  245. justify-content: flex-end;
  246. }
  247. </style>