Commit 65fd9aae authored by 黄奎's avatar 黄奎

页面修改

parent e63d9f88
...@@ -90,7 +90,7 @@ ...@@ -90,7 +90,7 @@
<el-row v-if="postMsg.OperateType==1"> <el-row v-if="postMsg.OperateType==1">
<el-col :span="20"> <el-col :span="20">
<el-form-item label="机票命令"> <el-form-item label="机票命令">
<el-input type="textarea" v-model="postMsg.TicketOrder" :autosize="{ minRows: 2, maxRows: 4}"></el-input> <el-input type="textarea" v-model="postMsg.TicketOrder" :autosize="{ minRows: 2, maxRows: 4}" placeholder="SS CA8210 Y 09Aug PEKWUH 2"></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
...@@ -98,7 +98,8 @@ ...@@ -98,7 +98,8 @@
<el-row v-if="postMsg.OperateType==2"> <el-row v-if="postMsg.OperateType==2">
<el-col :span="10"> <el-col :span="10">
<el-form-item label="去程日期"> <el-form-item label="去程日期">
<el-date-picker v-model="postMsg.GoDate" style="width:150px" value-format="yyyy-MM-dd" type="date" placeholder="去程日期"> <el-date-picker v-model="postMsg.GoDate" style="width:150px" value-format="yyyy-MM-dd" type="date"
placeholder="去程日期">
</el-date-picker> </el-date-picker>
</el-form-item> </el-form-item>
</el-col> </el-col>
...@@ -112,7 +113,8 @@ ...@@ -112,7 +113,8 @@
<el-row v-if="postMsg.OperateType==2"> <el-row v-if="postMsg.OperateType==2">
<el-col :span="10"> <el-col :span="10">
<el-form-item label="回程日期"> <el-form-item label="回程日期">
<el-date-picker v-model="postMsg.BackDate" style="width:150px" value-format="yyyy-MM-dd" type="date" placeholder="回程日期"> <el-date-picker v-model="postMsg.BackDate" style="width:150px" value-format="yyyy-MM-dd" type="date"
placeholder="回程日期">
</el-date-picker> </el-date-picker>
</el-form-item> </el-form-item>
</el-col> </el-col>
...@@ -171,6 +173,18 @@ ...@@ -171,6 +173,18 @@
if (item.IsSure) { if (item.IsSure) {
this.postMsg.IsSure = item.IsSure; this.postMsg.IsSure = item.IsSure;
} }
if (item.GoDate) {
this.postMsg.GoDate = item.GoDate;
}
if (item.GoFlightNum) {
this.postMsg.GoFlightNum = item.GoFlightNum;
}
if (item.BackDate) {
this.postMsg.BackDate = item.BackDate;
}
if (item.BackFlightNum) {
this.postMsg.BackFlightNum = item.BackFlightNum;
}
}, },
//删除联运 //删除联运
deleteOrderUnion(item) { deleteOrderUnion(item) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment