From 738f76adfcbf102dfbf890b044ba9a25a034cb8c Mon Sep 17 00:00:00 2001
From: zhuzhuanzhuan
Date: 星期三, 27 三月 2024 16:17:38 +0800
Subject: [PATCH] 1、用户管理页面修改身份字段名称为首页权限并调整其选项值 2、按照新需求完成客户操作工进入后页面所有布局100% 3、调整全局页脚内容
---
src/views/eam/modules/equipmentChange/EquipmentChangeDetailModal.vue | 19 ++++++++++++++++---
1 files changed, 16 insertions(+), 3 deletions(-)
diff --git a/src/views/eam/modules/equipmentChange/EquipmentChangeDetailModal.vue b/src/views/eam/modules/equipmentChange/EquipmentChangeDetailModal.vue
index 77e4976..9a5e818 100644
--- a/src/views/eam/modules/equipmentChange/EquipmentChangeDetailModal.vue
+++ b/src/views/eam/modules/equipmentChange/EquipmentChangeDetailModal.vue
@@ -15,13 +15,13 @@
<a-row>
<a-col :span='24'>
<a-form-model-item label='鍗曟嵁鍙�' :labelCol='labelCol' :wrapperCol='wrapperCol' prop='num'>
- <a-input v-model='model.num' placeholder='璇疯緭鍏ュ崟鎹彿'></a-input>
+ <a-input v-model='model.num' placeholder='璇疯緭鍏ュ崟鎹彿' :disabled="disableSubmit"></a-input>
</a-form-model-item>
</a-col>
<a-col :span='24'>
<a-form-model-item label='澶囨敞' :labelCol='labelCol' :wrapperCol='wrapperCol' prop='remark'>
- <a-textarea v-model='model.remark' rows="3" placeholder='璇疯緭鍏ュ娉�'></a-textarea>
+ <a-textarea v-model='model.remark' rows="3" placeholder='璇疯緭鍏ュ娉�' :disabled="disableSubmit"></a-textarea>
</a-form-model-item>
</a-col>
</a-row>
@@ -31,6 +31,7 @@
type='primary'
:style="{ marginRight: '8px',marginBottom:'8px' }"
:loading='confirmLoading'
+ :disabled="disableSubmit"
@click='selectInspectionProjects()'
>璁惧淇℃伅
</a-button>
@@ -67,6 +68,7 @@
placeholder='璇烽�夋嫨'
v-if="col.dataIndex === 'afterDepartId'"
:options='record.departVoList'
+ :disabled="disableSubmit"
@change='(e) => handleChange(e, record.key, col, index)'
style='width: 100%'
/>
@@ -84,6 +86,7 @@
v-if="col.dataIndex === 'afterManager'"
:value='text'
placeholder='璇烽�夋嫨'
+ :disabled="disableSubmit"
:options='record.userVoList'
@change='(e) => handleChange(e, record.key, col, index)'
style='width: 100%'
@@ -102,6 +105,7 @@
v-if="col.dataIndex === 'afterUsageDepartId'"
:value='text'
placeholder='璇烽�夋嫨'
+ :disabled="disableSubmit"
:options='record.departVoList'
@change='(e) => handleChange(e, record.key, col, index)'
style='width: 100%'
@@ -120,6 +124,7 @@
<a-input
:value='text'
placeholder="璇疯緭鍏ヨ矗浠荤彮缁�"
+ :disabled="disableSubmit"
v-if="col.dataIndex === 'afterTeamId'"
@change='(e)=>handleChange(e, record.key, col, index)'
/>
@@ -139,6 +144,7 @@
v-if="col.dataIndex === 'afterFunctionary'"
:value='text'
placeholder='璇烽�夋嫨'
+ :disabled="disableSubmit"
:options='record.userVoList'
@change='(e) => handleChange(e, record.key, col, index)'
style='width: 100%'
@@ -150,6 +156,7 @@
v-if="col.dataIndex == 'changeReason'"
:maxLength="500"
auto-size
+ :disabled="disableSubmit"
placeholder="璇疯緭鍏ュ彉鍔ㄥ師鍥�"
@change='(e)=>handleChange(e, record.key, col, index)'
/>
@@ -158,6 +165,7 @@
:value='text'
v-if="col.dataIndex === 'afterLocation'"
placeholder='璇疯緭鍏ュ彉鍔ㄥ悗浣嶇疆'
+ :disabled="disableSubmit"
@change='(e)=>handleChange(e, record.key, col, index)'
/>
@@ -165,6 +173,7 @@
v-if="col.dataIndex === 'afterTechnologyStatus'"
:value='text'
placeholder='璇烽�夋嫨'
+ :disabled="disableSubmit"
:options='record.technologyStatusList'
@change='(e) => handleChange(e, record.key, col, index)'
style='width: 100%'
@@ -174,6 +183,7 @@
v-if="col.dataIndex === 'afterEquipmentStatus'"
:value='text'
placeholder='璇烽�夋嫨'
+ :disabled="disableSubmit"
:options='record.equipmentStatusList'
@change='(e) => handleChange(e, record.key, col, index)'
style='width: 100%'
@@ -182,6 +192,7 @@
v-if="col.dataIndex === 'changeType'"
:value='text'
placeholder='璇烽�夋嫨'
+ :disabled="disableSubmit"
:options='record.changeTypeList'
@change='(e) => handleChange(e, record.key, col, index)'
style='width: 100%'
@@ -195,6 +206,7 @@
>
<a-popconfirm
title='纭畾鍒犻櫎鍚�?'
+ :disabled="disableSubmit"
@confirm='() => handleDelete(text,record, index)'
>
<a>鍒犻櫎</a>
@@ -212,6 +224,7 @@
<a-button
@click='handleOk()'
type='primary'
+ :disabled="disableSubmit"
:loading='confirmLoading'
>纭畾
</a-button>
@@ -258,7 +271,7 @@
width: 50
},
{
- title: '璁惧缂栫爜',
+ title: '缁熶竴缂栫爜',
width: 150,
align: 'center',
dataIndex: 'equipmentNum'
--
Gitblit v1.9.3