fix: 类型修复
This commit is contained in:
parent
035ff65f4b
commit
43b9a5db04
@ -245,6 +245,10 @@ interface FormItemType {
|
||||
sort?: number;
|
||||
}
|
||||
|
||||
type ApplyFormDataType = {
|
||||
[key in string]: any
|
||||
}
|
||||
|
||||
const orcImgTypeConf = {
|
||||
FR_ID_CARD_FRONT: "FR_ID_CARD_FRONT",
|
||||
FR_ID_CARD_BEHIND: "FR_ID_CARD_BEHIND",
|
||||
@ -297,7 +301,7 @@ const handleChangeBizCategory = (value) => {
|
||||
applyFormData.biz_second_category = bizSecondCategoryId;
|
||||
}
|
||||
};
|
||||
const applyFormData = reactive({});
|
||||
const applyFormData = reactive<ApplyFormDataType>({});
|
||||
const isLoggedIn = ref(!!userStore.token);
|
||||
const optionsPermitType = [
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user