12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292 |
- <template>
- <div>
- <div class="hanson-bar">
- <span
- style="width:20px;float:left;display:block;height:20px;cursor: pointer;"
- @click="changeAssetsFalg"
- >
- <i class="iconfont icon-xiaolian"></i>
- </span>
- <span>当前筛选条件下共{{page.total || '--'}}设备</span>
- <div style="width:390px;float:right;overflow:hidden;">
- <el-button size="small" style='width: 80px;' @click="download" icon="iconfont icon-xiazai">下载</el-button>
- <el-button size="small" style='width: 80px;' @click="addDevice" icon="iconfont icon-tianjia">添加设备</el-button>
- <el-button size="small" style='width: 80px;' @click="reset" icon="iconfont icon-shuaxin">刷新</el-button>
- <el-button size="small" style='width: 80px;' @click="undo" icon="iconfont icon-undo">撤销</el-button>
- </div>
- <div style="width:200px;color:gray;float:right;font-size:10px;">
- <span v-if="!onlyRead">隐藏自动填充的信息点:</span>
- <el-tooltip v-if="!onlyRead" :content="'' + (isWatch ? '隐藏' : '不隐藏')" placement="top">
- <el-switch
- @change="changeWatch"
- v-model="isWatch"
- active-color="#13ce66"
- inactive-color="gray"
- ></el-switch>
- </el-tooltip>
- <span v-if="onlyRead">只看要采集的信息:</span>
- <el-tooltip v-if="onlyRead" :content="'' + (allMess ? '部分' : '全集')" placement="top">
- <el-switch
- @change="changeWatch"
- v-model="allMess"
- active-color="#13ce66"
- inactive-color="gray"
- ></el-switch>
- </el-tooltip>
- </div>
- <div
- style="width:90px;cursor: pointer;color:gray;float:right; font-size:10px;"
- >
- <p v-if="onlyRead" @click="changeRead">
- <i class="iconfont icon-yulan"></i>
- <span>只读模式</span>
- </p>
- <p v-else @click="changeRead">
- <i class="iconfont icon-yulan"></i>
- <span>编辑模式</span>
- </p>
- </div>
- </div>
- <!-- 二维码弹窗 -->
- <qrcode :dialog="dialog" :qrcodeUrl="qrcodeUrl" :addBody="true" ref="qrcode"></qrcode>
- <!-- 型号弹窗 -->
- <firm :mess="{deviceId: deviceType.code}" ref="firm" @changeFirm="firmChange" :dialog="dialog"></firm>
- <!-- 供应商合同弹窗 -->
- <supply-dialog ref="supply" @change="supplyChange" :id="id" :dialog="dialog"></supply-dialog>
- <!-- 供应商弹窗 -->
- <supplier-dialog ref="supplier" @changeSupplier="supplierChange" :dialog="dialog"></supplier-dialog>
- <guarantee-dialog :id="id" ref="guarantee" @change="guaranteeChange" :dialog="dialog"></guarantee-dialog>
- <upload-files-dialog
- :read="onlyRead ? true : false"
- ref="upload"
- @changeFile="fileChange"
- :keysArr="filesArr"
- :dialog="dialog"
- ></upload-files-dialog>
- <upload-img-dialog
- :read="onlyRead ? true : false"
- @changeFile="imgChange"
- :keysArr="imgsArr"
- :dialog="dialog"
- ></upload-img-dialog>
- <maintainer-dialog @changeMaintainer="changeMaintainer" ref="maintainer" :dialog="dialog"></maintainer-dialog>
- <insurer-dialog @changeInsurer="changeInsurer" ref="insurer" :dialog="dialog"></insurer-dialog>
- <pic-dialog
- :read="onlyRead ? true : false"
- :dialog="dialog"
- :keysArr="picsArr"
- @change="changePics"
- ></pic-dialog>
- <system-type :infos="systemId" :graphyId="graphyId" :dialog="dialog"></system-type>
- <div
- v-show="!main || !main.length"
- style="width:100%;text-align:center;font-size:30px;color:gray;"
- >{{ mess.deviceId ? '请选择设备族' : '无设备'}}</div>
- <div v-show="main && main.length" v-loading="loading" id="handsontable" ref="handsontable"></div>
- <div v-show="main && main.length" class="right">
- <my-pagination @change="getMain" :page="page"></my-pagination>
- </div>
- <dialog-assets
- @close="getClose"
- :graphyId="graphyId"
- :assetType="[this.mess.deviceId]"
- ref="assets"
- :dialog="dialog"
- ></dialog-assets>
- <details-dialog :iframeSrc="iframeSrc" v-if="dialog.details" :dialog="dialog"></details-dialog>
- <change-rea @close="reset" :dialog="dialog" :category="category"></change-rea>
- <look-pic :dialog="dialog" :keysArr="picsArr"></look-pic>
- </div>
- </template>
- <script>
- import { getTableHeader, getSpaceFloor, getEquipmentFamily, getBillEquipList, BeatchQueryParam, delBatchList, updateBusiness } from "@/api/scan/request";
- import tools from "@/utils/scan/tools";
- import handsonUtils from "@/utils/hasontableUtils"
- import showTools from "@/utils/handsontable/notShow"
- import text from "@/utils/handsontable/mainText"
- import qrcode from "@/components/ledger/lib/qrcode";
- import firm from "@/components/dialogs/list/firm";
- import supplyDialog from "@/components/dialogs/list/supplyDialog";
- import supplierDialog from "@/components/dialogs/list/supplierDialog";
- import maintainerDialog from "@/components/dialogs/list/maintainerDialog";
- import insurerDialog from "@/components/dialogs/list/insurerDialog";
- import guaranteeDialog from "@/components/dialogs/list/guaranteeDialog";
- import uploadFilesDialog from "@/components/dialogs/list/filesDialog";
- import uploadImgDialog from "@/components/dialogs/list/uploadImgDialog";
- import picDialog from "@/components/dialogs/list/picDialog"
- import systemType from "@/components/dialogs/list/systemType"
- import myPagination from "@/components/ledger/lib/myPagination";
- import dialogAssets from "@/components/dialogs/addDialog/dialogDevice";
- import detailsDialog from "@/components/ledger/lib/detailsDia"
- import changeRea from "@/components/dialogs/changeRea"
- //图片查看
- import lookPic from "@/components/ledger/lib/lookImages"
- //下拉插件
- import "@/assets/js/chosen.jquery.min";
- import "@/assets/js/handsontable-chosen-editor";
- import {mapGetters, mapActions} from "vuex";
- import Handsontable from "handsontable-pro"
- import 'handsontable-pro/dist/handsontable.full.css'
- import zhCN from 'handsontable-pro/languages/zh-CN';
- export default {
- props: ["myParam"],
- components: {
- qrcode, //二维码页面
- firm, //
- supplyDialog,
- supplierDialog,
- guaranteeDialog,
- uploadFilesDialog,
- maintainerDialog,
- insurerDialog,
- uploadImgDialog,
- picDialog,
- myPagination,
- dialogAssets,
- systemType,
- detailsDialog,
- changeRea,
- lookPic
- },
- data() {
- return {
- main: [],
- mess: {},
- headers: null,
- page: {
- size: 50,
- sizes: [10, 30, 50, 100, 150, 200],
- total: 0,
- currentPage: 1
- },
- dialog: {
- qrcode: false, //二维码弹窗
- firm: false, //厂商弹窗
- supply: false, //选择供应合同
- supplier: false, //供应商选择
- guarantee: false, //选择保单
- maintainer: false, //选择维修商
- insurer: false, //选择保险公司
- uploadFiles: false,//上传文件
- uploadImgs: false,//上传单个图片
- pic: false, //多个图片
- addDevice: false,
- systemType: false,
- details: false,//详情页
- changeRea: false,
- lookPic: false,//图片查看
- },
- row: null,//被修改的row
- filesArr: [],//保存临时的文件key
- messKey: null,
- imgsArr: [],//临时保存的图片key数组
- picsArr: [],//临时设备图片keys数组
- projId: "",
- copyMain: null,
- graphyId: null,
- systemId: null,
- assetGroupList: [],
- iframeSrc: "",
- id: 0,
- isWatch: true,
- category: {},
- onlyRead: true,
- allMess: true,
- linkNameFalg: false,
- qrcodeUrl: "",//二维码图片地址
- loading: false,
- EquipmentList: [],//资产族
- deviceType: {},
- floorData: []
- };
- },
- created() {
- this.getEquipmentFamilyList()
- this.getFloorData()
- },
- computed: {
- ...mapGetters("peojMess", [
- "projectId",
- "secret",
- "userId"
- ])
- },
- methods: {
- //获取楼层数据
- getFloorData() {
- let param = {
- ProjId: this.projectId,
- secret: this.secret
- }
- getSpaceFloor(param).then(res => {
- if (res.data.Result == 'success') {
- let data = this.changeArr(res.data.Content), floorData = []
- data.map(item => {
- if (!!item.children) {
- item.children.unshift({
- value: '',
- label: "未明确楼层"
- })
- }
- return item
- })
- data.map(item => {
- if (!!item.children && item.children.length) {
- item.children.map(child => {
- floorData.push({
- Code: item.value + "-" + child.value,
- Name: item.label + "-" + child.label
- })
- })
- }
- })
- this.floorData = floorData
- } else {
- this.$message.error(res.data.ResultMsg)
- }
- }).catch(() => {
- this.$message.error("请求出错")
- })
- },
- //将数组转换成optiosn格式
- changeArr(arr) {
- return arr.map(item => {
- if (item.floors && item.floors.length) {
- return {
- value: item.id,
- label: item.infos.BuildLocalName,
- children: item.floors.map(i => {
- return {
- value: i.id,
- label: i.infos.FloorLocalName || "未知",
- }
- })
- }
- } else {
- return {
- value: item.id,
- label: item.infos.BuildLocalName,
- children: null,
- isChilren: 1,
- }
- }
- })
- },
- changeRead() {
- this.onlyRead = !this.onlyRead
- this.getMain()
- },
- getEquipmentFamilyList() {
- getEquipmentFamily(res => {
- this.EquipmentList = res.Content
- })
- },
- //触发父组件change
- getClose(val) {
- this.$emit("close", val)
- },
- setGraphyId(graphyId, assetGroupList) {
- this.graphyId = graphyId
- this.assetGroupList = assetGroupList
- },
- //获取表头
- getHeaderData(code) {
- this.page.currentPage = 1
- this.mess = code
- this.changeCader()
- if(this.mess.deviceId){
- getTableHeader({
- code: this.mess.deviceId,
- ProjId: this.projectId
- }).then(res => {
- this.headers = res.data.Content;
- this.getMain()
- });
- }
-
- },
- //获取主体数据
- getMain() {
- let _this = this
- this.loading = true
- let param = {
- data: {
- customInfo: true,
- "limit": { // 分页查询, 选填.
- "skip": this.page.size * (this.page.currentPage - 1), // 跳过多少数据
- "count": this.page.size // 查询跳过300条数据之后的50条 (默认按照创建时间从大-->小排序)
- },
- id: "",
- type: [this.mess.deviceId]
- },
- secret: this.secret,
- ProjId: this.projectId
- }
- if (this.mess.buildId == "all") {
- param.data.id = this.mess.ProjId
- } else if (this.mess.buildId == "noKnow") {
- param.data.id = this.mess.ProjId
- param.data.direct = true
- } else if (this.mess.floorId == "noKnow") {
- param.data.id = this.mess.buildId
- param.data.direct = true
- } else if (this.mess.floorId && this.mess.floorId != "all") {
- param.data.id = this.mess.floorId
- } else if (this.mess.floorId == 'all') {
- param.data.id = this.mess.buildId
- } else {
- param.data.id = this.mess.ProjId
- }
- //type存在发送请求
- if (!!this.mess.deviceId) {
- getBillEquipList(param, res => {
- if (res.Result == "success") {
- this.loading = false
- res.Content = res.Content.map(item => {
- item.linkName = item.linkEquipLocalName || item.linkEquipName
- if (!!item.linkFamily) {
- this.assetGroupList.map(child => {
- if (item.linkFamily == child.code) {
- item.linkFamily = child.name
- }
- })
- }
- if (!!item.infos.DPManufacturerID) {
- item.infos.DPManufacturerID = item.infos.DPManufacturerID + "-" + item.infos.Brand + "/" + item.infos.Specification
- }
- if (!!item.infos.DPSupplierID) {
- item.infos.DPSupplierID = item.infos.DPSupplierID + "-" + item.infos.Supplier
- }
- if (!!item.infos.DPMaintainerID) {
- item.infos.DPMaintainerID = item.infos.DPMaintainerID + "-" + item.infos.Maintainer
- }
- if (!!item.infos.DPInsurerID) {
- item.infos.DPInsurerID = item.infos.DPInsurerID + "-" + item.infos.Insurer
- }
- return item
- })
- if (_this.onlyRead) {
- this.getBatch(res.Content)
- }
- _this.main = res.Content
- _this.copyMain = tools.deepCopy(res.Content)
- _this.page.total = res.TotalCount
- if (!!_this.hot) {
- _this.hot.destroy();
- _this.hot = null;
- }
- if (!!res.Content && res.Content.length) {
- _this.initHot();
- }
- } else {
- this.loading = false
- this.$message.error("请求错误:" + res.ResultMsg)
- }
- })
- }
- },
- //获取动态参数
- getBatch(data) {
- let param = {
- secret: this.secret,
- ProjId: this.projectId,
- data: {
- criterias: []
- }
- }
- if (!!data && data.length) {
- //一级遍历list
- data.map(item => {
- if (!!item.infos) {
- // 二级遍历对象infos
- for (let key in item.infos) {
- //判断是否是设定参数和动态参数
- if (!!item.infos[key]) {
- this.headers.map(child => {
- //如果一级标签为动态参数或者设定参数放入数据等待请求
- if (key == child.InfoPointCode && (child.InputMode == "L" || child.InputMode == "L1" || child.InputMode == "L2")) {
- param.data.criterias.push({
- id: item.id,
- code: key
- })
- }
- })
- }
- }
- }
- })
- if (param.data.criterias.length) {
- BeatchQueryParam(param, res => {
- if (!this.onlyRead) {
- return false
- }
- this.main = data.map(item => {
- res.Content.map(child => {
- if (item.id == child.id) {
- if (!!child.data || child.data == 0) {
- item.infos[child.code] = child.data
- } else {
- item.infos[child.code] = child.error ? "表号功能号格式错误" : "表号功能号不存在"
- }
- }
- })
- return item
- })
- this.hot.loadData(this.main)
- })
- }
- }
- },
- changeAssetsFalg() {
- if (this.linkNameFalg) {
- this.linkNameFalg = false
- } else {
- this.$confirm('<p>真的要在这里修改设备关联的资产么?</p><p>真的能通过列表信息找到想关联的资产么?</p><p>在这里修改关联的资产一定是因为之前关联错了要修改么?</p>', '提示', {
- dangerouslyUseHTMLString: true,
- confirmButtonText: '没错!我要改关联的资产',
- cancelButtonText: '我就点开看看'
- }).then(_ => {
- this.linkNameFalg = true
- }).catch(_ => {
- this.$message("取消")
- })
- }
- },
- //switch改变
- changeWatch() {
- this.reset()
- },
- //撤回
- undo() {
- this.hot.undo();
- },
- //刷新
- reset() {
- this.getMain();
- },
- //添加设备
- addDevice() {
- this.dialog.addDevice = true
- this.$nextTick(() => {
- this.$refs.assets.step(0)
- })
- },
- //下载
- download() {
- if (!this.onlyRead) {
- if (!!this.hot) {
- let fileName = this.mess.name + "-页数:" + this.page.currentPage + "-个数:" + this.main.length + "-总个数:" + this.page.total
- this.hot.getPlugin('exportFile').downloadFile("csv", { filename: fileName, columnHeaders: true, exportHiddenRows: true, exportHiddenColumns: true, rowHeaders: true })
- } else {
- this.$message("请确定存在表格")
- }
- } else {
- this.$message("下载需在编辑状态下")
- }
- },
- /**
- * 表头文案处理函数
- * @param list header数组数据
- *
- * @return 处理好的文案
- */
- delHeader(list) {
- let arr = tools.copyArr(list)
- // 如果不是只读状态,添加四大厂商选择
- if (!this.onlyRead) {
- // arr = showTools.arrToArr(arr)
- }
- let readArr = ["A1", "A2", "B1", "C5", "D1", "D2", "X", "L", "L1", "L2", "F1", "F2"]
- if (!this.onlyRead) {
- readArr.push("Own")
- }
- let data = showTools.changeHeader(arr, readArr, this.onlyRead, this.isWatch, this.allMess)
- data.unshift("操作", "当前关联的资产", "所属系统实例");
- return data;
- },
- /**
- * 表头数据处理函数
- * @param list header数组数据
- *
- * @return 处理好的数据格式
- */
- getType(list) {
- let arr = tools.copyArr(list)
- // 如果不是只读状态,添加四大厂商选择
- if (!this.onlyRead) {
- // arr = showTools.arrToArr(arr)
- }
- let data = showTools.showTypes(arr, this.onlyRead, this.isWatch, this.allMess)
- data.map(item => {
- if (
- item.data == "infos." + "Drawing" ||
- item.data == "infos." + "Pic" ||
- item.data == "infos." + "Nameplate" ||
- item.data == "infos." + "InstallPic" ||
- item.data == "infos." + "InstallDrawing"
- ) {
- item.renderer = text.picType
- }
- if (item.data == "infos." + "Archive" ||
- item.data == "infos." + "CheckReport" ||
- item.data == "infos." + "InsuranceFile") {
- item.renderer = text.fileType
- }
- })
- data.unshift(
- {
- data: "caozuo",
- renderer: tools.lookDetails,
- readOnly: true
- },
- {
- data: "linkName",
- readOnly: true
- }, {
- data: "linkSystem",
- renderer: text.systemList,
- readOnly: true
- }
- );
- // data.splice(1, 0, {
- // data: "flowBuild",
- // renderer: tools.customDropdownRenderer,
- // editor: "chosen",
- // chosenOptions: {
- // // multiple: true,//多选
- // data: this.floorData
- // }
- // })
- if (!!this.onlyRead) {
- data.map(item => {
- item.readOnly = true
- })
- }
- return data;
- },
- messShow(item) {
- //二维码
- if (item.infopoint_code == "EquipQRCode") {
- return {
- data: "infos." + item.infopoint_code,
- renderer: text.lookQRCode,
- readOnly: true
- }
- }
- if (item.collection_cmpt_code == "Enum") {
- return {
- data: "infos." + item.infopoint_code,
- renderer: this.customDropdownRenderer,
- editor: "chosen",
- chosenOptions: {
- // multiple: true,//多选
- data: item.dataSource || ""
- }
- };
- } else if (item.collection_cmpt_code == "Num") {
- return {
- data: "infos." + item.infopoint_code,
- type: "numeric",
- numericFormat: {
- pattern: "0,0.00"
- // culture: 'de-DE' // use this for EUR (German),
- // more cultures available on http://numbrojs.com/languages.html
- }
- };
- } else if (item.collection_cmpt_code == "Time") {
- return {
- data: "infos." + item.infopoint_code,
- type: "date",
- dateFormat: "YYYY-MM-DD",
- correctFormat: true
- };
- } else if (item.collection_cmpt_code == "text") {
- return {
- data: "infos." + item.infopoint_code
- };
- } else if (
- (item.info_point_code == "设备ID" ||
- item.info_point_code == "设备名称")
- ) {
- return {
- data: "infos." + item.infopoint_code,
- readOnly: true
- };
- } else if (item.collection_cmpt_code == "checkBox") {
- return {
- data: "infos." + item.infopoint_code,
- renderer: this.customDropdownRenderer,
- editor: "chosen",
- chosenOptions: {
- multiple: true,//多选
- data: item.dataSource || ""
- }
- };
- } else {
- return {
- data: "infos." + item.infopoint_code,
- }
- }
- },
- changeItem(item) {
- //二维码
- if (item.infopoint_code == "EquipQRCode" && item.visible) {
- return {
- data: "infos." + item.infopoint_code,
- renderer: text.lookQRCode,
- readOnly: true
- }
- }
- //厂商选择
- // if ((item.infopoint_code == "Brand" || item.infopoint_code == "Specification") && item.visible) {
- // return {
- // data: "infos." + item.infopoint_code,
- // renderer: tools.lookDetails,
- // readOnly: true
- // }
- // }
- // if (item.infopoint_code == "SupplierContractID" && item.visible) {
- // return {
- // data: "infos." + item.infopoint_code,
- // renderer: tools.lookDetails,
- // readOnly: true
- // }
- // }
- if (item.infopoint_code == "InsuranceNum" && item.visible) {
- //选择保单
- return {
- data: "infos." + item.infopoint_code,
- renderer: tools.lookDetails,
- readOnly: true
- }
- }
- if ((item.infopoint_code == "InsuranceFile" || item.infopoint_code == "Archive") && item.visible) {
- return {
- data: "infos." + item.infopoint_code,
- renderer: tools.lookDetails,
- readOnly: true
- }
- }
- if (
- (
- item.infopoint_code == "InstallPic" ||
- item.infopoint_code == "InstallDrawing" ||
- item.infopoint_code == "Nameplate" ||
- item.infopoint_code == "Pic" ||
- item.infopoint_code == "Drawing"
- ) && item.visible
- ) {
- return {
- data: "infos." + item.infopoint_code,
- renderer: tools.lookDetails,
- readOnly: true
- }
- }
- if (
- (
- item.infopoint_code == "Maintainer" ||
- item.infopoint_code == "Supplier" ||
- item.infopoint_code == "Insurer" ||
- item.infopoint_code == "InsurerContactor"
- )
- && item.visible
- ) {
- return {
- data: "infos." + item.infopoint_code,
- }
- }
- if (item.collection_cmpt_code == "Enum" && item.visible) {
- return {
- data: "infos." + item.infopoint_code,
- renderer: this.customDropdownRenderer,
- editor: "chosen",
- chosenOptions: {
- // multiple: true,//多选
- data: item.dataSource || ""
- }
- };
- } else if (item.collection_cmpt_code == "Num" && item.visible) {
- return {
- data: "infos." + item.infopoint_code,
- type: "numeric",
- numericFormat: {
- pattern: "0,0.00"
- // culture: 'de-DE' // use this for EUR (German),
- // more cultures available on http://numbrojs.com/languages.html
- }
- };
- } else if (item.collection_cmpt_code == "Time" && item.visible) {
- return {
- data: "infos." + item.infopoint_code,
- type: "date",
- dateFormat: "YYYY-MM-DD",
- correctFormat: true
- };
- } else if (item.collection_cmpt_code == "text" && item.visible) {
- return {
- data: "infos." + item.infopoint_code
- };
- } else if (
- (item.info_point_code == "设备ID" ||
- item.info_point_code == "设备名称") && item.visible
- ) {
- return {
- data: "infos." + item.infopoint_code,
- readOnly: true
- };
- } else if (item.collection_cmpt_code == "checkBox" && item.visible) {
- return {
- data: "infos." + item.infopoint_code,
- renderer: this.customDropdownRenderer,
- editor: "chosen",
- chosenOptions: {
- multiple: true,//多选
- data: item.dataSource || ""
- }
- };
- } else if (item.collection_cmpt_code == "Own" && item.visible) {
- return {
- data: "infos." + item.infopoint_code,
- renderer: text.idType,
- }
- } else {
- return undefined
- }
- },
- //初始化插件
- initHot() {
- var container = document.getElementById("handsontable");
- let winHeight = document.documentElement.clientHeight;
- this.hot = new Handsontable(container, {
- data: this.main,
- fixedColumnsLeft: 5,
- colHeaders: this.delHeader(this.headers), //表头文案
- columns: this.getType(this.headers), //数据显示格式
- filters: true,
- maxRows: this.main.length,
- height: winHeight - 100 - 50 - 290,
- columnSorting: true, //添加排序
- sortIndicator: true, //添加排序
- renderAllRows: true,
- // colWidths: 200,
- autoColumnSize: true,
- language: "zh-CN",
- manualColumnResize: true,
- manualColumnMove: true,
- dropdownMenu: [
- "filter_by_condition",
- "filter_by_value",
- "filter_action_bar"
- ],
- contextMenu: {
- items: {
- remove_row: {
- name: "删除选中设备"
- }
- }
- },
- // 事件
- afterChange: this.tdChange, //修改后
- afterFilter: this.trimmedRows, //排序前
- afterRemoveRow: this.romoveFm, //右键删除
- afterOnCellMouseDown: this.eventClick //鼠标点击
- });
- let pro = document.getElementById("hot-display-license-info");
- if (!!pro) {
- pro.parentNode.removeChild(pro);
- }
- this.isLoading = false;
- },
- //表格中的点击
- eventClick(el, rowArr) {
- //点击的是表头
- if (rowArr.row < 0) {
- return;
- }
- //被筛选过后的数组
- let trimmedArr = this.trimmedRows();
- //是否启用了排序
- let isSort = this.hot.getPlugin("columnSorting").isSorted();
- if (trimmedArr.length && isSort) {
- let sortArr = this.myHotArr.getPlugin("columnSorting").rowsMapper
- .__arrayMap;
- let infos = this.main[trimmedArr[sortArr[rowArr.row]]];
- this.getInfors(infos, { row: sortArr[rowArr.row], col: rowArr.col });
- } else if (isSort) {
- //排序后的数组
- let sortArr = this.hot.getPlugin("columnSorting").rowsMapper.__arrayMap;
- let infos = this.main[sortArr[rowArr.row]];
- this.getInfors(infos, { row: sortArr[rowArr.row], col: rowArr.col });
- } else if (trimmedArr.length) {
- let infos = this.main[trimmedArr[rowArr.row]];
- this.getInfors(infos, { row: trimmedArr[rowArr.row], col: rowArr.col });
- } else {
- let infos = this.main[rowArr.row];
- this.getInfors(infos, rowArr);
- }
- },
- tdChange(changeData, source) {
- if (!this.onlyRead) {
- if (changeData) {
- let trimmedArr = this.trimmedRows();
- let param = handsonUtils.getParam(changeData, source, this.hot, trimmedArr);
- let data = [];
- for (let i = 0; i < param.length; i++) {
- data.push(param[i]);
- }
- //如果data中包含/且data长度为1,将其转换成.
- if (changeData.length == 1 && changeData[0][1].indexOf("/") > 0) {
- changeData[0][1] = changeData[0][1].split("/").join(".")
- }
- //存在data进行修改请求
- if (data && data.length) {
- this.updateBusiness(data, changeData);
- }
- }
- }
- },
- //删除资产
- romoveFm() {
- let params = tools.differenceArr(this.main, this.copyMain)
- let _this = this
- if (params.length < 1) {
- return
- }
- let param = {
- secret: this.mess.secret,
- ProjId: this.mess.ProjId,
- data: {
- "criterias": []
- }
- }
- params.map(item => {
- param.data.criterias.push({ id: item.id })
- })
- this.$confirm("此操作将删除设备,是否继续?", "提示", {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- this.removeSys(param)
- }).catch(() => {
- this.reset()
- this.$message("取消删除")
- })
- // delProperty(param, res => {
- // _this.$message.success("删除成功")
- // _this.getMain()
- // })
- },
- async removeSys(param) {
- await delBatchList(param, res => {
- this.$message.success("删除成功")
- this.getMain()
- })
- },
- // 修改
- updateBusiness(data, change) {
- // data.map(item => {
- // if (!!item.flowBuild) {
- // item.building_id = item.flowBuild.split("-")[0]
- // item.floor_id = item.flowBuild.split("-")[1] || null
- // //不存在floor字段去除floor
- // if (!item.floor_id) {
- // delete item.floor_id
- // }
- // delete item.flowBuild
- // }
- // })
- let param = {
- ProjId: this.mess.ProjId,
- secret: this.mess.secret,
- data: {
- criterias: []
- }
- };
- //生成对应修改数据
- data.map((item, index) => {
- let arr = change[index][1].split(".");
- let info = {};
- info[arr[1]] = [{ value: item[arr[0]][arr[1]] != "" ? item[arr[0]][arr[1]] : null }];
- param.data.criterias.push({
- id: item.id,
- infos: info
- });
- });
- //对五大厂商进行特殊处理
- param.data.criterias.map(item => {
- if (!!item.infos.DPSupplierID) {
- item.infos.DPSupplierID[0].value = item.infos.DPSupplierID[0].value.split("-")[0]
- }
- if (!!item.infos.DPManufacturerID) {
- item.infos.DPManufacturerID[0].value = item.infos.DPManufacturerID[0].value.split("-")[0]
- }
- if (!!item.infos.DPInsurerID) {
- item.infos.DPInsurerID[0].value = item.infos.DPInsurerID[0].value.split("-")[0]
- }
- if (!!item.infos.DPMaintainerID) {
- item.infos.DPMaintainerID[0].value = item.infos.DPMaintainerID[0].value.split("-")[0]
- }
- if (!!item.infos.DPSpecificationID) {
- item.infos.DPSpecificationID[0].value = item.infos.DPSpecificationID[0].value.split("-")[0]
- }
- return item
- })
- updateBusiness(param).then(res => {
- });
- },
- //修改设备类型
- changeCader() {
- this.EquipmentList.map(item => {
- if (!!item.content && item.content.length) {
- item.content.map(child => {
- if (child.code == this.mess.deviceId) {
- this.deviceType.assetType = item.code
- this.deviceType.assetName = item.name
- }
- })
- }
- })
- },
- //获取到了正确的信息
- getInfors(infos, row) {
- //其他的开始判断
- let val = this.hot.colToProp(row.col);
- this.row = row.row
- this.messKey = val
- this.systemId = infos.id
- if (val == "caozuo") {
- this.iframeSrc =
- process.env.BASE_URL +
- ":8889/#/details?perjectId=" +
- this.projectId +
- "&secret=" +
- this.secret +
- "&FmId=" +
- infos.id +
- "&type=1&code=" +
- infos.category.substring(2, 6);
- this.dialog.details = true
- }
- //图片弹窗
- if (
- val == "infos.InstallPic" ||
- val == "infos.InstallDrawing" ||
- val == "infos.Nameplate" ||
- val == "infos.Drawing"
- ) {
- if (this.onlyRead) {
- this.dialog.lookPic = true
- this.picsArr = this.main[row.row].infos ? (this.main[row.row].infos[val.split(".")[1]] ? this.main[row.row].infos[val.split(".")[1]] : []) : []
- } else {
- this.imgsArr = this.main[row.row].infos ? (this.main[row.row].infos[val.split(".")[1]] ? this.main[row.row].infos[val.split(".")[1]] : []) : []
- this.dialog.uploadImgs = true
- }
- }
- if (val == "linkSystem") {
- this.dialog.systemType = true
- }
- if (val == "infos.Pic") {
- this.picsArr = this.main[row.row].infos ? (this.main[row.row].infos[val.split(".")[1]] ? this.main[row.row].infos[val.split(".")[1]] : []) : []
- if (this.onlyRead) {
- this.dialog.lookPic = true
- } else {
- this.dialog.pic = true
- }
- }
- if (val == "infos.InsuranceFile" || val == "infos.Archive" || val == "infos.CheckReport") {
- this.filesArr = this.main[row.row].infos ? (this.main[row.row].infos[val.split(".")[1]] ? this.main[row.row].infos[val.split(".")[1]] : []) : []
- this.dialog.uploadFiles = true
- }
- if (val == "linkName" && this.linkNameFalg) {
- this.category = this.main[row.row]
- this.dialog.changeRea = true
- }
- if (val == "infos.EquipQRCode") {
- this.qrcodeUrl = this.main[row.row].infos.EquipQRCode
- if (!!this.qrcodeUrl) {
- this.dialog.qrcode = true;
- } else {
- this.$message("此设备没有设备二维码")
- }
- }
- if (this.onlyRead) {
- return
- }
- if (val == "infos.DPManufacturerID") {
- this.dialog.firm = true;
- }
- if (val == "infos.SupplierContractID") {
- let falg = null
- if (!!this.main[row.row].infos) {
- if (!!this.main[row.row].infos.DPSupplierID) {
- falg = this.main[row.row].infos.DPSupplierID.split("-")[0]
- }
- }
- if (!!falg) {
- this.id = falg
- this.dialog.supply = true;
- } else {
- this.$message("请先选择供应商")
- }
- }
- if (val == "infos.InsuranceNum") {
- //选择保单
- let falg = null
- if (!!this.main[row.row].infos) {
- if (!!this.main[row.row].infos.DPInsurerID) {
- falg = this.main[row.row].infos.DPInsurerID.split("-")[0]
- }
- }
- if (!!falg) {
- this.id = falg
- this.dialog.guarantee = true;
- } else {
- this.$message("请先选择保险商")
- }
- }
- if (
- val == "infos.DPSupplierID"
- ) {
- if (!!infos.linkId) {
- this.dialog.supplier = true;
- } else {
- this.$message("该设备无关联资产")
- }
- }
- if (val == "infos.DPMaintainerID") {
- if (!!infos.linkId) {
- this.dialog.maintainer = true;
- } else {
- this.$message("该设备无关联资产")
- }
- }
- if (
- val == "infos.DPInsurerID") {
- if (!!infos.linkId) {
- this.dialog.insurer = true;
- } else {
- this.$message("该设备无关联资产")
- }
- }
- },
- //获取被筛选掉的行号
- trimmedRows() {
- // var plugin = hot.getPlugin('trimRows').trimmedRows;//获取被筛选掉的行号
- var plugin = this.hot.getPlugin("trimRows").trimmedRows;
- let dataLength = this.main.length;
- let dataArr = new Array();
- for (let i = 0; i < dataLength; i++) {
- dataArr.push(i);
- }
- if (plugin.length <= 0) {
- dataArr = undefined;
- } else {
- dataArr = this.array_diff(dataArr, plugin);
- }
- return dataArr || [];
- // var DataArray = new Array();
- // for (var i = 0; i < plugin.length; i++) {
- // // 通过行号获取数据
- // DataArray.push(this.hot.getSourceDataAtRow(plugin[i]));
- // }
- },
- //去除数组中相同的元素
- array_diff(a, b) {
- for (var i = 0; i < b.length; i++) {
- for (var j = 0; j < a.length; j++) {
- if (a[j] == b[i]) {
- a.splice(j, 1);
- j = j - 1;
- }
- }
- }
- return a;
- },
- //如果选择供应商之后
- supplierChange(data) {
- for (let key in data) {
- if (key == "venderId") {
- data[key] = data[key] + "-" + data.name
- this.utilToKey(key, "venderId", data, "DPSupplierID")
- }
- }
- // tools.setItem(this.deviceType.code, this.main)
- },
- supplyChange(data) {
- let changeData = { id: data }
- this.utilToKey("id", "id", changeData, "SupplierContractID")
- // tools.setItem(this.deviceType.code, this.main)
- },
- //保险合同
- guaranteeChange(data) {
- for (let key in data) {
- this.utilToKey(key, "insuranceNo", data, "InsuranceNum")
- if (key == "contractFile") {
- if (!!data[key]) {
- data[key] = [data[key]]
- }
- }
- this.utilToKey(key, "contractFile", data, "InsuranceFile")
- }
- // tools.setItem(this.deviceType.code, this.main)
- },
- //选择型号修改
- firmChange(data) {
- for (let key in data) {
- // this.utilToKey(key, "name", data, "Supplier")
- // this.utilToKey(key, "email", data, "SupplierEmail")
- // this.utilToKey(key, "website", data, "SupplierWeb")
- // this.utilToKey(key, "phone", data, "SupplierPhone")
- // this.utilToKey(key, "fox", data, "SupplierFax")
- // this.utilToKey(key, "man", data, "SupplierContactor")
- if (key == "venderId") {
- data[key] = data[key] + "-" + data.name + "/" + data.brand
- this.utilToKey(key, "venderId", data, "DPManufacturerID")
- }
- this.utilToKey(key, "specificationId", data, "DPSpecificationID")
- }
- },
- //保险商变更
- changeInsurer(data) {
- for (let key in data) {
- // this.utilToKey(key, "name", data, "Insurer")
- // this.utilToKey(key, "email", data, "InsurerEmail")
- // this.utilToKey(key, "website", data, "InsurerWeb")
- // this.utilToKey(key, "phone", data, "InsurerFax")
- // this.utilToKey(key, "man", data, "InsurerContactor")
- if (key == "venderId") {
- data[key] = data[key] + "-" + data.name
- this.utilToKey(key, "venderId", data, "DPInsurerID")
- }
- }
- // tools.setItem(this.deviceType.code, this.main)
- },
- //维修商变更
- changeMaintainer(data) {
- for (let key in data) {
- // this.utilToKey(key, "name", data, "Maintainer")
- // this.utilToKey(key, "email", data, "MaintainerEmail")
- // this.utilToKey(key, "website", data, "MaintainerWeb")
- // this.utilToKey(key, "phone", data, "MaintainerPhone")
- // this.utilToKey(key, "fox", data, "MaintainerFax")
- // this.utilToKey(key, "man", data, "MaintainerContactor")
- if (key == "venderId") {
- data[key] = data[key] + "-" + data.name
- this.utilToKey(key, "venderId", data, "DPMaintainerID")
- }
- }
- // tools.setItem(this.deviceType.code, this.main)
- },
- //上传文件弹窗触发事件
- fileChange(keys) {
- this.setDataToMain(keys, this.messKey.split(".")[1], this.row)
- // tools.setItem(this.deviceType.code, this.main)
- },
- //上传图片弹窗触发事件
- imgChange(keys) {
- this.setDataToMain(keys, this.messKey.split(".")[1], this.row)
- // tools.setItem(this.deviceType.code, this.main)
- },
- //设备图片弹窗改变事件
- changePics(keys) {
- this.setDataToMain(keys, this.messKey.split(".")[1], this.row)
- // tools.setItem(this.deviceType.code, this.main)
- },
- utilToKey(key, name, data, messName) {
- if (key == name) {
- this.setDataToMain(data[key], messName, this.row)
- }
- },
- //判断是否有值,有值赋值
- setDataToMain(data, key, row) {
- if (!!data && data != '--') {
- if (!!this.main[row].infos) {
- //falg确定每个的是否有值
- this.main[row].infos[key] = data
- this.updateBusiness([this.main[row]], [[0, "infos." + key, null, data]])
- } else {
- this.main[row].infos = {}
- this.main[row].infos[key] = data
- }
- } else {
- this.main[row].infos[key] = ''
- }
- }
- }
- };
- </script>
- <style lang="less">
- .hanson-bar {
- height: 40px;
- padding: 5px;
- font-size: 14px;
- overflow: hidden;
- margin-top: 10px;
- line-height: 40px;
- .iconfont {
- font-size: 12px;
- }
- .el-button {
- // margin-right: 10px;
- }
- }
- </style>
|