From 65a5e8c7ec6d6eab78b76c5831eaf40c30e23c61 Mon Sep 17 00:00:00 2001 From: zhaowei <zhaowei> Date: 星期五, 13 九月 2024 14:56:50 +0800 Subject: [PATCH] 1、设备管理页面设备种类字段改成重要程度字段;新增设备异常状态字段,若表格记录的设备状态不为正常时,则标红此表格记录 2、设备利用率、设备开动率、班次利用率以及设备综合效率分析新增按照重要程度字段查询表格数据;左侧树数据新增参数key,用来过滤异常状态设备 3、设备利用率页面新增设备型号字段 --- src/views/mdc/base/modules/EquipmentList/UserModal.vue | 481 +++++++++++++++++++++++++--------------------------- 1 files changed, 233 insertions(+), 248 deletions(-) diff --git a/src/views/mdc/base/modules/EquipmentList/UserModal.vue b/src/views/mdc/base/modules/EquipmentList/UserModal.vue index b46e6c4..d393663 100644 --- a/src/views/mdc/base/modules/EquipmentList/UserModal.vue +++ b/src/views/mdc/base/modules/EquipmentList/UserModal.vue @@ -25,12 +25,12 @@ <a-form-model-item label="缁熶竴缂栫爜" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="equipmentId"> <a-input-search :readOnly="true" v-model="model.equipmentId" - :disabled="disSeach" @search="deviceSearch" enter-button placeholder='璇烽�夋嫨缁熶竴缂栫爜' /> + :disabled="disSeach" @search="deviceSearch" enter-button placeholder='璇烽�夋嫨缁熶竴缂栫爜'/> </a-form-model-item> </a-col> <a-col :span="12"> <a-form-model-item label="璁惧鍚嶇О" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="equipmentName"> - <a-input allow-clear placeholder="璇疯緭鍏ヨ澶囧悕绉�" + <a-input allow-clear placeholder="璇疯緭鍏ヨ澶囧悕绉�" v-model="model.equipmentName"/> </a-form-model-item> </a-col> @@ -38,8 +38,11 @@ <a-row :gutter="24"> <a-col :span="12"> - <a-form-model-item v-if="isDepartType == 0" label="閮ㄩ棬鍒嗛厤" :labelCol="labelCol" :wrapperCol="wrapperCol" v-show="!departDisabled"> - <j-select-equipment-depart :disabled="disableSubmit" v-model="model.selectedDeparts" :multi="false" @back="backDepartInfo" :backDepart="true" :treeOpera="true"></j-select-equipment-depart> + <a-form-model-item v-if="isDepartType == 0" label="閮ㄩ棬鍒嗛厤" :labelCol="labelCol" :wrapperCol="wrapperCol" + v-show="!departDisabled"> + <j-select-equipment-depart :disabled="disableSubmit" v-model="model.selectedDeparts" :multi="false" + @back="backDepartInfo" :backDepart="true" + :treeOpera="true"></j-select-equipment-depart> </a-form-model-item> <a-form-model-item v-if="isDepartType == -1" label="璁惧绫诲瀷" :labelCol="labelCol" :wrapperCol="wrapperCol"> @@ -53,9 +56,12 @@ </a-form-model-item> </a-col> <a-col :span="12"> - <a-form-model-item label="杞﹂棿鍒嗛厤" :labelCol="labelCol" :wrapperCol="wrapperCol" v-show="!productionDisabled" ref="selectedProduction" prop="selectedProduction"> + <a-form-model-item label="杞﹂棿鍒嗛厤" :labelCol="labelCol" :wrapperCol="wrapperCol" v-show="!productionDisabled" + ref="selectedProduction" prop="selectedProduction"> <!--<j-select-equipment-production v-decorator="['selectedProduction',{rules:[{required:true,message:'璇烽�夋嫨杞﹂棿!'}]}]" :multi="false" @back="backProductionInfo" :backProduction="true" :treeProductOpera="true"></j-select-equipment-production>--> - <j-select-equipment-production :disabled="disableSubmit" v-model="model.selectedProduction" :multi="false" @back="backProductionInfo" :backProduction="true" :treeProductOpera="true"></j-select-equipment-production> + <j-select-equipment-production :disabled="disableSubmit" v-model="model.selectedProduction" :multi="false" + @back="backProductionInfo" :backProduction="true" + :treeProductOpera="true"></j-select-equipment-production> </a-form-model-item> </a-col> @@ -67,13 +73,13 @@ v-model="model.systemVersion"/> </a-form-model-item> <a-form-model-item v-if="isDepartType == 0" label="璁惧绫诲瀷" :labelCol="labelCol" :wrapperCol="wrapperCol"> - <a-select :disabled="disableSubmit" :readOnly="disableSubmit" placeholder="璇烽�夋嫨璁惧绫诲瀷" - :triggerChange="true" - v-model="model.equipmentType"> - <a-select-option v-for='item in selectList' :key='item.id' :value='item.equipmentTypeName'> - {{item.equipmentTypeName}} - </a-select-option> - </a-select> + <a-select :disabled="disableSubmit" :readOnly="disableSubmit" placeholder="璇烽�夋嫨璁惧绫诲瀷" + :triggerChange="true" + v-model="model.equipmentType"> + <a-select-option v-for='item in selectList' :key='item.id' :value='item.equipmentTypeName'> + {{item.equipmentTypeName}} + </a-select-option> + </a-select> </a-form-model-item> </a-col> @@ -119,23 +125,48 @@ <a-row :gutter="24"> <a-col :span="12"> <a-form-model-item label="绯荤粺绫诲瀷" :labelCol="labelCol" :wrapperCol="wrapperCol"> - <j-dict-select-tag placeholder="璇烽�夋嫨绯荤粺绫诲瀷" :triggerChange="true" dictCode="system_type" v-model="model.systemType" allow-clear/> + <j-dict-select-tag placeholder="璇烽�夋嫨绯荤粺绫诲瀷" :triggerChange="true" dictCode="system_type" + v-model="model.systemType" allow-clear/> </a-form-model-item> </a-col> <a-col :span="12"> - <a-form-model-item label="璁惧绾у埆" :labelCol="labelCol" :wrapperCol="wrapperCol"> - <j-dict-select-tag placeholder="璇烽�夋嫨璁惧绾у埆" dictCode="device_level" v-model="model.deviceLevel" allow-clear/> + <a-form-model-item label="寮傚父鐘舵��" :labelCol="labelCol" :wrapperCol="wrapperCol"> + <j-dict-select-tag placeholder="璇烽�夋嫨璁惧寮傚父鐘舵��" dictCode="device_abnormal_status" + v-model="model.deviceAbnormalStatus" allow-clear :defaultValue="1"/> </a-form-model-item> </a-col> </a-row> <a-row :gutter="24"> + <!--<a-col :span="12">--> + <!--<a-form-model-item label="璁惧绉嶇被" :labelCol="labelCol" :wrapperCol="wrapperCol">--> + <!--<j-dict-select-tag placeholder="璇烽�夋嫨璁惧绉嶇被" dictCode="device_category" v-model="model.deviceCategory"--> + <!--allow-clear/>--> + <!--</a-form-model-item>--> + <!--</a-col>--> <a-col :span="12"> - <a-form-model-item label="璁惧绉嶇被" :labelCol="labelCol" :wrapperCol="wrapperCol"> - <j-dict-select-tag placeholder="璇烽�夋嫨璁惧绉嶇被" dictCode="device_category" v-model="model.deviceCategory" allow-clear/> + <a-form-model-item label="璁惧绾у埆" :labelCol="labelCol" :wrapperCol="wrapperCol"> + <j-dict-select-tag @change="handleDeviceLevelChange" placeholder="璇烽�夋嫨璁惧绾у埆" + dictCode="device_level" + v-model="model.deviceLevel" allow-clear/> </a-form-model-item> </a-col> - <a-col :span="12"> + <a-col :span="12" v-if="model.deviceLevel==='A'"> + <a-form-model-item label="閲嶈绋嬪害" :labelCol="labelCol" :wrapperCol="wrapperCol"> + <j-dict-select-tag placeholder="璇烽�夋嫨璁惧閲嶈绋嬪害" dictCode="device_importance_level" + v-model="model.deviceImportanceLevel" allow-clear/> + </a-form-model-item> + </a-col> + <a-col :span="12" v-else> + <a-form-model-item label="鎺掑簭" :labelCol="labelCol" :wrapperCol="wrapperCol"> + <a-input :disabled="disableSubmit" :readOnly="disableSubmit" placeholder="璇疯緭鍏ユ帓搴�" + v-model="model.sortNo" style="width: 100%"/> + </a-form-model-item> + </a-col> + </a-row> + + <a-row :gutter="24"> + <a-col :span="12" v-if="model.deviceLevel==='A'"> <a-form-model-item label="鎺掑簭" :labelCol="labelCol" :wrapperCol="wrapperCol"> <a-input :disabled="disableSubmit" :readOnly="disableSubmit" placeholder="璇疯緭鍏ユ帓搴�" v-model="model.sortNo" style="width: 100%"/> @@ -179,128 +210,129 @@ import pick from 'lodash.pick' import moment from 'moment' import Vue from 'vue' - import { ACCESS_TOKEN } from "@/store/mutation-types" + import { ACCESS_TOKEN } from '@/store/mutation-types' import { getAction } from '@/api/manage' - import { addEquipment,editEquipment,queryUserRole,queryall } from '@/api/api' - import { disabledAuthFilter } from "@/utils/authFilter" + import { addEquipment, editEquipment, queryUserRole, queryall } from '@/api/api' + import { disabledAuthFilter } from '@/utils/authFilter' import { duplicateCheck } from '@/api/api' import JSelectEquipmentProduction from '../../../../../components/jeecgbiz/JSelectEquipmentProduction' import JSelectProduction from '../../../../../components/jeecgbiz/JSelectProduction' import DeviceListModel from './DeviceListModal' import JSelectEquipmentDepart from '../../../../../components/jeecgbiz/JSelectEquipmentDepart' - import AFormModelItem from 'ant-design-vue/es/form-model/FormItem' - import {mapActions} from 'vuex' + import { mapActions } from 'vuex' + export default { - name: "UserModal", + name: 'UserModal', components: { - AFormModelItem, JSelectProduction, JSelectEquipmentDepart, JSelectEquipmentProduction, DeviceListModel }, - data () { + data() { return { - disSeach:false, + disSeach: false, departDisabled: false, //鏄惁鏄垜鐨勯儴闂ㄨ皟鐢ㄨ椤甸潰 productionDisabled: false, //鏄惁鏄垜鐨勮溅闂磋皟鐢ㄨ椤甸潰 roleDisabled: false, //鏄惁鏄鑹茬淮鎶よ皟鐢ㄨ椤甸潰 - modalWidth:800, - drawerWidth:700, - modaltoggleFlag:true, + modalWidth: 800, + drawerWidth: 700, + modaltoggleFlag: true, confirmDirty: false, - userId:"", //淇濆瓨鐢ㄦ埛id + userId: '', //淇濆瓨鐢ㄦ埛id // disableSubmit:false, disableSubmit: true, - dateFormat:"YYYY-MM-DD", + dateFormat: 'YYYY-MM-DD', form: this.$form.createForm(this), - validatorRules:{ + validatorRules: { // equipmentId: [{required: false, message: '璇烽�夋嫨璁惧缂栧彿!'}, {validator: this.validatequipmentId}], equipmentId: [ { - required: true, message: '璇烽�夋嫨璁惧缂栧彿!' - }, + required: true, message: '璇烽�夋嫨璁惧缂栧彿!' + } ], equipmentName: [ { required: true, message: '璇疯緭鍏ヨ澶囧悕绉�!' - }, + } ], equipmentModel: [ { required: true, message: '璇疯緭鍏ヨ澶囧瀷鍙�!' - }, + } ], selectedProduction: [ { - required:true,message: '璇烽�夋嫨杞﹂棿' + required: true, message: '璇烽�夋嫨杞﹂棿' } ] }, - departIdShow:false, - title:"鎿嶄綔", + departIdShow: false, + title: '鎿嶄綔', visible: false, model: { - equipmentId: "", - equipmentName: "", - equipmentModel: "", - equipmentIp: "", - dataPort: "", - driveType: "", - systemType: "", - deviceLevel: "", - deviceCategory: "" + equipmentId: '', + equipmentName: '', + equipmentModel: '', + equipmentIp: '', + dataPort: '', + driveType: '', + systemType: '', + deviceLevel: '', + deviceAbnormalStatus: '' + // deviceCategory: '' }, labelCol: { xs: { span: 24 }, - sm: { span: 8 }, + sm: { span: 8 } }, wrapperCol: { xs: { span: 24 }, - sm: { span: 15 }, + sm: { span: 15 } }, - uploadLoading:false, + uploadLoading: false, confirmLoading: false, - headers:{}, + headers: {}, url: { - fileUpload: window._CONFIG['domianURL']+"/sys/common/upload", - userWithDepart: "/mdc/mdcEquipment/equipmentDepartList", // 寮曞叆涓烘寚瀹氱敤鎴锋煡鐪嬮儴闂ㄤ俊鎭渶瑕佺殑url + fileUpload: window._CONFIG['domianURL'] + '/sys/common/upload', + userWithDepart: '/mdc/mdcEquipment/equipmentDepartList', // 寮曞叆涓烘寚瀹氱敤鎴锋煡鐪嬮儴闂ㄤ俊鎭渶瑕佺殑url //寮曞叆涓烘寚瀹氱敤鎴锋煡鐪嬭溅闂翠俊鎭渶瑕佺殑url userProductionList: '/mdc/mdcEquipment/equipmentProductionList', - userId:"/sys/user/generateUserId", // 寮曞叆鐢熸垚娣诲姞鐢ㄦ埛鎯呭喌涓嬬殑url - syncUserByUserName:"/act/process/extActProcess/doSyncUserByUserName",//鍚屾鐢ㄦ埛鍒板伐浣滄祦 + userId: '/sys/user/generateUserId', // 寮曞叆鐢熸垚娣诲姞鐢ㄦ埛鎯呭喌涓嬬殑url + syncUserByUserName: '/act/process/extActProcess/doSyncUserByUserName',//鍚屾鐢ㄦ埛鍒板伐浣滄祦 queryTenantList: '/sys/tenant/queryList', - check:'/sys/duplicate/check', - queryEquipmentType:'/mdc/mdcEquipmentType/queryEquipmentType' + check: '/sys/duplicate/check', + queryEquipmentType: '/mdc/mdcEquipmentType/queryEquipmentType' }, tenantsOptions: [], - rolesOptions:[], - nextDepartOptions:[], - nextProductionOptions:[], - selectList:[], - isDepartType:'' + rolesOptions: [], + nextDepartOptions: [], + nextProductionOptions: [], + selectList: [], + isDepartType: '' } }, - created () { - const token = Vue.ls.get(ACCESS_TOKEN); - this.headers = {"X-Access-Token":token} + created() { + const token = Vue.ls.get(ACCESS_TOKEN) + this.headers = { 'X-Access-Token': token } this.queryGroup() this.queryTreeData() // this.initRoleList() // this.initTenantList() }, - computed:{ - uploadAction:function () { - return this.url.fileUpload; + computed: { + uploadAction: function() { + return this.url.fileUpload } }, methods: { + moment, ...mapActions(['QueryDepartTree']), queryTreeData() { this.QueryDepartTree().then(res => { @@ -309,11 +341,11 @@ } else { // this.$message.warn(res.message) this.$notification.warning({ - message:'娑堟伅', - description:res.message - }); + message: '娑堟伅', + description: res.message + }) } - }).finally(() =>{ + }).finally(() => { }) }, queryGroup() { @@ -326,9 +358,9 @@ } else { // this.$message.warning(res.message) this.$notification.warning({ - message:'娑堟伅', - description:res.message - }); + message: '娑堟伅', + description: res.message + }) } }).finally(() => { this.loading = false @@ -336,16 +368,16 @@ }, getDeviceRows(val) { console.log(val) - if(val.equipmentid ){ + if (val.equipmentid) { this.removeValidate() this.model.equipmentId = val.equipmentid this.model.equipmentName = val.equipmentname - this.model.equipmentModel = val.equipmentmodel - this.model.equipmentIp = val.equipmentip - this.model.dataPort = val.dataport - this.model.driveType = val.drivetype - this.model.controlSystem = val.controlsystem - this.model.saveTableName = val.savetablename + this.model.equipmentModel = val.equipmentmodel + this.model.equipmentIp = val.equipmentip + this.model.dataPort = val.dataport + this.model.driveType = val.drivetype + this.model.controlSystem = val.controlsystem + this.model.saveTableName = val.savetablename // setTimeout(() =>{ // this.form.setFieldsValue({ // equipmentId: val.equipmentid, @@ -365,66 +397,79 @@ this.$refs.deviceListModel.title = '閫夋嫨璁惧' this.$refs.deviceListModel.disableSubmit = false }, - add () { + add() { // this.form.resetFields() // this.$refs.formModel.resetFields() - this.refresh(); + this.refresh() - this.edit({activitiSync:'1',userIdentity:1,equipmentId:"",equipmentName:"",equipmentModel:"",equipmentIp:'',dataPort:"",driveType:"",controlSystem:"",saveTableName:""}); + this.edit({ + activitiSync: '1', + userIdentity: 1, + equipmentId: '', + equipmentName: '', + equipmentModel: '', + equipmentIp: '', + dataPort: '', + driveType: '', + controlSystem: '', + saveTableName: '', + deviceImportanceLevel: '', + deviceAbnormalStatus: 1 + }) }, - edit (record) { - let that = this; - that.visible = true; + edit(record) { + let that = this + that.visible = true //鏍规嵁灞忓箷瀹藉害鑷�傚簲鎶藉眽瀹藉害 - this.resetScreenSize(); + this.resetScreenSize() // that.userId = record.id; // console.log(record) - that.model = Object.assign({}, record); + that.model = Object.assign({}, record) // that.model = Object.assign({},{selectedroles:'',selectedProduction:''}, record); // this.model = Object.assign({}, record) this.$nextTick(() => { this.form.setFieldsValue(pick(that.model, 'selectedDeparts', 'selectedProduction', 'equipmentId', 'equipmentName', 'equipmentModel', 'equipmentType', 'equipmentIp', 'dataPort', - 'driveType', 'sortNo', 'remark','systemVersion','devicePower','controlSystem','saveTableName')) + 'driveType', 'sortNo', 'remark', 'systemVersion', 'devicePower', 'controlSystem', 'saveTableName')) }) - if(record.hasOwnProperty("id")){ + if (record.hasOwnProperty('id')) { // that.getUserRoles(record.id); - that.getUserDeparts(record.id); + that.getUserDeparts(record.id) } // console.log('that.model=',that.model) }, - isDisabledAuth(code){ - return disabledAuthFilter(code); + isDisabledAuth(code) { + return disabledAuthFilter(code) }, //绐楀彛鏈�澶у寲鍒囨崲 - toggleScreen(){ - if(this.modaltoggleFlag){ - this.modalWidth = window.innerWidth; - }else{ - this.modalWidth = 800; + toggleScreen() { + if (this.modaltoggleFlag) { + this.modalWidth = window.innerWidth + } else { + this.modalWidth = 800 } - this.modaltoggleFlag = !this.modaltoggleFlag; + this.modaltoggleFlag = !this.modaltoggleFlag }, // 鏍规嵁灞忓箷鍙樺寲,璁剧疆鎶藉眽灏哄 - resetScreenSize(){ - let screenWidth = document.body.clientWidth; - if(screenWidth < 500){ - this.drawerWidth = screenWidth; - }else{ - this.drawerWidth = 700; + resetScreenSize() { + let screenWidth = document.body.clientWidth + if (screenWidth < 500) { + this.drawerWidth = screenWidth + } else { + this.drawerWidth = 700 } }, - getUserDeparts(userid){ - let that = this; + getUserDeparts(userid) { + let that = this //閮ㄩ棬鐨剈rl - getAction(that.url.userWithDepart,{equipmentId:userid}).then((res)=>{ - if(res.success){ + getAction(that.url.userWithDepart, { equipmentId: userid }).then((res) => { + if (res.success) { // console.log(res.result) - let departOptions=[]; - let selectDepartKeys=[] + let departOptions = [] + let selectDepartKeys = [] for (let i = 0; i < res.result.length; i++) { - selectDepartKeys.push(res.result[i].key); + selectDepartKeys.push(res.result[i].key) //鏂板璐熻矗閮ㄩ棬閫夋嫨涓嬫媺妗� departOptions.push({ value: res.result[i].key, @@ -432,22 +477,22 @@ }) } - that.model.selectedDeparts = selectDepartKeys.join(",") + that.model.selectedDeparts = selectDepartKeys.join(',') // that.model.selectedProduction = selectDepartKeys.join(",") - that.nextDepartOptions=departOptions; + that.nextDepartOptions = departOptions // console.log('that.nextDepartOptions=',that.nextDepartOptions) } }) - getAction(that.url.userProductionList,{equipmentId:userid}).then((res)=>{ - if(res.success){ + getAction(that.url.userProductionList, { equipmentId: userid }).then((res) => { + if (res.success) { // console.log(res.result) - let ProductionOptions=[]; - let selectProductKeys=[] + let ProductionOptions = [] + let selectProductKeys = [] // console.log(res.result) for (let i = 0; i < res.result.length; i++) { - selectProductKeys.push(res.result[i].key); + selectProductKeys.push(res.result[i].key) //鏂板璐熻矗閮ㄩ棬閫夋嫨涓嬫媺妗� ProductionOptions.push({ value: res.result[i].key, @@ -455,9 +500,9 @@ }) } - that.model.selectedProduction = selectProductKeys.join(",") + that.model.selectedProduction = selectProductKeys.join(',') - that.nextProductionOptions=ProductionOptions; + that.nextProductionOptions = ProductionOptions // console.log('that.nextProductionOptions=',that.nextProductionOptions) } }) @@ -465,169 +510,109 @@ }, backDepartInfo(info) { // console.log(info) - this.model.departIds = this.model.selectedDeparts; - this.nextDepartOptions = info.map((item,index,arr)=>{ - let c = {label:item.text, value: item.value+""} - return c; + this.model.departIds = this.model.selectedDeparts + this.nextDepartOptions = info.map((item, index, arr) => { + let c = { label: item.text, value: item.value + '' } + return c }) }, backProductionInfo(info) { // console.log(info) - this.model.productionIds = this.model.selectedProduction; - this.nextProductionOptions = info.map((item,index,arr)=>{ - let c = {label:item.text, value: item.value+""} - return c; + this.model.productionIds = this.model.selectedProduction + this.nextProductionOptions = info.map((item, index, arr) => { + let c = { label: item.text, value: item.value + '' } + return c }) }, - - refresh () { - this.userId="" - this.nextDepartOptions=[]; - this.nextProductionOptions = []; - this.departIdShow=false; - }, - close () { - this.$emit('close'); - this.visible = false; - this.disableSubmit = false; - this.nextDepartOptions=[]; + refresh() { + this.userId = '' + this.nextDepartOptions = [] this.nextProductionOptions = [] - this.departIdShow=false; + this.departIdShow = false + }, + close() { + this.$emit('close') + this.visible = false + this.disableSubmit = false + this.nextDepartOptions = [] + this.nextProductionOptions = [] + this.departIdShow = false // this.$refs.form.resetFields(); }, - moment, - handleSubmit () { - const that = this; + handleDeviceLevelChange() { + this.model.deviceImportanceLevel = '' + }, + handleSubmit() { + const that = this // 瑙﹀彂琛ㄥ崟楠岃瘉 this.$refs.form.validate(valid => { if (valid) { - that.confirmLoading = true; + that.confirmLoading = true //濡傛灉鏄笂绾ф嫨浼犲叆departIds,鍚﹀垯涓虹┖ // if(this.model.userIdentity!==2){ // this.model.departIds=""; // } - let obj; - if(!this.model.id){ - this.model.id = this.userId; - obj=addEquipment(this.model); - }else{ - obj=editEquipment(this.model,{ - id: this.model.id - }); + let obj + if (!this.model.id) { + this.model.id = this.userId + obj = addEquipment(this.model) + } else { + obj = editEquipment(this.model, { + id: this.model.id + }) } - obj.then((res)=>{ - if(res.success){ + obj.then((res) => { + if (res.success) { // that.$message.success(res.message); that.$notification.success({ - message:'娑堟伅', - description:res.message - }); - that.$emit('ok'); - }else{ + message: '娑堟伅', + description: res.message + }) + that.$emit('ok') + } else { // that.$message.warning(res.message); that.$notification.warning({ - message:'娑堟伅', - description:res.message - }); + message: '娑堟伅', + description: res.message + }) } }).finally(() => { - that.confirmLoading = false; - that.close(); + that.confirmLoading = false + that.close() }) - }else{ - return false; + } else { + return false } }) }, - // handleSubmit () { - // const that = this; - // // 瑙﹀彂琛ㄥ崟楠岃瘉 - // this.form.validateFields((err,values) => { - // if (!err) { - // that.confirmLoading = true; - // let formData = Object.assign(this.model, values) - // let obj; - // if(!this.model.id){ - // // this.model.id = this.userId; - // this.form.resetFields() - // obj=addEquipment(formData); - // }else{ - // this.form.resetFields() - // obj=editEquipment(formData); - // // this.$nextTick(() => { - // // this.form.setFieldsValue(pick(this.model, 'tierType', 'parentName', 'tierNumber', 'tierName', 'equipmentId', 'equipmentName', 'equipmentModel', 'equipmentType', 'equipmentIp', 'dataPort', - // // 'driveType', 'controlSystem', 'sortNo', 'remark','systemVersion','devicePower')) - // // }) - // // obj=editEquipment(formData,{ - // // id: this.model.id - // // }); - // } - // obj.then((res)=>{ - // if(res.success){ - // that.$message.success(res.message); - // that.$emit('ok'); - // }else{ - // that.$message.warning(res.message); - // } - // }).finally(() => { - // that.confirmLoading = false; - // that.close(); - // }) - // }else{ - // return false; - // } - // }) - // }, - - // validatequipmentId(rule, value, callback){ - // if(!value){ - // callback() - // }else{ - // console.log(1111111111111111) - // var params = { - // tableName: 'mdc_equipment', - // fieldName: 'equipment_id', - // fieldVal: value, - // // dataId: this.userId - // }; - // duplicateCheck(params).then((res) => { - // if (res.success) { - // callback() - // } else { - // callback("璁惧缂栧彿宸插瓨鍦�!") - // } - // }) - // - // } - // }, - handleConfirmBlur(e) { - const value = e.target.value; + const value = e.target.value this.confirmDirty = this.confirmDirty || !!value }, - identityChange(e){ - if(e.target.value===1){ - this.departIdShow=false; - }else{ - this.departIdShow=true; + identityChange(e) { + if (e.target.value === 1) { + this.departIdShow = false + } else { + this.departIdShow = true } }, /** * 缂栬緫鎴栨煡鐪嬭鎯呮暟鎹椂娓呴櫎鎶藉眽琛ㄥ崟楠岃瘉 */ - removeValidate(){ + removeValidate() { this.$refs.form.clearValidate() } - }, + } } </script> <style scoped> .avatar-uploader > .ant-upload { - width:104px; - height:104px; + width: 104px; + height: 104px; } + .ant-upload-select-picture-card i { font-size: 49px; color: #999; @@ -638,9 +623,9 @@ color: #666; } - .ant-table-tbody .ant-table-row td{ - padding-top:10px; - padding-bottom:10px; + .ant-table-tbody .ant-table-row td { + padding-top: 10px; + padding-bottom: 10px; } .drawer-bottom-button { -- Gitblit v1.9.3