From 1e264767dd2ac93e83b57b4e8e6626621fff4c6f Mon Sep 17 00:00:00 2001
From: feige <791364011@qq.com>
Date: 星期二, 20 五月 2025 22:41:03 +0800
Subject: [PATCH] 修改了bug
---
ruoyi-ui/src/views/meeting/meetingInfo.vue | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/ruoyi-ui/src/views/meeting/meetingInfo.vue b/ruoyi-ui/src/views/meeting/meetingInfo.vue
index eca955a..8448af4 100644
--- a/ruoyi-ui/src/views/meeting/meetingInfo.vue
+++ b/ruoyi-ui/src/views/meeting/meetingInfo.vue
@@ -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>
@@ -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