Ver Fonte

feat: 优化

ljc há 3 semanas atrás
pai
commit
80de160618

+ 10 - 2
components/cwg-complex-search.vue

@@ -2,7 +2,7 @@
     <view class="complex-search">
         <!-- PC/平板端:直接显示表单 -->
         <cwg-match-media :min-width="991">
-            <view v-if="!isMobile" class="search-bar search-form">
+            <view class="search-bar search-form">
                 <view v-for="(row, rowIndex) in formRows" :key="rowIndex" class="form-row">
                     <view v-for="field in row" :key="field.key" class="form-item">
                         <view class="search-bar">
@@ -64,7 +64,7 @@
         </cwg-match-media>
 
         <cwg-popup v-model:visible="visible" type="center" :mask-click="false" :showFooters="true"
-            :title="t('Documentary.tradingCenter.item3')">
+            :title="t('Documentary.tradingCenter.item3')" class="search-dialog">
             <scroll-view scroll-y class="drawer-content" style="overflow: visible;">
                 <view v-for="field in nonDateField" :key="field.key" class="filter-item">
                     <view class="label">{{ field.label }}</view>
@@ -444,6 +444,7 @@ onMounted(() => {
         .reset-btn,
         .search-btn {
             background-color: var(--btn-color);
+          color: var(--btn-color);
             line-height: px2rpx(35);
             font-size: px2rpx(14);
         }
@@ -570,5 +571,12 @@ onMounted(() => {
             }
         }
     }
+
+
+}
+.search-dialog{
+  .search-btn{
+    color: var(--btn-color);
+  }
 }
 </style>

+ 1 - 1
composables/useMenuSplit.ts

@@ -239,7 +239,7 @@ export function useMenuSplit(handleClick1: (item: MenuItem) => void) {
             children: [
                 { path: '/pages/ib/customer', label: 'Ib.Custom.Manage3', icon: 'icon-deposit' },
                 { path: '/pages/ib/subsList', label: 'Ib.Custom.Manage2', icon: 'icon-deposit' },
-                // { path: '/pages/ib/agentList', label: 'Documentary.console.item23', icon: 'icon-deposit' },
+                { path: '/pages/ib/agentList', label: 'Documentary.console.item23', icon: 'icon-deposit' },
                 { path: '/pages/ib/accountList', label: 'Ib.Custom.Manage1', icon: 'icon-deposit' }
             ],
         },

+ 3 - 3
pages/mine/components/FileManagementTab.vue

@@ -215,15 +215,15 @@ defineProps<Props>();
         justify-content: center;
         gap: px2rpx(4);
         cursor: pointer;
-        background-color: var(--bs-danger);
-        color: #fff;
+        background-color: var(--btn-color);
+        color: #000;
         padding: px2rpx(8) 0;
     }
 }
 
 .operation-btn.disabled {
     cursor: not-allowed;
-    opacity: 0.8;
+    opacity: 0.5;
   :deep(span) {
     cursor: not-allowed;
   }