|
|
@@ -21,8 +21,8 @@
|
|
|
<view style="margin-top:8upx;">付款:<text>{{item.staffName?item.staffName:''}}</text></view>
|
|
|
<view style="margin-top:8upx;">时间:{{ item.addTime.substr(5,11) }}</view>
|
|
|
<view style="margin-top:8upx;">支付:{{item.payWay==0?'线下微信':item.payWay == 4 ? '现金':item.payWay == 1?'线下支付宝':item.payWay == 5 ? '银行卡':''}}</view>
|
|
|
- <view v-if="item.bx == 0" style="color:blue;margin-top:8upx;">报销:待报销</view>
|
|
|
- <view v-else style="color:green;margin-top:8upx;">报销:已报销</view>
|
|
|
+ <view v-if="item.bx == 0" style="margin-top:8upx;">报销:待报销</view>
|
|
|
+ <view v-else style="margin-top:8upx;">报销:已报销</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
</block>
|
|
|
@@ -30,11 +30,12 @@
|
|
|
<AppWrapperEmpty title="暂无数据" :is-empty="$util.isEmpty(list.data)" />
|
|
|
</block>
|
|
|
<view class="app-footer open_btn">
|
|
|
- <text style="margin-right:80upx;color:blue;font-size:34upx;" @click="goToBxList()">汇总统计</text>
|
|
|
- <view @click="addExpend" class="admin-button-com big blue" style="width:230upx;">新增支出</view>
|
|
|
+ <text style="margin-right:30upx;color:blue;font-size:34upx;" @click="goToStat()">汇总统计</text>
|
|
|
+ <text style="margin-right:30upx;color:blue;font-size:34upx;" @click="goToMayBx()">应报销</text>
|
|
|
+ <text style="margin-right:30upx;color:blue;font-size:34upx;" @click="goToBxList()">报销记录</text>
|
|
|
+ <view @click="addExpend" class="admin-button-com big blue" style="width:210upx;">新增支出</view>
|
|
|
</view>
|
|
|
|
|
|
-
|
|
|
<uni-popup ref="typeShowMore" background-color="#fff" type="center" :animation="true" class="class-popup-style">
|
|
|
<view style="display:flex;width:100vw;padding:20upx 20upx 40upx 20upx;height:auto;justify-content: space-between;align-items:center;flex-wrap:wrap;max-height:100vh;overflow:auto;">
|
|
|
<view v-for="(item, index) in typeList" :key="index" style="width:100vw;margin-top:8upx;">
|
|
|
@@ -112,9 +113,15 @@ export default {
|
|
|
this.resetList();
|
|
|
this.init()
|
|
|
},
|
|
|
+ goToStat(){
|
|
|
+ this.$util.pageTo({ url: "/admin/expend/stat"})
|
|
|
+ },
|
|
|
goToBxList(){
|
|
|
this.$util.pageTo({ url: "/admin/expend/bxList"})
|
|
|
- },
|
|
|
+ },
|
|
|
+ goToMayBx(){
|
|
|
+ this.$util.pageTo({ url: "/admin/expend/mayBx"})
|
|
|
+ },
|
|
|
changePayMan(){
|
|
|
this.$refs.payShowMore.open('top')
|
|
|
},
|