Commit 6d92ac8c authored by 黄奎's avatar 黄奎

页面修改

parent edca8e54
This diff is collapsed.
...@@ -72,7 +72,7 @@ ...@@ -72,7 +72,7 @@
</template> </template>
<script> <script>
export default { export default {
props: ["TCID","HotelId","DateStr"], props: ["TCID", "HotelId", "DateStr"],
data() { data() {
return { return {
changeLoading: false, changeLoading: false,
...@@ -86,16 +86,16 @@ ...@@ -86,16 +86,16 @@
//获取可以改变的酒店列表 //获取可以改变的酒店列表
GetChangeHotelList() { GetChangeHotelList() {
this.changeLoading = true; this.changeLoading = true;
this.MyDataList=[]; this.MyDataList = [];
var that=this; var that = this;
this.apipost("journeyorder_post_GetCanChangeHotelListService", { this.apipost("journeyorder_post_GetCanChangeHotelListService", {
UseTime: this.DateStr UseTime: this.DateStr
}, },
res => { res => {
that.changeLoading = false; that.changeLoading = false;
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
that.MyDataList =res.data.data; that.MyDataList = res.data.data;
console.log("that.MyDataList",that.MyDataList)
} else { } else {
that.Error(res.data.message); that.Error(res.data.message);
} }
...@@ -136,10 +136,10 @@ ...@@ -136,10 +136,10 @@
} }
}, },
mounted() { mounted() {
//this.GetChangeHotelList();
}, },
created(){ created() {
} }
}; };
......
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