Browse Source

Merge branch 'master' into stage

lxf 1 year ago
parent
commit
bfbf44e732

+ 2 - 3
src/views/finance/fundManage/depExpenses/index.vue

@@ -222,7 +222,6 @@ const config = computed(() => {
             el: "button",
             el: "button",
             click() {
             click() {
               depModal.value = true;
               depModal.value = true;
-              runningWaterId = row.id;
               dtlData.value = row;
               dtlData.value = row;
               departmentId.value = [];
               departmentId.value = [];
             },
             },
@@ -279,7 +278,7 @@ const submitDeptForm = async (departmentId) => {
     ElMessage.error("请选择部门");
     ElMessage.error("请选择部门");
     return;
     return;
   }
   }
-  const params = {
+  let params = {
     deptId: departmentId[departmentId.length - 1],
     deptId: departmentId[departmentId.length - 1],
     accountDeptRunningWaterId: dtlData.value.accountDeptRunningWaterId,
     accountDeptRunningWaterId: dtlData.value.accountDeptRunningWaterId,
     id: dtlData.value.id,
     id: dtlData.value.id,
@@ -401,7 +400,7 @@ const submitForm = async () => {
       return ElMessage("分拆总金额需等于交易金额");
       return ElMessage("分拆总金额需等于交易金额");
     }
     }
     submitLoading.value = true;
     submitLoading.value = true;
-    const params = {
+    let params = {
       id: formData.data.id,
       id: formData.data.id,
       deptRunningWaterDetailList: formData.data.accountDeptRunningWaterDetailList,
       deptRunningWaterDetailList: formData.data.accountDeptRunningWaterDetailList,
       accountDeptRunningWaterId: formData.data.accountDeptRunningWaterId,
       accountDeptRunningWaterId: formData.data.accountDeptRunningWaterId,

+ 2 - 1
src/views/index.vue

@@ -96,7 +96,8 @@
 	</div>
 	</div>
 </template>
 </template>
 
 
-<script setup name="Index">
+<script setup >
+// name="Index" 增加缓存
 import { createApp, onMounted, ref } from 'vue'
 import { createApp, onMounted, ref } from 'vue'
 import byTableDemo from '../components/byTable/demo'
 import byTableDemo from '../components/byTable/demo'
 import html2canvas from 'html2canvas'
 import html2canvas from 'html2canvas'

+ 1 - 1
src/views/process/dealWith/index.vue

@@ -188,7 +188,7 @@ const config = computed(() => {
 											flowKey: row.flowKey,
 											flowKey: row.flowKey,
 											id: row.id,
 											id: row.id,
 											processType:nodeType == 1 ? 30 : 10,
 											processType:nodeType == 1 ? 30 : 10,
-												businessId: row.businessId,
+											businessId:row.businessId,
 											version:row.version
 											version:row.version
 										},
 										},
 									});
 									});