Compare commits
2 Commits
0abc3c3881
...
a21d441ced
| Author | SHA1 | Date |
|---|---|---|
|
|
a21d441ced | |
|
|
ac8d75adf5 |
|
|
@ -35,7 +35,7 @@ function Add(props) {
|
||||||
const signatureUrl = useRef("");
|
const signatureUrl = useRef("");
|
||||||
|
|
||||||
const getXgfProjectListAll = async () => {
|
const getXgfProjectListAll = async () => {
|
||||||
const { data } = await props["xgfProjectListAll"]();
|
const { data } = await props["xgfProjectListAll"]({betweenProjectTime :1 });
|
||||||
setXgfProjectListAll(data);
|
setXgfProjectListAll(data);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ function Add(props) {
|
||||||
const signatureUrl = useRef("");
|
const signatureUrl = useRef("");
|
||||||
|
|
||||||
const getXgfProjectListAll = async () => {
|
const getXgfProjectListAll = async () => {
|
||||||
const { data } = await props["xgfProjectListAll"]();
|
const { data } = await props["xgfProjectListAll"]({betweenProjectTime :1 });
|
||||||
setXgfProjectListAll(data);
|
setXgfProjectListAll(data);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ function Add(props) {
|
||||||
};
|
};
|
||||||
|
|
||||||
const getXgfProjectListAll = async () => {
|
const getXgfProjectListAll = async () => {
|
||||||
const { data } = await props["xgfProjectListAll"]();
|
const { data } = await props["xgfProjectListAll"]({betweenProjectTime :1 });
|
||||||
setXgfProjectListAll(data);
|
setXgfProjectListAll(data);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,7 @@ function Add(props) {
|
||||||
};
|
};
|
||||||
|
|
||||||
const getXgfProjectListAll = async () => {
|
const getXgfProjectListAll = async () => {
|
||||||
const { data } = await props["xgfProjectListAll"]();
|
const { data } = await props["xgfProjectListAll"]({betweenProjectTime :1 });
|
||||||
setXgfProjectListAll(data);
|
setXgfProjectListAll(data);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,8 @@ function List(props) {
|
||||||
// },
|
// },
|
||||||
// { name: "employeeVehicleUserName", label: "车辆所属人" },
|
// { name: "employeeVehicleUserName", label: "车辆所属人" },
|
||||||
{ name: "licenceNo", label: "车牌号" },
|
{ name: "licenceNo", label: "车牌号" },
|
||||||
// { name: "vehicleType", label: "车辆类型", render: (<DictionarySelect dictValue="VEHICLE_TYPE" />) },
|
{ name: "licenceType", label: "车牌类型", render: (<DictionarySelect dictValue="LICENCE_TYPE" />) },
|
||||||
|
{ name: "vehicleType", label: "车辆类型", render: (<DictionarySelect dictValue="VEHICLE_TYPE" />) },
|
||||||
]}
|
]}
|
||||||
form={form}
|
form={form}
|
||||||
onFinish={getData}
|
onFinish={getData}
|
||||||
|
|
|
||||||
|
|
@ -154,6 +154,7 @@ const ReviewModalComponent = (props) => {
|
||||||
const onSubmit = async (values) => {
|
const onSubmit = async (values) => {
|
||||||
const { success } = await props["vehicleAuditApproval"]({
|
const { success } = await props["vehicleAuditApproval"]({
|
||||||
id: props.id,
|
id: props.id,
|
||||||
|
vehicleApplyId: props.vehicleApplyId,
|
||||||
...values,
|
...values,
|
||||||
});
|
});
|
||||||
if (success) {
|
if (success) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue