lxf 3 meses atrás
pai
commit
5617f0090d
1 arquivos alterados com 4 adições e 4 exclusões
  1. 4 4
      src/components/process/SendFunds.vue

+ 4 - 4
src/components/process/SendFunds.vue

@@ -1059,6 +1059,10 @@ const defaultProps = {
   children: "children",
   label: "deptName",
 };
+// 接收父组件的传值
+const props = defineProps({
+  queryData: String,
+});
 const userList = ref([]);
 const formData = reactive({
   data: {
@@ -1360,10 +1364,6 @@ const recursive = (data) => {
     }
   });
 };
-// 接收父组件的传值
-const props = defineProps({
-  queryData: String,
-});
 // 计算请款总金额
 const handleChangeAmount = () => {
   let sum = 0;