tangning 8 месяцев назад
Родитель
Сommit
fe6ebcdef0

BIN
src/assets/images/loginList.png


+ 1 - 1
src/components/Application/src/AppLocalePicker.vue

@@ -4,7 +4,7 @@
 -->
 <template>
   <Dropdown
-    placement="bottomCenter"
+    placement="bottom"
     :trigger="['click']"
     :dropMenuList="localeList"
     :selectedKeys="selectedKeys"

+ 1 - 1
src/components/Table/src/types/pagination.ts

@@ -12,7 +12,7 @@ type PaginationPositon =
   | 'topCenter'
   | 'topRight'
   | 'bottomLeft'
-  | 'bottomCenter'
+  | 'bottom'
   | 'bottomRight';
 
 export declare class PaginationConfig extends Pagination {

+ 1 - 1
src/router/routes/basic.ts

@@ -20,7 +20,7 @@ export const PAGE_NOT_FOUND_ROUTE: AppRouteRecordRaw = {
   children: [
     {
       path: '/:path(.*)*',
-      name: PAGE_NOT_FOUND_NAME,
+      name: PAGE_NOT_FOUND_NAME + 'index',
       component: EXCEPTION_COMPONENT,
       meta: {
         title: 'ErrorPage',

+ 13 - 0
src/views/scenes/list.vue

@@ -372,6 +372,19 @@
             },
           },
           {
+            field: 'num',
+            label: t('routes.scenes.num'),
+            labelWidth: 60,
+            component: 'Input',
+            colProps: {
+              lg: 6,
+              xl: 6,
+              xxl: 6,
+              sm: 12,
+              xs: 24,
+            },
+          },
+          {
             field: 'childName',
             label: t('routes.scenes.childName'),
             component: 'Input',

+ 28 - 19
src/views/sys/login/Login.vue

@@ -68,9 +68,11 @@
                   @click="handleClick(item.link)"
                   :title="item.title"
                 >
-                  {{ item.time }}
-                  <div class="new">NEWS</div>
-                  {{ item.title }}
+                  <div class="text">{{ item.title }}</div>
+                  <div class="title">
+                    <div class="new">NEWS</div>
+                    {{ item.time }}
+                  </div>
                 </div>
               </div>
             </div>
@@ -119,16 +121,16 @@
       title: '4DKanKanのUpdate',
       link: 'https://apps.4dkankan.jp/news/view/10/',
     },
-    {
-      time: '2024/02/15',
-      title: '4DKanKanのUpdate',
-      link: 'https://apps.4dkankan.jp/news/view/9/',
-    },
-    {
-      time: '2023/09/19',
-      title: 'iOS 17対応について',
-      link: 'https://apps.4dkankan.jp/news/view/8/',
-    },
+    // {
+    //   time: '2024/02/15',
+    //   title: '4DKanKanのUpdate',
+    //   link: 'https://apps.4dkankan.jp/news/view/9/',
+    // },
+    // {
+    //   time: '2023/09/19',
+    //   title: 'iOS 17対応について',
+    //   link: 'https://apps.4dkankan.jp/news/view/8/',
+    // },
     // {
     //   time: '2023/07/07',
     //   title: '4DKanKan®シリーズ、7月7日よりTJMデザインでの取扱いスタート',
@@ -236,7 +238,11 @@
       }
       .newList {
         width: 100%;
+        height: 168px;
         overflow: hidden;
+        background: url(/@/assets/images/loginList.png) 100% 100% no-repeat;
+        padding: 20px;
+        background-size: 100% auto;
         .newItem {
           overflow: hidden;
           white-space: nowrap;
@@ -246,13 +252,16 @@
             transform: translateX(0%);
           }
           cursor: pointer;
-          padding-top: 20px;
-          border-bottom: 1px solid #cdcccd;
+          // border-bottom: 1px solid #cdcccd;
           width: 100%;
+          position: relative;
+          top: 52px;
+          .title {
+            color: #fff;
+            margin-top: 17px;
+          }
           .new {
-            display: inline-block;
-            padding: 5px 10px;
-            background-color: #8cefee;
+            // padding: 5px 10px;
           }
           &:after {
             content: '';
@@ -260,7 +269,7 @@
             width: 100%;
             height: 1px;
             opacity: 0.4;
-            background: #121212;
+            background: #fff;
             transition: all 0.3s;
             transform: translateX(-100%);
           }