147 lines
3.6 KiB
Vue
147 lines
3.6 KiB
Vue
<!-- 公务接待 -->
|
|
<template>
|
|
|
|
<view v-if="ExpenseBill">
|
|
|
|
<h4>{{ExpenseBill.DEPT_NAME}}</h4>
|
|
<h3>{{ExpenseBill.ACCEPT_NAME}}</h3>
|
|
<div class="detail-top-base">
|
|
<view class="span24">
|
|
<text class="text-title">申请人:</text>
|
|
<text >{{ExpenseBill.STAFF_NAME}}</text>
|
|
</view>
|
|
<text>{{$util.cutDate(ExpenseBill.FINANCEPROINST_CREATEDATE)}}</text>
|
|
</div>
|
|
<view class="detail-top-box">
|
|
<view class="detail-top-bottom ">
|
|
<view class="uni-flex span24" style="align-items: center;">
|
|
<view class="detail-title">
|
|
<i class="ico ico-ndbz"></i><text class="text-title">报销金额: </text>
|
|
|
|
</view>
|
|
<text style="color:#ec8538;">¥{{ $util.fmoney(ExpenseBill.PAYMENT_LOWER,2)}}</text>
|
|
</view>
|
|
<view class="uni-flex span24 mt8" style="align-items: center;">
|
|
<view class="detail-title">
|
|
<i class="ico ico-bm"></i><text class="text-title">报销部门:</text>
|
|
|
|
</view>
|
|
<text>{{ExpenseBill.ExpenseBill.DEPARTMENT_NAME}}</text>
|
|
</view>
|
|
<view class="detail-flex mt8 ai-top" v-if="ExpenseBill.ExpenseBill.EXPENDBILL_DETILS">
|
|
<div class="detail-title">
|
|
<i class="ico ico-jfmc"></i>支付方式:
|
|
</div>
|
|
<text>
|
|
{{ExpenseBill.ExpenseBill.EXPENDBILL_DETILS}}
|
|
</text>
|
|
</view>
|
|
<view class="detail-flex mt8 ai-top">
|
|
<div class="detail-title">
|
|
<i class="ico ico-ccry"></i>出差人员:
|
|
</div>
|
|
<text>
|
|
{{ExpenseBill.ExpenseBill.BUSINESS_PERSON}}
|
|
</text>
|
|
</view>
|
|
<view class="detail-flex mt8 ai-top" >
|
|
<view class="detail-title">
|
|
<i class="ico ico-ccsy"></i>出差事由:
|
|
</view>
|
|
<text >
|
|
{{ExpenseBill.ExpenseBill.BUSINESS_REASON}}
|
|
</text>
|
|
</view>
|
|
</view>
|
|
<view class="detail-middle-box" v-if="ExpenseBill.FileList || ExpenseBill.ImageList">
|
|
|
|
<view class="attachment" v-if="ExpenseBill.FileList && ExpenseBill.FileList.length>0">
|
|
<p class="detail-title">
|
|
<i class="ico ico-fj"></i>
|
|
<span>文 件</span>
|
|
</p>
|
|
<div class="imgBox">
|
|
<filesUnit v-for="(file,i) in ExpenseBill.FileList" :fileItem="file" :key="i"></filesUnit>
|
|
|
|
</div>
|
|
</view>
|
|
<view class="attachment" v-if="ExpenseBill.ImageList && ExpenseBill.ImageList.length>0">
|
|
<div class="detail-title">
|
|
<i class="ico ico-tp"></i>图 片
|
|
</div>
|
|
<div class="imgBox">
|
|
<image v-for="(arr,i) in ExpenseBill.ImageList" :key="i" :src="arr.IMAGE_URL" @tap="showImg(i)" mode="aspectFill" lazy-load/>
|
|
</div>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import filesUnit from '@/components/filesComponent/fileUnit.vue'
|
|
export default {
|
|
props: ['ExpenseBill'],
|
|
methods: {
|
|
showImg (index){
|
|
this.$emit('showImg',index)
|
|
}
|
|
},
|
|
components:{
|
|
filesUnit
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
@import url("/common/css/expensesTop.css");
|
|
|
|
|
|
.ico-big::before {
|
|
width: 40upx;
|
|
height: 40upx;
|
|
margin-right: 0;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.ico-rs1::before{
|
|
vertical-align: unset;
|
|
}
|
|
|
|
.ico-big2::before {
|
|
width: 60upx;
|
|
height: 60upx;
|
|
}
|
|
|
|
.uni-list-cell:after {
|
|
height: 0;
|
|
}
|
|
|
|
.base-info {
|
|
margin-top: 30upx;
|
|
}
|
|
|
|
.trip-detail {
|
|
border: 1upx solid rgb(234, 234, 234);
|
|
box-shadow: 0px 1upx 8upx rgb(234, 234, 234);
|
|
border-radius: 14upx;
|
|
margin-bottom: 20upx;
|
|
margin-left: 30upx;
|
|
margin-right: 30upx;
|
|
padding: 20upx 24upx 20upx 24upx;
|
|
}
|
|
.trip-subsidies + .trip-subsidies {
|
|
|
|
margin-top: 16upx;
|
|
padding-top: 16upx;
|
|
border-top: 2upx dashed rgb(234, 234, 234);
|
|
}
|
|
|
|
.trip-subsidies span {
|
|
font-size: 24upx;
|
|
}
|
|
</style>
|