Commit 524cd3ea authored by 黄奎's avatar 黄奎

航班修改

parent 8de07b07
......@@ -314,6 +314,18 @@
<el-input type="text" v-model="addMsg.Arrival_time" @keyup.native="changeV2(addMsg)" maxlength="5"
:placeholder="$t('system.ph_time')"></el-input>
</el-form-item>
<el-form-item class="flightMg_info">
<el-checkbox v-model="checked">{{$t('system.table_tips_fmgCk')}}</el-checkbox>
</el-form-item>
<div v-if="checked">
<p class="flightMg_info_tips">{{$t('system.table_tips_fmgInfo')}}</p>
<el-form-item :label="$t('system.table_begTime')" class='time'>
<el-date-picker v-model='addMsg.StartDate' class='w135' value-format="yyyy-MM-dd" type="date"></el-date-picker>
</el-form-item>
<el-form-item :label="$t('system.table_overTime')" class='time'>
<el-date-picker v-model='addMsg.EndDate' class='w135' value-format="yyyy-MM-dd" type="date"></el-date-picker>
</el-form-item>
</div>
</el-form>
<div slot="footer" class="dialog-footer">
<button class="normalBtn" type="primary" @click="submitForm('addMsg')">{{$t('pub.saveBtn')}}</button> &nbsp;
......@@ -359,6 +371,10 @@
Arrival_stopover_time: "",
Departure_stopover_time: "",
SeasonType: 0,
//是否同步
synchronization:0,
StartDate:"",
EndDate:""
},
SeasonTypeList: [],
DataList: [],
......@@ -516,7 +532,10 @@
Stopover_airport: "",
Arrival_stopover_time: "",
Departure_stopover_time: "",
SeasonType: 0
SeasonType: 0,
synchronization:0,
StartDate:"",
EndDate:""
};
this.addMsg = newMsg;
},
......@@ -574,6 +593,14 @@
},
//添加
addGroupGuide() {
if(this.checked)
{
this.addMsg.synchronization=1;
}
else
{
this.addMsg.synchronization=0;
}
this.apipost(
"flight_post_Set",
this.addMsg,
......
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