diff --git a/src/assets/styles/index.scss b/src/assets/styles/index.scss
index 985579c..a59d942 100644
--- a/src/assets/styles/index.scss
+++ b/src/assets/styles/index.scss
@@ -588,3 +588,23 @@ html, body, #app, .el-container, .el-aside, .el-main {
position: relative;
}
}
+//绘制下拉选择框远程搜索时右侧的箭头
+.el-select {
+ .el-select__wrapper {
+ .el-select__suffix::before {
+ content: "";
+ width: 6px;
+ height: 6px;
+ border: solid #a8abb2;
+ border-width: 0 0 1px 1px;
+ transform: translate(-50%, -50%) rotate(-45deg);
+ }
+ }
+
+ .is-focused {
+ .el-select__suffix::before {
+ margin-top: 10px;
+ transform: translate(-50%, -50%) rotate(-225deg) !important;
+ }
+ }
+}
diff --git a/src/components/DetailComponent/ApprovalDetail.vue b/src/components/DetailComponent/ApprovalDetail.vue
index 46da324..24b87b0 100644
--- a/src/components/DetailComponent/ApprovalDetail.vue
+++ b/src/components/DetailComponent/ApprovalDetail.vue
@@ -6,7 +6,7 @@
-
+
- {{ localFormData.serviceDescription }}
+ {{ localFormData.serviceDescription }}
- {{ localFormData.contentDescription }}
+ {{ localFormData.contentDescription }}
diff --git a/src/components/SearchFilesByTag.vue b/src/components/SearchFilesByTag.vue
index 06b96b1..748127d 100644
--- a/src/components/SearchFilesByTag.vue
+++ b/src/components/SearchFilesByTag.vue
@@ -5,7 +5,7 @@
-
+
-
@@ -60,41 +59,6 @@ import {getRequirementStatePerm} from "@/api/project-demand";
const cacheStore = useCacheStore()
const authStore = useAuthStore()
const router = useRouter()
-const collectTypeSelectRef=ref()
-const searchConfig = reactive([
- {
- label: '征集名称',
- prop: 'requirementName',
- component: 'el-input',
- props: {
- placeholder: '请输入征集名称查询',
- clearable: true,
- filterable: true,
- checkStrictly: true
- }
- },
- {
- label: '征集类型',
- prop: 'collectType',
- component: shallowRef(fvSelect),
- props: {
- placeholder: '请选择征集类型',
- clearable: true,
- filterable: true,
- cacheKey: 'collect_type'
- }
- },
- {
- label: '状态',
- prop: 'state',
- component: shallowRef(fvSelect),
- props: {
- placeholder: '请选择状态',
- clearable: true,
- cacheKey: 'demand_collection'
- }
- },
-])
const selectForm = ref({})
const tableIns = ref()
const formRef = ref()
diff --git a/src/views/project-demand/summary/add.vue b/src/views/project-demand/summary/add.vue
index cc3a0cb..fa9ec5d 100644
--- a/src/views/project-demand/summary/add.vue
+++ b/src/views/project-demand/summary/add.vue
@@ -348,9 +348,9 @@ const showSingleTable = ref(false)
const otherFileList = ref([])
const singleList = ref([])
const formData = ref({
- isSpecialFund: true,
- industryUniversityResearch: '0',
- governmentDeclaration: '0',
+ isSpecialFund: false,
+ industryUniversityResearch: '1',
+ governmentDeclaration: '1',
resultForm: []
})
diff --git a/src/views/project-demand/summary/index.vue b/src/views/project-demand/summary/index.vue
index 4ba15f5..bebc49b 100644
--- a/src/views/project-demand/summary/index.vue
+++ b/src/views/project-demand/summary/index.vue
@@ -61,6 +61,7 @@ const searchConfig = reactive([
cacheKey: 'project_type',
clearable: true,
filterable: true,
+ remote: true
},
colProps: {}
},
@@ -73,6 +74,7 @@ const searchConfig = reactive([
placeholder: '请选择项目影响',
clearable: true,
filterable: true,
+ remote: true
},
colProps: {}
},
@@ -85,6 +87,7 @@ const searchConfig = reactive([
cacheKey: 'rd_subject',
clearable: true,
filterable: true,
+ remote: true
}
},
{
@@ -107,7 +110,9 @@ const searchConfig = reactive([
props: {
placeholder: '请选择状态',
clearable: true,
- cacheKey: 'demand_summary'
+ filterable:true,
+ cacheKey: 'demand_summary',
+ remote: true
}
},
// {
diff --git a/src/views/project-management/filing/index.vue b/src/views/project-management/filing/index.vue
index 4d88703..9c5691f 100644
--- a/src/views/project-management/filing/index.vue
+++ b/src/views/project-management/filing/index.vue
@@ -54,7 +54,8 @@ const searchConfig = ref([
clearable: true,
data: [],
filterable: true,
- checkStrictly: true
+ checkStrictly: true,
+ remote:true
}
},
{
@@ -76,6 +77,7 @@ const searchConfig = ref([
cacheKey: 'project_type',
clearable: true,
filterable: true,
+ remote: true
}
},
{
@@ -87,6 +89,7 @@ const searchConfig = ref([
placeholder: '请选择项目影响',
clearable: true,
filterable: true,
+ remote: true
},
colProps: {}
},
@@ -99,6 +102,7 @@ const searchConfig = ref([
cacheKey: 'rd_subject',
clearable: true,
filterable: true,
+ remote: true
}
},
{
@@ -121,7 +125,9 @@ const searchConfig = ref([
props: {
placeholder: '请选择状态',
clearable: true,
- cacheKey: 'project_filing'
+ cacheKey: 'project_filing',
+ filterable: true,
+ remote: true
}
},
// {
diff --git a/src/views/project-management/implementation/account.vue b/src/views/project-management/implementation/account.vue
index 18d0361..3a0653c 100644
--- a/src/views/project-management/implementation/account.vue
+++ b/src/views/project-management/implementation/account.vue
@@ -324,6 +324,7 @@ const searchConfig = reactive([
clearable: true,
filterable: true,
cacheKey: 'project_cost',
+ remote: true
}
},
{
@@ -336,6 +337,7 @@ const searchConfig = reactive([
filterable: true,
checkStrictly: true,
cacheKey: 'fee_stage',
+ remote: true
}
},
{
diff --git a/src/views/project-management/implementation/attachment.vue b/src/views/project-management/implementation/attachment.vue
index 95bfc8e..2273e88 100644
--- a/src/views/project-management/implementation/attachment.vue
+++ b/src/views/project-management/implementation/attachment.vue
@@ -3,7 +3,7 @@
baseForm = e" label-position="left" label-width="left">
-
+
- {{ localFormData.serviceDescription }}
+ {{ localFormData.serviceDescription }}
- {{ localFormData.contentDescription }}
+ {{ localFormData.contentDescription }}
diff --git a/src/views/special-fund/add.vue b/src/views/special-fund/add.vue
index dccda0c..be6d2a7 100644
--- a/src/views/special-fund/add.vue
+++ b/src/views/special-fund/add.vue
@@ -322,4 +322,8 @@ onMounted(async () => {
:deep(.el-table--fit ) {
height: 300px !important;
}
+.add-block{
+
+ padding: 0 30px 30px 15px;
+}
diff --git a/src/views/special-fund/index.vue b/src/views/special-fund/index.vue
index b7890ab..c68acb8 100644
--- a/src/views/special-fund/index.vue
+++ b/src/views/special-fund/index.vue
@@ -31,7 +31,9 @@ const searchConfig = reactive([
props: {
placeholder: '请选择状态',
clearable: true,
- cacheKey: 'special_fund'
+ filterable:true,
+ cacheKey: 'special_fund',
+ remote: true
}
},
{
diff --git a/src/views/system/role/index.vue b/src/views/system/role/index.vue
index 1b055f4..4031c0b 100644
--- a/src/views/system/role/index.vue
+++ b/src/views/system/role/index.vue
@@ -82,7 +82,8 @@ const searchConfig = ref([
props: {
placeholder: '请选择',
clearable: true,
- cacheKey: 'normal_disable'
+ cacheKey: 'normal_disable',
+ remote: true
}
},
{
diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue
index 41e4949..6e50612 100644
--- a/src/views/system/user/index.vue
+++ b/src/views/system/user/index.vue
@@ -71,7 +71,8 @@ const searchConfig = ref([
props: {
placeholder: '请输入',
cacheKey: 'normal_disable',
- clearable: true
+ clearable: true,
+ remote: true
}
},
])