Compare commits

..

No commits in common. "a21d441ced79f8120e3880804db87e73b5b11053" and "0abc3c38816816156b5dac6d8c8ecee300da16ba" have entirely different histories.

6 changed files with 5 additions and 7 deletions

View File

@ -35,7 +35,7 @@ function Add(props) {
const signatureUrl = useRef("");
const getXgfProjectListAll = async () => {
const { data } = await props["xgfProjectListAll"]({betweenProjectTime :1 });
const { data } = await props["xgfProjectListAll"]();
setXgfProjectListAll(data);
};

View File

@ -33,7 +33,7 @@ function Add(props) {
const signatureUrl = useRef("");
const getXgfProjectListAll = async () => {
const { data } = await props["xgfProjectListAll"]({betweenProjectTime :1 });
const { data } = await props["xgfProjectListAll"]();
setXgfProjectListAll(data);
};

View File

@ -39,7 +39,7 @@ function Add(props) {
};
const getXgfProjectListAll = async () => {
const { data } = await props["xgfProjectListAll"]({betweenProjectTime :1 });
const { data } = await props["xgfProjectListAll"]();
setXgfProjectListAll(data);
};

View File

@ -55,7 +55,7 @@ function Add(props) {
};
const getXgfProjectListAll = async () => {
const { data } = await props["xgfProjectListAll"]({betweenProjectTime :1 });
const { data } = await props["xgfProjectListAll"]();
setXgfProjectListAll(data);
};

View File

@ -51,8 +51,7 @@ function List(props) {
// },
// { name: "employeeVehicleUserName", label: "车辆所属人" },
{ name: "licenceNo", label: "车牌号" },
{ name: "licenceType", label: "车牌类型", render: (<DictionarySelect dictValue="LICENCE_TYPE" />) },
{ name: "vehicleType", label: "车辆类型", render: (<DictionarySelect dictValue="VEHICLE_TYPE" />) },
// { name: "vehicleType", label: "车辆类型", render: (<DictionarySelect dictValue="VEHICLE_TYPE" />) },
]}
form={form}
onFinish={getData}

View File

@ -154,7 +154,6 @@ const ReviewModalComponent = (props) => {
const onSubmit = async (values) => {
const { success } = await props["vehicleAuditApproval"]({
id: props.id,
vehicleApplyId: props.vehicleApplyId,
...values,
});
if (success) {