From 0293d4f776f88ebc307a750f38a16454f4553701 Mon Sep 17 00:00:00 2001
From: zjh <2207896513@qq.com>
Date: 星期二, 19 八月 2025 21:01:35 +0800
Subject: [PATCH] 首检、巡检一致性前端代码提交

---
 pages/QC/XJ/Add.vue |  885 ++++++++++++++++++++++++++++++++++++++++++++++++----------
 1 files changed, 731 insertions(+), 154 deletions(-)

diff --git a/pages/QC/XJ/Add.vue b/pages/QC/XJ/Add.vue
index 9a3048f..02dfc45 100644
--- a/pages/QC/XJ/Add.vue
+++ b/pages/QC/XJ/Add.vue
@@ -1,124 +1,170 @@
 <template>
-  <view>
-    <view class="form-container">
-      <form :modelValue="formData">
-        <view class="form-group">
-          <label class="form-label">妫�楠屽崟鍙�:</label>
-          <input class="form-input" disabled="true" type="text" v-model="formData.releaseNo"/>
-        </view>
-        <view class="form-group">
-          <label class="form-label">鍒涘缓浜�:</label>
-          <input class="form-input" disabled="true" type="text" v-model="formData.createBy"/>
-        </view>
-        <view class="form-group">
-          <label class="form-label">鍒涘缓鏃堕棿:</label>
-          <input class="form-input" disabled="true" type="text" v-model="formData.createDate"/>
-        </view>
-        <view class="uni-form-item uni-column form-item edit">
-          <text class="form-label">绾夸綋缂栧彿:</text>
-          <picker v-if="isUpdate" class="picker form-input" name="selector" :range="DAA020List"
-                  @change="onDaa020Change">
-            <text>{{ DAA020List[DAA020Index] }}</text>
-          </picker>
-          <input v-else class="form-input" disabled="true" type="text" v-model="formData.daa020"/>
-        </view>
-        <view class="uni-form-item uni-column form-item edit">
-          <text class="form-label">鐗╂枡缂栫爜:</text>
-          <picker v-if="isUpdate" class="picker form-input" name="selector" :range="ItemList"
-                  @change="onItemChange">
-            <text>{{ ItemList[ItemIndex] }}</text>
-          </picker>
-          <input v-else class="form-input" disabled="true" type="text" v-model="formData.itemNo"/>
-        </view>
-        <view class="uni-form-item uni-column form-item edit">
-          <text class="form-label">璁″垝缂栧彿:</text>
-          <picker v-if="isUpdate" class="picker form-input" name="selector" :range="DAA001List"
-                  @change="onDaa001Change">
-            <text>{{ DAA001List[DAA001Index] }}</text>
-          </picker>
-          <input v-else class="form-input" disabled="true" type="text" v-model="formData.billNo"/>
-        </view>
-
-        <view class="form-group">
-          <label class="form-label">鐗╂枡鍚嶇О:</label>
-          <input class="form-input" disabled="true" type="text" v-model="formData.itemName"/>
-        </view>
-        <view class="form-group">
-          <label class="form-label">瑙勬牸鍨嬪彿:</label>
-          <input class="form-input" disabled="true" type="text" v-model="formData.itemModel"/>
-        </view>
-        <view class="form-group">
-          <label class="form-label">宸ュ崟鏁伴噺:</label>
-          <input class="form-input" disabled="true" type="text" v-model="formData.planQty"/>
-        </view>
-        <view class="form-group">
-          <label class="form-label">涓嶅悎鏍兼弿杩�:</label>
-          <input class="form-input" disabled="true" type="text" v-model="formData.remarks"/>
-        </view>
-      </form>
+  <view class="inspection-sheet">
+    <!-- 澶撮儴淇℃伅 -->
+    <view class="sheet-header">
+      <h1>宸℃鍗�</h1>
+      <view class="inspection-number">妫�楠屽崟鍙凤細{{ formData.releaseNo }}</view>
     </view>
 
-    <view class="list-container">
-      <uni-table ref="table" border emptyText="鏆傛棤鏇村鏁版嵁">
-        <uni-tr>
-          <uni-th align="center" class="th" style="color: #FFFFFF;">妫�楠岄」鐩�</uni-th>
-          <uni-th align="center" class="th" style="color: #FFFFFF">鏄惁鍚堟牸</uni-th>
-          <uni-th align="center" class="th" style="color: #FFFFFF">璁板綍(鐐瑰嚮)</uni-th>
-        </uni-tr>
-        <uni-tr v-for="(item, index) in tableData" :key="index">
-          <uni-td align="center">
-            <input class="form-input" disabled="true" type="text" v-model="item.projName"/>
-          </uni-td>
-          <uni-td align="center">
-            <input class="form-input" disabled="true" type="text" v-model="item.result"/>
-          </uni-td>
-          <uni-td>
-            <view class="uni-group">
-              <button v-if="item.isCheck >=item.levelNum" type="default" @click="toDetail(item)">
-                {{ item.levelNum + '/' + item.isCheck }}
-              </button>
-              <button v-else type="warn" @click="toDetail(item)">
-                {{ item.levelNum + '/' + item.isCheck }}
-              </button>
+    <!-- 鍩烘湰淇℃伅鍖� -->
+    <view class="basic-info">
+      <view class="info-row">
+        <span class="info-label">鍒涘缓浜猴細</span>
+        <span class="info-value">{{ formData.createBy }}</span>
+        <span class="info-label">鍒涘缓鏃堕棿锛�</span>
+        <span class="info-value">{{ formData.createDate }}</span>
+      </view>
+    </view>
+
+    <!-- 鐗╂枡淇℃伅鍖� -->
+    <view class="material-info">
+      <view class="info-block">
+        <view class="info-label">绾夸綋缂栧彿锛�</view>
+        <view v-if="!isUpdate" class="info-value">{{ formData.daa020 }}</view>
+        <picker v-if="isUpdate" :range="DAA020List" class="picker info-value-input" name="selector"
+                @change="onDaa020Change">
+          <view>{{ DAA020List[DAA020Index] }}</view>
+        </picker>
+      </view>
+      <view class="info-block">
+        <view class="info-label">鐗╂枡缂栫爜锛�</view>
+        <view v-if="!isUpdate" class="info-value">{{ formData.itemNo }}</view>
+        <picker v-if="isUpdate" :range="ItemList" class="picker info-value-input" name="selector"
+                @change="onItemChange">
+          <view>{{ ItemList[ItemIndex] }}</view>
+        </picker>
+      </view>
+      <view class="info-block">
+        <view class="info-label">璁″垝缂栧彿锛�</view>
+        <view v-if="!isUpdate" class="info-value">{{ formData.billNo }}</view>
+        <picker v-if="isUpdate" :range="DAA001List" class="picker info-value-input" name="selector"
+                @change="onDaa001Change">
+          <view>{{ DAA001List[DAA001Index] }}</view>
+        </picker>
+      </view>
+      <view class="info-block">
+        <view class="info-label">鐗╂枡鍚嶇О锛�</view>
+        <view class="info-value">{{ formData.itemName }}</view>
+      </view>
+      <view class="info-block">
+        <view class="info-label">瑙勬牸鍨嬪彿锛�</view>
+        <view class="info-value">{{ formData.itemModel }}</view>
+      </view>
+      <view class="info-block">
+        <view class="info-label">宸ュ崟鏁伴噺锛�</view>
+        <view class="info-value highlight">{{ formData.planQty }}</view>
+      </view>
+      <view v-if="formData.remarks" class="info-block">
+        <view class="info-label">涓嶅悎鏍兼弿杩帮細</view>
+        <view class="info-value">{{ formData.remarks }}</view>
+      </view>
+    </view>
+
+    <!-- 鎿嶄綔鎸夐挳鍖� - 妫�楠岄」鐩幏鍙� -->
+    <view v-if="isUpdate" class="action-buttons">
+      <button class="secondary-btn" @click="getTable">鑾峰彇妫�楠岄」鐩�</button>
+    </view>
+
+    <!-- 妫�楠岄」鐩〃鏍� -->
+    <view v-if="tableData.length > 0" class="inspection-table">
+      <!-- 琛ㄦ牸澶撮儴缁熻淇℃伅 -->
+      <view class="table-header-stats">
+        <view class="stats-left">
+          <view class="stats-title">妫�楠岄」鐩竻鍗�</view>
+          <view class="stats-subtitle">鍏� {{ tableData.length }} 涓楠岄」鐩�</view>
+        </view>
+        <view class="stats-right">
+          <view class="stat-item passed">
+            <span class="stat-count">{{ getPassedCount() }}</span>
+            <span class="stat-label">宸插悎鏍�</span>
+          </view>
+          <view class="stat-item failed">
+            <span class="stat-count">{{ getFailedCount() }}</span>
+            <span class="stat-label">涓嶅悎鏍�</span>
+          </view>
+          <view class="stat-item pending">
+            <span class="stat-count">{{ getPendingCount() }}</span>
+            <span class="stat-label">寰呮楠�</span>
+          </view>
+        </view>
+      </view>
+      <table>
+        <thead>
+        <tr>
+          <th style="text-align: center;" width="15%">妫�楠岄」鐩�</th>
+          <th style="text-align: center;" width="50%">妫�楠屾弿杩�</th>
+          <th style="text-align: center;" width="20%">璁板綍(鐐瑰嚮)</th>
+        </tr>
+        </thead>
+        <tbody>
+        <tr v-for="(item, index) in tableData" :key="index">
+          <td>
+            <view class="project-name-wrapper">
+								<span :class="{
+									'status-approved': item.result=='鍚堟牸',
+									'status-rejected': item.result=='涓嶅悎鏍�',
+									'status-pending': item.result=='鏈畬鎴�'
+								}" class="status-indicator"></span>
+              <span>{{ item.projName }}</span>
             </view>
-          </uni-td>
-        </uni-tr>
-      </uni-table>
+          </td>
+          <td>
+            <view v-if="item.result=='鍚堟牸'" class="watermark approved">
+              鍚堟牸
+            </view>
+            <view v-if="item.result=='涓嶅悎鏍�'" class="watermark rejected">
+              涓嶅悎鏍�
+            </view>
+            <view v-if="item.result=='鏈畬鎴�'" class="watermark pending">
+              寰呮楠�
+            </view>
+            <view class="description-text">{{ item.itemMod }}</view>
+          </td>
+          <td>
+            <button v-if="item.isCheck < item.levelNum" class="record-btn record-btn-fill"
+                    @click="toDetail(item)">
+              濉啓 ({{ item.isCheck }}/{{ item.levelNum }})
+            </button>
+            <button v-else class="record-btn record-btn-view" @click="toDetail(item)">
+              鏌ョ湅 ({{ item.isCheck }}/{{ item.levelNum }})
+            </button>
+          </td>
+        </tr>
+        </tbody>
+      </table>
     </view>
 
-    <view class="plus-button">
-      <button type="warn" v-if="isUpdate && !isShowTable" @click="getItem">鍒涘缓妫�楠屽崟骞剁敓鎴愰儴鍒嗛粯璁ゅ��</button>
-    </view>
-    <view class="plus-button">
-      <button type="warn" v-if="!isUpdate && !isShowTable" @click="toImage">涓婁紶/鏌ョ湅鍥剧墖</button>
-    </view>
-    <view class="plus-button">
-      <button type="warn" v-if="!isUpdate && !formData.fcheckResu && !isShowTable" @click="removeXJ">鍒犻櫎鍗曟嵁</button>
-    </view>
-    <view class="plus-button">
-      <button type="warn" v-if="!isUpdate && !isShowTable" @click="saveRemarks">娣诲姞涓嶅悎鏍兼弿杩�</button>
+    <!-- 鎿嶄綔鎸夐挳鍖� -->
+    <view class="action-buttons">
+      <button v-if="isUpdate && !isShowTable" class="secondary-btn" @click="getItem">鍒涘缓妫�楠屽崟骞剁敓鎴愰儴鍒嗛粯璁ゅ��</button>
+	  
+	    <!-- <button class="secondary-btn" @click="toYzxSubmitFrom(formData.releaseNo)">涓�鑷存�ф牳瀵�</button> -->
+	  
+	   <button v-if="!isUpdate && !isShowTable" class="secondary-btn" @click="toYzxSubmitFrom(formData.releaseNo)">涓�鑷存�ф牳瀵�</button>
+      <button v-if="!isUpdate && !isShowTable" class="secondary-btn" @click="toImage">涓婁紶/鏌ョ湅鍥剧墖</button>
+      <button v-if="!isUpdate && !formData.fsubmit && !isShowTable" class="secondary-btn" @click="removeXJ">
+        鍒犻櫎鍗曟嵁
+      </button>
+      <button v-if="!isUpdate && !isShowTable" class="secondary-btn" @click="saveRemarks">娣诲姞澶囨敞</button>
+      <button v-if="!isUpdate && !isShowTable && formData.fsubmit !== 1 && getPendingCount() === 0 && tableData.length > 0" class="primary-btn" @click="submit">瀹℃牳鍗曟嵁</button>
+      <button v-if="isShowTable" class="secondary-btn" @click="getTable">鑾峰彇妫�楠岄」鐩�</button>
+      <button v-if="isShowTable && isUpdate" class="primary-btn" @click="saveTable">鐢熸垚妫�楠岄」鐩�</button>
     </view>
 
-    <view class="plus-button">
-      <button type="warn" v-if="isShowTable" @click="getTable">鑾峰彇妫�楠岄」鐩�</button>
-    </view>
-    <view class="plus-button">
-      <button type="warn" v-if="isShowTable && isUpdate" @click="saveTable">鐢熸垚妫�楠岄」鐩�</button>
-    </view>
+    <!-- 涓嶅悎鏍兼弿杩板脊绐� -->
     <view v-if="remarksPopup" class="overlay">
       <view class="popup">
-        <h3>淇敼涓嶅悎鏍兼弿杩�</h3>
+        <h3>淇敼澶囨敞</h3>
         <form>
           <view class="form-group">
-            <label class="form-label">涓嶅悎鏍兼弿杩�:</label>
-            <input class="form-input" type="text" v-model="remarks"/>
+            <label class="form-label">澶囨敞:</label>
+            <textarea v-model="remarks" class="form-input form-textarea" placeholder="璇疯緭鍏ュ娉ㄤ俊鎭�..."></textarea>
           </view>
-          <button type="warn" @click="editRemarks">淇敼</button>
+          <button class="updateBut" @click="editRemarks">淇敼</button>
           <button @click="remarksPopup = !remarksPopup">鍙栨秷</button>
         </form>
       </view>
     </view>
-
   </view>
 </template>
 
@@ -137,11 +183,12 @@
         catQty: "",
         detailMem: "",
         taskNo: "",
-        fcheckResu: "",
+        fcheckResu: 0,
         boardModel: "",
         planQty: "",
         mocode: "",
-        boardStyle: ""
+        boardStyle: "",
+        fSubmit: 0
       },
 
       DAA020List: [],
@@ -173,9 +220,14 @@
   },
   onLoad(options) {
     //options涓寘鍚簡url闄勫甫鐨勫弬鏁�
-
+	
     let params = options;
-
+if(params["current"]==='A')
+		{
+			this.current=true;
+		}else if(params["current"]==='B'){
+			this.current=false;
+		}
     if (params["id"]) {
       this.isUpdate = false;
       this.formData.id = params["id"];
@@ -202,6 +254,61 @@
     }
   },
   methods: {
+    // 鑾峰彇鍚堟牸椤圭洰鏁伴噺
+    getPassedCount() {
+      return this.tableData.filter(item => item.result === '鍚堟牸').length;
+    },
+    // 鑾峰彇涓嶅悎鏍奸」鐩暟閲�
+    getFailedCount() {
+      return this.tableData.filter(item => item.result === '涓嶅悎鏍�').length;
+    },
+    // 鑾峰彇寰呮楠岄」鐩暟閲�
+    getPendingCount() {
+      return this.tableData.filter(item => item.result === '鏈畬鎴�').length;
+    },
+    submit() {
+      // 鍙岄噸淇濋櫓锛氭鏌ユ槸鍚﹁繕鏈夋湭瀹屾垚鐨勬楠岄」鐩�
+      const pendingCount = this.getPendingCount();
+      if (pendingCount > 0) {
+        this.$showMessage(`杩樻湁 ${pendingCount} 涓楠岄」鐩湭瀹屾垚锛岃瀹屾垚鎵�鏈夋楠岄」鐩悗鍐嶆彁浜ゅ鏍竊);
+        return;
+      }
+
+      // 妫�鏌ユ槸鍚︽湁妫�楠岄」鐩�
+      if (this.tableData.length === 0) {
+        this.$showMessage("娌℃湁妫�楠岄」鐩紝鏃犳硶鎻愪氦瀹℃牳");
+        return;
+      }
+
+      this.$post({
+        url: "/XJ/XJQaSubmit",
+        data: {
+          userNo: this.$loginInfo.account,
+          gid: this.formData.id
+        }
+      }).then(res => {
+        console.log("瀹屾暣鍝嶅簲鏁版嵁:", res);
+        console.log("Status Code鐨勫��:", res.statusCode);
+        console.log("杩斿洖鐨勬暟鎹�:", res.data);
+        
+        // 妫�鏌ュ绉嶆垚鍔熸潯浠�
+        if (res.statusCode === 200 || res.status === 0 || res.data === true || res.data.tbBillList === true) {
+          this.$showMessage("鎴愬姛鎻愪氦妫�楠�");
+          // 鎻愪氦鎴愬姛鍚庤烦杞埌鍒楄〃椤甸潰
+          setTimeout(() => {
+            uni.navigateTo({
+              url: '/pages/QC/XJ/List'
+            });
+          }, 1500); // 1.5绉掑悗璺宠浆锛岃鐢ㄦ埛鐪嬪埌鎴愬姛鎻愮ず
+        } else {
+          this.$showMessage(res.data.message || res.message || "鎻愪氦澶辫触");
+        }
+      }).catch(err => {
+        console.log("鎻愪氦鍑洪敊:", err);
+        this.$showMessage("鎻愪氦澶辫触锛岃閲嶈瘯");
+      })
+    },
+
     removeXJ() {
       if (this.formData.id) {
         this.$post({
@@ -329,7 +436,11 @@
           }
         });
       });
-    },
+    },	toYzxSubmitFrom(releaseNo){
+		uni.navigateTo({
+			url: 'yzxFrom?id=' +this.formData.id+'&current='+this.current
+		});
+	},
     init() {
       this.$post({
         url: "/XJ/getPage",
@@ -454,65 +565,439 @@
   }
 };
 </script>
+
 <style>
-.form-group {
+/* 鍩虹鏍峰紡 */
+.inspection-sheet {
+  font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
+  max-width: 1000px;
+  margin: 0 auto;
+  padding: 20px;
+  background-color: #fff;
+  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
+}
+
+/* 澶撮儴鏍峰紡 */
+.sheet-header {
+  text-align: center;
+  margin-bottom: 20px;
+  padding-bottom: 15px;
+  border-bottom: 2px solid #e0e0e0;
+}
+
+.sheet-header h1 {
+  color: #2c3e50;
+  font-size: 24px;
+  margin-bottom: 5px;
+}
+
+.inspection-number {
+  font-size: 16px;
+  font-weight: bold;
+  color: #3498db;
+}
+
+/* 鍩烘湰淇℃伅鍖烘牱寮� */
+.basic-info,
+.material-info {
+  margin-bottom: 20px;
+}
+
+.info-row {
+  display: flex;
+  margin-bottom: 10px;
+  flex-wrap: wrap;
+}
+
+.info-label {
+  font-weight: bold;
+  color: #34495e;
+  min-width: 80px;
+  margin-right: 5px;
+}
+
+.info-value {
+  color: #2c3e50;
+  margin-right: 20px;
+}
+
+.highlight {
+  font-weight: bold;
+  color: #e74c3c;
+}
+
+/* 鐗╂枡淇℃伅鍖烘牱寮� */
+.material-info {
+  border: 1px solid #eee;
+  padding: 15px;
+  border-radius: 5px;
+}
+
+.info-block {
   display: flex;
   align-items: center;
-  border-bottom: 1px solid #c9c9c9;
+  margin-bottom: 10px;
+  flex-wrap: wrap;
 }
-.form-label {
-  margin-bottom: 0;
-  padding: 5px;
-}
-.form-input {
+
+.info-value-input {
   flex: 1;
-  margin-bottom: 0;
-  padding: 5px;
+  padding: 8px 12px;
+  border: 1px solid #e9ecef;
+  border-radius: 6px;
+  background: #ffffff;
+  font-size: 14px;
+  margin-top: 6px;
 }
+
 .picker {
-  flex: 1;
-  margin-bottom: 0;
-  padding: 5px;
-  font-size: 12px;
+  width: 100%;
+  padding: 8px 12px;
+  border: 1px solid #e9ecef;
+  border-radius: 6px;
+  background: #ffffff;
+  font-size: 14px;
+  margin-top: 6px;
 }
-.uni-form-item {
+
+/* 琛ㄦ牸鏍峰紡 */
+.inspection-table {
+  margin: 25px 0;
+  border-radius: 8px;
+  overflow: hidden;
+  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
+  background: #fff;
+}
+
+/* 琛ㄦ牸澶撮儴缁熻淇℃伅 */
+.table-header-stats {
   display: flex;
-  border-bottom: 1px solid #c9c9c9;
+  justify-content: space-between;
+  align-items: center;
+  padding: 16px 20px;
+  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
+  border-bottom: 1px solid #e0e0e0;
 }
-.edit {
-  background-color: white;
+
+.stats-left .stats-title {
+  font-size: 18px;
+  font-weight: bold;
+  color: #2c3e50;
+  margin-bottom: 4px;
 }
-/* 榛樿鏍峰紡 */
-.list-container {
-  height: 60vh;
-  /* 璁剧疆鍒楄〃瀹瑰櫒鐨勯珮搴︿负鍓╀綑绌洪棿锛屽苟鍑忓幓琛ㄥ崟瀹瑰櫒鐨勯珮搴� */
-  overflow-y: auto;
-  /* 鍏佽鍒楄〃瀹瑰櫒鍨傜洿婊氬姩 */
-  padding: 10px;
-  /* 鍙�夛細娣诲姞涓�浜涘唴杈硅窛锛屼娇鍒楄〃鍐呭鏇寸編瑙� */
+
+.stats-left .stats-subtitle {
+  font-size: 14px;
+  color: #7f8c8d;
 }
-/* 鍦ㄥ皬灞忓箷璁惧涓婏紝閲嶇疆楂樺害涓洪�傚簲灞忓箷 */
-@media (max-width: 768px) {
-  .list-container {
-    height: calc(100vh - 376px);
-    /* 閫傚綋璋冩暣楂樺害 */
+
+.stats-right {
+  display: flex;
+  gap: 16px;
+}
+
+.stat-item {
+  display: flex;
+  flex-direction: column;
+  align-items: center;
+  padding: 8px 12px;
+  border-radius: 6px;
+  min-width: 60px;
+  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+}
+
+.stat-item.passed {
+  background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(39, 174, 96, 0.2));
+  border: 1px solid rgba(39, 174, 96, 0.3);
+}
+
+.stat-item.failed {
+  background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(230, 126, 34, 0.2));
+  border: 1px solid rgba(230, 126, 34, 0.3);
+}
+
+.stat-item.pending {
+  background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(243, 156, 18, 0.2));
+  border: 1px solid rgba(243, 156, 18, 0.3);
+}
+
+.stat-count {
+  font-size: 20px;
+  font-weight: bold;
+  line-height: 1;
+  margin-bottom: 2px;
+}
+
+.stat-item.passed .stat-count {
+  color: #27ae60;
+}
+
+.stat-item.failed .stat-count {
+  color: #e67e22;
+}
+
+.stat-item.pending .stat-count {
+  color: #f39c12;
+}
+
+.stat-label {
+  font-size: 12px;
+  color: #7f8c8d;
+  font-weight: 500;
+}
+
+/* 绉诲姩绔〃鏍煎ご閮ㄧ粺璁� */
+@media (max-width: 500px) {
+  .table-header-stats {
+    flex-direction: column;
+    gap: 12px;
+    align-items: flex-start;
+    padding: 12px 16px;
+  }
+
+  .stats-right {
+    width: 100%;
+    justify-content: space-around;
+    gap: 8px;
+  }
+
+  .stat-item {
+    flex: 1;
+    min-width: auto;
+    padding: 6px 8px;
+  }
+
+  .stat-count {
+    font-size: 16px;
+  }
+
+  .stat-label {
+    font-size: 11px;
+  }
+
+  .stats-left .stats-title {
+    font-size: 16px;
+  }
+
+  .stats-left .stats-subtitle {
+    font-size: 13px;
   }
 }
-.form-container {
-  padding: 10px;
-  /* 鍙�夛細娣诲姞涓�浜涘唴杈硅窛锛屼娇琛ㄥ崟鍐呭鏇寸編瑙� */
+
+.inspection-table table {
+  width: 100%;
+  border-collapse: collapse;
 }
-.th {
-  background-color: lightskyblue;
-  color: #FFFFFF;
+
+.inspection-table th, .inspection-table td {
+  padding: 16px 20px;
+  border: none;
+  text-align: left;
+  border-bottom: 1px solid #eee;
 }
-.plus-button {
-  line-height: 59px;
-  font-size: 24px;
+
+.inspection-table th {
+  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
+  font-weight: 600;
+  color: #fff;
+  font-size: 14px;
+  letter-spacing: 0.5px;
+  position: relative;
+}
+
+.inspection-table tbody tr {
+  transition: all 0.3s ease;
+  border-left: 4px solid transparent;
+}
+
+.inspection-table tbody tr:nth-child(even) {
+  background-color: #f8fafc;
+}
+
+.inspection-table tbody tr:hover {
+  background-color: #e8f4fd;
+  border-left-color: #3498db;
+  transform: translateY(-1px);
+  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
+}
+
+/* 妫�楠岄」鐩垪鏍峰紡 */
+.inspection-table td:first-child {
+  font-weight: 600;
+  color: #2c3e50;
+  font-size: 15px;
+}
+
+/* 椤圭洰鍚嶇О鍖呰鍣� */
+.project-name-wrapper {
+  display: flex;
+  align-items: center;
+  gap: 8px;
+}
+
+/* 鐘舵�佹寚绀哄櫒 */
+.status-indicator {
+  width: 8px;
+  height: 8px;
+  border-radius: 50%;
+  display: inline-block;
+  flex-shrink: 0;
+  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
+}
+
+.status-indicator.status-approved {
+  background-color: #27ae60;
+  box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.3);
+}
+
+.status-indicator.status-rejected {
+  background-color: #e67e22;
+  box-shadow: 0 0 0 2px rgba(230, 126, 34, 0.3);
+}
+
+.status-indicator.status-pending {
+  background-color: #f39c12;
+  box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.3);
+}
+
+/* 妫�楠屾弿杩板垪鐗规畩鏍峰紡 */
+.inspection-table td:nth-child(2) {
+  position: relative;
+  min-height: 80px;
+  vertical-align: top;
+  padding: 16px 20px;
+}
+
+/* 鎸夐挳鏍峰紡 */
+.action-buttons {
+  display: flex;
+  justify-content: flex-end;
+  gap: 10px;
+  margin-top: 20px;
+}
+
+.primary-btn,
+.secondary-btn {
+  padding: 10px 20px;
+  border: none;
+  border-radius: 4px;
+  font-size: 14px;
   cursor: pointer;
-  z-index: 1000;
-  margin-bottom: 10px;
+  transition: all 0.3s;
 }
+
+.primary-btn {
+  background-color: #3498db;
+  color: white;
+}
+
+.primary-btn:hover {
+  background-color: #2980b9;
+}
+
+.secondary-btn {
+  background-color: #ecf0f1;
+  color: #7f8c8d;
+}
+
+.secondary-btn:hover {
+  background-color: #d5dbdb;
+}
+
+.record-btn {
+  padding: 8px 16px;
+  background: linear-gradient(135deg, #3498db, #2980b9);
+  color: #fff;
+  border: none;
+  border-radius: 6px;
+  cursor: pointer;
+  transition: all 0.3s ease;
+  font-weight: 500;
+  font-size: 13px;
+  box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
+}
+
+.record-btn:hover {
+  background: linear-gradient(135deg, #2980b9, #1f618d);
+  transform: translateY(-1px);
+  box-shadow: 0 4px 8px rgba(52, 152, 219, 0.4);
+}
+
+.record-btn:active {
+  transform: translateY(0);
+}
+
+/* 濉啓鐘舵�佹寜閽� */
+.record-btn-fill {
+  background: linear-gradient(135deg, #2ecc71, #27ae60);
+  box-shadow: 0 2px 4px rgba(46, 204, 113, 0.3);
+}
+
+.record-btn-fill:hover {
+  background: linear-gradient(135deg, #27ae60, #229954);
+  box-shadow: 0 4px 8px rgba(46, 204, 113, 0.4);
+}
+
+/* 鏌ョ湅鐘舵�佹寜閽� */
+.record-btn-view {
+  background: linear-gradient(135deg, #95a5a6, #7f8c8d);
+  box-shadow: 0 2px 4px rgba(149, 165, 166, 0.3);
+}
+
+.record-btn-view:hover {
+  background: linear-gradient(135deg, #7f8c8d, #6c7b7d);
+  box-shadow: 0 4px 8px rgba(149, 165, 166, 0.4);
+}
+
+/* 姘村嵃鏍峰紡 */
+.watermark {
+  position: absolute;
+  font-size: 32px;
+  font-weight: bold;
+  opacity: 0.4;
+  z-index: 3;
+  pointer-events: none;
+  bottom: 8px;
+  right: 8px;
+  transform: rotate(-15deg);
+  transform-origin: bottom right;
+  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
+  min-width: 60px;
+  text-align: center;
+}
+
+.watermark.approved {
+  color: #27ae60; /* 鏇存贰鐨勭豢鑹� */
+}
+
+.watermark.rejected {
+  color: #e67e22; /* 鏇存贰鐨勭孩鑹� */
+}
+
+.watermark.pending {
+  color: #f39c12; /* 姗欒壊 */
+}
+
+/* 鎻忚堪鏂囨湰鏍峰紡 */
+.description-text {
+  position: relative;
+  z-index: 2;
+  padding: 12px 16px;
+  background: transparent;
+  line-height: 1.6;
+  font-size: 14px;
+  color: #555;
+  margin: 0;
+  word-wrap: break-word;
+  word-break: break-word;
+  max-width: 100%;
+  /* 纭繚鏂囧瓧涓嶄細澶暱閬尅姘村嵃 */
+  padding-right: 80px;
+  min-height: 20px;
+  display: block;
+}
+
+/* 寮瑰嚭灞傛牱寮� */
 .overlay {
   position: fixed;
   top: 0;
@@ -523,15 +1008,107 @@
   display: flex;
   justify-content: center;
   align-items: center;
+  z-index: 10;
 }
+
 .popup {
   background-color: #fff;
   padding: 20px;
   border: 1px solid #ccc;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
-  width: 68vw;
-  /* 璁剧疆瀹藉害涓鸿鍙e搴︾殑80% */
-  height: 25vh;
-  /* 璁剧疆楂樺害涓鸿鍙i珮搴︾殑80% */
+  width: 85vw;
+  min-height: 35vh;
+  max-height: 60vh;
+  border-radius: 8px;
+}
+
+.popup h3 {
+  margin-top: 0;
+  color: #2c3e50;
+  border-bottom: 1px solid #eee;
+  padding-bottom: 10px;
+  margin-bottom: 15px;
+  font-size: 16px;
+  text-align: center;
+}
+
+.popup .form-group {
+  margin-bottom: 15px;
+  display: flex;
+  flex-direction: column;
+}
+
+.popup .form-label {
+  margin-bottom: 5px;
+  font-weight: bold;
+  font-size: 14px;
+}
+
+.popup .form-input {
+  width: 100%;
+  padding: 8px;
+  border: 1px solid #ddd;
+  border-radius: 4px;
+  font-size: 14px;
+  box-sizing: border-box;
+}
+
+.popup .form-textarea {
+  min-height: 120px;
+  resize: vertical;
+  font-family: inherit;
+  line-height: 1.5;
+}
+
+.popup-buttons {
+  display: flex;
+  justify-content: flex-end;
+  gap: 10px;
+  margin-top: 20px;
+}
+
+.updateBut {
+  background-color: #3498db;
+  color: white;
+  border: none;
+  padding: 8px 15px;
+  border-radius: 4px;
+  margin-right: 10px;
+  cursor: pointer;
+  transition: all 0.3s;
+}
+
+.updateBut:hover {
+  background-color: #2980b9;
+}
+
+/* 鍝嶅簲寮忚璁� */
+@media (max-width: 500px) {
+  .info-row,
+  .info-block {
+    flex-direction: column;
+    align-items: flex-start;
+  }
+
+  .action-buttons {
+    flex-direction: column;
+  }
+
+  .inspection-table table {
+    display: block;
+    overflow-x: auto;
+  }
+
+  /* 绉诲姩绔脊鍑烘浼樺寲 */
+  .popup {
+    width: 95vw;
+    min-height: 40vh;
+    max-height: 70vh;
+    padding: 15px;
+  }
+
+  .popup .form-textarea {
+    min-height: 100px;
+  }
 }
 </style>
\ No newline at end of file

--
Gitblit v1.9.3