Commit 5f46b606 authored by 黄奎's avatar 黄奎
parents 1c05862d b99d7468
...@@ -330,11 +330,13 @@ ...@@ -330,11 +330,13 @@
</el-tooltip> </el-tooltip>
</div> </div>
</div> </div>
<div style="padding-left:15px;padding-top:5px;"> <el-tooltip class="item" effect="dark" :content="item.UpdateName+''+item.UpdateTimeStr" placement="top-start">
<div style="padding-left:15px;padding-top:5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;">
<i style="top:2px" class="iconfont icon-renyuanguanli"></i> <i style="top:2px" class="iconfont icon-renyuanguanli"></i>
<span v-if="item.UpdateName && item.UpdateName!=''">{{item.UpdateName}}</span> <span v-if="item.UpdateName && item.UpdateName!=''">{{item.UpdateName}}</span>
{{item.UpdateTimeStr}} {{item.UpdateTimeStr}}
</div> </div>
</el-tooltip>
<div class="btnList"> <div class="btnList">
<button @click="goSubInfo('HotelInfo',item.ID)" class="hotelBtnMan">{{$t('pub.updateMsg')}}</button> <button @click="goSubInfo('HotelInfo',item.ID)" class="hotelBtnMan">{{$t('pub.updateMsg')}}</button>
<button @click="CopyHotel(item.ID)" class="hotelBtnMan">复制</button> <button @click="CopyHotel(item.ID)" class="hotelBtnMan">复制</button>
......
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
<th>金额</th> <th>金额</th>
<th>币种</th> <th>币种</th>
<th>支付方式</th> <th>支付方式</th>
<th>附件</th>
<th>备注</th> <th>备注</th>
</tr> </tr>
<tr> <tr>
...@@ -54,6 +55,16 @@ ...@@ -54,6 +55,16 @@
<p v-if="item.ReimburseList.SettlementType==1">现金支付</p> <p v-if="item.ReimburseList.SettlementType==1">现金支付</p>
<p v-if="item.ReimburseList.SettlementType==2">公司结算</p> <p v-if="item.ReimburseList.SettlementType==2">公司结算</p>
</td> </td>
<td >
<div v-if="item.ReimburseList.VoucherPicList.length">
<div v-for="(vou, vouIndex) in item.ReimburseList.VoucherPicList" :key="vouIndex">
<img @click="openImg(vou.url)" style="width: 20px;height: 20px;" :src="vou.url" alt="">
</div>
</div>
<div v-else>
</div>
</td>
<td>{{item.ReimburseList.Remarks}}</td> <td>{{item.ReimburseList.Remarks}}</td>
</tr> </tr>
...@@ -113,6 +124,9 @@ export default { ...@@ -113,6 +124,9 @@ export default {
query: { id: id, blank: "y", tab: name } query: { id: id, blank: "y", tab: name }
}); });
}, },
openImg(src){
window.open(src, "_blank");
},
handleCurrentChange(val) { handleCurrentChange(val) {
this.msg.pageIndex = val; this.msg.pageIndex = val;
this.getList(); this.getList();
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
<th>实付</th> <th>实付</th>
<th>币种</th> <th>币种</th>
<th>支付方式</th> <th>支付方式</th>
<th>附件</th>
<th>备注</th> <th>备注</th>
</tr> </tr>
<tr> <tr>
...@@ -60,6 +61,16 @@ ...@@ -60,6 +61,16 @@
<td v-if="childIndex==0" :rowspan="subItem.DiningPriceList.length"> <td v-if="childIndex==0" :rowspan="subItem.DiningPriceList.length">
{{urrencyTypeObj[subItem.ReimburseList.CurrencyId]}} {{urrencyTypeObj[subItem.ReimburseList.CurrencyId]}}
</td> </td>
<td v-if="childIndex==0" :rowspan="subItem.ReimburseList.ReimburseDetailsList.length">
<div v-if="subItem.ReimburseList.VoucherPicList.length">
<div v-for="(vou, vouIndex) in subItem.ReimburseList.VoucherPicList" :key="vouIndex">
<img @click="openImg(vou.url)" style="width: 20px;height: 20px;" :src="vou.url" alt="">
</div>
</div>
<div v-else>
</div>
</td>
<td v-if="childIndex==0" :rowspan="subItem.DiningPriceList.length"> <td v-if="childIndex==0" :rowspan="subItem.DiningPriceList.length">
{{subItem.ReimburseList.Remarks}} {{subItem.ReimburseList.Remarks}}
</td> </td>
...@@ -153,6 +164,9 @@ export default { ...@@ -153,6 +164,9 @@ export default {
this.msg.pageIndex = 1; this.msg.pageIndex = 1;
this.currentPage = 1; this.currentPage = 1;
}, },
openImg(src){
window.open(src, "_blank");
},
getList() { getList() {
this.loading = true; this.loading = true;
......
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
<th>金额小计</th> <th>金额小计</th>
<th>支付方式</th> <th>支付方式</th>
<th>币种</th> <th>币种</th>
<th>附件</th>
<th>备注</th> <th>备注</th>
</tr> </tr>
<template v-for='(item,index) in dataList'> <template v-for='(item,index) in dataList'>
...@@ -48,6 +49,16 @@ ...@@ -48,6 +49,16 @@
<td v-if="childIndex==0" :rowspan="item.ReimburseList.ReimburseDetailsList.length"> <td v-if="childIndex==0" :rowspan="item.ReimburseList.ReimburseDetailsList.length">
{{getCurrencyStr(item.ReimburseList.CurrencyId)}} {{getCurrencyStr(item.ReimburseList.CurrencyId)}}
</td> </td>
<td v-if="childIndex==0" :rowspan="item.ReimburseList.ReimburseDetailsList.length">
<div v-if="item.ReimburseList.VoucherPicList.length">
<div v-for="(vou, vouIndex) in item.ReimburseList.VoucherPicList" :key="vouIndex">
<img @click="openImg(vou.url)" style="width: 20px;height: 20px;" :src="vou.url" alt="">
</div>
</div>
<div v-else>
</div>
</td>
<td v-if="childIndex==0" :rowspan="item.ReimburseList.ReimburseDetailsList.length"> <td v-if="childIndex==0" :rowspan="item.ReimburseList.ReimburseDetailsList.length">
{{item.ReimburseList.Remarks}} {{item.ReimburseList.Remarks}}
</td> </td>
...@@ -94,6 +105,9 @@ export default { ...@@ -94,6 +105,9 @@ export default {
} }
} }
}, },
openImg(src){
window.open(src, "_blank");
},
//获取数据 //获取数据
getList(TCIDs, date) { getList(TCIDs, date) {
this.loading = true; this.loading = true;
......
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
<th>金额小计</th> <th>金额小计</th>
<th>支付方式</th> <th>支付方式</th>
<th>币种</th> <th>币种</th>
<th>附件</th>
<th>备注</th> <th>备注</th>
</tr> </tr>
<template v-for='(item,index) in dataList'> <template v-for='(item,index) in dataList'>
...@@ -48,6 +49,16 @@ ...@@ -48,6 +49,16 @@
<td v-if="childIndex==0" :rowspan="subItem.ReimburseList.ReimburseDetailsList.length"> <td v-if="childIndex==0" :rowspan="subItem.ReimburseList.ReimburseDetailsList.length">
{{getCurrencyStr(subItem.ReimburseList.CurrencyId)}} {{getCurrencyStr(subItem.ReimburseList.CurrencyId)}}
</td> </td>
<td v-if="childIndex==0" :rowspan="subItem.ReimburseList.ReimburseDetailsList.length">
<div v-if="subItem.ReimburseList.VoucherPicList.length">
<div v-for="(vou, vouIndex) in subItem.ReimburseList.VoucherPicList" :key="vouIndex">
<img @click="openImg(vou.url)" style="width: 20px;height: 20px;" :src="vou.url" alt="">
</div>
</div>
<div v-else>
</div>
</td>
<td v-if="childIndex==0" :rowspan="subItem.ReimburseList.ReimburseDetailsList.length"> <td v-if="childIndex==0" :rowspan="subItem.ReimburseList.ReimburseDetailsList.length">
{{subItem.ReimburseList.Remarks}} {{subItem.ReimburseList.Remarks}}
</td> </td>
...@@ -88,6 +99,9 @@ export default { ...@@ -88,6 +99,9 @@ export default {
} }
} }
}, },
openImg(src){
window.open(src, "_blank");
},
//获取数据 //获取数据
getList(TCIDs, date) { getList(TCIDs, date) {
this.loading = true; this.loading = true;
...@@ -109,6 +123,7 @@ export default { ...@@ -109,6 +123,7 @@ export default {
dataList = data dataList = data
} }
this.dataList = dataList; this.dataList = dataList;
console.log(dataList)
} else { } else {
this.Error(res.data.message); this.Error(res.data.message);
} }
......
...@@ -312,11 +312,13 @@ ...@@ -312,11 +312,13 @@
<el-tooltip class="item" effect="dark" :content="item.Name" placement="top-start" popper-class="max-w250"> <el-tooltip class="item" effect="dark" :content="item.Name" placement="top-start" popper-class="max-w250">
<div class="hotelTitle">{{item.Name}}</div> <div class="hotelTitle">{{item.Name}}</div>
</el-tooltip> </el-tooltip>
<div style="padding-left:15px;margin:10px 0;"> <el-tooltip class="item" effect="dark" :content="item.UpdateName+''+item.UpdateTimeStr" placement="top-start" popper-class="max-w250">
<div style="padding-left:15px;margin:10px 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;">
<i style="top: 1px;position: relative;" class="iconfont icon-renyuanguanli"></i> <i style="top: 1px;position: relative;" class="iconfont icon-renyuanguanli"></i>
<span v-if="item.UpdateName && item.UpdateName!=''">{{item.UpdateName}}</span> <span v-if="item.UpdateName && item.UpdateName!=''">{{item.UpdateName}}</span>
{{item.UpdateTimeStr}} {{item.UpdateTimeStr}}
</div> </div>
</el-tooltip>
<div class="btnList"> <div class="btnList">
<button @click="goUrl('scenicSpotInfoManage',item.ID)" class="hotelBtn">{{$t('pub.updateMsg')}}</button> <button @click="goUrl('scenicSpotInfoManage',item.ID)" class="hotelBtn">{{$t('pub.updateMsg')}}</button>
<button @click="CopyScenic(item.ID)" class="hotelBtn">复制</button> <button @click="CopyScenic(item.ID)" class="hotelBtn">复制</button>
......
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
></el-option> ></el-option>
</el-select> </el-select>
</li> </li>
<li> <li v-if="false">
<span> <span>
<em>审批状态</em> <em>审批状态</em>
<el-select class="w200" v-model="msg.examineStatus"> <el-select class="w200" v-model="msg.examineStatus">
......
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