From cc34e8c5353852cfd063756cd4a1ad72c45aeb42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=88=B1=7E=E6=B5=B7=7E=E7=88=B1=E6=B5=B7=E7=88=B1?= =?UTF-8?q?=E6=B5=B7=7E=E5=8F=B3?= <1828712314@qq.com> Date: Tue, 25 Feb 2025 17:24:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E4=BC=81=E4=B8=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/enterprise/index.js | 11 +- sub/invite/addEnterprise.vue | 186 +++++++++++++++++++++++++--------- sub/invite/enterpriseTags.vue | 43 ++++---- sub/invite/prove.vue | 4 + 4 files changed, 177 insertions(+), 67 deletions(-) diff --git a/api/enterprise/index.js b/api/enterprise/index.js index 3815201..b9b77be 100644 --- a/api/enterprise/index.js +++ b/api/enterprise/index.js @@ -23,7 +23,16 @@ export function getEnterPriseList(params) { params }) } - +/** + * 校验企业名 + */ +export function vertifyName(params) { + return request({ + url: `/system/enterprise/page`, + method: 'GET', + params + }) +} /** * 获取企业详情 * @param {Object} id diff --git a/sub/invite/addEnterprise.vue b/sub/invite/addEnterprise.vue index c760ce1..64c134c 100644 --- a/sub/invite/addEnterprise.vue +++ b/sub/invite/addEnterprise.vue @@ -6,14 +6,17 @@ 企业名称 - + :clearable="false" + :autoHeight="true" + ref="nameRef" + > @@ -42,8 +45,8 @@ 企业介绍 - - {{ form.introduce }} + + {{ form.introduction }} 请输入企业介绍 @@ -85,7 +88,11 @@ - {{ Object.values(form.tags).map(tag => tag.name).join('、') }} + {{ + Object.values(form.tags) + .map(tag => tag.name) + .join('、') + }} 请选择企业标签 @@ -100,13 +107,15 @@ 企业负责人 - + :inputBorder="false" + style="text-align: center" + :value="form.contactName" + :clearable="false" + :autoHeight="true" + > @@ -117,21 +126,13 @@ 负责人电话 - @@ -203,7 +204,7 @@ - + @@ -212,34 +213,27 @@