From 873ec036ec89b681e253705c2e025278cadf58dc Mon Sep 17 00:00:00 2001
From: Crunchy <3114200645@qq.com>
Date: 星期三, 24 四月 2024 17:30:24 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 static/img/notice-3.svg                               |    2 
 src/components/tool/value-table.vue                   |   11 
 src/components/view/b4-daily-business-statistics.vue  |    3 
 src/components/view/a6-device-overview.vue            |   36 -
 src/components/view/b4-sample-defects.vue             |   70 ++-
 src/view/index.vue                                    |   24 +
 src/assets/api/controller.js                          |   11 
 src/components/view/notice-detail.vue                 |   76 ++-
 /dev/null                                             |    1 
 src/components/tool/scroll-paging.vue                 |   82 ++++
 src/view/notice.vue                                   |  361 +++++++++++---------
 static/img/notice-4.svg                               |    2 
 src/components/view/b1-report-preparation.vue         |    3 
 static/img/notice-2.svg                               |    2 
 src/main.js                                           |    9 
 src/components/view/a5-laboratory-management.vue      |   19 
 src/components/view/a6-device-management.vue          |  166 +++++----
 src/components/view/a6-personnel-overview.vue         |   37 -
 static/img/notice-5.svg                               |    2 
 src/components/view/b4-inspection-item-statistics.vue |    3 
 src/components/view/index-index.vue                   |   73 +++
 21 files changed, 612 insertions(+), 381 deletions(-)

diff --git a/src/assets/api/controller.js b/src/assets/api/controller.js
index 0af6352..4608a64 100644
--- a/src/assets/api/controller.js
+++ b/src/assets/api/controller.js
@@ -21,6 +21,7 @@
     report,
     certification,
     sealScope,
+    informationNotification,
 	}
 }
 
@@ -137,6 +138,7 @@
   delInsOrderTemplate: "/insOrder/delInsOrderTemplate", //鍒犻櫎妫�楠屽崟妯℃澘
 	selectSampleAndProductByOrderId: "/insOrder/selectSampleAndProductByOrderId", //閫氳繃妫�楠屽崟鏌ヨ妫�楠屾暟鎹紙鏁版嵁鏌ョ湅锛�
 	costStatistics: "/insOrder/costStatistics", //璐圭敤缁熻
+  selectSampleDefects: "/insOrder/selectSampleDefects", //鏍峰搧缂洪櫡鎸囨爣
 }
 
 const sampleOrder = {
@@ -237,3 +239,12 @@
   addSeal:"/sealScope/addSeal",//娣诲姞鍗扮珷鍙傛暟
 }
 
+const informationNotification = {
+  checkForUnreadData:"/informationNotification/checkForUnreadData",//鏌ヨ鏄惁瀛樺湪鏈鏁版嵁
+  deleteDataBasedOnId:"/informationNotification/deleteDataBasedOnId",//鏍规嵁Id鍒犻櫎鏁版嵁
+  informationReadOrDelete:"/informationNotification/informationReadOrDelete",//鏍囪鎵�鏈変俊鎭负宸茶-鍒犻櫎鎵�鏈夊凡璇绘秷鎭�
+  page:"/informationNotification/page",//婊氬姩鍒嗛〉鏌ヨ
+  updateMessageStatus:"/informationNotification/updateMessageStatus",//鏇存柊娑堟伅鐘舵�侊紙鎷掔粷銆佹帴鏀讹級
+  triggerModificationStatusToRead:"/informationNotification/triggerModificationStatusToRead",//鐐瑰嚮璇︽儏瑙﹀彂淇敼鐘舵�佷负宸茶
+}
+
diff --git a/src/components/tool/scroll-paging.vue b/src/components/tool/scroll-paging.vue
new file mode 100644
index 0000000..c60265f
--- /dev/null
+++ b/src/components/tool/scroll-paging.vue
@@ -0,0 +1,82 @@
+<template>
+  <div class="scroll-pagination"  ref="content" @scroll="scrollFn">
+    <slot></slot>
+    <el-button
+        v-if="isLoding"
+        type="text"
+        style="display: flex; margin: 0 auto; color: #909399"
+        ><i class="el-icon-loading" style="font-size:20px"></i
+      ></el-button>
+    <el-button
+      type="text"
+      v-if="finishLoding"
+      style="display: flex; margin: 0 auto; color: #909399"
+      >宸茬粡娌℃湁鏇村鍟</el-button
+    >
+  </div>
+</template>
+
+<script>
+export default {
+  name: 'ScrollPagination',
+  props: {
+    finishLoding: {
+      type:Boolean,
+      default:false
+    }
+  },
+  data() {
+    return {
+      isLoding: false,
+    }
+  },
+  mounted(){
+    window.addEventListener("scroll", this.throttle(this.scrollFn, 20000));
+  },
+  methods: {
+    scrollFn() {
+      let content = this.$refs.content
+      if (content.scrollTop + content.clientHeight >= content.scrollHeight) {
+        if(!this.finishLoding){
+          this.loadMore()
+        }else{
+          this.isLoding = false
+        }
+      }
+    },
+    loadMore(){
+      if (this.isLoding) return
+      this.isLoding = true
+      // Simulate loading data (replace with your own API call)
+      setTimeout(() => {
+        this.$emit('load')
+        this.isLoding = false
+      }, 1000)
+    },
+    throttle(fn, wait) {
+      // 灏佽鍑芥暟杩涜鑺傛祦
+      var timer = null;
+      return function () {
+        var context = this;
+        var args = arguments;
+        if (!timer) {
+          timer = setTimeout(function () {
+            fn.apply(context, args);
+            timer = null;
+          }, wait);
+        }
+      };
+    },
+  },
+  destroyed() {
+    window.removeEventListener("scroll", this.throttle(), false);
+  },
+}
+</script>
+
+<style scoped>
+.scroll-pagination {
+  height: 100%;
+  overflow-y: auto;
+}
+</style>
diff --git a/src/components/tool/value-table.vue b/src/components/tool/value-table.vue
index e3f3b28..5c37a1e 100644
--- a/src/components/tool/value-table.vue
+++ b/src/components/tool/value-table.vue
@@ -892,6 +892,15 @@
 					}
 				}
 				this.addLoad = true
+        this.upHead.forEach((item,index)=>{
+          if(this.data.cascaderField&&this.data.cascaderField[item.label]){
+            if(this.upData[item.label]){
+              this.upData[item.label] = this.upData[item.label].join(',');
+            }else{
+              this.upData[item.label] = ''
+            }
+          }
+        })
 				this.$axios.post(this.addUrl, this.upData, {
 					headers: {
 						'Content-Type': 'application/json'
@@ -1050,7 +1059,7 @@
 				return count * 15 + 60 + 'px'
 			},
       handleSuccessUp(response,label){
-        if(label){
+        if(typeof label === 'string'){
           if(response.code==200){
             this.upData[label] = response.data.url;
           }
diff --git a/src/components/view/a5-laboratory-management.vue b/src/components/view/a5-laboratory-management.vue
index add07bd..b71d734 100644
--- a/src/components/view/a5-laboratory-management.vue
+++ b/src/components/view/a5-laboratory-management.vue
@@ -211,10 +211,19 @@
 					showSelect: false,
 					select: false,
 					do: [],
-					tagField: {},
-					selectField: {},
+					tagField: {
+            type:{
+              select:[]
+            }
+          },
+					selectField: {
+            type:{
+              select:[]
+            }
+          },
 					requiredAdd: [],
-					requiredUp: []
+					requiredUp: [],
+          addUpload:['address'],
 				},
 				entityCopy: {},
 				upIndex: 0,
@@ -274,6 +283,8 @@
             return m
           })
           this.options[0].children = arr;
+          this.fileComponentData.tagField.type.select = arr;
+          this.fileComponentData.selectField.type.select = arr;
         })
       },
 			refresh() {
@@ -356,7 +367,7 @@
 					if (power[i].menuMethod == 'addParameter') {
 						add = true
 					}
-          if (power[i].menuMethod == 'selectSeal') {
+          if (power[i].menuMethod == 'addSeal') {
 						file = true
 					}
 				}
diff --git a/src/components/view/a6-device-management.vue b/src/components/view/a6-device-management.vue
index a491558..bec5b90 100644
--- a/src/components/view/a6-device-management.vue
+++ b/src/components/view/a6-device-management.vue
@@ -77,7 +77,7 @@
 						v-model="componentData.entity.specificationModel" @keyup.enter.native="refreshTable()"></el-input></div>
 			</div>
 			<div class="search_thing">
-				<div class="search_label">璁惧澶х被锛�</div>
+				<div class="search_label">璁惧鍒嗙被锛�</div>
 				<el-select v-model="componentData.entity.largeCategory" placeholder="璇烽�夋嫨">
 					<el-option v-for="item in equipmentList" :key="item.value" :label="item.label" :value="item.value">
 					</el-option>
@@ -199,7 +199,7 @@
 						<el-form-item label="瑙勬牸鍨嬪彿:">
 							<el-input :disabled="isUp" v-model="formData.specificationModel" size="small"></el-input>
 						</el-form-item>
-						<el-form-item label="璁惧鐘舵��:">
+						<el-form-item label="褰撳墠鐘舵��:">
 							<el-select :disabled="isUp" v-model="formData.deviceStatus" placeholder="璇烽�夋嫨" size="small"
 								style="width:100%">
 								<el-option v-for="item in deviceStatusList" :key="item.value" :label="item.label" :value="item.value">
@@ -277,13 +277,20 @@
 							</div>
 						</el-image>
 						<!-- 琛ㄥ崟 -->
-						<el-form :label-position="labelPosition" :model="formData2" label-width="90px">
-							<el-form-item label="鍑哄巶鏃ユ湡:">
-								<el-date-picker style="width:100%" v-model="formData2.dateProduction" type="datetime" size="small"
-									format="yyyy-MM-dd HH:mm:ss" value-format="yyyy-MM-dd HH:mm:ss" placeholder="閫夋嫨鏃ユ湡">
-								</el-date-picker>
+						<el-form :label-position="labelPosition" :model="formData2" label-width="100px">
+							<el-form-item label="浠櫒鍚嶇О:">
+                <el-input v-model="formData2.deviceName" size="small"></el-input>
 							</el-form-item>
-							<el-form-item label="璁惧璐熻矗浜�:">
+              <el-form-item label="浠櫒鍚嶇ОEN:">
+                <el-input v-model="formData2.deviceName" size="small"></el-input>
+							</el-form-item>
+              <el-form-item label="瑙勬牸鍨嬪彿:">
+                <el-input v-model="formData2.deviceName" size="small"></el-input>
+							</el-form-item>
+              <el-form-item label="鐢熶骇鍘傚:">
+                <el-input v-model="formData2.deviceName" size="small"></el-input>
+							</el-form-item>
+							<!-- <el-form-item label="璁惧璐熻矗浜�:">
 								<el-select v-model="formData2.equipmentManager" placeholder="璇烽�夋嫨" size="small" style="width:100%">
 									<el-option v-for="item in responsiblePersonList" :key="item.value" :label="item.label"
 										:value="item.value">
@@ -309,87 +316,102 @@
                 separator=","
                 clearable></el-cascader>
 							</el-form-item>
+              -->
 						</el-form>
 					</el-col>
 				</el-col>
 				<!-- 涓棿甯冨眬 -->
 				<el-col :span="7">
-					<el-form :label-position="labelPosition" :model="formData2" label-width="116px">
-						<el-form-item label="璁惧鍚嶇О:">
-							<el-input v-model="formData2.deviceName" size="small"></el-input>
-						</el-form-item>
-						<el-form-item label="鍐呴儴缂栫爜:">
-							<el-input v-model="formData2.internalCode" size="small"></el-input>
-						</el-form-item>
-						<el-form-item label="璧勪骇缂栫爜:">
-							<el-input v-model="formData2.assetCode" size="small"></el-input>
-						</el-form-item>
-						<el-form-item label="鏍″噯鏃ユ湡锛堟湀锛�:">
-							<el-date-picker v-model="formData2.calibrationDate" type="month" size="small" format="yyyy-MM"
-								value-format="yyyy-MM" style="width:100%" placeholder="閫夋嫨鏈�">
+					<el-form :label-position="labelPosition" :model="formData2" label-width="110px">
+            <el-form-item label="鐢熶骇鍘傚EN:">
+              <el-input v-model="formData2.deviceName" size="small"></el-input>
+            </el-form-item>
+            <el-form-item label="鍑哄巶缂栧彿:">
+              <el-input v-model="formData2.deviceName" size="small"></el-input>
+            </el-form-item>
+            <el-form-item label="绠$悊缂栧彿:">
+              <el-input v-model="formData2.deviceName" size="small"></el-input>
+            </el-form-item>
+            <el-form-item label="鎶�鏈寚鏍�:">
+              <el-input v-model="formData2.deviceName" :rows="7" type="textarea" size="small"></el-input>
+            </el-form-item>
+            <el-form-item label="璐疆鏃ユ湡:">
+							<el-date-picker style="width:100%" v-model="formData2.scrapTime" type="date"
+								format="yyyy-MM-dd" value-format="yyyy-MM-dd" size="small" placeholder="閫夋嫨鏃ユ湡">
 							</el-date-picker>
 						</el-form-item>
-						<el-form-item label="鎶ュ簾鏃堕棿:">
-							<el-date-picker style="width:100%" v-model="formData2.scrapTime" type="datetime"
-								format="yyyy-MM-dd HH:mm:ss" value-format="yyyy-MM-dd HH:mm:ss" size="small" placeholder="閫夋嫨鏃堕棿">
+            <el-form-item label="鍚敤鏃ユ湡:">
+							<el-date-picker style="width:100%" v-model="formData2.scrapTime" type="date"
+								format="yyyy-MM-dd" value-format="yyyy-MM-dd" size="small" placeholder="閫夋嫨鏃ユ湡">
 							</el-date-picker>
 						</el-form-item>
-						<el-form-item label="楠屾敹璁板綍:">
-							<el-input v-model="formData2.acceptanceRecords" size="small"></el-input>
-						</el-form-item>
-						<el-form-item label="璁惧缂栫爜:">
-							<el-input v-model="formData2.factoryNo" size="small"></el-input>
-						</el-form-item>
-						<el-form-item label="璐疆鏃ユ湡:">
-							<el-date-picker style="width:100%" v-model="formData2.acquisitionDate" type="datetime" size="small"
-								format="yyyy-MM-dd HH:mm:ss" value-format="yyyy-MM-dd HH:mm:ss" placeholder="閫夋嫨鏃ユ湡">
-							</el-date-picker>
-						</el-form-item>
-						<el-form-item label="鍑嗙‘搴﹂噺鍊�:">
-							<el-input v-model="formData2.accurateMeasurement" size="small"></el-input>
-						</el-form-item>
-						<el-form-item label="澶囨敞:">
-							<el-input v-model="formData2.notes" size="small"></el-input>
-						</el-form-item>
+            <el-form-item label="绠$悊浜�:">
+              <el-select v-model="formData2.equipmentManager" placeholder="璇烽�夋嫨" size="small" style="width:100%">
+                <el-option v-for="item in responsiblePersonList" :key="item.value" :label="item.label"
+                  :value="item.value">
+                </el-option>
+              </el-select>
+            </el-form-item>
+            <el-form-item label="鍦板潃:">
+              <el-input v-model="formData2.deviceName" size="small"></el-input>
+            </el-form-item>
 					</el-form>
 				</el-col>
 				<!-- 鍙宠竟甯冨眬 -->
 				<el-col :span="7">
-					<el-form :label-position="labelPosition" :model="formData2" label-width="110px" ref="ruleForm">
-						<el-form-item label="瑙勬牸鍨嬪彿:">
-							<el-input v-model="formData2.specificationModel" size="small"></el-input>
+					<el-form :label-position="labelPosition" :model="formData2" label-width="120px" ref="ruleForm">
+            <!-- 瀹為獙瀹ゅ垪琛� -->
+            <el-form-item label="鎵�灞為儴闂�:">
+              <el-select v-model="formData2.equipmentManager" placeholder="璇烽�夋嫨" size="small" style="width:100%">
+                <el-option v-for="item in responsiblePersonList" :key="item.value" :label="item.label"
+                  :value="item.value">
+                </el-option>
+              </el-select>
+            </el-form-item>
+            <el-form-item label="妫�娴嬮」鐩�:">
+              <el-cascader
+              v-model="formData.insProductIds"
+              :options="options"
+              :show-all-levels="false"
+              :props="props"
+              placeholder="璇烽�夋嫨" size="small"
+              style="width:100%"
+              collapse-tags
+              separator=","
+              clearable></el-cascader>
+            </el-form-item>
+            <el-form-item label="鏍″噯鏈嶅姟鏈烘瀯:">
+              <el-input v-model="formData2.deviceName" size="small"></el-input>
+            </el-form-item>
+            <el-form-item label="鏈�杩戞牎鍑嗘棩鏈�:">
+							<el-date-picker style="width:100%" v-model="formData2.latestTraceability" format="yyyy-MM-dd"
+								value-format="yyyy-MM-dd" type="date" size="small" placeholder="閫夋嫨鏃ユ湡">
+							</el-date-picker>
 						</el-form-item>
-						<el-form-item label="璁惧鐘舵��:">
+            <el-form-item label="涓嬫鏍″噯鏃ユ湡:">
+							<el-date-picker style="width:100%" v-model="formData2.latestTraceability" format="yyyy-MM-dd"
+								value-format="yyyy-MM-dd" type="date" size="small" placeholder="閫夋嫨鏃ユ湡">
+							</el-date-picker>
+						</el-form-item>
+            <el-form-item label="璁惧绫诲瀷:">
+              <el-select v-model="formData2.equipmentManager" placeholder="璇烽�夋嫨" size="small" style="width:100%">
+                <el-option v-for="item in equipmentList" :key="item.value" :label="item.label"
+                  :value="item.value">
+                </el-option>
+              </el-select>
+            </el-form-item>
+            <el-form-item label="鍗曚环(涓囧厓):">
+              <el-input v-model="formData2.deviceName" size="small"></el-input>
+            </el-form-item>
+            <el-form-item label="褰撳墠鐘舵��:">
 							<el-select v-model="formData2.deviceStatus" placeholder="璇烽�夋嫨" size="small" style="width:100%">
 								<el-option v-for="item in deviceStatusList" :key="item.value" :label="item.label" :value="item.value">
 								</el-option>
 							</el-select>
 						</el-form-item>
-						<el-form-item label="瀛樻斁鐐�:">
-							<el-input v-model="formData2.storagePoint" size="small"></el-input>
-						</el-form-item>
-						<el-form-item label="鏈�杩戣拷婧棩鏈�:">
-							<el-date-picker style="width:100%" v-model="formData2.latestTraceability" format="yyyy-MM-dd HH:mm:ss"
-								value-format="yyyy-MM-dd HH:mm:ss" type="datetime" size="small" placeholder="閫夋嫨鏃ユ湡">
-							</el-date-picker>
-						</el-form-item>
-						<el-form-item label="鍋滅敤鏃堕棿:">
-							<el-date-picker style="width:100%" format="yyyy-MM-dd HH:mm:ss" value-format="yyyy-MM-dd HH:mm:ss"
-								v-model="formData2.downTime" type="datetime" size="small" placeholder="閫夋嫨鏃堕棿">
-							</el-date-picker>
-						</el-form-item>
-						<el-form-item label="缁翠慨璁板綍:">
-							<el-input v-model="formData2.maintenanceRecords" size="small"></el-input>
-						</el-form-item>
-						<el-form-item label="鐢熶骇鍘傚:">
-							<el-input v-model="formData2.manufacturer" size="small"></el-input>
-						</el-form-item>
-						<el-form-item label="閲囪喘璐圭敤:">
-							<el-input v-model="formData2.procurementCosts" size="small"></el-input>
-						</el-form-item>
-						<el-form-item label="鏍″噯璇佷功:">
-							<el-input v-model="formData2.calibrationCerticate" size="small"></el-input>
-						</el-form-item>
+            <el-form-item label="鏍″噯鍛ㄦ湡锛堟湀锛�:">
+              <el-input v-model="formData2.deviceName" size="small"></el-input>
+            </el-form-item>
 						<el-form-item label="鍥剧墖:">
 							<div
 								style="border: 1px solid #DCDFE6;border-radius:4px;height:32px;lineHeight:32px;display:flex;justify-content: space-around;font-size: 13px;">
@@ -434,7 +456,7 @@
 				options: [],
 				labelPosition: 'right',
 				dialogVisible: false,
-				dialogVisible2: false,
+				dialogVisible2: true,
 				addPower: false,
 				componentData: {
 					entity: {
@@ -518,7 +540,7 @@
 				responsiblePersonList: [],
 				// 鎺堟潈浜哄垪琛�
 				authorizerList: [],
-				// 璁惧鐘舵�佸垪琛�
+				// 褰撳墠鐘舵�佸垪琛�
 				deviceStatusList: [],
 				upLoad: false,
 				upLoad2: false,
diff --git a/src/components/view/a6-device-overview.vue b/src/components/view/a6-device-overview.vue
index eb4bfab..196ea2e 100644
--- a/src/components/view/a6-device-overview.vue
+++ b/src/components/view/a6-device-overview.vue
@@ -151,8 +151,9 @@
 				<el-button size="small" type="primary" @click="currentPage= 1,list=[],finishLoding = false,refreshTable()">鏌� 璇�</el-button>
 			</div>
 		</div>
-		<div class="table" @scroll="scrollFn">
-      <ul v-loading="loading" class="card">
+		<div class="table" v-loading="loading">
+      <scroll-pagination @load="refreshTable" :finishLoding="finishLoding">
+        <ul class="card">
         <li v-for="(m,i) in list" :key="i">
           <el-image class="img" :src="javaApi+'/img/'+m.imageUpload">
             <div slot="error" class="image-error" style="width: 112px;
@@ -192,27 +193,18 @@
           </div>
         </li>
       </ul>
-      <div v-if="list.length<1&&!loading&&!isLoding" style="color:#909399;font-size:14px;text-align: center;margin-top:200px" >鏆傛棤鏁版嵁</div>
-      <div v-if="list.length>0">
-        <el-button
-          v-if="isLoding"
-          type="text"
-          style="display: flex; margin: 0 auto; color: #909399"
-          ><i class="el-icon-loading" style="font-size:20px"></i
-        ></el-button>
-         <el-button
-          type="text"
-          v-if="finishLoding"
-          style="display: flex; margin: 0 auto; color: #909399"
-          >宸茬粡娌℃湁鏇村鍟</el-button
-        >
-      </div>
+      </scroll-pagination>
+      <div v-if="list.length<1&&!loading" style="color:#909399;font-size:14px;text-align: center;margin-top:200px" >鏆傛棤鏁版嵁</div>
 		</div>
 	</div>
 </template>
 
 <script>
+import ScrollPagination from '../tool/scroll-paging.vue'
 	export default {
+    components: {
+      ScrollPagination
+    },
 		data() {
 			return {
         entity:{
@@ -226,7 +218,6 @@
         pageSize: 16, // 涓�椤�16鏉�
         total: '',
         loading: true, // 缁勪欢loading鐨勫睍绀�,榛樿涓簍rue
-        isLoding: false, // 鍔犺浇涓紝loading鍥炬爣,榛樿涓簍rue
         finishLoding: false // 鍔犺浇瀹屾垚锛屾樉绀哄凡缁忔病鏈夋洿澶氫簡
 			}
 		},
@@ -238,13 +229,8 @@
     },
 		methods: {
 			refreshTable() {
-        if(this.currentPage>1){
-          this.isLoding = true
-        }else{
+        if(this.currentPage==1){
           this.loading = true
-        }
-        if(this.list.length==0){
-          window.addEventListener("scroll", this.throttle(this.scrollFn, 20000));
         }
         this.$axios.post(this.$api.deviceScope.selectDeviceParameter,{
 					page: {
@@ -291,10 +277,10 @@
               if(this.total==this.list.length){
                 this.finishLoding = true;
               }
+              this.currentPage++;
             }
           }
           this.loading = false
-          this.isLoding = false;
 				})
 			},
 			refresh() {
diff --git a/src/components/view/a6-personnel-overview.vue b/src/components/view/a6-personnel-overview.vue
index bf88add..52b9a24 100644
--- a/src/components/view/a6-personnel-overview.vue
+++ b/src/components/view/a6-personnel-overview.vue
@@ -46,7 +46,6 @@
   }
   .card li{
     width: 320px;
-    /* height: 170px; */
     border-radius: 8px 8px 8px 8px;
     box-shadow: 4px 4px 8px 0px rgba(51,51,51,0.04);
     border: 1px solid #EEEEEE;
@@ -91,8 +90,9 @@
 				<el-button size="small" type="primary" @click="currentPage= 1,list=[],finishLoding = false,refreshTable()">鏌� 璇�</el-button>
 			</div>
 		</div>
-		<div class="table" @scroll="scrollFn">
-      <ul v-loading="loading" class="card">
+		<div class="table" v-loading="loading">
+      <scroll-pagination @load="refreshTable" :finishLoding="finishLoding">
+        <ul class="card" style="margin-top: 10px;">
         <li v-for="(m,i) in list" :key="i">
           <el-image style="width: 80px;
             height: 112px;" :src="javaApi+'/img/'+m.pictureUrl">
@@ -119,27 +119,18 @@
           <div class="title">{{ m.name }}</div>
         </li>
       </ul>
-      <div v-if="list.length<1&&!loading&&!isLoding" style="color:#909399;font-size:14px;text-align: center;margin-top:200px" >鏆傛棤鏁版嵁</div>
-      <div v-if="list.length>0">
-        <el-button
-          v-if="isLoding"
-          type="text"
-          style="display: flex; margin: 0 auto; color: #909399"
-          ><i class="el-icon-loading" style="font-size:20px"></i
-        ></el-button>
-         <el-button
-          type="text"
-          v-if="finishLoding"
-          style="display: flex; margin: 0 auto; color: #909399"
-          >宸茬粡娌℃湁鏇村鍟</el-button
-        >
-      </div>
+      </scroll-pagination>
+      <div v-if="list.length<1&&!loading" style="color:#909399;font-size:14px;text-align: center;margin-top:200px" >鏆傛棤鏁版嵁</div>
 		</div>
 	</div>
 </template>
 
 <script>
+import ScrollPagination from '../tool/scroll-paging.vue'
 	export default {
+    components: {
+      ScrollPagination
+    },
 		data() {
 			return {
         entity:{
@@ -152,7 +143,6 @@
         pageSize: 16, // 涓�椤�16鏉�
         total: '',
         loading: true, // 缁勪欢loading鐨勫睍绀�,榛樿涓簍rue
-        isLoding: false, // 鍔犺浇涓紝loading鍥炬爣,榛樿涓簍rue
         finishLoding: false // 鍔犺浇瀹屾垚锛屾樉绀哄凡缁忔病鏈夋洿澶氫簡
 			}
 		},
@@ -163,13 +153,8 @@
     },
 		methods: {
 			refreshTable() {
-        if(this.currentPage>1){
-          this.isLoding = true
-        }else{
+        if(this.currentPage==1){
           this.loading = true
-        }
-        if(this.list.length==0){
-          window.addEventListener("scroll", this.throttle(this.scrollFn, 20000));
         }
         this.$axios.post(this.$api.user.selectUserList,{
 					page: {
@@ -195,10 +180,10 @@
               if(this.total==this.list.length){
                 this.finishLoding = true;
               }
+              this.currentPage++;
             }
           }
           this.loading = false
-          this.isLoding = false;
 				})
 			},
 			refresh() {
diff --git a/src/components/view/b1-report-preparation.vue b/src/components/view/b1-report-preparation.vue
index 793fe08..f35498b 100644
--- a/src/components/view/b1-report-preparation.vue
+++ b/src/components/view/b1-report-preparation.vue
@@ -408,6 +408,7 @@
         let url = row.urlS?row.urlS:row.url;
         const link = document.createElement('a');
         link.href = this.javaApi + url;
+        link.target = '_blank';
         document.body.appendChild(link);
         link.click();
       },
@@ -455,7 +456,7 @@
         this.$confirm('鏄惁鎻愪氦褰撳墠鎶ュ憡?', "鎻愪氦", {
 							confirmButtonText: "鎻愪氦",
 							cancelButtonText: "鍙栨秷",
-							type: "success"
+							type: "warning"
 						}).then(() => {
 							this.$axios.post(this.$api.insReport.writeReport, {
 								id: row.id
diff --git a/src/components/view/b4-daily-business-statistics.vue b/src/components/view/b4-daily-business-statistics.vue
index 01a9951..594e47f 100644
--- a/src/components/view/b4-daily-business-statistics.vue
+++ b/src/components/view/b4-daily-business-statistics.vue
@@ -161,7 +161,8 @@
         if (res.code == 201) return
         this.pageData = this.HaveJson(res.data)
         let xData = res.data.DAYS.map(m=>{
-          return `${m[1]}-${m[2]}`
+          let arr = m.split('-')
+          return `${arr[1]}-${arr[2]}`
         })
         this.chartData0.xData = xData
         this.chartData1.xData = xData
diff --git a/src/components/view/b4-inspection-item-statistics.vue b/src/components/view/b4-inspection-item-statistics.vue
index 4754f78..86e6156 100644
--- a/src/components/view/b4-inspection-item-statistics.vue
+++ b/src/components/view/b4-inspection-item-statistics.vue
@@ -203,7 +203,8 @@
         if (res.code == 201) return
         this.pageData = this.HaveJson(res.data)
         let xData = res.data.DAYS.map(m=>{
-          return `${m[1]}-${m[2]}`
+          let arr = m.split('-')
+          return `${arr[1]}-${arr[2]}`
         })
         this.chartData0.xData = xData
         this.chartData1.xData = xData
diff --git a/src/components/view/b4-sample-defects.vue b/src/components/view/b4-sample-defects.vue
index da232f8..5637b5c 100644
--- a/src/components/view/b4-sample-defects.vue
+++ b/src/components/view/b4-sample-defects.vue
@@ -57,12 +57,12 @@
 			<div class="search_thing">
 				<div class="search_label">妫�楠岄」鐩細</div>
 				<div class="search_input"><el-input size="small" placeholder="璇疯緭鍏�" clearable
-						v-model="entity.laboratoryName" @keyup.enter.native="refreshTable()"></el-input></div>
+						v-model="entity.inspectionItems" @keyup.enter.native="refreshTable()"></el-input></div>
 			</div>
 			<div class="search_thing">
 				<div class="search_label">濮旀墭缂栧彿锛�</div>
 				<div class="search_input"><el-input size="small" placeholder="璇疯緭鍏�" clearable
-						v-model="entity.laboratoryNumber" @keyup.enter.native="refreshTable()"></el-input></div>
+						v-model="entity.orderNumber" @keyup.enter.native="refreshTable()"></el-input></div>
 			</div>
 			<div class="search_thing" style="padding-left: 30px;">
 				<el-button size="small" @click="refresh()">閲� 缃�</el-button>
@@ -79,30 +79,30 @@
         default-expand-all
         :tree-props="{children: 'children', hasChildren: 'hasChildren'}">
         <el-table-column
-          prop="date"
+          prop="inspection_item"
           label="妫�楠岄」鐩�"
           sortable
           min-width="180">
           <template slot-scope="scope">
             <p>
               <el-tag style="margin-right: 10px;height: 24px;border-radius: 10px;line-height: 24px;border: 0;" :type="scope.row.level==2?'success':''">{{ '0' + scope.row.level }}</el-tag>
-              <span>{{ scope.row.date }}</span>
+              <span>{{ scope.row.inspection_item }}</span>
             </p>
           </template>
         </el-table-column>
         <el-table-column
-          prop="name"
+          prop="entrust_code"
           label="濮旀墭缂栧彿"
           sortable
           min-width="180">
         </el-table-column>
         <el-table-column
-          prop="address"
+          prop="name"
           label="妫�楠屼汉"
           min-width="180">
         </el-table-column>
         <el-table-column
-          prop="address"
+          prop="create_time"
           label="妫�楠屾椂闂�"
           min-width="180">
         </el-table-column>
@@ -121,27 +121,11 @@
 	export default {
 		data() {
 			return {
-				entity: {},
-        tableData: [{
-          id: 3,
-          date: '2016-05-01',
-          name: '鐜嬪皬铏�',
-          address: '涓婃捣甯傛櫘闄�鍖洪噾娌欐睙璺� 1519 寮�',
-          level:1,
-          children: [{
-              id: 31,
-              date: '2016-05-01',
-              name: '鐜嬪皬铏�',
-              address: '涓婃捣甯傛櫘闄�鍖洪噾娌欐睙璺� 1519 寮�',
-              level:2,
-            }, {
-              id: 32,
-              date: '2016-05-01',
-              name: '鐜嬪皬铏�',
-              address: '涓婃捣甯傛櫘闄�鍖洪噾娌欐睙璺� 1519 寮�',
-              level:2,
-          }]
-        }],
+				entity: {
+          orderNumber:null,
+          inspectionItems:null,
+        },
+        tableData: [],
         page:{
           current:1,
           size:20,
@@ -151,15 +135,39 @@
 			}
 		},
 		mounted() {
-
-			this.getPower()
+			// this.getPower()
+      this.refreshTable()
 		},
 		methods: {
       refreshTable(){
         this.loading = true
+        this.$axios.post(this.$api.insOrder.selectSampleDefects, {
+					...this.page,
+					...this.entity
+				}).then(res => {
+          this.loading = false
+					if (res.code === 201) {
+						this.loading = false
+						return
+					}
+          this.total = res.data.total;
+          this.tableData = res.data.records.map(item=>{
+            item.level = 1;
+            item.inspection_item = item.sample
+            item.children = item.children.map(m=>{
+              m.id = Math.random(10000)
+              m.level = 2;
+              return m
+            })
+            return item
+          });
+        })
       },
       refresh(){
-        this.page.size = 20;
+        this.entity = {
+          orderNumber:null,
+          inspectionItems:null,
+        },
         this.page.current = 1;
         this.refreshTable();
       },
diff --git a/src/components/view/index-index.vue b/src/components/view/index-index.vue
index c222aeb..f74e1ec 100644
--- a/src/components/view/index-index.vue
+++ b/src/components/view/index-index.vue
@@ -350,20 +350,26 @@
         </div>
         <div class="right-3 card" style="overflow: hidden;">
           <div class="right-3-tab">
-            <div class="tab-item" style="cursor: pointer;" :class="{active:currentIndex==0}" @click="currentIndex=0">棰勮鎻愰啋 10</div>
-            <div class="tab-item" style="cursor: pointer;" :class="{active:currentIndex==1}" @click="currentIndex=1">閫氱煡閫氬憡 12</div>
+            <div class="tab-item" style="cursor: pointer;" :class="{active:currentIndex==4}" @click="currentIndex=4">棰勮鎻愰啋</div>
+            <div class="tab-item" style="cursor: pointer;" :class="{active:currentIndex==5}" @click="currentIndex=5">閫氱煡閫氬憡</div>
           </div>
-          <div class="right-3-list">
-            <div class="list3-item" v-for="(m,i) in 5" :key="i">
+          <div class="right-3-list" v-loading="listLoading">
+            <scroll-pagination @load="getList" :finishLoding="finishLoding">
+              <div class="list3-item" v-for="(m,i) in list" :key="i">
               <div class="list3-item-title">
                 <img src="../../../static/img/index-tip.svg" alt="">
-                <p>璁惧鍒版湡鎻愰啋</p>
+                <p>{{ m.theme }}</p>
               </div>
               <div class="list3-item-info">
-                <p style="width: 73%;-webkit-line-clamp: 1;" class="ellipsis-multiline">缂栧彿<span style="color:#3A7BFA;"> SB20240101-001 </span>鐨勮澶囧皢浜�2023-09-09 11:11:11杩囨湡</p>
-                <p>2023-09-09 09:09:09</p>
+                <p style="width: 73%;-webkit-line-clamp: 1;" class="ellipsis-multiline">
+                  <!-- 缂栧彿<span style="color:#3A7BFA;"> SB20240101-001 </span>鐨勮澶囧皢浜�2023-09-09 11:11:11杩囨湡 -->
+                  {{ m.content }}
+                </p>
+                <p>{{ m.createTime }}</p>
               </div>
             </div>
+            </scroll-pagination>
+            <div v-if="list.length<1&&!listLoading" style="color:#909399;font-size:14px;text-align: center;margin-top:80px" >鏆傛棤鏁版嵁</div>
           </div>
         </div>
       </el-col>
@@ -405,13 +411,17 @@
   import {
 		getYearAndMonthAndDays
 	} from '../../util/date'
+  import ScrollPagination from '../tool/scroll-paging.vue'
 	export default {
+    components: {
+      ScrollPagination
+    },
 		data() {
 			return {
 				user: {},
 				now: null,
         calendarValue: new Date(),
-        currentIndex:0,
+        currentIndex:4,
         dialogVisible:false,
         query:{
           time:'',
@@ -424,11 +434,22 @@
         weekdays:[],
         listScheduleByMe:[],
         scheduleLoading:false,
+        list:[],
+        currentPage:1,
+        pageSize: 8, // 涓�椤�7鏉�
+        total: null,
+        listLoading: true, // 缁勪欢loading鐨勫睍绀�,榛樿涓簍rue
+        finishLoding: false // 鍔犺浇瀹屾垚锛屾樉绀哄凡缁忔病鏈夋洿澶氫簡
 			}
 		},
     watch:{
       calendarValue(val){
         this.getScheduleByMe()
+      },
+      currentIndex(){
+        this.currentPage = 1;
+        this.list = [];
+        this.getList();
       }
     },
 		mounted() {
@@ -440,8 +461,39 @@
       this.init();
       this.weekdays = this.getWeekdaysForNextWeek()
       this.getScheduleByMe()
+      this.currentPage = 1;
+      this.list = [];
+      this.getList();
 		},
 		methods: {
+      getList(){
+        if(this.currentPage==1){
+          this.listLoading = true
+        }
+        if(this.list.length==0){
+          this.finishLoding = false;
+        }
+        this.$axios.get(this.$api.informationNotification.page+'?size='+this.pageSize+'&current='+this.currentPage+'&messageType='+this.currentIndex).then(res => {
+          if(res.code === 201){
+            return
+          }
+          let list = res.data.records;
+          this.total = res.data.total;
+          if(list.length==0){
+            this.finishLoding = true;
+          }else{
+            if(list.length<this.pageSize){
+              this.finishLoding = true;
+            }
+            this.list = this.list.concat(list)
+            if(this.total==this.list.length){
+              this.finishLoding = true;
+            }
+            this.currentPage++;
+          }
+          this.listLoading = false
+        })
+      },
 			nowTime() {
 				var date = new Date();
 				var y = date.getFullYear();
@@ -562,7 +614,8 @@
             this.workList.push(res.data[`work${i}`])
           }
           this.workDay = res.data.weekDays.map(m=>{
-            return m[2]
+            let arr = m.split('-')
+            return arr[2]
           })
         })
       },
@@ -624,6 +677,6 @@
           })
         })
       },
-		}
+		},
 	}
 </script>
diff --git a/src/components/view/notice-detail.vue b/src/components/view/notice-detail.vue
index 5aecffe..65e5518 100644
--- a/src/components/view/notice-detail.vue
+++ b/src/components/view/notice-detail.vue
@@ -1,32 +1,24 @@
 <template>
   <div class="notice-detail-page">
     <div class="notice-detail-head">
-      <el-row :gutter="20">
-        <el-col :xs="12" :sm="8" :md="6" :lg="4" :xl="4" style="margin-bottom: 16px;"></el-col>
-      </el-row>
-      <div class="head-item">
-        <label>涓婚锛�</label>
-        <p></p>
-      </div>
-      <div class="head-item">
+      <h4 style="margin-bottom: 16px;">{{ noticeInfo.theme }}</h4>
+      <p style="font-size: 12px;color: #999;margin-bottom: 20px;">
+        <!-- <span>娑堟伅绫诲瀷锛氬鎵�&nbsp; </span> -->
+        <span>鍙戦�佷汉锛歿{ noticeInfo.createUser }} </span>
+        <span>&nbsp;&nbsp;</span>
+        <span>鏀朵欢浜猴細{{ noticeInfo.consigneeUser }}</span>
+        <span>&nbsp;&nbsp;</span>
+        <span>鍙戜欢鏃堕棿锛歿{ noticeInfo.createTime }}</span>
+      </p>
+      <div class="notice-detail-head-content">
         <label>鍐呭锛�</label>
-        <p></p>
-      </div>
-      <div class="head-item">
-        <label>鍙戜欢鏃堕棿锛�</label>
-        <p></p>
-      </div>
-      <div class="head-item">
-        <label>鍙戦�佷汉锛�</label>
-        <p></p>
-      </div>
-      <div class="head-item">
-        <label>鏀朵欢浜猴細</label>
-        <p></p>
+        <div>{{ noticeInfo.content }}</div>
       </div>
     </div>
-    <component class="notice-content" :is="noticeInfo.u">
-		</component>
+    <div class="info-box" v-if="noticeInfo.jumpPath">
+      <component class="notice-content" :is="noticeInfo.jumpPath" style="height: 500px;" >
+		  </component>
+    </div>
   </div>
 </template>
 
@@ -45,16 +37,26 @@
   components: comObj,
   data() {
     return{
-      noticeInfo:{
-        u:'b1-inspect-order-plan'
-      },
+      noticeInfo:{},
     }
-  }
+  },
+  created(){
+    this.noticeInfo = JSON.parse(sessionStorage.getItem("noticeInfo"));
+  },
+  mounted(){
+    this.noticeInfo = JSON.parse(sessionStorage.getItem("noticeInfo"));
+    this.$bus.$on("change", (msg) => {
+      this.noticeInfo = JSON.parse(msg);
+      sessionStorage.setItem("noticeInfo", msg);
+    });
+  },
 }
 </script>
 
 <style scoped>
 .notice-detail-page{
+  height: calc(100vh - 120px);
+  overflow-y: auto;
   padding-top: 16px;
 }
 .notice-detail-head{
@@ -63,9 +65,21 @@
   box-sizing: border-box;
   padding: 16px;
 }
-.notice-detail-head{
-  display: flex;
-  align-items: center;
-  justify-content: space-between;
+.info-box{
+  margin-top: 16px;
+  width: 100%;
+  box-sizing: border-box;
+  padding: 8px 20px 20px;
+  background: rgba(148, 147, 147, 0.1);
+  border-radius: 8px;
+}
+.notice-detail-head-content div{
+  border-radius: 8px;
+  border: 1px solid #ccc;
+  min-height: 60px;
+  width: 100%;
+  padding: 16px;
+  box-sizing: border-box;
+  margin-top: 12px;
 }
 </style>
diff --git a/src/main.js b/src/main.js
index 08cbca9..43d09d1 100644
--- a/src/main.js
+++ b/src/main.js
@@ -15,7 +15,8 @@
 Vue.prototype.LOCATIONVUE = "http://127.0.0.1:80";
 // const javaApi = 'http://192.168.11.200:8001';//鏉�
 // const javaApi = 'http://192.168.11.249:8001';//寮�
-const javaApi = 'http://192.168.11.50:8002';//濮�
+const javaApi = 'http://192.168.11.50:8001';//濮�
+// const javaApi = 'http://192.168.11.2:8001';//鏌�
 // const javaApi = 'http://114.132.189.42:9006';//娴嬭瘯鏈�
 //鑳滀簯鏈嶅姟鍣�
 // Vue.prototype.LOCATIONVUE = "http://syxt.shxiao2.cn";
@@ -129,5 +130,9 @@
 new Vue({
 	el: '#app',
 	router,
-	render: h => h(App)
+	render: h => h(App),
+  beforeCreate() {
+  	// 闇�瑕佸湪鍏ㄥ眬娣诲姞涓�涓睘鎬�
+    Vue.prototype.$bus = this
+  }
 });
diff --git a/src/view/index.vue b/src/view/index.vue
index 77afae7..827cf8e 100644
--- a/src/view/index.vue
+++ b/src/view/index.vue
@@ -295,7 +295,7 @@
 			</div>
 			<div class="label">LIMS瀹為獙瀹ょ鐞嗙郴缁�</div>
 			<div class="user">
-        <el-badge is-dot style="cursor: pointer;margin-right: 10px;">
+        <el-badge :is-dot="newMsg" style="cursor: pointer;margin-right: 10px;">
           <i class="el-icon-bell" style="font-size: 20px;" @click="openNotice"></i>
         </el-badge>
         <el-dropdown trigger="click" @command="handleCommand">
@@ -427,7 +427,9 @@
 				activeIndex: 0,
 				power: [],
         editVisible:false,
-        query:{}
+        query:{},
+        newMsg:false,
+        timer:null,
 			};
 		},
 		created() {
@@ -458,6 +460,10 @@
 				this.activeBox = 0
 			}
 			this.getPower()
+      this.timer&&clearInterval(this.timer);
+      this.timer = setInterval(()=>{
+        this.checkForUnreadData()
+      },20000)
 		},
 		methods: {
 			saveClick(){
@@ -616,7 +622,19 @@
       },
       openNotice(){
         this.$refs.notice.open()
+        this.$refs.notice.handleType()
+      },
+      checkForUnreadData(){
+        this.$axios.get(this.$api.informationNotification.checkForUnreadData).then(res => {
+          if (res.code == 201) {
+            return
+          }
+          this.newMsg = res.data
+        })
       }
-		}
+		},
+    destroyed() {
+      this.timer&&clearInterval(this.timer);
+    }
 	};
 </script>
diff --git a/src/view/notice.vue b/src/view/notice.vue
index dac79a8..4aae834 100644
--- a/src/view/notice.vue
+++ b/src/view/notice.vue
@@ -4,11 +4,11 @@
   title="娑堟伅閫氱煡"
   :visible.sync="drawer"
   :direction="direction"
-  :before-close="handleClose" style="height: 100vh;">
+  :before-close="handleClose" style="height: 100vh;z-index: 9999999;">
     <div class="head">
       <div class="head-search">
         <label>娑堟伅绫诲瀷锛�</label>
-        <el-select v-model="type" placeholder="璇烽�夋嫨" style="width: 150px;" size="small">
+        <el-select v-model="type" placeholder="璇烽�夋嫨" style="width: 150px;" size="small" @change="handleType">
         <el-option
           v-for="item in options"
           :key="item.value"
@@ -17,208 +17,152 @@
         </el-option>
       </el-select>
       </div>
-      <el-dropdown style="margin-right: 20px;">
+      <el-dropdown style="margin-right: 20px;" v-if="list.length>0" @command="handleDropdownAll">
         <span class="el-dropdown-link">
           <span class="more">&middot;&middot;&middot;</span>
         </span>
         <el-dropdown-menu slot="dropdown">
-          <el-dropdown-item>
+          <el-dropdown-item command="1">
             <i class="el-icon-check"></i>
             <span>鏍囪鎵�鏈夋秷鎭负宸茶</span>
           </el-dropdown-item>
-          <el-dropdown-item>
+          <el-dropdown-item  command="2">
             <i class="el-icon-delete"></i>
             <span>鍒犻櫎鎵�鏈夊凡璇绘秷鎭�</span>
           </el-dropdown-item>
         </el-dropdown-menu>
       </el-dropdown>
     </div>
-    <div class="notice-content">
-      <div class="notice-content-item" v-for="(m,i) in list" :key="i">
-        <div class="btns">
-          <el-dropdown style="margin-right: 20px;" trigger="click" @command="handleDropdown">
-            <span class="el-dropdown-link">
-              <span class="more" style="line-height: 26px;display: inline-block;">&middot;&middot;&middot;</span>
-            </span>
-            <el-dropdown-menu slot="dropdown">
-              <el-dropdown-item v-for="(n,j) in dropdownList" :key="j" :command="n.value">
-                {{ n.label }}
-              </el-dropdown-item>
-            </el-dropdown-menu>
-          </el-dropdown>
-          <i class="el-icon-close" style="cursor: pointer;"></i>
-        </div>
-        <div class="content">
-          <img :src="`../../static/img/notice-${m.type}.svg`" alt="" style="width: 50px;margin-right: 18px;">
-          <div class="content-info">
-            <h4 style="font-weight: normal;margin-bottom: 4px;display: flex;align-items: center;justify-content: space-between;">
-              <span>{{ m.title }}</span>
-              <span class="time" style="color: #999999;font-size: 12px;">{{ m.time }}</span>
-            </h4>
-            <p style="color: #999999;font-size: 14px;margin-bottom: 6px;" class="ellipsis-multiline">{{ m.content }}</p>
-            <el-tag type="danger" size="small" v-if="m.status==0&&m.type==2" style="margin-bottom: 4px;">宸叉嫆缁�</el-tag>
-            <el-tag type="success" size="small" v-if="m.status==1&&m.type==2" style="margin-bottom: 4px;">宸叉帴鏀�</el-tag>
-            <p style="font-size: 12px;color: #999999;display: flex;align-items: center;justify-content: space-between;">
-              <span>鍙戦�佷汉锛歿{m.sendUser}}</span>
-              <span>鏀朵欢浜猴細{{ m.getUser }}</span>
-            </p>
+    <div class="notice-content" v-loading="loading">
+      <scroll-pagination @load="refresh" :finishLoding="finishLoding">
+        <div class="notice-content-item" v-for="(m,i) in list" :key="i">
+          <div class="btns" v-if="m">
+            <el-dropdown style="margin-right: 20px;" trigger="click" @command="e=>handleDropdown(e,m)" v-if="m.messageType==2||m.messageType==3">
+              <span class="el-dropdown-link">
+                <span class="more" style="line-height: 26px;display: inline-block;">&middot;&middot;&middot;</span>
+              </span>
+              <el-dropdown-menu slot="dropdown" v-if="m.messageType==2">
+                <el-dropdown-item v-for="(n,j) in dropdownList0" :key="j" :command="n.value">
+                  {{ n.label }}
+                </el-dropdown-item>
+              </el-dropdown-menu>
+              <el-dropdown-menu slot="dropdown" v-if="m.messageType==3">
+                <el-dropdown-item v-for="(n,j) in dropdownList1" :key="j" :command="n.value">
+                  {{ n.label }}
+                </el-dropdown-item>
+              </el-dropdown-menu>
+            </el-dropdown>
+            <i class="el-icon-close" style="cursor: pointer;" @click="handleDel(m)"></i>
+          </div>
+          <div class="content">
+            <img :src="`../../static/img/notice-${m.messageType}.svg`" alt="" style="width: 50px;margin-right: 18px;">
+            <div class="content-info">
+              <h4 style="font-weight: normal;margin-bottom: 4px;display: flex;align-items: center;justify-content: space-between;">
+                <span>{{ m.theme }}<el-tag :type="!m.messageStatus?'danger':'success'" size="small" v-if="m.messageType==1||m.messageType==2||m.messageType==3" style="margin-left: 8px;">{{ !m.messageStatus?'鏈鐞�':'宸插鐞�' }}</el-tag></span>
+                <span class="time" style="color: #999999;font-size: 12px;">{{ m.createTime }}</span>
+              </h4>
+              <p style="color: #999999;font-size: 14px;margin-bottom: 6px;cursor: pointer;" class="ellipsis-multiline" @click="goNoticeDetail(m)">{{ m.content }}</p>
+              <p style="font-size: 12px;color: #999999;display: flex;align-items: center;justify-content: space-between;">
+                <span>鍙戦�佷汉锛歿{m.createUser}}</span>
+                <span>鏀朵欢浜猴細{{ m.consigneeUser }}</span>
+              </p>
+            </div>
+          </div>
+          <div class="new-notice" v-if="!m.viewStatus">
+            <span>new</span>
           </div>
         </div>
-        <div class="new-notice" v-if="m.isRead==0">
-          <span>new</span>
-        </div>
-      </div>
+      </scroll-pagination>
+      <div v-if="list.length<1&&!loading" style="color:#909399;font-size:14px;text-align: center;margin-top:200px" >鏆傛棤鏁版嵁</div>
     </div>
   </el-drawer>
 </div>
 </template>
 
 <script>
+import ScrollPagination from '../components/tool/scroll-paging.vue'
 export default {
+  components: {
+    ScrollPagination
+  },
   data(){
     return{
       drawer:false,
       direction:'rtl',
       options:[],
       type:'0',
-      list:[
+      dropdownList0:[
         {
-          type:1,
-          title:'鏍囬',
-          content:'鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭鍐呭',
-          time:'2019-08-07 15:34:26',
-          status:0,//娑堟伅鐘舵�侊細鎷掔粷銆佹帴鏀�
-          isRead:0,//鏄惁宸茶
-          sendUser:'灏忔槑',
-          getUser:'鏉庡崕',
-        },
-        {
-          type:2,
-          title:'鏍囬',
-          content:'鍐呭',
-          time:'2019-08-07 15:34:26',
-          status:1,//娑堟伅鐘舵�侊細鎷掔粷銆佹帴鏀�
-          isRead:1,//鏄惁宸茶
-          sendUser:'灏忔槑',
-          getUser:'鏉庡崕',
-        },
-        {
-          type:3,
-          title:'鏍囬',
-          content:'鍐呭',
-          time:'2019-08-07 15:34:26',
-          status:1,//娑堟伅鐘舵�侊細鎷掔粷銆佹帴鏀�
-          isRead:0,//鏄惁宸茶
-          sendUser:'灏忔槑',
-          getUser:'鏉庡崕',
-        },
-        {
-          type:4,
-          title:'鏍囬',
-          content:'鍐呭',
-          time:'2019-08-07 15:34:26',
-          status:1,//娑堟伅鐘舵�侊細鎷掔粷銆佹帴鏀�
-          isRead:0,//鏄惁宸茶
-          sendUser:'灏忔槑',
-          getUser:'鏉庡崕',
-        },
-        {
-          type:5,
-          title:'鏍囬',
-          content:'鍐呭',
-          time:'2019-08-07 15:34:26',
-          status:1,//娑堟伅鐘舵�侊細鎷掔粷銆佹帴鏀�
-          isRead:0,//鏄惁宸茶
-          sendUser:'灏忔槑',
-          getUser:'鏉庡崕',
-        },
-        {
-          type:6,
-          title:'鏍囬',
-          content:'鍐呭',
-          time:'2019-08-07 15:34:26',
-          status:1,//娑堟伅鐘舵�侊細鎷掔粷銆佹帴鏀�
-          isRead:1,//鏄惁宸茶
-          sendUser:'灏忔槑',
-          getUser:'鏉庡崕',
-        },
-        {
-          type:6,
-          title:'鏍囬',
-          content:'鍐呭',
-          time:'2019-08-07 15:34:26',
-          status:1,//娑堟伅鐘舵�侊細鎷掔粷銆佹帴鏀�
-          isRead:1,//鏄惁宸茶
-          sendUser:'灏忔槑',
-          getUser:'鏉庡崕',
-        },
-        {
-          type:6,
-          title:'鏍囬',
-          content:'鍐呭',
-          time:'2019-08-07 15:34:26',
-          status:1,//娑堟伅鐘舵�侊細鎷掔粷銆佹帴鏀�
-          isRead:1,//鏄惁宸茶
-          sendUser:'灏忔槑',
-          getUser:'鏉庡崕',
-        },
-        {
-          type:6,
-          title:'鏍囬',
-          content:'鍐呭',
-          time:'2019-08-07 15:34:26',
-          status:1,//娑堟伅鐘舵�侊細鎷掔粷銆佹帴鏀�
-          isRead:1,//鏄惁宸茶
-          sendUser:'灏忔槑',
-          getUser:'鏉庡崕',
-        },
-        {
-          type:6,
-          title:'鏍囬',
-          content:'鍐呭',
-          time:'2019-08-07 15:34:26',
-          status:1,//娑堟伅鐘舵�侊細鎷掔粷銆佹帴鏀�
-          isRead:1,//鏄惁宸茶
-          sendUser:'灏忔槑',
-          getUser:'鏉庡崕',
-        },
-      ],
-      dropdownList:[
-        {
-          label:'鎷掔粷',
+          label:'閫氳繃',
           value:0
         },
         {
-          label:'鎺ユ敹',
+          label:'涓嶉�氳繃',
           value:1
         },
         {
-          label:'閫氳繃',
+          label:'鏌ョ湅鏇村',
+          value:4
+        },
+      ],
+      dropdownList1:[
+        {
+          label:'鎵瑰噯',
           value:2
         },
         {
-          label:'涓嶉�氳繃',
+          label:'涓嶆壒鍑�',
           value:3
         },
         {
-          label:'鎵瑰噯',
+          label:'鏌ョ湅鏇村',
           value:4
         },
-        {
-          label:'涓嶆壒鍑�',
-          value:5
-        },
-        {
-          label:'鏌ョ湅鏇村',
-          value:6
-        },
-      ]
+      ],
+      list:[],
+      currentPage:1,
+      pageSize: 8, // 涓�椤�7鏉�
+      total: null,
+      loading: true, // 缁勪欢loading鐨勫睍绀�,榛樿涓簍rue
+      finishLoding: false // 鍔犺浇瀹屾垚锛屾樉绀哄凡缁忔病鏈夋洿澶氫簡
     }
   },
   mounted(){
     this.getTypeDicts();
+    this.currentPage = 1;
+    this.list = [];
+    this.refresh();
   },
   methods:{
+    refresh(){
+      if(this.currentPage==1){
+        this.loading = true
+      }
+      if(this.list.length==0){
+        this.finishLoding = false
+      }
+      let type = this.type==0?null:this.type;
+      this.$axios.get(this.$api.informationNotification.page+'?size='+this.pageSize+'&current='+this.currentPage+(type?'&messageType='+type:'')).then(res => {
+        if(res.code === 201){
+          return
+        }
+        let list = res.data.records;
+        this.total = res.data.total;
+        if(list.length==0){
+          this.finishLoding = true;
+        }else{
+          if(list.length<this.pageSize){
+            this.finishLoding = true;
+          }
+          this.list = this.list.concat(list)
+          if(this.total==this.list.length){
+            this.finishLoding = true;
+          }
+          this.currentPage++
+        }
+        this.loading = false
+      })
+    },
     open(){
       this.drawer = true;
     },
@@ -233,26 +177,107 @@
         this.options = data;
       })
     },
-    goNoticeDetail(){
-      this.drawer = false;
-      this.$parent.addTab({
-			v: "娑堟伅璇︽儏",
-			i: "el-icon-s-tools",
-			u: "notice-detail",
-      k:35,
-			p: "abcd"
-		},29);
+    goNoticeDetail(row){
+      this.$axios.put(this.$api.informationNotification.triggerModificationStatusToRead+'/'+row.id).then(res => {
+        this.drawer = false;
+        row.num = Math.random(100);
+        this.$bus.$emit("change", JSON.stringify(row));
+        this.$parent.addTab({
+          v: "娑堟伅璇︽儏",
+          i: "el-icon-s-tools",
+          u: "notice-detail",
+          k:35,
+          p: "abcd"
+        },29);
+        this.list = [];
+        this.currentPage = 1;
+        this.refresh();
+      })
     },
-    handleDropdown(e){
+    handleDropdown(e,row){
       switch(e){
         case 0:
           break;
-        case 6:
-          this.goNoticeDetail()
+        case 4:
+          this.goNoticeDetail(row)
           break;
       }
+    },
+    handleDel(row){
+      this.$confirm('鏄惁鍒犻櫎褰撳墠鏁版嵁?', "璀﹀憡", {
+        confirmButtonText: "纭畾",
+        cancelButtonText: "鍙栨秷",
+        type: "warning"
+      }).then(() => {
+        this.$axios.delete(this.$api.informationNotification.deleteDataBasedOnId+'?id='+row.id).then(res => {
+          if (res.code === 201) {
+            return
+          }
+          this.$message.success('鍒犻櫎鎴愬姛')
+          this.list = [];
+          this.currentPage = 1;
+          this.refresh()
+        }).catch(e => {
+          this.$message.error('鍒犻櫎澶辫触')
+        })
+      }).catch(() => {})
+    },
+    // 婊氬姩瑙﹀簳鍔犺浇
+    scrollFn() {
+      let clientHeight = document.documentElement.clientHeight - 18; //鍙鍖哄煙
+      let scrollHeight = document.body.scrollHeight; // 婊氬姩鏂囨。楂樺害
+      let scrollTop = parseInt(document.documentElement.scrollTop); // 宸叉粴鍔ㄧ殑楂樺害
+      let height = 300;
+      if (
+        scrollTop + clientHeight >= scrollHeight - height &&
+        scrollHeight != 0
+      ) {
+        if (!this.finishLoding&&this.currentPage*this.pageSize<this.total) {
+          this.currentPage = this.currentPage + 1;
+          this.refresh();
+        }
+      } else {
+        return false;
+      }
+    },
+    throttle(fn, wait) {
+      // 灏佽鍑芥暟杩涜鑺傛祦
+      var timer = null;
+      return function () {
+        var context = this;
+        var args = arguments;
+        if (!timer) {
+          timer = setTimeout(function () {
+            fn.apply(context, args);
+            timer = null;
+          }, wait);
+        }
+      };
+    },
+    handleType(){
+      this.list = [];
+      this.currentPage = 1;
+      this.refresh();
+    },
+    handleDropdownAll(e){
+      let type = false;
+      if(e==1){
+        type = true;
+      }
+      this.$axios.put(this.$api.informationNotification.informationReadOrDelete+'/'+type).then(res => {
+        if(res.code===201){
+          return
+        }
+        this.$message.success('鎿嶄綔鎴愬姛')
+        this.list = [];
+        this.currentPage = 1;
+        this.refresh();
+      })
     }
-  }
+  },
+  destroyed() {
+    window.removeEventListener("scroll", this.throttle(), false);
+  },
 }
 </script>
 
diff --git a/static/img/notice-2.svg b/static/img/notice-2.svg
index ac86ffb..415db6a 100644
--- a/static/img/notice-2.svg
+++ b/static/img/notice-2.svg
@@ -1 +1 @@
-<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1713774580175" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2343" width="24" height="24" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M85.333333 0h853.333334a85.333333 85.333333 0 0 1 85.333333 85.333333v853.333334a85.333333 85.333333 0 0 1-85.333333 85.333333H85.333333a85.333333 85.333333 0 0 1-85.333333-85.333333V85.333333a85.333333 85.333333 0 0 1 85.333333-85.333333z m426.666667 213.333333c-68.778667-0.682667-278.144 112.426667-277.333333 149.248 3.242667 296.96 225.322667 447.744 277.333333 448.085334 52.010667 0.341333 278.613333-148.565333 277.333333-448-0.256-37.418667-208.554667-148.650667-277.333333-149.333334z m164.394667 196.010667c12.032 12.458667 12.032 32.981333-0.725334 44.672l-155.264 160.426667a30.506667 30.506667 0 0 1-22.656 9.557333 32.085333 32.085333 0 0 1-23.381333-9.514667l-91.477333-93.781333c-12.757333-13.226667-12.757333-33.706667 0-46.890667 12.8-13.226667 33.322667-13.226667 46.08 0l70.186666 72.533334 132.565334-137.002667a31.36 31.36 0 0 1 44.672 0z" fill="#15B4D4" p-id="2344"></path></svg>
\ No newline at end of file
+<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1713774491978" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1483" width="24" height="24" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M554.666667 554.666667v-92.586667a128.042667 128.042667 0 1 0-85.333334 0V554.666667H267.946667a42.666667 42.666667 0 0 0-41.386667 53.034666l21.333333 85.333334a42.666667 42.666667 0 0 0 41.386667 32.298666h445.44a42.666667 42.666667 0 0 0 41.386667-32.298666l21.333333-85.333334A42.666667 42.666667 0 0 0 756.053333 554.666667H554.666667zM85.333333 0h853.333334a85.333333 85.333333 0 0 1 85.333333 85.333333v853.333334a85.333333 85.333333 0 0 1-85.333333 85.333333H85.333333a85.333333 85.333333 0 0 1-85.333333-85.333333V85.333333a85.333333 85.333333 0 0 1 85.333333-85.333333z m234.666667 768a21.333333 21.333333 0 1 0 0 42.666667h384a21.333333 21.333333 0 1 0 0-42.666667h-384z" fill="#FAAB0C" p-id="1484"></path></svg>
\ No newline at end of file
diff --git a/static/img/notice-3.svg b/static/img/notice-3.svg
index 415db6a..dcfcf93 100644
--- a/static/img/notice-3.svg
+++ b/static/img/notice-3.svg
@@ -1 +1 @@
-<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1713774491978" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1483" width="24" height="24" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M554.666667 554.666667v-92.586667a128.042667 128.042667 0 1 0-85.333334 0V554.666667H267.946667a42.666667 42.666667 0 0 0-41.386667 53.034666l21.333333 85.333334a42.666667 42.666667 0 0 0 41.386667 32.298666h445.44a42.666667 42.666667 0 0 0 41.386667-32.298666l21.333333-85.333334A42.666667 42.666667 0 0 0 756.053333 554.666667H554.666667zM85.333333 0h853.333334a85.333333 85.333333 0 0 1 85.333333 85.333333v853.333334a85.333333 85.333333 0 0 1-85.333333 85.333333H85.333333a85.333333 85.333333 0 0 1-85.333333-85.333333V85.333333a85.333333 85.333333 0 0 1 85.333333-85.333333z m234.666667 768a21.333333 21.333333 0 1 0 0 42.666667h384a21.333333 21.333333 0 1 0 0-42.666667h-384z" fill="#FAAB0C" p-id="1484"></path></svg>
\ No newline at end of file
+<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1713774535390" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1993" width="24" height="24" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M85.333333 0h853.333334a85.333333 85.333333 0 0 1 85.333333 85.333333v853.333334a85.333333 85.333333 0 0 1-85.333333 85.333333H85.333333a85.333333 85.333333 0 0 1-85.333333-85.333333V85.333333a85.333333 85.333333 0 0 1 85.333333-85.333333z m426.666667 810.666667a298.666667 298.666667 0 1 0 0-597.333334 298.666667 298.666667 0 0 0 0 597.333334z m-170.666667-256a42.666667 42.666667 0 1 1 0-85.333334 42.666667 42.666667 0 0 1 0 85.333334z m170.666667 0a42.666667 42.666667 0 1 1 0-85.333334 42.666667 42.666667 0 0 1 0 85.333334z m170.666667 0a42.666667 42.666667 0 1 1 0-85.333334 42.666667 42.666667 0 0 1 0 85.333334z" fill="#B162D9" p-id="1994"></path></svg>
\ No newline at end of file
diff --git a/static/img/notice-4.svg b/static/img/notice-4.svg
index dcfcf93..39c8f84 100644
--- a/static/img/notice-4.svg
+++ b/static/img/notice-4.svg
@@ -1 +1 @@
-<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1713774535390" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1993" width="24" height="24" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M85.333333 0h853.333334a85.333333 85.333333 0 0 1 85.333333 85.333333v853.333334a85.333333 85.333333 0 0 1-85.333333 85.333333H85.333333a85.333333 85.333333 0 0 1-85.333333-85.333333V85.333333a85.333333 85.333333 0 0 1 85.333333-85.333333z m426.666667 810.666667a298.666667 298.666667 0 1 0 0-597.333334 298.666667 298.666667 0 0 0 0 597.333334z m-170.666667-256a42.666667 42.666667 0 1 1 0-85.333334 42.666667 42.666667 0 0 1 0 85.333334z m170.666667 0a42.666667 42.666667 0 1 1 0-85.333334 42.666667 42.666667 0 0 1 0 85.333334z m170.666667 0a42.666667 42.666667 0 1 1 0-85.333334 42.666667 42.666667 0 0 1 0 85.333334z" fill="#B162D9" p-id="1994"></path></svg>
\ No newline at end of file
+<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1713774524927" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1786" width="24" height="24" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M85.333333 0h853.333334a85.333333 85.333333 0 0 1 85.333333 85.333333v853.333334a85.333333 85.333333 0 0 1-85.333333 85.333333H85.333333a85.333333 85.333333 0 0 1-85.333333-85.333333V85.333333a85.333333 85.333333 0 0 1 85.333333-85.333333z m496.426667 257.792c-31.317333-59.306667-108.202667-59.306667-139.52 0L224.469333 672.853333C193.152 733.738667 231.594667 810.666667 294.229333 810.666667h435.541334c62.634667 0 101.12-76.928 69.76-137.813334l-217.770667-415.061333zM512 725.333333a42.666667 42.666667 0 1 1 0-85.333333 42.666667 42.666667 0 0 1 0 85.333333z m-0.938667-341.333333a40.874667 40.874667 0 0 1 40.746667 44.16l-11.562667 143.530667c-1.194667 14.506667-13.269333 25.642667-27.818666 25.642666a28.245333 28.245333 0 0 1-28.074667-25.6l-13.44-143.616A40.362667 40.362667 0 0 1 511.061333 384z" fill="#EA493D" p-id="1787"></path></svg>
\ No newline at end of file
diff --git a/static/img/notice-5.svg b/static/img/notice-5.svg
index 39c8f84..cb6d3b9 100644
--- a/static/img/notice-5.svg
+++ b/static/img/notice-5.svg
@@ -1 +1 @@
-<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1713774524927" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1786" width="24" height="24" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M85.333333 0h853.333334a85.333333 85.333333 0 0 1 85.333333 85.333333v853.333334a85.333333 85.333333 0 0 1-85.333333 85.333333H85.333333a85.333333 85.333333 0 0 1-85.333333-85.333333V85.333333a85.333333 85.333333 0 0 1 85.333333-85.333333z m496.426667 257.792c-31.317333-59.306667-108.202667-59.306667-139.52 0L224.469333 672.853333C193.152 733.738667 231.594667 810.666667 294.229333 810.666667h435.541334c62.634667 0 101.12-76.928 69.76-137.813334l-217.770667-415.061333zM512 725.333333a42.666667 42.666667 0 1 1 0-85.333333 42.666667 42.666667 0 0 1 0 85.333333z m-0.938667-341.333333a40.874667 40.874667 0 0 1 40.746667 44.16l-11.562667 143.530667c-1.194667 14.506667-13.269333 25.642667-27.818666 25.642666a28.245333 28.245333 0 0 1-28.074667-25.6l-13.44-143.616A40.362667 40.362667 0 0 1 511.061333 384z" fill="#EA493D" p-id="1787"></path></svg>
\ No newline at end of file
+<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1713774611710" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3358" width="24" height="24" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M85.333333 0h853.333334a85.333333 85.333333 0 0 1 85.333333 85.333333v853.333334a85.333333 85.333333 0 0 1-85.333333 85.333333H85.333333a85.333333 85.333333 0 0 1-85.333333-85.333333V85.333333a85.333333 85.333333 0 0 1 85.333333-85.333333z m227.541334 213.333333C257.92 213.333333 213.333333 249.002667 213.333333 292.992v438.016C213.333333 774.997333 257.92 810.666667 312.874667 810.666667h398.250666C766.08 810.666667 810.666667 774.997333 810.666667 731.008V292.992C810.666667 249.002667 766.08 213.333333 711.125333 213.333333H312.874667z m149.333333 85.333334a64 64 0 1 1 0 128 64 64 0 0 1 0-128z m-128 220.842666h355.584c19.626667 0 35.541333 14.336 35.541333 32 0 17.706667-15.914667 32-35.541333 32H334.208c-19.626667 0-35.541333-14.293333-35.541333-32 0-17.664 15.914667-32 35.541333-32z m0 130.56H512c19.626667 0 35.541333 14.293333 35.541333 32 0 17.664-15.914667 32-35.541333 32H334.208c-19.626667 0-35.541333-14.336-35.541333-32 0-17.706667 15.914667-32 35.541333-32z" fill="#F57818" p-id="3359"></path></svg>
\ No newline at end of file
diff --git a/static/img/notice-6.svg b/static/img/notice-6.svg
deleted file mode 100644
index cb6d3b9..0000000
--- a/static/img/notice-6.svg
+++ /dev/null
@@ -1 +0,0 @@
-<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1713774611710" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3358" width="24" height="24" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M85.333333 0h853.333334a85.333333 85.333333 0 0 1 85.333333 85.333333v853.333334a85.333333 85.333333 0 0 1-85.333333 85.333333H85.333333a85.333333 85.333333 0 0 1-85.333333-85.333333V85.333333a85.333333 85.333333 0 0 1 85.333333-85.333333z m227.541334 213.333333C257.92 213.333333 213.333333 249.002667 213.333333 292.992v438.016C213.333333 774.997333 257.92 810.666667 312.874667 810.666667h398.250666C766.08 810.666667 810.666667 774.997333 810.666667 731.008V292.992C810.666667 249.002667 766.08 213.333333 711.125333 213.333333H312.874667z m149.333333 85.333334a64 64 0 1 1 0 128 64 64 0 0 1 0-128z m-128 220.842666h355.584c19.626667 0 35.541333 14.336 35.541333 32 0 17.706667-15.914667 32-35.541333 32H334.208c-19.626667 0-35.541333-14.293333-35.541333-32 0-17.664 15.914667-32 35.541333-32z m0 130.56H512c19.626667 0 35.541333 14.293333 35.541333 32 0 17.664-15.914667 32-35.541333 32H334.208c-19.626667 0-35.541333-14.336-35.541333-32 0-17.706667 15.914667-32 35.541333-32z" fill="#F57818" p-id="3359"></path></svg>
\ No newline at end of file

--
Gitblit v1.9.3