huangbin 4 năm trước cách đây
mục cha
commit
a180b8458f

+ 1 - 0
src/views/business/plan/list/uncommitted/index.vue

@@ -19,6 +19,7 @@
       <template #expandedRowRender="{ record }">
         <BtnList :btnList="handleBtnList(secondBtn, record)"
                  :record="record"
+                 class="btn-list-sticky"
                  @click="openComponent" />
       </template>
       <template #contracttype="{ text }">

+ 1 - 0
src/views/information/account_info/compoments/managers-permission/index.vue

@@ -25,6 +25,7 @@
       <template #expandedRowRender="{ record }">
         <BtnList :selectedData="record"
                  :btnList="btnList"
+                 class="btn-list-sticky"
                  @onClick="btnClick" />
       </template>
       <template #rolestatus="{ text }">

+ 1 - 0
src/views/information/warehouse-info/list/normal-use/index.vue

@@ -17,6 +17,7 @@
         <!-- 额外的展开行 -->
         <template #expandedRowRender="{ record }">
           <BtnList :selectedData="record"
+          class="btn-list-sticky"
                    :btnList="forDataBtn"
                    @onClick="btnClick" />
         </template>

+ 1 - 0
src/views/manage/business-review/list/settlement/index.vue

@@ -16,6 +16,7 @@
       <template #expandedRowRender="{ record }">
         <BtnList :btnList="handlePermissionBtn(firstBtn, record)"
                  :record="record"
+                 class="btn-list-sticky"
                  @click="openComponent" />
       </template>
       <template #operateapplytype="{ text }">

+ 1 - 0
src/views/manage/business-review/list/someprice/index.vue

@@ -16,6 +16,7 @@
       <template #expandedRowRender="{ record }">
         <BtnList :btnList="handlePermissionBtn(firstBtn, record)"
                  :record="record"
+                 class="btn-list-sticky"
                  @click="openComponent" />
       </template>
 

+ 1 - 0
src/views/manage/finance-review/list/funds/index.vue

@@ -16,6 +16,7 @@
       <template #expandedRowRender="{ record }">
         <BtnList :btnList="handlePermissionBtn(firstBtn, record)"
                  :record="record"
+                 class="btn-list-sticky"
                  @click="openComponent" />
       </template>
       <!-- 现货合同类型 -->

+ 1 - 0
src/views/manage/finance-review/list/invoice/index.vue

@@ -16,6 +16,7 @@
       <template #expandedRowRender="{ record }">
         <BtnList :btnList="handlePermissionBtn(firstBtn, record)"
                  :record="record"
+                 class="btn-list-sticky"
                  @click="openComponent" />
       </template>
       <!-- 现货合同类型 -->

+ 1 - 0
src/views/manage/inventory-review/list/checkin/index.vue

@@ -17,6 +17,7 @@
       <template #expandedRowRender="{ record }">
         <BtnList :btnList="handlePermissionBtn(firstBtn, record)"
                  :record="record"
+                 class="btn-list-sticky"
                  @click="openComponent" />
       </template>
       <!-- 状态 -->

+ 1 - 0
src/views/manage/inventory-review/list/checkout/index.vue

@@ -17,6 +17,7 @@
       <template #expandedRowRender="{ record }">
         <BtnList :btnList="handlePermissionBtn(firstBtn, record)"
                  :record="record"
+                 class="btn-list-sticky"
                  @click="openComponent" />
       </template>
       <!-- 状态 -->

+ 28 - 29
src/views/market/spot_trade/components/buy-sell-market/components/buy/index.vue

@@ -1,33 +1,32 @@
 <template>
-    <!-- 买大厅 -->
-    <a-table
-        :columns="handleColumn(columns)"
-        :class="['buyHallTable', isBottom ? '' : 'buyHallTableHigh', tableList.length ? '' : 'noDataTable']"
-        :scroll="{ x: '100%', y: isBottom ? 'calc(100vh- 470px)' : 'calc(100vh - 180px)' }"
-        :pagination="false"
-        :loading="loading"
-        :expandedRowKeys="expandedRowKeys"
-        :customRow="Rowclick"
-        :expandIcon="expandIcon"
-        :expandIconAsCell="false"
-        rowKey="key"
-        :data-source="tableList"
-    >
-        <!-- ,  -->
-        <!-- 额外的展开行 -->
-        <template #expandedRowRender="{ record }">
-            <BtnList :btnList="btnList" :record="record" @click="openComponent" />
-        </template>
-    </a-table>
-    <component
-        :is="componentId"
-        v-if="componentId"
-        :selectedRow="selectedRow"
-        :buyOrSell="BuyOrSell.buy"
-        :enumName="enumName"
-        :parantSelectedRow="parantSelectedRow"
-        @cancel="closeComponent"
-    ></component>
+  <!-- 买大厅 -->
+  <a-table :columns="handleColumn(columns)"
+           :class="['buyHallTable', isBottom ? '' : 'buyHallTableHigh', tableList.length ? '' : 'noDataTable']"
+           :scroll="{ x: '100%', y: isBottom ? 'calc(100vh- 470px)' : 'calc(100vh - 180px)' }"
+           :pagination="false"
+           :loading="loading"
+           :expandedRowKeys="expandedRowKeys"
+           :customRow="Rowclick"
+           :expandIcon="expandIcon"
+           :expandIconAsCell="false"
+           rowKey="key"
+           :data-source="tableList">
+    <!-- ,  -->
+    <!-- 额外的展开行 -->
+    <template #expandedRowRender="{ record }">
+      <BtnList :btnList="btnList"
+               :record="record"
+               class="btn-list-sticky"
+               @click="openComponent" />
+    </template>
+  </a-table>
+  <component :is="componentId"
+             v-if="componentId"
+             :selectedRow="selectedRow"
+             :buyOrSell="BuyOrSell.buy"
+             :enumName="enumName"
+             :parantSelectedRow="parantSelectedRow"
+             @cancel="closeComponent"></component>
 </template>
 
 <script lang="ts">

+ 1 - 0
src/views/platinum/platinum_agreement/list/tab/index.vue

@@ -18,6 +18,7 @@
       <template #expandedRowRender="{ record }">
         <BtnList :btnList="handlePermissionBtn(secondBtn, record)"
                  :record="record"
+                 class="btn-list-sticky"
                  @click="openComponent" />
       </template>
       <!-- 协议类型-->,

+ 1 - 0
src/views/platinum/platinum_document_query/list/order/index.vue

@@ -14,6 +14,7 @@
         <!-- 额外的展开行 -->
         <template #expandedRowRender="{ record }">
           <BtnList :btnList="firstBtn"
+                   class="btn-list-sticky"
                    @onClick="btnClick(record)" />
         </template>
         <!-- 账户类型 -->

+ 1 - 0
src/views/platinum/platinum_document_query/list/position/index.vue

@@ -14,6 +14,7 @@
         <!-- 额外的展开行 -->
         <template #expandedRowRender="{ record }">
           <BtnList :btnList="firstBtn"
+                   class="btn-list-sticky"
                    @onClick="btnClick(record)" />
         </template>
         <!-- 账户类型 -->

+ 1 - 0
src/views/platinum/platinum_document_query/list/success/index.vue

@@ -14,6 +14,7 @@
         <!-- 额外的展开行 -->
         <template #expandedRowRender="{ record }">
           <BtnList :btnList="firstBtn"
+                   class="btn-list-sticky"
                    @onClick="btnClick(record)" />
         </template>
         <!-- 账户类型 -->

+ 1 - 0
src/views/platinum/platinum_document_query/list/waiting/index.vue

@@ -14,6 +14,7 @@
         <!-- 额外的展开行 -->
         <template #expandedRowRender="{ record }">
           <BtnList :btnList="firstBtn"
+                   class="btn-list-sticky"
                    @onClick="btnClick(record)" />
         </template>
         <!-- 账户类型 -->

+ 5 - 3
src/views/platinum/platinum_financing_information/list/tab/index.vue

@@ -14,12 +14,14 @@
         <!-- 额外的展开行 -->
         <template #expandedRowRender="{ record }">
           <BtnList :btnList="firstBtn"
+                   class="btn-list-sticky"
                    @onClick="btnClick(record)" />
         </template>
         <!-- 物流信息 -->
         <template #scfcontractstatus="{ record }">
-            <div>{{ getFinancingStatus(record.currisklevel, record.reckonrecovermargin) }}</div>
-            <div v-if="record.currisklevel === 2">{{  "需追加" + record.reckonrecovermargin + "元" }}</div>
+          <div>{{ getFinancingStatus(record.currisklevel, record.reckonrecovermargin) }}</div>
+          <div v-if="record.currisklevel === 2">{{  "需追加" + record.reckonrecovermargin + "元" }}
+          </div>
         </template>
 
         <!-- 账户类型 -->
@@ -39,7 +41,7 @@ import Filter from './compoments/filter/index.vue';
 import Detail from './compoments/detail/index.vue';
 import { QhjContract } from '@/services/go/ermcp/qhj/interface';
 import { queryContract } from '@/services/go/ermcp/qhj';
-import {getContractName, getFinancingStatus} from '@/common/constants/enumsName';
+import { getContractName, getFinancingStatus } from '@/common/constants/enumsName';
 
 export default defineComponent({
     name: 'platinum_financing_information_tab',

+ 1 - 0
src/views/platinum/platinum_pick_query/list/tab/index.vue

@@ -14,6 +14,7 @@
         <!-- 额外的展开行 -->
         <template #expandedRowRender="{ record }">
           <BtnList :btnList="handleTableList(firstBtn, record)"
+                   class="btn-list-sticky"
                    @onClick="btnClick(record)" />
         </template>
         <!-- 提货状态 -->

+ 1 - 0
src/views/platinum/platinum_recharge_withdrawal_review/list/recharge/index.vue

@@ -14,6 +14,7 @@
         <!-- 额外的展开行 -->
         <template #expandedRowRender="{ record }">
           <BtnList :btnList="getBtnListAction()"
+                   class="btn-list-sticky"
                    @onClick="btnClick(record)" />
         </template>
         <!-- 账户类型 -->

+ 1 - 0
src/views/platinum/platinum_recharge_withdrawal_review/list/withdrawal/index.vue

@@ -14,6 +14,7 @@
         <!-- 额外的展开行 -->
         <template #expandedRowRender="{ record }">
           <BtnList :btnList="getBtnListAction()"
+                   class="btn-list-sticky"
                    @onClick="btnClick(record)" />
         </template>
         <!-- 账户类型 -->