|
|
@@ -1,10 +1,10 @@
|
|
|
<template>
|
|
|
<view class="app-content">
|
|
|
- <view style="padding:15upx 0 30upx 50upx;font-size:30upx;">
|
|
|
+ <view style="padding:20upx 0 30upx 50upx;font-size:30upx;">
|
|
|
<view>
|
|
|
<text @click="changeBx()">{{ bx == -1 ? '报销状态' : bx == 0 ? '待报销' : '已报销' }}</text>
|
|
|
- <text style="margin-left:50upx;" @click="changeType()">{{ typeName }}</text>
|
|
|
- <text style="margin-left:50upx;" @click="changePayMan()">{{ getStaffName }}</text>
|
|
|
+ <text style="margin-left:60upx;" @click="changeType()">{{ typeName }}</text>
|
|
|
+ <text style="margin-left:60upx;" @click="changePayMan()">{{ getStaffName }}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view style="margin-left:50upx;margin-bottom:26upx;position:relative;">
|
|
|
@@ -12,17 +12,17 @@
|
|
|
</view>
|
|
|
<block v-if="!$util.isEmpty(list.data)">
|
|
|
<view v-for="(item, index) in list.data" :key="index">
|
|
|
- <view style="background-color: white;margin-bottom:15upx;padding:10upx 0 10upx 20upx;">
|
|
|
- <view style="font-weight:bold;font-size:30upx;">
|
|
|
+ <view style="background-color: white;margin-bottom:15upx;padding:18upx 0 18upx 30upx;font-size:28upx;">
|
|
|
+ <view style="font-weight:bold;font-size:32upx;">
|
|
|
<text>{{item.type == 0 ? '店租':item.type==1?'水电':item.type==2?'物业':item.type==3?'伙食':item.type==4?'房租':item.type==6?'物品':'其它'}}</text>
|
|
|
<text style="margin-left:20upx;">¥{{item.amount?parseFloat(item.amount):0}}</text>
|
|
|
</view>
|
|
|
- <view v-if="item.remark!=''" style="color:red;">备注:{{ item.remark }}</view>
|
|
|
- <view>付款:<text style="font-weight:bold;">{{item.staffName?item.staffName:''}}</text></view>
|
|
|
- <view>时间:{{ item.addTime.substr(5,11) }}</view>
|
|
|
- <view>支付:{{item.payWay==0?'线下微信':item.payWay == 4 ? '现金':item.payWay == 1?'线下支付宝':item.payWay == 5 ? '银行卡':''}}</view>
|
|
|
- <view v-if="item.bx == 0" style="color:blue;">报销:待报销</view>
|
|
|
- <view v-else style="color:green;">报销:已报销</view>
|
|
|
+ <view v-if="item.remark!=''" style="color:red;margin-top:8upx;">备注:{{ item.remark }}</view>
|
|
|
+ <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>
|
|
|
</view>
|
|
|
</block>
|
|
|
@@ -30,7 +30,7 @@
|
|
|
<AppWrapperEmpty title="暂无数据" :is-empty="$util.isEmpty(list.data)" />
|
|
|
</block>
|
|
|
<view class="app-footer open_btn">
|
|
|
- <text style="margin-right:80upx;color:blue;font-size:29upx;" @click="goToBxList()">待报销列表</text>
|
|
|
+ <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>
|
|
|
</view>
|
|
|
|