fix:代码块模块修改
This commit is contained in:
parent
499fff8e28
commit
a188413ec5
@ -150,7 +150,7 @@ const headers = {
|
||||
// 查询参数
|
||||
const params = reactive({
|
||||
customer_guid: "",
|
||||
code_module_category_guid: props.code_module_category.code_module_category_guid ? props.code_module_category.code_module_category_guid : "",
|
||||
code_module_category_guid: "",
|
||||
code_module_name: "",
|
||||
code_module_audit: "",
|
||||
|
||||
@ -160,7 +160,9 @@ const props = defineProps({
|
||||
code_module_category: Object,
|
||||
});
|
||||
watch(props, (v) => {
|
||||
params.code_module_category_guid = props.code_module_category.code_module_category_guid
|
||||
if (props.code_module_category) {
|
||||
params.code_module_category_guid = props.code_module_category.code_module_category_guid
|
||||
}
|
||||
});
|
||||
if (props.code_module_category) {
|
||||
params.code_module_category_guid = props.code_module_category.code_module_category_guid
|
||||
|
Loading…
Reference in New Issue
Block a user