Commit 711f075a authored by 黄奎's avatar 黄奎

1

parent 10037f3a
......@@ -133,7 +133,8 @@
//删除用车
deleteTrip(item) {
var that = this;
this.Confirm(that.$t('tips.shifoushanchu'), function () {
var tipMsg = "是否删除【" + item.DMCNum + "】用车?"
this.Confirm(tipMsg, function () {
var delMsg = {
PlanId: item.PlanId
};
......
......@@ -15,13 +15,20 @@
</el-row>
<el-row>
<el-col :span="8">
<el-form-item label="选择团号">
<el-select v-model="postMsg.TCID" filterable :placeholder="$t('pub.pleaseSel')" @change="getPriceTrip()">
<el-option :label="$t('pub.unlimitedSel')" :value="0"></el-option>
<el-option v-for="item in priceList" :label="item.TCNUM" :value="item.TCID" :key="item.TCID">
</el-option>
</el-select>
</el-form-item>
<template v-if="postMsg.PlanType==1">
<el-form-item label="选择团号">
<el-select v-model="postMsg.TCID" filterable :placeholder="$t('pub.pleaseSel')" @change="getPriceTrip()">
<el-option :label="$t('pub.unlimitedSel')" :value="0"></el-option>
<el-option v-for="item in priceList" :label="item.TCNUM" :value="item.TCID" :key="item.TCID">
</el-option>
</el-select>
</el-form-item>
</template>
<template v-else>
<el-form-item label="用车信息">
<el-input v-model="postMsg.UseName"></el-input>
</el-form-item>
</template>
</el-col>
<el-col :span="8">
<el-form-item label="开始日期">
......@@ -63,9 +70,8 @@
<el-form-item class="ImpressionTicketing-OuterFrame" label-width="0px">
<div>
<span class="ImpressionTicketing-title">用车详情</span>
<span class="el-icon-circle-plus-outline itc-outline"></span>
<span class="el-icon-circle-plus-outline itc-outline" v-if="postMsg.PlanType==2"></span>
</div>
</el-form-item>
</el-col>
</el-row>
......@@ -90,8 +96,11 @@
<el-form-item label="用车备注" label-position="left">
<el-input v-model="item.DRemark"></el-input>
</el-form-item>
<!-- <span @click="addRule()" class="el-icon-circle-plus-outline itc-outline"></span>
<template v-if="postMsg.PlanType==2">
<!-- <span @click="addRule()" class="el-icon-circle-plus-outline itc-outline"></span>
<span @click="deleteRule(item,index)" class="el-icon-delete itc-delete"></span> -->
</template>
</el-col>
</el-row>
</template>
......
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