building-sign/pages/director/expenditure/expenditure.vue

176 lines
5.1 KiB
Vue
Raw Normal View History

2022-11-15 10:03:13 +00:00
<template>
<view class="pad-x120">
<!-- 头部 -->
2022-11-18 10:33:37 +00:00
<status-nav :ifReturn="false" navBarTitle="工地支出"></status-nav>
<view class="content" :style="{'padding-top':statusHeight+50+'px'}">
<!-- 筛选 -->
<view class="screen-box pay-screen-box">
<view class="item">
<picker class="font24" mode="date" :range="date" fields="month" @change="bindDateChange" :start="startDate" :end="endDate">
<view class="name">
<text :class="showDate==''?'color-99':''">{{showDate!==''?showDate.split('-')[0]+'年'+showDate.split('-')[1]+'月':'请选择时间'}}</text>
<image src="/static/icon/icon-arrow-02.png" mode="aspectFit"></image>
</view>
</picker>
</view>
<view class="item">
<picker class="font24" mode="selector" :range="cateList" @change="bindCateChange" :value="cateIndex">
<view class="name">
<text class="clips1" :class="cateIndex==0?'color-99':''">{{cateList[cateIndex]}}</text>
<image src="/static/icon/icon-arrow-02.png" mode="aspectFit"></image>
</view>
</picker>
</view>
</view>
<!-- 支出信息 -->
<view class="pay-info font26">
<view class="item font30">
<text>工资总金额</text>
2022-11-23 08:46:52 +00:00
<text>合计{{payInfo.amount!=='undefined'?payInfo.amount:0}}</text>
2022-11-18 10:33:37 +00:00
</view>
<view class="item">
<text>基本工资</text>
2022-11-23 08:46:52 +00:00
<text>{{payInfo.base_amount!=='undefined'?payInfo.base_amount:0}}</text>
2022-11-18 10:33:37 +00:00
</view>
<view class="item">
<text>加班工资</text>
2022-11-23 08:46:52 +00:00
<text>{{payInfo.overtime_amount!=='undefined'?payInfo.overtime_amount:0}}</text>
2022-11-18 10:33:37 +00:00
</view>
<view class="item">
<text>待发工资</text>
2022-11-23 08:46:52 +00:00
<text>{{payInfo.not_amount!=='undefined'?payInfo.not_amount:0}}</text>
2022-11-18 10:33:37 +00:00
</view>
<view class="item">
<text>已发工资</text>
2022-11-23 08:46:52 +00:00
<text>{{payInfo.done_amount!=='undefined'?payInfo.done_amount:0}}</text>
2022-11-18 10:33:37 +00:00
</view>
</view>
<!-- 工资记录 -->
<view class="sign-record sign-record-other bg-white">
<view class="item font26" v-for="(item,index) in payList" :key="index">
<view class="info info-other">
<text>{{item.name}}</text>
<text :class="item.status==0?'color-blue':'color-66'">{{item.status_text}}</text>
</view>
<view class="wages-info">
<view class="text">基本工资{{item.base_amount}}</view>
<view class="text">加班工资{{item.overtime_amount}}</view>
<view class="text">合计<text class="font32">{{item.amount}}</text></view>
</view>
</view>
</view>
<!-- 加载更多 -->
<view class="more-tips font24">{{enterList.length==total?'没有更多数据了':'下滑获取更多'}}</view>
</view>
2022-11-15 10:03:13 +00:00
<!-- 尾部 -->
<tabbar :userType="userType" current="1"></tabbar>
</view>
</template>
<script>
import tabbar from '@/components/tabbar/tabbar';
2022-11-18 10:33:37 +00:00
function getDate(type) {
const date = new Date();
let year = date.getFullYear();
let month = date.getMonth() + 1;
let day = date.getDate();
if (type === 'start') {
year = year - 2;
}
if (type === 'end') {
year = year + 1;
}
month = month > 9 ? month : '0' + month;
day = day > 9 ? day : '0' + day;
return `${year}-${month}-${day}`;
}
2022-11-15 10:03:13 +00:00
export default {
components:{
tabbar
},
data() {
return {
statusHeight:uni.getSystemInfoSync().statusBarHeight, //状态栏高度
userType:'director', //账户类型 工人worker 负责人director
2022-11-18 10:33:37 +00:00
payInfo:{}, //支出总额
payList:[], //工资列表
date: getDate({format: true}),
startDate: getDate('start'),
endDate: getDate('end'),
showDate:'', //显示时间
cateList:['全部','已发','待发'], //分类列表
cateIndex:0, //当前选择
page:1,
size:10,
total:0,
2022-11-15 10:03:13 +00:00
}
},
onLoad() {
2022-11-18 10:33:37 +00:00
},
onShow() {
// 获取工资列表
this.getPayList();
},
onReachBottom() {
if(this.payList.length<this.total){
this.page++;
// 获取工资列表
this.getPayList();
}
2022-11-15 10:03:13 +00:00
},
2022-11-28 06:26:17 +00:00
onPullDownRefresh() {
this.page = 1;
// 获取工资列表
this.getPayList();
// 关闭下拉刷新
uni.stopPullDownRefresh();
},
2022-11-28 09:44:22 +00:00
onShareAppMessage(res) {
let shareObj = {
title:'工地打卡',
path: '/pages/pagehome/pagehome',
imageUrl:'/static/share-logo.jpg',
}
// 返回shareObj
return shareObj;
},
2022-11-15 10:03:13 +00:00
methods: {
2022-11-18 10:33:37 +00:00
// 选择日期
bindDateChange(e) {
this.showDate = e.detail.value;
this.page = 1;
// 获取工资列表
this.getPayList();
},
// 选择分类
bindCateChange(e) {
this.cateIndex = e.detail.value;
// 获取工资列表
this.getPayList();
},
2022-11-15 10:03:13 +00:00
2022-11-18 10:33:37 +00:00
// 获取工资列表
getPayList(){
let params = {
page:this.page,
size:this.size,
data:this.showDate,
status:this.cateIndex-1
}
if(this.page==1) this.payList = [];
this.$requst.post('/api/v1/manager/pay-list',params).then(res=>{
if(res.code==0){
console.log(res,'录入列表');
this.total = res.data.total;
this.payInfo = res.data.info
this.payList = this.payList.concat(res.data.list);
}
})
},
2022-11-15 10:03:13 +00:00
}
}
</script>
<style scoped>
</style>