Browse Source

Merge remote-tracking branch 'origin/dev' into dev

# Conflicts:
#	web/src/view/finance/borrowing/borrowing.vue
xuwenhao 8 months ago
parent
commit
6ec8fd38df
1 changed files with 5 additions and 1 deletions
  1. 5 1
      web/src/view/finance/components/reimburse.vue

+ 5 - 1
web/src/view/finance/components/reimburse.vue

@@ -46,7 +46,7 @@
         <el-button
           type="primary"
           :icon="Plus"
-          @click="reimburseAddShow = true"
+          @click="changeReimburseAddShow"
         >
           新增
         </el-button>
@@ -589,6 +589,10 @@ const outsideChangePage = () => {
   condition.pageInfo.page = 1
 }
 
+const changeReimburseAddShow = () => {
+  reimburseAddShow.value = true
+}
+
 defineExpose({
   outsideChangePage
 })