|
@@ -46,6 +46,23 @@
|
|
|
:data-theme="'theme-' + proxy.$settingStore.themeColor.name"
|
|
|
>
|
|
|
<template #default>
|
|
|
+ <view class="projectSearchBox" >
|
|
|
+ <u-input v-model="projectTypeName" disabledColor="#fff" disabled clearable @click="handleAction('项目类型',project_type)" placeholder="项目类型" suffixIcon="arrow-down" suffixIconStyle="color: #909399" />
|
|
|
+ <u-input v-model="projectName" placeholder="请输入项目名称" clearable prefixIcon="search" size="small" />
|
|
|
+ <!-- <u-button type="primary" @click="selectListApi">搜索</u-button> -->
|
|
|
+ <u-picker
|
|
|
+ :show="actionShow"
|
|
|
+ :columns="projectTypeList"
|
|
|
+ title="请选择项目类型"
|
|
|
+ keyName="label"
|
|
|
+ visibleItemCount="6"
|
|
|
+ :closeOnClickOverlay="true"
|
|
|
+ @close="actionShow = false"
|
|
|
+ @cancel="actionShow = false"
|
|
|
+ @confirm="selectAction"
|
|
|
+ ></u-picker>
|
|
|
+
|
|
|
+ </view>
|
|
|
<view class="menu-list m0">
|
|
|
<view class="list-cell" style="color: #666666; line-height: 25px" v-for="(base, index) in dataList" :key="index">
|
|
|
<view class="content-area-top menu-item">
|
|
@@ -171,7 +188,7 @@
|
|
|
<script setup>
|
|
|
/*----------------------------------依赖引入-----------------------------------*/
|
|
|
import { onLoad, onShow, onReady, onHide, onLaunch, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
|
|
|
-import { ref, reactive, computed, getCurrentInstance, toRefs, inject } from "vue";
|
|
|
+import { ref, reactive, computed, getCurrentInstance, toRefs, inject,watchEffect} from "vue";
|
|
|
/*----------------------------------接口引入-----------------------------------*/
|
|
|
import { projectApi } from "@/api/business/project.js";
|
|
|
import { dUserList } from "@/api/system/user.js";
|
|
@@ -182,6 +199,7 @@ import { useStores } from "@/store/modules/index";
|
|
|
/*----------------------------------公共变量-----------------------------------*/
|
|
|
const { proxy } = getCurrentInstance();
|
|
|
const useStore = useStores();
|
|
|
+const { project_type } = proxy.useDict("project_type");
|
|
|
/*----------------------------------变量声明-----------------------------------*/
|
|
|
const state = reactive({
|
|
|
loading: false,
|
|
@@ -207,9 +225,35 @@ const state = reactive({
|
|
|
content: "", //提示信息
|
|
|
},
|
|
|
eventList: {}, //数据存储
|
|
|
+ projectName:'',
|
|
|
+ projectTypeName: "", //项目类型名称
|
|
|
+ actionShow: false,
|
|
|
+ projectType: "", //项目类型
|
|
|
+ projectTypeList:[[]],
|
|
|
});
|
|
|
|
|
|
-const { tabsList, tabsCurrent, dataList, pageSize, current, total, userDate, popup, modal, eventList } = toRefs(state);
|
|
|
+const { tabsList, tabsCurrent, dataList, pageSize, current, total, userDate, popup, modal, eventList,array,index,projectTypeName,actionShow,projectType,projectTypeList,projectName} = toRefs(state);
|
|
|
+
|
|
|
+
|
|
|
+/**
|
|
|
+ * @action弹出框点击事件
|
|
|
+ */
|
|
|
+ function handleAction(value,event, index, ind) {
|
|
|
+ if (value == "项目类型") {
|
|
|
+ state.projectTypeList[0] = event
|
|
|
+ }
|
|
|
+
|
|
|
+ state.actionShow = true;
|
|
|
+}
|
|
|
+
|
|
|
+/**
|
|
|
+ * @action弹出框选择事件
|
|
|
+ */
|
|
|
+ function selectAction(e) {
|
|
|
+ state.projectType = e.value[0].value;
|
|
|
+ state.projectTypeName = e.value[0].label;
|
|
|
+ state.actionShow = false;
|
|
|
+}
|
|
|
|
|
|
/**
|
|
|
* @页面初始化
|
|
@@ -292,6 +336,8 @@ function selectListApi() {
|
|
|
projectAscription: state.tabsList[state.tabsCurrent].value,
|
|
|
pageNum: state.current,
|
|
|
pageSize: state.pageSize,
|
|
|
+ projectType: state.projectType,
|
|
|
+ projectName: state.projectName,
|
|
|
})
|
|
|
.then((requset) => {
|
|
|
state.dataList = requset.data.records;
|
|
@@ -324,6 +370,9 @@ function refresh() {
|
|
|
*/
|
|
|
function tabsClick(e) {
|
|
|
state.tabsCurrent = e.index;
|
|
|
+ state.projectName='';
|
|
|
+ state.projectType='';
|
|
|
+ state.projectTypeName=''
|
|
|
init();
|
|
|
}
|
|
|
/**
|
|
@@ -342,6 +391,10 @@ onShow(() => {
|
|
|
proxy.$settingStore.systemThemeColor([1]);
|
|
|
});
|
|
|
|
|
|
+watchEffect(() => {
|
|
|
+ selectListApi();
|
|
|
+});
|
|
|
+
|
|
|
onLoad((options) => {});
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
@@ -351,6 +404,55 @@ onLoad((options) => {});
|
|
|
}
|
|
|
</style>
|
|
|
<style lang="scss" scoped>
|
|
|
+.projectSearchBox {
|
|
|
+ margin:20px 4% ;width:92%;vertical-align:middle;
|
|
|
+ position:relative;
|
|
|
+ display:flex;
|
|
|
+ :deep(.u-input--radius, .u-input--square){
|
|
|
+ border-radius:0
|
|
|
+ }
|
|
|
+
|
|
|
+ .u-input{
|
|
|
+ display:inline-block;background:#fff;height:34px;line-height:34px;padding:0 5px;
|
|
|
+ .uni-input-input{
|
|
|
+ font-size:12px!important;
|
|
|
+ }
|
|
|
+ :deep(.u-input__content__prefix-icon){
|
|
|
+ position:absolute;
|
|
|
+ right:8px;
|
|
|
+ .uicon-search{
|
|
|
+ font-size:16px
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .u-input:first-child{
|
|
|
+ flex:2;
|
|
|
+ border-top-left-radius: 20px;
|
|
|
+ border-bottom-left-radius: 20px;
|
|
|
+ border-right:none;
|
|
|
+ }
|
|
|
+ .u-input:nth-child(2){
|
|
|
+ flex:4;
|
|
|
+ // width:70%;
|
|
|
+ border-top-right-radius: 20px;
|
|
|
+ border-bottom-right-radius: 20px;
|
|
|
+ // border-left:none
|
|
|
+ }
|
|
|
+ .u-popup{
|
|
|
+ flex:0;
|
|
|
+ }
|
|
|
+ .u-button{
|
|
|
+ width:50px;
|
|
|
+ position:absolute;
|
|
|
+ right:0px;
|
|
|
+ top:0;
|
|
|
+ height:32px;
|
|
|
+ line-height:32px;
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
.list-container {
|
|
|
.content-area {
|
|
|
&-top {
|