Commit 3165615b authored by 黄媛媛's avatar 黄媛媛
parents 746c8192 2dcc5f92
...@@ -308,13 +308,13 @@ ...@@ -308,13 +308,13 @@
<li> <li>
<span> <span>
<em>{{$t('scen.sc_temID')}}</em> <em>{{$t('scen.sc_temID')}}</em>
<el-input v-model="msg.TCID" class="w150"></el-input> <el-input v-model="msg.TCID" class="w150" @keyup.native="checkInteger(msg,'TCID')"></el-input>
</span> </span>
</li> </li>
<li> <li>
<span> <span>
<em>{{$t('fnc.ddbianhao')}}</em> <em>{{$t('fnc.ddbianhao')}}</em>
<el-input v-model="msg.OrderID" class="w150"></el-input> <el-input v-model="msg.OrderID" class="w150" @keyup.native="checkInteger(msg,'OrderID')"></el-input>
</span> </span>
</li> </li>
<li> <li>
......
...@@ -625,7 +625,7 @@ ...@@ -625,7 +625,7 @@
getBusTypeList() { getBusTypeList() {
this.apipost( this.apipost(
"bus_get_GetBusTypePriceList", "bus_get_GetBusTypePriceList",
null, {StartDate:this.parametersData.StartDate},
res => { res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.BusTypeList = res.data.data; this.BusTypeList = res.data.data;
......
...@@ -565,7 +565,7 @@ export default { ...@@ -565,7 +565,7 @@ export default {
var that = this; var that = this;
this.tripTitle = title; this.tripTitle = title;
this.$nextTick(() => { this.$nextTick(() => {
that.$refs.comTeam.GetTrip(id); that.$refs.comTeam.GetTrip(0,id);
}); });
that.outerVisible = true; that.outerVisible = true;
}, },
......
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