|
|
@@ -88,6 +88,9 @@
|
|
|
<view class="fab_button">
|
|
|
<uni-fab :pattern="{icon:'headphones'}" :popMenu="false" horizontal="right" @fabClick="clickFabButton"></uni-fab>
|
|
|
</view>
|
|
|
+ <view class="checkIn_button">
|
|
|
+ <uni-fab :pattern="{icon:'calendar'}" :popMenu="false" horizontal="left" @fabClick="clickCheckIn"></uni-fab>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
@@ -97,6 +100,10 @@
|
|
|
import processList from '@/components/ygoa/processList.vue'
|
|
|
function changeIndexGrid(e) {
|
|
|
|
|
|
+ }
|
|
|
+ function clickCheckIn() {
|
|
|
+ console.log('clickCheckIn');
|
|
|
+ $tab.navigateTo('/pages/mine/clockIn/clockIn')
|
|
|
}
|
|
|
// 分段器选项列表
|
|
|
const items = reactive(['全部', '已读', '未读'])
|