From 2f83b115973e12107266c920e42cfba31652e62d Mon Sep 17 00:00:00 2001
From: feige <feige@qq.com>
Date: 星期六, 26 十月 2024 21:03:58 +0800
Subject: [PATCH] 修改了bug
---
ruoyi-ui/src/views/meeting/meetingInfo.vue | 11 ++++++++---
1 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/ruoyi-ui/src/views/meeting/meetingInfo.vue b/ruoyi-ui/src/views/meeting/meetingInfo.vue
index fda5ce5..8448af4 100644
--- a/ruoyi-ui/src/views/meeting/meetingInfo.vue
+++ b/ruoyi-ui/src/views/meeting/meetingInfo.vue
@@ -95,7 +95,7 @@
</el-form-item>
</el-cow>
<el-cow>
- <el-form-item label="鏄惁鎷滆姘寸墝" prop="isPlacebrand" label-width="120px"
+ <el-form-item label="鏄惁鎽嗘斁姘寸墝" prop="isPlacebrand" label-width="120px"
style="background: #FAD1E0;border-radius: 7px 7px 7px 7px;opacity: 1;">
<el-select v-model="formData.isPlacebrand" placeholder="璇烽�夋嫨 " clearable :style="{width: '100%'}"
:disabled="dsb">
@@ -123,7 +123,7 @@
<el-cow>
<el-form-item label="鐘舵��" prop="statu" label-width="120px"
style="background: #FAD1E0;border-radius: 7px 7px 7px 7px;opacity: 1;">
- <el-select v-model="formData.statu" placeholder="璇烽�夋嫨 " clearable :style="{width: '100%'}"
+ <el-select v-model="formData.statu" placeholder="" clearable :style="{width: '100%'}"
:disabled="true">
<el-option v-for="(item, index) in typeOptions2" :key="index" :label="item.label"
:value="item.value"></el-option>
@@ -248,7 +248,7 @@
}],
isPlacebrand: [{
required: true,
- message: '璇烽�夋嫨鏄惁鎷滆姘寸墝',
+ message: '璇烽�夋嫨鏄惁鎽嗘斁姘寸墝',
trigger: 'blur'
}],
connPerson: [{
@@ -314,6 +314,10 @@
getMeetingInfo(id).then((response) => {
console.log(response.data,'123123123')
this.formData = response.data;
+ if(this.formData.statu == undefined){
+ this.formData.statu = 3
+ // alert(this.formData.statu)
+ }
// let paths = this.formData.url.split(",");
// for(let i = 0; i < paths.length; i++)
// {
@@ -383,6 +387,7 @@
this.$refs['elForm'].validate(valid => {
if (valid) {
if (this.formData.id != undefined) {
+ this.formData.statu = 3
updateMeeting(this.formData).then(response => {
this.$modal.msgSuccess("淇敼鎴愬姛");
// if (this.formData.status == 1)
--
Gitblit v1.9.1