CzRger 4 ヶ月 前
コミット
c3e4c5113e

+ 19 - 2
snowy-admin-web/src/style/cus.less

@@ -59,7 +59,6 @@
 	}
 }
 .ant-input {
-	background-color: #213A7A !important;
 	border: none !important;
 	color: #ffffff !important;
 	&::placeholder {
@@ -67,6 +66,9 @@
 	}
 	&.ant-input-disabled {
 		color: #ffffff !important;
+		background-color: transparent !important;
+		border: 1px solid #213A7A !important;
+		border-radius: 4px;
 	}
 }
 .ant-select {
@@ -90,6 +92,13 @@
 	.ant-select-clear {
 		background-color: #213A7A !important;
 	}
+	&.ant-select-disabled {
+		.ant-select-selector {
+			background-color: transparent !important;
+			border: 1px solid #213A7A !important;
+			border-radius: 4px;
+		}
+	}
 }
 .ant-picker {
 	background-color: #213A7A;
@@ -173,7 +182,15 @@
 
 	}
 }
-
+.ant-pagination {
+	color: #FFFFFF;
+	.ant-pagination-item > a {
+		color: #FFFFFF;
+	}
+	.ant-pagination-item-link > span {
+		color: #FFFFFF;
+	}
+}
 .ant-modal-content {
 	background-color: #14204A !important;
 	padding: 0 !important;

+ 2 - 2
snowy-admin-web/src/views/auth/temp/temp.vue

@@ -21,8 +21,8 @@
     margin-top: 40px;
     font-family: Microsoft YaHei;
     font-weight: 400;
-    font-size: 20px;
-    color: #1F1F1F;
+    font-size: 30px;
+    color: #ffffff;
   }
 }
 </style>

+ 1 - 1
snowy-admin-web/src/views/gsc/basic/detail.vue

@@ -67,7 +67,7 @@
       >
         <template #bodyCell="{ column, record }">
           <template v-if="column.dataIndex === 'license'">
-            <a-button type="link" primary size="small" @click="onViewImg(record.license)">查看</a-button>
+            <a-button v-if="record.license" type="link" primary size="small" @click="onViewImg(record.license)">查看</a-button>
           </template>
         </template>
       </a-table>

+ 22 - 10
snowy-admin-web/src/views/gsc/check/detail.vue

@@ -75,11 +75,13 @@
         </a-row>
       </a-form>
       <div class="__cus-title_1">查验过程记录</div>
-      <a-timeline>
-        <template v-for="item in formData.checks">
-          <a-timeline-item>{{ item.createTime }}<span style="margin-left: 20px"/>{{ item.checkStep }}</a-timeline-item>
-        </template>
-      </a-timeline>
+	<div class="timeline">
+		<a-timeline>
+			<template v-for="item in formData.checks">
+				<a-timeline-item color="#00C27C">{{ item.createTime }}<span style="margin-left: 20px"/>{{ item.checkStep }}</a-timeline-item>
+			</template>
+		</a-timeline>
+	</div>
       <div class="__cus-title_1">行李物品信息</div>
       <a-table
         style="margin-top: 10px"
@@ -103,7 +105,7 @@
       >
         <template #bodyCell="{ column, record }">
           <template v-if="column.dataIndex === 'license'">
-            <a-button type="link" primary size="small" @click="onViewImg(record.license)">查看</a-button>
+            <a-button v-if="record.license" type="link" primary size="small" @click="onViewImg(record.license)">查看</a-button>
           </template>
         </template>
       </a-table>
@@ -212,9 +214,19 @@ defineExpose({
 	overflow-y: auto;
 	overflow-x: hidden;
 }
-:deep(.ant-timeline-item-last) {
-  .ant-timeline-item-content {
-    min-height: unset;
-  }
+:deep(.timeline) {
+	padding-top: 20px;
+	padding-left: 20px;
+	.ant-timeline-item-tail {
+		border-inline-color: #00C27C;
+	}
+	.ant-timeline-item-content {
+		color: #FFFFFF;
+	}
+	.ant-timeline-item-last {
+		.ant-timeline-item-content {
+			min-height: unset;
+		}
+	}
 }
 </style>

+ 1 - 1
snowy-admin-web/src/views/gsc/pass/detail.vue

@@ -71,7 +71,7 @@
       >
         <template #bodyCell="{ column, record }">
           <template v-if="column.dataIndex === 'license'">
-            <a-button type="link" primary size="small" @click="onViewImg(record.license)">查看</a-button>
+            <a-button v-if="record.license" type="link" primary size="small" @click="onViewImg(record.license)">查看</a-button>
           </template>
         </template>
       </a-table>