|
@@ -0,0 +1,226 @@
|
|
|
+<template>
|
|
|
+ <u-sticky class="shadow-default" bgColor="#fff" style="top: 0">
|
|
|
+ <u-navbar :titleStyle="{ color: '#000' }" :autoBack="true" title="项目列表" :placeholder="true" :safeAreaInsetTop="true" bgColor="#fff">
|
|
|
+ <template #left>
|
|
|
+ <view class="u-navbar__content__left__item">
|
|
|
+ <u-icon name="arrow-left" size="20" color="#000"></u-icon>
|
|
|
+ </view>
|
|
|
+ </template>
|
|
|
+ </u-navbar>
|
|
|
+ <u-tabs
|
|
|
+ :list="tabsList"
|
|
|
+ :current="tabsCurrent"
|
|
|
+ @click="tabsClick"
|
|
|
+ lineColor="#333"
|
|
|
+ :activeStyle="{ color: '#333', fontSize: '14px' }"
|
|
|
+ :inactiveStyle="{ color: '#909399', fontSize: '14px' }"
|
|
|
+ :scrollable="false"
|
|
|
+ ></u-tabs>
|
|
|
+ </u-sticky>
|
|
|
+
|
|
|
+ <oa-scroll
|
|
|
+ customClass="list-container scroll-height"
|
|
|
+ :pageSize="pageSize"
|
|
|
+ :total="total"
|
|
|
+ :isSticky="true"
|
|
|
+ :customStyle="{
|
|
|
+ //#ifdef APP-PLUS || MP-WEIXIN
|
|
|
+ height: 'calc(100vh - 132px)',
|
|
|
+ //#endif
|
|
|
+ //#ifdef H5
|
|
|
+ height: 'calc(100vh - 132px)',
|
|
|
+ //#endif
|
|
|
+ }"
|
|
|
+ :refresherLoad="true"
|
|
|
+ :refresherEnabled="true"
|
|
|
+ :refresherDefaultStyle="'none'"
|
|
|
+ :refresherThreshold="44"
|
|
|
+ :lowerThreshold="44"
|
|
|
+ :refresherBackground="'#f5f6f7'"
|
|
|
+ @load="load"
|
|
|
+ @refresh="refresh"
|
|
|
+ :data-theme="'theme-' + proxy.$settingStore.themeColor.name"
|
|
|
+ >
|
|
|
+ <template #default>
|
|
|
+ <view class="menu-list m0">
|
|
|
+ <view class="list-cell" style="color: #666666; line-height: 25px" v-for="(base, index) in dataList" :key="index" @click="handleToDetails(base)">
|
|
|
+ <view class="content-area-top menu-item">
|
|
|
+ <view class="content-area-top-time">
|
|
|
+ {{ base.createTime ? base.createTime.replace("T", " ") : "" }}
|
|
|
+ </view>
|
|
|
+ <view class="content-area-top-status" v-if="base.projectStatus == 1" style="background-color: #909399"> 未开始 </view>
|
|
|
+ <view class="content-area-top-status" v-if="base.projectStatus == 2" style="background-color: #23dedc"> 进行中 </view>
|
|
|
+ <view class="content-area-top-status" v-if="base.projectStatus == 3" style="background-color: #16bf00"> 已完成 </view>
|
|
|
+ <view class="content-area-top-status" v-if="base.projectStatus == 4" style="background-color: #f9ae3d"> 已暂停 </view>
|
|
|
+ <view class="content-area-top-status" v-if="base.projectStatus == 5" style="background-color: #f56c6c"> 已作废 </view>
|
|
|
+ </view>
|
|
|
+ <view class="content-area-row_wrap menu-item">
|
|
|
+ <view class="content-area-row_wrap-view"> 项目名称:{{ base.projectName }} </view>
|
|
|
+ <view class="content-area-row_wrap-view"> 项目负责人: {{ proxy.$common.mapping("nickName", "userId", base.projectHead, userDate) }} </view>
|
|
|
+ <view class="content-area-row_wrap-view" style="display: block">
|
|
|
+ 项目成员:
|
|
|
+ <span v-for="(userId, index) in base.projectMember.length > 0 ? base.projectMember.split(',') : []" :key="userId">
|
|
|
+ {{ proxy.$common.mapping("nickName", "userId", userId, userDate) }}{{ base.projectMember.split(",").length > index + 1 ? "," : "" }}
|
|
|
+ </span>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </template>
|
|
|
+ </oa-scroll>
|
|
|
+
|
|
|
+ <oa-tabbar :tabbarValue="2" :tabbarList="proxy.$constData.projectTabbar" :isTabbar="false"></oa-tabbar>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup>
|
|
|
+/*----------------------------------依赖引入-----------------------------------*/
|
|
|
+import { onLoad, onShow, onReady, onHide, onLaunch, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
|
|
|
+import { ref, reactive, computed, getCurrentInstance, toRefs, inject } from "vue";
|
|
|
+/*----------------------------------接口引入-----------------------------------*/
|
|
|
+import { projectApi } from "@/api/business/project.js";
|
|
|
+import { UserList } from "@/api/system/user.js";
|
|
|
+/*----------------------------------组件引入-----------------------------------*/
|
|
|
+/*----------------------------------store引入-----------------------------------*/
|
|
|
+import { useStores, commonStores } from "@/store/modules/index";
|
|
|
+/*----------------------------------公共方法引入-----------------------------------*/
|
|
|
+/*----------------------------------公共变量-----------------------------------*/
|
|
|
+const { proxy } = getCurrentInstance();
|
|
|
+const commonStore = commonStores(); //全局公共Store
|
|
|
+/*----------------------------------变量声明-----------------------------------*/
|
|
|
+const state = reactive({
|
|
|
+ loading: false,
|
|
|
+ tabsList: [
|
|
|
+ { name: "全部", value: "" },
|
|
|
+ { name: "我负责", value: 1 },
|
|
|
+ { name: "我参与", value: 2 },
|
|
|
+ ],
|
|
|
+ tabsCurrent: 0,
|
|
|
+
|
|
|
+ dataList: [],
|
|
|
+ pageSize: 20,
|
|
|
+ current: 1,
|
|
|
+ total: 0,
|
|
|
+ userDate: [],
|
|
|
+});
|
|
|
+
|
|
|
+const { tabsList, tabsCurrent, dataList, pageSize, current, total, userDate } = toRefs(state);
|
|
|
+
|
|
|
+/**
|
|
|
+ * @页面初始化
|
|
|
+ */
|
|
|
+function init() {
|
|
|
+ UserList({ pageNum: "1", pageSize: "10000" }).then((res) => {
|
|
|
+ state.userDate = res.data.rows;
|
|
|
+ });
|
|
|
+
|
|
|
+ selectListApi();
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * @列表查询
|
|
|
+ * @api接口查询
|
|
|
+ */
|
|
|
+function selectListApi() {
|
|
|
+ state.dataList = [];
|
|
|
+ state.loading = true;
|
|
|
+
|
|
|
+ projectApi()
|
|
|
+ .ProjectsList({
|
|
|
+ projectAscription: state.tabsList[state.tabsCurrent].value,
|
|
|
+ pageNum: state.current,
|
|
|
+ pageSize: state.pageSize,
|
|
|
+ })
|
|
|
+ .then((requset) => {
|
|
|
+ state.dataList = requset.data.records;
|
|
|
+ state.total = requset.data.total;
|
|
|
+ state.loading = false;
|
|
|
+ })
|
|
|
+ .catch((err) => {
|
|
|
+ state.loading = false;
|
|
|
+ });
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * @scrollView加载数据
|
|
|
+ */
|
|
|
+function load() {
|
|
|
+ state.pageSize += 10;
|
|
|
+ init();
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * @scrollView刷新数据
|
|
|
+ */
|
|
|
+function refresh() {
|
|
|
+ state.pageSize = 20;
|
|
|
+ init();
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * @tabs点击事件
|
|
|
+ */
|
|
|
+function tabsClick(e) {
|
|
|
+ state.tabsCurrent = e.index;
|
|
|
+ init();
|
|
|
+}
|
|
|
+
|
|
|
+onReady(() => {});
|
|
|
+
|
|
|
+onShow(() => {
|
|
|
+ //调用系统主题颜色
|
|
|
+ proxy.$settingStore.systemThemeColor([1]);
|
|
|
+});
|
|
|
+
|
|
|
+onLoad((options) => {
|
|
|
+ init();
|
|
|
+});
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+.list-container {
|
|
|
+ .content-area {
|
|
|
+ &-top {
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: 600;
|
|
|
+ color: #000000;
|
|
|
+
|
|
|
+ &-time {
|
|
|
+ max-width: 70%;
|
|
|
+ margin: auto 0;
|
|
|
+ font-size: 14px;
|
|
|
+ color: rgb(102, 102, 102);
|
|
|
+ }
|
|
|
+
|
|
|
+ &-name {
|
|
|
+ max-width: 70%;
|
|
|
+ color: #000;
|
|
|
+ }
|
|
|
+
|
|
|
+ &-status {
|
|
|
+ max-width: 30%;
|
|
|
+ margin: auto 0 auto auto;
|
|
|
+ font-size: 12px;
|
|
|
+ color: #ffffff;
|
|
|
+ padding: 0 5px;
|
|
|
+ border-radius: 20px;
|
|
|
+ line-height: 20px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ &-row_wrap {
|
|
|
+ font-size: 13px;
|
|
|
+ flex-flow: row wrap;
|
|
|
+
|
|
|
+ &-view {
|
|
|
+ display: flex;
|
|
|
+ min-width: 50%;
|
|
|
+ > .iconfont {
|
|
|
+ font-size: 14px;
|
|
|
+ color: #909399;
|
|
|
+ margin-left: 5px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|