huangbin 4 anni fa
parent
commit
71ec2c7b65

+ 1 - 0
src/common/components/capitalInfo/index.vue

@@ -3,6 +3,7 @@
     <!-- 资金信息 -->
     <a-select class="capitalSelect"
               style="width: 180px"
+              v-if="false"
               @change="accountChange"
               v-model:value="selectedAccountId">
       <a-select-option v-for="item in getAllTaAccount()"

+ 1 - 2
src/layout/components/bottom.vue

@@ -10,7 +10,6 @@
           <!-- 资金信息 -->
           <a-select class="capitalSelect"
                     style="width: 180px"
-                    v-if="!isCapitalLeft"
                     @change="accountChange"
                     v-model:value="selectedAccountId">
             <a-select-option v-for="item in getAllTaAccount()"
@@ -76,7 +75,7 @@ export default defineComponent({
         // 控制资金面板是否显示在左边
         const isCapitalLeft = ref<boolean>(true);
         initData(() => {
-            if (isOemByEnum(OemType.wrspot) || isOemByEnum(OemType.tian_jing_mai_dun)) {
+            if (isOemByEnum(OemType.wrspot)) {
                 isCapitalLeft.value = false;
             }
         });