296 lines
10 KiB
Java
296 lines
10 KiB
Java
<template>
|
|
<a-modal
|
|
:title="title"
|
|
:width="1200"
|
|
:visible="visible"
|
|
:confirmLoading="confirmLoading"
|
|
@ok="handleOk"
|
|
@cancel="handleCancel">
|
|
|
|
<a-spin :spinning="confirmLoading">
|
|
<a-form-model ref="form" :label-col="labelCol" :wrapper-col="wrapperCol" :model="orderMainModel" :rules="validatorRules">
|
|
<!-- 主表单区域 -->
|
|
<a-row class="form-row" :gutter="16">
|
|
<a-col :lg="8">
|
|
<a-form-model-item label="订单号" required prop="orderCode">
|
|
<a-input v-model="orderMainModel.orderCode" placeholder="请输入订单号"/>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
<a-col :lg="8">
|
|
<a-form-model-item label="订单类型" prop="ctype">
|
|
<a-select placeholder="请选择订单类型" v-model="orderMainModel.ctype" >
|
|
<a-select-option value="1">国内订单</a-select-option>
|
|
<a-select-option value="2">国际订单</a-select-option>
|
|
</a-select>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
<a-col :lg="8">
|
|
<a-form-model-item label="订单日期" prop="orderDate">
|
|
<a-date-picker showTime valueFormat="YYYY-MM-DD HH:mm:ss" v-model="orderMainModel.orderDate"/>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
</a-row>
|
|
<a-row class="form-row" :gutter="16">
|
|
<a-col :lg="8">
|
|
<a-form-model-item label="订单金额" prop="orderMoney">
|
|
<a-input-number style="width: 200px" v-model="orderMainModel.orderMoney"/>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
<a-col :lg="8">
|
|
<a-form-model-item label="订单备注" prop="content">
|
|
<a-input placeholder="请输入订单备注" v-model="orderMainModel.content" />
|
|
</a-form-model-item>
|
|
</a-col>
|
|
</a-row>
|
|
|
|
<!-- 子表单区域 -->
|
|
<a-tabs defaultActiveKey="1" >
|
|
<a-tab-pane tab="客户信息" key="1">
|
|
<div>
|
|
<a-row type="flex" style="margin-bottom:10px" :gutter="16">
|
|
<a-col :span="5">客户名</a-col>
|
|
<a-col :span="5">性别</a-col>
|
|
<a-col :span="6">身份证号码</a-col>
|
|
<a-col :span="6">手机号</a-col>
|
|
<a-col :span="2">操作</a-col>
|
|
</a-row>
|
|
|
|
<a-row type="flex" style="margin-bottom:10px" :gutter="16" v-for="(item, index) in orderMainModel.jeroOrderCustomerList" :key="index">
|
|
<a-col :span="6" style="display: none">
|
|
<a-form-model-item>
|
|
<a-input placeholder="id" v-model="item.id" />
|
|
</a-form-model-item>
|
|
</a-col>
|
|
<a-col :span="5">
|
|
<a-form-model-item>
|
|
<a-input placeholder="客户名" v-model="item.name" />
|
|
</a-form-model-item>
|
|
</a-col>
|
|
<a-col :span="5">
|
|
<a-form-model-item>
|
|
<a-select placeholder="性别" v-model="item.sex" >
|
|
<a-select-option value="1">男</a-select-option>
|
|
<a-select-option value="2">女</a-select-option>
|
|
</a-select>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
<a-col :span="6">
|
|
<a-form-model-item :prop="'jeroOrderCustomerList.' + index + '.idcard'" :rules="[{required: true,message: '请输入身份证号',trigger: 'blur'},{ pattern: rules.IDCard, message: '身份证号格式不对!' }]">
|
|
<a-input placeholder="身份证号" v-model="item.idcard" />
|
|
</a-form-model-item>
|
|
</a-col>
|
|
<a-col :span="6">
|
|
<a-form-model-item :prop="'jeroOrderCustomerList.' + index + '.telphone'" :rules="rules.mobile">
|
|
<a-input placeholder="手机号" v-model="item.telphone"/>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
<a-col :span="2">
|
|
<a-form-model-item>
|
|
<a-icon type="minus-circle" @click="delRowCustom(index)" style="font-size :20px"/>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
</a-row>
|
|
<a-button type="dashed" style="width: 98%;margin-top: 10px" @click="addRowCustom">
|
|
<a-icon type="plus" /> 添加客户信息
|
|
</a-button>
|
|
</div>
|
|
</a-tab-pane>
|
|
|
|
<a-tab-pane tab="机票信息" key="2" forceRender>
|
|
<div>
|
|
<a-row type="flex" style="margin-bottom:10px" :gutter="16">
|
|
<a-col :span="6">航班号</a-col>
|
|
<a-col :span="6">航班时间</a-col>
|
|
<a-col :span="6">操作</a-col>
|
|
</a-row>
|
|
<a-row type="flex" style="margin-bottom:10px" :gutter="16" v-for="(item, index) in orderMainModel.jeroOrderTicketList" :key="index">
|
|
<a-col :span="6" style="display: none">
|
|
<a-form-model-item>
|
|
<a-input placeholder="id" v-model="item.id" />
|
|
</a-form-model-item>
|
|
</a-col>
|
|
<a-col :span="6">
|
|
<a-form-model-item :prop="'jeroOrderTicketList.' + index + '.ticketCode'" :rules="{required: true,message: '请输入航班号',trigger: 'blur'}">
|
|
<a-input placeholder="航班号" v-model="item.ticketCode"/>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
<a-col :span="6">
|
|
<a-form-model-item>
|
|
<a-date-picker placeholder="航班时间" valueFormat="YYYY-MM-DD" v-model="item.tickectDate" />
|
|
</a-form-model-item>
|
|
</a-col>
|
|
<a-col :span="6">
|
|
<a-form-model-item>
|
|
<a-icon type="minus-circle" @click="delRowTicket(index)" style="font-size :20px"/>
|
|
</a-form-model-item>
|
|
</a-col>
|
|
</a-row>
|
|
<a-button type="dashed" style="width: 98%;margin-top: 10px" @click="addRowTicket">
|
|
<a-icon type="plus" /> 添加机票信息
|
|
</a-button>
|
|
</div>
|
|
</a-tab-pane>
|
|
</a-tabs>
|
|
|
|
</a-form-model>
|
|
</a-spin>
|
|
</a-modal>
|
|
</template>
|
|
|
|
<script>
|
|
import { httpAction, getAction } from '@/api/manage'
|
|
import { rules } from '@/utils/rules'
|
|
|
|
export default {
|
|
name: 'JeroOrderMainModal',
|
|
computed: {
|
|
rules () {
|
|
return rules
|
|
}
|
|
},
|
|
data () {
|
|
return {
|
|
title: '操作',
|
|
visible: false,
|
|
orderMainModel: {
|
|
jeroOrderCustomerList: [{}],
|
|
jeroOrderTicketList: [{}]
|
|
},
|
|
labelCol: {
|
|
xs: { span: 24 },
|
|
sm: { span: 5 }
|
|
},
|
|
wrapperCol: {
|
|
xs: { span: 24 },
|
|
sm: { span: 16 }
|
|
},
|
|
confirmLoading: false,
|
|
form: this.$form.createForm(this),
|
|
validatorRules: {
|
|
orderCode: [
|
|
{ required: true, message: '订单号不能为空', trigger: 'blur' }
|
|
]
|
|
},
|
|
url: {
|
|
add: '/test/jeroOrderMain/add',
|
|
edit: '/test/jeroOrderMain/edit',
|
|
orderCustomerList: '/test/jeroOrderMain/queryOrderCustomerListByMainId',
|
|
orderTicketList: '/test/jeroOrderMain/queryOrderTicketListByMainId'
|
|
}
|
|
}
|
|
},
|
|
created () {
|
|
},
|
|
methods: {
|
|
add () {
|
|
this.edit({})
|
|
},
|
|
edit (record) {
|
|
this.orderMainModel = Object.assign({
|
|
jeroOrderCustomerList: [{}],
|
|
jeroOrderTicketList: [{}]
|
|
}, record)
|
|
// --------------------------------------------------------
|
|
// 初始化明细表数据
|
|
console.log(this.orderMainModel.id)
|
|
if (this.orderMainModel.id) {
|
|
const params = { id: this.orderMainModel.id }
|
|
// 初始化订单机票列表
|
|
getAction(this.url.orderCustomerList, params).then((res) => {
|
|
if (res.success) {
|
|
this.orderMainModel.jeroOrderCustomerList = res.result
|
|
this.$forceUpdate()
|
|
}
|
|
})
|
|
// 初始化订单客户列表
|
|
getAction(this.url.orderTicketList, params).then((res) => {
|
|
if (res.success) {
|
|
this.orderMainModel.jeroOrderTicketList = res.result
|
|
this.$forceUpdate()
|
|
}
|
|
})
|
|
}
|
|
this.visible = true
|
|
},
|
|
close () {
|
|
this.$emit('close')
|
|
this.visible = false
|
|
},
|
|
handleOk () {
|
|
const that = this
|
|
// 触发表单验证
|
|
this.$refs.form.validate(valid => {
|
|
if (valid) {
|
|
that.confirmLoading = true
|
|
let httpurl
|
|
const method = 'post'
|
|
if (!this.orderMainModel.id) {
|
|
httpurl = this.url.add
|
|
// method = 'post'
|
|
} else {
|
|
httpurl = this.url.edit
|
|
// method = 'put'
|
|
}
|
|
|
|
httpAction(httpurl, this.orderMainModel, method).then((res) => {
|
|
if (res.success) {
|
|
that.$message.success(res.message)
|
|
that.$emit('ok')
|
|
} else {
|
|
that.$message.warning(res.message)
|
|
}
|
|
}).finally(() => {
|
|
that.confirmLoading = false
|
|
that.close()
|
|
})
|
|
}
|
|
})
|
|
},
|
|
handleCancel () {
|
|
this.close()
|
|
},
|
|
addRowCustom () {
|
|
this.orderMainModel.jeroOrderCustomerList.push({})
|
|
this.$forceUpdate()
|
|
},
|
|
delRowCustom (index) {
|
|
console.log(index)
|
|
const all = this.orderMainModel
|
|
all.jeroOrderCustomerList.splice(index, 1)
|
|
this.orderMainModel.jeroOrderCustomerList.splice(index, 1)
|
|
this.$forceUpdate()
|
|
},
|
|
addRowTicket () {
|
|
this.orderMainModel.jeroOrderTicketList.push({})
|
|
console.log(this.orderMainModel.jeroOrderTicketList)
|
|
this.$forceUpdate()
|
|
},
|
|
delRowTicket (index) {
|
|
console.log(index)
|
|
const all = this.orderMainModel
|
|
all.jeroOrderTicketList.splice(index, 1)
|
|
this.orderMainModel.jeroOrderTicketList.splice(index, 1)
|
|
this.$forceUpdate()
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.ant-btn {
|
|
padding: 0 10px;
|
|
margin-left: 3px;
|
|
}
|
|
.ant-form-item-control {
|
|
line-height: 0;
|
|
}
|
|
/** 主表单行间距 */
|
|
.ant-form .ant-form-item {
|
|
margin-bottom: 10px;
|
|
}
|
|
/** Tab页面行间距 */
|
|
.ant-tabs-content .ant-form-item {
|
|
margin-bottom: 0;
|
|
}
|
|
</style>
|