147 lines
3.1 KiB
Vue
147 lines
3.1 KiB
Vue
<template>
|
|
<view class="work-container">
|
|
<!-- 轮播图 -->
|
|
<!-- <uni-swiper-dot class="uni-swiper-dot-box" :info="data" :current="current" field="content">-->
|
|
<!-- <swiper class="swiper-box" :current="swiperDotIndex" @change="changeSwiper">-->
|
|
<!-- <swiper-item v-for="(item, index) in data" :key="index">-->
|
|
<!-- <view class="swiper-item" @click="clickBannerItem(item)">-->
|
|
<!-- <image :src="item.image" mode="aspectFill" :draggable="false" />-->
|
|
<!-- </view>-->
|
|
<!-- </swiper-item>-->
|
|
<!-- </swiper>-->
|
|
<!-- </uni-swiper-dot>-->
|
|
|
|
<view class="logo-box" :style="[{height: barHeight, marginTop: statusBarHeight, lineHeight: barHeight}]">
|
|
<image src="/static/logo.png" mode="widthFix"/>
|
|
<view style="font-size: 32rpx">盈浩工作台</view>
|
|
</view>
|
|
<!-- 宫格组件 -->
|
|
<uni-section title="报表管理" type="line"></uni-section>
|
|
<view class="grid-body">
|
|
<uni-grid :column="4" :showBorder="false">
|
|
<uni-grid-item>
|
|
<view class="grid-item-box" @click="toIncome">
|
|
<uni-icons type="person-filled" size="30"></uni-icons>
|
|
<text class="text">我的工资</text>
|
|
</view>
|
|
</uni-grid-item>
|
|
</uni-grid>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
current: 0,
|
|
swiperDotIndex: 0,
|
|
data: [],
|
|
}
|
|
},
|
|
computed: {
|
|
barHeight() {
|
|
return this.$store.state.env.barHeight;
|
|
},
|
|
statusBarHeight() {
|
|
return this.$store.state.env.statusBarHeight;
|
|
}
|
|
},
|
|
methods: {
|
|
toIncome() {
|
|
this.$tab.navigateTo('/pages/income/index')
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
/* #ifndef APP-NVUE */
|
|
page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-sizing: border-box;
|
|
background-color: #fff;
|
|
min-height: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
view {
|
|
font-size: 14px;
|
|
line-height: inherit;
|
|
}
|
|
|
|
/* #endif */
|
|
|
|
.text {
|
|
text-align: center;
|
|
font-size: 26rpx;
|
|
margin-top: 10rpx;
|
|
}
|
|
|
|
.grid-item-box {
|
|
flex: 1;
|
|
/* #ifndef APP-NVUE */
|
|
display: flex;
|
|
/* #endif */
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 15px 0;
|
|
}
|
|
|
|
.uni-margin-wrap {
|
|
width: 690rpx;
|
|
width: 100%;
|
|
;
|
|
}
|
|
|
|
.swiper {
|
|
height: 300rpx;
|
|
}
|
|
|
|
.swiper-box {
|
|
height: 150px;
|
|
}
|
|
|
|
.swiper-item {
|
|
/* #ifndef APP-NVUE */
|
|
display: flex;
|
|
/* #endif */
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: #fff;
|
|
height: 300rpx;
|
|
line-height: 300rpx;
|
|
}
|
|
|
|
@media screen and (min-width: 500px) {
|
|
.uni-swiper-dot-box {
|
|
width: 400px;
|
|
/* #ifndef APP-NVUE */
|
|
margin: 0 auto;
|
|
/* #endif */
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.image {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.logo-box {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
padding: 0 20rpx;
|
|
font-size: 32rpx;
|
|
image {
|
|
width: 64rpx;
|
|
height: 64rpx;
|
|
margin-right: 20rpx;
|
|
}
|
|
}
|
|
</style>
|