71 lines
2.0 KiB
Vue
71 lines
2.0 KiB
Vue
<template>
|
|
<view class="c_task_index">
|
|
<u-sticky bgColor="#f5f5f5" offsetTop="44px">
|
|
<!-- <u-tabs :list="tabLists" @click="changeCurrent" lineColor='#3274F9' :scrollable="false"
|
|
inactiveStyle='color:#666' activeStyle="color:#3274F9"></u-tabs> -->
|
|
<uni-segmented-control :current="current" :values="['全部','已完成', '未完成']" styleType="text" @clickItem="changeCurrent" activeColor="#3274F9"></uni-segmented-control>
|
|
</u-sticky>
|
|
<view class="c_task_index_list">
|
|
<view v-for="item in 10" @click="navTo('/subpkg/dispatching/dispatching')" :key="item">
|
|
<taskItem></taskItem>
|
|
</view>
|
|
</view>
|
|
<u-loadmore :status="loadConfig.status" :loading-text="loadConfig.loadingText" :loadmore-text="loadConfig.loadmoreText" :nomore-text="loadConfig.nomoreText" />
|
|
<!-- <u-empty v-else icon="/static/img/empty/data.png" text="没有数据"></u-empty> -->
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { Toast } from "../../libs/uniApi";
|
|
import taskItem from "./taskItem.vue"
|
|
export default {
|
|
name: "task",
|
|
components: { taskItem },
|
|
data() {
|
|
return {
|
|
current: 0,
|
|
// tabLists: [{
|
|
// name: '全部',
|
|
// }, {
|
|
// name: '已完成'
|
|
// }, {
|
|
// name: '未完成'
|
|
// }],
|
|
loadConfig: {
|
|
page: 1,
|
|
limit: 15,
|
|
lastpage: '',
|
|
loadingText: '努力加载中',
|
|
loadmoreText: '轻轻上拉',
|
|
nomoreText: '我也是有底线的~~',
|
|
status: 'loadmore'
|
|
},
|
|
list: []
|
|
};
|
|
},
|
|
methods: {
|
|
navTo(url) {
|
|
url ?
|
|
uni.navigateTo({
|
|
url: url
|
|
}) : Toast('暂未开放')
|
|
},
|
|
changeCurrent(e) {
|
|
if(this.current!==e.currentIndex){
|
|
this.current = e.currentIndex;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.c_task_index {
|
|
padding-bottom: 100rpx;
|
|
|
|
.c_task_index_list {
|
|
padding-top: 28rpx;
|
|
|
|
}
|
|
}
|
|
</style> |