From 667ccbcfde975f3280093224023acf0b71c82997 Mon Sep 17 00:00:00 2001 From: dx <1242347652@qq.com> Date: Thu, 6 Mar 2025 17:15:37 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9B=E5=BB=BA=E4=BB=BB=E5=8A=A1=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/enterprises/index.ts | 4 + src/api/system/taglibrary/index.ts | 5 + src/views/task/create copy.vue | 480 +++++++++++++++++----------- src/views/task/createEnterprise.vue | 182 +++++++---- 4 files changed, 420 insertions(+), 251 deletions(-) diff --git a/src/api/enterprises/index.ts b/src/api/enterprises/index.ts index bf32a56..4ddd013 100644 --- a/src/api/enterprises/index.ts +++ b/src/api/enterprises/index.ts @@ -27,6 +27,10 @@ export const EnterprisesApi = { return await request.get({ url: `/system/enterprise/pcpage`, params }) }, + getEnterpriseByUserId: async (params: any) => { + return await request.get({ url: `/system/enterprise/getEnterpriseByUserId`, params }) + }, + // 查询企业详情 getEnterprises: async (id: any) => { return await request.get({ url: `/system/enterprise/get?id=` + id }) diff --git a/src/api/system/taglibrary/index.ts b/src/api/system/taglibrary/index.ts index 06ffa81..9c35da5 100644 --- a/src/api/system/taglibrary/index.ts +++ b/src/api/system/taglibrary/index.ts @@ -38,6 +38,11 @@ export const TagLibraryApi = { return await request.delete({ url: `/system/tag-library/delete?id=` + id }) }, + // 删除企业标签 + tagLibraryList: async (codeList: string) => { + return await request.get({ url: `/system/tag-library/list?` + codeList }) + }, + // 导出企业标签 Excel exportTagLibrary: async (params) => { return await request.download({ url: `/system/tag-library/export-excel`, params }) diff --git a/src/views/task/create copy.vue b/src/views/task/create copy.vue index e669456..fdc72ed 100644 --- a/src/views/task/create copy.vue +++ b/src/views/task/create copy.vue @@ -46,21 +46,21 @@ /> - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + -->
- +
- - + 搜索 - 重置 + 重置 + - +   新增企业
-
+
- - - + + + - + + + +
- + \ No newline at end of file + diff --git a/src/views/task/createEnterprise.vue b/src/views/task/createEnterprise.vue index 4692f7f..2d5bac2 100644 --- a/src/views/task/createEnterprise.vue +++ b/src/views/task/createEnterprise.vue @@ -11,77 +11,88 @@
- - - - + + + - + + - + + - + + + + + + + + + + + 搜索 @@ -113,13 +124,25 @@ {{ getStrDictOptions(DICT_TYPE.ENTERPRISES_AREA).find(dict => dict.value == scope.row.region)?.label || '未知区域' }} - - - - + + + + + + + + + + - +
import { DICT_TYPE, getStrDictOptions } from '@/utils/dict' import { EnterprisesApi, EnterprisesVO } from '@/api/enterprises' - - +import {TagLibraryVO, TagLibraryApi} from '@/api/system/taglibrary' +import { array } from 'vue-types' const loading = ref(true) // 列表的加载中 - const emit = defineEmits(['update:modelValue', 'success']) const props = defineProps({ modelValue: { @@ -155,7 +177,6 @@ const props = defineProps({ default: false } }) - const enterprise = ref({ list: ref(), queryParams: reactive({ @@ -169,60 +190,53 @@ const enterprise = ref({ }), total: ref(0) }) - const queryParams = ref({ enterprisesName: undefined, - type: '', + hy: undefined, + st: undefined, + wr: undefined, region: undefined, - registrationNumber: undefined, + inviterName:undefined, + // registrationNumber: undefined, id:undefined }) - - - // 控制弹窗显示 - const visible = ref(false) // 弹窗的是否展示 - // ... 其他变量保持不变 ... - // 关闭弹窗 const handleClose = () => { visible.value = false } - const selectedEnterprises = ref([]); - const handleSelectionChange = (selectedItems: EnterprisesVO[]) => { selectedEnterprises.value = selectedItems; } - //确认选择 const confirmSelect = () => { - + emit('success', selectedEnterprises.value) } - // 确认选择 const handleConfirm = () => { // TODO: 处理选择逻辑 visible.value = false - emit('success') -} +} /** * 获取企业列表 */ async function getEnterPriseList() { loading.value = true + + console.log('enterprise.value.queryParams', enterprise.value.queryParams) + try { - const data = await EnterprisesApi.getEnterprisesPage(enterprise.value.queryParams) + const data = await EnterprisesApi.getEnterpriseByUserId(enterprise.value.queryParams) enterprise.value.list = data.list enterprise.value.total = data.total } finally { loading.value = false } } - // 打开弹窗时的初始化 const open = async () => { // TODO: 初始化数据,例如获取列表等 @@ -234,17 +248,51 @@ const open = async () => { registrationNumber: undefined, id: undefined } +} +/** 搜索按钮操作 */ +const handleQuery = () => { + enterprise.value.queryParams.pageNo = 1 + getEnterPriseList() } -getEnterPriseList() +/** 重置按钮操作 */ +const resetQuery = () => { + // queryFormRef.value.resetFields() + // handleQuery() +} + +//行业 +const hyList:any = ref([]) +//生态 +const stList:any = ref([]) +//污染程度 +const wrList:any = ref([]) + +async function init() { + try { + const codeList = 'codeList=hy&codeList=st&codeList=wr' + const data = await TagLibraryApi.tagLibraryList(codeList) + + hyList.value = data[0].children + stList.value = data[1].children + wrList.value = data[2].children + + + } finally { + + } +} + +getEnterPriseList() +onMounted(()=>{ + init() +}) defineExpose({ open }) - \ No newline at end of file