From 4ab0be7d4441f378add1f242b168d80fb27e65fe Mon Sep 17 00:00:00 2001
From: yyb <995253665@qq.com>
Date: 星期五, 22 五月 2026 17:57:44 +0800
Subject: [PATCH] OA部分查询条件变更

---
 src/views/officeProcessAutomation/ReimburseManage/cost-reimburse/index.vue |   42 ++++++++++++++++++------------------------
 1 files changed, 18 insertions(+), 24 deletions(-)

diff --git a/src/views/officeProcessAutomation/ReimburseManage/cost-reimburse/index.vue b/src/views/officeProcessAutomation/ReimburseManage/cost-reimburse/index.vue
index b384569..c9da4fc 100644
--- a/src/views/officeProcessAutomation/ReimburseManage/cost-reimburse/index.vue
+++ b/src/views/officeProcessAutomation/ReimburseManage/cost-reimburse/index.vue
@@ -1,4 +1,4 @@
-<!--OA妯″潡锛氳垂鐢ㄦ姤閿�-->
+<!--OA妯″潡锛氳垂鐢ㄦ姤閿�锛堝垪琛� /finReimbursement/listPage锛宺eimbursementType=2锛�-->
 <template>
   <div class="app-container">
     <div class="search_form mb20">
@@ -11,26 +11,6 @@
           clearable
           :prefix-icon="Search"
           @keyup.enter="handleQuery"
-        />
-        <span class="search_title" style="margin-left: 12px">鐢宠鏃堕棿锛�</span>
-        <el-date-picker
-          v-model="searchForm.applyTimeFrom"
-          type="date"
-          placeholder="寮�濮嬫棩鏈�"
-          format="YYYY-MM-DD"
-          value-format="YYYY-MM-DD"
-          style="width: 150px"
-          clearable
-        />
-        <span class="search_title" style="margin-left: 8px">鑷�</span>
-        <el-date-picker
-          v-model="searchForm.applyTimeTo"
-          type="date"
-          placeholder="缁撴潫鏃ユ湡"
-          format="YYYY-MM-DD"
-          value-format="YYYY-MM-DD"
-          style="width: 150px; margin-left: 8px"
-          clearable
         />
         <el-button type="primary" style="margin-left: 10px" @click="handleQuery">鎼滅储</el-button>
         <el-button @click="resetSearch">閲嶇疆</el-button>
@@ -318,16 +298,27 @@
         </el-card>
       </el-form>
       <template #footer>
-        <el-button v-if="!formDialog.readonly" type="primary" @click="submitForm">鎻� 浜�</el-button>
+        <el-button
+          v-if="!formDialog.readonly"
+          type="primary"
+          :loading="submitSaving"
+          @click="submitForm"
+        >
+          鎻� 浜�
+        </el-button>
         <el-button @click="formDialog.visible = false">{{ formDialog.readonly ? "鍏� 闂�" : "鍙� 娑�" }}</el-button>
       </template>
     </el-dialog>
 
     <!-- 璇︽儏 -->
     <el-dialog v-model="detailDialog.visible" title="璐圭敤鎶ラ攢璇︽儏" width="900px" append-to-body destroy-on-close>
+      <div v-loading="detailLoading">
       <DetailPanel :row="detailRow" />
       <el-divider content-position="left">瀹℃壒娴佺▼</el-divider>
-      <ApprovalFlowProgress :nodes="detailRow.approvalFlowNodes" :current-index="detailRow.currentNodeIndex ?? 0" />
+      <ApprovalFlowProgress
+        :nodes="detailRow.approvalFlowProgressNodes ?? detailRow.approvalFlowNodes"
+        :current-index="detailRow.currentNodeIndex ?? 0"
+      />
       <el-divider content-position="left">瀹℃壒璁板綍</el-divider>
       <el-timeline v-if="detailRow.approvalRecords?.length">
         <el-timeline-item
@@ -340,6 +331,7 @@
         </el-timeline-item>
       </el-timeline>
       <el-empty v-else description="鏆傛棤瀹℃壒璁板綍" :image-size="60" />
+      </div>
       <template #footer>
         <el-button type="primary" @click="detailDialog.visible = false">鍏� 闂�</el-button>
       </template>
@@ -357,7 +349,7 @@
       <DetailPanel :row="approveDialog.row" />
       <el-divider content-position="left">娴佺▼杩涘害</el-divider>
       <ApprovalFlowProgress
-        :nodes="approveDialog.row?.approvalFlowNodes"
+        :nodes="approveDialog.row?.approvalFlowProgressNodes ?? approveDialog.row?.approvalFlowNodes"
         :current-index="approveDialog.row?.currentNodeIndex ?? 0"
       />
       <el-form label-width="100px" class="mt16">
@@ -406,6 +398,7 @@
   formDialog,
   formRules,
   detailDialog,
+  detailLoading,
   detailRow,
   approveDialog,
   approveOpinion,
@@ -431,6 +424,7 @@
   openFormDialog,
   onFormClosed,
   submitForm,
+  submitSaving,
   approvalActionLabel,
   submitApprove,
   handleExport,

--
Gitblit v1.9.3