This commit is contained in:
Teng 2025-07-14 17:29:17 +08:00
parent 2b106e3d38
commit ce52eece17
32 changed files with 253 additions and 251 deletions

View File

@ -44,7 +44,7 @@ export function getOpenid(code){
//微信openid换个人信息
export function getMessage(openId){
return request({
url: `/h5Api/nuBizAdvisoryInfo/queryWeixinInfo?openId=${openId}`,
url: `/admin/h5Api/nuBizAdvisoryInfo/queryWeixinInfo?openId=${openId}`,
method: 'get',
})
}

View File

@ -26,27 +26,25 @@
let openid = res.data.openid
uni.setStorageSync("openid", openid)
getMessage(openid).then(res => {
uni.setStorageSync('tel', res.result.tel);
uni.setStorageSync('token', res.result.token);
uni.setStorageSync('serverUrl', res.result.serverUrl);
uni.setStorageSync('platId', res.result.platId);
uni.setStorageSync('izJg', res.result.izJg);
uni.setStorageSync('izJs', res.result.izJs);
uni.setStorageSync('izYg', res.result.izYg);
if (!res.result.tel) {
uni.redirectTo({
url: `/pages/login/xuanchuan`
});
} else {
if (uni.getStorageSync('special')) {
uni.setStorageSync('tel', res.result.tel);
uni.setStorageSync('token', res.result.token);
uni.setStorageSync('serverUrl', res.result.serverUrl);
uni.setStorageSync('platId', res.result.platId);
uni.redirectTo({
url: `/pages/login/specialloginafther`
});
} else {
uni.setStorageSync('tel', res.result.tel);
uni.setStorageSync('token', res.result.token);
uni.setStorageSync('serverUrl', res.result.serverUrl);
uni.setStorageSync('platId', res.result.platId);
uni.setStorageSync('izJg', res.result.izJg);
uni.setStorageSync('izJs', res.result.izJs);
uni.setStorageSync('izYg', res.result.izYg);
switch (res.result.advisoryType) {
case `1`:
uni.redirectTo({
@ -86,7 +84,7 @@
uni.setStorageSync('special', false);
}
superLogin();
});
</script>

View File

@ -176,6 +176,11 @@
uni.setStorageSync('tel', res.result.tel);
uni.setStorageSync('token', res.result.token);
uni.setStorageSync('serverUrl', res.result.serverUrl);
// uni.setStorageSync('platId', res.result.platId);
// uni.setStorageSync('izJg', res.result.izJg);
// uni.setStorageSync('izJs', res.result.izJs);
// uni.setStorageSync('izYg', res.result.izYg);
uni.redirectTo({
url: `/pages/login/specialloginafther`
});

View File

@ -339,34 +339,34 @@
}
/* 动画:遮罩淡入淡出 */
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.3s;
}
// .fade-enter-active,
// .fade-leave-active {
// transition: opacity 0.3s;
// }
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
// .fade-enter-from,
// .fade-leave-to {
// opacity: 0;
// }
.fade-enter-to,
.fade-leave-from {
opacity: 1;
}
// .fade-enter-to,
// .fade-leave-from {
// opacity: 1;
// }
/* 动画:弹窗上滑 */
.slide-up-enter-active,
.slide-up-leave-active {
transition: transform 0.3s;
}
// /* */
// .slide-up-enter-active,
// .slide-up-leave-active {
// transition: transform 0.3s;
// }
.slide-up-enter-from,
.slide-up-leave-to {
transform: translateY(100%);
}
// .slide-up-enter-from,
// .slide-up-leave-to {
// transform: translateY(100%);
// }
.slide-up-enter-to,
.slide-up-leave-from {
transform: translateY(0);
}
// .slide-up-enter-to,
// .slide-up-leave-from {
// transform: translateY(0);
// }
</style>

View File

@ -15,7 +15,7 @@
</view>
<view class="normal">
<text>
我们将尽快处理并反馈审核结果
{{ special?`我们将尽快处理并反馈审核结果`:`请耐心等待审核结果` }}
</text>
@ -25,11 +25,12 @@
<text>
期待与您继续携手同行
{{ special?`期待与您继续携手同行`:`期待您早日加入护理单元大家庭` }}
</text>
</view>
<!-- <view class="normal">
<!-- <view class="normal">
<text>
@ -61,9 +62,67 @@
const special = ref(false);
const jumpto = () => {
uni.redirectTo({
url: `/pages/index/index`
});
getMessage(uni.getStorageSync("openid")).then(res => {
uni.setStorageSync('tel', res.result.tel);
uni.setStorageSync('token', res.result.token);
uni.setStorageSync('serverUrl', res.result.serverUrl);
uni.setStorageSync('platId', res.result.platId);
uni.setStorageSync('izJg', res.result.izJg);
uni.setStorageSync('izJs', res.result.izJs);
uni.setStorageSync('izYg', res.result.izYg);
uni.redirectTo({
url: `/pages/index/index`
});
// if (!res.result.tel) {
// uni.redirectTo({
// url: `/pages/login/xuanchuan`
// });
// } else {
// if (uni.getStorageSync('special')) {
// uni.setStorageSync('tel', res.result.tel);
// uni.setStorageSync('token', res.result.token);
// uni.setStorageSync('serverUrl', res.result.serverUrl);
// uni.setStorageSync('platId', res.result.platId);
// uni.setStorageSync('izJg', res.result.izJg);
// uni.setStorageSync('izJs', res.result.izJs);
// uni.setStorageSync('izYg', res.result.izYg);
// uni.redirectTo({
// url: `/pages/login/specialloginafther`
// });
// } else {
// uni.setStorageSync('tel', res.result.tel);
// uni.setStorageSync('token', res.result.token);
// uni.setStorageSync('serverUrl', res.result.serverUrl);
// uni.setStorageSync('platId', res.result.platId);
// uni.setStorageSync('izJg', res.result.izJg);
// uni.setStorageSync('izJs', res.result.izJs);
// uni.setStorageSync('izYg', res.result.izYg);
// switch (res.result.advisoryType) {
// case `1`:
// uni.redirectTo({
// url: `/pages/login/threeselectone`
// });
// break;
// case 2:
// break;
// case `3`:
// uni.redirectTo({
// url: `/pages/index/index`
// });
// break;
// default:
// uni.redirectTo({
// url: `/pages/login/threeselectone`
// });
// }
// }
// }
})
}

View File

@ -185,6 +185,7 @@
op0.value = uni.getStorageSync('izJs');
op1.value = uni.getStorageSync('izYg');
op2.value = uni.getStorageSync('izJg');
})
</script>

View File

@ -141,7 +141,7 @@
// url: `/pages/login/phonebumber`
// });
uni.navigateTo({
url: `/pages/login/specialsmall`
url: `/pages/login/xuanchuan`
});
// uni.navigateTo({
// url: `/pages/addjigou/all`
@ -193,23 +193,23 @@
background-color: rgb(239, 241, 252);
position: relative;
.title {
margin-top: 180rpx;
align-items: center;
// .title {
// margin-top: 180rpx;
// align-items: center;
.title-imge {
width: 100rpx;
height: 105rpx;
margin-left: 100rpx;
}
// .title-imge {
// width: 100rpx;
// height: 105rpx;
// margin-left: 100rpx;
// }
.title-font {
font-size: 35rpx;
font-weight: 600;
margin-left: 105rpx;
margin-top: 10rpx;
}
}
// .title-font {
// font-size: 35rpx;
// font-weight: 600;
// margin-left: 105rpx;
// margin-top: 10rpx;
// }
// }
.photo-imge {
position: absolute;
@ -228,21 +228,21 @@
height: 400rpx;
}
.under-container {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 63vh;
background-color: #fff;
// border-top-left-radius: 50rpx;
// border-top-right-radius: 50rpx;
// box-shadow: 10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
// .under-container {
// position: fixed;
// left: 0;
// bottom: 0;
// width: 100%;
// height: 63vh;
// background-color: #fff;
// // border-top-left-radius: 50rpx;
// // border-top-right-radius: 50rpx;
// // box-shadow: 10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1);
// display: flex;
// flex-direction: column;
// align-items: center;
// justify-content: center;
// }
}
.font-father {
@ -276,19 +276,19 @@
}
}
.card-title {
z-index: 1;
margin-top: 600rpx;
width: 92%;
margin-left: 4%;
height: 100rpx;
border-radius: 35rpx;
background-color: #fff;
display: flex;
justify-content: center;
align-items: center;
font-size: 26rpx;
}
// .card-title {
// z-index: 1;
// margin-top: 600rpx;
// width: 92%;
// margin-left: 4%;
// height: 100rpx;
// border-radius: 35rpx;
// background-color: #fff;
// display: flex;
// justify-content: center;
// align-items: center;
// font-size: 26rpx;
// }
.card {
z-index: 1;
@ -339,20 +339,20 @@
// .right-imge
}
.blue-button {
width: 92%;
margin-left: 4%;
display: flex;
justify-content: center;
align-items: center;
height: 90rpx;
border-radius: 50rpx;
background: linear-gradient(to left, #00C9FF, #0076FF);
color: #fff;
font-size: 35rpx;
margin-bottom: 60rpx;
margin-top: 40rpx;
}
// .blue-button {
// width: 92%;
// margin-left: 4%;
// display: flex;
// justify-content: center;
// align-items: center;
// height: 90rpx;
// border-radius: 50rpx;
// background: linear-gradient(to left, #00C9FF, #0076FF);
// color: #fff;
// font-size: 35rpx;
// margin-bottom: 60rpx;
// margin-top: 40rpx;
// }
.title-back {
position: absolute;
// margin-top: 100rpx;

View File

@ -1,33 +1,35 @@
<template>
<view class="font-father">
<image class="title-img" :src="`https://www.focusnu.com/media/directive/login/introduce/allbgc.png`" />
<!-- <image class="title-img" :src="`https://www.focusnu.com/media/directive/login/introduce/allbgc.png`" /> -->
<swiper style="width: 100%;" :duration="150" :style="{height: `92vh`}" :current="which" @change="swiperchange">
<swiper-item>
<view style="width: 100%;padding-left: 75rpx;padding-right: 75rpx;">
<swiper-item style="position: relative;">
<image class="title-img" :src="`https://www.focusnu.com/media/directive/login/bgc0.jpg`" />
<view style="width: 100%;padding-left: 75rpx;padding-right: 75rpx;position: absolute;left: 0;bottom: 100rpx;">
<view class="title-name">
<view class="gray-heng"></view>
<!-- <view class="gray-heng"></view> -->
<view class="font-weight">
长者入住
</view>
<view class="gray-heng"></view>
<!-- <view class="gray-heng"></view> -->
</view>
<image class="white-imge-spec" src="https://www.focusnu.com/media/directive/login/old1.png" />
<!-- <image class="white-imge-spec" src="https://www.focusnu.com/media/directive/login/old1.png" /> -->
<view class="yuangong-font">
&#x3000;&#x3000;提供专业照料涵盖日常饮食清洁排泄等方面7*24
小时生命体征监测医护团队协同护航量身定制科学的护理流程护理员贴心床前陪伴让长者感受家的温暖与关怀
</view>
</view>
</swiper-item>
<swiper-item>
<view style="width: 100%;padding-left: 75rpx;padding-right: 75rpx;">
<swiper-item style="position: relative;">
<image class="title-img" :src="`https://www.focusnu.com/media/directive/login/bgc1.jpg`" />
<view style="width: 100%;padding-left: 75rpx;padding-right: 75rpx;position: absolute;left: 0;bottom: 100rpx;">
<view class="title-name">
<view class="gray-heng"></view>
<!-- <view class="gray-heng"></view> -->
<view class="font-weight">
员工入驻
</view>
<view class="gray-heng"></view>
<!-- <view class="gray-heng"></view> -->
</view>
<image class="white-imge-spec" src="https://www.focusnu.com/media/directive/login/yuangong1.png" />
<!-- <image class="white-imge-spec" src="https://www.focusnu.com/media/directive/login/yuangong1.png" /> -->
<view class="yuangong-font">
&#x3000;&#x3000;入驻护理单元遵循标准护理流程提供长者床旁照护用专业技能与人文关怀共同守护长者健康依托物联设备优化服务流程依托员工培训提升照护能力确保服务精准高效
@ -35,16 +37,17 @@
</view>
</swiper-item>
<swiper-item>
<view style="width: 100%;padding-left: 75rpx;padding-right: 75rpx;">
<swiper-item style="position: relative;">
<image class="title-img" :src="`https://www.focusnu.com/media/directive/login/bgc2.jpg`" />
<view style="width: 100%;padding-left: 75rpx;padding-right: 75rpx;position: absolute;left: 0;bottom: 150rpx;">
<view class="title-name">
<view class="gray-heng"></view>
<!-- <view class="gray-heng"></view> -->
<view class="font-weight">
机构加盟
</view>
<view class="gray-heng"></view>
<!-- <view class="gray-heng"></view> -->
</view>
<image class="white-imge-spec" src="https://www.focusnu.com/media/directive/login/jigou.png" />
<!-- <image class="white-imge-spec" src="https://www.focusnu.com/media/directive/login/jigou.png" /> -->
<view class="yuangong-font">
&#x3000;&#x3000;加盟护理单元坐拥成熟运营体系精简人力配置降低运营成本优质资源共享多重优势协同发力全方位拓宽利润空间助力占领银发赛道
@ -72,7 +75,7 @@
const jumpto = () => {
uni.redirectTo({
url: `/pages/login/phonebumber`
url: `/pages/login/index`
});
}
const which = ref(0);
@ -87,7 +90,7 @@
.font-father {
width: 100%;
min-height: 100vh;
// padding: 0 75rpx;
background-color: #f4f7f9;
display: flex;
align-items: center;
flex-direction: column;
@ -98,7 +101,7 @@
top: 0;
left: 0;
width: 100%;
height: 100vh;
height: 92vh;
z-index: -1;
}
@ -119,7 +122,8 @@
.font-weight {
font-weight: 600;
font-size: 32rpx;
font-size: 35rpx;
margin: 0 auto;
}
}
@ -169,11 +173,13 @@
.yuangong-font {
font-size: 32rpx;
margin-top: 50rpx;
margin-top: 30rpx;
line-height: 50rpx;
}
.bottom-button {
// margin-left: 5%;
margin-top: -20rpx;
width: 80%;
height: 100rpx;
border-radius: 50rpx;

View File

@ -1,5 +1,5 @@
// 全局请求封装
export const base_url = 'https://www.focusnu.com/nursingunit'
export const base_url = 'https://www.focusnu.com/opeapi'
// 请求超出时间
const timeout = 5000

View File

@ -1 +1 @@
{"version":3,"file":"loginApi.js","sources":["api/loginApi.js"],"sourcesContent":["// src/composables/useWeChatAuth.js\nimport { ref } from 'vue';\nimport request from '@/request/index.js';\r\n\r\n//滑块获取验证码\r\nexport function getHkCode(data){\r\n return request({\r\n url: `/sys/getHkCode`,\r\n\t\tmethod: 'post',\r\n data,\r\n })\r\n}\r\n//发送验证码\r\nexport function smsCode(data){\r\n return request({\r\n url: `/sys/smsCode`,\r\n\t\tmethod: 'post',\r\n data,\r\n })\r\n}\r\n//验证码是否正确\r\nexport function checkPhoneCode(data){\r\n return request({\r\n url: `/sys/checkPhoneCode`,\r\n\t\tmethod: 'post',\r\n data,\r\n })\r\n}\r\n\r\n//不知道干啥的\r\nexport function getList(){\r\n return request({\r\n url: `/NuBizAdvisoryInfo/nuBizAdvisoryInfo/list`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n//微信code换openid\r\nexport function getOpenid(code){\r\n return request({\r\n url: `/weixin/wechat/callback?code=${code}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n//微信openid换个人信息\r\nexport function getMessage(openId){\r\n return request({\r\n url: `/h5Api/nuBizAdvisoryInfo/queryWeixinInfo?openId=${openId}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n"],"names":["request"],"mappings":";;;AAKO,SAAS,UAAU,MAAK;AAC3B,SAAOA,sBAAQ;AAAA,IACX,KAAK;AAAA,IACX,QAAQ;AAAA,IACF;AAAA,EACR,CAAK;AACL;AAEO,SAAS,QAAQ,MAAK;AACzB,SAAOA,sBAAQ;AAAA,IACX,KAAK;AAAA,IACX,QAAQ;AAAA,IACF;AAAA,EACR,CAAK;AACL;AAEO,SAAS,eAAe,MAAK;AAChC,SAAOA,sBAAQ;AAAA,IACX,KAAK;AAAA,IACX,QAAQ;AAAA,IACF;AAAA,EACR,CAAK;AACL;AAUO,SAAS,UAAU,MAAK;AAC3B,SAAOA,sBAAQ;AAAA,IACX,KAAK,gCAAgC,IAAI;AAAA,IAC/C,QAAQ;AAAA,EACV,CAAK;AACL;AAEO,SAAS,WAAW,QAAO;AAC9B,SAAOA,sBAAQ;AAAA,IACX,KAAK,mDAAmD,MAAM;AAAA,IACpE,QAAQ;AAAA,EACV,CAAK;AACL;;;;;;"}
{"version":3,"file":"loginApi.js","sources":["api/loginApi.js"],"sourcesContent":["// src/composables/useWeChatAuth.js\nimport { ref } from 'vue';\nimport request from '@/request/index.js';\r\n\r\n//滑块获取验证码\r\nexport function getHkCode(data){\r\n return request({\r\n url: `/sys/getHkCode`,\r\n\t\tmethod: 'post',\r\n data,\r\n })\r\n}\r\n//发送验证码\r\nexport function smsCode(data){\r\n return request({\r\n url: `/sys/smsCode`,\r\n\t\tmethod: 'post',\r\n data,\r\n })\r\n}\r\n//验证码是否正确\r\nexport function checkPhoneCode(data){\r\n return request({\r\n url: `/sys/checkPhoneCode`,\r\n\t\tmethod: 'post',\r\n data,\r\n })\r\n}\r\n\r\n//不知道干啥的\r\nexport function getList(){\r\n return request({\r\n url: `/NuBizAdvisoryInfo/nuBizAdvisoryInfo/list`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n//微信code换openid\r\nexport function getOpenid(code){\r\n return request({\r\n url: `/weixin/wechat/callback?code=${code}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n//微信openid换个人信息\r\nexport function getMessage(openId){\r\n return request({\r\n url: `/admin/h5Api/nuBizAdvisoryInfo/queryWeixinInfo?openId=${openId}`,\r\n\t\tmethod: 'get',\r\n })\r\n}\r\n"],"names":["request"],"mappings":";;;AAKO,SAAS,UAAU,MAAK;AAC3B,SAAOA,sBAAQ;AAAA,IACX,KAAK;AAAA,IACX,QAAQ;AAAA,IACF;AAAA,EACR,CAAK;AACL;AAEO,SAAS,QAAQ,MAAK;AACzB,SAAOA,sBAAQ;AAAA,IACX,KAAK;AAAA,IACX,QAAQ;AAAA,IACF;AAAA,EACR,CAAK;AACL;AAEO,SAAS,eAAe,MAAK;AAChC,SAAOA,sBAAQ;AAAA,IACX,KAAK;AAAA,IACX,QAAQ;AAAA,IACF;AAAA,EACR,CAAK;AACL;AAUO,SAAS,UAAU,MAAK;AAC3B,SAAOA,sBAAQ;AAAA,IACX,KAAK,gCAAgC,IAAI;AAAA,IAC/C,QAAQ;AAAA,EACV,CAAK;AACL;AAEO,SAAS,WAAW,QAAO;AAC9B,SAAOA,sBAAQ;AAAA,IACX,KAAK,yDAAyD,MAAM;AAAA,IAC1E,QAAQ;AAAA,EACV,CAAK;AACL;;;;;;"}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
{"version":3,"file":"index.js","sources":["request/index.js"],"sourcesContent":["// 全局请求封装\nexport const base_url = 'https://www.focusnu.com/nursingunit'\n// 请求超出时间\nconst timeout = 5000\n \n// 需要修改token和根据实际修改请求头\nexport default (params) => {\n\tlet url = params.url;\n\tlet method = params.method || \"get\";\n\tlet data = params.data || {};\n\tlet header = {\n\t\t'X-Access-Token': uni.getStorageSync('token') || '',\n\t\t'Content-Type': 'application/json;charset=UTF-8',\n\t\t'Authorization': 'Basic c2FiZXI6c2FiZXJfc2VjcmV0',\r\n\t\t\n\t\t...params.header\n\t}\n\treturn new Promise((resolve, reject) => {\n\t\tuni.request({\n\t\t\turl: base_url + url,\n\t\t\tmethod: method,\n\t\t\theader: header,\n\t\t\tdata: data,\n timeout,\n\t\t\tsuccess(response) {\n\t\t\t\tconst res = response\n\t\t\t\t// 根据返回的状态码做出对应的操作\r\n\t\t\t\n\t\t\t\tif (res.statusCode == 200) {\n\t\t\t\t\tresolve(res.data);\n\t\t\t\t} else {\n\t\t\t\t\tuni.clearStorageSync()\n\t\t\t\t\tswitch (res.statusCode) {\n\t\t\t\t\t\tcase 401:\n\t\t\t\t\t\t\tuni.showModal({\n\t\t\t\t\t\t\t\ttitle: \"提示\",\n\t\t\t\t\t\t\t\tcontent: \"请登录\",\n\t\t\t\t\t\t\t\tshowCancel: false,\n\t\t\t\t\t\t\t\tsuccess() {\n\t\t\t\t\t\t\t\t\tsetTimeout(() => {\n\t\t\t\t\t\t\t\t\t\tuni.navigateTo({\n\t\t\t\t\t\t\t\t\t\t\turl: \"/pages/login/callback\",\n\t\t\t\t\t\t\t\t\t\t})\n\t\t\t\t\t\t\t\t\t}, 1000);\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase 404:\n\t\t\t\t\t\t\tuni.showToast({\n\t\t\t\t\t\t\t\ttitle: '请求地址不存在...',\n\t\t\t\t\t\t\t\tduration: 2000,\n\t\t\t\t\t\t\t})\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\tuni.showToast({\n\t\t\t\t\t\t\t\ttitle: '请重试...',\n\t\t\t\t\t\t\t\tduration: 2000,\n\t\t\t\t\t\t\t})\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\tfail(err) {\n\t\t\t\tif (err.errMsg.indexOf('request:fail') !== -1) {\n\t\t\t\t\tuni.showToast({\n\t\t\t\t\t\ttitle: '网络异常',\n\t\t\t\t\t\ticon: \"error\",\n\t\t\t\t\t\tduration: 2000\n\t\t\t\t\t})\n\t\t\t\t} else {\n\t\t\t\t\tuni.showToast({\n\t\t\t\t\t\ttitle: '未知异常',\n\t\t\t\t\t\tduration: 2000\n\t\t\t\t\t})\n\t\t\t\t}\n\t\t\t\treject(err);\n \n\t\t\t}\n\t\t});\n\t}).catch(() => {});\n};"],"names":["uni"],"mappings":";;AACY,MAAC,WAAW;AAExB,MAAM,UAAU;AAGhB,MAAe,UAAA,CAAC,WAAW;AAC1B,MAAI,MAAM,OAAO;AACjB,MAAI,SAAS,OAAO,UAAU;AAC9B,MAAI,OAAO,OAAO,QAAQ;AAC1B,MAAI,SAAS;AAAA,IACZ,kBAAkBA,cAAG,MAAC,eAAe,OAAO,KAAK;AAAA,IACjD,gBAAgB;AAAA,IAChB,iBAAiB;AAAA,IAEjB,GAAG,OAAO;AAAA,EACV;AACD,SAAO,IAAI,QAAQ,CAAC,SAAS,WAAW;AACvCA,kBAAAA,MAAI,QAAQ;AAAA,MACX,KAAK,WAAW;AAAA,MAChB;AAAA,MACA;AAAA,MACA;AAAA,MACS;AAAA,MACT,QAAQ,UAAU;AACjB,cAAM,MAAM;AAGZ,YAAI,IAAI,cAAc,KAAK;AAC1B,kBAAQ,IAAI,IAAI;AAAA,QACrB,OAAW;AACNA,wBAAAA,MAAI,iBAAkB;AACtB,kBAAQ,IAAI,YAAU;AAAA,YACrB,KAAK;AACJA,4BAAAA,MAAI,UAAU;AAAA,gBACb,OAAO;AAAA,gBACP,SAAS;AAAA,gBACT,YAAY;AAAA,gBACZ,UAAU;AACT,6BAAW,MAAM;AAChBA,kCAAAA,MAAI,WAAW;AAAA,sBACd,KAAK;AAAA,oBAChB,CAAW;AAAA,kBACD,GAAE,GAAI;AAAA,gBACP;AAAA,cACT,CAAQ;AACD;AAAA,YACD,KAAK;AACJA,4BAAAA,MAAI,UAAU;AAAA,gBACb,OAAO;AAAA,gBACP,UAAU;AAAA,cAClB,CAAQ;AACD;AAAA,YACD;AACCA,4BAAAA,MAAI,UAAU;AAAA,gBACb,OAAO;AAAA,gBACP,UAAU;AAAA,cAClB,CAAQ;AACD;AAAA,UACD;AAAA,QACD;AAAA,MACD;AAAA,MACD,KAAK,KAAK;AACT,YAAI,IAAI,OAAO,QAAQ,cAAc,MAAM,IAAI;AAC9CA,wBAAAA,MAAI,UAAU;AAAA,YACb,OAAO;AAAA,YACP,MAAM;AAAA,YACN,UAAU;AAAA,UAChB,CAAM;AAAA,QACN,OAAW;AACNA,wBAAAA,MAAI,UAAU;AAAA,YACb,OAAO;AAAA,YACP,UAAU;AAAA,UAChB,CAAM;AAAA,QACD;AACD,eAAO,GAAG;AAAA,MAEV;AAAA,IACJ,CAAG;AAAA,EACH,CAAE,EAAE,MAAM,MAAM;AAAA,EAAA,CAAE;AAClB;;;"}
{"version":3,"file":"index.js","sources":["request/index.js"],"sourcesContent":["// 全局请求封装\nexport const base_url = 'https://www.focusnu.com/opeapi'\n// 请求超出时间\nconst timeout = 5000\n \n// 需要修改token和根据实际修改请求头\nexport default (params) => {\n\tlet url = params.url;\n\tlet method = params.method || \"get\";\n\tlet data = params.data || {};\n\tlet header = {\n\t\t'X-Access-Token': uni.getStorageSync('token') || '',\n\t\t'Content-Type': 'application/json;charset=UTF-8',\n\t\t'Authorization': 'Basic c2FiZXI6c2FiZXJfc2VjcmV0',\r\n\t\t\n\t\t...params.header\n\t}\n\treturn new Promise((resolve, reject) => {\n\t\tuni.request({\n\t\t\turl: base_url + url,\n\t\t\tmethod: method,\n\t\t\theader: header,\n\t\t\tdata: data,\n timeout,\n\t\t\tsuccess(response) {\n\t\t\t\tconst res = response\n\t\t\t\t// 根据返回的状态码做出对应的操作\r\n\t\t\t\n\t\t\t\tif (res.statusCode == 200) {\n\t\t\t\t\tresolve(res.data);\n\t\t\t\t} else {\n\t\t\t\t\tuni.clearStorageSync()\n\t\t\t\t\tswitch (res.statusCode) {\n\t\t\t\t\t\tcase 401:\n\t\t\t\t\t\t\tuni.showModal({\n\t\t\t\t\t\t\t\ttitle: \"提示\",\n\t\t\t\t\t\t\t\tcontent: \"请登录\",\n\t\t\t\t\t\t\t\tshowCancel: false,\n\t\t\t\t\t\t\t\tsuccess() {\n\t\t\t\t\t\t\t\t\tsetTimeout(() => {\n\t\t\t\t\t\t\t\t\t\tuni.navigateTo({\n\t\t\t\t\t\t\t\t\t\t\turl: \"/pages/login/callback\",\n\t\t\t\t\t\t\t\t\t\t})\n\t\t\t\t\t\t\t\t\t}, 1000);\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase 404:\n\t\t\t\t\t\t\tuni.showToast({\n\t\t\t\t\t\t\t\ttitle: '请求地址不存在...',\n\t\t\t\t\t\t\t\tduration: 2000,\n\t\t\t\t\t\t\t})\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\tuni.showToast({\n\t\t\t\t\t\t\t\ttitle: '请重试...',\n\t\t\t\t\t\t\t\tduration: 2000,\n\t\t\t\t\t\t\t})\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\tfail(err) {\n\t\t\t\tif (err.errMsg.indexOf('request:fail') !== -1) {\n\t\t\t\t\tuni.showToast({\n\t\t\t\t\t\ttitle: '网络异常',\n\t\t\t\t\t\ticon: \"error\",\n\t\t\t\t\t\tduration: 2000\n\t\t\t\t\t})\n\t\t\t\t} else {\n\t\t\t\t\tuni.showToast({\n\t\t\t\t\t\ttitle: '未知异常',\n\t\t\t\t\t\tduration: 2000\n\t\t\t\t\t})\n\t\t\t\t}\n\t\t\t\treject(err);\n \n\t\t\t}\n\t\t});\n\t}).catch(() => {});\n};"],"names":["uni"],"mappings":";;AACY,MAAC,WAAW;AAExB,MAAM,UAAU;AAGhB,MAAe,UAAA,CAAC,WAAW;AAC1B,MAAI,MAAM,OAAO;AACjB,MAAI,SAAS,OAAO,UAAU;AAC9B,MAAI,OAAO,OAAO,QAAQ;AAC1B,MAAI,SAAS;AAAA,IACZ,kBAAkBA,cAAG,MAAC,eAAe,OAAO,KAAK;AAAA,IACjD,gBAAgB;AAAA,IAChB,iBAAiB;AAAA,IAEjB,GAAG,OAAO;AAAA,EACV;AACD,SAAO,IAAI,QAAQ,CAAC,SAAS,WAAW;AACvCA,kBAAAA,MAAI,QAAQ;AAAA,MACX,KAAK,WAAW;AAAA,MAChB;AAAA,MACA;AAAA,MACA;AAAA,MACS;AAAA,MACT,QAAQ,UAAU;AACjB,cAAM,MAAM;AAGZ,YAAI,IAAI,cAAc,KAAK;AAC1B,kBAAQ,IAAI,IAAI;AAAA,QACrB,OAAW;AACNA,wBAAAA,MAAI,iBAAkB;AACtB,kBAAQ,IAAI,YAAU;AAAA,YACrB,KAAK;AACJA,4BAAAA,MAAI,UAAU;AAAA,gBACb,OAAO;AAAA,gBACP,SAAS;AAAA,gBACT,YAAY;AAAA,gBACZ,UAAU;AACT,6BAAW,MAAM;AAChBA,kCAAAA,MAAI,WAAW;AAAA,sBACd,KAAK;AAAA,oBAChB,CAAW;AAAA,kBACD,GAAE,GAAI;AAAA,gBACP;AAAA,cACT,CAAQ;AACD;AAAA,YACD,KAAK;AACJA,4BAAAA,MAAI,UAAU;AAAA,gBACb,OAAO;AAAA,gBACP,UAAU;AAAA,cAClB,CAAQ;AACD;AAAA,YACD;AACCA,4BAAAA,MAAI,UAAU;AAAA,gBACb,OAAO;AAAA,gBACP,UAAU;AAAA,cAClB,CAAQ;AACD;AAAA,UACD;AAAA,QACD;AAAA,MACD;AAAA,MACD,KAAK,KAAK;AACT,YAAI,IAAI,OAAO,QAAQ,cAAc,MAAM,IAAI;AAC9CA,wBAAAA,MAAI,UAAU;AAAA,YACb,OAAO;AAAA,YACP,MAAM;AAAA,YACN,UAAU;AAAA,UAChB,CAAM;AAAA,QACN,OAAW;AACNA,wBAAAA,MAAI,UAAU;AAAA,YACb,OAAO;AAAA,YACP,UAAU;AAAA,UAChB,CAAM;AAAA,QACD;AACD,eAAO,GAAG;AAAA,MAEV;AAAA,IACJ,CAAG;AAAA,EACH,CAAE,EAAE,MAAM,MAAM;AAAA,EAAA,CAAE;AAClB;;;"}

View File

@ -30,7 +30,7 @@ function getOpenid(code) {
}
function getMessage(openId) {
return request_index.request({
url: `/h5Api/nuBizAdvisoryInfo/queryWeixinInfo?openId=${openId}`,
url: `/admin/h5Api/nuBizAdvisoryInfo/queryWeixinInfo?openId=${openId}`,
method: "get"
});
}

View File

@ -7037,7 +7037,7 @@ function isConsoleWritable() {
function initRuntimeSocketService() {
const hosts = "192.168.2.27,127.0.0.1";
const port = "8090";
const id = "mp-weixin_EWITIb";
const id = "mp-weixin_jPVgRG";
const lazy = typeof swan !== "undefined";
let restoreError = lazy ? () => {
} : initOnError();

View File

@ -12,27 +12,23 @@ const _sfc_main = {
let openid = res2.data.openid;
common_vendor.index.setStorageSync("openid", openid);
api_loginApi.getMessage(openid).then((res3) => {
common_vendor.index.setStorageSync("tel", res3.result.tel);
common_vendor.index.setStorageSync("token", res3.result.token);
common_vendor.index.setStorageSync("serverUrl", res3.result.serverUrl);
common_vendor.index.setStorageSync("platId", res3.result.platId);
common_vendor.index.setStorageSync("izJg", res3.result.izJg);
common_vendor.index.setStorageSync("izJs", res3.result.izJs);
common_vendor.index.setStorageSync("izYg", res3.result.izYg);
if (!res3.result.tel) {
common_vendor.index.redirectTo({
url: `/pages/login/xuanchuan`
});
} else {
if (common_vendor.index.getStorageSync("special")) {
common_vendor.index.setStorageSync("tel", res3.result.tel);
common_vendor.index.setStorageSync("token", res3.result.token);
common_vendor.index.setStorageSync("serverUrl", res3.result.serverUrl);
common_vendor.index.setStorageSync("platId", res3.result.platId);
common_vendor.index.redirectTo({
url: `/pages/login/specialloginafther`
});
} else {
common_vendor.index.setStorageSync("tel", res3.result.tel);
common_vendor.index.setStorageSync("token", res3.result.token);
common_vendor.index.setStorageSync("serverUrl", res3.result.serverUrl);
common_vendor.index.setStorageSync("platId", res3.result.platId);
common_vendor.index.setStorageSync("izJg", res3.result.izJg);
common_vendor.index.setStorageSync("izJs", res3.result.izJs);
common_vendor.index.setStorageSync("izYg", res3.result.izYg);
switch (res3.result.advisoryType) {
case `1`:
common_vendor.index.redirectTo({
@ -57,7 +53,7 @@ const _sfc_main = {
});
},
fail(err) {
common_vendor.index.__f__("error", "at pages/login/callback.vue:78", "获取 code 失败:", err);
common_vendor.index.__f__("error", "at pages/login/callback.vue:76", "获取 code 失败:", err);
}
});
};

View File

@ -62,7 +62,7 @@ const _sfc_main = {
});
}
} else {
common_vendor.index.__f__("log", "at pages/login/code.vue:216", "验证码未输入完整");
common_vendor.index.__f__("log", "at pages/login/code.vue:221", "验证码未输入完整");
}
};
const getcode = () => {

View File

@ -177,30 +177,4 @@
align-items: center;
}
/* 动画:遮罩淡入淡出 */
.fade-enter-active.data-v-d08ef7d4,
.fade-leave-active.data-v-d08ef7d4 {
transition: opacity 0.3s;
}
.fade-enter-from.data-v-d08ef7d4,
.fade-leave-to.data-v-d08ef7d4 {
opacity: 0;
}
.fade-enter-to.data-v-d08ef7d4,
.fade-leave-from.data-v-d08ef7d4 {
opacity: 1;
}
/* 动画:弹窗上滑 */
.slide-up-enter-active.data-v-d08ef7d4,
.slide-up-leave-active.data-v-d08ef7d4 {
transition: transform 0.3s;
}
.slide-up-enter-from.data-v-d08ef7d4,
.slide-up-leave-to.data-v-d08ef7d4 {
transform: translateY(100%);
}
.slide-up-enter-to.data-v-d08ef7d4,
.slide-up-leave-from.data-v-d08ef7d4 {
transform: translateY(0);
}
/* 动画:遮罩淡入淡出 */

View File

@ -1,12 +1,22 @@
"use strict";
const common_vendor = require("../../common/vendor.js");
const api_loginApi = require("../../api/loginApi.js");
const _sfc_main = {
__name: "specialsmall",
setup(__props) {
const special = common_vendor.ref(false);
const jumpto = () => {
common_vendor.index.redirectTo({
url: `/pages/index/index`
api_loginApi.getMessage(common_vendor.index.getStorageSync("openid")).then((res) => {
common_vendor.index.setStorageSync("tel", res.result.tel);
common_vendor.index.setStorageSync("token", res.result.token);
common_vendor.index.setStorageSync("serverUrl", res.result.serverUrl);
common_vendor.index.setStorageSync("platId", res.result.platId);
common_vendor.index.setStorageSync("izJg", res.result.izJg);
common_vendor.index.setStorageSync("izJs", res.result.izJs);
common_vendor.index.setStorageSync("izYg", res.result.izYg);
common_vendor.index.redirectTo({
url: `/pages/index/index`
});
});
};
common_vendor.onLoad((options) => {
@ -19,7 +29,9 @@ const _sfc_main = {
a: `https://www.focusnu.com/media/directive/login/introduce/allbgc.png`,
b: `https://www.focusnu.com/media/directive/index/bluephoto.png`,
c: common_vendor.t(special.value ? `变更信息` : `加盟`),
d: common_vendor.o(jumpto)
d: common_vendor.t(special.value ? `我们将尽快处理并反馈审核结果` : `请耐心等待审核结果`),
e: common_vendor.t(special.value ? `期待与您继续携手同行` : `期待您早日加入护理单元大家庭`),
f: common_vendor.o(jumpto)
};
};
}

View File

@ -1 +1 @@
<view class="font-father data-v-c9ad9bed"><view class="fixed data-v-c9ad9bed"><image class="title-img data-v-c9ad9bed" src="{{a}}"/><image class="title-photo data-v-c9ad9bed" src="{{b}}"/><view class="small-title data-v-c9ad9bed"> 尊敬的用户,您的机构{{c}}</view><view class="font-title data-v-c9ad9bed"> 申请已成功提交 </view><view class="normal data-v-c9ad9bed"><text class="data-v-c9ad9bed"> 我们将尽快处理并反馈审核结果 </text></view><view class="normal data-v-c9ad9bed"><text class="data-v-c9ad9bed"> 期待与您继续携手同行 </text></view></view><view class="bottom-button data-v-c9ad9bed" bindtap="{{d}}"> 我的机构 </view></view>
<view class="font-father data-v-c9ad9bed"><view class="fixed data-v-c9ad9bed"><image class="title-img data-v-c9ad9bed" src="{{a}}"/><image class="title-photo data-v-c9ad9bed" src="{{b}}"/><view class="small-title data-v-c9ad9bed"> 尊敬的用户,您的机构{{c}}</view><view class="font-title data-v-c9ad9bed"> 申请已成功提交 </view><view class="normal data-v-c9ad9bed"><text class="data-v-c9ad9bed">{{d}} </text></view><view class="normal data-v-c9ad9bed"><text class="data-v-c9ad9bed">{{e}} </text></view></view><view class="bottom-button data-v-c9ad9bed" bindtap="{{f}}"> 我的机构 </view></view>

View File

@ -9,7 +9,7 @@ const _sfc_main = {
};
const ceshi = () => {
common_vendor.index.navigateTo({
url: `/pages/login/specialsmall`
url: `/pages/login/xuanchuan`
});
};
const jumpToindex = () => {

View File

@ -31,21 +31,6 @@
background-color: #eff1fc;
position: relative;
}
.login-container .title.data-v-f4bd7fdd {
margin-top: 180rpx;
align-items: center;
}
.login-container .title .title-imge.data-v-f4bd7fdd {
width: 100rpx;
height: 105rpx;
margin-left: 100rpx;
}
.login-container .title .title-font.data-v-f4bd7fdd {
font-size: 35rpx;
font-weight: 600;
margin-left: 105rpx;
margin-top: 10rpx;
}
.login-container .photo-imge.data-v-f4bd7fdd {
position: absolute;
top: 0rpx;
@ -60,18 +45,6 @@
width: 400rpx;
height: 400rpx;
}
.login-container .under-container.data-v-f4bd7fdd {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 63vh;
background-color: #fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.font-father.data-v-f4bd7fdd {
width: 100%;
color: #666666;
@ -99,19 +72,6 @@
font-size: 33rpx;
margin-bottom: 30rpx;
}
.card-title.data-v-f4bd7fdd {
z-index: 1;
margin-top: 600rpx;
width: 92%;
margin-left: 4%;
height: 100rpx;
border-radius: 35rpx;
background-color: #fff;
display: flex;
justify-content: center;
align-items: center;
font-size: 26rpx;
}
.card.data-v-f4bd7fdd {
z-index: 1;
margin-top: 30rpx;
@ -150,20 +110,6 @@
margin-top: 50rpx;
margin-left: 5rpx;
}
.blue-button.data-v-f4bd7fdd {
width: 92%;
margin-left: 4%;
display: flex;
justify-content: center;
align-items: center;
height: 90rpx;
border-radius: 50rpx;
background: linear-gradient(to left, #00C9FF, #0076FF);
color: #fff;
font-size: 35rpx;
margin-bottom: 60rpx;
margin-top: 40rpx;
}
.title-back.data-v-f4bd7fdd {
position: absolute;
top: 100rpx;

View File

@ -5,7 +5,7 @@ const _sfc_main = {
setup(__props) {
const jumpto = () => {
common_vendor.index.redirectTo({
url: `/pages/login/phonebumber`
url: `/pages/login/index`
});
};
const which = common_vendor.ref(0);
@ -14,22 +14,24 @@ const _sfc_main = {
};
return (_ctx, _cache) => {
return common_vendor.e({
a: `https://www.focusnu.com/media/directive/login/introduce/allbgc.png`,
b: `92vh`,
c: which.value,
d: common_vendor.o(swiperchange),
e: which.value != 2
a: `https://www.focusnu.com/media/directive/login/bgc0.jpg`,
b: `https://www.focusnu.com/media/directive/login/bgc1.jpg`,
c: `https://www.focusnu.com/media/directive/login/bgc2.jpg`,
d: `92vh`,
e: which.value,
f: common_vendor.o(swiperchange),
g: which.value != 2
}, which.value != 2 ? {
f: common_vendor.f([1, 2, 3], (item, index, i0) => {
h: common_vendor.f([1, 2, 3], (item, index, i0) => {
return {
a: index,
b: common_vendor.n(which.value === index ? `dian-target` : `dian`)
};
})
} : {}, {
g: which.value == 2
i: which.value == 2
}, which.value == 2 ? {
h: common_vendor.o(jumpto)
j: common_vendor.o(jumpto)
} : {});
};
}

View File

@ -1 +1 @@
<view class="font-father data-v-5699789f"><image class="title-img data-v-5699789f" src="{{a}}"/><swiper class="data-v-5699789f" duration="{{150}}" style="{{'width:100%' + ';' + ('height:' + b)}}" current="{{c}}" bindchange="{{d}}"><swiper-item class="data-v-5699789f"><view class="data-v-5699789f" style="width:100%;padding-left:75rpx;padding-right:75rpx"><view class="title-name data-v-5699789f"><view class="gray-heng data-v-5699789f"></view><view class="font-weight data-v-5699789f"> 长者入住 </view><view class="gray-heng data-v-5699789f"></view></view><image class="white-imge-spec data-v-5699789f" src="https://www.focusnu.com/media/directive/login/old1.png"/><view class="yuangong-font data-v-5699789f">   提供专业照料涵盖日常、饮食、清洁、排泄等方面7*24 小时生命体征监测,医护团队协同护航,量身定制科学的护理流程,护理员贴心床前陪伴,让长者感受家的温暖与关怀。 </view></view></swiper-item><swiper-item class="data-v-5699789f"><view class="data-v-5699789f" style="width:100%;padding-left:75rpx;padding-right:75rpx"><view class="title-name data-v-5699789f"><view class="gray-heng data-v-5699789f"></view><view class="font-weight data-v-5699789f"> 员工入驻 </view><view class="gray-heng data-v-5699789f"></view></view><image class="white-imge-spec data-v-5699789f" src="https://www.focusnu.com/media/directive/login/yuangong1.png"/><view class="yuangong-font data-v-5699789f">   入驻护理单元,遵循标准护理流程,提供长者床旁照护,用专业技能与人文关怀共同守护长者健康。依托物联设备优化服务流程,依托员工培训提升照护能力,确保服务精准高效。 </view></view></swiper-item><swiper-item class="data-v-5699789f"><view class="data-v-5699789f" style="width:100%;padding-left:75rpx;padding-right:75rpx"><view class="title-name data-v-5699789f"><view class="gray-heng data-v-5699789f"></view><view class="font-weight data-v-5699789f"> 机构加盟 </view><view class="gray-heng data-v-5699789f"></view></view><image class="white-imge-spec data-v-5699789f" src="https://www.focusnu.com/media/directive/login/jigou.png"/><view class="yuangong-font data-v-5699789f">   加盟护理单元,坐拥成熟运营体系,精简人力配置,降低运营成本。优质资源共享,多重优势协同发力,全方位拓宽利润空间,助力占领银发赛道。 </view></view></swiper-item></swiper><view wx:if="{{e}}" class="dian-father data-v-5699789f"><view wx:for="{{f}}" wx:for-item="item" wx:key="a" class="{{['data-v-5699789f', item.b]}}"></view></view><view wx:if="{{g}}" class="bottom-button data-v-5699789f" bindtap="{{h}}"> 前往注册 </view></view>
<view class="font-father data-v-5699789f"><swiper class="data-v-5699789f" duration="{{150}}" style="{{'width:100%' + ';' + ('height:' + d)}}" current="{{e}}" bindchange="{{f}}"><swiper-item class="data-v-5699789f" style="position:relative"><image class="title-img data-v-5699789f" src="{{a}}"/><view class="data-v-5699789f" style="width:100%;padding-left:75rpx;padding-right:75rpx;position:absolute;left:0;bottom:100rpx"><view class="title-name data-v-5699789f"><view class="font-weight data-v-5699789f"> 长者入住 </view></view><view class="yuangong-font data-v-5699789f">   提供专业照料涵盖日常、饮食、清洁、排泄等方面7*24 小时生命体征监测,医护团队协同护航,量身定制科学的护理流程,护理员贴心床前陪伴,让长者感受家的温暖与关怀。 </view></view></swiper-item><swiper-item class="data-v-5699789f" style="position:relative"><image class="title-img data-v-5699789f" src="{{b}}"/><view class="data-v-5699789f" style="width:100%;padding-left:75rpx;padding-right:75rpx;position:absolute;left:0;bottom:100rpx"><view class="title-name data-v-5699789f"><view class="font-weight data-v-5699789f"> 员工入驻 </view></view><view class="yuangong-font data-v-5699789f">   入驻护理单元,遵循标准护理流程,提供长者床旁照护,用专业技能与人文关怀共同守护长者健康。依托物联设备优化服务流程,依托员工培训提升照护能力,确保服务精准高效。 </view></view></swiper-item><swiper-item class="data-v-5699789f" style="position:relative"><image class="title-img data-v-5699789f" src="{{c}}"/><view class="data-v-5699789f" style="width:100%;padding-left:75rpx;padding-right:75rpx;position:absolute;left:0;bottom:150rpx"><view class="title-name data-v-5699789f"><view class="font-weight data-v-5699789f"> 机构加盟 </view></view><view class="yuangong-font data-v-5699789f">   加盟护理单元,坐拥成熟运营体系,精简人力配置,降低运营成本。优质资源共享,多重优势协同发力,全方位拓宽利润空间,助力占领银发赛道。 </view></view></swiper-item></swiper><view wx:if="{{g}}" class="dian-father data-v-5699789f"><view wx:for="{{h}}" wx:for-item="item" wx:key="a" class="{{['data-v-5699789f', item.b]}}"></view></view><view wx:if="{{i}}" class="bottom-button data-v-5699789f" bindtap="{{j}}"> 前往注册 </view></view>

View File

@ -26,6 +26,7 @@
.font-father.data-v-5699789f {
width: 100%;
min-height: 100vh;
background-color: #f4f7f9;
display: flex;
align-items: center;
flex-direction: column;
@ -36,7 +37,7 @@
top: 0;
left: 0;
width: 100%;
height: 100vh;
height: 92vh;
z-index: -1;
}
.font-father .title-name.data-v-5699789f {
@ -54,7 +55,8 @@
}
.font-father .title-name .font-weight.data-v-5699789f {
font-weight: 600;
font-size: 32rpx;
font-size: 35rpx;
margin: 0 auto;
}
.white-imge-spec.data-v-5699789f {
width: 100%;
@ -94,9 +96,11 @@
}
.yuangong-font.data-v-5699789f {
font-size: 32rpx;
margin-top: 50rpx;
margin-top: 30rpx;
line-height: 50rpx;
}
.bottom-button.data-v-5699789f {
margin-top: -20rpx;
width: 80%;
height: 100rpx;
border-radius: 50rpx;

View File

@ -5,12 +5,11 @@
},
"setting": {
"urlCheck": false,
"es6": true,
"es6": false,
"postcss": false,
"minified": true,
"newFeature": true,
"bigPackageSizeSupport": true,
"enhance": true
"bigPackageSizeSupport": true
},
"compileType": "miniprogram",
"libVersion": "",

View File

@ -1,6 +1,6 @@
"use strict";
const common_vendor = require("../common/vendor.js");
const base_url = "https://www.focusnu.com/nursingunit";
const base_url = "https://www.focusnu.com/opeapi";
const timeout = 5e3;
const request = (params) => {
let url = params.url;