Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev/michaelhu #130

Merged
merged 11 commits into from
Oct 23, 2023
5 changes: 0 additions & 5 deletions .env.develop

This file was deleted.

8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"@fullcalendar/timegrid": "^6.1.6",
"@fullcalendar/vue3": "^6.1.6",
"@vueuse/core": "^9.3.0",
"@yaoyaochi/weyui": "^1.2.3",
"@yaoyaochi/weyui": "^1.3.3",
"axios": "^0.24.0",
"dayjs": "^1.11.7",
"lodash": "^4.17.21",
Expand Down
1 change: 1 addition & 0 deletions src/api/crm/customer-domain/customer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export interface Customer extends PowerModel, CustomerExternalId {
name: string;
mobile: string;
email: string;
uuid: string;
inviterId: number;
source: number;
type: number;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@
<a-form-item label="邮箱地址" field="email">
<a-input v-model="formModel.email" />
</a-form-item>
<a-form-item label="唯一识别号" field="uuid">
<a-typography-text>{{
prop.node.uuid !== ''
? prop.node.uuid
: '提交保存后会自动生成唯一识别号'
}}</a-typography-text>
</a-form-item>
<a-form-item label="客源" field="source">
<a-select
v-model="formModel.source"
Expand Down Expand Up @@ -87,16 +94,15 @@

const options = useOptionsStore();

const fileList = [];

const formRef = ref();
const formModel = ref({
id: prop.node.id,
name: prop.node.name,
mobile: prop.node.mobile,
email: prop.node.email,
inviter: prop.node.inviter,
inviterId: prop.node.inviterId,
// uuid: prop.node.uuid,
// inviter: prop.node.inviter,
// inviterId: prop.node.inviterId,
source: prop.node.source,
type: prop.node.type,
isActivated: prop.node.isActivated,
Expand Down
Loading
Loading