equipTable.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  1. <template>
  2. <div>
  3. <el-tabs v-model="activeRelation" @tab-click="changeTabs">
  4. <el-tab-pane v-for=" item in relationList" :label="item.name" :name="item.code">
  5. <el-table
  6. :data="tableData"
  7. height="300"
  8. :stripe="true"
  9. border
  10. size="small"
  11. v-loading="isLoading"
  12. style="width: 100%"
  13. >
  14. <el-table-column width="180" label="设备名称">
  15. <template slot-scope="scope">
  16. <span style="margin-left: 10px">
  17. <el-tooltip :content="scope.row.infos.EquipName" placement="top">
  18. <span>{{scope.row.infos.EquipLocalName || scope.row.infos.EquipName | cutString(15)}}</span>
  19. </el-tooltip>
  20. </span>
  21. </template>
  22. </el-table-column>
  23. <el-table-column width="160" label="设备类">
  24. <template slot-scope="scope">
  25. <span style="margin-left: 10px">
  26. <span>{{getName(scope.row.category)}}</span>
  27. </span>
  28. </template>
  29. </el-table-column>
  30. <el-table-column label="操作">
  31. <template slot-scope="scope">
  32. <el-button type="info" size="mini" @click="lockDetails(scope.row)">详情</el-button>
  33. <el-button
  34. v-if="scope.row.inSpace"
  35. type="danger"
  36. size="mini"
  37. @click="deleteSpace(scope.row)"
  38. >从空间移除</el-button>
  39. </template>
  40. </el-table-column>
  41. </el-table>
  42. <my-pagination :page="page" @change="pageChange"></my-pagination>
  43. </el-tab-pane>
  44. </el-tabs>
  45. <el-dialog width="40%" title="设备详情" :visible.sync="innerVisible" append-to-body>
  46. <iframe height="400px" width="100%" :src="iframeSrc"></iframe>
  47. </el-dialog>
  48. </div>
  49. </template>
  50. <script>
  51. import myPagination from "@/components/lib/myPagination.vue";
  52. import {
  53. getSpaceEquip,
  54. getEqCode,
  55. deleteRelation,
  56. getGraphyId,
  57. getSysToEq
  58. } from "@/api/request";
  59. export default {
  60. name: "equip-table",
  61. components: {
  62. myPagination
  63. },
  64. props: {
  65. param: {
  66. type: Object
  67. },
  68. activeTabType: {
  69. type: Object,
  70. default: function () {
  71. return {
  72. "code": "GeneralZone",
  73. "name": "默认分区",
  74. "rel_type": "99"
  75. }
  76. }
  77. }
  78. },
  79. data() {
  80. return {
  81. page: {
  82. size: 50,
  83. sizes: [10, 30, 50, 100, 150, 200],
  84. total: 0,
  85. currentPage: 1
  86. },
  87. tableData: [],
  88. data: {},
  89. EqCode: [],
  90. innerVisible: false,
  91. iframeSrc: "",
  92. title: "",
  93. perjectId: this.$route.query.projId,
  94. secret: this.$route.query.secret,
  95. graphyId: "",
  96. isLoading: false,
  97. relationList: [
  98. {
  99. name: "空间内的设备",
  100. code: "EquipinSpace"
  101. }, {
  102. name: "服务于空间的设备",
  103. code: "EquipforSpace"
  104. }, {
  105. name: "其他关系的设备",
  106. code: "EquipXSpace"
  107. }
  108. ],
  109. activeRelation: "EquipinSpace",
  110. relationType: {
  111. "code": "GeneralZone",
  112. "name": "默认分区",
  113. "rel_type": "99"
  114. },
  115. relType: 0
  116. };
  117. },
  118. created() {
  119. this.getEqCode();
  120. },
  121. methods: {
  122. changeTabs() {
  123. let param = {
  124. data: {
  125. limit: {
  126. // 可选
  127. skip: this.page.size * (this.page.currentPage - 1), // 跳过多少数据
  128. count: this.page.size // 查询跳过300条数据之后的50条 (默认按照创建时间从大-->小排序)
  129. },
  130. criteria: {
  131. space: this.data.id, // 必填, 指定业务空间id
  132. type: ["Eq"] // 必填, 查询类型, 允许四位编码的详细设备类
  133. }
  134. },
  135. ProjId: this.$route.query.projId, //项目id
  136. secret: this.$route.query.secret
  137. };
  138. this.isLoading = true
  139. if (this.relationType.rel_type == 99 && this.activeRelation == "EquipinSpace") {
  140. this.dataChange(param);
  141. } else {
  142. this.getRlations()
  143. }
  144. },
  145. getEqCode() {
  146. getEqCode()
  147. .then(res => {
  148. if (res.data.Result == "success") {
  149. this.EqCode = res.data.Content;
  150. } else {
  151. this.$message.error(res.data.ResultMsg);
  152. }
  153. })
  154. .catch(() => {
  155. this.$message.error("请求失败");
  156. });
  157. },
  158. getGraphyId(row) {
  159. let param = {
  160. type: this.activeRelation,
  161. ProjId: this.$route.query.projId, //项目id
  162. secret: this.$route.query.secret
  163. };
  164. getGraphyId(param)
  165. .then(res => {
  166. if (res.data.Result == "success") {
  167. this.graphyId = res.data.graph_id;
  168. this.deleteOwn(row)
  169. } else {
  170. this.$message.error(res.data.ResultMsg);
  171. }
  172. })
  173. .catch(() => {
  174. this.$message.error("请求错误");
  175. });
  176. },
  177. getRlations() {
  178. this.isLoading = true
  179. this.relType = 0
  180. if (this.relationType.rel_type == 99) {
  181. this.relType = "1"
  182. } else {
  183. if (this.relationType.rel_type > 9) {
  184. this.relType = (this.relationType.rel_type * 100).toString()
  185. } else {
  186. this.relType = '0' + (this.relationType.rel_type * 100)
  187. }
  188. }
  189. let param = {
  190. data: {
  191. "limit": { // 可选
  192. skip: this.page.size * (this.page.currentPage - 1), // 跳过多少数据
  193. count: this.page.size // 查询跳过300条数据之后的50条 (默认按照创建时间从大-->小排序)
  194. },
  195. criteria: {
  196. graphType: this.activeRelation,
  197. relType: this.relType,
  198. toId: this.data.id,
  199. fromId: this.data.fromId,
  200. type: ["Eq"]
  201. }
  202. },
  203. ProjId: this.$route.query.projId, //项目id
  204. secret: this.$route.query.secret
  205. }
  206. getSysToEq(param, res => {
  207. this.tableData = res.Content.map(item => {
  208. item.inSpace = true
  209. return item
  210. })
  211. this.page.total = res.TotalCount;
  212. this.isLoading = false
  213. })
  214. },
  215. deleteOwn(row) {
  216. let param = {
  217. data: {
  218. criterias: [
  219. {
  220. from_id: row.id, //选填
  221. to_id: this.data.id, //选填
  222. graph_id: this.graphyId, //选填
  223. rel_type: this.relType
  224. }
  225. ]
  226. },
  227. ProjId: this.$route.query.projId, //项目id
  228. secret: this.$route.query.secret
  229. };
  230. this.$confirm("正在删除设备关系, 是否继续?", "删除", {
  231. confirmButtonText: "确定",
  232. cancelButtonText: "取消",
  233. type: "warning"
  234. })
  235. .then(() => {
  236. deleteRelation(param)
  237. .then(res => {
  238. if (res.data.Result == "success") {
  239. this.$message.success("删除成功");
  240. this.change();
  241. } else {
  242. this.$message.error(res.data.ResultMsg);
  243. }
  244. })
  245. .catch(() => {
  246. this.$message.error("请求出错");
  247. });
  248. })
  249. .catch(() => {
  250. this.$message("取消删除");
  251. });
  252. },
  253. getName(code) {
  254. let text = "",
  255. myClass = code.substring(0, 2),
  256. system = code.substring(2, 4),
  257. last = code.substring(2, 6);
  258. if (this.EqCode && this.EqCode.length) {
  259. this.EqCode.map(item => {
  260. if (item.code == myClass) {
  261. item.content.map(i => {
  262. if (i.code == system) {
  263. i.content.map(e => {
  264. if ((e.code == last)) {
  265. text = e.facility;
  266. }
  267. });
  268. }
  269. });
  270. }
  271. });
  272. }
  273. return text;
  274. },
  275. /**
  276. * 删除
  277. * @param row 点击的当条数据
  278. */
  279. deleteSpace(row) {
  280. this.getGraphyId(row)
  281. },
  282. /**
  283. * 获取数据
  284. * @param data 由上级页面传入,初始化table表格
  285. */
  286. getData(data, type) {
  287. this.activeRelation = "EquipinSpace"
  288. this.relationType = type
  289. this.page = {
  290. size: 50,
  291. sizes: [10, 30, 50, 100, 150, 200],
  292. total: 0,
  293. currentPage: 1
  294. };
  295. this.data = data;
  296. this.change();
  297. },
  298. change() {
  299. let param = {
  300. data: {
  301. limit: {
  302. // 可选
  303. skip: this.page.size * (this.page.currentPage - 1), // 跳过多少数据
  304. count: this.page.size // 查询跳过300条数据之后的50条 (默认按照创建时间从大-->小排序)
  305. },
  306. criteria: {
  307. space: this.data.id, // 必填, 指定业务空间id
  308. type: ["Eq"] // 必填, 查询类型, 允许四位编码的详细设备类
  309. }
  310. },
  311. ProjId: this.$route.query.projId, //项目id
  312. secret: this.$route.query.secret
  313. };
  314. this.isLoading = true
  315. if (this.relationType.rel_type == 99) {
  316. this.dataChange(param);
  317. } else {
  318. this.getRlations()
  319. }
  320. },
  321. dataChange(param) {
  322. getSpaceEquip(param)
  323. .then(res => {
  324. if (res.data.Result == "success") {
  325. this.page.total = res.data.TotalCount;
  326. this.tableData = res.data.Content;
  327. this.isLoading = false
  328. } else {
  329. this.$message.error(res.data.ResultMsg);
  330. }
  331. })
  332. .catch(() => this.$message.error("请求失败"));
  333. },
  334. /**
  335. * 查看详情
  336. * @param row 点击的当条数据
  337. */
  338. lockDetails(row) {
  339. this.innerVisible = true;
  340. this.iframeSrc = this.iframeSrc =
  341. // "http://172.16.0.181:8889/#/details?perjectId=" +
  342. process.env.BASE_URL + ":8889/#/details?perjectId=" +
  343. this.perjectId +
  344. "&secret=" +
  345. this.secret +
  346. "&FmId=" +
  347. row.id +
  348. "&type=0&code=" +
  349. row.category.substring(2, 6);
  350. },
  351. pageChange() {
  352. this.change();
  353. }
  354. },
  355. filters: {
  356. cutString: function (str, len) {
  357. //length属性读出来的汉字长度为1
  358. if (!!str && typeof str == "string" && str.length > len) {
  359. return str.substring(0, len) + "...";
  360. } else {
  361. return str || "--";
  362. }
  363. }
  364. }
  365. };
  366. </script>
  367. <style>
  368. .el-table tr th {
  369. background: #fafafa !important;
  370. }
  371. </style>