From 86a84c327007a1fb398fa2aefff1bffc03a83cfb Mon Sep 17 00:00:00 2001
From: Crunchy <3114200645@qq.com>
Date: 星期二, 06 八月 2024 22:36:02 +0800
Subject: [PATCH] 委托下单,禁止下拉框输入
---
src/components/view/a5-laboratory-qualifications.vue | 15 ++++++++-------
1 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/src/components/view/a5-laboratory-qualifications.vue b/src/components/view/a5-laboratory-qualifications.vue
index a5baa5e..29ae866 100644
--- a/src/components/view/a5-laboratory-qualifications.vue
+++ b/src/components/view/a5-laboratory-qualifications.vue
@@ -54,7 +54,7 @@
<div class="capacity-scope">
<div>
<el-row class="title">
- <el-col :span="12">
+ <el-col :span="12" style="text-align: left">
<el-radio-group v-model="radio" @input="selectorSwitch" size="medium" fill="#3A7BFA">
<el-radio-button label="0">璧勮川鏄庣粏</el-radio-button>
<el-radio-button label="1">璧勮川鎬昏</el-radio-button>
@@ -191,7 +191,7 @@
v-model="formData.explanation"></el-input>
</div>
</div>
-
+
<div class="search_thing" style="margin-bottom: 16px;">
<div class="search_label" style="width:120px"><span class="required-span">* </span>棰佸彂鏃堕棿锛�</div>
@@ -205,7 +205,7 @@
placeholder="閫夋嫨鏃ユ湡">
</el-date-picker>
</div>
- </div>
+ </div>
<div class="search_thing" style="margin-bottom: 16px;">
<div class="search_label" style="width:120px"><span class="required-span">* </span>鍒版湡鏃堕棿锛�</div>
<div class="search_input">
@@ -305,7 +305,8 @@
},
},
requiredAdd: [],
- requiredUp: []
+ requiredUp: [],
+ needSort: ['firstIssuanceDate', 'latestIssuanceDate', 'expireTime', 'name'],
},
itemParameterEntityCopy: {},
upIndex: 0,
@@ -351,9 +352,9 @@
this.refreshTable();
}
},
- refreshTable() {
+ refreshTable(e) {
if (this.radio === '0') {
- this.$refs['itemParameterTable'].selectList()
+ this.$refs['itemParameterTable'].selectList(e)
} else {
if(this.currentPage>1){
this.isLoding = true
@@ -504,7 +505,7 @@
this.loading = false
if (res.code == 201) return
this.$message.success('宸叉彁浜�')
- this.refreshTable()
+ this.refreshTable('page')
this.qualificationsConnectVisible = false
})
},
--
Gitblit v1.9.3