Commit 3deb7021 authored by 黄奎's avatar 黄奎

新增供应商酒店付款方式配置页面

parent 0dfe21d1
......@@ -116,7 +116,7 @@
</el-dialog>
</div>
<div class="supplierList clearfix" v-loading="loading">
<div class="supList" v-for="item in tabelDate" :key="item.subCode">
<div class="supList" v-for="item in tabelDate" :key="item.subCode" style="height:270px;">
<div class="suTop">
<img src="../../assets/img/suplier.jpg">
<div class="topCircle">{{item.Number}}</div>
......@@ -136,6 +136,7 @@
@click="outerVisible = true,dialogTitle='修改供应商信息',updateInfo(item.ID)">{{$t('pub.updateMsg')}}</button>
<button class="hollowFixedBtn UPBtn" @click="isdelete(item.ID)">删除</button>
<button class="hollowFixedBtn HS_financial" @click="AccountManage(item)">账户管理</button>
<button class="hollowFixedBtn HS_financial" @click="GoHotel(item.ID)" style="display:none;">酒店付款方式配置</button>
</div>
</div>
</div>
......@@ -220,6 +221,18 @@
};
},
methods: {
//跳转到供应商酒店配置页面
GoHotel(ID)
{
this.$router.push({
path: "HotelSupplierHotel",
query: {
ID: ID,
tab: "供应商酒店备注",
blank: 'y',
}
});
},
handleCurrentChange(val) {
this.msg.pageIndex = val;
this.initData();
......
<style>
.CM_look {
padding: 4px !important;
position: relative;
top: 1px;
}
</style>
<template>
<div class="flexOne">
<div class="query-box">
<ul>
<li>
<input type="button" class="normalBtn" value="新增" />
</li>
</ul>
</div>
<table class="singeRowTable" border="0" cellspacing="0" cellpadding="0" v-loading="loading">
<tr>
<th>酒店</th>
<th>开始日期</th>
<th>结束日期</th>
<th>付款方式</th>
<th>{{$t('system.table_operation')}}</th>
</tr>
<tr v-for="item in dataList">
<td>{{item.Periods}}</td>
<td>{{item.SumPrice}}</td>
<td>{{item.CreateByName}}</td>
<td>{{item.CreateTimeStr}}</td>
<td>
<el-tooltip class="item" effect="dark" content="查看" placement="top">
<el-button type="primary" class="CM_look" @click="goUrl('AirticketCommissionDetail',item.ID)"
icon="iconfont icon-chakan" circle></el-button>
</el-tooltip>
</td>
</tr>
</table>
</div>
</template>
<script>
export default {
data() {
return {
msg: {
SupplierId:0,
},
loading: false,
//数据源
dataList: [],
}
},
mounted() {
this.msg.SupplierId=this.$route.query.ID;
this.getList();
},
methods: {
//获取数据
getList() {
this.loading = true;
this.apipost(
"supplier_get_GetListService",
this.msg,
res => {
this.loading = false;
if (res.data.resultCode == 1) {
this.dataList = res.data.data;
} else {
this.Error(res.data.message);
}
},
null
);
},
}
}
</script>
\ No newline at end of file
......@@ -218,7 +218,7 @@
//导出报表
let msg = {
TCID: this.msg.TCID,
isGetTicket: 1, //不查询机票
isGetTicket: 1, //不查询机票
isGetZiYouXing: 1, //不查询自由行
};
var fileName = "旅客名单.xls";
......
......@@ -288,7 +288,6 @@
sItem.TCID = this.editList[0].TCID;
}
});
//console.log("this.editList",this.editList);
this.apipost(
"travelhouse_post_SetTravelChangeHouseService",
this.editList,
......
......@@ -695,6 +695,14 @@ export default {
title: '供应商管理'
},
},
{
path: '/HotelSupplierHotel', //供应商酒店付款方式配置
name: 'HotelSupplierHotel',
component: resolve => require(['@/components/Hotel/HotelSupplierHotel'], resolve),
meta: {
title: '供应商管理'
},
},
{
path: '/hotelproductmanage', //酒店产品管理
name: 'HotelProductManage',
......
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