device.vue 41 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315
  1. <template>
  2. <div style="height: 94%;">
  3. <div class="hanson-bar">
  4. <span
  5. style="width:20px;float:left;display:block;height:20px;cursor: pointer;"
  6. @click="changeAssetsFalg"
  7. >
  8. <i class="el-icon-fa el-icon-fa-compass"></i>
  9. </span>
  10. <span>当前筛选条件下共{{page.total || '--'}}设备</span>
  11. <div style="float:right;overflow:hidden;">
  12. <el-button size="small" style='width: 80px;' @click="download" icon="iconfont icon-xiazai">下载</el-button>
  13. <el-button size="small" style='width: 80px;' @click="addDevice" icon="iconfont icon-tianjia">添加设备</el-button>
  14. <el-button size="small" style='width: 80px;' @click="reset" icon="iconfont icon-shuaxin">刷新</el-button>
  15. <el-button size="small" style='width: 80px;' @click="undo" icon="iconfont icon-undo">撤销</el-button>
  16. </div>
  17. <div style="width:200px;color:gray;float:right;font-size:10px;">
  18. <span v-if="!onlyRead">隐藏自动填充的信息点:</span>
  19. <el-tooltip v-if="!onlyRead" :content="'' + (isWatch ? '隐藏' : '不隐藏')" placement="top">
  20. <el-switch
  21. @change="changeWatch"
  22. v-model="isWatch"
  23. active-color="#13ce66"
  24. inactive-color="gray"
  25. ></el-switch>
  26. </el-tooltip>
  27. <span v-if="onlyRead">只看要采集的信息:</span>
  28. <el-tooltip v-if="onlyRead" :content="'' + (allMess ? '部分' : '全集')" placement="top">
  29. <el-switch
  30. @change="changeWatch"
  31. v-model="allMess"
  32. active-color="#13ce66"
  33. inactive-color="gray"
  34. ></el-switch>
  35. </el-tooltip>
  36. </div>
  37. <div
  38. style="width:90px;cursor: pointer;color:gray;float:right; font-size:10px;"
  39. >
  40. <p v-if="onlyRead" @click="changeRead">
  41. <i class="iconfont icon-yulan"></i>
  42. <span>只读模式</span>
  43. </p>
  44. <p v-else @click="changeRead">
  45. <i class="iconfont icon-yulan"></i>
  46. <span>编辑模式</span>
  47. </p>
  48. </div>
  49. </div>
  50. <!-- 二维码弹窗 -->
  51. <qrcode :dialog="dialog" :qrcodeUrl="qrcodeUrl" :addBody="true" ref="qrcode"></qrcode>
  52. <!-- 型号弹窗 -->
  53. <firm :mess="{deviceId: deviceType.code}" ref="firm" @changeFirm="firmChange" :dialog="dialog"></firm>
  54. <!-- 供应商合同弹窗 -->
  55. <supply-dialog ref="supply" @change="supplyChange" :id="id" :dialog="dialog"></supply-dialog>
  56. <!-- 供应商弹窗 -->
  57. <supplier-dialog ref="supplier" @changeSupplier="supplierChange" :dialog="dialog"></supplier-dialog>
  58. <guarantee-dialog :id="id" ref="guarantee" @change="guaranteeChange" :dialog="dialog"></guarantee-dialog>
  59. <upload-files-dialog
  60. :read="onlyRead ? true : false"
  61. ref="upload"
  62. @changeFile="fileChange"
  63. :keysArr="filesArr"
  64. :dialog="dialog"
  65. ></upload-files-dialog>
  66. <upload-img-dialog
  67. :read="onlyRead ? true : false"
  68. @changeFile="imgChange"
  69. :keysArr="imgsArr"
  70. :dialog="dialog"
  71. ></upload-img-dialog>
  72. <maintainer-dialog @changeMaintainer="changeMaintainer" ref="maintainer" :dialog="dialog"></maintainer-dialog>
  73. <insurer-dialog @changeInsurer="changeInsurer" ref="insurer" :dialog="dialog"></insurer-dialog>
  74. <pic-dialog
  75. :read="onlyRead ? true : false"
  76. :dialog="dialog"
  77. :keysArr="picsArr"
  78. @change="changePics"
  79. ></pic-dialog>
  80. <div class="center middle_sty" style="height: 91%" v-show="!mess.deviceId && (!main || !main.length)">
  81. <i class="iconwushuju iconfont"></i>
  82. 请选择设备族
  83. </div>
  84. <div class="center middle_sty" style="height: 91%" v-show="mess.deviceId && (!main || !main.length)">
  85. <i class="iconwushuju iconfont"></i>
  86. 暂无数据
  87. </div>
  88. <system-type :infos="systemId" :graphyId="graphyId" :dialog="dialog"></system-type>
  89. <!-- <div
  90. v-show="!main || !main.length"
  91. style="width:100%;text-align:center;font-size:30px;color:gray;"
  92. >{{ mess.deviceId ? '请选择设备族' : '无设备'}}</div> -->
  93. <!-- <div
  94. v-show="!mess.deviceId && (!main || !main.length)"
  95. style="width:100%;text-align:center;font-size:30px;color:gray;"
  96. >请选择设备族</div> -->
  97. <div v-show="mess.deviceId && main && main.length" v-loading="loading" id="handsontable" ref="handsontable"></div>
  98. <div v-show="mess.deviceId && main && main.length" class="right">
  99. <my-pagination @change="getMain" :page="page"></my-pagination>
  100. </div>
  101. <dialog-assets
  102. @close="getClose"
  103. :graphyId="graphyId"
  104. :assetType="[this.mess.deviceId]"
  105. ref="assets"
  106. :dialog="dialog"
  107. ></dialog-assets>
  108. <details-dialog :iframeSrc="iframeSrc" v-if="dialog.details" :dialog="dialog"></details-dialog>
  109. <change-rea @close="reset" :dialog="dialog" :category="category"></change-rea>
  110. <look-pic :dialog="dialog" :keysArr="picsArr"></look-pic>
  111. </div>
  112. </template>
  113. <script>
  114. import { getTableHeader, getSpaceFloor, getEquipmentFamily, getBillEquipList, BeatchQueryParam, delBatchList, updateBusiness } from "@/api/scan/request";
  115. import tools from "@/utils/scan/tools";
  116. import handsonUtils from "@/utils/hasontableUtils"
  117. import showTools from "@/utils/handsontable/notShow"
  118. import text from "@/utils/handsontable/mainText"
  119. import qrcode from "@/components/ledger/lib/qrcode";
  120. import firm from "@/components/dialogs/list/firm";
  121. import supplyDialog from "@/components/dialogs/list/supplyDialog";
  122. import supplierDialog from "@/components/dialogs/list/supplierDialog";
  123. import maintainerDialog from "@/components/dialogs/list/maintainerDialog";
  124. import insurerDialog from "@/components/dialogs/list/insurerDialog";
  125. import guaranteeDialog from "@/components/dialogs/list/guaranteeDialog";
  126. import uploadFilesDialog from "@/components/dialogs/list/filesDialog";
  127. import uploadImgDialog from "@/components/dialogs/list/uploadImgDialog";
  128. import picDialog from "@/components/dialogs/list/picDialog"
  129. import systemType from "@/components/dialogs/list/systemType"
  130. import myPagination from "@/components/ledger/lib/myPagination";
  131. import dialogAssets from "@/components/dialogs/addDialog/dialogDevice";
  132. import detailsDialog from "@/components/ledger/lib/detailsDia"
  133. import changeRea from "@/components/dialogs/changeRea"
  134. //图片查看
  135. import lookPic from "@/components/ledger/lib/lookImages"
  136. //下拉插件
  137. import "@/assets/js/chosen.jquery.min";
  138. import "@/assets/js/handsontable-chosen-editor";
  139. import {mapGetters, mapActions} from "vuex";
  140. import Handsontable from "handsontable-pro"
  141. import 'handsontable-pro/dist/handsontable.full.css'
  142. import zhCN from 'handsontable-pro/languages/zh-CN';
  143. export default {
  144. props: ["myParam"],
  145. components: {
  146. qrcode, //二维码页面
  147. firm, //
  148. supplyDialog,
  149. supplierDialog,
  150. guaranteeDialog,
  151. uploadFilesDialog,
  152. maintainerDialog,
  153. insurerDialog,
  154. uploadImgDialog,
  155. picDialog,
  156. myPagination,
  157. dialogAssets,
  158. systemType,
  159. detailsDialog,
  160. changeRea,
  161. lookPic
  162. },
  163. data() {
  164. return {
  165. main: [],
  166. mess: {},
  167. headers: null,
  168. page: {
  169. size: 50,
  170. sizes: [10, 30, 50, 100, 150, 200],
  171. total: 0,
  172. currentPage: 1
  173. },
  174. dialog: {
  175. qrcode: false, //二维码弹窗
  176. firm: false, //厂商弹窗
  177. supply: false, //选择供应合同
  178. supplier: false, //供应商选择
  179. guarantee: false, //选择保单
  180. maintainer: false, //选择维修商
  181. insurer: false, //选择保险公司
  182. uploadFiles: false,//上传文件
  183. uploadImgs: false,//上传单个图片
  184. pic: false, //多个图片
  185. addDevice: false,
  186. systemType: false,
  187. details: false,//详情页
  188. changeRea: false,
  189. lookPic: false,//图片查看
  190. },
  191. row: null,//被修改的row
  192. filesArr: [],//保存临时的文件key
  193. messKey: null,
  194. imgsArr: [],//临时保存的图片key数组
  195. picsArr: [],//临时设备图片keys数组
  196. projId: "",
  197. copyMain: null,
  198. graphyId: null,
  199. systemId: null,
  200. assetGroupList: [],
  201. iframeSrc: "",
  202. id: 0,
  203. isWatch: true,
  204. category: {},
  205. onlyRead: true,
  206. allMess: true,
  207. linkNameFalg: false,
  208. qrcodeUrl: "",//二维码图片地址
  209. loading: false,
  210. EquipmentList: [],//资产族
  211. deviceType: {},
  212. floorData: []
  213. };
  214. },
  215. created() {
  216. this.getEquipmentFamilyList()
  217. this.getFloorData()
  218. },
  219. computed: {
  220. ...mapGetters("peojMess", [
  221. "projectId",
  222. "secret",
  223. "userId"
  224. ])
  225. },
  226. methods: {
  227. //获取楼层数据
  228. getFloorData() {
  229. let param = {
  230. ProjId: this.projectId,
  231. secret: this.secret
  232. }
  233. getSpaceFloor(param).then(res => {
  234. if (res.data.Result == 'success') {
  235. let data = this.changeArr(res.data.Content), floorData = []
  236. data.map(item => {
  237. if (!!item.children) {
  238. item.children.unshift({
  239. value: '',
  240. label: "未明确楼层"
  241. })
  242. }
  243. return item
  244. })
  245. data.map(item => {
  246. if (!!item.children && item.children.length) {
  247. item.children.map(child => {
  248. floorData.push({
  249. Code: item.value + "-" + child.value,
  250. Name: item.label + "-" + child.label
  251. })
  252. })
  253. }
  254. })
  255. this.floorData = floorData
  256. } else {
  257. this.$message.error(res.data.ResultMsg)
  258. }
  259. }).catch(() => {
  260. this.$message.error("请求出错")
  261. })
  262. },
  263. //将数组转换成optiosn格式
  264. changeArr(arr) {
  265. return arr.map(item => {
  266. if (item.floors && item.floors.length) {
  267. return {
  268. value: item.id,
  269. label: item.infos.BuildLocalName,
  270. children: item.floors.map(i => {
  271. return {
  272. value: i.id,
  273. label: i.infos.FloorLocalName || "未知",
  274. }
  275. })
  276. }
  277. } else {
  278. return {
  279. value: item.id,
  280. label: item.infos.BuildLocalName,
  281. children: null,
  282. isChilren: 1,
  283. }
  284. }
  285. })
  286. },
  287. changeRead() {
  288. this.onlyRead = !this.onlyRead
  289. this.getMain()
  290. },
  291. getEquipmentFamilyList() {
  292. getEquipmentFamily(res => {
  293. this.EquipmentList = res.Content
  294. })
  295. },
  296. //触发父组件change
  297. getClose(val) {
  298. this.$emit("close", val)
  299. },
  300. setGraphyId(graphyId, assetGroupList) {
  301. this.graphyId = graphyId
  302. this.assetGroupList = assetGroupList
  303. },
  304. //获取表头
  305. getHeaderData(code) {
  306. this.page.currentPage = 1
  307. this.mess = code
  308. this.changeCader()
  309. if(this.mess.deviceId){
  310. getTableHeader({
  311. code: this.mess.deviceId,
  312. ProjId: this.projectId
  313. }).then(res => {
  314. this.headers = res.data.Content;
  315. this.getMain()
  316. });
  317. }
  318. },
  319. //获取主体数据
  320. getMain() {
  321. let _this = this
  322. this.loading = true
  323. let param = {
  324. data: {
  325. customInfo: true,
  326. "limit": { // 分页查询, 选填.
  327. "skip": this.page.size * (this.page.currentPage - 1), // 跳过多少数据
  328. "count": this.page.size // 查询跳过300条数据之后的50条 (默认按照创建时间从大-->小排序)
  329. },
  330. id: "",
  331. type: [this.mess.deviceId]
  332. },
  333. secret: this.secret,
  334. ProjId: this.projectId
  335. }
  336. if (this.mess.buildId == "all") {
  337. param.data.id = this.mess.ProjId
  338. } else if (this.mess.buildId == "noKnow") {
  339. param.data.id = this.mess.ProjId
  340. param.data.direct = true
  341. } else if (this.mess.floorId == "noKnow") {
  342. param.data.id = this.mess.buildId
  343. param.data.direct = true
  344. } else if (this.mess.floorId && this.mess.floorId != "all") {
  345. param.data.id = this.mess.floorId
  346. } else if (this.mess.floorId == 'all') {
  347. param.data.id = this.mess.buildId
  348. } else {
  349. param.data.id = this.mess.ProjId
  350. }
  351. //type存在发送请求
  352. if (!!this.mess.deviceId) {
  353. getBillEquipList(param, res => {
  354. if (res.Result == "success") {
  355. this.loading = false
  356. res.Content = res.Content.map(item => {
  357. item.linkName = item.linkEquipLocalName || item.linkEquipName
  358. if (!!item.linkFamily) {
  359. this.assetGroupList.map(child => {
  360. if (item.linkFamily == child.code) {
  361. item.linkFamily = child.name
  362. }
  363. })
  364. }
  365. if (!!item.infos.DPManufacturerID) {
  366. item.infos.DPManufacturerID = item.infos.DPManufacturerID + "-" + item.infos.Brand + "/" + item.infos.Specification
  367. }
  368. if (!!item.infos.DPSupplierID) {
  369. item.infos.DPSupplierID = item.infos.DPSupplierID + "-" + item.infos.Supplier
  370. }
  371. if (!!item.infos.DPMaintainerID) {
  372. item.infos.DPMaintainerID = item.infos.DPMaintainerID + "-" + item.infos.Maintainer
  373. }
  374. if (!!item.infos.DPInsurerID) {
  375. item.infos.DPInsurerID = item.infos.DPInsurerID + "-" + item.infos.Insurer
  376. }
  377. return item
  378. })
  379. if (_this.onlyRead) {
  380. this.getBatch(res.Content)
  381. }
  382. _this.main = res.Content
  383. _this.copyMain = tools.deepCopy(res.Content)
  384. _this.page.total = res.TotalCount
  385. if (!!_this.hot) {
  386. _this.hot.destroy();
  387. _this.hot = null;
  388. }
  389. if (!!res.Content && res.Content.length) {
  390. _this.initHot();
  391. }
  392. } else {
  393. this.loading = false
  394. this.$message.error("请求错误:" + res.ResultMsg)
  395. }
  396. })
  397. }
  398. },
  399. //获取动态参数
  400. getBatch(data) {
  401. let param = {
  402. secret: this.secret,
  403. ProjId: this.projectId,
  404. data: {
  405. criterias: []
  406. }
  407. }
  408. if (!!data && data.length) {
  409. //一级遍历list
  410. data.map(item => {
  411. if (!!item.infos) {
  412. // 二级遍历对象infos
  413. for (let key in item.infos) {
  414. //判断是否是设定参数和动态参数
  415. if (!!item.infos[key]) {
  416. this.headers.map(child => {
  417. //如果一级标签为动态参数或者设定参数放入数据等待请求
  418. if (key == child.InfoPointCode && (child.InputMode == "L" || child.InputMode == "L1" || child.InputMode == "L2")) {
  419. param.data.criterias.push({
  420. id: item.id,
  421. code: key
  422. })
  423. }
  424. })
  425. }
  426. }
  427. }
  428. })
  429. if (param.data.criterias.length) {
  430. BeatchQueryParam(param, res => {
  431. if (!this.onlyRead) {
  432. return false
  433. }
  434. this.main = data.map(item => {
  435. res.Content.map(child => {
  436. if (item.id == child.id) {
  437. if (!!child.data || child.data == 0) {
  438. item.infos[child.code] = child.data
  439. } else {
  440. item.infos[child.code] = child.error ? "表号功能号格式错误" : "表号功能号不存在"
  441. }
  442. }
  443. })
  444. return item
  445. })
  446. this.hot.loadData(this.main)
  447. })
  448. }
  449. }
  450. },
  451. changeAssetsFalg() {
  452. if (this.linkNameFalg) {
  453. this.linkNameFalg = false
  454. } else {
  455. this.$confirm('<p>真的要在这里修改设备关联的资产么?</p><p>真的能通过列表信息找到想关联的资产么?</p><p>在这里修改关联的资产一定是因为之前关联错了要修改么?</p>', '提示', {
  456. dangerouslyUseHTMLString: true,
  457. confirmButtonText: '没错!我要改关联的资产',
  458. cancelButtonText: '我就点开看看',
  459. confirmButtonClass: 'cancelButtonClass',
  460. cancelButtonClass: 'cancelButtonClass'
  461. }).then(_ => {
  462. this.linkNameFalg = true
  463. }).catch(_ => {
  464. this.$message("取消")
  465. })
  466. }
  467. },
  468. //switch改变
  469. changeWatch() {
  470. this.reset()
  471. },
  472. //撤回
  473. undo() {
  474. this.hot.undo();
  475. },
  476. //刷新
  477. reset() {
  478. this.getMain();
  479. },
  480. //添加设备
  481. addDevice() {
  482. this.dialog.addDevice = true
  483. this.$nextTick(() => {
  484. this.$refs.assets.step(0)
  485. })
  486. },
  487. //下载
  488. download() {
  489. if (!this.onlyRead) {
  490. if (!!this.hot) {
  491. let fileName = this.mess.name + "-页数:" + this.page.currentPage + "-个数:" + this.main.length + "-总个数:" + this.page.total
  492. this.hot.getPlugin('exportFile').downloadFile("csv", { filename: fileName, columnHeaders: true, exportHiddenRows: true, exportHiddenColumns: true, rowHeaders: true })
  493. } else {
  494. this.$message("请确定存在表格")
  495. }
  496. } else {
  497. this.$message("下载需在编辑状态下")
  498. }
  499. },
  500. /**
  501. * 表头文案处理函数
  502. * @param list header数组数据
  503. *
  504. * @return 处理好的文案
  505. */
  506. delHeader(list) {
  507. let arr = tools.copyArr(list)
  508. // 如果不是只读状态,添加四大厂商选择
  509. if (!this.onlyRead) {
  510. // arr = showTools.arrToArr(arr)
  511. }
  512. let readArr = ["A1", "A2", "B1", "C5", "D1", "D2", "X", "L", "L1", "L2", "F1", "F2"]
  513. if (!this.onlyRead) {
  514. readArr.push("Own")
  515. }
  516. let data = showTools.changeHeader(arr, readArr, this.onlyRead, this.isWatch, this.allMess)
  517. data.unshift("操作", "当前关联的资产", "所属系统实例");
  518. return data;
  519. },
  520. /**
  521. * 表头数据处理函数
  522. * @param list header数组数据
  523. *
  524. * @return 处理好的数据格式
  525. */
  526. getType(list) {
  527. let arr = tools.copyArr(list)
  528. // 如果不是只读状态,添加四大厂商选择
  529. if (!this.onlyRead) {
  530. // arr = showTools.arrToArr(arr)
  531. }
  532. let data = showTools.showTypes(arr, this.onlyRead, this.isWatch, this.allMess)
  533. data.map(item => {
  534. if (
  535. item.data == "infos." + "Drawing" ||
  536. item.data == "infos." + "Pic" ||
  537. item.data == "infos." + "Nameplate" ||
  538. item.data == "infos." + "InstallPic" ||
  539. item.data == "infos." + "InstallDrawing"
  540. ) {
  541. item.renderer = text.picType
  542. }
  543. if (item.data == "infos." + "Archive" ||
  544. item.data == "infos." + "CheckReport" ||
  545. item.data == "infos." + "InsuranceFile") {
  546. item.renderer = text.fileType
  547. }
  548. })
  549. data.unshift(
  550. {
  551. data: "caozuo",
  552. renderer: tools.lookDetails,
  553. readOnly: true
  554. },
  555. {
  556. data: "linkName",
  557. readOnly: true
  558. }, {
  559. data: "linkSystem",
  560. renderer: text.systemList,
  561. readOnly: true
  562. }
  563. );
  564. // data.splice(1, 0, {
  565. // data: "flowBuild",
  566. // renderer: tools.customDropdownRenderer,
  567. // editor: "chosen",
  568. // chosenOptions: {
  569. // // multiple: true,//多选
  570. // data: this.floorData
  571. // }
  572. // })
  573. if (!!this.onlyRead) {
  574. data.map(item => {
  575. item.readOnly = true
  576. })
  577. }
  578. return data;
  579. },
  580. messShow(item) {
  581. //二维码
  582. if (item.infopoint_code == "EquipQRCode") {
  583. return {
  584. data: "infos." + item.infopoint_code,
  585. renderer: text.lookQRCode,
  586. readOnly: true
  587. }
  588. }
  589. if (item.collection_cmpt_code == "Enum") {
  590. return {
  591. data: "infos." + item.infopoint_code,
  592. renderer: this.customDropdownRenderer,
  593. editor: "chosen",
  594. chosenOptions: {
  595. // multiple: true,//多选
  596. data: item.dataSource || ""
  597. }
  598. };
  599. } else if (item.collection_cmpt_code == "Num") {
  600. return {
  601. data: "infos." + item.infopoint_code,
  602. type: "numeric",
  603. numericFormat: {
  604. pattern: "0,0.00"
  605. // culture: 'de-DE' // use this for EUR (German),
  606. // more cultures available on http://numbrojs.com/languages.html
  607. }
  608. };
  609. } else if (item.collection_cmpt_code == "Time") {
  610. return {
  611. data: "infos." + item.infopoint_code,
  612. type: "date",
  613. dateFormat: "YYYY-MM-DD",
  614. correctFormat: true
  615. };
  616. } else if (item.collection_cmpt_code == "text") {
  617. return {
  618. data: "infos." + item.infopoint_code
  619. };
  620. } else if (
  621. (item.info_point_code == "设备ID" ||
  622. item.info_point_code == "设备名称")
  623. ) {
  624. return {
  625. data: "infos." + item.infopoint_code,
  626. readOnly: true
  627. };
  628. } else if (item.collection_cmpt_code == "checkBox") {
  629. return {
  630. data: "infos." + item.infopoint_code,
  631. renderer: this.customDropdownRenderer,
  632. editor: "chosen",
  633. chosenOptions: {
  634. multiple: true,//多选
  635. data: item.dataSource || ""
  636. }
  637. };
  638. } else {
  639. return {
  640. data: "infos." + item.infopoint_code,
  641. }
  642. }
  643. },
  644. changeItem(item) {
  645. //二维码
  646. if (item.infopoint_code == "EquipQRCode" && item.visible) {
  647. return {
  648. data: "infos." + item.infopoint_code,
  649. renderer: text.lookQRCode,
  650. readOnly: true
  651. }
  652. }
  653. //厂商选择
  654. // if ((item.infopoint_code == "Brand" || item.infopoint_code == "Specification") && item.visible) {
  655. // return {
  656. // data: "infos." + item.infopoint_code,
  657. // renderer: tools.lookDetails,
  658. // readOnly: true
  659. // }
  660. // }
  661. // if (item.infopoint_code == "SupplierContractID" && item.visible) {
  662. // return {
  663. // data: "infos." + item.infopoint_code,
  664. // renderer: tools.lookDetails,
  665. // readOnly: true
  666. // }
  667. // }
  668. if (item.infopoint_code == "InsuranceNum" && item.visible) {
  669. //选择保单
  670. return {
  671. data: "infos." + item.infopoint_code,
  672. renderer: tools.lookDetails,
  673. readOnly: true
  674. }
  675. }
  676. if ((item.infopoint_code == "InsuranceFile" || item.infopoint_code == "Archive") && item.visible) {
  677. return {
  678. data: "infos." + item.infopoint_code,
  679. renderer: tools.lookDetails,
  680. readOnly: true
  681. }
  682. }
  683. if (
  684. (
  685. item.infopoint_code == "InstallPic" ||
  686. item.infopoint_code == "InstallDrawing" ||
  687. item.infopoint_code == "Nameplate" ||
  688. item.infopoint_code == "Pic" ||
  689. item.infopoint_code == "Drawing"
  690. ) && item.visible
  691. ) {
  692. return {
  693. data: "infos." + item.infopoint_code,
  694. renderer: tools.lookDetails,
  695. readOnly: true
  696. }
  697. }
  698. if (
  699. (
  700. item.infopoint_code == "Maintainer" ||
  701. item.infopoint_code == "Supplier" ||
  702. item.infopoint_code == "Insurer" ||
  703. item.infopoint_code == "InsurerContactor"
  704. )
  705. && item.visible
  706. ) {
  707. return {
  708. data: "infos." + item.infopoint_code,
  709. }
  710. }
  711. if (item.collection_cmpt_code == "Enum" && item.visible) {
  712. return {
  713. data: "infos." + item.infopoint_code,
  714. renderer: this.customDropdownRenderer,
  715. editor: "chosen",
  716. chosenOptions: {
  717. // multiple: true,//多选
  718. data: item.dataSource || ""
  719. }
  720. };
  721. } else if (item.collection_cmpt_code == "Num" && item.visible) {
  722. return {
  723. data: "infos." + item.infopoint_code,
  724. type: "numeric",
  725. numericFormat: {
  726. pattern: "0,0.00"
  727. // culture: 'de-DE' // use this for EUR (German),
  728. // more cultures available on http://numbrojs.com/languages.html
  729. }
  730. };
  731. } else if (item.collection_cmpt_code == "Time" && item.visible) {
  732. return {
  733. data: "infos." + item.infopoint_code,
  734. type: "date",
  735. dateFormat: "YYYY-MM-DD",
  736. correctFormat: true
  737. };
  738. } else if (item.collection_cmpt_code == "text" && item.visible) {
  739. return {
  740. data: "infos." + item.infopoint_code
  741. };
  742. } else if (
  743. (item.info_point_code == "设备ID" ||
  744. item.info_point_code == "设备名称") && item.visible
  745. ) {
  746. return {
  747. data: "infos." + item.infopoint_code,
  748. readOnly: true
  749. };
  750. } else if (item.collection_cmpt_code == "checkBox" && item.visible) {
  751. return {
  752. data: "infos." + item.infopoint_code,
  753. renderer: this.customDropdownRenderer,
  754. editor: "chosen",
  755. chosenOptions: {
  756. multiple: true,//多选
  757. data: item.dataSource || ""
  758. }
  759. };
  760. } else if (item.collection_cmpt_code == "Own" && item.visible) {
  761. return {
  762. data: "infos." + item.infopoint_code,
  763. renderer: text.idType,
  764. }
  765. } else {
  766. return undefined
  767. }
  768. },
  769. //初始化插件
  770. initHot() {
  771. var container = document.getElementById("handsontable");
  772. let winHeight = document.documentElement.clientHeight;
  773. this.hot = new Handsontable(container, {
  774. data: this.main,
  775. fixedColumnsLeft: 5,
  776. colHeaders: this.delHeader(this.headers), //表头文案
  777. columns: this.getType(this.headers), //数据显示格式
  778. filters: true,
  779. maxRows: this.main.length,
  780. height: winHeight - 100 - 50 - 290,
  781. columnSorting: true, //添加排序
  782. sortIndicator: true, //添加排序
  783. renderAllRows: true,
  784. // colWidths: 200,
  785. autoColumnSize: true,
  786. language: "zh-CN",
  787. manualColumnResize: true,
  788. manualColumnMove: true,
  789. dropdownMenu: [
  790. "filter_by_condition",
  791. "filter_by_value",
  792. "filter_action_bar"
  793. ],
  794. contextMenu: {
  795. items: {
  796. remove_row: {
  797. name: "删除选中设备"
  798. }
  799. }
  800. },
  801. // 事件
  802. afterChange: this.tdChange, //修改后
  803. afterFilter: this.trimmedRows, //排序前
  804. afterRemoveRow: this.romoveFm, //右键删除
  805. afterOnCellMouseDown: this.eventClick //鼠标点击
  806. });
  807. let pro = document.getElementById("hot-display-license-info");
  808. if (!!pro) {
  809. pro.parentNode.removeChild(pro);
  810. }
  811. this.isLoading = false;
  812. },
  813. //表格中的点击
  814. eventClick(el, rowArr) {
  815. //点击的是表头
  816. if (rowArr.row < 0) {
  817. return;
  818. }
  819. //被筛选过后的数组
  820. let trimmedArr = this.trimmedRows();
  821. //是否启用了排序
  822. let isSort = this.hot.getPlugin("columnSorting").isSorted();
  823. if (trimmedArr.length && isSort) {
  824. let sortArr = this.myHotArr.getPlugin("columnSorting").rowsMapper
  825. .__arrayMap;
  826. let infos = this.main[trimmedArr[sortArr[rowArr.row]]];
  827. this.getInfors(infos, { row: sortArr[rowArr.row], col: rowArr.col });
  828. } else if (isSort) {
  829. //排序后的数组
  830. let sortArr = this.hot.getPlugin("columnSorting").rowsMapper.__arrayMap;
  831. let infos = this.main[sortArr[rowArr.row]];
  832. this.getInfors(infos, { row: sortArr[rowArr.row], col: rowArr.col });
  833. } else if (trimmedArr.length) {
  834. let infos = this.main[trimmedArr[rowArr.row]];
  835. this.getInfors(infos, { row: trimmedArr[rowArr.row], col: rowArr.col });
  836. } else {
  837. let infos = this.main[rowArr.row];
  838. this.getInfors(infos, rowArr);
  839. }
  840. },
  841. tdChange(changeData, source) {
  842. if (!this.onlyRead) {
  843. if (changeData) {
  844. let trimmedArr = this.trimmedRows();
  845. let param = handsonUtils.getParam(changeData, source, this.hot, trimmedArr);
  846. let data = [];
  847. for (let i = 0; i < param.length; i++) {
  848. data.push(param[i]);
  849. }
  850. //如果data中包含/且data长度为1,将其转换成.
  851. if (changeData.length == 1 && changeData[0][1].indexOf("/") > 0) {
  852. changeData[0][1] = changeData[0][1].split("/").join(".")
  853. }
  854. //存在data进行修改请求
  855. if (data && data.length) {
  856. this.updateBusiness(data, changeData);
  857. }
  858. }
  859. }
  860. },
  861. //删除资产
  862. romoveFm() {
  863. let params = tools.differenceArr(this.main, this.copyMain)
  864. let _this = this
  865. if (params.length < 1) {
  866. return
  867. }
  868. let param = {
  869. secret: this.mess.secret,
  870. ProjId: this.mess.ProjId,
  871. data: {
  872. "criterias": []
  873. }
  874. }
  875. params.map(item => {
  876. param.data.criterias.push({ id: item.id })
  877. })
  878. this.$confirm("此操作将删除设备,是否继续?", "提示", {
  879. confirmButtonText: '确定',
  880. cancelButtonText: '取消',
  881. type: 'warning'
  882. }).then(() => {
  883. this.removeSys(param)
  884. }).catch(() => {
  885. this.reset()
  886. this.$message("取消删除")
  887. })
  888. // delProperty(param, res => {
  889. // _this.$message.success("删除成功")
  890. // _this.getMain()
  891. // })
  892. },
  893. async removeSys(param) {
  894. await delBatchList(param, res => {
  895. this.$message.success("删除成功")
  896. this.getMain()
  897. })
  898. },
  899. // 修改
  900. updateBusiness(data, change) {
  901. // data.map(item => {
  902. // if (!!item.flowBuild) {
  903. // item.building_id = item.flowBuild.split("-")[0]
  904. // item.floor_id = item.flowBuild.split("-")[1] || null
  905. // //不存在floor字段去除floor
  906. // if (!item.floor_id) {
  907. // delete item.floor_id
  908. // }
  909. // delete item.flowBuild
  910. // }
  911. // })
  912. let param = {
  913. ProjId: this.mess.ProjId,
  914. secret: this.mess.secret,
  915. data: {
  916. criterias: []
  917. }
  918. };
  919. //生成对应修改数据
  920. data.map((item, index) => {
  921. let arr = change[index][1].split(".");
  922. let info = {};
  923. info[arr[1]] = [{ value: item[arr[0]][arr[1]] != "" ? item[arr[0]][arr[1]] : null }];
  924. param.data.criterias.push({
  925. id: item.id,
  926. infos: info
  927. });
  928. });
  929. //对五大厂商进行特殊处理
  930. param.data.criterias.map(item => {
  931. if (!!item.infos.DPSupplierID) {
  932. item.infos.DPSupplierID[0].value = item.infos.DPSupplierID[0].value.split("-")[0]
  933. }
  934. if (!!item.infos.DPManufacturerID) {
  935. item.infos.DPManufacturerID[0].value = item.infos.DPManufacturerID[0].value.split("-")[0]
  936. }
  937. if (!!item.infos.DPInsurerID) {
  938. item.infos.DPInsurerID[0].value = item.infos.DPInsurerID[0].value.split("-")[0]
  939. }
  940. if (!!item.infos.DPMaintainerID) {
  941. item.infos.DPMaintainerID[0].value = item.infos.DPMaintainerID[0].value.split("-")[0]
  942. }
  943. if (!!item.infos.DPSpecificationID) {
  944. item.infos.DPSpecificationID[0].value = item.infos.DPSpecificationID[0].value.split("-")[0]
  945. }
  946. return item
  947. })
  948. updateBusiness(param).then(res => {
  949. });
  950. },
  951. //修改设备类型
  952. changeCader() {
  953. this.EquipmentList.map(item => {
  954. if (!!item.content && item.content.length) {
  955. item.content.map(child => {
  956. if (child.code == this.mess.deviceId) {
  957. this.deviceType.assetType = item.code
  958. this.deviceType.assetName = item.name
  959. }
  960. })
  961. }
  962. })
  963. },
  964. //获取到了正确的信息
  965. getInfors(infos, row) {
  966. //其他的开始判断
  967. let val = this.hot.colToProp(row.col);
  968. this.row = row.row
  969. this.messKey = val
  970. this.systemId = infos.id
  971. if (val == "caozuo") {
  972. this.iframeSrc =
  973. process.env.BASE_URL +
  974. ":8889/#/details?perjectId=" +
  975. this.projectId +
  976. "&secret=" +
  977. this.secret +
  978. "&FmId=" +
  979. infos.id +
  980. "&type=1&code=" +
  981. infos.category.substring(2, 6);
  982. this.dialog.details = true
  983. }
  984. //图片弹窗
  985. if (
  986. val == "infos.InstallPic" ||
  987. val == "infos.InstallDrawing" ||
  988. val == "infos.Nameplate" ||
  989. val == "infos.Drawing"
  990. ) {
  991. if (this.onlyRead) {
  992. this.dialog.lookPic = true
  993. this.picsArr = this.main[row.row].infos ? (this.main[row.row].infos[val.split(".")[1]] ? this.main[row.row].infos[val.split(".")[1]] : []) : []
  994. } else {
  995. this.imgsArr = this.main[row.row].infos ? (this.main[row.row].infos[val.split(".")[1]] ? this.main[row.row].infos[val.split(".")[1]] : []) : []
  996. this.dialog.uploadImgs = true
  997. }
  998. }
  999. if (val == "linkSystem") {
  1000. this.dialog.systemType = true
  1001. }
  1002. if (val == "infos.Pic") {
  1003. this.picsArr = this.main[row.row].infos ? (this.main[row.row].infos[val.split(".")[1]] ? this.main[row.row].infos[val.split(".")[1]] : []) : []
  1004. if (this.onlyRead) {
  1005. this.dialog.lookPic = true
  1006. } else {
  1007. this.dialog.pic = true
  1008. }
  1009. }
  1010. if (val == "infos.InsuranceFile" || val == "infos.Archive" || val == "infos.CheckReport") {
  1011. this.filesArr = this.main[row.row].infos ? (this.main[row.row].infos[val.split(".")[1]] ? this.main[row.row].infos[val.split(".")[1]] : []) : []
  1012. this.dialog.uploadFiles = true
  1013. }
  1014. if (val == "linkName" && this.linkNameFalg) {
  1015. this.category = this.main[row.row]
  1016. this.dialog.changeRea = true
  1017. }
  1018. if (val == "infos.EquipQRCode") {
  1019. this.qrcodeUrl = this.main[row.row].infos.EquipQRCode
  1020. if (!!this.qrcodeUrl) {
  1021. this.dialog.qrcode = true;
  1022. } else {
  1023. this.$message("此设备没有设备二维码")
  1024. }
  1025. }
  1026. if (this.onlyRead) {
  1027. return
  1028. }
  1029. if (val == "infos.DPManufacturerID") {
  1030. this.dialog.firm = true;
  1031. }
  1032. if (val == "infos.SupplierContractID") {
  1033. let falg = null
  1034. if (!!this.main[row.row].infos) {
  1035. if (!!this.main[row.row].infos.DPSupplierID) {
  1036. falg = this.main[row.row].infos.DPSupplierID.split("-")[0]
  1037. }
  1038. }
  1039. if (!!falg) {
  1040. this.id = falg
  1041. this.dialog.supply = true;
  1042. } else {
  1043. this.$message("请先选择供应商")
  1044. }
  1045. }
  1046. if (val == "infos.InsuranceNum") {
  1047. //选择保单
  1048. let falg = null
  1049. if (!!this.main[row.row].infos) {
  1050. if (!!this.main[row.row].infos.DPInsurerID) {
  1051. falg = this.main[row.row].infos.DPInsurerID.split("-")[0]
  1052. }
  1053. }
  1054. if (!!falg) {
  1055. this.id = falg
  1056. this.dialog.guarantee = true;
  1057. } else {
  1058. this.$message("请先选择保险商")
  1059. }
  1060. }
  1061. if (
  1062. val == "infos.DPSupplierID"
  1063. ) {
  1064. if (!!infos.linkId) {
  1065. this.dialog.supplier = true;
  1066. } else {
  1067. this.$message("该设备无关联资产")
  1068. }
  1069. }
  1070. if (val == "infos.DPMaintainerID") {
  1071. if (!!infos.linkId) {
  1072. this.dialog.maintainer = true;
  1073. } else {
  1074. this.$message("该设备无关联资产")
  1075. }
  1076. }
  1077. if (
  1078. val == "infos.DPInsurerID") {
  1079. if (!!infos.linkId) {
  1080. this.dialog.insurer = true;
  1081. } else {
  1082. this.$message("该设备无关联资产")
  1083. }
  1084. }
  1085. },
  1086. //获取被筛选掉的行号
  1087. trimmedRows() {
  1088. // var plugin = hot.getPlugin('trimRows').trimmedRows;//获取被筛选掉的行号
  1089. var plugin = this.hot.getPlugin("trimRows").trimmedRows;
  1090. let dataLength = this.main.length;
  1091. let dataArr = new Array();
  1092. for (let i = 0; i < dataLength; i++) {
  1093. dataArr.push(i);
  1094. }
  1095. if (plugin.length <= 0) {
  1096. dataArr = undefined;
  1097. } else {
  1098. dataArr = this.array_diff(dataArr, plugin);
  1099. }
  1100. return dataArr || [];
  1101. // var DataArray = new Array();
  1102. // for (var i = 0; i < plugin.length; i++) {
  1103. // // 通过行号获取数据
  1104. // DataArray.push(this.hot.getSourceDataAtRow(plugin[i]));
  1105. // }
  1106. },
  1107. //去除数组中相同的元素
  1108. array_diff(a, b) {
  1109. for (var i = 0; i < b.length; i++) {
  1110. for (var j = 0; j < a.length; j++) {
  1111. if (a[j] == b[i]) {
  1112. a.splice(j, 1);
  1113. j = j - 1;
  1114. }
  1115. }
  1116. }
  1117. return a;
  1118. },
  1119. //如果选择供应商之后
  1120. supplierChange(data) {
  1121. for (let key in data) {
  1122. if (key == "venderId") {
  1123. data[key] = data[key] + "-" + data.name
  1124. this.utilToKey(key, "venderId", data, "DPSupplierID")
  1125. }
  1126. }
  1127. // tools.setItem(this.deviceType.code, this.main)
  1128. },
  1129. supplyChange(data) {
  1130. let changeData = { id: data }
  1131. this.utilToKey("id", "id", changeData, "SupplierContractID")
  1132. // tools.setItem(this.deviceType.code, this.main)
  1133. },
  1134. //保险合同
  1135. guaranteeChange(data) {
  1136. for (let key in data) {
  1137. this.utilToKey(key, "insuranceNo", data, "InsuranceNum")
  1138. if (key == "contractFile") {
  1139. if (!!data[key]) {
  1140. data[key] = [data[key]]
  1141. }
  1142. }
  1143. this.utilToKey(key, "contractFile", data, "InsuranceFile")
  1144. }
  1145. // tools.setItem(this.deviceType.code, this.main)
  1146. },
  1147. //选择型号修改
  1148. firmChange(data) {
  1149. for (let key in data) {
  1150. // this.utilToKey(key, "name", data, "Supplier")
  1151. // this.utilToKey(key, "email", data, "SupplierEmail")
  1152. // this.utilToKey(key, "website", data, "SupplierWeb")
  1153. // this.utilToKey(key, "phone", data, "SupplierPhone")
  1154. // this.utilToKey(key, "fox", data, "SupplierFax")
  1155. // this.utilToKey(key, "man", data, "SupplierContactor")
  1156. if (key == "venderId") {
  1157. data[key] = data[key] + "-" + data.name + "/" + data.brand
  1158. this.utilToKey(key, "venderId", data, "DPManufacturerID")
  1159. }
  1160. this.utilToKey(key, "specificationId", data, "DPSpecificationID")
  1161. }
  1162. },
  1163. //保险商变更
  1164. changeInsurer(data) {
  1165. for (let key in data) {
  1166. // this.utilToKey(key, "name", data, "Insurer")
  1167. // this.utilToKey(key, "email", data, "InsurerEmail")
  1168. // this.utilToKey(key, "website", data, "InsurerWeb")
  1169. // this.utilToKey(key, "phone", data, "InsurerFax")
  1170. // this.utilToKey(key, "man", data, "InsurerContactor")
  1171. if (key == "venderId") {
  1172. data[key] = data[key] + "-" + data.name
  1173. this.utilToKey(key, "venderId", data, "DPInsurerID")
  1174. }
  1175. }
  1176. // tools.setItem(this.deviceType.code, this.main)
  1177. },
  1178. //维修商变更
  1179. changeMaintainer(data) {
  1180. for (let key in data) {
  1181. // this.utilToKey(key, "name", data, "Maintainer")
  1182. // this.utilToKey(key, "email", data, "MaintainerEmail")
  1183. // this.utilToKey(key, "website", data, "MaintainerWeb")
  1184. // this.utilToKey(key, "phone", data, "MaintainerPhone")
  1185. // this.utilToKey(key, "fox", data, "MaintainerFax")
  1186. // this.utilToKey(key, "man", data, "MaintainerContactor")
  1187. if (key == "venderId") {
  1188. data[key] = data[key] + "-" + data.name
  1189. this.utilToKey(key, "venderId", data, "DPMaintainerID")
  1190. }
  1191. }
  1192. // tools.setItem(this.deviceType.code, this.main)
  1193. },
  1194. //上传文件弹窗触发事件
  1195. fileChange(keys) {
  1196. this.setDataToMain(keys, this.messKey.split(".")[1], this.row)
  1197. // tools.setItem(this.deviceType.code, this.main)
  1198. },
  1199. //上传图片弹窗触发事件
  1200. imgChange(keys) {
  1201. this.setDataToMain(keys, this.messKey.split(".")[1], this.row)
  1202. // tools.setItem(this.deviceType.code, this.main)
  1203. },
  1204. //设备图片弹窗改变事件
  1205. changePics(keys) {
  1206. this.setDataToMain(keys, this.messKey.split(".")[1], this.row)
  1207. // tools.setItem(this.deviceType.code, this.main)
  1208. },
  1209. utilToKey(key, name, data, messName) {
  1210. if (key == name) {
  1211. this.setDataToMain(data[key], messName, this.row)
  1212. }
  1213. },
  1214. //判断是否有值,有值赋值
  1215. setDataToMain(data, key, row) {
  1216. if (!!data && data != '--') {
  1217. if (!!this.main[row].infos) {
  1218. //falg确定每个的是否有值
  1219. this.main[row].infos[key] = data
  1220. this.updateBusiness([this.main[row]], [[0, "infos." + key, null, data]])
  1221. } else {
  1222. this.main[row].infos = {}
  1223. this.main[row].infos[key] = data
  1224. }
  1225. } else {
  1226. this.main[row].infos[key] = ''
  1227. }
  1228. }
  1229. }
  1230. };
  1231. </script>
  1232. <style lang="less">
  1233. .hanson-bar {
  1234. height: 40px;
  1235. padding: 5px;
  1236. font-size: 14px;
  1237. overflow: hidden;
  1238. margin-top: 10px;
  1239. line-height: 40px;
  1240. .iconfont {
  1241. font-size: 12px;
  1242. }
  1243. .el-button {
  1244. // margin-right: 10px;
  1245. }
  1246. }
  1247. .cancelButtonClass {
  1248. width: 180px;
  1249. }
  1250. </style>