From 23fc9eb0f2a9d3822cf21894ff25f551751f7d4e Mon Sep 17 00:00:00 2001
From: gongchunyi <deslre0381@gmail.com>
Date: 星期四, 28 五月 2026 21:37:57 +0800
Subject: [PATCH] Revert "feat: 合并"

---
 src/views/collaborativeApproval/noticeManagement/index.vue |  960 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 960 insertions(+), 0 deletions(-)

diff --git a/src/views/collaborativeApproval/noticeManagement/index.vue b/src/views/collaborativeApproval/noticeManagement/index.vue
new file mode 100644
index 0000000..a36b950
--- /dev/null
+++ b/src/views/collaborativeApproval/noticeManagement/index.vue
@@ -0,0 +1,960 @@
+<template>
+  <div class="app-container">
+    <!-- 鎼滅储琛ㄥ崟 -->
+    <div class="search_form">
+      <div>
+        <el-button type="primary" @click="openForm('add')">鏂板鍏憡</el-button>
+        <el-button type="info" @click="openNoticeTypeDialog">鍏憡绫诲瀷閰嶇疆</el-button>
+      </div>
+    </div>
+
+    <!-- 閫氱煡鍏憡鏉� -->
+    <div class="notice-board">
+      <el-tabs v-model="activeNoticeTypeTab" @tab-change="handleNoticeTypeTabChange">
+        <el-tab-pane
+            v-for="noticeType in noticeTypeList"
+            :key="noticeType.id"
+            :label="noticeType.noticeType"
+            :name="String(noticeType.id)"
+        >
+          <template #label>
+            <span>{{ noticeType.noticeType }}
+              <span class="tab-count" v-if="getNoticeCountByType(noticeType.id) > 0">
+                ({{ getNoticeCountByType(noticeType.id) }})
+              </span>
+            </span>
+          </template>
+          
+          <div class="notice-section">
+            <div class="notice-cards">
+              <div
+                  v-for="notice in getNoticesByType(noticeType.id)"
+                  :key="notice.id"
+                  class="notice-card"
+                  :class="{ 'urgent': notice.priority === '3' }"
+              >
+                <div class="card-header">
+                  <div class="card-title">
+                    <el-icon class="notice-icon">
+                      <Calendar/>
+                    </el-icon>
+                    {{ notice.title }}
+                  </div>
+                  <div class="card-actions">
+                    <el-button link type="primary" @click="handleEdit(notice)" :disabled="isNoticeExpired(notice)" v-if="notice.status !== 1">缂栬緫</el-button>
+                    <el-button link type="success" @click="handlePublish(notice)" v-if="notice.status === 0">鍙戝竷</el-button>
+                    <el-button link type="danger" @click="handleDelete(notice.id)" v-if="notice.status !== 1">鍒犻櫎</el-button>
+                  </div>
+                </div>
+                <div class="card-content">
+                  <p>{{ notice.content }}</p>
+                </div>
+                <div class="card-footer">
+                  <div class="card-meta">
+                    <span class="priority" :class="'priority-' + notice.priority">
+                      {{ getPriorityText(notice.priority) }}
+                    </span>
+                    <span class="status" :class="'status-' + getNoticeStatus(notice)">
+                      {{ getStatusText(getNoticeStatus(notice)) }}
+                    </span>
+                  </div>
+                  <div class="card-info">
+                    <span class="creator">{{ notice.createUserName }}</span>
+                    <span class="expiration" v-if="notice.expirationDate">鎴鏃ユ湡锛歿{ notice.expirationDate }}</span>
+                  </div>
+                </div>
+                <div class="card-remark" v-if="notice.remark">
+                  <el-icon>
+                    <InfoFilled/>
+                  </el-icon>
+                  <span>{{ notice.remark }}</span>
+                </div>
+              </div>
+            </div>
+            
+            <pagination
+                v-if="getNoticePageByType(noticeType.id).total > 0"
+                :total="getNoticePageByType(noticeType.id).total"
+                :page="getNoticePageByType(noticeType.id).current"
+                :limit="getNoticePageByType(noticeType.id).size"
+                @pagination="(val) => handleNoticeCurrentChange(noticeType.id, val)"
+            />
+            
+            <!-- 绌虹姸鎬� -->
+            <div class="empty-state" v-if="getNoticesByType(noticeType.id).length === 0">
+              <el-empty description="鏆傛棤閫氱煡鍏憡"/>
+            </div>
+          </div>
+        </el-tab-pane>
+      </el-tabs>
+    </div>
+
+    <!-- 鏂板/缂栬緫瀵硅瘽妗� -->
+    <el-dialog
+        :title="dialogTitle"
+        v-model="dialogVisible"
+        width="800px"
+        append-to-body
+        @close="resetForm"
+    >
+      <el-form ref="formRef" :model="form" :rules="rules" label-width="100px">
+        <el-row>
+          <el-col :span="12">
+            <el-form-item label="鍏憡鏍囬" prop="title">
+              <el-input v-model="form.title" placeholder="璇疯緭鍏ュ叕鍛婃爣棰�"/>
+            </el-form-item>
+          </el-col>
+          <el-col :span="12">
+            <el-form-item label="鍏憡绫诲瀷" prop="type">
+              <el-select v-model="form.type" placeholder="璇烽�夋嫨鍏憡绫诲瀷" style="width: 100%">
+                <el-option
+                    v-for="item in noticeTypeList"
+                    :key="item.id"
+                    :label="item.noticeType"
+                    :value="item.id"
+                />
+              </el-select>
+            </el-form-item>
+          </el-col>
+        </el-row>
+        <el-row>
+          <el-col :span="12">
+            <el-form-item label="鐘舵��">
+              <el-radio-group v-model="form.status">
+                <el-radio :value="0">鑽夌</el-radio>
+                <el-radio :value="1">姝e紡鍙戝竷</el-radio>
+              </el-radio-group>
+            </el-form-item>
+          </el-col>
+          <el-col :span="12">
+            <el-form-item label="浼樺厛绾�">
+              <el-select v-model="form.priority" placeholder="璇烽�夋嫨浼樺厛绾�" style="width: 100%">
+                <el-option label="鏅��" :value="1"/>
+                <el-option label="閲嶈" :value="2"/>
+                <el-option label="绱ф��" :value="3"/>
+              </el-select>
+            </el-form-item>
+          </el-col>
+        </el-row>
+        <el-row>
+          <el-col :span="12">
+            <el-form-item label="杩囨湡鏃堕棿" prop="expirationDate">
+							<el-date-picker  v-model="form.expirationDate" value-format="YYYY-MM-DD" format="YYYY-MM-DD" type="date"
+															 placeholder="璇烽�夋嫨" clearable />
+            </el-form-item>
+          </el-col>
+        </el-row>
+        <el-row>
+          <el-col :span="24">
+            <el-form-item label="鍏憡鍐呭" prop="content">
+              <el-input
+                  v-model="form.content"
+                  type="textarea"
+                  :rows="6"
+                  placeholder="璇疯緭鍏ュ叕鍛婂唴瀹�"
+                  maxlength="500"
+                  show-word-limit
+              />
+            </el-form-item>
+          </el-col>
+        </el-row>
+        <el-row>
+          <el-col :span="24">
+            <el-form-item label="澶囨敞">
+              <el-input
+                  v-model="form.remark"
+                  type="textarea"
+                  :rows="3"
+                  placeholder="璇疯緭鍏ュ娉ㄤ俊鎭�"
+                  maxlength="200"
+                  show-word-limit
+              />
+            </el-form-item>
+          </el-col>
+        </el-row>
+      </el-form>
+      <template #footer>
+        <div class="dialog-footer">
+          <el-button type="primary" @click="submitForm">纭� 瀹�</el-button>
+          <el-button @click="dialogVisible = false">鍙� 娑�</el-button>
+        </div>
+      </template>
+    </el-dialog>
+
+    <!-- 鍏憡绫诲瀷閰嶇疆寮规 -->
+    <el-dialog
+        v-model="noticeTypeDialogVisible"
+        title="鍏憡绫诲瀷閰嶇疆"
+        width="800px"
+        @close="handleNoticeTypeDialogClose"
+    >
+      <div class="notice-type-container">
+        <div class="notice-type-header">
+          <el-button type="primary" @click="handleAddNoticeType">鏂板绫诲瀷</el-button>
+        </div>
+        <el-table :data="noticeTypeList" border style="width: 100%">
+          <el-table-column prop="id" label="ID" width="80" align="center"/>
+          <el-table-column prop="noticeType" label="鍏憡绫诲瀷" align="center">
+            <template #default="scope">
+              <el-input
+                  v-if="scope.row.editing"
+                  v-model="scope.row.noticeType"
+                  placeholder="璇疯緭鍏ュ叕鍛婄被鍨�"
+              />
+              <span v-else>{{ scope.row.noticeType }}</span>
+            </template>
+          </el-table-column>
+          <el-table-column label="鎿嶄綔" width="200" align="center">
+            <template #default="scope">
+              <el-button
+                  v-if="scope.row.editing"
+                  link
+                  type="primary"
+                  @click="handleSaveNoticeType(scope.row)"
+              >
+                淇濆瓨
+              </el-button>
+              <el-button
+                  v-if="scope.row.editing"
+                  link
+                  type="info"
+                  @click="handleCancelEdit(scope.row)"
+              >
+                鍙栨秷
+              </el-button>
+              <el-button
+                  v-if="!scope.row.editing"
+                  link
+                  type="primary"
+                  @click="handleEditNoticeType(scope.row)"
+              >
+                缂栬緫
+              </el-button>
+              <el-button
+                  v-if="!scope.row.editing"
+                  link
+                  type="danger"
+                  @click="handleDeleteNoticeType(scope.row)"
+              >
+                鍒犻櫎
+              </el-button>
+            </template>
+          </el-table-column>
+        </el-table>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script setup>
+import {Calendar, InfoFilled} from "@element-plus/icons-vue";
+import {onMounted, ref, reactive, toRefs, computed} from "vue";
+import {ElMessage, ElMessageBox} from "element-plus";
+import {useRoute} from "vue-router";
+import useUserStore from "@/store/modules/user";
+import {
+  addNotice,
+  delNotice,
+  getCount,
+  listNotice,
+  updateNotice,
+  listNoticeType,
+  addNoticeType,
+  delNoticeType
+} from "../../../api/collaborativeApproval/noticeManagement.js";
+import pagination from "../../../components/PIMTable/Pagination.vue";
+
+const userStore = useUserStore();
+const route = useRoute();
+
+// 鍝嶅簲寮忔暟鎹�
+const data = reactive({
+  searchForm: {
+    title: "",
+    type: undefined,
+    status: undefined,
+  },
+  form: {
+    id: undefined,
+    title: "",
+    type: null,
+    content: "",
+    status: 0,
+    priority: 1,
+    remark: "",
+		expirationDate: "",
+  },
+  rules: {
+    title: [
+      {required: true, message: "鍏憡鏍囬涓嶈兘涓虹┖", trigger: "blur"}
+    ],
+    type: [
+      {required: true, message: "璇烽�夋嫨鍏憡绫诲瀷", trigger: "change"}
+    ],
+    content: [
+      {required: true, message: "鍏憡鍐呭涓嶈兘涓虹┖", trigger: "blur"}
+    ],
+		expirationDate: [
+      {required: true, message: "璇烽�夋嫨鏃ユ湡", trigger: "change"}
+    ]
+  }
+});
+
+const {searchForm, form, rules} = toRefs(data);
+
+// 椤甸潰鐘舵��
+const dialogVisible = ref(false);
+const dialogTitle = ref("");
+const formRef = ref();
+
+// 鍏憡绫诲瀷閰嶇疆鐩稿叧
+const noticeTypeDialogVisible = ref(false);
+const noticeTypeList = ref([]);
+const activeNoticeTypeTab = ref('');
+
+// 閫氱煡鏁版嵁 - 浣跨敤 Map 瀛樺偍锛宬ey 涓虹被鍨� id
+const noticesMap = ref({});
+const noticePagesMap = ref({});
+
+
+// 璁$畻灞炴��
+const filteredNotices = computed(() => {
+  let filtered = [...mockData];
+
+  if (searchForm.value.noticeTitle) {
+    filtered = filtered.filter(item =>
+        item.noticeTitle.includes(searchForm.value.noticeTitle)
+    );
+  }
+  if (searchForm.value.noticeType) {
+    filtered = filtered.filter(item =>
+        item.noticeType === searchForm.value.noticeType
+    );
+  }
+  if (searchForm.value.status !== "") {
+    filtered = filtered.filter(item =>
+        item.status === searchForm.value.status
+    );
+  }
+
+  return filtered;
+});
+
+// 鏂规硶瀹氫箟
+const handleQuery = () => {
+  // 鎼滅储鍔熻兘淇濇寔涓嶅彉锛屼絾鏁版嵁閫氳繃璁$畻灞炴�ц嚜鍔ㄨ繃婊�
+};
+
+const resetQuery = () => {
+  searchForm.value = {
+    title: "",
+    type: "",
+    status: ""
+  };
+};
+
+const getPriorityText = (priority) => {
+  const priorityMap = {"1": "鏅��", "2": "閲嶈", "3": "绱ф��"};
+  return priorityMap[priority] || "鏅��";
+};
+
+const getStatusText = (status) => {
+  const statusMap = {"0": "鑽夌", "1": "宸插彂甯�", "2": "宸茶繃鏈�"};
+  return statusMap[status] || "鏈煡";
+};
+
+const isNoticeExpired = (notice) => {
+  if (!notice || !notice.expirationDate) {
+    return false;
+  }
+
+  const expiration = new Date(notice.expirationDate);
+
+  if (Number.isNaN(expiration.getTime())) {
+    return false;
+  }
+
+  expiration.setHours(23, 59, 59, 999);
+
+  return new Date() > expiration;
+};
+
+const getNoticeStatus = (notice) => {
+  const normalizedStatus = notice && notice.status !== undefined && notice.status !== null
+      ? String(notice.status)
+      : "0";
+
+  return isNoticeExpired(notice) ? "2" : normalizedStatus;
+};
+
+const openForm = (type) => {
+  if (type === 'add') {
+    dialogTitle.value = "鏂板鍏憡";
+    form.value = {
+      id: undefined,
+      title: "",
+      type: undefined,
+      content: "",
+      status: 0,
+      priority: 1,
+      remark: "",
+      expirationDate: "",
+    };
+  }
+  dialogVisible.value = true;
+};
+
+const handleEdit = (row) => {
+  if (isNoticeExpired(row)) {
+    ElMessage.warning("宸茶繃鏈熺殑鍏憡涓嶅彲缂栬緫");
+    return;
+  }
+  dialogTitle.value = "缂栬緫鍏憡";
+  form.value = {...row};
+  dialogVisible.value = true;
+};
+
+const handleDelete = (id) => {
+  ElMessageBox.confirm(
+      "纭鍒犻櫎杩欐潯鍏憡鍚楋紵",
+      "鎻愮ず",
+      {
+        confirmButtonText: "纭畾",
+        cancelButtonText: "鍙栨秷",
+        type: "warning"
+      }
+  ).then(() => {
+    delNotice(id).then(res => {
+      ElMessage.success("鍒犻櫎鎴愬姛");
+      resetTable()
+    })
+  });
+};
+
+const handlePublish = (notice) => {
+  ElMessageBox.confirm(
+      "纭鍙戝竷杩欐潯鍏憡鍚楋紵",
+      "鎻愮ず",
+      {
+        confirmButtonText: "纭畾",
+        cancelButtonText: "鍙栨秷",
+        type: "info"
+      }
+  ).then(() => {
+    updateNotice({
+      ...notice,
+      status: 1
+    }).then(res => {
+      if (res.code === 200) {
+        ElMessage.success("鍙戝竷鎴愬姛");
+        resetTable()
+      }
+    })
+  });
+};
+
+const submitForm = () => {
+  formRef.value.validate((valid) => {
+    if (valid) {
+      if (form.value.id) {
+        // 缂栬緫妯″紡
+        updateNotice(form.value).then(res => {
+          ElMessage.success("淇敼鎴愬姛");
+          resetTable()
+        })
+      } else {
+        // 鏂板妯″紡
+        addNotice(form.value).then(res => {
+          ElMessage.success("鏂板鎴愬姛");
+          resetTable()
+        })
+      }
+      dialogVisible.value = false;
+    }
+  });
+};
+
+// 鍒濆鍖栨煇涓被鍨嬬殑鍒嗛〉鏁版嵁
+const initNoticePage = (typeId) => {
+  if (!noticePagesMap.value[typeId]) {
+    noticePagesMap.value[typeId] = {
+      total: 0,
+      current: 1,
+      size: 10
+    };
+  }
+  if (!noticesMap.value[typeId]) {
+    noticesMap.value[typeId] = [];
+  }
+};
+
+// 鑾峰彇鏌愪釜绫诲瀷鐨勯�氱煡鍒楄〃
+const getNoticesByType = (typeId) => {
+  return noticesMap.value[typeId] || [];
+};
+
+// 鑾峰彇鏌愪釜绫诲瀷鐨勫垎椤垫暟鎹�
+const getNoticePageByType = (typeId) => {
+  return noticePagesMap.value[typeId] || { total: 0, current: 1, size: 10 };
+};
+
+// 鑾峰彇鏌愪釜绫诲瀷鐨勬暟閲�
+const getNoticeCountByType = (typeId) => {
+  return getNoticePageByType(typeId).total || 0;
+};
+
+// 鑾峰彇鏌愪釜绫诲瀷鐨勯�氱煡鏁版嵁
+const fetchNoticesByType = (typeId) => {
+  initNoticePage(typeId);
+  const pageData = noticePagesMap.value[typeId];
+  listNotice({...pageData, type: typeId}).then(res => {
+    if (res.code === 200) {
+      noticesMap.value[typeId] = res.data.records || [];
+      noticePagesMap.value[typeId].total = res.data.total || 0;
+    }
+  });
+};
+
+// 澶勭悊鍒嗛〉鍙樺寲
+const handleNoticeCurrentChange = (typeId, val) => {
+  initNoticePage(typeId);
+  noticePagesMap.value[typeId].size = val.limit;
+  noticePagesMap.value[typeId].current = val.page;
+  fetchNoticesByType(typeId);
+};
+
+// 澶勭悊 tab 鍒囨崲
+const handleNoticeTypeTabChange = (tabName) => {
+  activeNoticeTypeTab.value = tabName;
+  const typeId = Number(tabName);
+  fetchNoticesByType(typeId);
+};
+
+const resetTable = () => {
+  // 閲嶇疆鎵�鏈夌被鍨嬬殑鍒嗛〉骞堕噸鏂拌幏鍙栨暟鎹�
+  noticeTypeList.value.forEach(type => {
+    initNoticePage(type.id);
+    noticePagesMap.value[type.id].current = 1;
+    noticePagesMap.value[type.id].size = 10;
+    fetchNoticesByType(type.id);
+  });
+};
+
+const resetForm = () => {
+  formRef.value?.resetFields();
+};
+
+// 鍏憡绫诲瀷閰嶇疆鐩稿叧鏂规硶
+const openNoticeTypeDialog = () => {
+  noticeTypeDialogVisible.value = true;
+  fetchNoticeTypeList();
+};
+
+const fetchNoticeTypeList = () => {
+  return listNoticeType().then(res => {
+    if (res.code === 200) {
+      noticeTypeList.value = res.data.map(item => ({
+        ...item,
+        editing: false
+      }));
+      
+      // 妫�鏌ヨ矾鐢卞弬鏁颁腑鐨� type
+      const routeType = route.query.type;
+      let targetTypeId = null;
+      
+      if (routeType) {
+        // 濡傛灉璺敱鍙傛暟涓湁 type锛屾煡鎵惧搴旂殑绫诲瀷
+        const typeId = Number(routeType);
+        const foundType = noticeTypeList.value.find(item => item.id === typeId);
+        if (foundType) {
+          targetTypeId = typeId;
+        }
+      }
+      
+      // 濡傛灉鏈夌被鍨嬫暟鎹�
+      if (noticeTypeList.value.length > 0) {
+        // 濡傛灉璺敱鍙傛暟鎸囧畾浜嗙被鍨嬩笖瀛樺湪锛屼娇鐢ㄨ矾鐢卞弬鏁扮殑绫诲瀷
+        // 鍚﹀垯濡傛灉娌℃湁閫変腑 tab锛岄粯璁ら�変腑绗竴涓�
+        if (targetTypeId !== null) {
+          activeNoticeTypeTab.value = String(targetTypeId);
+          fetchNoticesByType(targetTypeId);
+        } else if (!activeNoticeTypeTab.value) {
+          activeNoticeTypeTab.value = String(noticeTypeList.value[0].id);
+          fetchNoticesByType(noticeTypeList.value[0].id);
+        }
+      }
+    }
+  });
+};
+
+const handleAddNoticeType = () => {
+  const newItem = {
+    id: undefined,
+    noticeType: '',
+    editing: true
+  };
+  noticeTypeList.value.push(newItem);
+};
+
+const handleEditNoticeType = (row) => {
+  // 淇濆瓨鍘熷鍊�
+  row.originalNoticeType = row.noticeType;
+  row.editing = true;
+};
+
+const handleSaveNoticeType = (row) => {
+  if (!row.noticeType || row.noticeType.trim() === '') {
+    ElMessage.warning('鍏憡绫诲瀷涓嶈兘涓虹┖');
+    return;
+  }
+  
+  const data = {
+    noticeType: row.noticeType.trim()
+  };
+  
+  if (row.id) {
+    // 缂栬緫妯″紡 - 浼犲叆id
+    data.id = row.id;
+  }
+  
+  addNoticeType(data).then(res => {
+    if (res.code === 200) {
+      ElMessage.success(row.id ? '缂栬緫鎴愬姛' : '鏂板鎴愬姛');
+      row.editing = false;
+      delete row.originalNoticeType;
+      fetchNoticeTypeList().then(() => {
+        // 濡傛灉褰撳墠閫変腑鐨勭被鍨嬭缂栬緫锛岄渶瑕侀噸鏂拌幏鍙栨暟鎹�
+        if (row.id && activeNoticeTypeTab.value === String(row.id)) {
+          fetchNoticesByType(res.data?.id || row.id);
+        }
+      });
+    }
+  });
+};
+
+const handleDeleteNoticeType = (row) => {
+  // 濡傛灉娌℃湁id锛岃鏄庢槸鏂板浣嗘湭淇濆瓨鐨勮锛岀洿鎺ヤ粠鍓嶇鍒犻櫎
+  if (!row.id) {
+    const index = noticeTypeList.value.indexOf(row);
+    if (index > -1) {
+      noticeTypeList.value.splice(index, 1);
+    }
+    return;
+  }
+  
+  // 濡傛灉鏈塱d锛岃皟鐢ㄥ悗绔帴鍙e垹闄�
+  ElMessageBox.confirm(
+      "纭鍒犻櫎杩欎釜鍏憡绫诲瀷鍚楋紵",
+      "鎻愮ず",
+      {
+        confirmButtonText: "纭畾",
+        cancelButtonText: "鍙栨秷",
+        type: "warning"
+      }
+  ).then(() => {
+    delNoticeType(row.id).then(res => {
+      if (res.code === 200) {
+        ElMessage.success("鍒犻櫎鎴愬姛");
+        // 濡傛灉鍒犻櫎鐨勬槸褰撳墠閫変腑鐨勭被鍨嬶紝鍒囨崲鍒扮涓�涓被鍨�
+        if (activeNoticeTypeTab.value === String(row.id)) {
+          fetchNoticeTypeList().then(() => {
+            if (noticeTypeList.value.length > 0) {
+              activeNoticeTypeTab.value = String(noticeTypeList.value[0].id);
+              fetchNoticesByType(noticeTypeList.value[0].id);
+            } else {
+              activeNoticeTypeTab.value = '';
+            }
+          });
+        } else {
+          fetchNoticeTypeList();
+        }
+      }
+    });
+  });
+};
+
+const handleCancelEdit = (row) => {
+  if (!row.id) {
+    // 濡傛灉鏄柊澧炰絾鏈繚瀛樼殑琛岋紝绉婚櫎瀹�
+    const index = noticeTypeList.value.indexOf(row);
+    if (index > -1) {
+      noticeTypeList.value.splice(index, 1);
+    }
+  } else {
+    // 濡傛灉鏄紪杈戜腑鐨勮锛屽彇娑堢紪杈戠姸鎬佸苟鎭㈠鍘熷��
+    row.editing = false;
+    if (row.originalNoticeType !== undefined) {
+      row.noticeType = row.originalNoticeType;
+      delete row.originalNoticeType;
+    }
+  }
+};
+
+const handleNoticeTypeDialogClose = () => {
+  // 鍏抽棴寮规鏃讹紝鍙栨秷鎵�鏈夌紪杈戠姸鎬�
+  noticeTypeList.value.forEach(item => {
+    if (item.editing && !item.id) {
+      // 濡傛灉鏄柊澧炰絾鏈繚瀛樼殑琛岋紝绉婚櫎瀹�
+      const index = noticeTypeList.value.indexOf(item);
+      if (index > -1) {
+        noticeTypeList.value.splice(index, 1);
+      }
+    } else if (item.editing) {
+      // 濡傛灉鏄紪杈戜腑鐨勮锛屽彇娑堢紪杈戠姸鎬佸苟鎭㈠鍘熷��
+      item.editing = false;
+      if (item.originalNoticeType !== undefined) {
+        item.noticeType = item.originalNoticeType;
+        delete item.originalNoticeType;
+      }
+    }
+  });
+};
+
+// 鐢熷懡鍛ㄦ湡
+onMounted(() => {
+  // 鍏堣幏鍙栧叕鍛婄被鍨嬪垪琛紝鐒跺悗鏍规嵁绫诲瀷鑾峰彇閫氱煡鏁版嵁
+  fetchNoticeTypeList();
+});
+</script>
+
+<style scoped>
+.search_form {
+  background: #fff;
+  padding: 20px;
+  margin-bottom: 20px;
+  border-radius: 8px;
+  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
+  display: flex;
+  justify-content: space-between;
+  align-items: center;
+}
+
+.search_title {
+  font-weight: 500;
+  color: #333;
+  margin-right: 8px;
+}
+
+.ml10 {
+  margin-left: 10px;
+}
+
+.notice-board {
+  background: #f5f7fa;
+  padding: 20px;
+  border-radius: 8px;
+}
+
+.notice-section {
+  margin-bottom: 30px;
+}
+
+.section-header {
+  display: flex;
+  align-items: center;
+  margin-bottom: 20px;
+  padding: 0 10px;
+}
+
+.section-header h3 {
+  margin: 0;
+  color: #303133;
+  font-size: 18px;
+  font-weight: 600;
+}
+
+.section-count {
+  margin-left: 10px;
+  background: #409eff;
+  color: white;
+  padding: 2px 8px;
+  border-radius: 12px;
+  font-size: 12px;
+}
+
+.notice-cards {
+  display: grid;
+  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
+  gap: 20px;
+}
+
+.notice-card {
+  background: white;
+  border-radius: 12px;
+  padding: 20px;
+  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
+  transition: all 0.3s ease;
+  border-left: 4px solid transparent;
+}
+
+.notice-card:hover {
+  transform: translateY(-2px);
+  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
+}
+
+.notice-icon {
+  color: #409eff;
+  margin-right: 8px;
+  font-size: 18px;
+}
+
+.tab-count {
+  color: #909399;
+  font-size: 12px;
+  margin-left: 4px;
+}
+
+.urgent {
+  border-left-color: #f56c6c;
+  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
+}
+
+.card-header {
+  display: flex;
+  justify-content: space-between;
+  align-items: flex-start;
+  margin-bottom: 15px;
+}
+
+.card-title {
+  display: flex;
+  align-items: center;
+  font-size: 16px;
+  font-weight: 600;
+  color: #303133;
+  flex: 1;
+}
+
+
+.card-actions {
+  display: flex;
+  gap: 8px;
+}
+
+.card-content {
+  margin-bottom: 15px;
+}
+
+.card-content p {
+  margin: 0;
+  color: #606266;
+  line-height: 1.6;
+  font-size: 14px;
+  word-break: break-all;
+  white-space: pre-wrap;
+  overflow-wrap: break-word;
+}
+
+.card-footer {
+  display: flex;
+  justify-content: space-between;
+  align-items: center;
+  margin-bottom: 10px;
+}
+
+.card-meta {
+  display: flex;
+  gap: 8px;
+}
+
+.priority, .status {
+  padding: 2px 8px;
+  border-radius: 12px;
+  font-size: 12px;
+  font-weight: 500;
+}
+
+.priority-1 {
+  background: #f0f9ff;
+  color: #0369a1;
+}
+
+.priority-2 {
+  background: #fef3c7;
+  color: #d97706;
+}
+
+.priority-3 {
+  background: #fef2f2;
+  color: #dc2626;
+}
+
+.status-0 {
+  background: #f3f4f6;
+  color: #6b7280;
+}
+
+.status-1 {
+  background: #d1fae5;
+  color: #059669;
+}
+
+.status-2 {
+  background: #fef3c7;
+  color: #d97706;
+}
+
+.card-info {
+  display: flex;
+  flex-direction: column;
+  align-items: flex-end;
+  font-size: 12px;
+  color: #909399;
+}
+
+.creator {
+  font-weight: 500;
+  margin-bottom: 2px;
+}
+
+.expiration {
+  margin-top: 2px;
+}
+
+.card-remark {
+  display: flex;
+  align-items: center;
+  gap: 6px;
+  padding: 8px 12px;
+  background: #f8f9fa;
+  border-radius: 6px;
+  font-size: 12px;
+  color: #606266;
+  border-left: 3px solid #409eff;
+}
+
+.empty-state {
+  text-align: center;
+  padding: 60px 20px;
+}
+
+.dialog-footer {
+  text-align: center;
+}
+
+.notice-type-container {
+  padding: 10px 0;
+}
+
+.notice-type-header {
+  margin-bottom: 15px;
+  display: flex;
+  justify-content: flex-end;
+}
+
+/* 鍝嶅簲寮忚璁� */
+@media (max-width: 768px) {
+  .notice-cards {
+    grid-template-columns: 1fr;
+  }
+
+  .search_form {
+    flex-direction: column;
+    gap: 15px;
+  }
+
+  .search_form > div {
+    width: 100%;
+  }
+}
+</style>

--
Gitblit v1.9.3