From 536692a09ba95a3715450ed11d0a817a08406a2d 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: Mon, 7 Apr 2025 15:45:36 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=9B=BE=E7=89=87=E9=93=BE?=
=?UTF-8?q?=E6=8E=A5=E9=85=8D=E7=BD=AE=EF=BC=8C=E4=BD=BF=E7=94=A8config.ba?=
=?UTF-8?q?seUrl=E6=9B=BF=E6=8D=A2=E7=A1=AC=E7=BC=96=E7=A0=81=E5=9C=B0?=
=?UTF-8?q?=E5=9D=80=EF=BC=8C=E8=B0=83=E6=95=B4=E9=80=9A=E7=9F=A5=E6=A0=B7?=
=?UTF-8?q?=E5=BC=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages/owner.vue | 23 ++++++++++++++++-------
sub/invite/index.vue | 3 ++-
sub/task/locate.vue | 3 ++-
3 files changed, 20 insertions(+), 9 deletions(-)
diff --git a/pages/owner.vue b/pages/owner.vue
index 8a608e2..d967537 100644
--- a/pages/owner.vue
+++ b/pages/owner.vue
@@ -58,7 +58,6 @@
color="#fff"
>
-
@@ -169,6 +168,7 @@ import { getUserProfile } from '@/api/system/user.js'
import { PolicyApi, formatPolicyContext } from '@/api/policy/index.js'
import { JobInfoApi } from '@/api/jobinfo/index.js'
import { NoticApi } from '@/api/common/notic.js'
+import config from '@/config'
export default {
data() {
return {
@@ -204,7 +204,9 @@ export default {
getUserProfile().then(res => {
this.user = res.data
})
- const notic = await NoticApi.getListData({ readStatus: false })
+ const notic = await NoticApi.getListData({
+ readStatus: false
+ })
this.policyTotal = notic.data.total
const job = await JobInfoApi.getJobInfoPage()
this.jobCount = job.data.total
@@ -213,7 +215,7 @@ export default {
uni.requestSubscribeMessage({
//此处填写刚才申请模板的模板ID
tmplIds: [
- '2Mfm2TRKwEP4jF_wRaQQ6EfuhHO5c1CQhKiWAl-cm9g',
+ 'rU3gtJiN9OcQ3GMTxF5oMwwXVRBrIrSMfve0FLD4TIA',
'DcXH1Zo78EoG25771zxR0JcsUj8TTbG-Go3yT8YAszM',
'E8RK91cPLMios6ZHoKx6FJOV4H2kodx6yPWYp7jpLJY'
],
@@ -234,7 +236,7 @@ export default {
this.share = {
title: '邀请企业入驻', // 标题
path: `/pages/login?inviteId=${this.$store.getters.userId}`,
- imageUrl: 'https://hb.jzce.com/fx_qyrz.png'
+ imageUrl: config.baseUrl + '/fx_qyrz.png'
}
},
callPhone() {
@@ -252,13 +254,16 @@ export default {
flex-flow: row nowrap;
gap: 20rpx;
align-items: center;
+
.title {
font-size: 32rpx;
}
}
+
.owner-container {
padding: 32rpx;
height: 100%;
+
.dept {
font-size: 24rpx;
background-color: #17c653;
@@ -266,6 +271,7 @@ export default {
padding: 4rpx 16rpx;
border-radius: 240rpx;
}
+
.section {
border-radius: 16rpx;
background: #fff;
@@ -273,18 +279,21 @@ export default {
padding: 48rpx;
font-size: 28rpx;
}
+
.moblie {
color: $uni-text-color-grey;
}
+
.notice-wrapper {
- height: 45rpx;
- width: 45rpx;
+ padding: 4rpx 12rpx;
+ height: 40rpx;
background-color: #17c653;
- border-radius: 50%;
+ border-radius: 240rpx;
display: flex;
justify-content: center;
align-items: center;
}
+
.row {
display: flex;
flex-flow: row nowrap;
diff --git a/sub/invite/index.vue b/sub/invite/index.vue
index e6ad92e..a9e0c63 100644
--- a/sub/invite/index.vue
+++ b/sub/invite/index.vue
@@ -95,6 +95,7 @@