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

1

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