|
|
@@ -354,9 +354,9 @@ const handleCustomerChange = async (customerNo: string) => {
|
|
|
// 从客户销售信息中获取业务信息
|
|
|
if (customerInfo.customerSalesInfoVo) {
|
|
|
const salesInfo = customerInfo.customerSalesInfoVo as any;
|
|
|
- form.value.businessStaff = salesInfo.businessStaffName || '';
|
|
|
- form.value.customerService = salesInfo.customerServiceName || '';
|
|
|
- form.value.businessDept = salesInfo.businessDeptName || '';
|
|
|
+ form.value.businessStaff = salesInfo.salesPerson || '';
|
|
|
+ form.value.customerService = salesInfo.serviceStaff || '';
|
|
|
+ form.value.businessDept = salesInfo.belongingDepartment || '';
|
|
|
}
|
|
|
|
|
|
// 获取所属公司信息
|
|
|
@@ -478,7 +478,7 @@ const submitForm = async () => {
|
|
|
|
|
|
ElMessage.success('保存成功');
|
|
|
// 跳转回列表页
|
|
|
- router.push('/order-manage/order-revenue');
|
|
|
+ router.push('/order-center/order-revenue');
|
|
|
} catch (error) {
|
|
|
console.error('保存失败:', error);
|
|
|
if (error !== false) {
|