瀏覽代碼

导出功能

asd26269546 1 年之前
父節點
當前提交
0b4ebaded8

+ 7 - 0
src/views/finance/fundManage/accountStatement/index.vue

@@ -10,6 +10,10 @@
         highlight-current-row
         :action-list="[
           {
+            text: '导出Excel',
+            action: () => deriveExcel(),
+          },
+          {
             text: '内部转账',
             action: () => openTransferMoney('add'),
           },
@@ -665,6 +669,9 @@ const getDict = () => {
     getList();
   });
 };
+
+
+
 const getList = async (req) => {
   sourceList.value.pagination = { ...sourceList.value.pagination, ...req };
   loading.value = true;

+ 2 - 2
src/views/process/processApproval/index.vue

@@ -166,11 +166,11 @@
           
           <ul class="flow-chart">
             <li
-              v-for="item in recordList"
+              v-for="(item,index) in recordList"
               :key="item.id"
               :class="
                 !route.query.id
-                  ? ''
+                  ? (index == 0) ? '' : 'flow-grey'
                   : item.status == 2
                   ? 'flow-orange'
                   : item.status == 3 && !route.query.id