From 0ebcc1fd3b16b7a43e85a9a4bde1a1cee3ae5831 Mon Sep 17 00:00:00 2001
From: 龚焕茏 <2842157468@qq.com>
Date: 星期二, 16 七月 2024 17:47:10 +0800
Subject: [PATCH] feat:出生年月取消必填、隐藏模拟菜单

---
 src/views/education/department/edit.vue |   32 ++++++++++++++++++++++++--------
 1 files changed, 24 insertions(+), 8 deletions(-)

diff --git a/src/views/education/department/edit.vue b/src/views/education/department/edit.vue
index 91efc79..cb7e90a 100644
--- a/src/views/education/department/edit.vue
+++ b/src/views/education/department/edit.vue
@@ -1,9 +1,9 @@
 <template>
   <div class="app-container">
 
-    <el-form :model="form" ref="form" label-width="100px" v-loading="formLoading">
-      <el-form-item label="閮ㄩ棬锛�" required>
-        <el-input v-model="form.name"></el-input>
+    <el-form :model="form" ref="form" label-width="120px" label-position="top" v-loading="formLoading">
+      <el-form-item label="閮ㄩ棬鍚嶇О锛�" required>
+        <el-input v-model="form.name" style="width: 450px"></el-input>
       </el-form-item>
       <el-form-item label="涓婄骇閮ㄩ棬锛�">
         <el-cascader
@@ -28,8 +28,18 @@
           </el-option>
         </el-select>
       </el-form-item>
+      <el-form-item label="鍙鐞嗕笁绾у崟浣嶏細">
+        <el-switch
+          style="display: block"
+          v-model="form.special"
+          active-color="#13ce66"
+          inactive-color="#ff4949"
+          active-text="鍏佽"
+          inactive-text="绂佹">
+        </el-switch>
+      </el-form-item>
       <el-form-item>
-        <el-button type="primary" @click="submitForm">鎻愪氦</el-button>
+        <el-button type="primary" @click="submitForm">淇濆瓨</el-button>
         <el-button @click="resetForm">閲嶇疆</el-button>
       </el-form-item>
     </el-form>
@@ -51,7 +61,8 @@
         id: null,
         name: '',
         parentId: null,
-        adminId: null
+        adminId: null,
+        special: false,
         // level: 1,
         // levelName: ''
       },
@@ -65,6 +76,7 @@
     if (id && parseInt(id) !== 0) {
       _this.formLoading = true
       departmentApi.select(id).then(re => {
+        re.response.parentId = re.response.parentIds
         _this.form = re.response
         _this.formLoading = false
       })
@@ -98,9 +110,11 @@
       // let obj = {
       //   name: this.form.name
       // }
-      _this.form.parentId = _this.form.parentId[0]
+      if (_this.form.parentId) {
+        _this.form.parentId = _this.form.parentId[_this.form.parentId.length - 1];
+      }
       if (_this.fig === 1) {
-        departmentApi.addData(this.form.name).then(res => {
+        departmentApi.addData(this.form).then(res => {
           console.log(res)
           if (res.code === 1) {
             _this.$message.success(res.message)
@@ -145,7 +159,9 @@
         id: null,
         name: '',
         level: 1,
-        levelName: ''
+        parentId: null,
+        levelName: '',
+        special: false
       }
       this.form.id = lastId
     },

--
Gitblit v1.8.0