123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- <template>
- <view class="income-main">
- <view class="income-header card-box">
- <text class="income-title" @click="onShows">
- {{ dataYMD }}
- </text>
- <view class="income-header-right">
- <text>收入: ¥{{ data.totalEarning }}</text>
- <text class="income-header-right-right">支出: ¥{{ data.totalExpend }}</text>
- </view>
- </view>
- <view v-if="data.clientAccountChangeVOlist && data.clientAccountChangeVOlist.length > 0">
- <view class="card-box icome-item" v-for="item in data.clientAccountChangeVOlist" :key="item.code" @click="onClick(item)">
- <view class="card-left">
- <!-- <img :src="baseUrl" alt="" class="income-img"> -->
- <view class="card-left-text">
- <view class="card-left-name">
- <dict-tag :options="jlzj_client_source_type" :value="item.sourceType" />
- ({{ item.businessTierName }})
- </view>
- <view class="card-left-date">{{ item.createTime }}</view>
- </view>
- </view>
- <view class="card-rigth"
- :style="{ color: item.changeType === '1' ? 'rgba(76, 175, 80, 1)' : 'rgba(244, 67, 54, 1)' }">
- {{ item.changeType === '1' ? '+' : '-' }}{{ item.changeMoney }}
- </view>
- </view>
- </view>
- <view v-else>
- <NoneView value="您还没有相关账单" />
- </view>
- <up-datetime-picker :show="show" v-model="datetime" mode="date" ref="uPickerRef" @confirm="confirm"
- @cancel="cancel"></up-datetime-picker>
- </view>
- </template>
- <script setup>
- import { ref, computed } from 'vue'
- import { getAccountChangeList } from "@/api/mine";
- import {
- onShow
- } from '@dcloudio/uni-app';
- import config from '@/config'
- import DictTag from '@/components/DictTag/index.vue'
- import {
- useDict
- } from '@/utils/dict.js';
- import dayjs from 'dayjs/esm/index'
- import NoneView from '@/components/NoneView/index.vue'
- const {
- jlzj_money_change_type,
- jlzj_client_source_type
- } = useDict('jlzj_money_change_type', 'jlzj_client_source_type');
- const baseUrl = config.baseUrl
- const userType = uni.getStorageSync('userType') //读取本地存储
- const data = ref({
- totalEarning: 0,
- totalExpend: 0,
- clientAccountChangeVOlist: []
- })
- const show = ref(false);
- const datetime = ref(Date.now());
- const dataYMD = computed(() => {
- return dayjs(datetime.value).format("YYYY年MM月DD日")
- })
- const uPickerRef = ref(null)
- const onShows = () => {
- show.value = true;
- };
- const confirm = () => {
- console.log('confirm', datetime.value);
- show.value = false;
- init();
- };
- const cancel = () => {
- show.value = false;
- };
- const onClick = (record) =>{
- record.mainOrderId && uni.navigateTo({
- url: `/pages_classify/pages/orderItem/orderdetails?mainOrderId=${record.mainOrderId}`
- });
- }
- const init = async () => {
- try {
- uni.showLoading({
- title: '数据加载中...'
- });
- if (userType === 2) {
- // const res = await getVolunteerAccountInfo();
- // data.value =res.data;
- }
- if (userType === 1) {
- const res = await getAccountChangeList({
- createTime: dayjs(datetime.value).format('YYYY-MM-DD')
- });
- console.log(1, res);
- res.data && (data.value = res.data);
- }
- } catch (error) {
- console.log('error', error);
- uni.showToast({
- title: error.msg,
- icon: 'error',
- });
- } finally {
- uni.hideLoading();
- }
- }
- onShow(() => {
- init();
- })
- </script>
- <style lang="scss" scoped>
- .card-box {
- border-radius: 8px;
- background: rgba(255, 255, 255, 1);
- padding: 12px;
- margin-bottom: 12px;
- }
- .income-main {
- position: fixed;
- top: 0px;
- left: 0px;
- right: 0px;
- bottom: 0px;
- background: rgba(245, 245, 245, 1);
- padding: 12px;
- overflow: auto;
- .income-title {
- font-size: 16px;
- font-weight: 500;
- line-height: 23.17px;
- color: rgba(0, 0, 0, 1);
- }
- .income-header {
- display: flex;
- align-items: center;
- justify-content: space-between;
- .income-header-right {
- font-size: 14px;
- font-weight: 500;
- line-height: 20.27px;
- color: rgba(0, 0, 0, 1);
- display: flex;
- align-items: flex-start;
- justify-content: center;
- .income-header-right-right {
- margin-left: 8rpx;
- }
- }
- }
- }
- .icome-item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- .card-left {
- display: flex;
- align-items: center;
- .income-img {
- width: 40px;
- height: 40px;
- }
- .card-left-text {
- margin-left: 12px;
- .card-left-name {
- font-size: 16px;
- font-weight: 700;
- line-height: 23.17px;
- color: rgba(0, 0, 0, 1);
- margin-bottom: 6px;
- display: flex;
- align-items: center;
- }
- .card-left-date {
- font-size: 14px;
- font-weight: 500;
- line-height: 16.41px;
- color: rgba(153, 153, 153, 1);
- }
- }
- .card-rigth {
- font-size: 20px;
- font-weight: 700;
- line-height: 23.44px;
- color: rgba(51, 51, 51, 1);
- }
- }
- }
- </style>
|