From a022fa78a6f1ec591187c0c3e032036c15761779 Mon Sep 17 00:00:00 2001
From: zhuzhuanzhuan
Date: 星期五, 26 一月 2024 10:11:36 +0800
Subject: [PATCH] 加班管理页面维度由班次班制调整为日期与设备,删除班制班次有关字段
---
src/views/eam/modules/maintenancePlan/StandardSelect.vue | 54 +++++++++++++++++++++++++++---------------------------
1 files changed, 27 insertions(+), 27 deletions(-)
diff --git a/src/views/eam/modules/maintenancePlan/StandardSelect.vue b/src/views/eam/modules/maintenancePlan/StandardSelect.vue
index f35b0b1..0f3e8a3 100644
--- a/src/views/eam/modules/maintenancePlan/StandardSelect.vue
+++ b/src/views/eam/modules/maintenancePlan/StandardSelect.vue
@@ -87,10 +87,10 @@
mixins: [JeecgListMixin],
components: {},
props: {
- maintenanceType:{
- type:String,
- default:'',
- required:true
+ maintenanceType: {
+ type: String,
+ default: '',
+ required: true
}
},
@@ -105,7 +105,7 @@
key: 'rowIndex',
width: 50,
align: 'center',
- customRender: function(t, r, index) {
+ customRender: function (t, r, index) {
return parseInt(index) + 1
}
},
@@ -113,49 +113,49 @@
title: '缁熶竴缂栫爜',
align: 'center',
dataIndex: 'num',
- width:200
+ width: 200
},
{
title: '璁惧鍚嶇О',
align: 'center',
dataIndex: 'name',
- width:200
+ width: 200
},
{
title: '璁惧鍨嬪彿',
align: 'center',
dataIndex: 'model',
- width:200
+ width: 200
},
{
title: '璁惧瑙勬牸',
align: 'center',
dataIndex: 'specification',
- width:200
+ width: 200
},
{
title: 'ABC鏍囪瘑',
align: "center",
dataIndex: 'equipmentImportanceId',
- width:100
+ width: 100
},
{
title: '鍏抽敭璁惧鏍囪瘑',
align: "center",
dataIndex: 'specificEquipment_dictText',
- width:100
+ width: 100
},
{
title: '璁惧鐘舵��',
align: 'center',
dataIndex: 'equipmentStatus_dictText',
- width:100
+ width: 100
},
{
title: '鎶�鏈姸鎬�',
align: 'center',
dataIndex: 'technologyStatus_dictText',
- width:100
+ width: 100
},
],
selectedRowKeys: [],
@@ -183,8 +183,8 @@
visible: false,
loading: false,
url: {
- list: '/eam/equipment/getEquipmentList',
- getStandards:'/eam/equipmentMaintenancePlan/getStandards'
+ list: '/eam/equipment/showEquipmentList',
+ getStandards: '/eam/equipmentMaintenancePlan/getStandards'
},
}
},
@@ -280,34 +280,34 @@
this.isorter.order = 'ascend' === sorter.order ? 'asc' : 'desc';
}
this.ipagination = pagination;
- this.loadData();
+ this.loadData();
},
handleSubmit() {
this.loading = true
let that = this;
var ids = '';
- if(this.selectionRows.length==0){
+ if (this.selectionRows.length == 0) {
that.$message.warning("璇烽�夋嫨淇濆吇璁惧");
- this.loading=false;
+ this.loading = false;
return false;
}
- for(var i = 0;i<this.selectionRows.length;i++){
- ids = ids+this.selectionRows[i].id+',';
+ for (var i = 0; i < this.selectionRows.length; i++) {
+ ids = ids + this.selectionRows[i].id + ',';
}
- getAction(this.url.getStandards,{ids:ids,maintenanceType:this.maintenanceType}).then(res=>{
- if(res.success){
- if(res.result.records.length!==that.selectionRows.length){
+ getAction(this.url.getStandards, { ids: ids, maintenanceType: this.maintenanceType }).then(res => {
+ if (res.success) {
+ if (res.result.records.length !== that.selectionRows.length) {
that.$message.warning(res.result.message);
}
that.$emit('selectionEquipmentRows', res.result.records);
that.searchReset(0)
that.close();
}
- }).finally(res=>{
- this.loading=false;
+ }).finally(res => {
+ this.loading = false;
})
-
-
+
+
},
onSelectChange(selectionRows) {
this.selectionRows = selectionRows;
--
Gitblit v1.9.3