addDevice.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510
  1. <template>
  2. <div>
  3. <div class="hanson-bar">
  4. <span>当前选择的设备类型:{{deviceType.facility}}</span>
  5. <el-button size="small" @click="undo" icon="iconfont icon-undo">撤销</el-button>
  6. <el-button size="small" @click="reset" icon="iconfont icon-shuaxin">刷新</el-button>
  7. </div>
  8. <qrcode :dialog="dialog" :addBody="true" ref="qrcode"></qrcode>
  9. <firm :dialog="dialog"></firm>
  10. <supply-dialog :dialog="dialog"></supply-dialog>
  11. <supplier-dialog :dialog="dialog"></supplier-dialog>
  12. <guarantee-dialog :dialog="dialog"></guarantee-dialog>
  13. <upload-files-dialog :dialog="dialog"></upload-files-dialog>
  14. <div v-show="main && main.length" id="myHandson" ref="myHandson"></div>
  15. </div>
  16. </template>
  17. <script>
  18. import { getSpaceHeader } from "@/api/scan/request";
  19. import tools from "@/utils/scan/tools";
  20. import qrcode from "@/components/business_space/lib/qrcode";
  21. import firm from "@/components/business_space/dialogs/list/firm";
  22. import supplyDialog from "@/components/business_space/dialogs/list/supplyDialog";
  23. import supplierDialog from "@/components/business_space/dialogs/list/supplierDialog";
  24. import guaranteeDialog from "@/components/business_space/dialogs/list/guaranteeDialog";
  25. import uploadFilesDialog from "@/components/business_space/dialogs/list/filesDialog";
  26. import Handsontable from "handsontable-pro"
  27. import 'handsontable-pro/dist/handsontable.full.css'
  28. import zhCN from 'handsontable-pro/languages/zh-CN';
  29. import {
  30. mapGetters,
  31. mapActions
  32. } from "vuex";
  33. export default {
  34. props: {
  35. deviceType: {
  36. type: Object
  37. }
  38. },
  39. components: {
  40. qrcode, //二维码页面
  41. firm, //
  42. supplyDialog,
  43. supplierDialog,
  44. guaranteeDialog,
  45. uploadFilesDialog,
  46. },
  47. computed: {
  48. ...mapGetters("layout", [
  49. "projectId",
  50. "secret",
  51. "userId"
  52. ])
  53. },
  54. data() {
  55. let table = function (num) {
  56. let main = []
  57. for (let i = 0; i < num; i++) {
  58. main.push({})
  59. }
  60. return main
  61. }
  62. return {
  63. main: table(20),
  64. mess: {},
  65. headers: null,
  66. page: {
  67. size: 50,
  68. sizes: [10, 30, 50, 100, 150, 200],
  69. total: 400,
  70. currentPage: 1
  71. },
  72. dialog: {
  73. qrcode: false, //二维码弹窗
  74. firm: false, //厂商弹窗
  75. supply: false, //选择供应合同
  76. supplier: false, //供应商选择
  77. guarantee: false //选择保单
  78. }
  79. };
  80. },
  81. created() {
  82. },
  83. mounted() { },
  84. methods: {
  85. //获取header的mess
  86. getHeader(mess) {
  87. this.mess = mess;
  88. console.log(this.mess);
  89. },
  90. //获取主体内容
  91. getMain(floorMess) {
  92. console.log(floorMess);
  93. },
  94. //获取表头
  95. getData() {
  96. getSpaceHeader({
  97. code: this.deviceType.code,
  98. ProjId: this.projectId
  99. }).then(res => {
  100. this.headers = res.data.Content;
  101. if (!!this.hot) {
  102. this.hot.destroy();
  103. this.hot = null;
  104. }
  105. this.initHot();
  106. });
  107. },
  108. //撤回
  109. undo() {
  110. this.hot.undo();
  111. },
  112. //刷新
  113. reset() {
  114. this.getData();
  115. },
  116. //添加设备
  117. addDevice() {
  118. console.log("addDevice")
  119. },
  120. /**
  121. * 表头文案处理函数
  122. * @param arr header数组数据
  123. *
  124. * @return 处理好的文案
  125. */
  126. delHeader(arr) {
  127. let data = arr.map(item => {
  128. if (
  129. item.InputMode == "A1" ||
  130. item.InputMode == "A2" ||
  131. item.InputMode == "B1" ||
  132. item.InputMode == "C5" ||
  133. item.InputMode == "D1" ||
  134. item.InputMode == "D2" ||
  135. item.InputMode == "X" ||
  136. item.InputMode == "L" ||
  137. item.InputMode == "L1" ||
  138. item.InputMode == "L2" ||
  139. item.InputMode == "F1" ||
  140. item.InputMode == "F2"
  141. ) {
  142. if (item.unit == "") {
  143. return item.InfoPointName;
  144. } else {
  145. return item.InfoPointName + "(" + item.unit + ")";
  146. }
  147. } else {
  148. return undefined;
  149. }
  150. });
  151. data = data.filter(item => item);
  152. data.unshift("同时创建资产", "所属建筑楼层", "所属系统实例");
  153. return data;
  154. },
  155. /**
  156. * 表头数据处理函数
  157. * @param arr header数组数据
  158. *
  159. * @return 处理好的数据格式
  160. */
  161. getType(arr) {
  162. let data = arr.map(item => {
  163. //二维码
  164. if (item.infoPointCode == "EquipQRCode") {
  165. return {
  166. data: "infos." + item.infoPointCode,
  167. renderer: tools.lookDetails,
  168. readOnly: true
  169. }
  170. }
  171. //厂商选择
  172. if (item.infoPointCode == "Brand" || item.infoPointCode == "Specification") {
  173. return {
  174. data: "infos." + item.infoPointCode,
  175. renderer: tools.lookDetails,
  176. readOnly: true
  177. }
  178. }
  179. if (item.infoPointCode == "SupplierContractID") {
  180. return {
  181. data: "infos." + item.infoPointCode,
  182. renderer: tools.lookDetails,
  183. readOnly: true
  184. }
  185. }
  186. if (item.infoPointCode == "InsuranceNum") {
  187. //选择保单
  188. return {
  189. data: "infos." + item.infoPointCode,
  190. renderer: tools.lookDetails,
  191. readOnly: true
  192. }
  193. }
  194. if (item.infoPointCode == "InsuranceFile" || item.infoPointCode == "Archive") {
  195. return {
  196. data: "infos." + item.infoPointCode,
  197. renderer: tools.lookDetails,
  198. readOnly: true
  199. }
  200. }
  201. if (
  202. item.infoPointCode == "InstallLocation" ||
  203. item.infoPointCode == "InstallPic" ||
  204. item.infoPointCode == "InstallDrawing" ||
  205. item.infoPointCode == "Nameplate" ||
  206. item.infoPointCode == "Pic" ||
  207. item.infoPointCode == "Drawing"
  208. ) {
  209. return {
  210. data: "infos." + item.infoPointCode,
  211. renderer: tools.lookDetails,
  212. readOnly: true
  213. }
  214. }
  215. if (
  216. item.infoPointCode == "Maintainer" ||
  217. item.infoPointCode == "Supplier" ||
  218. item.infoPointCode == "Insurer" ||
  219. item.infoPointCode == "InsurerContactor"
  220. ) {
  221. return {
  222. data: "infos." + item.infoPointCode,
  223. renderer: tools.lookDetails,
  224. readOnly: true
  225. }
  226. }
  227. if (item.InputMode == "D1") {
  228. return {
  229. data: "infos." + item.infoPointCode,
  230. renderer: tools.customDropdownRenderer,
  231. editor: "chosen",
  232. chosenOptions: {
  233. // multiple: true,//多选
  234. data: item.DataSource.Content || ""
  235. }
  236. };
  237. } else if (item.InputMode == "A1" || item.InputMode == "A2") {
  238. return {
  239. data: "infos." + item.infoPointCode,
  240. type: "numeric",
  241. numericFormat: {
  242. pattern: "0,0.00"
  243. // culture: 'de-DE' // use this for EUR (German),
  244. // more cultures available on http://numbrojs.com/languages.html
  245. }
  246. };
  247. } else if (item.InputMode == "C5") {
  248. return {
  249. data: "infos." + item.infoPointCode,
  250. type: "date",
  251. dateFormat: "YYYY-MM-DD",
  252. correctFormat: true
  253. };
  254. } else if (
  255. item.InputMode == "B1" ||
  256. item.InputMode == "L" ||
  257. item.InputMode == "L1" ||
  258. item.InputMode == "L2"
  259. ) {
  260. return {
  261. data: "infos." + item.infoPointCode
  262. };
  263. } else if (
  264. item.InputMode == "X" ||
  265. item.InputMode == "F2"
  266. // item.InputMode == "L1" ||
  267. // item.InputMode == "L2"
  268. ) {
  269. return {
  270. data: "infos." + item.infoPointCode,
  271. readOnly: true
  272. };
  273. } else if (item.InputMode == "D2") {
  274. return {
  275. data: "infos." + item.infoPointCode,
  276. renderer: tools.customDropdownRenderer,
  277. editor: "chosen",
  278. chosenOptions: {
  279. multiple: true, //多选
  280. data: item.DataSource.Content || ""
  281. }
  282. };
  283. } else {
  284. return undefined;
  285. }
  286. });
  287. data.unshift(
  288. {
  289. type: "checkbox",
  290. checkedTemplate: 1,
  291. uncheckedTemplate: 0,
  292. data: "Checked",
  293. label: {
  294. position: "after",
  295. }
  296. },
  297. {
  298. data: "flowBuild",
  299. renderer: tools.customDropdownRenderer,
  300. editor: "chosen",
  301. chosenOptions: {
  302. // multiple: true,//多选
  303. // data: item.DataSource.Content || ""
  304. }
  305. },
  306. {
  307. data: "system",
  308. renderer: tools.customDropdownRenderer,
  309. editor: "chosen",
  310. chosenOptions: {
  311. // multiple: true,//多选
  312. // data: item.DataSource.Content || ""
  313. }
  314. }
  315. );
  316. data = data.filter(item => item);
  317. return data;
  318. },
  319. //初始化插件
  320. initHot() {
  321. var container = document.getElementById("myHandson");
  322. let winHeight = document.documentElement.clientHeight;
  323. this.hot = new Handsontable(container, {
  324. data: this.main,
  325. colHeaders: this.delHeader(this.headers), //表头文案
  326. columns: this.getType(this.headers), //数据显示格式
  327. filters: true,
  328. height: winHeight - 100 - 50 - 60,
  329. columnSorting: true, //添加排序
  330. sortIndicator: true, //添加排序
  331. renderAllRows: true,
  332. autoColumnSize: true,
  333. language: "zh-CN",
  334. manualColumnResize: true,
  335. manualColumnMove: true,
  336. dropdownMenu: [
  337. "filter_by_condition",
  338. "filter_by_value",
  339. "filter_action_bar"
  340. ],
  341. contextMenu: {
  342. items: {
  343. remove_row: {
  344. name: "删除该业务空间"
  345. }
  346. }
  347. },
  348. // 事件
  349. afterChange: this.tdChange, //修改后
  350. afterFilter: this.trimmedRows, //排序前
  351. beforeRemoveRow: this.romoveFm, //右键删除
  352. afterOnCellMouseDown: this.eventClick //鼠标点击
  353. });
  354. let pro = document.getElementById("hot-display-license-info");
  355. if (!!pro) {
  356. pro.parentNode.removeChild(pro);
  357. }
  358. this.isLoading = false;
  359. },
  360. //表格中的点击
  361. eventClick(el, rowArr) {
  362. let filter = this.filtersArr;
  363. //被筛选过后的数组
  364. let trimmedArr = this.trimmedRows();
  365. //是否启用了排序
  366. let isSort = this.hot.getPlugin("columnSorting").isSorted();
  367. if (trimmedArr.length && isSort) {
  368. let sortArr = this.myHotArr.getPlugin("columnSorting").rowsMapper
  369. .__arrayMap;
  370. let infos = this.main[trimmedArr[sortArr[rowArr.row]]];
  371. this.getInfors(infos, rowArr);
  372. } else if (isSort) {
  373. //排序后的数组
  374. let sortArr = this.hot.getPlugin("columnSorting").rowsMapper.__arrayMap;
  375. let infos = this.main[sortArr[rowArr.row]];
  376. this.getInfors(infos, rowArr);
  377. } else if (trimmedArr.length) {
  378. let infos = this.main[trimmedArr[rowArr.row]];
  379. this.getInfors(infos, rowArr);
  380. } else {
  381. let infos = this.main[rowArr.row];
  382. this.getInfors(infos, rowArr);
  383. }
  384. },
  385. getInfors(infos, row) {
  386. //点击的是表头
  387. if (row.row < 0) {
  388. return;
  389. }
  390. //其他的开始判断
  391. let val = this.hot.colToProp(row.col);
  392. if (val == "infos.EquipQRCode") {
  393. this.dialog.qrcode = true;
  394. this.$refs.qrcode.getCanvas(1111);
  395. }
  396. if (val == "infos.Brand" || val == "infos.Specification") {
  397. this.dialog.firm = true;
  398. }
  399. if (val == "infos.SupplierContractID") {
  400. this.dialog.supply = true;
  401. }
  402. if (val == "infos.InsuranceNum") {
  403. //选择保单
  404. this.dialog.guarantee = true;
  405. }
  406. if (val == "infos.InsuranceFile" || val == "infos.Archive") {
  407. alert("上传文件");
  408. }
  409. if (
  410. val == "infos.InstallLocation" ||
  411. val == "infos.InstallPic" ||
  412. val == "infos.InstallDrawing" ||
  413. val == "infos.Nameplate" ||
  414. val == "infos.Pic" ||
  415. val == "infos.Drawing"
  416. ) {
  417. alert("上传图片");
  418. }
  419. if (
  420. val == "infos.Maintainer" ||
  421. val == "infos.Supplier" ||
  422. val == "infos.Insurer" ||
  423. val == "infos.InsurerContactor"
  424. ) {
  425. this.dialog.supplier = true;
  426. }
  427. console.log(val);
  428. },
  429. //获取被筛选掉的行号
  430. trimmedRows() {
  431. // var plugin = hot.getPlugin('trimRows').trimmedRows;//获取被筛选掉的行号
  432. var plugin = this.hot.getPlugin("trimRows").trimmedRows;
  433. let dataLength = this.main.length;
  434. let dataArr = new Array();
  435. for (let i = 0; i < dataLength; i++) {
  436. dataArr.push(i);
  437. }
  438. if (plugin.length <= 0) {
  439. dataArr = undefined;
  440. } else {
  441. dataArr = this.array_diff(dataArr, plugin);
  442. }
  443. return dataArr || [];
  444. // var DataArray = new Array();
  445. // for (var i = 0; i < plugin.length; i++) {
  446. // // 通过行号获取数据
  447. // DataArray.push(this.hot.getSourceDataAtRow(plugin[i]));
  448. // }
  449. },
  450. //判断是否为空行
  451. isEmptyRow(instance, row) {
  452. var rowData = instance.countRows();
  453. for (var i = 0, ilen = rowData.length; i < ilen; i++) {
  454. if (rowData[i] !== null) {
  455. return false;
  456. }
  457. }
  458. return true;
  459. }
  460. },
  461. watch: {
  462. deviceType: {
  463. handler(newName, oldName) {
  464. this.getData()
  465. },
  466. immediate: true
  467. }
  468. }
  469. };
  470. </script>
  471. <style lang="less">
  472. .hanson-bar {
  473. height: 40px;
  474. padding: 5px;
  475. font-size: 14px;
  476. overflow: hidden;
  477. margin-top: 10px;
  478. .iconfont {
  479. font-size: 12px;
  480. }
  481. .el-button {
  482. // margin-right: 10px;
  483. }
  484. }
  485. </style>