update 标准化活动
This commit is contained in:
+7
-9
@@ -251,15 +251,13 @@ export default {
|
||||
handleOk () {
|
||||
this.form.validateFields((errors, values) => {
|
||||
if (!errors) {
|
||||
const formData = Object.assign(this.model, values)
|
||||
// 联络人联系方式
|
||||
formData.standardizationLiaisonList = this.contactDataSource
|
||||
// 集团参与情况
|
||||
formData.standardizationGroupList = this.groupDataSource
|
||||
// 支付记录
|
||||
formData.standardizationPayments = this.paymentDataSource
|
||||
// 参会记录
|
||||
formData.standardizationMeetings = this.meetingDataSource
|
||||
const formData = {
|
||||
lawsStandardization: Object.assign(this.model, values), // 基础信息
|
||||
standardizationLiaisonList: this.contactDataSource, //联络人联系方式
|
||||
standardizationGroupList: this.groupDataSource, // 集团参与情况
|
||||
standardizationPayments: this.paymentDataSource, // 支付记录
|
||||
standardizationMeetings: this.meetingDataSource // 参会记录
|
||||
}
|
||||
this.confirmLoading = true
|
||||
let submitFunc
|
||||
if (this.model.id) {
|
||||
|
||||
Reference in New Issue
Block a user