device.vue 56 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531
  1. <template>
  2. <div style="height: calc(100% - 44.5px);padding: 0px 10px 10px;box-sizing: border-box;" v-loading="loading">
  3. <div class="hanson-bar">
  4. <div style="float:right;overflow:hidden;">
  5. <!-- <span style="width:20px;float:left;display:block;height:20px;cursor: pointer;" @click="changeAssetsFalg">
  6. <i v-show="!onlyRead" class="el-icon-fa el-icon-fa-compass"></i>
  7. </span> -->
  8. <span>当前筛选条件下共{{page.total || '--'}}设备</span>
  9. </div>
  10. <el-select v-model="onlyRead" @change="getHeaderData(mess)"
  11. style="width:100px;margin-right:20px;vertical-align:bottom;">
  12. <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value"></el-option>
  13. </el-select>
  14. <el-select v-model="showType" @change="initTable" style="width:100px;margin-right:10px;vertical-align:bottom;">
  15. <el-option v-for="item in showTypes" :key="item.value" :label="item.label" :value="item.value"></el-option>
  16. </el-select>
  17. <!-- <el-button size="small" style='width: 80px;' @click="download" icon="iconfont icon-xiazai">下载</el-button> -->
  18. <el-button size="small" style='width: 80px;' @click="addDevice">添加设备</el-button>
  19. <el-button size="small" @click="Batch" v-show="!onlyRead" :disabled="!(tableData && tableData.length)">批量维护信息点</el-button>
  20. <el-button size="small" style='width: 80px;' @click="reset">刷新</el-button>
  21. <el-button size="small" style='width: 80px;' v-show="!onlyRead" @click="undo">撤销</el-button>
  22. </div>
  23. <!-- 二维码弹窗 -->
  24. <qrcode :dialog="myDialog" :qrcodeUrl="qrcodeUrl" :addBody="true" ref="qrcode"></qrcode>
  25. <!-- bim坐标弹框 -->
  26. <bimDialog :dialog="myDialog" :bimcodeobj="bimcodeobj" @closeBIM='closeBIM' :addBody="true" ref="bimdialog"></bimDialog>
  27. <!-- 型号弹窗 -->
  28. <firm
  29. :mess="{deviceId: deviceType.assetType}"
  30. :firmDataType="firmDataType"
  31. ref="firm"
  32. @changeFirm="firmChange"
  33. :dialog="myDialog"
  34. ></firm>
  35. <!-- 供应商合同弹窗 -->
  36. <supply-dialog ref="supply" @change="supplyChange" :id="id" :dialog="myDialog"/>
  37. <!-- 供应商弹窗 -->
  38. <supplier-dialog ref="supplier" :firmDataType="firmDataType" @changeSupplier="supplierChange" :dialog="myDialog"/>
  39. <guarantee-dialog :id="id" ref="guarantee" @change="guaranteeChange" :dialog="myDialog"/>
  40. <!-- 上传文件-->
  41. <upload-files-dialog
  42. :read="onlyRead ? true : false"
  43. ref="upload"
  44. @changeFile="fileChange"
  45. :keysArr="filesArr"
  46. :firmDataType="firmDataType"
  47. :information="information"
  48. :infoType="infoType"
  49. :dialog="myDialog"
  50. />
  51. <!-- 上传图片-->
  52. <upload-img-dialog
  53. :read="onlyRead ? true : false"
  54. @changeFile="imgChange"
  55. :keysArr="imgsArr"
  56. :dialog="myDialog"
  57. :firmDataType="firmDataType"
  58. :information="information"
  59. :infoType="infoType"
  60. />
  61. <!-- 维修商信息-->
  62. <maintainer-dialog
  63. @changeMaintainer="changeMaintainer"
  64. :firmDataType="firmDataType"
  65. ref="maintainer"
  66. :dialog="myDialog"
  67. />
  68. <insurer-dialog @changeInsurer="changeInsurer" :firmDataType="firmDataType" ref="insurer" :dialog="myDialog"/>
  69. <pic-dialog
  70. :read="onlyRead ? true : false"
  71. :dialog="myDialog"
  72. :keysArr="picsArr"
  73. @change="changePics"
  74. :firmDataType="firmDataType"
  75. :information="information"
  76. :infoType="infoType"
  77. />
  78. <div class=" middle_sty" style="height: 91%; text-align:center"
  79. v-show="!mess.deviceId && (!tableData || !tableData.length)">
  80. <p>
  81. <i class="icon-wushuju iconfont"></i>
  82. 请选择设备族
  83. </p>
  84. </div>
  85. <div class="center middle_sty" style="height: 91%" v-show="mess.deviceId && (!tableData || !tableData.length)">
  86. <p>
  87. <i class="icon-wushuju iconfont"></i>
  88. 暂无数据
  89. </p>
  90. </div>
  91. <div v-show="mess.deviceId && tableData && tableData.length" id="handsontable" ref="handsontable"></div>
  92. <div v-show="mess.deviceId && tableData && tableData.length" class="right">
  93. <my-pagination @change="getTableData" :page="page" :key="pageKey"></my-pagination>
  94. </div>
  95. <details-dialog :iframeSrc="iframeSrc" v-if="myDialog.details" :dialog="myDialog"></details-dialog>
  96. <!-- 关联的系统 -->
  97. <system-type :device="mess" :curDevice="curDevice" :dialog="myDialog" :type="onlyRead?'read':'edit'"
  98. @change="changeSystemType"
  99. :list="systemList"></system-type>
  100. <!-- 关联资产 -->
  101. <change-rea @changeProperty="changeProperty" :dialog="myDialog" :category="deviceType"></change-rea>
  102. <look-pic :dialog="myDialog" :keysArr="picsArr"></look-pic>
  103. <!-- 不支持的输入方式 -->
  104. <el-dialog title="临时维护信息点" :visible.sync="myDialog.update" @close="handleCloseUpdate" width="670px">
  105. <el-row>
  106. 该信息点未定义对应组件,现在维护数据不确定后续是否可用。如确实需要维护,请点击
  107. <el-link @click="updateInputShow = true" type="primary" :underline="false">继续维护</el-link>
  108. </el-row>
  109. <el-row style="margin-top:20px;" v-show="updateInputShow">
  110. <el-input type="textarea" :autosize="{ minRows: 4, maxRows: 8}" placeholder="请输入内容"
  111. v-model="updateInput"></el-input>
  112. </el-row>
  113. <span slot="footer" class="dialog-footer">
  114. <el-button @click="myDialog.update = false">取 消</el-button>
  115. <el-button type="primary" @click="handleClickUpdate">确 认</el-button>
  116. </span>
  117. </el-dialog>
  118. <!-- 新增设备 -->
  119. <el-dialog title="确定新增设备的类型" :visible.sync="myDialog.addDevice" width="670px">
  120. <el-row>
  121. <my-cascader ref="cascader" @change="changeAddType" :all="true"></my-cascader>
  122. </el-row>
  123. <span slot="footer" class="dialog-footer">
  124. <el-button type="primary" @click="toAddDevice">下 一 步</el-button>
  125. </span>
  126. </el-dialog>
  127. <!-- 维护信息弹窗-->
  128. <batchDialog
  129. ref="batchDialogs"
  130. @code="fourVendors"
  131. :firmName="firmName"
  132. :allObject="allObject"
  133. :page="batchPage"
  134. :information="information"
  135. :newEnclosure="newEnclosure"
  136. @getAllData="getAllData"
  137. @multiples="multiples"
  138. @upDataDevice="upDataDevice"
  139. />
  140. </div>
  141. </template>
  142. <script>
  143. import {
  144. BeatchQueryParam,
  145. deleteEquip,
  146. getDataDictionary,
  147. getEquipBelongs,
  148. getEquipTableCon,
  149. queryEquip,
  150. queryUpdate,
  151. updateEquip
  152. } from "@/api/scan/request";
  153. import tools from "@/utils/scan/tools"
  154. import handsonUtils from "@/utils/hasontableUtils"
  155. import showTools from "@/utils/handsontable/notShow"
  156. import text from "@/utils/handsontable/mainText"
  157. import myCascader from "@/components/ledger/lib/cascader"
  158. import buildFloor from '@/utils/handsontable/buildFloorData'
  159. import qrcode from "@/components/ledger/lib/qrcode"
  160. import bimDialog from '@/components/ledger/lib/bimDialog'
  161. import firm from "@/components/dialogs/list/firm"
  162. import supplyDialog from "@/components/dialogs/list/supplyDialog"
  163. import supplierDialog from "@/components/dialogs/list/supplierDialog"
  164. import maintainerDialog from "@/components/dialogs/list/maintainerDialog"
  165. import insurerDialog from "@/components/dialogs/list/insurerDialog"
  166. import guaranteeDialog from "@/components/dialogs/list/guaranteeDialog"
  167. import uploadFilesDialog from "@/components/dialogs/list/filesDialog"
  168. import uploadImgDialog from "@/components/dialogs/list/uploadImgDialog"
  169. import picDialog from "@/components/dialogs/list/picDialog"
  170. import batchDialog from "../../dialogs/list/batchDialog";
  171. import systemType from "@/components/dialogs/list/systemType"
  172. import myPagination from "@/components/ledger/lib/myPagination"
  173. import detailsDialog from "@/components/ledger/lib/detailsDia"
  174. import changeRea from "@/components/dialogs/changeRea"
  175. import {mapGetters} from "vuex"
  176. //图片查看
  177. import lookPic from "@/components/ledger/lib/lookImages"
  178. import Handsontable from "handsontable-pro"
  179. import 'handsontable-pro/dist/handsontable.full.css'
  180. import lStorage from '@/utils/localStorage'
  181. //下拉插件
  182. // import "@/assets/js/chosen.jquery.min";
  183. // import "@/assets/js/handsontable-chosen-editor";
  184. export default {
  185. props: ["myParam"],
  186. components: {
  187. qrcode, //二维码页面
  188. firm, //
  189. supplyDialog,
  190. supplierDialog,
  191. guaranteeDialog,
  192. uploadFilesDialog,
  193. maintainerDialog,
  194. insurerDialog,
  195. uploadImgDialog,
  196. picDialog,
  197. myPagination,
  198. systemType,
  199. detailsDialog,
  200. changeRea,
  201. lookPic,
  202. myCascader,
  203. batchDialog,
  204. bimDialog
  205. },
  206. created() {
  207. buildFloor.getData(this.buildFloorData)
  208. },
  209. computed: {
  210. ...mapGetters("layout", ["projectId", "secret", "userId"]),
  211. showTypes() {
  212. return this.onlyRead ?
  213. [{value: "Visible", label: '只看采集信息'}, {value: "all", label: '全部'}] :
  214. [{value: "partInfo", label: '隐藏信息点'}, {value: "all", label: '全部'}, {value: "Visible", label: '只看采集信息'}]
  215. },
  216. // batchDate() {
  217. // // return !(!this.onlyRead && this.copyMain)
  218. // return !(!this.onlyRead && this.page.total > 1)
  219. // },
  220. batchDialogShow() {
  221. return this.$refs.batchDialogs.batchDialog
  222. }
  223. },
  224. data() {
  225. return {
  226. options: [{
  227. value: true,
  228. label: '只读模式'
  229. }, {
  230. value: false,
  231. label: '编辑模式'
  232. }],
  233. buildFloorData: [], //楼层数据
  234. tableData: [],
  235. mess: {},
  236. tableHeader: null,
  237. page: {
  238. size: 50,
  239. sizes: [10, 30, 50, 100, 150, 200],
  240. total: 0,
  241. currentPage: 1
  242. },
  243. pageKey: new Date().getTime(),
  244. batchPage: {
  245. size: 100,
  246. sizes: [100, 200,500,1000],
  247. total: 0,
  248. currentPage: 1
  249. },
  250. myDialog: {
  251. qrcode: false, //二维码弹窗
  252. bimcode:false,//bim弹窗
  253. firm: false, //厂商弹窗
  254. supply: false, //选择供应合同
  255. supplier: false, //供应商选择
  256. guarantee: false, //选择保单
  257. maintainer: false, //选择维修商
  258. insurer: false, //选择保险公司
  259. uploadFiles: false,//上传文件
  260. uploadImgs: false,//上传单个图片
  261. pic: false, //多个图片
  262. addDevice: false,//添加设备
  263. systemType: false,//关联系统
  264. details: false,//详情页
  265. changeRea: false,//关联资产
  266. lookPic: false,//图片查看
  267. update: false,//临时维护信息点
  268. },
  269. row: null, //被修改的row
  270. filesArr: [], //保存临时的文件key
  271. messKey: null,
  272. imgsArr: [], //临时保存的图片key数组
  273. picsArr: [], //临时设备图片keys数组
  274. systemList: [], //关联的系统
  275. copyMain: null,
  276. iframeSrc: "",
  277. id: 0,
  278. onlyRead: true,
  279. showType: 'Visible',
  280. linkNameFalg: true,
  281. qrcodeUrl: "", //二维码图片地址
  282. bimcodeobj:"",//BIM对象
  283. loading: false,
  284. deviceType: {}, //族3位编码及名称
  285. floorData: [],
  286. curDevice: '',//当前点击的设备id
  287. addData: {}, //
  288. showParts: false,
  289. inputMap: {
  290. flowBuild: {
  291. InputMode: 'D1',
  292. Editable:true,
  293. InfoPointCode:"flowBuild",
  294. InfoPointName:"建筑楼层",
  295. Path:"flowBuild"
  296. }
  297. }, //信息点和输入方式映射表
  298. updateInputShow: false, //是否显示临时维护输入框
  299. updateInfoPoint: '',//临时维护信息点
  300. updateInput: '', //临时维护信息点值
  301. firmName: '',//维护信息显示厂家名称
  302. firmDataType: 'row',
  303. allObject: [],
  304. information: {
  305. archive: {
  306. Archive: [], //设备文档
  307. name: '设备文档',
  308. code: 'LedgerParam.PhotoDoc.Archive',
  309. num: 14
  310. },
  311. checkReport: {
  312. CheckReport: [],//安装质检报告
  313. name: '安装质检报告',
  314. code: 'LedgerParam.Siteinstall.CheckReport',
  315. num: 18
  316. },
  317. drawing: {
  318. Drawing: [],//设备图纸
  319. name: '设备图纸',
  320. code: 'LedgerParam.PhotoDoc.Drawing',
  321. num: 13
  322. },
  323. installDrawing: {
  324. InstallDrawing: [],//安装图纸
  325. name: '安装图纸',
  326. code: 'LedgerParam.Siteinstall.InstallDrawing',
  327. num: 16
  328. },
  329. installPic: {
  330. InstallPic: [],//安装照片
  331. name: '安装照片',
  332. code: 'LedgerParam.Siteinstall.InstallPic',
  333. num: 17
  334. },
  335. insuranceFile: {
  336. InsuranceFile: [],//保险文件
  337. name: '保险文件',
  338. code: 'LedgerParam.InsuranceDoc.InsuranceFile',
  339. num: 11
  340. },
  341. nameplate: {
  342. Nameplate: [],//设备铭牌照片
  343. name: '设备铭牌照片',
  344. code: 'LedgerParam.PhotoDoc.Nameplate',
  345. num: 12
  346. },
  347. pic: {
  348. Pic: [],//设备照片
  349. name: '设备照片',
  350. code: 'LedgerParam.PhotoDoc.Pic',
  351. num: 15
  352. }
  353. },
  354. infoType: '',
  355. newEnclosure:[]
  356. };
  357. },
  358. methods: {
  359. //获取表头
  360. getHeaderData(code) {
  361. let tempParams = this.$route.params;
  362. if (!tempParams.used && tempParams.pageSize) {
  363. this.page.currentPage = tempParams.pageNo;
  364. this.page.size = tempParams.pageSize;
  365. this.onlyRead = tempParams.readOnly;
  366. tempParams.used = true;
  367. } else {
  368. this.page.currentPage = 1
  369. }
  370. this.pageKey = new Date().getTime();
  371. this.mess = code
  372. this.changeCader()
  373. if (this.mess.deviceId) {
  374. let params = {
  375. data: {
  376. Orders: "sort asc, InfoPointName desc",
  377. PageNumber: 1,
  378. PageSize: 1000
  379. },
  380. type: this.mess.deviceId
  381. };
  382. getDataDictionary(params, res => {
  383. this.tableHeader = res.Content;
  384. console.log(this.tableHeader)
  385. this.tableHeader.forEach(item => {
  386. if (item.Path) {
  387. this.inputMap[item.Path] = item
  388. }
  389. })
  390. this.getTableData()
  391. this.getAllData()
  392. // 信息维护
  393. this.newEnclosure = res.Content.filter(i=>i.InputMode =='F2')
  394. });
  395. }
  396. },
  397. //关闭弹窗
  398. closeBIM(){
  399. this.myDialog.bimcode = false
  400. },
  401. //获取主体数据
  402. getTableData() {
  403. this.loading = true
  404. //type存在发送请求
  405. if (!!this.mess.deviceId) {
  406. let param = {
  407. PageSize: this.page.size,
  408. Orders: "createTime desc,EquipID desc,EquipLocalID desc,EquipLocalName desc",
  409. PageNumber: this.page.currentPage,
  410. Filters: `category='${this.mess.deviceId}'`
  411. }
  412. if (this.mess.buildId == "noKnow") {
  413. param.Filters += `;buildingId isNull`
  414. } else if (this.mess.buildId && this.mess.buildId != "all") {
  415. param.Filters += `;buildingId='${this.mess.buildId}'`
  416. }
  417. if (this.mess.floorId == "noKnow") {
  418. param.Filters += `;floorId isNull`
  419. } else if (this.mess.floorId && this.mess.floorId != "all") {
  420. param.Filters += `;floorId='${this.mess.floorId}'`
  421. }
  422. getEquipTableCon(param, res => {
  423. this.loading = false;
  424. this.showParts = res.Message == "1"?true:false;// 判断是否显示包含的部件列
  425. this.tableData = res.Content.map((item) => {
  426. if (item.hasOwnProperty("BuildingId") && item.hasOwnProperty("FloorId")) {
  427. item.flowBuild = item.BuildingId + "-" + item.FloorId
  428. } else if (item.hasOwnProperty("BuildingId") && !item.hasOwnProperty("FloorId")) {
  429. item.flowBuild = item.BuildingId
  430. }
  431. return item
  432. });
  433. this.copyMain = tools.deepCopy(this.tableData);
  434. this.page.total = res.Total;
  435. if (this.tableData && this.tableData.length) {
  436. if (this.onlyRead) {
  437. this.getBatch(this.tableData)
  438. }
  439. this.initTable();
  440. }
  441. })
  442. }
  443. },
  444. //获取所以主体数据---用于维护信息
  445. getAllData() {
  446. if (!!this.mess.deviceId) {
  447. // 查询step2
  448. let params = {
  449. "Cascade": [
  450. {
  451. "Name": "property",
  452. "Projection": [
  453. "Family", "EquipLocalName", "EquipLocalID", "EquipID", "CodeType"
  454. ]
  455. },
  456. {
  457. "Name": "building",
  458. "Projection": [
  459. "BuildLocalName", "BuildName", "BuildID"
  460. ]
  461. },
  462. {
  463. "Name": "floor",
  464. "Projection": [
  465. "FloorLocalName", "FloorName", "FloorID"
  466. ]
  467. }
  468. ],
  469. Filters: `category='${this.mess.deviceId}'`,
  470. PageSize: this.batchPage.size,
  471. Orders: "createTime desc, EquipID desc",
  472. PageNumber: this.batchPage.currentPage,
  473. "Projection": [
  474. "BuildingId", "FloorId", "Category", "EquipLocalName", "EquipLocalID", "EquipID", "BIMID"
  475. ]
  476. };
  477. if (this.mess.buildId == "noKnow") {
  478. params.Filters += `;buildingId isNull`
  479. } else if (this.mess.buildId && this.mess.buildId != "all") {
  480. params.Filters += `;buildingId='${this.mess.buildId}'`
  481. }
  482. if (this.mess.floorId == "noKnow") {
  483. params.Filters += `;floorId isNull`
  484. } else if (this.mess.floorId && this.mess.floorId != "all") {
  485. params.Filters += `;floorId='${this.mess.floorId}'`
  486. }
  487. queryEquip(params, res => {
  488. this.allObject = res.Content
  489. this.batchPage.total = res.Total
  490. })
  491. }
  492. },
  493. //获取动态参数
  494. getBatch(data) {
  495. let param = {
  496. secret: this.secret,
  497. ProjId: this.projectId,
  498. data: {
  499. criterias: []
  500. }
  501. }
  502. //一级遍历list
  503. this.tableHeader.map(head => {
  504. //如果一级标签为动态参数或者设定参数放入数据等待请求
  505. if (
  506. head.InputMode == "L" ||
  507. head.InputMode == "L1" ||
  508. head.InputMode == "L2" ||
  509. head.InputMode == "M"
  510. ) {
  511. data.map(item => {
  512. let cur = tools.dataForKey(item, head.Path);
  513. if (cur) {
  514. param.data.criterias.push({
  515. id: item.EquipID,
  516. code: head.InfoPointCode
  517. });
  518. }
  519. });
  520. }
  521. })
  522. if (param.data.criterias.length) {
  523. BeatchQueryParam(param, res => {
  524. if (!this.onlyRead) {
  525. return false
  526. }
  527. this.tableData = data.map(item => {
  528. res.Content.map(child => {
  529. if (item.EquipID == child.id) {
  530. if (!!child.data || child.data == 0) {
  531. this.tableHeader.map(head => {
  532. if (head.InfoPointCode == child.code) {
  533. tools.setDataForKey(item, head.Path, child.data);
  534. }
  535. });
  536. } else {
  537. this.tableHeader.map(head => {
  538. if (head.InfoPointCode == child.code) {
  539. tools.setDataForKey(
  540. item,
  541. head.Path,
  542. child.error ? child.value ? "表号功能号格式错误" : "表号功能号不存在" : "暂未采集到实时数据"
  543. );
  544. }
  545. });
  546. }
  547. }
  548. })
  549. return item
  550. })
  551. this.hot.loadData(this.tableData)
  552. })
  553. }
  554. },
  555. //修改资产
  556. changeAssetsFalg() {
  557. if (this.linkNameFalg) {
  558. this.linkNameFalg = false
  559. } else {
  560. this.$confirm('<p>真的要在这里修改设备关联的资产么?</p><p>真的能通过列表信息找到想关联的资产么?</p><p>在这里修改关联的资产一定是因为之前关联错了要修改么?</p>', '提示', {
  561. dangerouslyUseHTMLString: true,
  562. confirmButtonText: '没错!我要改关联的资产',
  563. cancelButtonText: '我就点开看看',
  564. confirmButtonClass: 'cancelButtonClass',
  565. cancelButtonClass: 'cancelButtonClass'
  566. }).then(_ => {
  567. this.linkNameFalg = true
  568. }).catch(_ => {
  569. this.$message("取消")
  570. })
  571. }
  572. },
  573. //撤回
  574. undo() {
  575. this.hot.undo();
  576. },
  577. //刷新-switch改变
  578. reset() {
  579. this.getTableData();
  580. },
  581. //添加设备
  582. addDevice() {
  583. this.myDialog.addDevice = true
  584. if (this.mess.deviceId) {
  585. this.$nextTick(() => {
  586. this.$refs.cascader.setValue(this.mess.deviceId)
  587. })
  588. }
  589. },
  590. //下一步
  591. toAddDevice() {
  592. if (this.addData.deviceId) {
  593. this.$router.push({
  594. path: "/ledger/deviceadd",
  595. query: this.addData
  596. });
  597. }
  598. },
  599. //选择设备类型-添加设备
  600. changeAddType(val) {
  601. this.addData.deviceId = val.code;
  602. this.addData.name = val.facility;
  603. this.addData.showType = this.showType;
  604. },
  605. //下载
  606. download() {
  607. if (!this.onlyRead) {
  608. if (!!this.hot) {
  609. let fileName = this.mess.name + "-页数:" + this.page.currentPage + "-个数:" + this.tableData.length + "-总个数:" + this.page.total
  610. this.hot.getPlugin('exportFile').downloadFile("csv", {
  611. filename: fileName,
  612. columnHeaders: true,
  613. exportHiddenRows: true,
  614. exportHiddenColumns: true,
  615. rowHeaders: true
  616. })
  617. } else {
  618. this.$message("请确定存在表格")
  619. }
  620. } else {
  621. this.$message("下载需在编辑状态下")
  622. }
  623. },
  624. //格式化表头
  625. formatHeaderData(list) {
  626. let arr = tools.copyArr(list)
  627. let data = showTools.headerTextFilter(arr, 'equipment', this.onlyRead, this.showType, true)
  628. if (this.showParts) {
  629. data.unshift("操作", "当前关联的资产", "所属系统实例", "包含的部件");
  630. } else {
  631. data.unshift("操作", "当前关联的资产", "所属系统实例");
  632. }
  633. if (this.showType == "all" && this.showParts) {
  634. data.splice(6, 0, "所属建筑楼层")
  635. } else if (this.showType == "all" && !this.showParts) {
  636. data.splice(5, 0, "所属建筑楼层")
  637. }
  638. return data;
  639. },
  640. //格式化表内容
  641. formatHeaderType(list) {
  642. let arr = tools.copyArr(list)
  643. let data = showTools.headerTypeFilter(arr, 'equipment', this.onlyRead, this.showType, true)
  644. if (this.showParts) {
  645. data.unshift(
  646. {
  647. data: "caozuo",
  648. renderer: tools.lookDetails,
  649. readOnly: true
  650. },
  651. {
  652. data: "LinkEquipLocalName",
  653. readOnly: true,
  654. renderer: tools.LinkEquipLocalName
  655. }, {
  656. data: "LinkSystem",
  657. renderer: text.systemList,
  658. readOnly: true
  659. }, {
  660. data: "Count",
  661. readOnly: true,
  662. renderer: tools.lookDetails
  663. }
  664. );
  665. } else {
  666. data.unshift(
  667. {
  668. data: "caozuo",
  669. renderer: tools.lookDetails,
  670. readOnly: true
  671. },
  672. {
  673. data: "LinkEquipLocalName",
  674. readOnly: true,
  675. renderer: tools.LinkEquipLocalName
  676. }, {
  677. data: "LinkSystem",
  678. renderer: text.systemList,
  679. readOnly: true
  680. }
  681. );
  682. }
  683. if (this.showType == "all" && this.showParts) {
  684. data.splice(6, 0, {
  685. data: "flowBuild",
  686. renderer: tools.customDropdownRenderer,
  687. editor: "chosen",
  688. chosenOptions: {
  689. data: this.buildFloorData
  690. },
  691. readOnly: this.onlyRead
  692. })
  693. } else if (this.showType == "all" && !this.showParts) {
  694. data.splice(5, 0, {
  695. data: "flowBuild",
  696. renderer: tools.customDropdownRenderer,
  697. editor: "chosen",
  698. chosenOptions: {
  699. data: this.buildFloorData
  700. },
  701. readOnly: this.onlyRead
  702. })
  703. }
  704. return data;
  705. },
  706. //初始化插件
  707. initTable() {
  708. var container = document.getElementById("handsontable");
  709. let winHeight = document.documentElement.clientHeight;
  710. if (this.hot) {
  711. this.hot.destroy();
  712. this.hot = null;
  713. }
  714. this.hot = new Handsontable(container, {
  715. data: this.tableData,
  716. fixedColumnsLeft: this.showParts?6:5,
  717. colHeaders: this.formatHeaderData(this.tableHeader), //表头文案
  718. columns: this.formatHeaderType(this.tableHeader), //数据显示格式
  719. filters: true,
  720. maxRows: this.tableData.length,
  721. height: winHeight - 335,
  722. columnSorting: true, //添加排序
  723. sortIndicator: true, //添加排序
  724. renderAllRows: true,
  725. // colWidths: 200,
  726. autoColumnSize: true,
  727. language: "zh-CN",
  728. manualColumnResize: true,
  729. manualColumnMove: true,
  730. dropdownMenu: [
  731. "filter_by_condition",
  732. "filter_by_value",
  733. "filter_action_bar"
  734. ],
  735. contextMenu: this.onlyRead ? false : {
  736. items: {
  737. remove_row: {
  738. name: "删除选中设备"
  739. }
  740. }
  741. },
  742. // 事件
  743. afterChange: this.handleUpdataTable, //修改后
  744. afterFilter: this.trimmedRows, //排序前
  745. afterRemoveRow: this.handleDeleteTableRow, //右键删除
  746. afterOnCellMouseDown: this.eventClick //鼠标点击
  747. });
  748. let pro = document.getElementById("hot-display-license-info");
  749. if (!!pro) {
  750. pro.parentNode.removeChild(pro);
  751. }
  752. this.isLoading = false;
  753. },
  754. //表格中的点击
  755. eventClick(el, rowArr) {
  756. //点击的是表头
  757. if (rowArr.row < 0) {
  758. return;
  759. }
  760. //被筛选过后的数组
  761. let trimmedArr = this.trimmedRows();
  762. //是否启用了排序
  763. let isSort = this.hot.getPlugin("columnSorting").isSorted();
  764. if (trimmedArr.length && isSort) {
  765. let sortArr = this.myHotArr.getPlugin("columnSorting").rowsMapper
  766. .__arrayMap;
  767. let infos = this.tableData[trimmedArr[sortArr[rowArr.row]]];
  768. this.getInfors(infos, {row: sortArr[rowArr.row], col: rowArr.col}, el);
  769. } else if (isSort) {
  770. //排序后的数组
  771. let sortArr = this.hot.getPlugin("columnSorting").rowsMapper.__arrayMap;
  772. let infos = this.tableData[sortArr[rowArr.row]];
  773. this.getInfors(infos, {row: sortArr[rowArr.row], col: rowArr.col}, el);
  774. } else if (trimmedArr.length) {
  775. let infos = this.tableData[trimmedArr[rowArr.row]];
  776. this.getInfors(infos, {row: trimmedArr[rowArr.row], col: rowArr.col}, el);
  777. } else {
  778. let infos = this.tableData[rowArr.row];
  779. this.getInfors(infos, rowArr, el);
  780. }
  781. },
  782. // 更新
  783. handleUpdataTable(changeData, source) {
  784. if (!this.onlyRead && source != 'ObserveChanges.change') {
  785. if (changeData) {
  786. let trimmedArr = this.trimmedRows();
  787. let param = handsonUtils.getParam(changeData, source, this.hot, trimmedArr);
  788. let data = [];
  789. for (let i = 0; i < param.length; i++) {
  790. data.push(param[i]);
  791. }
  792. //如果data中包含/且data长度为1,将其转换成.
  793. if (changeData.length == 1 && changeData[0][1].indexOf("/") > 0) {
  794. changeData[0][1] = changeData[0][1].split("/").join(".")
  795. }
  796. //存在data进行修改请求
  797. if (data && data.length) {
  798. this.updateBusiness(data, changeData);
  799. }
  800. }
  801. }
  802. },
  803. //删除设备
  804. handleDeleteTableRow() {
  805. let params = tools.differenceArr(this.tableData, this.copyMain)
  806. let _this = this
  807. if (params.length < 1) {
  808. return
  809. }
  810. let param = []
  811. params.map(item => {
  812. this.deleteCode = item.Category
  813. param.push({EquipID: item.EquipID})
  814. })
  815. this.$confirm("此操作将删除设备,是否继续?", "提示", {
  816. confirmButtonText: '确定',
  817. cancelButtonText: '取消',
  818. type: 'warning'
  819. }).then(() => {
  820. this.removeDevice(param)
  821. }).catch(() => {
  822. this.reset()
  823. this.$message("取消删除")
  824. })
  825. },
  826. // 删除设备
  827. async removeDevice(param) {
  828. await deleteEquip(param, res => {
  829. this.$message.success("删除成功")
  830. this.$emit('close', {code: this.deleteCode})
  831. // this.getTableData()
  832. })
  833. },
  834. // 更新
  835. updateBusiness(data, change) {
  836. let param = {
  837. Content: [],
  838. Projection: []
  839. }, keyList = [];
  840. //生成要修改字段列表
  841. change.map(item => {
  842. let key = item[1].split(".")[0]
  843. if (key == "flowBuild" && keyList.indexOf(key) == -1) {
  844. keyList.push("BuildingId", "FloorId")
  845. param.Projection.push("BuildingId", "FloorId")
  846. }
  847. if (item[1] && keyList.indexOf(key) == -1 && item[1] != 'PropertyId') {
  848. keyList.push(key);
  849. }
  850. if (item[1] && item[3] == "" && param.Projection.indexOf(key) == -1 && item[1] != 'PropertyId') {
  851. param.Projection.push(key);
  852. }
  853. });
  854. //生成对应修改数据
  855. data.map((item, index) => {
  856. keyList.map(value => {
  857. if (value == "BuildingId") {
  858. let itemData = tools.dataForKey(item, "flowBuild")
  859. if (itemData == "") {
  860. tools.setDataForKey(item, "BuildingId", null)
  861. tools.setDataForKey(item, "FloorId", null)
  862. } else {
  863. let BuildingId = itemData.split("-")[0]
  864. let FloorId = itemData.split("-")[1]
  865. if (BuildingId && FloorId) {
  866. tools.setDataForKey(item, "BuildingId", BuildingId)
  867. tools.setDataForKey(item, "FloorId", FloorId)
  868. } else if (BuildingId && !FloorId) {
  869. tools.setDataForKey(item, "BuildingId", BuildingId)
  870. tools.setDataForKey(item, "FloorId", null)
  871. }
  872. }
  873. } else {
  874. let itemData = tools.dataForKey(item, value)
  875. tools.setDataForKey(item, value, itemData == "" ? null : itemData)
  876. }
  877. });
  878. param.Content.push(item);
  879. });
  880. updateEquip(param, res => {
  881. });
  882. },
  883. //修改设备类型
  884. changeCader() {
  885. if (this.mess.deviceId) {
  886. let param = {
  887. data: {
  888. Filters: `EquipCode='${this.mess.deviceId}'`,
  889. PageNumber: 1,
  890. PageSize: 50
  891. }
  892. }
  893. getEquipBelongs(param, res => {
  894. if (res.Content.length) {
  895. this.deviceType.assetType = res.Content[0].Family
  896. this.deviceType.assetName = res.Content[0].FamilyName
  897. }
  898. })
  899. }
  900. },
  901. // 接受维护信息传来的code,显示弹窗
  902. fourVendors(code) {
  903. this.firmDataType = 'dialog'
  904. switch (code) {
  905. //品牌型号弹窗
  906. case 'DPManufacturerID':
  907. // this.dataFirmType = 'dia'
  908. this.myDialog.firm = true;
  909. break;
  910. //供应商信息弹窗
  911. case 'DPSupplierID':
  912. this.myDialog.supplier = true;
  913. break;
  914. //维修商信息弹窗
  915. case 'DPMaintainerID':
  916. this.myDialog.maintainer = true;
  917. break;
  918. //保险公司信息
  919. case 'DPInsurerID':
  920. this.myDialog.insurer = true;
  921. break;
  922. }
  923. },
  924. forValue(arr, val) {
  925. let enclosure = []
  926. arr && arr.length && arr.map(i => {
  927. if (i.Path == val) {
  928. enclosure = i.value
  929. }
  930. })
  931. return enclosure
  932. },
  933. multiples(val) {
  934. this.firmDataType = 'dialog'
  935. switch (val) {
  936. case 'LedgerParam.InsuranceDoc.InsuranceFile': //保险文件
  937. this.filesArr = this.forValue(this.newEnclosure, val) ? this.forValue(this.newEnclosure, val) : [];
  938. this.infoType = val;
  939. this.myDialog.uploadFiles = true;
  940. break;
  941. case 'LedgerParam.PhotoDoc.Archive': //设备文档
  942. this.filesArr = this.forValue(this.newEnclosure, val) ? this.forValue(this.newEnclosure, val) : [];
  943. this.infoType = val;
  944. this.myDialog.uploadFiles = true;
  945. break;
  946. case 'LedgerParam.Siteinstall.CheckReport': //安装质检报告
  947. this.filesArr = this.forValue(this.newEnclosure, val) ? this.forValue(this.newEnclosure, val) : [];
  948. this.infoType = val;
  949. this.myDialog.uploadFiles = true;
  950. break;
  951. case 'LedgerParam.OperationMainte.MaintainManual': //维修保养手册
  952. this.filesArr = this.forValue(this.newEnclosure, val) ? this.forValue(this.newEnclosure, val) : [];
  953. this.infoType = val;
  954. this.myDialog.uploadFiles = true;
  955. break;
  956. case 'LedgerParam.SupplyPurchase.ApproachingAcceptance': //进场验收单
  957. this.filesArr = this.forValue(this.newEnclosure, val) ? this.forValue(this.newEnclosure, val) : [];
  958. this.infoType = val;
  959. this.myDialog.uploadFiles = true;
  960. break;
  961. case 'LedgerParam.SupplyPurchase.AcceptanceReport': //验收报告
  962. this.filesArr = this.forValue(this.newEnclosure, val) ? this.forValue(this.newEnclosure, val) : [];
  963. this.infoType = val;
  964. this.myDialog.uploadFiles = true;
  965. break;
  966. case 'LedgerParam.PhotoDoc.OperationManual': //操作说明书
  967. this.filesArr = this.forValue(this.newEnclosure, val) ? this.forValue(this.newEnclosure, val) : [];
  968. this.infoType = val;
  969. this.myDialog.uploadFiles = true;
  970. break;
  971. case 'LedgerParam.EquipManufactor.OriginalCertificate': //原厂证明
  972. this.filesArr = this.forValue(this.newEnclosure, val) ? this.forValue(this.newEnclosure, val) : [];
  973. this.infoType = val;
  974. this.myDialog.uploadFiles = true;
  975. break;
  976. case 'LedgerParam.EquipManufactor.TestReport': //检测报告
  977. this.filesArr = this.forValue(this.newEnclosure, val) ? this.forValue(this.newEnclosure, val) : [];
  978. this.infoType = val;
  979. this.myDialog.uploadFiles = true;
  980. break;
  981. case 'LedgerParam.PhotoDoc.ProductCertification': //产品合格证
  982. this.filesArr = this.forValue(this.newEnclosure, val) ? this.forValue(this.newEnclosure, val) : [];
  983. this.infoType = val;
  984. this.myDialog.uploadFiles = true;
  985. break;
  986. case 'LedgerParam.Siteinstall.InstallInstruction': //安装说明书
  987. this.filesArr = this.forValue(this.newEnclosure, val) ? this.forValue(this.newEnclosure, val) : [];
  988. this.infoType = val;
  989. this.myDialog.uploadFiles = true;
  990. break;
  991. case 'LedgerParam.PhotoDoc.Drawing': //设备图纸
  992. this.filesArr = this.forValue(this.newEnclosure, val) ? this.forValue(this.newEnclosure, val) : [];
  993. this.infoType = val;
  994. this.myDialog.uploadFiles = true;
  995. break;
  996. case 'LedgerParam.Siteinstall.InstallDrawing': //安装图纸
  997. this.filesArr = this.forValue(this.newEnclosure, val) ? this.forValue(this.newEnclosure, val) : [];
  998. this.infoType = val;
  999. this.myDialog.uploadFiles = true;
  1000. break;
  1001. case 'LedgerParam.SupplyPurchase.SupplierContract': //供应合同
  1002. this.filesArr = this.forValue(this.newEnclosure, val) ? this.forValue(this.newEnclosure, val) : [];
  1003. this.infoType = val;
  1004. this.myDialog.uploadFiles = true;
  1005. break;
  1006. case 'LedgerParam.Siteinstall.InstallPic':
  1007. this.imgsArr = this.forValue(this.newEnclosure, val) ? this.forValue(this.newEnclosure, val) : [];
  1008. this.infoType = val
  1009. this.myDialog.uploadImgs = true;
  1010. break;
  1011. case 'LedgerParam.PhotoDoc.Nameplate':
  1012. this.imgsArr = this.forValue(this.newEnclosure, val) ? this.forValue(this.newEnclosure, val) : [];
  1013. this.infoType = val
  1014. this.myDialog.uploadImgs = true;
  1015. break;
  1016. //设备照片
  1017. case 'LedgerParam.PhotoDoc.Pic':
  1018. this.picsArr = this.forValue(this.newEnclosure, val) ? this.forValue(this.newEnclosure, val) : [];
  1019. this.infoType = val
  1020. this.myDialog.pic = true;
  1021. break;
  1022. }
  1023. },
  1024. getInfors(infos, row, el) {
  1025. let val = this.hot.colToProp(row.col);
  1026. let inputData = this.inputMap[val];
  1027. this.row = row.row;
  1028. this.messKey = val;
  1029. this.firmDataType = 'row'
  1030. lStorage.set('screen_data', { path: this.$route.path, data: { equip: infos } })
  1031. switch (val) {
  1032. //操作
  1033. case 'caozuo':
  1034. // window.open(`http://adm.sagacloud.cn:8058/spread?id=${infos.EquipID}&pid=${this.projectId}&secret=${this.secret}`,"_blank")
  1035. // this.$message("开发中...")
  1036. this.$router.push({
  1037. path: "deviceDetails",
  1038. query: {
  1039. type: this.mess.deviceId,
  1040. equipId: infos.EquipID,
  1041. equipName: infos.EquipLocalName?infos.EquipLocalName:infos.EquipName?infos.EquipName:'',
  1042. equipCode: infos.EquipLocalID?infos.EquipLocalID:'',
  1043. data: this.tableData.map(item => {
  1044. return {
  1045. value: item.EquipID,
  1046. label: item.EquipLocalName?item.EquipLocalName:item.EquipName?item.EquipName:''
  1047. }
  1048. })
  1049. }
  1050. })
  1051. return false
  1052. //设备二维码图片
  1053. case 'EquipQRCode':
  1054. this.qrcodeUrl = this.tableData[row.row].EquipQRCode;
  1055. if (!!this.qrcodeUrl) {
  1056. this.myDialog.qrcode = true;
  1057. } else {
  1058. this.$message("此设备没有设备二维码");
  1059. }
  1060. return false
  1061. //BIM模型中坐标
  1062. case 'BIMLocation':
  1063. this.bimcodeobj = this.tableData[row.row];
  1064. if (Object.keys(this.bimcodeobj).length>0) {
  1065. this.myDialog.bimcode = true;
  1066. } else {
  1067. this.$message("此设备没有BIM模型中坐标");
  1068. }
  1069. return false
  1070. //关联系统
  1071. case 'LinkSystem':
  1072. this.curDevice = infos.EquipID;
  1073. this.systemList = this.tableData[row.row].LinkSystem || [];
  1074. this.myDialog.systemType = true;
  1075. return false
  1076. //关联资产
  1077. case 'LinkEquipLocalName':
  1078. if (!this.onlyRead) {
  1079. this.myDialog.changeRea = true;
  1080. }
  1081. return false
  1082. //品牌型号弹窗
  1083. case 'DPManufacturerID':
  1084. if (!this.onlyRead) {
  1085. this.myDialog.firm = true;
  1086. }
  1087. return false
  1088. //供应商信息弹窗
  1089. case 'DPSupplierID':
  1090. if (!this.onlyRead) {
  1091. this.myDialog.supplier = true;
  1092. }
  1093. return false
  1094. //维修商信息弹窗
  1095. case 'DPMaintainerID':
  1096. if (!this.onlyRead) {
  1097. this.myDialog.maintainer = true;
  1098. }
  1099. return false
  1100. //保险公司信息
  1101. case 'DPInsurerID':
  1102. if (!this.onlyRead) {
  1103. this.myDialog.insurer = true;
  1104. }
  1105. return false
  1106. //供应合同编号
  1107. case 'LedgerParam.SupplyPurchase.SupplierContractID':
  1108. if (!this.onlyRead) {
  1109. let ContractIDflag = null;
  1110. let DPSdata = this.tableData[row.row].DPSupplierID;
  1111. if (DPSdata) {
  1112. ContractIDflag = DPSdata.split("-")[0];
  1113. }
  1114. if (!!ContractIDflag) {
  1115. this.id = ContractIDflag;
  1116. this.myDialog.supply = true;
  1117. } else {
  1118. this.$message("请先选择供应商");
  1119. }
  1120. }
  1121. return false
  1122. //保险单号
  1123. case 'LedgerParam.InsuranceDoc.InsuranceNum':
  1124. if (!this.onlyRead) {
  1125. let DPInsurerIDflag = null;
  1126. let DPIdata = this.tableData[row.row].DPInsurerID;
  1127. if (DPIdata) {
  1128. DPInsurerIDflag = DPIdata.split("-")[0];
  1129. }
  1130. if (!!DPInsurerIDflag) {
  1131. this.id = DPInsurerIDflag;
  1132. this.myDialog.guarantee = true;
  1133. } else {
  1134. this.$message("请先选择保险商");
  1135. }
  1136. }
  1137. return false
  1138. //保险文件--设备文档--安装质检报告
  1139. case 'LedgerParam.InsuranceDoc.InsuranceFile': //保险文件
  1140. case 'LedgerParam.PhotoDoc.Archive': //设备文档
  1141. case 'LedgerParam.Siteinstall.CheckReport': //安装质检报告
  1142. case 'LedgerParam.OperationMainte.MaintainManual': //维修保养手册
  1143. case 'LedgerParam.SupplyPurchase.ApproachingAcceptance': //进场验收单
  1144. case 'LedgerParam.SupplyPurchase.AcceptanceReport': //验收报告
  1145. case 'LedgerParam.PhotoDoc.OperationManual': //操作说明书
  1146. case 'LedgerParam.EquipManufactor.OriginalCertificate': //原厂证明
  1147. case 'LedgerParam.EquipManufactor.TestReport': //检测报告
  1148. case 'LedgerParam.PhotoDoc.ProductCertification': //产品合格证
  1149. case 'LedgerParam.Siteinstall.InstallInstruction': //安装说明书
  1150. case 'LedgerParam.SupplyPurchase.SupplierContract': //供应合同
  1151. case 'LedgerParam.PhotoDoc.Drawing': //设备图纸
  1152. case 'LedgerParam.Siteinstall.InstallDrawing': //安装图纸
  1153. let IPSdata = tools.dataForKey(this.tableData[row.row], val);
  1154. this.filesArr = IPSdata ? IPSdata : [];
  1155. if (!this.onlyRead || this.filesArr.length) {
  1156. this.myDialog.uploadFiles = true;
  1157. }
  1158. return false
  1159. //安装照片--设备铭牌照片
  1160. case 'LedgerParam.Siteinstall.InstallPic':
  1161. case 'LedgerParam.PhotoDoc.Nameplate':
  1162. let SSPPdata = tools.dataForKey(this.tableData[row.row], val);
  1163. this.imgsArr = SSPPdata ? SSPPdata : [];
  1164. if (!this.onlyRead || this.imgsArr.length) {
  1165. this.myDialog.uploadImgs = true;
  1166. }
  1167. return false
  1168. //设备照片
  1169. case 'LedgerParam.PhotoDoc.Pic':
  1170. let Pdata = tools.dataForKey(this.tableData[row.row], val);
  1171. this.picsArr = Pdata ? Pdata : [];
  1172. if (!this.onlyRead || this.picsArr.length) {
  1173. this.myDialog.pic = true;
  1174. }
  1175. return false
  1176. //包含的部件字段
  1177. case 'Count':
  1178. let countUrl = this.onlyRead ? '/ledger/parts' : '/ledger/partsmanage';
  1179. this.$router.push({path: countUrl, query: {
  1180. deviceId: infos.EquipID,
  1181. typeId: this.mess.deviceId,
  1182. pageNo: this.page.currentPage,
  1183. pageSize: this.page.size
  1184. }});
  1185. return false
  1186. default:
  1187. break;
  1188. }
  1189. if (!this.onlyRead && !inputData.Editable) {
  1190. this.$message("该信息点的值为自动生成,不可人工维护!");
  1191. return false;
  1192. }
  1193. if (!this.onlyRead && showTools.InputModeArr.indexOf(inputData.InputMode) == '-1') {
  1194. this.updateInfoPoint = val;
  1195. this.updateInput = tools.dataForKey(this.tableData[row.row], val);
  1196. this.myDialog.update = true;
  1197. return false;
  1198. }
  1199. },
  1200. //关闭临时维护弹窗回调
  1201. handleCloseUpdate() {
  1202. this.updateInputShow = false
  1203. this.updateInfoPoint = ''
  1204. this.updateInput = ''
  1205. },
  1206. //更新临时维护信息点
  1207. handleClickUpdate() {
  1208. tools.setDataForKey(this.tableData[this.row], this.updateInfoPoint, this.updateInput)
  1209. this.handleUpdataTable([[this.row, this.updateInfoPoint, null, this.updateInput]], "edit")
  1210. this.updateInputShow = false
  1211. this.myDialog.update = false
  1212. this.updateInput = ''
  1213. },
  1214. //获取被筛选掉的行号
  1215. trimmedRows() {
  1216. var plugin = this.hot.getPlugin("trimRows").trimmedRows;
  1217. let dataLength = this.tableData.length;
  1218. let dataArr = new Array();
  1219. for (let i = 0; i < dataLength; i++) {
  1220. dataArr.push(i);
  1221. }
  1222. if (plugin.length <= 0) {
  1223. dataArr = undefined;
  1224. } else {
  1225. dataArr = this.array_diff(dataArr, plugin);
  1226. }
  1227. return dataArr || [];
  1228. },
  1229. //去除数组中相同的元素
  1230. array_diff(a, b) {
  1231. for (var i = 0; i < b.length; i++) {
  1232. for (var j = 0; j < a.length; j++) {
  1233. if (a[j] == b[i]) {
  1234. a.splice(j, 1);
  1235. j = j - 1;
  1236. }
  1237. }
  1238. }
  1239. return a;
  1240. },
  1241. //如果选择供应商之后
  1242. supplierChange(data, type) {
  1243. if (type === 'dialog') {
  1244. let firm = {...data, num: 8}
  1245. this.firmName = firm
  1246. } else {
  1247. tools.setDataForKey(this.tableData[this.row], "DPSupplierID", data.venderId)
  1248. tools.setDataForKey(this.tableData[this.row], "LedgerParam.SupplyPurchase.Supplier", data.name)
  1249. this.handleUpdataTable(
  1250. [
  1251. [this.row, "DPSupplierID", null, data.venderId],
  1252. [this.row, "LedgerParam.SupplyPurchase.Supplier", null, data.name]
  1253. ],
  1254. "edit"
  1255. )
  1256. // this.handleUpdataTable([[this.row, "LedgerParam.SupplyPurchase.Supplier", null, data.name]], "edit")
  1257. }
  1258. },
  1259. //供应合同编号
  1260. supplyChange(data) {
  1261. tools.setDataForKey(this.tableData[this.row], "LedgerParam.SupplyPurchase.SupplierContractID", {id: data})
  1262. },
  1263. //保险单号-保险文件
  1264. guaranteeChange(data) {
  1265. for (let key in data) {
  1266. this.utilToKey(key, "insuranceNo", data, "InsuranceNum")
  1267. if (key == "contractFile") {
  1268. if (!!data[key]) {
  1269. data[key] = [data[key]]
  1270. }
  1271. }
  1272. this.utilToKey(key, "contractFile", data, "InsuranceFile")
  1273. }
  1274. },
  1275. //选择型号修改
  1276. firmChange(data, type) {
  1277. if (type === 'dialog') { // 如果是批量信息维护
  1278. let venderName = data.venderName ? data.venderName : '空'
  1279. let brandName = data.brandName ? data.brandName : '空'
  1280. let name = data.name ? data.name : '空'
  1281. let firm = {
  1282. ...data,
  1283. num: 2,
  1284. Specification: data.name,
  1285. name: `${venderName}/${brandName}/${name}`
  1286. }
  1287. this.firmName = firm //批量维护dialog显示对象的字段
  1288. } else { //如果是表格操作
  1289. tools.setDataForKey(this.tableData[this.row], "DPManufacturerID", data.venderId)//生产商ID
  1290. tools.setDataForKey(this.tableData[this.row], "DPBrandID", data.brandId)//品牌ID
  1291. tools.setDataForKey(this.tableData[this.row], "DPSpecificationID", data.specificationId)//型号ID
  1292. tools.setDataForKey(this.tableData[this.row], "LedgerParam.EquipManufactor.Manufacturer", data.venderName)
  1293. tools.setDataForKey(this.tableData[this.row], "LedgerParam.EquipManufactor.Brand", data.brandName)
  1294. tools.setDataForKey(this.tableData[this.row], "LedgerParam.EquipManufactor.Specification", data.name)
  1295. this.handleUpdataTable(
  1296. [
  1297. [this.row, "DPManufacturerID", null, data.venderId],
  1298. [this.row, "DPBrandID", null, data.brandId],
  1299. [this.row, "DPSpecificationID", null, data.specificationId],
  1300. [this.row, "LedgerParam.EquipManufactor.Manufacturer", null, data.venderName],
  1301. [this.row, "LedgerParam.EquipManufactor.Brand", null, data.brandName],
  1302. [this.row, "LedgerParam.EquipManufactor.Specification", null, data.name]
  1303. ],
  1304. "edit"
  1305. )
  1306. // this.handleUpdataTable([[this.row, "LedgerParam.EquipManufactor.Brand", null, data.brand]], "edit")
  1307. // this.handleUpdataTable([[this.row, "LedgerParam.EquipManufactor.Specification", null, data.name]], "edit")
  1308. }
  1309. },
  1310. //保险商变更
  1311. changeInsurer(data, type) {
  1312. if (type === 'dialog') {
  1313. let firm = {...data, num: 42}
  1314. this.firmName = firm
  1315. } else {
  1316. tools.setDataForKey(this.tableData[this.row], "DPInsurerID", data.venderId)
  1317. tools.setDataForKey(this.tableData[this.row], "LedgerParam.InsuranceDoc.Insurer", data.name)
  1318. this.handleUpdataTable(
  1319. [
  1320. [this.row, "DPInsurerID", null, data.venderId],
  1321. [this.row, "LedgerParam.InsuranceDoc.Insurer", null, data.name]
  1322. ],
  1323. "edit"
  1324. )
  1325. // this.handleUpdataTable([[this.row, "LedgerParam.InsuranceDoc.Insurer", null, data.name]], "edit")
  1326. }
  1327. },
  1328. //维修商变更
  1329. changeMaintainer(data, type) {
  1330. if (type === 'dialog') {
  1331. let firm = {...data, num: 35}
  1332. this.firmName = firm
  1333. } else {
  1334. tools.setDataForKey(this.tableData[this.row], "DPMaintainerID", data.venderId)
  1335. tools.setDataForKey(this.tableData[this.row], "LedgerParam.OperationMainte.Maintainer", data.name)
  1336. this.handleUpdataTable(
  1337. [
  1338. [this.row, "DPMaintainerID", null, data.venderId],
  1339. [this.row, "LedgerParam.OperationMainte.Maintainer", null, data.name]
  1340. ],
  1341. "edit"
  1342. )
  1343. // this.handleUpdataTable([[this.row, "LedgerParam.OperationMainte.Maintainer", null, data.name]], "edit")
  1344. }
  1345. },
  1346. //修改关联的资产
  1347. changeProperty(val) {
  1348. this.setDataToMain(val.PropertyId, 'PropertyId', this.row);
  1349. this.setDataToMain(val.LinkEquipLocalName, 'LinkEquipLocalName', this.row);
  1350. },
  1351. //上传文件弹窗触发事件
  1352. fileChange(keys, type, file) {
  1353. if (type === 'dialog') {
  1354. // this.information = keys
  1355. this.newEnclosure.forEach(i => {
  1356. if (i.Path == keys) {
  1357. this.$set(i, 'value', file)
  1358. }
  1359. return i
  1360. })
  1361. } else {
  1362. this.setDataToMain(keys, this.messKey, this.row);
  1363. }
  1364. },
  1365. //上传图片弹窗触发事件
  1366. imgChange(keys, type, file) {
  1367. if (type === 'dialog') {
  1368. // this.information = keys
  1369. this.newEnclosure.forEach(i => {
  1370. if (i.Path == keys) {
  1371. this.$set(i, 'value', file)
  1372. }
  1373. return i
  1374. })
  1375. } else {
  1376. this.setDataToMain(keys, this.messKey, this.row);
  1377. }
  1378. },
  1379. //关联系统更改
  1380. changeSystemType(data) {
  1381. tools.setDataForKey(this.tableData[this.row], "LinkSystem", data)
  1382. },
  1383. //设备图片弹窗改变事件
  1384. changePics(keys, type,file) {
  1385. if (type === 'dialog') {
  1386. // this.information = keys
  1387. this.newEnclosure.forEach(i => {
  1388. if (i.Path == keys) {
  1389. this.$set(i, 'value', file)
  1390. }
  1391. return i
  1392. })
  1393. } else {
  1394. this.setDataToMain(keys, this.messKey, this.row);
  1395. }
  1396. },
  1397. utilToKey(key, name, data, messName) {
  1398. if (key == name) {
  1399. this.setDataToMain(data[key], messName, this.row)
  1400. }
  1401. },
  1402. //判断是否有值,有值赋值
  1403. setDataToMain(data, key, row) {
  1404. if (!!data && data != '--') {
  1405. if (!!this.tableData[row]) {
  1406. tools.setDataForKey(this.tableData[row], key, data);
  1407. this.handleUpdataTable([[row, key, null, data]], "edit");
  1408. } else {
  1409. this.tableData[row] = {};
  1410. tools.setDataForKey(this.tableData[row], key, data);
  1411. }
  1412. } else {
  1413. tools.setDataForKey(this.tableData[row], key, "");
  1414. }
  1415. },
  1416. // 批量信息维护
  1417. Batch() {
  1418. this.firmDataType = 'dialog'
  1419. this.$refs.batchDialogs.batchDialog = true
  1420. },
  1421. upDataDevice(type, data1, data2) {
  1422. let param = {Content: data1}
  1423. let param1 = {Content: data2}
  1424. if (type === 1) { //增量
  1425. //LedgerParam
  1426. let filterParam = this.filterCheck(param, 'sole')
  1427. let filterParam1 = this.filterCheck(param1, 'multiple')
  1428. if (filterParam) {
  1429. updateEquip(param, res => {
  1430. });
  1431. }
  1432. if (filterParam1) {
  1433. setTimeout(() => {
  1434. queryUpdate(param1, res => {
  1435. })
  1436. })
  1437. }
  1438. }
  1439. if (type === 2) {//覆盖
  1440. let filterParams = this.filterCheck(param, 'sole')
  1441. if (filterParams) {
  1442. updateEquip(param, res => {
  1443. });
  1444. }
  1445. }
  1446. setTimeout(() => {
  1447. this.getTableData()
  1448. this.getAllData()
  1449. }, 10)
  1450. },
  1451. filterCheck(arr, type) {
  1452. if (type === 'sole') {
  1453. for (let i of arr.Content) {
  1454. return Object.keys(i.LedgerParam).length
  1455. }
  1456. } else if (type === 'multiple') {
  1457. let nArr = [];
  1458. arr.Content.forEach(i => {
  1459. let {EquipID, ...value} = i
  1460. nArr.push({LedgerParam: value})
  1461. })
  1462. for (let j of nArr) {
  1463. return Object.keys(j.LedgerParam).length
  1464. }
  1465. }
  1466. }
  1467. },
  1468. watch: {
  1469. projectId() {
  1470. this.buildFloorData = []
  1471. buildFloor.getData(this.buildFloorData)
  1472. this.tableData = []
  1473. this.mess.deviceId = null
  1474. this.page.total = 0
  1475. },
  1476. showTypes: {
  1477. handler(newName, oldName) {
  1478. if (newName && newName[0] && newName[0].value) {
  1479. this.showType = newName[0].value
  1480. } else {
  1481. this.showType = ""
  1482. }
  1483. },
  1484. immediate: true,
  1485. deep: true
  1486. }
  1487. }
  1488. };
  1489. </script>
  1490. <style lang="less">
  1491. .hanson-bar {
  1492. height: 40px;
  1493. padding: 5px 0;
  1494. font-size: 14px;
  1495. overflow: hidden;
  1496. margin-top: 0;
  1497. line-height: 40px;
  1498. .iconfont {
  1499. font-size: 12px;
  1500. }
  1501. }
  1502. .cancelButtonClass {
  1503. width: 180px;
  1504. }
  1505. </style>