From b27ea54515f95e248da08072640d123d49de477f Mon Sep 17 00:00:00 2001
From: yz3456 <2753272399@qq.com>
Date: 星期四, 27 六月 2024 23:34:36 +0800
Subject: [PATCH] 修改了用户管理

---
 ruoyi-ui/src/views/meeting/statisticsInfo.vue |   46 +++++++++++++++++++++++++++++++++++++++-------
 1 files changed, 39 insertions(+), 7 deletions(-)

diff --git a/ruoyi-ui/src/views/meeting/statisticsInfo.vue b/ruoyi-ui/src/views/meeting/statisticsInfo.vue
index 95fff1e..c283340 100644
--- a/ruoyi-ui/src/views/meeting/statisticsInfo.vue
+++ b/ruoyi-ui/src/views/meeting/statisticsInfo.vue
@@ -21,15 +21,12 @@
             </el-cow>
 
             <el-cow>
-              <el-form-item label="浣跨敤鏃堕棿" prop="useTime" label-width="80px"
+              <el-form-item label="浣跨敤鏃堕棿" prop="useTime" label-width="90px"
                 style="background: #FAD1E0;border-radius: 7px 7px 7px 7px;opacity: 1;">
-                <el-date-picker v-model="formData.useTime" type="datetime" placeholder="閫夋嫨鏃ユ湡鏃堕棿" align="right"
-                  :picker-options="pickerOptions" :style="{width: '100%'}" :disabled="dsb">
-                </el-date-picker>
+                <el-input v-model="formData.useTime" placeholder="璇疯緭鍏ヤ娇鐢ㄦ椂闂�" clearable :style="{width: '100%'}" :disabled="dsb">
+                </el-input>
               </el-form-item>
             </el-cow>
-
-
 
             <el-cow>
               <el-form-item label="浼氳瀹ゅ悕绉�" prop="conferenceRoom" label-width="90px"
@@ -89,6 +86,11 @@
 </template>
 
 <script>
+import {addRole, updateRole} from "@/api/system/role";
+import {blobValidate} from "@/utils/ruoyi";
+import errorCode from "@/utils/errorCode";
+import {Message} from "element-ui";
+import {getMeetingInfo1} from "@/api/meeting/index";
   export default {
     components: {},
     props: [],
@@ -155,7 +157,37 @@
       }
 
       let _this = this
-    },
+
+        this.loading = true;
+        getMeetingInfo1(id).then((response) => {
+          console.log(response.data,'123123123')
+          this.formData = response.data;
+          // let paths = this.formData.url.split(",");
+       //    for(let i = 0; i < paths.length; i++)
+       //    {
+       //      if(paths[i]!="") {
+       //        let pth = paths[i].substr(paths[i].length - 4, paths[i].length)
+       //        if (_this.fot.includes(pth) === true)
+      	// {
+      	// 	if(paths[i][0]=="/")
+       //          _this.fileList.push({name:paths[i],url: process.env.VUE_APP_BASE_TRUE_API+paths[i].substr(1),res:false})
+      	//   else
+      	//      _this.fileList.push({name:paths[i],url: process.env.VUE_APP_BASE_TRUE_API+paths[i],res:false})
+      	//   }
+       //        else {
+       //          let nms = paths[i].split("\/")
+       //          let nm = nms[nms.length - 1]
+      	//   if(paths[i][0]=="/")
+       //          _this.fileListOther.push({name:nm, url: process.env.VUE_APP_BASE_TRUE_API+paths[i].substr(1),res:false})
+      	// 	else
+      	// 	_this.fileListOther.push({name:nm, url: process.env.VUE_APP_BASE_TRUE_API+paths[i],res:false})
+
+      	// }
+       //      }
+       //    }
+          this.loading = false;
+        });
+      },
     mounted() {},
     methods: {
       submitForm() {

--
Gitblit v1.9.1