From 054151ff7248a0cedc3903d1312fa5f15188cb53 Mon Sep 17 00:00:00 2001
From: dx <1242347652@qq.com>
Date: Tue, 25 Feb 2025 17:18:12 +0800
Subject: [PATCH 1/3] =?UTF-8?q?=E4=BC=81=E4=B8=9A=E6=9F=A5=E8=AF=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages/enterprise.vue | 737 +++++++++++++++++++++++--------------------
1 file changed, 389 insertions(+), 348 deletions(-)
diff --git a/pages/enterprise.vue b/pages/enterprise.vue
index a22ba38..725c9d5 100644
--- a/pages/enterprise.vue
+++ b/pages/enterprise.vue
@@ -1,357 +1,398 @@
-
-
-
-
- {
- querySelect(v, 'qy')
- }
- "
- />
- {
- querySelect(v, 'hy')
- }
- "
- />
- {
- querySelect(v, 'st')
- }
- "
- />
- {
- querySelect(v, 'wr')
- }
- "
- />
-
-
-
-
-
-
- {{ enterprise.enterprisesName }}
-
-
-
-
- {{ enterprise.address }}
-
-
-
-
- {{
- $dict.echoDicValue(
- dictMap.enterprises_type,
- enterprise.type
- )
- }}
-
-
- {{
- $dict.echoDicValue(
- dictMap.enterprises_area,
- enterprise.region
- )
- }}
-
-
- {{ tag }}
-
-
-
-
- 待审核
-
-
-
-
-
-
+
+
+
+
+ {
+ querySelect(v, 'region')
+ }
+ "
+ />
+ {
+ querySelect(v, 'hy')
+ }
+ "
+ />
+ {
+ querySelect(v, 'st')
+ }
+ "
+ />
+ {
+ querySelect(v, 'wr')
+ }
+ "
+ />
+
+
+
+
+
+
+ {{ enterprise.enterprisesName }}
+
+
+
+
+ {{ enterprise.address }}
+
+
+
+
+ {{
+ $dict.echoDicValue(
+ dictMap.enterprises_type,
+ enterprise.type
+ )
+ }}
+
+
+ {{
+ $dict.echoDicValue(
+ dictMap.enterprises_area,
+ enterprise.region
+ )
+ }}
+
+
+ {{ tag }}
+
+
+
+
+ 待审核
+
+
+
+
+
+
From 5822659e7df95e1ca4dc9d9d5d82e9e2c142c68d 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:50:20 +0800
Subject: [PATCH 2/3] =?UTF-8?q?=E4=BC=81=E4=B8=9A=E5=88=97=E8=A1=A8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
sub/invite/addEnterprise.vue | 29 +++++++++++++++--------------
sub/invite/index.vue | 13 +++++++++++--
sub/invite/prove.vue | 4 ++--
3 files changed, 28 insertions(+), 18 deletions(-)
diff --git a/sub/invite/addEnterprise.vue b/sub/invite/addEnterprise.vue
index 64c134c..631fe7d 100644
--- a/sub/invite/addEnterprise.vue
+++ b/sub/invite/addEnterprise.vue
@@ -111,8 +111,7 @@
type="text"
placeholder="请输入企业负责人"
:inputBorder="false"
- style="text-align: center"
- :value="form.contactName"
+ v-model="form.contactName"
:clearable="false"
:autoHeight="true"
>
@@ -222,19 +221,19 @@ export default {
data() {
return {
form: {
- enterprisesName: undefined,
- address: undefined,
- gpsLocation: undefined,
+ enterprisesName: '',
+ address: '',
+ gpsLocation: '',
introduction: '',
photo: [],
tags: {},
- environmentalContactPhone: undefined,
- contactName: undefined,
+ environmentalContactPhone: '',
+ contactName: '',
id: ''
},
dictMap: {},
prove: [],
- inviteId: undefined
+ inviteId: ''
}
},
onLoad(res) {
@@ -254,6 +253,7 @@ export default {
},
methods: {
proofName(v) {
+ if (v.detail.value == '') return
uni.showLoading({
title: '加载中'
})
@@ -323,6 +323,9 @@ export default {
* @param {Object} e
*/
async addEnterprisePhoto(e) {
+ uni.showLoading({
+ title: '上传中...'
+ })
e.file.forEach(p => {
this.form.photo.push({
...p,
@@ -345,6 +348,7 @@ export default {
})
).then(res => {
this.form.photo = res
+ uni.hideLoading()
})
},
/**
@@ -368,7 +372,6 @@ export default {
const valide = await this.verifyForm()
if (!valide) return
const data = { ...this.form }
- console.log(data)
data.region = data.tags.qy.id
// data.type = data.tags.qy.id
data.tagIds = [data.tags.hy.id, data.tags.st.id, data.tags.wr.id]
@@ -384,10 +387,11 @@ export default {
})
if (this.form.id) {
} else {
+ console.log(data)
createEnterPrise(data).then(res => {
uni.showToast({
icon: 'none',
- title: res.msg
+ title: '操作成功'
})
uni.navigateBack()
})
@@ -407,10 +411,7 @@ export default {
}
const msg = []
Object.keys(this.form).forEach(i => {
- if (!Object.hasOwn(msgMap, i)) {
- return
- }
- if (!this.form[i]) {
+ if (!this.form[i] && i != 'id') {
msg.push(msgMap[i])
}
if (typeof this.form[i] == 'Object' && this.form[i].length == 0) {
diff --git a/sub/invite/index.vue b/sub/invite/index.vue
index aabf85a..cc14c67 100644
--- a/sub/invite/index.vue
+++ b/sub/invite/index.vue
@@ -18,19 +18,28 @@