lxf 3 月之前
父節點
當前提交
5617f0090d
共有 1 個文件被更改,包括 4 次插入4 次删除
  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;