|
@@ -255,6 +255,7 @@ export default {
|
|
|
baseInfo: null,
|
|
baseInfo: null,
|
|
|
phone: null,
|
|
phone: null,
|
|
|
fsUserId: null, // 保存用户ID
|
|
fsUserId: null, // 保存用户ID
|
|
|
|
|
+ doctorId: null, // 医生ID
|
|
|
// 用于存储从 collection API 获取的数据
|
|
// 用于存储从 collection API 获取的数据
|
|
|
formData: {
|
|
formData: {
|
|
|
id: null,
|
|
id: null,
|
|
@@ -369,6 +370,7 @@ export default {
|
|
|
this.userName = this.$route.query.userName;
|
|
this.userName = this.$route.query.userName;
|
|
|
this.phone = this.$route.query.phone;
|
|
this.phone = this.$route.query.phone;
|
|
|
this.fsUserId = this.$route.query.fsUserId;
|
|
this.fsUserId = this.$route.query.fsUserId;
|
|
|
|
|
+ this.doctorId = this.$route.query.doctorId;
|
|
|
this.companyUserName = this.$route.query.companyUserName;
|
|
this.companyUserName = this.$route.query.companyUserName;
|
|
|
this.baseInfo = this.$route.query.baseInfo;
|
|
this.baseInfo = this.$route.query.baseInfo;
|
|
|
this.fetchCollectionInfo();
|
|
this.fetchCollectionInfo();
|
|
@@ -480,7 +482,9 @@ export default {
|
|
|
remark: '',
|
|
remark: '',
|
|
|
selectedOrderNo: '',
|
|
selectedOrderNo: '',
|
|
|
doctorMemberSalesId: row.doctorMemberSalesId,
|
|
doctorMemberSalesId: row.doctorMemberSalesId,
|
|
|
- companyUserId: row.companyUserId
|
|
|
|
|
|
|
+ companyUserId: row.companyUserId,
|
|
|
|
|
+ exId: row.qwExternalContactId,
|
|
|
|
|
+ doctorId: this.doctorId
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
this.orderSearchKeyword = '';
|
|
this.orderSearchKeyword = '';
|
|
@@ -566,7 +570,9 @@ export default {
|
|
|
handleType: Number(this.form.handleType),
|
|
handleType: Number(this.form.handleType),
|
|
|
remark: this.form.remark,
|
|
remark: this.form.remark,
|
|
|
doctorMemberSalesId: this.form.doctorMemberSalesId,
|
|
doctorMemberSalesId: this.form.doctorMemberSalesId,
|
|
|
- companyUserId: this.form.companyUserId
|
|
|
|
|
|
|
+ companyUserId: this.form.companyUserId,
|
|
|
|
|
+ exId: this.form.exId,
|
|
|
|
|
+ doctorId: this.form.doctorId
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
if (submitData.handleType === 1) {
|
|
if (submitData.handleType === 1) {
|