Forráskód Böngészése

✨ feat<操作日志>: 查询功能

xinyan 9 hónapja
szülő
commit
228dc45b61

+ 3 - 3
src/views/reportManage/dataCenter/combinedDisplay/components/tableData/mainData.vue

@@ -356,13 +356,13 @@ const cellStyleHandler = ({ column }) => {
   const dayDetailedFormat = /\d{4}-\d{2}-\d{2}/;
   const monthFormat = /\d{4}-\d{2}/;
   if (columnName.includes('~') || columnName.includes('截止') || columnName.includes('近90天平台退货率') || columnName.includes('余额')) {
-    return { fontSize: '12px', backgroundColor: '#b3ced7' };
+    return { fontSize: '12px', backgroundColor: '#e0f2fe' };
   }
   if (monthFormat.test(columnName) && !dayDetailedFormat.test(columnName)) {
-    return { fontSize: '12px', backgroundColor: '#8cbacc' };
+    return { fontSize: '12px', backgroundColor: 'rgba(186,230,253,0.9)' };
   }
   if (dayFormat.test(columnName)) {
-    return { fontSize: '12px', backgroundColor: '#d0dadf' };
+    return { fontSize: '12px', backgroundColor: '#f0f9ff' };
   }
   return { fontSize: '12px' };
 };

+ 2 - 2
src/views/system/log/operationLog/crud.tsx

@@ -63,7 +63,7 @@ export const createCrudOptions = function ({ crudExpose }: CreateCrudOptionsProp
 					},
 				},
 				search: {
-					title: '关键词',
+					title: '请求模块搜索',
 					column: {
 						show: false,
 					},
@@ -73,7 +73,7 @@ export const createCrudOptions = function ({ crudExpose }: CreateCrudOptionsProp
 							props: {
 								clearable: true,
 							},
-							placeholder: '请输入关键词',
+							placeholder: '请输入请求模块',
 						},
 					},
 					form: {