Commit 4a691858 authored by 沈良进's avatar 沈良进

save

parent 913bedc4
...@@ -130,10 +130,17 @@ ...@@ -130,10 +130,17 @@
</el-select> </el-select>
</td> </td>
<td width="80" class="txtRightCost">出发时间</td> <td width="80" class="txtRightCost">出发时间</td>
<td colspan="3"> <td>
<el-date-picker type="date" v-model="postConfig.OutDateTime" value-format="yyyy-MM-dd" placeholder> <el-date-picker type="date" v-model="postConfig.OutDateTime" value-format="yyyy-MM-dd" placeholder>
</el-date-picker> </el-date-picker>
</td> </td>
<td width="80" class="txtRightCost">出团类型</td>
<td>
<el-select class=" multiple_input" v-model="postConfig.TeamType" filterable>
<el-option v-for='item in teamList' :key="item.id" :label="item.bName" :value="item.id">
</el-option>
</el-select>
</td>
</tr> </tr>
</table> </table>
<div class="seat-box" style="display:none;"> <div class="seat-box" style="display:none;">
...@@ -1148,6 +1155,7 @@ ...@@ -1148,6 +1155,7 @@
currencyTypeArr: [], //币种下拉列表 currencyTypeArr: [], //币种下拉列表
LineTeamList: [], //系列下拉列表 LineTeamList: [], //系列下拉列表
companyList: [], //出团公司 companyList: [], //出团公司
teamList: [],
payTypeList: [{ payTypeList: [{
value: 1, value: 1,
label: '现金' label: '现金'
...@@ -1200,6 +1208,18 @@ ...@@ -1200,6 +1208,18 @@
err => {} err => {}
); );
}, },
getTeamList() {
//出团公司
this.apipost(
"travel_GetTeamTypeEnumList", {},
res => {
if (res.data.resultCode == 1) {
this.teamList = res.data.data;
}
},
err => {}
);
},
//含餐类型切换 //含餐类型切换
DinnerTypeChange(subItem) { DinnerTypeChange(subItem) {
switch (subItem.ContainDinnerType) { switch (subItem.ContainDinnerType) {
...@@ -1750,6 +1770,7 @@ ...@@ -1750,6 +1770,7 @@
this.getSubtotalMoney(); this.getSubtotalMoney();
this.getAllCurrency(); this.getAllCurrency();
this.getCompanyList(); this.getCompanyList();
this.getTeamList();
}, },
created() {}, created() {},
watch: { watch: {
......
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