|
@@ -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;
|