update

parent a103caa2
...@@ -362,6 +362,7 @@ export type CustomerType = { ...@@ -362,6 +362,7 @@ export type CustomerType = {
representative: string; representative: string;
position: string; position: string;
level: CustomerLevelType; level: CustomerLevelType;
representativeEmail: string
}; };
export type CustomerLevelType = { export type CustomerLevelType = {
id: number; id: number;
......
...@@ -263,7 +263,7 @@ export default defineComponent({ ...@@ -263,7 +263,7 @@ export default defineComponent({
fullName.value = props.customerInfo.fullName; fullName.value = props.customerInfo.fullName;
companyName.value = props.customerInfo.companyName; companyName.value = props.customerInfo.companyName;
taxCode.value = props.customerInfo.taxCode; taxCode.value = props.customerInfo.taxCode;
email.value = props.customerInfo.email; email.value = props.customerInfo.representativeEmail;
status.value = props.customerInfo.status; status.value = props.customerInfo.status;
phone.value = props.customerInfo.phone; phone.value = props.customerInfo.phone;
password.value = props.customerInfo.password; password.value = props.customerInfo.password;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment