diff --git a/component/public/exit.vue b/component/public/exit.vue
index 74c8b96..2e7b00a 100644
--- a/component/public/exit.vue
+++ b/component/public/exit.vue
@@ -13,7 +13,7 @@
退出登录
- 确定要注销155******76账户吗
+ 确定要注销130******31账户吗
@@ -53,8 +53,11 @@
}
const go = () => {
uni.setStorageSync('token', 1);
- plus.runtime.quit();
+ // plus.runtime.quit();
+ uni.redirectTo({
+ url: '/pages/login/login'
+ });
}
diff --git a/component/public/game/joysticknew.vue b/component/public/game/joysticknew.vue
index 1caecf6..e9df5ca 100644
--- a/component/public/game/joysticknew.vue
+++ b/component/public/game/joysticknew.vue
@@ -2,7 +2,7 @@
-
+
@@ -15,9 +15,9 @@ const props = defineProps({
/**
* 水平位置,单位 rpx
*/
- left: {
+ right: {
type: Number,
- default: 0
+ default: 200
},
/**
* 垂直位置,单位 rpx
@@ -42,7 +42,7 @@ let resetTimer: number | null = null
// 计算容器样式
const containerStyle = computed(() => {
const style: Record = {
- left: `${props.left}rpx`
+ right: `${props.right}rpx`
}
if (props.top !== undefined) {
style.top = `${props.top}rpx`
@@ -84,21 +84,21 @@ function handleClick(dir: number) {
.click-box-top {
position: absolute;
top: 0;
- left: 100rpx;
+ right: 100rpx;
width: 130rpx;
height: 120rpx;
}
.click-box-bottom {
position: absolute;
bottom: 0;
- left: 100rpx;
+ right: 100rpx;
width: 130rpx;
height: 120rpx;
}
-.click-box-left {
+.click-box-right {
position: absolute;
bottom: 100rpx;
- left: 0;
+ right: 0;
width: 98rpx;
height: 120rpx;
}
diff --git a/component/public/newgame/joysticknew.vue b/component/public/newgame/joysticknew.vue
index e90e7af..4a1d920 100644
--- a/component/public/newgame/joysticknew.vue
+++ b/component/public/newgame/joysticknew.vue
@@ -1,27 +1,27 @@
-
-
+ }"> -->
-
+ }" @animationend="onRippleAnimationEnd"> -->
-
+
-
-
-
-
+
+
+
+
@@ -55,7 +55,7 @@
const RADIUS = uni.upx2px(175)
const DIAMETER = uni.upx2px(350)
- const LEFT = uni.upx2px(-50)
+ const right = uni.upx2px(-50)
const BOTTOM = uni.upx2px(100)
const windowHeight = uni.getSystemInfoSync().windowHeight
const TOP = windowHeight - BOTTOM - DIAMETER
@@ -69,9 +69,9 @@
type: Number,
default: 0
},
- moveleft: {
+ moveright: {
type: Number,
- default: 0
+ default: 110
},
pao:{
type: Boolean,
@@ -242,7 +242,7 @@
.move-circle {
position: absolute;
bottom: 0rpx;
- left: 0rpx;
+ right: 0rpx;
width: 350rpx;
height: 350rpx;
display: flex;
@@ -254,25 +254,19 @@
.click-box-top {
position: absolute;
top: 20rpx;
- left: 70rpx;
+ right: 70rpx;
width: 220rpx;
height: 80rpx;
+ // background-color: red;
}
.click-box-bottom {
position: absolute;
bottom: 20rpx;
- left: 70rpx;
+ right: 70rpx;
width: 220rpx;
height: 80rpx;
- }
-
- .click-box-left {
- position: absolute;
- bottom: 100rpx;
- left: 0;
- width: 90rpx;
- height: 150rpx;
+ // background-color: red;
}
.click-box-right {
@@ -281,6 +275,17 @@
right: 0;
width: 90rpx;
height: 150rpx;
+
+ // background-color: red;
+ }
+
+ .click-box-left {
+ position: absolute;
+ bottom: 100rpx;
+ left: 0;
+ width: 90rpx;
+ height: 150rpx;
+ // background-color: red;
}
.click-box-center {
@@ -290,12 +295,14 @@
width: 90rpx;
height: 90rpx;
// background-color: red;
+ // background-color: red;
}
}
.move-circle-all {
width: 350rpx;
height: 350rpx;
+ // background-color: red;
}
.light-shadow {
@@ -354,7 +361,7 @@
.pulse-circle {
position: absolute;
top: 50%;
- left: 50%;
+ right: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
background: radial-gradient(circle, #03a4ff 0%, transparent 70%);
diff --git a/manifest.json b/manifest.json
index 3000890..6fdc0a9 100644
--- a/manifest.json
+++ b/manifest.json
@@ -2,8 +2,8 @@
"name" : "护理单元",
"appid" : "__UNI__FB2D473",
"description" : "护理单元",
- "versionName" : "1.6.0",
- "versionCode" : 160,
+ "versionName" : "1.6.1",
+ "versionCode" : 161,
"transformPx" : false,
/* 5+App特有相关 */
"app-plus" : {
diff --git a/pages.json b/pages.json
index 82e41a8..e8abdfd 100644
--- a/pages.json
+++ b/pages.json
@@ -53,23 +53,11 @@
"position": "absolute",
"left": "250px",
"top": "120px",
- "width": "600px",
- "height": "450px",
+ "width": "630px",
+ "height": "510px",
"background": "transparent"
}
}
- // {
- // "id": "optionSub",
- // "path": "pages/option",
- // "style": {
- // "position": "absolute",
- // "right": "110px",
- // "bottom": "0px",
- // "width": "170px",
- // "height": "170px",
- // "background": "transparent"
- // }
- // }
]
}
}
diff --git a/pages/NursingNew/component/nurse/api.js b/pages/NursingNew/component/nurse/api.js
index 276476f..77b650b 100644
--- a/pages/NursingNew/component/nurse/api.js
+++ b/pages/NursingNew/component/nurse/api.js
@@ -6,7 +6,7 @@ import request from '@/request/index.js'
// 查询服务类型
export const getServiceTree = () => {
return request({
- url: '/nuIpadApi/nuConfigServiceCategory/getServiceTree',
+ url: `${uni.getStorageSync('serverUrl')}/nuIpadApi/nuConfigServiceCategory/getServiceTree`,
method: 'get',
})
}
diff --git a/pages/NursingNew/component/nurse/index.vue b/pages/NursingNew/component/nurse/index.vue
index 249b50a..48c2e17 100644
--- a/pages/NursingNew/component/nurse/index.vue
+++ b/pages/NursingNew/component/nurse/index.vue
@@ -926,6 +926,9 @@
onMounted(() => {
downdonghua.value = 0;
+ getServiceTree().then((res:any)=>{
+ console.log("res",res)
+ })
})
// 上次点击时间
const lastTap = ref(0)
diff --git a/pages/camera.nvue b/pages/camera.nvue
index afe52f7..a545aa2 100644
--- a/pages/camera.nvue
+++ b/pages/camera.nvue
@@ -4,7 +4,7 @@
{
- console.log("myEvent", e);
+ console.log(e)
+
+ if(e.recordUrl){
+ uni.showToast({
+ title: '录屏成功',
+ icon: 'success', // 'success' | 'loading' | 'none'
+ duration: 1500
+ })
+ }
+ if(e.snapShotUrl){
+ uni.showToast({
+ title: '截屏成功',
+ icon: 'success', // 'success' | 'loading' | 'none'
+ duration: 1500
+ })
+ }
+ if(this.suo && e.onVolumeChange){
+ if(e.onVolumeChange){
+ this.toggleVolume();
+ }
+ this.suo = false;
+ }
});
}
+ // this.doStopRecord()
// 在页面生命周期注册 uni.$on 事件,暴露给其他页面调用
uni.$on('monitor:doSnapshot', this.doSnapshot);
@@ -428,9 +451,9 @@ export default {
diff --git a/pages/login/login.vue b/pages/login/login.vue
index 822a967..24dc3cc 100644
--- a/pages/login/login.vue
+++ b/pages/login/login.vue
@@ -192,6 +192,7 @@
isRel(form.username).then((res : any) => {
if (res.result !== null && res.result.serverUrl) {
uni.setStorageSync('serverUrl', res.result.serverUrl);
+ console.log("url",res.result.serverUrl)
time.value = Date.now();
getLoginCode(time.value).then((res : any) => {
@@ -231,14 +232,19 @@
openbottom.value = true;
}
}
+ const jumpFirst = ref(false);
const canJump = () => {
- if (loading.value === 2) {
- setTimeout(() => {
- jumpTo(`/pages/watch/index`)
- }, 500)
- } else {
- loading.value++
+ if(!jumpFirst.value){
+ if (loading.value === 2) {
+ setTimeout(() => {
+ jumpTo(`/pages/watch/index`)
+ }, 500)
+ } else {
+ loading.value++
+ }
+ jumpFirst.value = true;
}
+
}
const loading = ref(0)
const huakuaisuccess = () => {
@@ -282,11 +288,6 @@
if (uni.getStorageSync('appWgtVersion') != uni.getSystemInfoSync().appWgtVersion) {
showPopup.value = true;
}
- init()
- });
- // 生命周期钩子
- onShow(() => {
- zyupgrade.value?.check_update();
if (uni.getStorageSync('token') && uni.getStorageSync('token') !== 1) {
if (loading.value === 2) {
setTimeout(() => {
@@ -296,6 +297,12 @@
loading.value++
}
}
+ init()
+ });
+ // 生命周期钩子
+ onShow(() => {
+ zyupgrade.value?.check_update();
+
});
function init() {
@@ -313,12 +320,12 @@
}
monitorModule.cloudLoginIn(loginfo, (r) => {
console.log("?????", r)
- if (!loading.value) {
- loading.value = true
- } else {
+ if (loading.value === 2) {
setTimeout(() => {
jumpTo(`/pages/watch/index`)
}, 500)
+ } else {
+ loading.value++
}
})
}
diff --git a/pages/watch/index.vue b/pages/watch/index.vue
index 5f04f8b..f4c876b 100644
--- a/pages/watch/index.vue
+++ b/pages/watch/index.vue
@@ -116,7 +116,17 @@
-
+
+
+
+
+
+ {{item}}
+
+
+
+
-
+
@@ -161,25 +171,24 @@
-
+ -->
-
-
+
王金凤
-
+
女 80岁
当日指令
-
+
入住时间:2025.01.01
@@ -233,55 +242,56 @@
待进行
-
+
-
-
+
-
-
+
+
一级压疮防护
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 协助执行
+
+
+
+
+
+ {{item}}
+
+
-
-
-
-
+
+
+
+ 清晰度
+
+
+
+
+
+
{{item.name}}
+
-
-
+
+
@@ -296,17 +306,11 @@
import specialDrawerVue from '../../component/public/specialDrawer.vue';
import bigroll from './drawer/index.vue';
import { movedirection } from './api/lunpan.js'
+ import joysticknew from '@/component/public/newgame/joysticknew.vue';
-
+ const cameraArray = ref([])
onLoad(() => {
- const globalEvent = uni.requireNativePlugin("globalEvent");
- globalEvent.addEventListener("myEvent", (e) => {
- console.log("myEvent", e);
- uni.showToast({
- title: "myEvent: " + JSON.stringify(e),
- duration: 2000,
- });
- });
+ cameraArray.value = cameraSmall
})
const zyupgrade = ref(null);
const menuIndex = ref(-1);
@@ -318,13 +322,86 @@
const topnum = ref(0); // scroll-top (px)
const itemHeight = 100; // 每项高度 (px)
const containerHeight = 400; // scroll-view 高度 (px)
+
+ const wheretarget = ref(3);
+ const where = [
+ {
+ name:"左右翻转",
+ url:"/static/index/camera/800.png",
+ target:"/static/index/camera/801.png",
+ },
+ {
+ name:"上下翻转",
+ url:"/static/index/camera/810.png",
+ target:"/static/index/camera/811.png",
+ },
+ {
+ name:"中心翻转",
+ url:"/static/index/camera/820.png",
+ target:"/static/index/camera/821.png",
+ },
+ {
+ name:"不翻转",
+ url:"/static/index/camera/830.png",
+ target:"/static/index/camera/831.png",
+ },
+ ]
+
+ const downpicture = [
+ "原图",
+ "全景拉伸",
+ "四分屏",
+ "180°全景",
+ "360°全景"
+ ]
+ const cameratarget = ref([]);
+ const cameraBig = [
+ "截图",
+ "录制",
+ "对讲",
+ "静音",
+ "预警",
+ "更多",
+ "图片",
+ "视频",
+ "清晰度",
+ "翻转",
+ ]
+ const cameraSmall = [
+ "截图",
+ "录制",
+ "对讲",
+ "静音",
+ "预警",
+ "更多",
+ ]
+ const downtarget = ref(0)
const jumpToCeshi = () => {
uni.navigateTo({
url: '/pages/denglu'
})
}
-
+ const clickDownCard = (index : number) => {
+ downtarget.value = index;
+ switch (index) {
+ case 0:
+ uni.$emit('monitor:switchDisplay', 0)
+ break
+ case 1:
+ uni.$emit('monitor:switchDisplay', 4)
+ break
+ case 2:
+ uni.$emit('monitor:switchDisplay', 1)
+ break
+ case 3:
+ uni.$emit('monitor:switchDisplay', 2)
+ break
+ case 4:
+ uni.$emit('monitor:switchDisplay', 3)
+ break
+ }
+ }
const first = ref(5);
const second = ref(0);
const firstIndex = (index : number) => {
@@ -610,7 +687,9 @@
openfirstmenu.value = true;
opensecondmenu.value = false
}
-
+ const movecamera = (type : number) => {
+ handleKey(type)
+ }
const movecard = (type : number) => {
if (leftTargetIndex.value !== -1) {
@@ -672,7 +751,7 @@
break
case 1:
if (typeNow.value < typeArray.value.length - 2) {
- console.log("???", typeArray.value.length)
+ // console.log("???", typeArray.value.length)
typeNow.value++
topTargetIndex.value = typeNow.value
@@ -832,6 +911,139 @@
}
}
+ }
+ const removeTimers = new Map>();
+ onBeforeUnmount(() => {
+ for (const t of removeTimers.values()) {
+ clearTimeout(t)
+ }
+ removeTimers.clear()
+ })
+ const removeIndexOnce = (index : number) => {
+ const pos = cameratarget.value.indexOf(index)
+ if (pos !== -1) {
+ cameratarget.value.splice(pos, 1) // 从 pos 开始删除 1 个元素
+ }
+ }
+ const jumpopen = ref(false);
+ const clickcamera = (index : number) => {
+
+ switch (index) {
+ case 0:
+ // 触发快照事件
+ uni.$emit('monitor:doSnapshot')
+
+ // 如果数组里不存在就 push(避免重复)
+ if (!cameratarget.value.includes(index)) {
+ cameratarget.value.push(index)
+ }
+
+ // 如果之前有定时器,先清掉(实现“重新计时”)
+ if (removeTimers.has(index)) {
+ clearTimeout(removeTimers.get(index)!)
+ }
+
+ // 新建一个 1s 后移除的定时器
+ const timerId = setTimeout(() => {
+ const pos = cameratarget.value.indexOf(index)
+ if (pos !== -1) {
+ cameratarget.value.splice(pos, 1)
+ }
+ removeTimers.delete(index)
+ }, 500)
+
+ removeTimers.set(index, timerId)
+ break
+ case 1:
+ if (cameratarget.value.includes(index)) {
+ uni.$emit('monitor:stopRecord');
+ removeIndexOnce(index)
+ } else {
+ uni.$emit('monitor:startRecord');
+ cameratarget.value.push(index)
+ }
+ break
+ case 2:
+ if (cameratarget.value.includes(index)) {
+ uni.$emit('monitor:stopTalk');
+ removeIndexOnce(index)
+ } else {
+ uni.$emit('monitor:openTalk');
+ cameratarget.value.push(index)
+ }
+ break
+ case 3:
+ if (cameratarget.value.includes(index)) {
+ uni.$emit('monitor:toggleVolume');
+ removeIndexOnce(index)
+ } else {
+ uni.$emit('monitor:toggleVolume');
+ cameratarget.value.push(index)
+ }
+ break
+ case 4:
+ if (cameratarget.value.includes(index)) {
+ uni.$emit('monitor:stopAlarm')
+ removeIndexOnce(index)
+ } else {
+ uni.$emit('monitor:startAlarm')
+ cameratarget.value.push(index)
+ }
+ break
+ case 5:
+ if (cameratarget.value.includes(index)) {
+ cameraArray.value = cameraSmall
+ removeIndexOnce(index)
+ } else {
+ cameraArray.value = cameraBig
+ cameratarget.value.push(index)
+ }
+ jumpopen.value = false;
+ break
+ case 6:
+ if (cameratarget.value.includes(index)) {
+ removeIndexOnce(index)
+ } else {
+ cameratarget.value.push(index)
+ }
+ break
+ case 7:
+ if (cameratarget.value.includes(index)) {
+ removeIndexOnce(index)
+ } else {
+ cameratarget.value.push(index)
+ }
+ break
+ case 8:
+ if (cameratarget.value.includes(index)) {
+ uni.$emit('monitor:changeQuality');
+ removeIndexOnce(index)
+ } else {
+ uni.$emit('monitor:changeQuality');
+ cameratarget.value.push(index)
+ }
+ break
+ case 9:
+ jumpopen.value = true
+
+ // if (cameratarget.value.includes(index)) {
+ // removeIndexOnce(index)
+ // } else {
+ // cameratarget.value.push(index)
+ // }
+ break
+ }
+ }
+ const clickjump = (index:number) => {
+ wheretarget.value = index;
+ if(index===3){
+ uni.$emit('monitor:flipImage', 6)
+ removeIndexOnce(9)
+ }else{
+ uni.$emit('monitor:flipImage', index)
+ cameratarget.value.push(9)
+ }
+
}
// 对 moveFirstUp / moveFirstDown 包装防抖
const moveUpDebounced = useThrottle(() => wheelRef.value?.moveFirstUp(), 400)
@@ -981,9 +1193,7 @@
activeDir = type
// 执行开始
- movedirection(dirCode, 1).then((res : any) => {
- console.log("start", dirCode, res)
- })
+ movedirection(dirCode, 1)
// 重置 stop 计时器
if (stopTimers[type]) clearTimeout(stopTimers[type])
@@ -1108,6 +1318,7 @@
margin-top: 100rpx;
position: relative;
display: flex;
+ // background-color: red;
// margin-bottom: 50rpx;
.menu {
@@ -1165,7 +1376,7 @@
.big-bgc {
// margin-top: -50rpx;
- margin-top: 30rpx;
+ margin-top: 20rpx;
width: 1250rpx;
height: 913rpx;
border-radius: 50rpx;
@@ -1230,9 +1441,9 @@
.red-kuang {
margin-top: 0rpx;
- margin-left: 50rpx;
- width: 550rpx;
- height: 190rpx;
+ margin-left: 90rpx;
+ width: 510rpx;
+ height: 120rpx;
border-radius: 50rpx;
position: relative;
display: flex;
@@ -1241,27 +1452,27 @@
.blue-bgc {
- width: 140rpx;
- height: 60rpx;
+ width: 120rpx;
+ height: 50rpx;
display: flex;
justify-content: center;
align-items: center;
z-index: 1;
- font-size: 26rpx;
+ font-size: 23rpx;
background-color: rgba(248, 249, 250, 0.5);
color: #017DE9;
border-radius: 20rpx;
- margin-left: 10rpx;
+ margin-left: 30rpx;
}
.font-weight {
- font-size: 32rpx;
+ font-size: 30rpx;
font-weight: 600;
}
.font-small {
- font-size: 30rpx;
+ font-size: 25rpx;
}
}
@@ -1269,14 +1480,14 @@
.states-father {
display: flex;
- margin-top: 30rpx;
- margin-left: 50rpx;
+ margin-top: 20rpx;
+ margin-left: 90rpx;
width: 100%;
.states {
- width: 170rpx;
+ width: 157rpx;
margin-right: 15rpx;
- height: 80rpx;
+ height: 60rpx;
border-radius: 60rpx;
background-color: rgba(226, 227, 231, 0.5);
display: flex;
@@ -1293,11 +1504,50 @@
}
}
+ .bottom-view {
+ margin-left: 90rpx;
+ margin-top: 20rpx;
+ width: 510rpx;
+ height: 690rpx;
+ border-radius: 50rpx;
+ background-color: rgba(226, 227, 231, 0.5);
+ position: relative;
+ display: flex;
+ flex-wrap: wrap;
+ overflow: hidden;
+ align-items: flex-start;
+ /* 关键:禁用 stretch,子项按自己的高度 */
+ align-content: flex-start;
+ /* 多行时顶端对齐(可选) */
+
+ .button-father {
+ margin-top: 20rpx;
+ margin-bottom: 0;
+ margin-left: 45rpx;
+ // height: 150rpx;
+ // margin-right: 34rpx;
+ // background-color: red;
+ text-align: center;
+
+ .bottom-button {
+ background-color: #F2F2F4;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 110rpx;
+ height: 110rpx;
+ border: 1rpx solid #CDD3DD;
+ border-radius: 35rpx;
+ margin-bottom: 5rpx;
+ }
+ }
+ }
+
.big-view {
- margin-left: 50rpx;
- margin-top: 30rpx;
- width: 550rpx;
- height: 625rpx;
+ margin-left: 90rpx;
+ margin-top: 20rpx;
+ width: 510rpx;
+ height: 340rpx;
border-radius: 50rpx;
background-color: rgba(226, 227, 231, 0.5);
position: relative;
@@ -1308,8 +1558,8 @@
.font-weight {
- font-size: 50rpx;
- margin-top: 45rpx;
+ font-size: 40rpx;
+ margin-top: 30rpx;
font-weight: 600;
}
@@ -1329,7 +1579,7 @@
.small-button {
// width: 70%;
- margin-top: 20rpx;
+ margin-top: 10rpx;
height: 70rpx;
display: flex;
// justify-content: space-between;
@@ -1548,4 +1798,51 @@
position: relative;
z-index: 1;
}
+
+ .picture {
+ display: flex;
+ margin-top: 150rpx;
+
+ .picture-card {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ margin-left: 20rpx;
+ margin-right: 10rpx;
+ width: 200rpx;
+
+ .bgc-card {
+ width: 100%;
+ height: 130rpx;
+ background-color: #EAEAEC;
+ border-radius: 30rpx;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ margin-bottom: 10rpx;
+ }
+ }
+ }
+
+ .jump-white {
+ position: absolute;
+ bottom: 20rpx;
+ left: 50rpx;
+ width: 300rpx;
+ height: 400rpx;
+ background-color: #fff;
+ border-radius: 30rpx;
+ box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1)
+ }
+
+ .jump-item{
+ margin: 10rpx 10rpx;
+ height: 60rpx;
+ justify-content: center;
+ width: 93%;
+ display: flex;
+ border-radius: 20rpx;
+ align-items: center;
+ }
\ No newline at end of file
diff --git a/static/index/camera/00.png b/static/index/camera/00.png
new file mode 100644
index 0000000..b5c8496
Binary files /dev/null and b/static/index/camera/00.png differ
diff --git a/static/index/camera/01.png b/static/index/camera/01.png
new file mode 100644
index 0000000..8ce7818
Binary files /dev/null and b/static/index/camera/01.png differ
diff --git a/static/index/camera/10.png b/static/index/camera/10.png
new file mode 100644
index 0000000..20d0188
Binary files /dev/null and b/static/index/camera/10.png differ
diff --git a/static/index/camera/11.png b/static/index/camera/11.png
new file mode 100644
index 0000000..4afb7a4
Binary files /dev/null and b/static/index/camera/11.png differ
diff --git a/static/index/camera/20.png b/static/index/camera/20.png
new file mode 100644
index 0000000..7584047
Binary files /dev/null and b/static/index/camera/20.png differ
diff --git a/static/index/camera/21.png b/static/index/camera/21.png
new file mode 100644
index 0000000..1cc00a1
Binary files /dev/null and b/static/index/camera/21.png differ
diff --git a/static/index/camera/30.png b/static/index/camera/30.png
new file mode 100644
index 0000000..bae7140
Binary files /dev/null and b/static/index/camera/30.png differ
diff --git a/static/index/camera/31.png b/static/index/camera/31.png
new file mode 100644
index 0000000..439de58
Binary files /dev/null and b/static/index/camera/31.png differ
diff --git a/static/index/camera/40.png b/static/index/camera/40.png
new file mode 100644
index 0000000..a3b821d
Binary files /dev/null and b/static/index/camera/40.png differ
diff --git a/static/index/camera/41.png b/static/index/camera/41.png
new file mode 100644
index 0000000..015c3c3
Binary files /dev/null and b/static/index/camera/41.png differ
diff --git a/static/index/camera/50.png b/static/index/camera/50.png
new file mode 100644
index 0000000..12846db
Binary files /dev/null and b/static/index/camera/50.png differ
diff --git a/static/index/camera/51.png b/static/index/camera/51.png
new file mode 100644
index 0000000..f077966
Binary files /dev/null and b/static/index/camera/51.png differ
diff --git a/static/index/camera/60.png b/static/index/camera/60.png
new file mode 100644
index 0000000..e49613c
Binary files /dev/null and b/static/index/camera/60.png differ
diff --git a/static/index/camera/61.png b/static/index/camera/61.png
new file mode 100644
index 0000000..d487215
Binary files /dev/null and b/static/index/camera/61.png differ
diff --git a/static/index/camera/70.png b/static/index/camera/70.png
new file mode 100644
index 0000000..56491f7
Binary files /dev/null and b/static/index/camera/70.png differ
diff --git a/static/index/camera/71.png b/static/index/camera/71.png
new file mode 100644
index 0000000..83ad832
Binary files /dev/null and b/static/index/camera/71.png differ
diff --git a/static/index/camera/80.png b/static/index/camera/80.png
new file mode 100644
index 0000000..0684b6f
Binary files /dev/null and b/static/index/camera/80.png differ
diff --git a/static/index/watch/Wheel/800.png b/static/index/camera/800.png
similarity index 100%
rename from static/index/watch/Wheel/800.png
rename to static/index/camera/800.png
diff --git a/static/index/watch/Wheel/801.png b/static/index/camera/801.png
similarity index 100%
rename from static/index/watch/Wheel/801.png
rename to static/index/camera/801.png
diff --git a/static/index/camera/81.png b/static/index/camera/81.png
new file mode 100644
index 0000000..d2e096a
Binary files /dev/null and b/static/index/camera/81.png differ
diff --git a/static/index/watch/Wheel/810.png b/static/index/camera/810.png
similarity index 100%
rename from static/index/watch/Wheel/810.png
rename to static/index/camera/810.png
diff --git a/static/index/watch/Wheel/811.png b/static/index/camera/811.png
similarity index 100%
rename from static/index/watch/Wheel/811.png
rename to static/index/camera/811.png
diff --git a/static/index/watch/Wheel/820.png b/static/index/camera/820.png
similarity index 100%
rename from static/index/watch/Wheel/820.png
rename to static/index/camera/820.png
diff --git a/static/index/watch/Wheel/821.png b/static/index/camera/821.png
similarity index 100%
rename from static/index/watch/Wheel/821.png
rename to static/index/camera/821.png
diff --git a/static/index/watch/Wheel/830.png b/static/index/camera/830.png
similarity index 100%
rename from static/index/watch/Wheel/830.png
rename to static/index/camera/830.png
diff --git a/static/index/watch/Wheel/831.png b/static/index/camera/831.png
similarity index 100%
rename from static/index/watch/Wheel/831.png
rename to static/index/camera/831.png
diff --git a/static/index/camera/90.png b/static/index/camera/90.png
new file mode 100644
index 0000000..0420380
Binary files /dev/null and b/static/index/camera/90.png differ
diff --git a/static/index/camera/91.png b/static/index/camera/91.png
new file mode 100644
index 0000000..d17d712
Binary files /dev/null and b/static/index/camera/91.png differ
diff --git a/static/index/camera/arrow1.png b/static/index/camera/arrow1.png
new file mode 100644
index 0000000..bc0952f
Binary files /dev/null and b/static/index/camera/arrow1.png differ
diff --git a/static/index/camera/arrow2.png b/static/index/camera/arrow2.png
new file mode 100644
index 0000000..0dc5213
Binary files /dev/null and b/static/index/camera/arrow2.png differ
diff --git a/static/index/camera/arrow3.png b/static/index/camera/arrow3.png
new file mode 100644
index 0000000..1317337
Binary files /dev/null and b/static/index/camera/arrow3.png differ
diff --git a/static/index/camera/arrow4.png b/static/index/camera/arrow4.png
new file mode 100644
index 0000000..23e7a26
Binary files /dev/null and b/static/index/camera/arrow4.png differ
diff --git a/static/index/camera/arrow5.png b/static/index/camera/arrow5.png
new file mode 100644
index 0000000..96cd0fa
Binary files /dev/null and b/static/index/camera/arrow5.png differ
diff --git a/static/index/camera/back.png b/static/index/camera/back.png
new file mode 100644
index 0000000..3de7100
Binary files /dev/null and b/static/index/camera/back.png differ
diff --git a/static/index/camera/blue111.png b/static/index/camera/blue111.png
new file mode 100644
index 0000000..72b2c46
Binary files /dev/null and b/static/index/camera/blue111.png differ
diff --git a/static/index/camera/lemon.png b/static/index/camera/lemon.png
new file mode 100644
index 0000000..e2321b6
Binary files /dev/null and b/static/index/camera/lemon.png differ
diff --git a/static/index/camera/staff.png b/static/index/camera/staff.png
new file mode 100644
index 0000000..aa8a3c2
Binary files /dev/null and b/static/index/camera/staff.png differ
diff --git a/static/index/camera/success.png b/static/index/camera/success.png
new file mode 100644
index 0000000..75cfc40
Binary files /dev/null and b/static/index/camera/success.png differ
diff --git a/static/index/picture/00.png b/static/index/picture/00.png
new file mode 100644
index 0000000..943b5b0
Binary files /dev/null and b/static/index/picture/00.png differ
diff --git a/static/index/picture/01.png b/static/index/picture/01.png
new file mode 100644
index 0000000..934560e
Binary files /dev/null and b/static/index/picture/01.png differ
diff --git a/static/index/picture/10.png b/static/index/picture/10.png
new file mode 100644
index 0000000..a4bddfe
Binary files /dev/null and b/static/index/picture/10.png differ
diff --git a/static/index/picture/11.png b/static/index/picture/11.png
new file mode 100644
index 0000000..a2cbf78
Binary files /dev/null and b/static/index/picture/11.png differ
diff --git a/static/index/picture/20.png b/static/index/picture/20.png
new file mode 100644
index 0000000..1582c39
Binary files /dev/null and b/static/index/picture/20.png differ
diff --git a/static/index/picture/21.png b/static/index/picture/21.png
new file mode 100644
index 0000000..bd3955b
Binary files /dev/null and b/static/index/picture/21.png differ
diff --git a/static/index/picture/30.png b/static/index/picture/30.png
new file mode 100644
index 0000000..697595e
Binary files /dev/null and b/static/index/picture/30.png differ
diff --git a/static/index/picture/31.png b/static/index/picture/31.png
new file mode 100644
index 0000000..9ad4625
Binary files /dev/null and b/static/index/picture/31.png differ
diff --git a/static/index/picture/40.png b/static/index/picture/40.png
new file mode 100644
index 0000000..3ae9683
Binary files /dev/null and b/static/index/picture/40.png differ
diff --git a/static/index/picture/41.png b/static/index/picture/41.png
new file mode 100644
index 0000000..4c9680c
Binary files /dev/null and b/static/index/picture/41.png differ
diff --git a/unpackage/dist/build/.nvue/_plugin-vue_export-helper.js b/unpackage/dist/build/.nvue/_plugin-vue_export-helper.js
deleted file mode 100644
index 84d1cb5..0000000
--- a/unpackage/dist/build/.nvue/_plugin-vue_export-helper.js
+++ /dev/null
@@ -1,10 +0,0 @@
-const _export_sfc = (sfc, props) => {
- const target = sfc.__vccOpts || sfc;
- for (const [key, val] of props) {
- target[key] = val;
- }
- return target;
-};
-export {
- _export_sfc as _
-};
diff --git a/unpackage/dist/build/.nvue/app.js b/unpackage/dist/build/.nvue/app.js
index 648572b..7dd1932 100644
--- a/unpackage/dist/build/.nvue/app.js
+++ b/unpackage/dist/build/.nvue/app.js
@@ -1,11 +1,5 @@
-Promise.resolve("./pages/ceshianzhuo.js").then((res) => {
- res();
-});
Promise.resolve("./pages/camera.js").then((res) => {
res();
});
-Promise.resolve("./pages/option.js").then((res) => {
- res();
-});
Promise.resolve("./app.css.js").then(() => {
});
diff --git a/unpackage/dist/build/.nvue/pages/camera.js b/unpackage/dist/build/.nvue/pages/camera.js
index af494c4..8349e64 100644
--- a/unpackage/dist/build/.nvue/pages/camera.js
+++ b/unpackage/dist/build/.nvue/pages/camera.js
@@ -1,7 +1,22 @@
-import { r as requireNativePlugin, f as formatAppLog } from "../uni-app.es.js";
import { resolveComponent, openBlock, createElementBlock, createElementVNode, createVNode } from "vue";
-import { _ as _export_sfc } from "../_plugin-vue_export-helper.js";
-const _style_0 = { "center-column": { "": { "width": 600, "height": 450, "borderRadius": 30, "overflow": "hidden" } } };
+function requireNativePlugin(name) {
+ return weex.requireModule(name);
+}
+function formatAppLog(type, filename, ...args) {
+ if (uni.__log__) {
+ uni.__log__(type, filename, ...args);
+ } else {
+ console[type].apply(console, [...args, filename]);
+ }
+}
+const _style_0 = { "center-column": { "": { "width": 630, "height": 510, "overflow": "hidden" } } };
+const _export_sfc = (sfc, props) => {
+ const target = sfc.__vccOpts || sfc;
+ for (const [key, val] of props) {
+ target[key] = val;
+ }
+ return target;
+};
const _sfc_main = {
data() {
return {
@@ -18,14 +33,37 @@ const _sfc_main = {
snapshot: [],
record: [],
talk: []
- }
+ },
+ suo: true
};
},
onLoad() {
const globalEvent = requireNativePlugin && requireNativePlugin("globalEvent");
if (globalEvent && globalEvent.addEventListener) {
globalEvent.addEventListener("myEvent", (e) => {
- formatAppLog("log", "at pages/camera.nvue:39", "myEvent", e);
+ formatAppLog("log", "at pages/camera.nvue:40", e);
+ if (e.recordUrl) {
+ uni.showToast({
+ title: "录屏成功",
+ icon: "success",
+ // 'success' | 'loading' | 'none'
+ duration: 1500
+ });
+ }
+ if (e.snapShotUrl) {
+ uni.showToast({
+ title: "截屏成功",
+ icon: "success",
+ // 'success' | 'loading' | 'none'
+ duration: 1500
+ });
+ }
+ if (this.suo && e.onVolumeChange) {
+ if (e.onVolumeChange) {
+ this.toggleVolume();
+ }
+ this.suo = false;
+ }
});
}
uni.$on("monitor:doSnapshot", this.doSnapshot);
@@ -60,27 +98,27 @@ const _sfc_main = {
methods: {
/* ------------------ 原有功能 ------------------ */
handleTelEvent(event) {
- formatAppLog("log", "at pages/camera.nvue:79", "Tel event detail:", event.detail);
+ formatAppLog("log", "at pages/camera.nvue:102", "Tel event detail:", event.detail);
},
switchDisplay(mode) {
- formatAppLog("log", "at pages/camera.nvue:84", "zzzzz", mode);
+ formatAppLog("log", "at pages/camera.nvue:107", "zzzzz", mode);
this.$refs.monitor && this.$refs.monitor.switchDisplayModeFragment(mode);
},
startAlarm() {
this.isAlarming = true;
this.$refs.monitor.startOrStopManualAlarm(this.isAlarming, (res) => {
- formatAppLog("log", "at pages/camera.nvue:91", "startAlarm callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:114", "startAlarm callback:", res);
});
},
stopAlarm() {
this.isAlarming = false;
this.$refs.monitor.startOrStopManualAlarm(this.isAlarming, (res) => {
- formatAppLog("log", "at pages/camera.nvue:97", "stopAlarm callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:120", "stopAlarm callback:", res);
});
},
flipImage(type) {
this.$refs.monitor.changeImageSwitch(type, (res) => {
- formatAppLog("log", "at pages/camera.nvue:103", "flipImage callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:126", "flipImage callback:", res);
});
},
resumeOrPause() {
@@ -111,12 +149,12 @@ const _sfc_main = {
}
try {
this.$refs.monitor.snapShot((res) => {
- formatAppLog("log", "at pages/camera.nvue:143", "snapShot callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:166", "snapShot callback:", res);
this._handleSnapshotResultFromNative(res, payload.reqId);
});
uni.showToast({ title: "正在截屏...", icon: "none", duration: 800 });
} catch (err) {
- formatAppLog("error", "at pages/camera.nvue:148", "snapShot 调用失败", err);
+ formatAppLog("error", "at pages/camera.nvue:171", "snapShot 调用失败", err);
uni.showToast({ title: "snapShot 调用失败", icon: "none" });
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: false, error: "snapShot_call_failed", detail: String(err) });
@@ -135,7 +173,7 @@ const _sfc_main = {
}
try {
this.$refs.monitor.startRecord((res) => {
- formatAppLog("log", "at pages/camera.nvue:168", "startRecord callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:191", "startRecord callback:", res);
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: true, res });
}
@@ -143,7 +181,7 @@ const _sfc_main = {
this.isRecording = true;
uni.showToast({ title: "录屏已开始", icon: "none" });
} catch (err) {
- formatAppLog("error", "at pages/camera.nvue:177", "startRecord 调用失败", err);
+ formatAppLog("error", "at pages/camera.nvue:200", "startRecord 调用失败", err);
uni.showToast({ title: "startRecord 调用失败", icon: "none" });
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: false, error: "startRecord_call_failed", detail: String(err) });
@@ -165,11 +203,11 @@ const _sfc_main = {
}
try {
this.$refs.monitor.stopRecord((res) => {
- formatAppLog("log", "at pages/camera.nvue:203", "stopRecord callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:226", "stopRecord callback:", res);
this._handleRecordResultFromNative(res, payload.reqId);
});
} catch (err) {
- formatAppLog("error", "at pages/camera.nvue:208", "stopRecord 调用失败", err);
+ formatAppLog("error", "at pages/camera.nvue:231", "stopRecord 调用失败", err);
uni.showToast({ title: "stopRecord 调用失败", icon: "none" });
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: false, error: "stopRecord_call_failed", detail: String(err) });
@@ -191,7 +229,7 @@ const _sfc_main = {
}
try {
this.$refs.monitor.openTalk((res) => {
- formatAppLog("log", "at pages/camera.nvue:232", "openTalk callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:255", "openTalk callback:", res);
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: true, res });
}
@@ -199,7 +237,7 @@ const _sfc_main = {
this.isTalking = true;
uni.showToast({ title: "尝试建立对讲连接...", icon: "none" });
} catch (err) {
- formatAppLog("error", "at pages/camera.nvue:241", "openTalk 调用失败", err);
+ formatAppLog("error", "at pages/camera.nvue:264", "openTalk 调用失败", err);
uni.showToast({ title: "openTalk 调用失败", icon: "none" });
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: false, error: "openTalk_call_failed", detail: String(err) });
@@ -218,14 +256,14 @@ const _sfc_main = {
}
try {
this.$refs.monitor.stopTalk((res) => {
- formatAppLog("log", "at pages/camera.nvue:261", "stopTalk callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:284", "stopTalk callback:", res);
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: true, res });
}
});
this.isTalking = false;
} catch (err) {
- formatAppLog("error", "at pages/camera.nvue:268", "stopTalk 调用失败", err);
+ formatAppLog("error", "at pages/camera.nvue:291", "stopTalk 调用失败", err);
uni.showToast({ title: "stopTalk 调用失败", icon: "none" });
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: false, error: "stopTalk_call_failed", detail: String(err) });
@@ -236,19 +274,19 @@ const _sfc_main = {
// 处理来自模板 @onSnapShot 的事件(event.detail)
handleSnapShotEvent(event) {
const payload = event && event.detail ? event.detail : event;
- formatAppLog("log", "at pages/camera.nvue:281", "onSnapShot event:", payload);
+ formatAppLog("log", "at pages/camera.nvue:304", "onSnapShot event:", payload);
this._handleSnapshotResultFromNative(payload);
},
// 处理来自模板 @onRecord 的事件(event.detail)
handleRecordEvent(event) {
const payload = event && event.detail ? event.detail : event;
- formatAppLog("log", "at pages/camera.nvue:289", "onRecord event:", payload);
+ formatAppLog("log", "at pages/camera.nvue:312", "onRecord event:", payload);
this._handleRecordResultFromNative(payload);
},
// 处理来自模板 @onTalkStatus 的事件
handleTalkEvent(event) {
const payload = event && event.detail ? event.detail : event;
- formatAppLog("log", "at pages/camera.nvue:296", "onTalkStatus event:", payload);
+ formatAppLog("log", "at pages/camera.nvue:319", "onTalkStatus event:", payload);
const status = payload && payload.talkStatus;
const tips = payload && payload.tips;
uni.$emit("monitor:talk:status", payload);
@@ -292,7 +330,7 @@ const _sfc_main = {
let payload = res;
if (res.detail)
payload = res.detail;
- formatAppLog("log", "at pages/camera.nvue:349", "snapshot payload normalized:", payload);
+ formatAppLog("log", "at pages/camera.nvue:372", "snapshot payload normalized:", payload);
if (reqIdFromCallback) {
uni.$emit(`monitor:response:${reqIdFromCallback}`, { ok: !!payload.snapShotResult, payload });
}
@@ -312,7 +350,7 @@ const _sfc_main = {
} else {
const err = payload.snapShotErrorCode || payload.error || "unknown";
uni.showToast({ title: "截图失败: " + err, icon: "none", duration: 2e3 });
- formatAppLog("warn", "at pages/camera.nvue:376", "snapshot failed reason:", err, payload);
+ formatAppLog("warn", "at pages/camera.nvue:399", "snapshot failed reason:", err, payload);
}
},
_handleRecordResultFromNative(res, reqIdFromCallback = null) {
@@ -327,7 +365,7 @@ const _sfc_main = {
let payload = res;
if (res.detail)
payload = res.detail;
- formatAppLog("log", "at pages/camera.nvue:392", "record payload normalized:", payload);
+ formatAppLog("log", "at pages/camera.nvue:415", "record payload normalized:", payload);
if (reqIdFromCallback) {
uni.$emit(`monitor:response:${reqIdFromCallback}`, { ok: !!(payload.recordUrl || payload.snapShotResult), payload });
}
@@ -341,11 +379,11 @@ const _sfc_main = {
if (payload.recordUrl) {
uni.showToast({ title: "录屏完成", icon: "success", duration: 1400 });
this.isRecording = false;
- formatAppLog("log", "at pages/camera.nvue:413", "录屏地址:", payload.recordUrl);
+ formatAppLog("log", "at pages/camera.nvue:436", "录屏地址:", payload.recordUrl);
} else if (payload.recordFailedReason) {
uni.showToast({ title: "录屏失败: " + payload.recordFailedReason, icon: "none", duration: 2e3 });
this.isRecording = false;
- formatAppLog("warn", "at pages/camera.nvue:417", "record failed reason:", payload.recordFailedReason);
+ formatAppLog("warn", "at pages/camera.nvue:440", "record failed reason:", payload.recordFailedReason);
} else {
if (payload.snapShotResult === true) {
uni.showToast({ title: "录屏操作已完成(返回未知)", icon: "none" });
@@ -368,7 +406,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
createVNode(_component_MonitorView, {
ref: "monitor",
init: "5",
- style: { "width": "600px", "height": "450px" },
+ style: { "width": "630px", "height": "510px" },
onOnTel: $options.handleTelEvent,
onOnSnapShot: $options.handleSnapShotEvent,
onOnRecord: $options.handleRecordEvent,
diff --git a/unpackage/dist/build/.nvue/pages/ceshianzhuo.js b/unpackage/dist/build/.nvue/pages/ceshianzhuo.js
deleted file mode 100644
index 3ce0a45..0000000
--- a/unpackage/dist/build/.nvue/pages/ceshianzhuo.js
+++ /dev/null
@@ -1,551 +0,0 @@
-import { r as requireNativePlugin, f as formatAppLog } from "../uni-app.es.js";
-import { resolveComponent, openBlock, createElementBlock, createElementVNode, createVNode, withCtx, createTextVNode } from "vue";
-import { _ as _export_sfc } from "../_plugin-vue_export-helper.js";
-const _style_0 = { "center-column": { "": { "display": "flex", "flexDirection": "column", "alignItems": "center" } }, "button-group": { "": { "display": "flex", "flexDirection": "row", "flexWrap": "wrap", "justifyContent": "center", "marginTop": 40, "width": 620 } }, "button": { "": { "marginTop": 6, "marginRight": 6, "marginBottom": 6, "marginLeft": 6, "paddingTop": 8, "paddingRight": 12, "paddingBottom": 8, "paddingLeft": 12, "minWidth": "120px", "height": 44, "borderRadius": 6, "borderWidth": 1, "borderStyle": "solid", "borderColor": "#dddddd", "backgroundColor": "#ffffff" } } };
-const _sfc_main = {
- data() {
- return {
- phoneNumber: "1234567890",
- isAlarming: false,
- isRecording: false,
- // 录屏状态
- isTalking: false
- // 对讲状态
- };
- },
- onLoad() {
- const globalEvent = requireNativePlugin && requireNativePlugin("globalEvent");
- if (globalEvent && globalEvent.addEventListener) {
- globalEvent.addEventListener("myEvent", (e) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:73", "myEvent", e);
- });
- }
- },
- methods: {
- /* ------------------ 原有功能 ------------------ */
- handleTelEvent(event) {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:80", "Tel event detail:", event.detail);
- },
- switchDisplay(mode) {
- this.$refs.monitor && this.$refs.monitor.switchDisplayModeFragment(mode);
- },
- startAlarm() {
- this.isAlarming = true;
- this.$refs.monitor.startOrStopManualAlarm(this.isAlarming, (res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:91", "startAlarm callback:", res);
- });
- },
- stopAlarm() {
- this.isAlarming = false;
- this.$refs.monitor.startOrStopManualAlarm(this.isAlarming, (res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:97", "stopAlarm callback:", res);
- });
- },
- flipImage(type) {
- this.$refs.monitor.changeImageSwitch(type, (res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:103", "flipImage callback:", res);
- });
- },
- resumeOrPause() {
- this.$refs.monitor.resumeOrPause && this.$refs.monitor.resumeOrPause();
- },
- changeQuality() {
- this.$refs.monitor.changeQuality && this.$refs.monitor.changeQuality();
- },
- test() {
- this.$refs.monitor && this.$refs.monitor.test && this.$refs.monitor.test();
- },
- /* ------------------ 新增:截图/录屏/对讲 调用方法 ------------------ */
- // 1. 截图(调用)
- doSnapshot() {
- if (!this.$refs.monitor || !this.$refs.monitor.snapShot) {
- uni.showToast({
- title: "组件不支持 snapShot()",
- icon: "none"
- });
- return;
- }
- try {
- this.$refs.monitor.snapShot((res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:134", "snapShot callback:", res);
- this._handleSnapshotResultFromNative(res);
- });
- uni.showToast({
- title: "正在截屏...",
- icon: "none",
- duration: 800
- });
- } catch (err) {
- formatAppLog("error", "at pages/ceshianzhuo.nvue:143", "snapShot 调用失败", err);
- uni.showToast({
- title: "snapShot 调用失败",
- icon: "none"
- });
- }
- },
- // 2. 开始录屏(调用)
- doStartRecord() {
- if (!this.$refs.monitor || !this.$refs.monitor.startRecord) {
- uni.showToast({
- title: "组件不支持 startRecord()",
- icon: "none"
- });
- return;
- }
- try {
- this.$refs.monitor.startRecord((res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:163", "startRecord callback:", res);
- });
- this.isRecording = true;
- uni.showToast({
- title: "录屏已开始",
- icon: "none"
- });
- } catch (err) {
- formatAppLog("error", "at pages/ceshianzhuo.nvue:171", "startRecord 调用失败", err);
- uni.showToast({
- title: "startRecord 调用失败",
- icon: "none"
- });
- }
- },
- // 3. 停止录屏(调用)
- doStopRecord() {
- if (!this.$refs.monitor || !this.$refs.monitor.stopRecord) {
- uni.showToast({
- title: "组件不支持 stopRecord()",
- icon: "none"
- });
- return;
- }
- try {
- this.$refs.monitor.stopRecord((res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:191", "stopRecord callback:", res);
- this._handleRecordResultFromNative(res);
- });
- } catch (err) {
- formatAppLog("error", "at pages/ceshianzhuo.nvue:196", "stopRecord 调用失败", err);
- uni.showToast({
- title: "stopRecord 调用失败",
- icon: "none"
- });
- }
- },
- // 4. 开始对讲(调用)
- doOpenTalk() {
- if (!this.$refs.monitor || !this.$refs.monitor.openTalk) {
- uni.showToast({
- title: "组件不支持 openTalk()",
- icon: "none"
- });
- return;
- }
- try {
- this.$refs.monitor.openTalk((res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:215", "openTalk callback:", res);
- });
- this.isTalking = true;
- uni.showToast({
- title: "尝试建立对讲连接...",
- icon: "none"
- });
- } catch (err) {
- formatAppLog("error", "at pages/ceshianzhuo.nvue:225", "openTalk 调用失败", err);
- uni.showToast({
- title: "openTalk 调用失败",
- icon: "none"
- });
- }
- },
- // 5. 停止对讲(调用)
- doStopTalk() {
- if (!this.$refs.monitor || !this.$refs.monitor.stopTalk) {
- uni.showToast({
- title: "组件不支持 stopTalk()",
- icon: "none"
- });
- return;
- }
- try {
- this.$refs.monitor.stopTalk((res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:244", "stopTalk callback:", res);
- });
- this.isTalking = false;
- } catch (err) {
- formatAppLog("error", "at pages/ceshianzhuo.nvue:250", "stopTalk 调用失败", err);
- uni.showToast({
- title: "stopTalk 调用失败",
- icon: "none"
- });
- }
- },
- /* ------------------ 事件回调处理(来自原生推送的事件) ------------------ */
- // 处理来自模板 @onSnapShot 的事件(event.detail)
- handleSnapShotEvent(event) {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:263", "onSnapShot event:", event && event.detail ? event.detail : event);
- this._handleSnapshotResultFromNative(event && event.detail ? event.detail : event);
- },
- // 处理来自模板 @onRecord 的事件(event.detail)
- handleRecordEvent(event) {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:270", "onRecord event:", event && event.detail ? event.detail : event);
- this._handleRecordResultFromNative(event && event.detail ? event.detail : event);
- },
- // 处理来自模板 @onTalkStatus 的事件
- handleTalkEvent(event) {
- const payload = event && event.detail ? event.detail : event;
- formatAppLog("log", "at pages/ceshianzhuo.nvue:278", "onTalkStatus event:", payload);
- const status = payload && payload.talkStatus;
- const tips = payload && payload.tips;
- switch ((status || "").toLowerCase()) {
- case "loading":
- uni.showToast({
- title: tips || "对讲连接中...",
- icon: "none"
- });
- this.isTalking = true;
- break;
- case "playing":
- uni.showToast({
- title: tips || "对讲已连接",
- icon: "none"
- });
- this.isTalking = true;
- break;
- case "stopped":
- uni.showToast({
- title: tips || "对讲已停止",
- icon: "none"
- });
- this.isTalking = false;
- break;
- case "failed":
- uni.showToast({
- title: tips || "对讲失败",
- icon: "none"
- });
- this.isTalking = false;
- break;
- default:
- uni.showToast({
- title: tips || "对讲状态: " + (status || "unknown"),
- icon: "none"
- });
- break;
- }
- },
- /* ------------------ 原生结果的内部处理函数(统一处理 callback / event) ------------------ */
- _handleSnapshotResultFromNative(res) {
- if (!res) {
- uni.showToast({
- title: "截图没有返回数据",
- icon: "none"
- });
- return;
- }
- let payload = res;
- if (res.detail)
- payload = res.detail;
- formatAppLog("log", "at pages/ceshianzhuo.nvue:337", "snapshot payload normalized:", payload);
- if (payload.snapShotResult === true || payload.snapShotResult === "true") {
- const url = payload.snapShotUrl || payload.snapShotPath || payload.url;
- uni.showToast({
- title: "截图成功",
- icon: "success",
- duration: 1200
- });
- formatAppLog("log", "at pages/ceshianzhuo.nvue:345", "截图地址:", url);
- if (url) {
- uni.previewImage({
- urls: [url]
- });
- }
- } else {
- const err = payload.snapShotErrorCode || payload.error || "unknown";
- uni.showToast({
- title: "截图失败: " + err,
- icon: "none",
- duration: 2e3
- });
- formatAppLog("warn", "at pages/ceshianzhuo.nvue:360", "snapshot failed reason:", err, payload);
- }
- },
- _handleRecordResultFromNative(res) {
- if (!res) {
- uni.showToast({
- title: "录屏没有返回数据",
- icon: "none"
- });
- this.isRecording = false;
- return;
- }
- let payload = res;
- if (res.detail)
- payload = res.detail;
- formatAppLog("log", "at pages/ceshianzhuo.nvue:377", "record payload normalized:", payload);
- if (payload.recordUrl) {
- uni.showToast({
- title: "录屏完成",
- icon: "success",
- duration: 1400
- });
- formatAppLog("log", "at pages/ceshianzhuo.nvue:386", "录屏地址:", payload.recordUrl);
- this.isRecording = false;
- } else if (payload.recordFailedReason) {
- uni.showToast({
- title: "录屏失败: " + payload.recordFailedReason,
- icon: "none",
- duration: 2e3
- });
- formatAppLog("warn", "at pages/ceshianzhuo.nvue:395", "record failed reason:", payload.recordFailedReason);
- this.isRecording = false;
- } else {
- if (payload.snapShotResult === true) {
- uni.showToast({
- title: "录屏操作已完成(返回未知)",
- icon: "none"
- });
- }
- this.isRecording = false;
- }
- }
- }
-};
-function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
- const _component_MonitorView = resolveComponent("MonitorView");
- const _component_MonitorControlView = resolveComponent("MonitorControlView");
- const _component_button = resolveComponent("button");
- return openBlock(), createElementBlock("scroll-view", {
- scrollY: true,
- showScrollbar: true,
- enableBackToTop: true,
- bubble: "true",
- style: { flexDirection: "column" }
- }, [
- createElementVNode("div", { class: "center-column" }, [
- createVNode(_component_MonitorView, {
- ref: "monitor",
- init: "5",
- style: { "width": "300px", "height": "200px", "margin-top": "20px" },
- onOnTel: $options.handleTelEvent,
- onOnSnapShot: $options.handleSnapShotEvent,
- onOnRecord: $options.handleRecordEvent,
- onOnTalkStatus: $options.handleTalkEvent
- }, null, 8, ["onOnTel", "onOnSnapShot", "onOnRecord", "onOnTalkStatus"]),
- createElementVNode("view", { style: { "display": "flex", "flex-direction": "row", "align-items": "flex-start" } }, [
- createVNode(_component_MonitorControlView, {
- ref: "control",
- init: "5",
- style: { "width": "300px", "height": "300px", "margin-top": "20px" }
- }, null, 512),
- createElementVNode("div", { class: "button-group" }, [
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[0] || (_cache[0] = ($event) => $options.switchDisplay(0))
- }, {
- default: withCtx(() => [
- createTextVNode("原图")
- ]),
- _: 1
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[1] || (_cache[1] = ($event) => $options.switchDisplay(1))
- }, {
- default: withCtx(() => [
- createTextVNode("四分屏")
- ]),
- _: 1
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[2] || (_cache[2] = ($event) => $options.switchDisplay(2))
- }, {
- default: withCtx(() => [
- createTextVNode("180°全景")
- ]),
- _: 1
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[3] || (_cache[3] = ($event) => $options.switchDisplay(3))
- }, {
- default: withCtx(() => [
- createTextVNode("360°全景")
- ]),
- _: 1
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[4] || (_cache[4] = ($event) => $options.switchDisplay(4))
- }, {
- default: withCtx(() => [
- createTextVNode("环状全景")
- ]),
- _: 1
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: $options.startAlarm
- }, {
- default: withCtx(() => [
- createTextVNode("开启手动报警")
- ]),
- _: 1
- }, 8, ["onClick"]),
- createVNode(_component_button, {
- class: "button",
- onClick: $options.stopAlarm
- }, {
- default: withCtx(() => [
- createTextVNode("停止手动报警")
- ]),
- _: 1
- }, 8, ["onClick"]),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[5] || (_cache[5] = ($event) => $options.flipImage(0))
- }, {
- default: withCtx(() => [
- createTextVNode("左右翻转")
- ]),
- _: 1
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[6] || (_cache[6] = ($event) => $options.flipImage(1))
- }, {
- default: withCtx(() => [
- createTextVNode("上下翻转")
- ]),
- _: 1
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[7] || (_cache[7] = ($event) => $options.flipImage(2))
- }, {
- default: withCtx(() => [
- createTextVNode("中心翻转")
- ]),
- _: 1
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[8] || (_cache[8] = ($event) => $options.flipImage(3))
- }, {
- default: withCtx(() => [
- createTextVNode("顺时针90°")
- ]),
- _: 1
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[9] || (_cache[9] = ($event) => $options.flipImage(4))
- }, {
- default: withCtx(() => [
- createTextVNode("逆时针90°")
- ]),
- _: 1
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[10] || (_cache[10] = ($event) => $options.flipImage(5))
- }, {
- default: withCtx(() => [
- createTextVNode("逆时针180°")
- ]),
- _: 1
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[11] || (_cache[11] = ($event) => $options.flipImage(6))
- }, {
- default: withCtx(() => [
- createTextVNode("不翻转")
- ]),
- _: 1
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: $options.resumeOrPause
- }, {
- default: withCtx(() => [
- createTextVNode("暂停/继续")
- ]),
- _: 1
- }, 8, ["onClick"]),
- createVNode(_component_button, {
- class: "button",
- onClick: $options.changeQuality
- }, {
- default: withCtx(() => [
- createTextVNode("切换清晰度")
- ]),
- _: 1
- }, 8, ["onClick"]),
- createVNode(_component_button, {
- class: "button",
- onClick: $options.doSnapshot
- }, {
- default: withCtx(() => [
- createTextVNode("截图")
- ]),
- _: 1
- }, 8, ["onClick"]),
- createVNode(_component_button, {
- class: "button",
- disabled: $data.isRecording,
- onClick: $options.doStartRecord
- }, {
- default: withCtx(() => [
- createTextVNode(" 开始录屏 ")
- ]),
- _: 1
- }, 8, ["disabled", "onClick"]),
- createVNode(_component_button, {
- class: "button",
- disabled: !$data.isRecording,
- onClick: $options.doStopRecord
- }, {
- default: withCtx(() => [
- createTextVNode(" 结束录屏 ")
- ]),
- _: 1
- }, 8, ["disabled", "onClick"]),
- createVNode(_component_button, {
- class: "button",
- disabled: $data.isTalking,
- onClick: $options.doOpenTalk
- }, {
- default: withCtx(() => [
- createTextVNode(" 开始对讲 ")
- ]),
- _: 1
- }, 8, ["disabled", "onClick"]),
- createVNode(_component_button, {
- class: "button",
- disabled: !$data.isTalking,
- onClick: $options.doStopTalk
- }, {
- default: withCtx(() => [
- createTextVNode(" 结束对讲 ")
- ]),
- _: 1
- }, 8, ["disabled", "onClick"]),
- createVNode(_component_button, {
- class: "button",
- onClick: $options.test
- }, {
- default: withCtx(() => [
- createTextVNode("test")
- ]),
- _: 1
- }, 8, ["onClick"])
- ])
- ])
- ])
- ]);
-}
-const ceshianzhuo = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["styles", [_style_0]]]);
-export {
- ceshianzhuo as default
-};
diff --git a/unpackage/dist/build/.nvue/pages/option.js b/unpackage/dist/build/.nvue/pages/option.js
deleted file mode 100644
index eefd3ff..0000000
--- a/unpackage/dist/build/.nvue/pages/option.js
+++ /dev/null
@@ -1,36 +0,0 @@
-import { resolveComponent, openBlock, createElementBlock, createElementVNode, createVNode } from "vue";
-import { _ as _export_sfc } from "../_plugin-vue_export-helper.js";
-const _style_0 = { "center-column": { "": { "width": 170, "height": 170, "borderRadius": 80 } } };
-const _sfc_main = {
- data() {
- return {};
- },
- onLoad() {
- },
- methods: {}
-};
-function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
- const _component_MonitorControlView = resolveComponent("MonitorControlView");
- return openBlock(), createElementBlock("scroll-view", {
- scrollY: true,
- showScrollbar: true,
- enableBackToTop: true,
- bubble: "true",
- style: { flexDirection: "column" }
- }, [
- createElementVNode("div", {
- class: "center-column",
- onClick: _cache[0] || (_cache[0] = (...args) => _ctx.jumptonve && _ctx.jumptonve(...args))
- }, [
- createVNode(_component_MonitorControlView, {
- ref: "monitor",
- init: "5",
- style: { "width": "170px", "height": "170px" }
- }, null, 512)
- ])
- ]);
-}
-const option = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["styles", [_style_0]]]);
-export {
- option as default
-};
diff --git a/unpackage/dist/build/.nvue/uni-app.es.js b/unpackage/dist/build/.nvue/uni-app.es.js
deleted file mode 100644
index ab27474..0000000
--- a/unpackage/dist/build/.nvue/uni-app.es.js
+++ /dev/null
@@ -1,15 +0,0 @@
-import "vue";
-function requireNativePlugin(name) {
- return weex.requireModule(name);
-}
-function formatAppLog(type, filename, ...args) {
- if (uni.__log__) {
- uni.__log__(type, filename, ...args);
- } else {
- console[type].apply(console, [...args, filename]);
- }
-}
-export {
- formatAppLog as f,
- requireNativePlugin as r
-};
diff --git a/unpackage/dist/build/app-plus/app-config-service.js b/unpackage/dist/build/app-plus/app-config-service.js
index 69a726e..cc75e5c 100644
--- a/unpackage/dist/build/app-plus/app-config-service.js
+++ b/unpackage/dist/build/app-plus/app-config-service.js
@@ -2,7 +2,7 @@
;(function(){
let u=void 0,isReady=false,onReadyCallbacks=[],isServiceReady=false,onServiceReadyCallbacks=[];
const __uniConfig = {"pages":[],"globalStyle":{"backgroundColor":"#F8F8F8","bounce":"none","navigationBar":{"backgroundColor":"#F8F8F8","titleText":"uni-app x","type":"default","titleColor":"#000000"},"isNVue":false},"nvue":{"compiler":"uni-app","styleCompiler":"uni-app","flex-direction":"column"},"renderer":"auto","appname":"护理单元","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":true},"compilerVersion":"4.76","entryPagePath":"pages/login/login","entryPageQuery":"","realEntryPagePath":"","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000},"locales":{},"darkmode":false,"themeConfig":{}};
- const __uniRoutes = [{"path":"pages/login/login","meta":{"isQuit":true,"isEntry":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/denglu","meta":{"navigationBar":{"type":"default"},"isNVue":false}},{"path":"pages/ceshianzhuo","meta":{"navigationBar":{"type":"default"},"isNVue":true}},{"path":"pages/index/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Nursing/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/index","meta":{"subNVues":[{"id":"monitorSub","path":"pages/camera","style":{"position":"absolute","left":"250px","top":"120px","width":"600px","height":"450px","background":"transparent"}},{"id":"optionSub","path":"pages/option","style":{"position":"absolute","right":"110px","bottom":"0px","width":"170px","height":"170px","background":"transparent"}}],"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/settings","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/input","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/saoma","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/leida","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/NursingNew/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Warehousing/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Initialization/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/assess/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/timeMatrix/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/timeMatrix/indexnew","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/camera","meta":{"isSubNVue":true,"isNVue":true,"navigationBar":{}}},{"path":"pages/option","meta":{"isSubNVue":true,"isNVue":true,"navigationBar":{}}}].map(uniRoute=>(uniRoute.meta.route=uniRoute.path,__uniConfig.pages.push(uniRoute.path),uniRoute.path='/'+uniRoute.path,uniRoute));
+ const __uniRoutes = [{"path":"pages/login/login","meta":{"isQuit":true,"isEntry":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/denglu","meta":{"navigationBar":{"type":"default"},"isNVue":false}},{"path":"pages/index/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Nursing/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/index","meta":{"subNVues":[{"id":"monitorSub","path":"pages/camera","style":{"position":"absolute","left":"250px","top":"120px","width":"630px","height":"510px","background":"transparent"}}],"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/settings","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/input","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/saoma","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/leida","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/NursingNew/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Warehousing/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Initialization/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/assess/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/timeMatrix/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/timeMatrix/indexnew","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/camera","meta":{"isSubNVue":true,"isNVue":true,"navigationBar":{}}}].map(uniRoute=>(uniRoute.meta.route=uniRoute.path,__uniConfig.pages.push(uniRoute.path),uniRoute.path='/'+uniRoute.path,uniRoute));
__uniConfig.styles=[{"u-relative":{"":{"position":"relative"}},"u-rela":{"":{"position":"relative"}},"u-absolute":{"":{"position":"absolute"}},"u-abso":{"":{"position":"absolute"}},"u-font-xs":{"":{"fontSize":"22rpx"}},"u-font-sm":{"":{"fontSize":"26rpx"}},"u-font-md":{"":{"fontSize":"28rpx"}},"u-font-lg":{"":{"fontSize":"30rpx"}},"u-font-xl":{"":{"fontSize":"34rpx"}},"u-flex":{"":{"flexDirection":"row","alignItems":"center"}},"u-flex-wrap":{"":{"flexWrap":"wrap"}},"u-flex-nowrap":{"":{"flexWrap":"nowrap"}},"u-col-center":{"":{"alignItems":"center"}},"u-col-top":{"":{"alignItems":"flex-start"}},"u-col-bottom":{"":{"alignItems":"flex-end"}},"u-row-center":{"":{"justifyContent":"center"}},"u-row-left":{"":{"justifyContent":"flex-start"}},"u-row-right":{"":{"justifyContent":"flex-end"}},"u-row-between":{"":{"justifyContent":"space-between"}},"u-row-around":{"":{"justifyContent":"space-around"}},"u-text-left":{"":{"textAlign":"left"}},"u-text-center":{"":{"textAlign":"center"}},"u-text-right":{"":{"textAlign":"right"}},"u-flex-col":{"":{"flexDirection":"column"}},"u-flex-0":{"":{"flex":0}},"u-flex-1":{"":{"flex":1}},"u-flex-2":{"":{"flex":2}},"u-flex-3":{"":{"flex":3}},"u-flex-4":{"":{"flex":4}},"u-flex-5":{"":{"flex":5}},"u-flex-6":{"":{"flex":6}},"u-flex-7":{"":{"flex":7}},"u-flex-8":{"":{"flex":8}},"u-flex-9":{"":{"flex":9}},"u-flex-10":{"":{"flex":10}},"u-flex-11":{"":{"flex":11}},"u-flex-12":{"":{"flex":12}},"u-font-9":{"":{"fontSize":9}},"u-font-10":{"":{"fontSize":10}},"u-font-11":{"":{"fontSize":11}},"u-font-12":{"":{"fontSize":12}},"u-font-13":{"":{"fontSize":13}},"u-font-14":{"":{"fontSize":14}},"u-font-15":{"":{"fontSize":15}},"u-font-16":{"":{"fontSize":16}},"u-font-17":{"":{"fontSize":17}},"u-font-18":{"":{"fontSize":18}},"u-font-19":{"":{"fontSize":19}},"u-font-20":{"":{"fontSize":"20rpx"}},"u-font-21":{"":{"fontSize":"21rpx"}},"u-font-22":{"":{"fontSize":"22rpx"}},"u-font-23":{"":{"fontSize":"23rpx"}},"u-font-24":{"":{"fontSize":"24rpx"}},"u-font-25":{"":{"fontSize":"25rpx"}},"u-font-26":{"":{"fontSize":"26rpx"}},"u-font-27":{"":{"fontSize":"27rpx"}},"u-font-28":{"":{"fontSize":"28rpx"}},"u-font-29":{"":{"fontSize":"29rpx"}},"u-font-30":{"":{"fontSize":"30rpx"}},"u-font-31":{"":{"fontSize":"31rpx"}},"u-font-32":{"":{"fontSize":"32rpx"}},"u-font-33":{"":{"fontSize":"33rpx"}},"u-font-34":{"":{"fontSize":"34rpx"}},"u-font-35":{"":{"fontSize":"35rpx"}},"u-font-36":{"":{"fontSize":"36rpx"}},"u-font-37":{"":{"fontSize":"37rpx"}},"u-font-38":{"":{"fontSize":"38rpx"}},"u-font-39":{"":{"fontSize":"39rpx"}},"u-font-40":{"":{"fontSize":"40rpx"}},"u-margin-0":{"":{"!marginTop":"0rpx","!marginRight":"0rpx","!marginBottom":"0rpx","!marginLeft":"0rpx"}},"u-m-0":{"":{"!marginTop":"0rpx","!marginRight":"0rpx","!marginBottom":"0rpx","!marginLeft":"0rpx"}},"u-padding-0":{"":{"!paddingTop":"0rpx","!paddingRight":"0rpx","!paddingBottom":"0rpx","!paddingLeft":"0rpx"}},"u-p-0":{"":{"!paddingTop":"0rpx","!paddingRight":"0rpx","!paddingBottom":"0rpx","!paddingLeft":"0rpx"}},"u-m-l-0":{"":{"!marginLeft":"0rpx"}},"u-p-l-0":{"":{"!paddingLeft":"0rpx"}},"u-margin-left-0":{"":{"!marginLeft":"0rpx"}},"u-padding-left-0":{"":{"!paddingLeft":"0rpx"}},"u-m-t-0":{"":{"!marginTop":"0rpx"}},"u-p-t-0":{"":{"!paddingTop":"0rpx"}},"u-margin-top-0":{"":{"!marginTop":"0rpx"}},"u-padding-top-0":{"":{"!paddingTop":"0rpx"}},"u-m-r-0":{"":{"!marginRight":"0rpx"}},"u-p-r-0":{"":{"!paddingRight":"0rpx"}},"u-margin-right-0":{"":{"!marginRight":"0rpx"}},"u-padding-right-0":{"":{"!paddingRight":"0rpx"}},"u-m-b-0":{"":{"!marginBottom":"0rpx"}},"u-p-b-0":{"":{"!paddingBottom":"0rpx"}},"u-margin-bottom-0":{"":{"!marginBottom":"0rpx"}},"u-padding-bottom-0":{"":{"!paddingBottom":"0rpx"}},"u-margin-2":{"":{"!marginTop":"2rpx","!marginRight":"2rpx","!marginBottom":"2rpx","!marginLeft":"2rpx"}},"u-m-2":{"":{"!marginTop":"2rpx","!marginRight":"2rpx","!marginBottom":"2rpx","!marginLeft":"2rpx"}},"u-padding-2":{"":{"!paddingTop":"2rpx","!paddingRight":"2rpx","!paddingBottom":"2rpx","!paddingLeft":"2rpx"}},"u-p-2":{"":{"!paddingTop":"2rpx","!paddingRight":"2rpx","!paddingBottom":"2rpx","!paddingLeft":"2rpx"}},"u-m-l-2":{"":{"!marginLeft":"2rpx"}},"u-p-l-2":{"":{"!paddingLeft":"2rpx"}},"u-margin-left-2":{"":{"!marginLeft":"2rpx"}},"u-padding-left-2":{"":{"!paddingLeft":"2rpx"}},"u-m-t-2":{"":{"!marginTop":"2rpx"}},"u-p-t-2":{"":{"!paddingTop":"2rpx"}},"u-margin-top-2":{"":{"!marginTop":"2rpx"}},"u-padding-top-2":{"":{"!paddingTop":"2rpx"}},"u-m-r-2":{"":{"!marginRight":"2rpx"}},"u-p-r-2":{"":{"!paddingRight":"2rpx"}},"u-margin-right-2":{"":{"!marginRight":"2rpx"}},"u-padding-right-2":{"":{"!paddingRight":"2rpx"}},"u-m-b-2":{"":{"!marginBottom":"2rpx"}},"u-p-b-2":{"":{"!paddingBottom":"2rpx"}},"u-margin-bottom-2":{"":{"!marginBottom":"2rpx"}},"u-padding-bottom-2":{"":{"!paddingBottom":"2rpx"}},"u-margin-4":{"":{"!marginTop":"4rpx","!marginRight":"4rpx","!marginBottom":"4rpx","!marginLeft":"4rpx"}},"u-m-4":{"":{"!marginTop":"4rpx","!marginRight":"4rpx","!marginBottom":"4rpx","!marginLeft":"4rpx"}},"u-padding-4":{"":{"!paddingTop":"4rpx","!paddingRight":"4rpx","!paddingBottom":"4rpx","!paddingLeft":"4rpx"}},"u-p-4":{"":{"!paddingTop":"4rpx","!paddingRight":"4rpx","!paddingBottom":"4rpx","!paddingLeft":"4rpx"}},"u-m-l-4":{"":{"!marginLeft":"4rpx"}},"u-p-l-4":{"":{"!paddingLeft":"4rpx"}},"u-margin-left-4":{"":{"!marginLeft":"4rpx"}},"u-padding-left-4":{"":{"!paddingLeft":"4rpx"}},"u-m-t-4":{"":{"!marginTop":"4rpx"}},"u-p-t-4":{"":{"!paddingTop":"4rpx"}},"u-margin-top-4":{"":{"!marginTop":"4rpx"}},"u-padding-top-4":{"":{"!paddingTop":"4rpx"}},"u-m-r-4":{"":{"!marginRight":"4rpx"}},"u-p-r-4":{"":{"!paddingRight":"4rpx"}},"u-margin-right-4":{"":{"!marginRight":"4rpx"}},"u-padding-right-4":{"":{"!paddingRight":"4rpx"}},"u-m-b-4":{"":{"!marginBottom":"4rpx"}},"u-p-b-4":{"":{"!paddingBottom":"4rpx"}},"u-margin-bottom-4":{"":{"!marginBottom":"4rpx"}},"u-padding-bottom-4":{"":{"!paddingBottom":"4rpx"}},"u-margin-5":{"":{"!marginTop":"5rpx","!marginRight":"5rpx","!marginBottom":"5rpx","!marginLeft":"5rpx"}},"u-m-5":{"":{"!marginTop":"5rpx","!marginRight":"5rpx","!marginBottom":"5rpx","!marginLeft":"5rpx"}},"u-padding-5":{"":{"!paddingTop":"5rpx","!paddingRight":"5rpx","!paddingBottom":"5rpx","!paddingLeft":"5rpx"}},"u-p-5":{"":{"!paddingTop":"5rpx","!paddingRight":"5rpx","!paddingBottom":"5rpx","!paddingLeft":"5rpx"}},"u-m-l-5":{"":{"!marginLeft":"5rpx"}},"u-p-l-5":{"":{"!paddingLeft":"5rpx"}},"u-margin-left-5":{"":{"!marginLeft":"5rpx"}},"u-padding-left-5":{"":{"!paddingLeft":"5rpx"}},"u-m-t-5":{"":{"!marginTop":"5rpx"}},"u-p-t-5":{"":{"!paddingTop":"5rpx"}},"u-margin-top-5":{"":{"!marginTop":"5rpx"}},"u-padding-top-5":{"":{"!paddingTop":"5rpx"}},"u-m-r-5":{"":{"!marginRight":"5rpx"}},"u-p-r-5":{"":{"!paddingRight":"5rpx"}},"u-margin-right-5":{"":{"!marginRight":"5rpx"}},"u-padding-right-5":{"":{"!paddingRight":"5rpx"}},"u-m-b-5":{"":{"!marginBottom":"5rpx"}},"u-p-b-5":{"":{"!paddingBottom":"5rpx"}},"u-margin-bottom-5":{"":{"!marginBottom":"5rpx"}},"u-padding-bottom-5":{"":{"!paddingBottom":"5rpx"}},"u-margin-6":{"":{"!marginTop":"6rpx","!marginRight":"6rpx","!marginBottom":"6rpx","!marginLeft":"6rpx"}},"u-m-6":{"":{"!marginTop":"6rpx","!marginRight":"6rpx","!marginBottom":"6rpx","!marginLeft":"6rpx"}},"u-padding-6":{"":{"!paddingTop":"6rpx","!paddingRight":"6rpx","!paddingBottom":"6rpx","!paddingLeft":"6rpx"}},"u-p-6":{"":{"!paddingTop":"6rpx","!paddingRight":"6rpx","!paddingBottom":"6rpx","!paddingLeft":"6rpx"}},"u-m-l-6":{"":{"!marginLeft":"6rpx"}},"u-p-l-6":{"":{"!paddingLeft":"6rpx"}},"u-margin-left-6":{"":{"!marginLeft":"6rpx"}},"u-padding-left-6":{"":{"!paddingLeft":"6rpx"}},"u-m-t-6":{"":{"!marginTop":"6rpx"}},"u-p-t-6":{"":{"!paddingTop":"6rpx"}},"u-margin-top-6":{"":{"!marginTop":"6rpx"}},"u-padding-top-6":{"":{"!paddingTop":"6rpx"}},"u-m-r-6":{"":{"!marginRight":"6rpx"}},"u-p-r-6":{"":{"!paddingRight":"6rpx"}},"u-margin-right-6":{"":{"!marginRight":"6rpx"}},"u-padding-right-6":{"":{"!paddingRight":"6rpx"}},"u-m-b-6":{"":{"!marginBottom":"6rpx"}},"u-p-b-6":{"":{"!paddingBottom":"6rpx"}},"u-margin-bottom-6":{"":{"!marginBottom":"6rpx"}},"u-padding-bottom-6":{"":{"!paddingBottom":"6rpx"}},"u-margin-8":{"":{"!marginTop":"8rpx","!marginRight":"8rpx","!marginBottom":"8rpx","!marginLeft":"8rpx"}},"u-m-8":{"":{"!marginTop":"8rpx","!marginRight":"8rpx","!marginBottom":"8rpx","!marginLeft":"8rpx"}},"u-padding-8":{"":{"!paddingTop":"8rpx","!paddingRight":"8rpx","!paddingBottom":"8rpx","!paddingLeft":"8rpx"}},"u-p-8":{"":{"!paddingTop":"8rpx","!paddingRight":"8rpx","!paddingBottom":"8rpx","!paddingLeft":"8rpx"}},"u-m-l-8":{"":{"!marginLeft":"8rpx"}},"u-p-l-8":{"":{"!paddingLeft":"8rpx"}},"u-margin-left-8":{"":{"!marginLeft":"8rpx"}},"u-padding-left-8":{"":{"!paddingLeft":"8rpx"}},"u-m-t-8":{"":{"!marginTop":"8rpx"}},"u-p-t-8":{"":{"!paddingTop":"8rpx"}},"u-margin-top-8":{"":{"!marginTop":"8rpx"}},"u-padding-top-8":{"":{"!paddingTop":"8rpx"}},"u-m-r-8":{"":{"!marginRight":"8rpx"}},"u-p-r-8":{"":{"!paddingRight":"8rpx"}},"u-margin-right-8":{"":{"!marginRight":"8rpx"}},"u-padding-right-8":{"":{"!paddingRight":"8rpx"}},"u-m-b-8":{"":{"!marginBottom":"8rpx"}},"u-p-b-8":{"":{"!paddingBottom":"8rpx"}},"u-margin-bottom-8":{"":{"!marginBottom":"8rpx"}},"u-padding-bottom-8":{"":{"!paddingBottom":"8rpx"}},"u-margin-10":{"":{"!marginTop":"10rpx","!marginRight":"10rpx","!marginBottom":"10rpx","!marginLeft":"10rpx"}},"u-m-10":{"":{"!marginTop":"10rpx","!marginRight":"10rpx","!marginBottom":"10rpx","!marginLeft":"10rpx"}},"u-padding-10":{"":{"!paddingTop":"10rpx","!paddingRight":"10rpx","!paddingBottom":"10rpx","!paddingLeft":"10rpx"}},"u-p-10":{"":{"!paddingTop":"10rpx","!paddingRight":"10rpx","!paddingBottom":"10rpx","!paddingLeft":"10rpx"}},"u-m-l-10":{"":{"!marginLeft":"10rpx"}},"u-p-l-10":{"":{"!paddingLeft":"10rpx"}},"u-margin-left-10":{"":{"!marginLeft":"10rpx"}},"u-padding-left-10":{"":{"!paddingLeft":"10rpx"}},"u-m-t-10":{"":{"!marginTop":"10rpx"}},"u-p-t-10":{"":{"!paddingTop":"10rpx"}},"u-margin-top-10":{"":{"!marginTop":"10rpx"}},"u-padding-top-10":{"":{"!paddingTop":"10rpx"}},"u-m-r-10":{"":{"!marginRight":"10rpx"}},"u-p-r-10":{"":{"!paddingRight":"10rpx"}},"u-margin-right-10":{"":{"!marginRight":"10rpx"}},"u-padding-right-10":{"":{"!paddingRight":"10rpx"}},"u-m-b-10":{"":{"!marginBottom":"10rpx"}},"u-p-b-10":{"":{"!paddingBottom":"10rpx"}},"u-margin-bottom-10":{"":{"!marginBottom":"10rpx"}},"u-padding-bottom-10":{"":{"!paddingBottom":"10rpx"}},"u-margin-12":{"":{"!marginTop":"12rpx","!marginRight":"12rpx","!marginBottom":"12rpx","!marginLeft":"12rpx"}},"u-m-12":{"":{"!marginTop":"12rpx","!marginRight":"12rpx","!marginBottom":"12rpx","!marginLeft":"12rpx"}},"u-padding-12":{"":{"!paddingTop":"12rpx","!paddingRight":"12rpx","!paddingBottom":"12rpx","!paddingLeft":"12rpx"}},"u-p-12":{"":{"!paddingTop":"12rpx","!paddingRight":"12rpx","!paddingBottom":"12rpx","!paddingLeft":"12rpx"}},"u-m-l-12":{"":{"!marginLeft":"12rpx"}},"u-p-l-12":{"":{"!paddingLeft":"12rpx"}},"u-margin-left-12":{"":{"!marginLeft":"12rpx"}},"u-padding-left-12":{"":{"!paddingLeft":"12rpx"}},"u-m-t-12":{"":{"!marginTop":"12rpx"}},"u-p-t-12":{"":{"!paddingTop":"12rpx"}},"u-margin-top-12":{"":{"!marginTop":"12rpx"}},"u-padding-top-12":{"":{"!paddingTop":"12rpx"}},"u-m-r-12":{"":{"!marginRight":"12rpx"}},"u-p-r-12":{"":{"!paddingRight":"12rpx"}},"u-margin-right-12":{"":{"!marginRight":"12rpx"}},"u-padding-right-12":{"":{"!paddingRight":"12rpx"}},"u-m-b-12":{"":{"!marginBottom":"12rpx"}},"u-p-b-12":{"":{"!paddingBottom":"12rpx"}},"u-margin-bottom-12":{"":{"!marginBottom":"12rpx"}},"u-padding-bottom-12":{"":{"!paddingBottom":"12rpx"}},"u-margin-14":{"":{"!marginTop":"14rpx","!marginRight":"14rpx","!marginBottom":"14rpx","!marginLeft":"14rpx"}},"u-m-14":{"":{"!marginTop":"14rpx","!marginRight":"14rpx","!marginBottom":"14rpx","!marginLeft":"14rpx"}},"u-padding-14":{"":{"!paddingTop":"14rpx","!paddingRight":"14rpx","!paddingBottom":"14rpx","!paddingLeft":"14rpx"}},"u-p-14":{"":{"!paddingTop":"14rpx","!paddingRight":"14rpx","!paddingBottom":"14rpx","!paddingLeft":"14rpx"}},"u-m-l-14":{"":{"!marginLeft":"14rpx"}},"u-p-l-14":{"":{"!paddingLeft":"14rpx"}},"u-margin-left-14":{"":{"!marginLeft":"14rpx"}},"u-padding-left-14":{"":{"!paddingLeft":"14rpx"}},"u-m-t-14":{"":{"!marginTop":"14rpx"}},"u-p-t-14":{"":{"!paddingTop":"14rpx"}},"u-margin-top-14":{"":{"!marginTop":"14rpx"}},"u-padding-top-14":{"":{"!paddingTop":"14rpx"}},"u-m-r-14":{"":{"!marginRight":"14rpx"}},"u-p-r-14":{"":{"!paddingRight":"14rpx"}},"u-margin-right-14":{"":{"!marginRight":"14rpx"}},"u-padding-right-14":{"":{"!paddingRight":"14rpx"}},"u-m-b-14":{"":{"!marginBottom":"14rpx"}},"u-p-b-14":{"":{"!paddingBottom":"14rpx"}},"u-margin-bottom-14":{"":{"!marginBottom":"14rpx"}},"u-padding-bottom-14":{"":{"!paddingBottom":"14rpx"}},"u-margin-15":{"":{"!marginTop":"15rpx","!marginRight":"15rpx","!marginBottom":"15rpx","!marginLeft":"15rpx"}},"u-m-15":{"":{"!marginTop":"15rpx","!marginRight":"15rpx","!marginBottom":"15rpx","!marginLeft":"15rpx"}},"u-padding-15":{"":{"!paddingTop":"15rpx","!paddingRight":"15rpx","!paddingBottom":"15rpx","!paddingLeft":"15rpx"}},"u-p-15":{"":{"!paddingTop":"15rpx","!paddingRight":"15rpx","!paddingBottom":"15rpx","!paddingLeft":"15rpx"}},"u-m-l-15":{"":{"!marginLeft":"15rpx"}},"u-p-l-15":{"":{"!paddingLeft":"15rpx"}},"u-margin-left-15":{"":{"!marginLeft":"15rpx"}},"u-padding-left-15":{"":{"!paddingLeft":"15rpx"}},"u-m-t-15":{"":{"!marginTop":"15rpx"}},"u-p-t-15":{"":{"!paddingTop":"15rpx"}},"u-margin-top-15":{"":{"!marginTop":"15rpx"}},"u-padding-top-15":{"":{"!paddingTop":"15rpx"}},"u-m-r-15":{"":{"!marginRight":"15rpx"}},"u-p-r-15":{"":{"!paddingRight":"15rpx"}},"u-margin-right-15":{"":{"!marginRight":"15rpx"}},"u-padding-right-15":{"":{"!paddingRight":"15rpx"}},"u-m-b-15":{"":{"!marginBottom":"15rpx"}},"u-p-b-15":{"":{"!paddingBottom":"15rpx"}},"u-margin-bottom-15":{"":{"!marginBottom":"15rpx"}},"u-padding-bottom-15":{"":{"!paddingBottom":"15rpx"}},"u-margin-16":{"":{"!marginTop":"16rpx","!marginRight":"16rpx","!marginBottom":"16rpx","!marginLeft":"16rpx"}},"u-m-16":{"":{"!marginTop":"16rpx","!marginRight":"16rpx","!marginBottom":"16rpx","!marginLeft":"16rpx"}},"u-padding-16":{"":{"!paddingTop":"16rpx","!paddingRight":"16rpx","!paddingBottom":"16rpx","!paddingLeft":"16rpx"}},"u-p-16":{"":{"!paddingTop":"16rpx","!paddingRight":"16rpx","!paddingBottom":"16rpx","!paddingLeft":"16rpx"}},"u-m-l-16":{"":{"!marginLeft":"16rpx"}},"u-p-l-16":{"":{"!paddingLeft":"16rpx"}},"u-margin-left-16":{"":{"!marginLeft":"16rpx"}},"u-padding-left-16":{"":{"!paddingLeft":"16rpx"}},"u-m-t-16":{"":{"!marginTop":"16rpx"}},"u-p-t-16":{"":{"!paddingTop":"16rpx"}},"u-margin-top-16":{"":{"!marginTop":"16rpx"}},"u-padding-top-16":{"":{"!paddingTop":"16rpx"}},"u-m-r-16":{"":{"!marginRight":"16rpx"}},"u-p-r-16":{"":{"!paddingRight":"16rpx"}},"u-margin-right-16":{"":{"!marginRight":"16rpx"}},"u-padding-right-16":{"":{"!paddingRight":"16rpx"}},"u-m-b-16":{"":{"!marginBottom":"16rpx"}},"u-p-b-16":{"":{"!paddingBottom":"16rpx"}},"u-margin-bottom-16":{"":{"!marginBottom":"16rpx"}},"u-padding-bottom-16":{"":{"!paddingBottom":"16rpx"}},"u-margin-18":{"":{"!marginTop":"18rpx","!marginRight":"18rpx","!marginBottom":"18rpx","!marginLeft":"18rpx"}},"u-m-18":{"":{"!marginTop":"18rpx","!marginRight":"18rpx","!marginBottom":"18rpx","!marginLeft":"18rpx"}},"u-padding-18":{"":{"!paddingTop":"18rpx","!paddingRight":"18rpx","!paddingBottom":"18rpx","!paddingLeft":"18rpx"}},"u-p-18":{"":{"!paddingTop":"18rpx","!paddingRight":"18rpx","!paddingBottom":"18rpx","!paddingLeft":"18rpx"}},"u-m-l-18":{"":{"!marginLeft":"18rpx"}},"u-p-l-18":{"":{"!paddingLeft":"18rpx"}},"u-margin-left-18":{"":{"!marginLeft":"18rpx"}},"u-padding-left-18":{"":{"!paddingLeft":"18rpx"}},"u-m-t-18":{"":{"!marginTop":"18rpx"}},"u-p-t-18":{"":{"!paddingTop":"18rpx"}},"u-margin-top-18":{"":{"!marginTop":"18rpx"}},"u-padding-top-18":{"":{"!paddingTop":"18rpx"}},"u-m-r-18":{"":{"!marginRight":"18rpx"}},"u-p-r-18":{"":{"!paddingRight":"18rpx"}},"u-margin-right-18":{"":{"!marginRight":"18rpx"}},"u-padding-right-18":{"":{"!paddingRight":"18rpx"}},"u-m-b-18":{"":{"!marginBottom":"18rpx"}},"u-p-b-18":{"":{"!paddingBottom":"18rpx"}},"u-margin-bottom-18":{"":{"!marginBottom":"18rpx"}},"u-padding-bottom-18":{"":{"!paddingBottom":"18rpx"}},"u-margin-20":{"":{"!marginTop":"20rpx","!marginRight":"20rpx","!marginBottom":"20rpx","!marginLeft":"20rpx"}},"u-m-20":{"":{"!marginTop":"20rpx","!marginRight":"20rpx","!marginBottom":"20rpx","!marginLeft":"20rpx"}},"u-padding-20":{"":{"!paddingTop":"20rpx","!paddingRight":"20rpx","!paddingBottom":"20rpx","!paddingLeft":"20rpx"}},"u-p-20":{"":{"!paddingTop":"20rpx","!paddingRight":"20rpx","!paddingBottom":"20rpx","!paddingLeft":"20rpx"}},"u-m-l-20":{"":{"!marginLeft":"20rpx"}},"u-p-l-20":{"":{"!paddingLeft":"20rpx"}},"u-margin-left-20":{"":{"!marginLeft":"20rpx"}},"u-padding-left-20":{"":{"!paddingLeft":"20rpx"}},"u-m-t-20":{"":{"!marginTop":"20rpx"}},"u-p-t-20":{"":{"!paddingTop":"20rpx"}},"u-margin-top-20":{"":{"!marginTop":"20rpx"}},"u-padding-top-20":{"":{"!paddingTop":"20rpx"}},"u-m-r-20":{"":{"!marginRight":"20rpx"}},"u-p-r-20":{"":{"!paddingRight":"20rpx"}},"u-margin-right-20":{"":{"!marginRight":"20rpx"}},"u-padding-right-20":{"":{"!paddingRight":"20rpx"}},"u-m-b-20":{"":{"!marginBottom":"20rpx"}},"u-p-b-20":{"":{"!paddingBottom":"20rpx"}},"u-margin-bottom-20":{"":{"!marginBottom":"20rpx"}},"u-padding-bottom-20":{"":{"!paddingBottom":"20rpx"}},"u-margin-22":{"":{"!marginTop":"22rpx","!marginRight":"22rpx","!marginBottom":"22rpx","!marginLeft":"22rpx"}},"u-m-22":{"":{"!marginTop":"22rpx","!marginRight":"22rpx","!marginBottom":"22rpx","!marginLeft":"22rpx"}},"u-padding-22":{"":{"!paddingTop":"22rpx","!paddingRight":"22rpx","!paddingBottom":"22rpx","!paddingLeft":"22rpx"}},"u-p-22":{"":{"!paddingTop":"22rpx","!paddingRight":"22rpx","!paddingBottom":"22rpx","!paddingLeft":"22rpx"}},"u-m-l-22":{"":{"!marginLeft":"22rpx"}},"u-p-l-22":{"":{"!paddingLeft":"22rpx"}},"u-margin-left-22":{"":{"!marginLeft":"22rpx"}},"u-padding-left-22":{"":{"!paddingLeft":"22rpx"}},"u-m-t-22":{"":{"!marginTop":"22rpx"}},"u-p-t-22":{"":{"!paddingTop":"22rpx"}},"u-margin-top-22":{"":{"!marginTop":"22rpx"}},"u-padding-top-22":{"":{"!paddingTop":"22rpx"}},"u-m-r-22":{"":{"!marginRight":"22rpx"}},"u-p-r-22":{"":{"!paddingRight":"22rpx"}},"u-margin-right-22":{"":{"!marginRight":"22rpx"}},"u-padding-right-22":{"":{"!paddingRight":"22rpx"}},"u-m-b-22":{"":{"!marginBottom":"22rpx"}},"u-p-b-22":{"":{"!paddingBottom":"22rpx"}},"u-margin-bottom-22":{"":{"!marginBottom":"22rpx"}},"u-padding-bottom-22":{"":{"!paddingBottom":"22rpx"}},"u-margin-24":{"":{"!marginTop":"24rpx","!marginRight":"24rpx","!marginBottom":"24rpx","!marginLeft":"24rpx"}},"u-m-24":{"":{"!marginTop":"24rpx","!marginRight":"24rpx","!marginBottom":"24rpx","!marginLeft":"24rpx"}},"u-padding-24":{"":{"!paddingTop":"24rpx","!paddingRight":"24rpx","!paddingBottom":"24rpx","!paddingLeft":"24rpx"}},"u-p-24":{"":{"!paddingTop":"24rpx","!paddingRight":"24rpx","!paddingBottom":"24rpx","!paddingLeft":"24rpx"}},"u-m-l-24":{"":{"!marginLeft":"24rpx"}},"u-p-l-24":{"":{"!paddingLeft":"24rpx"}},"u-margin-left-24":{"":{"!marginLeft":"24rpx"}},"u-padding-left-24":{"":{"!paddingLeft":"24rpx"}},"u-m-t-24":{"":{"!marginTop":"24rpx"}},"u-p-t-24":{"":{"!paddingTop":"24rpx"}},"u-margin-top-24":{"":{"!marginTop":"24rpx"}},"u-padding-top-24":{"":{"!paddingTop":"24rpx"}},"u-m-r-24":{"":{"!marginRight":"24rpx"}},"u-p-r-24":{"":{"!paddingRight":"24rpx"}},"u-margin-right-24":{"":{"!marginRight":"24rpx"}},"u-padding-right-24":{"":{"!paddingRight":"24rpx"}},"u-m-b-24":{"":{"!marginBottom":"24rpx"}},"u-p-b-24":{"":{"!paddingBottom":"24rpx"}},"u-margin-bottom-24":{"":{"!marginBottom":"24rpx"}},"u-padding-bottom-24":{"":{"!paddingBottom":"24rpx"}},"u-margin-25":{"":{"!marginTop":"25rpx","!marginRight":"25rpx","!marginBottom":"25rpx","!marginLeft":"25rpx"}},"u-m-25":{"":{"!marginTop":"25rpx","!marginRight":"25rpx","!marginBottom":"25rpx","!marginLeft":"25rpx"}},"u-padding-25":{"":{"!paddingTop":"25rpx","!paddingRight":"25rpx","!paddingBottom":"25rpx","!paddingLeft":"25rpx"}},"u-p-25":{"":{"!paddingTop":"25rpx","!paddingRight":"25rpx","!paddingBottom":"25rpx","!paddingLeft":"25rpx"}},"u-m-l-25":{"":{"!marginLeft":"25rpx"}},"u-p-l-25":{"":{"!paddingLeft":"25rpx"}},"u-margin-left-25":{"":{"!marginLeft":"25rpx"}},"u-padding-left-25":{"":{"!paddingLeft":"25rpx"}},"u-m-t-25":{"":{"!marginTop":"25rpx"}},"u-p-t-25":{"":{"!paddingTop":"25rpx"}},"u-margin-top-25":{"":{"!marginTop":"25rpx"}},"u-padding-top-25":{"":{"!paddingTop":"25rpx"}},"u-m-r-25":{"":{"!marginRight":"25rpx"}},"u-p-r-25":{"":{"!paddingRight":"25rpx"}},"u-margin-right-25":{"":{"!marginRight":"25rpx"}},"u-padding-right-25":{"":{"!paddingRight":"25rpx"}},"u-m-b-25":{"":{"!marginBottom":"25rpx"}},"u-p-b-25":{"":{"!paddingBottom":"25rpx"}},"u-margin-bottom-25":{"":{"!marginBottom":"25rpx"}},"u-padding-bottom-25":{"":{"!paddingBottom":"25rpx"}},"u-margin-26":{"":{"!marginTop":"26rpx","!marginRight":"26rpx","!marginBottom":"26rpx","!marginLeft":"26rpx"}},"u-m-26":{"":{"!marginTop":"26rpx","!marginRight":"26rpx","!marginBottom":"26rpx","!marginLeft":"26rpx"}},"u-padding-26":{"":{"!paddingTop":"26rpx","!paddingRight":"26rpx","!paddingBottom":"26rpx","!paddingLeft":"26rpx"}},"u-p-26":{"":{"!paddingTop":"26rpx","!paddingRight":"26rpx","!paddingBottom":"26rpx","!paddingLeft":"26rpx"}},"u-m-l-26":{"":{"!marginLeft":"26rpx"}},"u-p-l-26":{"":{"!paddingLeft":"26rpx"}},"u-margin-left-26":{"":{"!marginLeft":"26rpx"}},"u-padding-left-26":{"":{"!paddingLeft":"26rpx"}},"u-m-t-26":{"":{"!marginTop":"26rpx"}},"u-p-t-26":{"":{"!paddingTop":"26rpx"}},"u-margin-top-26":{"":{"!marginTop":"26rpx"}},"u-padding-top-26":{"":{"!paddingTop":"26rpx"}},"u-m-r-26":{"":{"!marginRight":"26rpx"}},"u-p-r-26":{"":{"!paddingRight":"26rpx"}},"u-margin-right-26":{"":{"!marginRight":"26rpx"}},"u-padding-right-26":{"":{"!paddingRight":"26rpx"}},"u-m-b-26":{"":{"!marginBottom":"26rpx"}},"u-p-b-26":{"":{"!paddingBottom":"26rpx"}},"u-margin-bottom-26":{"":{"!marginBottom":"26rpx"}},"u-padding-bottom-26":{"":{"!paddingBottom":"26rpx"}},"u-margin-28":{"":{"!marginTop":"28rpx","!marginRight":"28rpx","!marginBottom":"28rpx","!marginLeft":"28rpx"}},"u-m-28":{"":{"!marginTop":"28rpx","!marginRight":"28rpx","!marginBottom":"28rpx","!marginLeft":"28rpx"}},"u-padding-28":{"":{"!paddingTop":"28rpx","!paddingRight":"28rpx","!paddingBottom":"28rpx","!paddingLeft":"28rpx"}},"u-p-28":{"":{"!paddingTop":"28rpx","!paddingRight":"28rpx","!paddingBottom":"28rpx","!paddingLeft":"28rpx"}},"u-m-l-28":{"":{"!marginLeft":"28rpx"}},"u-p-l-28":{"":{"!paddingLeft":"28rpx"}},"u-margin-left-28":{"":{"!marginLeft":"28rpx"}},"u-padding-left-28":{"":{"!paddingLeft":"28rpx"}},"u-m-t-28":{"":{"!marginTop":"28rpx"}},"u-p-t-28":{"":{"!paddingTop":"28rpx"}},"u-margin-top-28":{"":{"!marginTop":"28rpx"}},"u-padding-top-28":{"":{"!paddingTop":"28rpx"}},"u-m-r-28":{"":{"!marginRight":"28rpx"}},"u-p-r-28":{"":{"!paddingRight":"28rpx"}},"u-margin-right-28":{"":{"!marginRight":"28rpx"}},"u-padding-right-28":{"":{"!paddingRight":"28rpx"}},"u-m-b-28":{"":{"!marginBottom":"28rpx"}},"u-p-b-28":{"":{"!paddingBottom":"28rpx"}},"u-margin-bottom-28":{"":{"!marginBottom":"28rpx"}},"u-padding-bottom-28":{"":{"!paddingBottom":"28rpx"}},"u-margin-30":{"":{"!marginTop":"30rpx","!marginRight":"30rpx","!marginBottom":"30rpx","!marginLeft":"30rpx"}},"u-m-30":{"":{"!marginTop":"30rpx","!marginRight":"30rpx","!marginBottom":"30rpx","!marginLeft":"30rpx"}},"u-padding-30":{"":{"!paddingTop":"30rpx","!paddingRight":"30rpx","!paddingBottom":"30rpx","!paddingLeft":"30rpx"}},"u-p-30":{"":{"!paddingTop":"30rpx","!paddingRight":"30rpx","!paddingBottom":"30rpx","!paddingLeft":"30rpx"}},"u-m-l-30":{"":{"!marginLeft":"30rpx"}},"u-p-l-30":{"":{"!paddingLeft":"30rpx"}},"u-margin-left-30":{"":{"!marginLeft":"30rpx"}},"u-padding-left-30":{"":{"!paddingLeft":"30rpx"}},"u-m-t-30":{"":{"!marginTop":"30rpx"}},"u-p-t-30":{"":{"!paddingTop":"30rpx"}},"u-margin-top-30":{"":{"!marginTop":"30rpx"}},"u-padding-top-30":{"":{"!paddingTop":"30rpx"}},"u-m-r-30":{"":{"!marginRight":"30rpx"}},"u-p-r-30":{"":{"!paddingRight":"30rpx"}},"u-margin-right-30":{"":{"!marginRight":"30rpx"}},"u-padding-right-30":{"":{"!paddingRight":"30rpx"}},"u-m-b-30":{"":{"!marginBottom":"30rpx"}},"u-p-b-30":{"":{"!paddingBottom":"30rpx"}},"u-margin-bottom-30":{"":{"!marginBottom":"30rpx"}},"u-padding-bottom-30":{"":{"!paddingBottom":"30rpx"}},"u-margin-32":{"":{"!marginTop":"32rpx","!marginRight":"32rpx","!marginBottom":"32rpx","!marginLeft":"32rpx"}},"u-m-32":{"":{"!marginTop":"32rpx","!marginRight":"32rpx","!marginBottom":"32rpx","!marginLeft":"32rpx"}},"u-padding-32":{"":{"!paddingTop":"32rpx","!paddingRight":"32rpx","!paddingBottom":"32rpx","!paddingLeft":"32rpx"}},"u-p-32":{"":{"!paddingTop":"32rpx","!paddingRight":"32rpx","!paddingBottom":"32rpx","!paddingLeft":"32rpx"}},"u-m-l-32":{"":{"!marginLeft":"32rpx"}},"u-p-l-32":{"":{"!paddingLeft":"32rpx"}},"u-margin-left-32":{"":{"!marginLeft":"32rpx"}},"u-padding-left-32":{"":{"!paddingLeft":"32rpx"}},"u-m-t-32":{"":{"!marginTop":"32rpx"}},"u-p-t-32":{"":{"!paddingTop":"32rpx"}},"u-margin-top-32":{"":{"!marginTop":"32rpx"}},"u-padding-top-32":{"":{"!paddingTop":"32rpx"}},"u-m-r-32":{"":{"!marginRight":"32rpx"}},"u-p-r-32":{"":{"!paddingRight":"32rpx"}},"u-margin-right-32":{"":{"!marginRight":"32rpx"}},"u-padding-right-32":{"":{"!paddingRight":"32rpx"}},"u-m-b-32":{"":{"!marginBottom":"32rpx"}},"u-p-b-32":{"":{"!paddingBottom":"32rpx"}},"u-margin-bottom-32":{"":{"!marginBottom":"32rpx"}},"u-padding-bottom-32":{"":{"!paddingBottom":"32rpx"}},"u-margin-34":{"":{"!marginTop":"34rpx","!marginRight":"34rpx","!marginBottom":"34rpx","!marginLeft":"34rpx"}},"u-m-34":{"":{"!marginTop":"34rpx","!marginRight":"34rpx","!marginBottom":"34rpx","!marginLeft":"34rpx"}},"u-padding-34":{"":{"!paddingTop":"34rpx","!paddingRight":"34rpx","!paddingBottom":"34rpx","!paddingLeft":"34rpx"}},"u-p-34":{"":{"!paddingTop":"34rpx","!paddingRight":"34rpx","!paddingBottom":"34rpx","!paddingLeft":"34rpx"}},"u-m-l-34":{"":{"!marginLeft":"34rpx"}},"u-p-l-34":{"":{"!paddingLeft":"34rpx"}},"u-margin-left-34":{"":{"!marginLeft":"34rpx"}},"u-padding-left-34":{"":{"!paddingLeft":"34rpx"}},"u-m-t-34":{"":{"!marginTop":"34rpx"}},"u-p-t-34":{"":{"!paddingTop":"34rpx"}},"u-margin-top-34":{"":{"!marginTop":"34rpx"}},"u-padding-top-34":{"":{"!paddingTop":"34rpx"}},"u-m-r-34":{"":{"!marginRight":"34rpx"}},"u-p-r-34":{"":{"!paddingRight":"34rpx"}},"u-margin-right-34":{"":{"!marginRight":"34rpx"}},"u-padding-right-34":{"":{"!paddingRight":"34rpx"}},"u-m-b-34":{"":{"!marginBottom":"34rpx"}},"u-p-b-34":{"":{"!paddingBottom":"34rpx"}},"u-margin-bottom-34":{"":{"!marginBottom":"34rpx"}},"u-padding-bottom-34":{"":{"!paddingBottom":"34rpx"}},"u-margin-35":{"":{"!marginTop":"35rpx","!marginRight":"35rpx","!marginBottom":"35rpx","!marginLeft":"35rpx"}},"u-m-35":{"":{"!marginTop":"35rpx","!marginRight":"35rpx","!marginBottom":"35rpx","!marginLeft":"35rpx"}},"u-padding-35":{"":{"!paddingTop":"35rpx","!paddingRight":"35rpx","!paddingBottom":"35rpx","!paddingLeft":"35rpx"}},"u-p-35":{"":{"!paddingTop":"35rpx","!paddingRight":"35rpx","!paddingBottom":"35rpx","!paddingLeft":"35rpx"}},"u-m-l-35":{"":{"!marginLeft":"35rpx"}},"u-p-l-35":{"":{"!paddingLeft":"35rpx"}},"u-margin-left-35":{"":{"!marginLeft":"35rpx"}},"u-padding-left-35":{"":{"!paddingLeft":"35rpx"}},"u-m-t-35":{"":{"!marginTop":"35rpx"}},"u-p-t-35":{"":{"!paddingTop":"35rpx"}},"u-margin-top-35":{"":{"!marginTop":"35rpx"}},"u-padding-top-35":{"":{"!paddingTop":"35rpx"}},"u-m-r-35":{"":{"!marginRight":"35rpx"}},"u-p-r-35":{"":{"!paddingRight":"35rpx"}},"u-margin-right-35":{"":{"!marginRight":"35rpx"}},"u-padding-right-35":{"":{"!paddingRight":"35rpx"}},"u-m-b-35":{"":{"!marginBottom":"35rpx"}},"u-p-b-35":{"":{"!paddingBottom":"35rpx"}},"u-margin-bottom-35":{"":{"!marginBottom":"35rpx"}},"u-padding-bottom-35":{"":{"!paddingBottom":"35rpx"}},"u-margin-36":{"":{"!marginTop":"36rpx","!marginRight":"36rpx","!marginBottom":"36rpx","!marginLeft":"36rpx"}},"u-m-36":{"":{"!marginTop":"36rpx","!marginRight":"36rpx","!marginBottom":"36rpx","!marginLeft":"36rpx"}},"u-padding-36":{"":{"!paddingTop":"36rpx","!paddingRight":"36rpx","!paddingBottom":"36rpx","!paddingLeft":"36rpx"}},"u-p-36":{"":{"!paddingTop":"36rpx","!paddingRight":"36rpx","!paddingBottom":"36rpx","!paddingLeft":"36rpx"}},"u-m-l-36":{"":{"!marginLeft":"36rpx"}},"u-p-l-36":{"":{"!paddingLeft":"36rpx"}},"u-margin-left-36":{"":{"!marginLeft":"36rpx"}},"u-padding-left-36":{"":{"!paddingLeft":"36rpx"}},"u-m-t-36":{"":{"!marginTop":"36rpx"}},"u-p-t-36":{"":{"!paddingTop":"36rpx"}},"u-margin-top-36":{"":{"!marginTop":"36rpx"}},"u-padding-top-36":{"":{"!paddingTop":"36rpx"}},"u-m-r-36":{"":{"!marginRight":"36rpx"}},"u-p-r-36":{"":{"!paddingRight":"36rpx"}},"u-margin-right-36":{"":{"!marginRight":"36rpx"}},"u-padding-right-36":{"":{"!paddingRight":"36rpx"}},"u-m-b-36":{"":{"!marginBottom":"36rpx"}},"u-p-b-36":{"":{"!paddingBottom":"36rpx"}},"u-margin-bottom-36":{"":{"!marginBottom":"36rpx"}},"u-padding-bottom-36":{"":{"!paddingBottom":"36rpx"}},"u-margin-38":{"":{"!marginTop":"38rpx","!marginRight":"38rpx","!marginBottom":"38rpx","!marginLeft":"38rpx"}},"u-m-38":{"":{"!marginTop":"38rpx","!marginRight":"38rpx","!marginBottom":"38rpx","!marginLeft":"38rpx"}},"u-padding-38":{"":{"!paddingTop":"38rpx","!paddingRight":"38rpx","!paddingBottom":"38rpx","!paddingLeft":"38rpx"}},"u-p-38":{"":{"!paddingTop":"38rpx","!paddingRight":"38rpx","!paddingBottom":"38rpx","!paddingLeft":"38rpx"}},"u-m-l-38":{"":{"!marginLeft":"38rpx"}},"u-p-l-38":{"":{"!paddingLeft":"38rpx"}},"u-margin-left-38":{"":{"!marginLeft":"38rpx"}},"u-padding-left-38":{"":{"!paddingLeft":"38rpx"}},"u-m-t-38":{"":{"!marginTop":"38rpx"}},"u-p-t-38":{"":{"!paddingTop":"38rpx"}},"u-margin-top-38":{"":{"!marginTop":"38rpx"}},"u-padding-top-38":{"":{"!paddingTop":"38rpx"}},"u-m-r-38":{"":{"!marginRight":"38rpx"}},"u-p-r-38":{"":{"!paddingRight":"38rpx"}},"u-margin-right-38":{"":{"!marginRight":"38rpx"}},"u-padding-right-38":{"":{"!paddingRight":"38rpx"}},"u-m-b-38":{"":{"!marginBottom":"38rpx"}},"u-p-b-38":{"":{"!paddingBottom":"38rpx"}},"u-margin-bottom-38":{"":{"!marginBottom":"38rpx"}},"u-padding-bottom-38":{"":{"!paddingBottom":"38rpx"}},"u-margin-40":{"":{"!marginTop":"40rpx","!marginRight":"40rpx","!marginBottom":"40rpx","!marginLeft":"40rpx"}},"u-m-40":{"":{"!marginTop":"40rpx","!marginRight":"40rpx","!marginBottom":"40rpx","!marginLeft":"40rpx"}},"u-padding-40":{"":{"!paddingTop":"40rpx","!paddingRight":"40rpx","!paddingBottom":"40rpx","!paddingLeft":"40rpx"}},"u-p-40":{"":{"!paddingTop":"40rpx","!paddingRight":"40rpx","!paddingBottom":"40rpx","!paddingLeft":"40rpx"}},"u-m-l-40":{"":{"!marginLeft":"40rpx"}},"u-p-l-40":{"":{"!paddingLeft":"40rpx"}},"u-margin-left-40":{"":{"!marginLeft":"40rpx"}},"u-padding-left-40":{"":{"!paddingLeft":"40rpx"}},"u-m-t-40":{"":{"!marginTop":"40rpx"}},"u-p-t-40":{"":{"!paddingTop":"40rpx"}},"u-margin-top-40":{"":{"!marginTop":"40rpx"}},"u-padding-top-40":{"":{"!paddingTop":"40rpx"}},"u-m-r-40":{"":{"!marginRight":"40rpx"}},"u-p-r-40":{"":{"!paddingRight":"40rpx"}},"u-margin-right-40":{"":{"!marginRight":"40rpx"}},"u-padding-right-40":{"":{"!paddingRight":"40rpx"}},"u-m-b-40":{"":{"!marginBottom":"40rpx"}},"u-p-b-40":{"":{"!paddingBottom":"40rpx"}},"u-margin-bottom-40":{"":{"!marginBottom":"40rpx"}},"u-padding-bottom-40":{"":{"!paddingBottom":"40rpx"}},"u-margin-42":{"":{"!marginTop":"42rpx","!marginRight":"42rpx","!marginBottom":"42rpx","!marginLeft":"42rpx"}},"u-m-42":{"":{"!marginTop":"42rpx","!marginRight":"42rpx","!marginBottom":"42rpx","!marginLeft":"42rpx"}},"u-padding-42":{"":{"!paddingTop":"42rpx","!paddingRight":"42rpx","!paddingBottom":"42rpx","!paddingLeft":"42rpx"}},"u-p-42":{"":{"!paddingTop":"42rpx","!paddingRight":"42rpx","!paddingBottom":"42rpx","!paddingLeft":"42rpx"}},"u-m-l-42":{"":{"!marginLeft":"42rpx"}},"u-p-l-42":{"":{"!paddingLeft":"42rpx"}},"u-margin-left-42":{"":{"!marginLeft":"42rpx"}},"u-padding-left-42":{"":{"!paddingLeft":"42rpx"}},"u-m-t-42":{"":{"!marginTop":"42rpx"}},"u-p-t-42":{"":{"!paddingTop":"42rpx"}},"u-margin-top-42":{"":{"!marginTop":"42rpx"}},"u-padding-top-42":{"":{"!paddingTop":"42rpx"}},"u-m-r-42":{"":{"!marginRight":"42rpx"}},"u-p-r-42":{"":{"!paddingRight":"42rpx"}},"u-margin-right-42":{"":{"!marginRight":"42rpx"}},"u-padding-right-42":{"":{"!paddingRight":"42rpx"}},"u-m-b-42":{"":{"!marginBottom":"42rpx"}},"u-p-b-42":{"":{"!paddingBottom":"42rpx"}},"u-margin-bottom-42":{"":{"!marginBottom":"42rpx"}},"u-padding-bottom-42":{"":{"!paddingBottom":"42rpx"}},"u-margin-44":{"":{"!marginTop":"44rpx","!marginRight":"44rpx","!marginBottom":"44rpx","!marginLeft":"44rpx"}},"u-m-44":{"":{"!marginTop":"44rpx","!marginRight":"44rpx","!marginBottom":"44rpx","!marginLeft":"44rpx"}},"u-padding-44":{"":{"!paddingTop":"44rpx","!paddingRight":"44rpx","!paddingBottom":"44rpx","!paddingLeft":"44rpx"}},"u-p-44":{"":{"!paddingTop":"44rpx","!paddingRight":"44rpx","!paddingBottom":"44rpx","!paddingLeft":"44rpx"}},"u-m-l-44":{"":{"!marginLeft":"44rpx"}},"u-p-l-44":{"":{"!paddingLeft":"44rpx"}},"u-margin-left-44":{"":{"!marginLeft":"44rpx"}},"u-padding-left-44":{"":{"!paddingLeft":"44rpx"}},"u-m-t-44":{"":{"!marginTop":"44rpx"}},"u-p-t-44":{"":{"!paddingTop":"44rpx"}},"u-margin-top-44":{"":{"!marginTop":"44rpx"}},"u-padding-top-44":{"":{"!paddingTop":"44rpx"}},"u-m-r-44":{"":{"!marginRight":"44rpx"}},"u-p-r-44":{"":{"!paddingRight":"44rpx"}},"u-margin-right-44":{"":{"!marginRight":"44rpx"}},"u-padding-right-44":{"":{"!paddingRight":"44rpx"}},"u-m-b-44":{"":{"!marginBottom":"44rpx"}},"u-p-b-44":{"":{"!paddingBottom":"44rpx"}},"u-margin-bottom-44":{"":{"!marginBottom":"44rpx"}},"u-padding-bottom-44":{"":{"!paddingBottom":"44rpx"}},"u-margin-45":{"":{"!marginTop":"45rpx","!marginRight":"45rpx","!marginBottom":"45rpx","!marginLeft":"45rpx"}},"u-m-45":{"":{"!marginTop":"45rpx","!marginRight":"45rpx","!marginBottom":"45rpx","!marginLeft":"45rpx"}},"u-padding-45":{"":{"!paddingTop":"45rpx","!paddingRight":"45rpx","!paddingBottom":"45rpx","!paddingLeft":"45rpx"}},"u-p-45":{"":{"!paddingTop":"45rpx","!paddingRight":"45rpx","!paddingBottom":"45rpx","!paddingLeft":"45rpx"}},"u-m-l-45":{"":{"!marginLeft":"45rpx"}},"u-p-l-45":{"":{"!paddingLeft":"45rpx"}},"u-margin-left-45":{"":{"!marginLeft":"45rpx"}},"u-padding-left-45":{"":{"!paddingLeft":"45rpx"}},"u-m-t-45":{"":{"!marginTop":"45rpx"}},"u-p-t-45":{"":{"!paddingTop":"45rpx"}},"u-margin-top-45":{"":{"!marginTop":"45rpx"}},"u-padding-top-45":{"":{"!paddingTop":"45rpx"}},"u-m-r-45":{"":{"!marginRight":"45rpx"}},"u-p-r-45":{"":{"!paddingRight":"45rpx"}},"u-margin-right-45":{"":{"!marginRight":"45rpx"}},"u-padding-right-45":{"":{"!paddingRight":"45rpx"}},"u-m-b-45":{"":{"!marginBottom":"45rpx"}},"u-p-b-45":{"":{"!paddingBottom":"45rpx"}},"u-margin-bottom-45":{"":{"!marginBottom":"45rpx"}},"u-padding-bottom-45":{"":{"!paddingBottom":"45rpx"}},"u-margin-46":{"":{"!marginTop":"46rpx","!marginRight":"46rpx","!marginBottom":"46rpx","!marginLeft":"46rpx"}},"u-m-46":{"":{"!marginTop":"46rpx","!marginRight":"46rpx","!marginBottom":"46rpx","!marginLeft":"46rpx"}},"u-padding-46":{"":{"!paddingTop":"46rpx","!paddingRight":"46rpx","!paddingBottom":"46rpx","!paddingLeft":"46rpx"}},"u-p-46":{"":{"!paddingTop":"46rpx","!paddingRight":"46rpx","!paddingBottom":"46rpx","!paddingLeft":"46rpx"}},"u-m-l-46":{"":{"!marginLeft":"46rpx"}},"u-p-l-46":{"":{"!paddingLeft":"46rpx"}},"u-margin-left-46":{"":{"!marginLeft":"46rpx"}},"u-padding-left-46":{"":{"!paddingLeft":"46rpx"}},"u-m-t-46":{"":{"!marginTop":"46rpx"}},"u-p-t-46":{"":{"!paddingTop":"46rpx"}},"u-margin-top-46":{"":{"!marginTop":"46rpx"}},"u-padding-top-46":{"":{"!paddingTop":"46rpx"}},"u-m-r-46":{"":{"!marginRight":"46rpx"}},"u-p-r-46":{"":{"!paddingRight":"46rpx"}},"u-margin-right-46":{"":{"!marginRight":"46rpx"}},"u-padding-right-46":{"":{"!paddingRight":"46rpx"}},"u-m-b-46":{"":{"!marginBottom":"46rpx"}},"u-p-b-46":{"":{"!paddingBottom":"46rpx"}},"u-margin-bottom-46":{"":{"!marginBottom":"46rpx"}},"u-padding-bottom-46":{"":{"!paddingBottom":"46rpx"}},"u-margin-48":{"":{"!marginTop":"48rpx","!marginRight":"48rpx","!marginBottom":"48rpx","!marginLeft":"48rpx"}},"u-m-48":{"":{"!marginTop":"48rpx","!marginRight":"48rpx","!marginBottom":"48rpx","!marginLeft":"48rpx"}},"u-padding-48":{"":{"!paddingTop":"48rpx","!paddingRight":"48rpx","!paddingBottom":"48rpx","!paddingLeft":"48rpx"}},"u-p-48":{"":{"!paddingTop":"48rpx","!paddingRight":"48rpx","!paddingBottom":"48rpx","!paddingLeft":"48rpx"}},"u-m-l-48":{"":{"!marginLeft":"48rpx"}},"u-p-l-48":{"":{"!paddingLeft":"48rpx"}},"u-margin-left-48":{"":{"!marginLeft":"48rpx"}},"u-padding-left-48":{"":{"!paddingLeft":"48rpx"}},"u-m-t-48":{"":{"!marginTop":"48rpx"}},"u-p-t-48":{"":{"!paddingTop":"48rpx"}},"u-margin-top-48":{"":{"!marginTop":"48rpx"}},"u-padding-top-48":{"":{"!paddingTop":"48rpx"}},"u-m-r-48":{"":{"!marginRight":"48rpx"}},"u-p-r-48":{"":{"!paddingRight":"48rpx"}},"u-margin-right-48":{"":{"!marginRight":"48rpx"}},"u-padding-right-48":{"":{"!paddingRight":"48rpx"}},"u-m-b-48":{"":{"!marginBottom":"48rpx"}},"u-p-b-48":{"":{"!paddingBottom":"48rpx"}},"u-margin-bottom-48":{"":{"!marginBottom":"48rpx"}},"u-padding-bottom-48":{"":{"!paddingBottom":"48rpx"}},"u-margin-50":{"":{"!marginTop":"50rpx","!marginRight":"50rpx","!marginBottom":"50rpx","!marginLeft":"50rpx"}},"u-m-50":{"":{"!marginTop":"50rpx","!marginRight":"50rpx","!marginBottom":"50rpx","!marginLeft":"50rpx"}},"u-padding-50":{"":{"!paddingTop":"50rpx","!paddingRight":"50rpx","!paddingBottom":"50rpx","!paddingLeft":"50rpx"}},"u-p-50":{"":{"!paddingTop":"50rpx","!paddingRight":"50rpx","!paddingBottom":"50rpx","!paddingLeft":"50rpx"}},"u-m-l-50":{"":{"!marginLeft":"50rpx"}},"u-p-l-50":{"":{"!paddingLeft":"50rpx"}},"u-margin-left-50":{"":{"!marginLeft":"50rpx"}},"u-padding-left-50":{"":{"!paddingLeft":"50rpx"}},"u-m-t-50":{"":{"!marginTop":"50rpx"}},"u-p-t-50":{"":{"!paddingTop":"50rpx"}},"u-margin-top-50":{"":{"!marginTop":"50rpx"}},"u-padding-top-50":{"":{"!paddingTop":"50rpx"}},"u-m-r-50":{"":{"!marginRight":"50rpx"}},"u-p-r-50":{"":{"!paddingRight":"50rpx"}},"u-margin-right-50":{"":{"!marginRight":"50rpx"}},"u-padding-right-50":{"":{"!paddingRight":"50rpx"}},"u-m-b-50":{"":{"!marginBottom":"50rpx"}},"u-p-b-50":{"":{"!paddingBottom":"50rpx"}},"u-margin-bottom-50":{"":{"!marginBottom":"50rpx"}},"u-padding-bottom-50":{"":{"!paddingBottom":"50rpx"}},"u-margin-52":{"":{"!marginTop":"52rpx","!marginRight":"52rpx","!marginBottom":"52rpx","!marginLeft":"52rpx"}},"u-m-52":{"":{"!marginTop":"52rpx","!marginRight":"52rpx","!marginBottom":"52rpx","!marginLeft":"52rpx"}},"u-padding-52":{"":{"!paddingTop":"52rpx","!paddingRight":"52rpx","!paddingBottom":"52rpx","!paddingLeft":"52rpx"}},"u-p-52":{"":{"!paddingTop":"52rpx","!paddingRight":"52rpx","!paddingBottom":"52rpx","!paddingLeft":"52rpx"}},"u-m-l-52":{"":{"!marginLeft":"52rpx"}},"u-p-l-52":{"":{"!paddingLeft":"52rpx"}},"u-margin-left-52":{"":{"!marginLeft":"52rpx"}},"u-padding-left-52":{"":{"!paddingLeft":"52rpx"}},"u-m-t-52":{"":{"!marginTop":"52rpx"}},"u-p-t-52":{"":{"!paddingTop":"52rpx"}},"u-margin-top-52":{"":{"!marginTop":"52rpx"}},"u-padding-top-52":{"":{"!paddingTop":"52rpx"}},"u-m-r-52":{"":{"!marginRight":"52rpx"}},"u-p-r-52":{"":{"!paddingRight":"52rpx"}},"u-margin-right-52":{"":{"!marginRight":"52rpx"}},"u-padding-right-52":{"":{"!paddingRight":"52rpx"}},"u-m-b-52":{"":{"!marginBottom":"52rpx"}},"u-p-b-52":{"":{"!paddingBottom":"52rpx"}},"u-margin-bottom-52":{"":{"!marginBottom":"52rpx"}},"u-padding-bottom-52":{"":{"!paddingBottom":"52rpx"}},"u-margin-54":{"":{"!marginTop":"54rpx","!marginRight":"54rpx","!marginBottom":"54rpx","!marginLeft":"54rpx"}},"u-m-54":{"":{"!marginTop":"54rpx","!marginRight":"54rpx","!marginBottom":"54rpx","!marginLeft":"54rpx"}},"u-padding-54":{"":{"!paddingTop":"54rpx","!paddingRight":"54rpx","!paddingBottom":"54rpx","!paddingLeft":"54rpx"}},"u-p-54":{"":{"!paddingTop":"54rpx","!paddingRight":"54rpx","!paddingBottom":"54rpx","!paddingLeft":"54rpx"}},"u-m-l-54":{"":{"!marginLeft":"54rpx"}},"u-p-l-54":{"":{"!paddingLeft":"54rpx"}},"u-margin-left-54":{"":{"!marginLeft":"54rpx"}},"u-padding-left-54":{"":{"!paddingLeft":"54rpx"}},"u-m-t-54":{"":{"!marginTop":"54rpx"}},"u-p-t-54":{"":{"!paddingTop":"54rpx"}},"u-margin-top-54":{"":{"!marginTop":"54rpx"}},"u-padding-top-54":{"":{"!paddingTop":"54rpx"}},"u-m-r-54":{"":{"!marginRight":"54rpx"}},"u-p-r-54":{"":{"!paddingRight":"54rpx"}},"u-margin-right-54":{"":{"!marginRight":"54rpx"}},"u-padding-right-54":{"":{"!paddingRight":"54rpx"}},"u-m-b-54":{"":{"!marginBottom":"54rpx"}},"u-p-b-54":{"":{"!paddingBottom":"54rpx"}},"u-margin-bottom-54":{"":{"!marginBottom":"54rpx"}},"u-padding-bottom-54":{"":{"!paddingBottom":"54rpx"}},"u-margin-55":{"":{"!marginTop":"55rpx","!marginRight":"55rpx","!marginBottom":"55rpx","!marginLeft":"55rpx"}},"u-m-55":{"":{"!marginTop":"55rpx","!marginRight":"55rpx","!marginBottom":"55rpx","!marginLeft":"55rpx"}},"u-padding-55":{"":{"!paddingTop":"55rpx","!paddingRight":"55rpx","!paddingBottom":"55rpx","!paddingLeft":"55rpx"}},"u-p-55":{"":{"!paddingTop":"55rpx","!paddingRight":"55rpx","!paddingBottom":"55rpx","!paddingLeft":"55rpx"}},"u-m-l-55":{"":{"!marginLeft":"55rpx"}},"u-p-l-55":{"":{"!paddingLeft":"55rpx"}},"u-margin-left-55":{"":{"!marginLeft":"55rpx"}},"u-padding-left-55":{"":{"!paddingLeft":"55rpx"}},"u-m-t-55":{"":{"!marginTop":"55rpx"}},"u-p-t-55":{"":{"!paddingTop":"55rpx"}},"u-margin-top-55":{"":{"!marginTop":"55rpx"}},"u-padding-top-55":{"":{"!paddingTop":"55rpx"}},"u-m-r-55":{"":{"!marginRight":"55rpx"}},"u-p-r-55":{"":{"!paddingRight":"55rpx"}},"u-margin-right-55":{"":{"!marginRight":"55rpx"}},"u-padding-right-55":{"":{"!paddingRight":"55rpx"}},"u-m-b-55":{"":{"!marginBottom":"55rpx"}},"u-p-b-55":{"":{"!paddingBottom":"55rpx"}},"u-margin-bottom-55":{"":{"!marginBottom":"55rpx"}},"u-padding-bottom-55":{"":{"!paddingBottom":"55rpx"}},"u-margin-56":{"":{"!marginTop":"56rpx","!marginRight":"56rpx","!marginBottom":"56rpx","!marginLeft":"56rpx"}},"u-m-56":{"":{"!marginTop":"56rpx","!marginRight":"56rpx","!marginBottom":"56rpx","!marginLeft":"56rpx"}},"u-padding-56":{"":{"!paddingTop":"56rpx","!paddingRight":"56rpx","!paddingBottom":"56rpx","!paddingLeft":"56rpx"}},"u-p-56":{"":{"!paddingTop":"56rpx","!paddingRight":"56rpx","!paddingBottom":"56rpx","!paddingLeft":"56rpx"}},"u-m-l-56":{"":{"!marginLeft":"56rpx"}},"u-p-l-56":{"":{"!paddingLeft":"56rpx"}},"u-margin-left-56":{"":{"!marginLeft":"56rpx"}},"u-padding-left-56":{"":{"!paddingLeft":"56rpx"}},"u-m-t-56":{"":{"!marginTop":"56rpx"}},"u-p-t-56":{"":{"!paddingTop":"56rpx"}},"u-margin-top-56":{"":{"!marginTop":"56rpx"}},"u-padding-top-56":{"":{"!paddingTop":"56rpx"}},"u-m-r-56":{"":{"!marginRight":"56rpx"}},"u-p-r-56":{"":{"!paddingRight":"56rpx"}},"u-margin-right-56":{"":{"!marginRight":"56rpx"}},"u-padding-right-56":{"":{"!paddingRight":"56rpx"}},"u-m-b-56":{"":{"!marginBottom":"56rpx"}},"u-p-b-56":{"":{"!paddingBottom":"56rpx"}},"u-margin-bottom-56":{"":{"!marginBottom":"56rpx"}},"u-padding-bottom-56":{"":{"!paddingBottom":"56rpx"}},"u-margin-58":{"":{"!marginTop":"58rpx","!marginRight":"58rpx","!marginBottom":"58rpx","!marginLeft":"58rpx"}},"u-m-58":{"":{"!marginTop":"58rpx","!marginRight":"58rpx","!marginBottom":"58rpx","!marginLeft":"58rpx"}},"u-padding-58":{"":{"!paddingTop":"58rpx","!paddingRight":"58rpx","!paddingBottom":"58rpx","!paddingLeft":"58rpx"}},"u-p-58":{"":{"!paddingTop":"58rpx","!paddingRight":"58rpx","!paddingBottom":"58rpx","!paddingLeft":"58rpx"}},"u-m-l-58":{"":{"!marginLeft":"58rpx"}},"u-p-l-58":{"":{"!paddingLeft":"58rpx"}},"u-margin-left-58":{"":{"!marginLeft":"58rpx"}},"u-padding-left-58":{"":{"!paddingLeft":"58rpx"}},"u-m-t-58":{"":{"!marginTop":"58rpx"}},"u-p-t-58":{"":{"!paddingTop":"58rpx"}},"u-margin-top-58":{"":{"!marginTop":"58rpx"}},"u-padding-top-58":{"":{"!paddingTop":"58rpx"}},"u-m-r-58":{"":{"!marginRight":"58rpx"}},"u-p-r-58":{"":{"!paddingRight":"58rpx"}},"u-margin-right-58":{"":{"!marginRight":"58rpx"}},"u-padding-right-58":{"":{"!paddingRight":"58rpx"}},"u-m-b-58":{"":{"!marginBottom":"58rpx"}},"u-p-b-58":{"":{"!paddingBottom":"58rpx"}},"u-margin-bottom-58":{"":{"!marginBottom":"58rpx"}},"u-padding-bottom-58":{"":{"!paddingBottom":"58rpx"}},"u-margin-60":{"":{"!marginTop":"60rpx","!marginRight":"60rpx","!marginBottom":"60rpx","!marginLeft":"60rpx"}},"u-m-60":{"":{"!marginTop":"60rpx","!marginRight":"60rpx","!marginBottom":"60rpx","!marginLeft":"60rpx"}},"u-padding-60":{"":{"!paddingTop":"60rpx","!paddingRight":"60rpx","!paddingBottom":"60rpx","!paddingLeft":"60rpx"}},"u-p-60":{"":{"!paddingTop":"60rpx","!paddingRight":"60rpx","!paddingBottom":"60rpx","!paddingLeft":"60rpx"}},"u-m-l-60":{"":{"!marginLeft":"60rpx"}},"u-p-l-60":{"":{"!paddingLeft":"60rpx"}},"u-margin-left-60":{"":{"!marginLeft":"60rpx"}},"u-padding-left-60":{"":{"!paddingLeft":"60rpx"}},"u-m-t-60":{"":{"!marginTop":"60rpx"}},"u-p-t-60":{"":{"!paddingTop":"60rpx"}},"u-margin-top-60":{"":{"!marginTop":"60rpx"}},"u-padding-top-60":{"":{"!paddingTop":"60rpx"}},"u-m-r-60":{"":{"!marginRight":"60rpx"}},"u-p-r-60":{"":{"!paddingRight":"60rpx"}},"u-margin-right-60":{"":{"!marginRight":"60rpx"}},"u-padding-right-60":{"":{"!paddingRight":"60rpx"}},"u-m-b-60":{"":{"!marginBottom":"60rpx"}},"u-p-b-60":{"":{"!paddingBottom":"60rpx"}},"u-margin-bottom-60":{"":{"!marginBottom":"60rpx"}},"u-padding-bottom-60":{"":{"!paddingBottom":"60rpx"}},"u-margin-62":{"":{"!marginTop":"62rpx","!marginRight":"62rpx","!marginBottom":"62rpx","!marginLeft":"62rpx"}},"u-m-62":{"":{"!marginTop":"62rpx","!marginRight":"62rpx","!marginBottom":"62rpx","!marginLeft":"62rpx"}},"u-padding-62":{"":{"!paddingTop":"62rpx","!paddingRight":"62rpx","!paddingBottom":"62rpx","!paddingLeft":"62rpx"}},"u-p-62":{"":{"!paddingTop":"62rpx","!paddingRight":"62rpx","!paddingBottom":"62rpx","!paddingLeft":"62rpx"}},"u-m-l-62":{"":{"!marginLeft":"62rpx"}},"u-p-l-62":{"":{"!paddingLeft":"62rpx"}},"u-margin-left-62":{"":{"!marginLeft":"62rpx"}},"u-padding-left-62":{"":{"!paddingLeft":"62rpx"}},"u-m-t-62":{"":{"!marginTop":"62rpx"}},"u-p-t-62":{"":{"!paddingTop":"62rpx"}},"u-margin-top-62":{"":{"!marginTop":"62rpx"}},"u-padding-top-62":{"":{"!paddingTop":"62rpx"}},"u-m-r-62":{"":{"!marginRight":"62rpx"}},"u-p-r-62":{"":{"!paddingRight":"62rpx"}},"u-margin-right-62":{"":{"!marginRight":"62rpx"}},"u-padding-right-62":{"":{"!paddingRight":"62rpx"}},"u-m-b-62":{"":{"!marginBottom":"62rpx"}},"u-p-b-62":{"":{"!paddingBottom":"62rpx"}},"u-margin-bottom-62":{"":{"!marginBottom":"62rpx"}},"u-padding-bottom-62":{"":{"!paddingBottom":"62rpx"}},"u-margin-64":{"":{"!marginTop":"64rpx","!marginRight":"64rpx","!marginBottom":"64rpx","!marginLeft":"64rpx"}},"u-m-64":{"":{"!marginTop":"64rpx","!marginRight":"64rpx","!marginBottom":"64rpx","!marginLeft":"64rpx"}},"u-padding-64":{"":{"!paddingTop":"64rpx","!paddingRight":"64rpx","!paddingBottom":"64rpx","!paddingLeft":"64rpx"}},"u-p-64":{"":{"!paddingTop":"64rpx","!paddingRight":"64rpx","!paddingBottom":"64rpx","!paddingLeft":"64rpx"}},"u-m-l-64":{"":{"!marginLeft":"64rpx"}},"u-p-l-64":{"":{"!paddingLeft":"64rpx"}},"u-margin-left-64":{"":{"!marginLeft":"64rpx"}},"u-padding-left-64":{"":{"!paddingLeft":"64rpx"}},"u-m-t-64":{"":{"!marginTop":"64rpx"}},"u-p-t-64":{"":{"!paddingTop":"64rpx"}},"u-margin-top-64":{"":{"!marginTop":"64rpx"}},"u-padding-top-64":{"":{"!paddingTop":"64rpx"}},"u-m-r-64":{"":{"!marginRight":"64rpx"}},"u-p-r-64":{"":{"!paddingRight":"64rpx"}},"u-margin-right-64":{"":{"!marginRight":"64rpx"}},"u-padding-right-64":{"":{"!paddingRight":"64rpx"}},"u-m-b-64":{"":{"!marginBottom":"64rpx"}},"u-p-b-64":{"":{"!paddingBottom":"64rpx"}},"u-margin-bottom-64":{"":{"!marginBottom":"64rpx"}},"u-padding-bottom-64":{"":{"!paddingBottom":"64rpx"}},"u-margin-65":{"":{"!marginTop":"65rpx","!marginRight":"65rpx","!marginBottom":"65rpx","!marginLeft":"65rpx"}},"u-m-65":{"":{"!marginTop":"65rpx","!marginRight":"65rpx","!marginBottom":"65rpx","!marginLeft":"65rpx"}},"u-padding-65":{"":{"!paddingTop":"65rpx","!paddingRight":"65rpx","!paddingBottom":"65rpx","!paddingLeft":"65rpx"}},"u-p-65":{"":{"!paddingTop":"65rpx","!paddingRight":"65rpx","!paddingBottom":"65rpx","!paddingLeft":"65rpx"}},"u-m-l-65":{"":{"!marginLeft":"65rpx"}},"u-p-l-65":{"":{"!paddingLeft":"65rpx"}},"u-margin-left-65":{"":{"!marginLeft":"65rpx"}},"u-padding-left-65":{"":{"!paddingLeft":"65rpx"}},"u-m-t-65":{"":{"!marginTop":"65rpx"}},"u-p-t-65":{"":{"!paddingTop":"65rpx"}},"u-margin-top-65":{"":{"!marginTop":"65rpx"}},"u-padding-top-65":{"":{"!paddingTop":"65rpx"}},"u-m-r-65":{"":{"!marginRight":"65rpx"}},"u-p-r-65":{"":{"!paddingRight":"65rpx"}},"u-margin-right-65":{"":{"!marginRight":"65rpx"}},"u-padding-right-65":{"":{"!paddingRight":"65rpx"}},"u-m-b-65":{"":{"!marginBottom":"65rpx"}},"u-p-b-65":{"":{"!paddingBottom":"65rpx"}},"u-margin-bottom-65":{"":{"!marginBottom":"65rpx"}},"u-padding-bottom-65":{"":{"!paddingBottom":"65rpx"}},"u-margin-66":{"":{"!marginTop":"66rpx","!marginRight":"66rpx","!marginBottom":"66rpx","!marginLeft":"66rpx"}},"u-m-66":{"":{"!marginTop":"66rpx","!marginRight":"66rpx","!marginBottom":"66rpx","!marginLeft":"66rpx"}},"u-padding-66":{"":{"!paddingTop":"66rpx","!paddingRight":"66rpx","!paddingBottom":"66rpx","!paddingLeft":"66rpx"}},"u-p-66":{"":{"!paddingTop":"66rpx","!paddingRight":"66rpx","!paddingBottom":"66rpx","!paddingLeft":"66rpx"}},"u-m-l-66":{"":{"!marginLeft":"66rpx"}},"u-p-l-66":{"":{"!paddingLeft":"66rpx"}},"u-margin-left-66":{"":{"!marginLeft":"66rpx"}},"u-padding-left-66":{"":{"!paddingLeft":"66rpx"}},"u-m-t-66":{"":{"!marginTop":"66rpx"}},"u-p-t-66":{"":{"!paddingTop":"66rpx"}},"u-margin-top-66":{"":{"!marginTop":"66rpx"}},"u-padding-top-66":{"":{"!paddingTop":"66rpx"}},"u-m-r-66":{"":{"!marginRight":"66rpx"}},"u-p-r-66":{"":{"!paddingRight":"66rpx"}},"u-margin-right-66":{"":{"!marginRight":"66rpx"}},"u-padding-right-66":{"":{"!paddingRight":"66rpx"}},"u-m-b-66":{"":{"!marginBottom":"66rpx"}},"u-p-b-66":{"":{"!paddingBottom":"66rpx"}},"u-margin-bottom-66":{"":{"!marginBottom":"66rpx"}},"u-padding-bottom-66":{"":{"!paddingBottom":"66rpx"}},"u-margin-68":{"":{"!marginTop":"68rpx","!marginRight":"68rpx","!marginBottom":"68rpx","!marginLeft":"68rpx"}},"u-m-68":{"":{"!marginTop":"68rpx","!marginRight":"68rpx","!marginBottom":"68rpx","!marginLeft":"68rpx"}},"u-padding-68":{"":{"!paddingTop":"68rpx","!paddingRight":"68rpx","!paddingBottom":"68rpx","!paddingLeft":"68rpx"}},"u-p-68":{"":{"!paddingTop":"68rpx","!paddingRight":"68rpx","!paddingBottom":"68rpx","!paddingLeft":"68rpx"}},"u-m-l-68":{"":{"!marginLeft":"68rpx"}},"u-p-l-68":{"":{"!paddingLeft":"68rpx"}},"u-margin-left-68":{"":{"!marginLeft":"68rpx"}},"u-padding-left-68":{"":{"!paddingLeft":"68rpx"}},"u-m-t-68":{"":{"!marginTop":"68rpx"}},"u-p-t-68":{"":{"!paddingTop":"68rpx"}},"u-margin-top-68":{"":{"!marginTop":"68rpx"}},"u-padding-top-68":{"":{"!paddingTop":"68rpx"}},"u-m-r-68":{"":{"!marginRight":"68rpx"}},"u-p-r-68":{"":{"!paddingRight":"68rpx"}},"u-margin-right-68":{"":{"!marginRight":"68rpx"}},"u-padding-right-68":{"":{"!paddingRight":"68rpx"}},"u-m-b-68":{"":{"!marginBottom":"68rpx"}},"u-p-b-68":{"":{"!paddingBottom":"68rpx"}},"u-margin-bottom-68":{"":{"!marginBottom":"68rpx"}},"u-padding-bottom-68":{"":{"!paddingBottom":"68rpx"}},"u-margin-70":{"":{"!marginTop":"70rpx","!marginRight":"70rpx","!marginBottom":"70rpx","!marginLeft":"70rpx"}},"u-m-70":{"":{"!marginTop":"70rpx","!marginRight":"70rpx","!marginBottom":"70rpx","!marginLeft":"70rpx"}},"u-padding-70":{"":{"!paddingTop":"70rpx","!paddingRight":"70rpx","!paddingBottom":"70rpx","!paddingLeft":"70rpx"}},"u-p-70":{"":{"!paddingTop":"70rpx","!paddingRight":"70rpx","!paddingBottom":"70rpx","!paddingLeft":"70rpx"}},"u-m-l-70":{"":{"!marginLeft":"70rpx"}},"u-p-l-70":{"":{"!paddingLeft":"70rpx"}},"u-margin-left-70":{"":{"!marginLeft":"70rpx"}},"u-padding-left-70":{"":{"!paddingLeft":"70rpx"}},"u-m-t-70":{"":{"!marginTop":"70rpx"}},"u-p-t-70":{"":{"!paddingTop":"70rpx"}},"u-margin-top-70":{"":{"!marginTop":"70rpx"}},"u-padding-top-70":{"":{"!paddingTop":"70rpx"}},"u-m-r-70":{"":{"!marginRight":"70rpx"}},"u-p-r-70":{"":{"!paddingRight":"70rpx"}},"u-margin-right-70":{"":{"!marginRight":"70rpx"}},"u-padding-right-70":{"":{"!paddingRight":"70rpx"}},"u-m-b-70":{"":{"!marginBottom":"70rpx"}},"u-p-b-70":{"":{"!paddingBottom":"70rpx"}},"u-margin-bottom-70":{"":{"!marginBottom":"70rpx"}},"u-padding-bottom-70":{"":{"!paddingBottom":"70rpx"}},"u-margin-72":{"":{"!marginTop":"72rpx","!marginRight":"72rpx","!marginBottom":"72rpx","!marginLeft":"72rpx"}},"u-m-72":{"":{"!marginTop":"72rpx","!marginRight":"72rpx","!marginBottom":"72rpx","!marginLeft":"72rpx"}},"u-padding-72":{"":{"!paddingTop":"72rpx","!paddingRight":"72rpx","!paddingBottom":"72rpx","!paddingLeft":"72rpx"}},"u-p-72":{"":{"!paddingTop":"72rpx","!paddingRight":"72rpx","!paddingBottom":"72rpx","!paddingLeft":"72rpx"}},"u-m-l-72":{"":{"!marginLeft":"72rpx"}},"u-p-l-72":{"":{"!paddingLeft":"72rpx"}},"u-margin-left-72":{"":{"!marginLeft":"72rpx"}},"u-padding-left-72":{"":{"!paddingLeft":"72rpx"}},"u-m-t-72":{"":{"!marginTop":"72rpx"}},"u-p-t-72":{"":{"!paddingTop":"72rpx"}},"u-margin-top-72":{"":{"!marginTop":"72rpx"}},"u-padding-top-72":{"":{"!paddingTop":"72rpx"}},"u-m-r-72":{"":{"!marginRight":"72rpx"}},"u-p-r-72":{"":{"!paddingRight":"72rpx"}},"u-margin-right-72":{"":{"!marginRight":"72rpx"}},"u-padding-right-72":{"":{"!paddingRight":"72rpx"}},"u-m-b-72":{"":{"!marginBottom":"72rpx"}},"u-p-b-72":{"":{"!paddingBottom":"72rpx"}},"u-margin-bottom-72":{"":{"!marginBottom":"72rpx"}},"u-padding-bottom-72":{"":{"!paddingBottom":"72rpx"}},"u-margin-74":{"":{"!marginTop":"74rpx","!marginRight":"74rpx","!marginBottom":"74rpx","!marginLeft":"74rpx"}},"u-m-74":{"":{"!marginTop":"74rpx","!marginRight":"74rpx","!marginBottom":"74rpx","!marginLeft":"74rpx"}},"u-padding-74":{"":{"!paddingTop":"74rpx","!paddingRight":"74rpx","!paddingBottom":"74rpx","!paddingLeft":"74rpx"}},"u-p-74":{"":{"!paddingTop":"74rpx","!paddingRight":"74rpx","!paddingBottom":"74rpx","!paddingLeft":"74rpx"}},"u-m-l-74":{"":{"!marginLeft":"74rpx"}},"u-p-l-74":{"":{"!paddingLeft":"74rpx"}},"u-margin-left-74":{"":{"!marginLeft":"74rpx"}},"u-padding-left-74":{"":{"!paddingLeft":"74rpx"}},"u-m-t-74":{"":{"!marginTop":"74rpx"}},"u-p-t-74":{"":{"!paddingTop":"74rpx"}},"u-margin-top-74":{"":{"!marginTop":"74rpx"}},"u-padding-top-74":{"":{"!paddingTop":"74rpx"}},"u-m-r-74":{"":{"!marginRight":"74rpx"}},"u-p-r-74":{"":{"!paddingRight":"74rpx"}},"u-margin-right-74":{"":{"!marginRight":"74rpx"}},"u-padding-right-74":{"":{"!paddingRight":"74rpx"}},"u-m-b-74":{"":{"!marginBottom":"74rpx"}},"u-p-b-74":{"":{"!paddingBottom":"74rpx"}},"u-margin-bottom-74":{"":{"!marginBottom":"74rpx"}},"u-padding-bottom-74":{"":{"!paddingBottom":"74rpx"}},"u-margin-75":{"":{"!marginTop":"75rpx","!marginRight":"75rpx","!marginBottom":"75rpx","!marginLeft":"75rpx"}},"u-m-75":{"":{"!marginTop":"75rpx","!marginRight":"75rpx","!marginBottom":"75rpx","!marginLeft":"75rpx"}},"u-padding-75":{"":{"!paddingTop":"75rpx","!paddingRight":"75rpx","!paddingBottom":"75rpx","!paddingLeft":"75rpx"}},"u-p-75":{"":{"!paddingTop":"75rpx","!paddingRight":"75rpx","!paddingBottom":"75rpx","!paddingLeft":"75rpx"}},"u-m-l-75":{"":{"!marginLeft":"75rpx"}},"u-p-l-75":{"":{"!paddingLeft":"75rpx"}},"u-margin-left-75":{"":{"!marginLeft":"75rpx"}},"u-padding-left-75":{"":{"!paddingLeft":"75rpx"}},"u-m-t-75":{"":{"!marginTop":"75rpx"}},"u-p-t-75":{"":{"!paddingTop":"75rpx"}},"u-margin-top-75":{"":{"!marginTop":"75rpx"}},"u-padding-top-75":{"":{"!paddingTop":"75rpx"}},"u-m-r-75":{"":{"!marginRight":"75rpx"}},"u-p-r-75":{"":{"!paddingRight":"75rpx"}},"u-margin-right-75":{"":{"!marginRight":"75rpx"}},"u-padding-right-75":{"":{"!paddingRight":"75rpx"}},"u-m-b-75":{"":{"!marginBottom":"75rpx"}},"u-p-b-75":{"":{"!paddingBottom":"75rpx"}},"u-margin-bottom-75":{"":{"!marginBottom":"75rpx"}},"u-padding-bottom-75":{"":{"!paddingBottom":"75rpx"}},"u-margin-76":{"":{"!marginTop":"76rpx","!marginRight":"76rpx","!marginBottom":"76rpx","!marginLeft":"76rpx"}},"u-m-76":{"":{"!marginTop":"76rpx","!marginRight":"76rpx","!marginBottom":"76rpx","!marginLeft":"76rpx"}},"u-padding-76":{"":{"!paddingTop":"76rpx","!paddingRight":"76rpx","!paddingBottom":"76rpx","!paddingLeft":"76rpx"}},"u-p-76":{"":{"!paddingTop":"76rpx","!paddingRight":"76rpx","!paddingBottom":"76rpx","!paddingLeft":"76rpx"}},"u-m-l-76":{"":{"!marginLeft":"76rpx"}},"u-p-l-76":{"":{"!paddingLeft":"76rpx"}},"u-margin-left-76":{"":{"!marginLeft":"76rpx"}},"u-padding-left-76":{"":{"!paddingLeft":"76rpx"}},"u-m-t-76":{"":{"!marginTop":"76rpx"}},"u-p-t-76":{"":{"!paddingTop":"76rpx"}},"u-margin-top-76":{"":{"!marginTop":"76rpx"}},"u-padding-top-76":{"":{"!paddingTop":"76rpx"}},"u-m-r-76":{"":{"!marginRight":"76rpx"}},"u-p-r-76":{"":{"!paddingRight":"76rpx"}},"u-margin-right-76":{"":{"!marginRight":"76rpx"}},"u-padding-right-76":{"":{"!paddingRight":"76rpx"}},"u-m-b-76":{"":{"!marginBottom":"76rpx"}},"u-p-b-76":{"":{"!paddingBottom":"76rpx"}},"u-margin-bottom-76":{"":{"!marginBottom":"76rpx"}},"u-padding-bottom-76":{"":{"!paddingBottom":"76rpx"}},"u-margin-78":{"":{"!marginTop":"78rpx","!marginRight":"78rpx","!marginBottom":"78rpx","!marginLeft":"78rpx"}},"u-m-78":{"":{"!marginTop":"78rpx","!marginRight":"78rpx","!marginBottom":"78rpx","!marginLeft":"78rpx"}},"u-padding-78":{"":{"!paddingTop":"78rpx","!paddingRight":"78rpx","!paddingBottom":"78rpx","!paddingLeft":"78rpx"}},"u-p-78":{"":{"!paddingTop":"78rpx","!paddingRight":"78rpx","!paddingBottom":"78rpx","!paddingLeft":"78rpx"}},"u-m-l-78":{"":{"!marginLeft":"78rpx"}},"u-p-l-78":{"":{"!paddingLeft":"78rpx"}},"u-margin-left-78":{"":{"!marginLeft":"78rpx"}},"u-padding-left-78":{"":{"!paddingLeft":"78rpx"}},"u-m-t-78":{"":{"!marginTop":"78rpx"}},"u-p-t-78":{"":{"!paddingTop":"78rpx"}},"u-margin-top-78":{"":{"!marginTop":"78rpx"}},"u-padding-top-78":{"":{"!paddingTop":"78rpx"}},"u-m-r-78":{"":{"!marginRight":"78rpx"}},"u-p-r-78":{"":{"!paddingRight":"78rpx"}},"u-margin-right-78":{"":{"!marginRight":"78rpx"}},"u-padding-right-78":{"":{"!paddingRight":"78rpx"}},"u-m-b-78":{"":{"!marginBottom":"78rpx"}},"u-p-b-78":{"":{"!paddingBottom":"78rpx"}},"u-margin-bottom-78":{"":{"!marginBottom":"78rpx"}},"u-padding-bottom-78":{"":{"!paddingBottom":"78rpx"}},"u-margin-80":{"":{"!marginTop":"80rpx","!marginRight":"80rpx","!marginBottom":"80rpx","!marginLeft":"80rpx"}},"u-m-80":{"":{"!marginTop":"80rpx","!marginRight":"80rpx","!marginBottom":"80rpx","!marginLeft":"80rpx"}},"u-padding-80":{"":{"!paddingTop":"80rpx","!paddingRight":"80rpx","!paddingBottom":"80rpx","!paddingLeft":"80rpx"}},"u-p-80":{"":{"!paddingTop":"80rpx","!paddingRight":"80rpx","!paddingBottom":"80rpx","!paddingLeft":"80rpx"}},"u-m-l-80":{"":{"!marginLeft":"80rpx"}},"u-p-l-80":{"":{"!paddingLeft":"80rpx"}},"u-margin-left-80":{"":{"!marginLeft":"80rpx"}},"u-padding-left-80":{"":{"!paddingLeft":"80rpx"}},"u-m-t-80":{"":{"!marginTop":"80rpx"}},"u-p-t-80":{"":{"!paddingTop":"80rpx"}},"u-margin-top-80":{"":{"!marginTop":"80rpx"}},"u-padding-top-80":{"":{"!paddingTop":"80rpx"}},"u-m-r-80":{"":{"!marginRight":"80rpx"}},"u-p-r-80":{"":{"!paddingRight":"80rpx"}},"u-margin-right-80":{"":{"!marginRight":"80rpx"}},"u-padding-right-80":{"":{"!paddingRight":"80rpx"}},"u-m-b-80":{"":{"!marginBottom":"80rpx"}},"u-p-b-80":{"":{"!paddingBottom":"80rpx"}},"u-margin-bottom-80":{"":{"!marginBottom":"80rpx"}},"u-padding-bottom-80":{"":{"!paddingBottom":"80rpx"}},"u-reset-nvue":{"":{"flexDirection":"row","alignItems":"center"}},"u-type-primary-light":{"":{"color":"#ecf5ff"}},"u-type-warning-light":{"":{"color":"#fdf6ec"}},"u-type-success-light":{"":{"color":"#dbf1e1"}},"u-type-error-light":{"":{"color":"#fef0f0"}},"u-type-info-light":{"":{"color":"#f4f4f5"}},"u-type-primary-light-bg":{"":{"backgroundColor":"#ecf5ff"}},"u-type-warning-light-bg":{"":{"backgroundColor":"#fdf6ec"}},"u-type-success-light-bg":{"":{"backgroundColor":"#dbf1e1"}},"u-type-error-light-bg":{"":{"backgroundColor":"#fef0f0"}},"u-type-info-light-bg":{"":{"backgroundColor":"#f4f4f5"}},"u-type-primary-dark":{"":{"color":"#2b85e4"}},"u-type-warning-dark":{"":{"color":"#f29100"}},"u-type-success-dark":{"":{"color":"#18b566"}},"u-type-error-dark":{"":{"color":"#dd6161"}},"u-type-info-dark":{"":{"color":"#82848a"}},"u-type-primary-dark-bg":{"":{"backgroundColor":"#2b85e4"}},"u-type-warning-dark-bg":{"":{"backgroundColor":"#f29100"}},"u-type-success-dark-bg":{"":{"backgroundColor":"#18b566"}},"u-type-error-dark-bg":{"":{"backgroundColor":"#dd6161"}},"u-type-info-dark-bg":{"":{"backgroundColor":"#82848a"}},"u-type-primary-disabled":{"":{"color":"#a0cfff"}},"u-type-warning-disabled":{"":{"color":"#fcbd71"}},"u-type-success-disabled":{"":{"color":"#71d5a1"}},"u-type-error-disabled":{"":{"color":"#fab6b6"}},"u-type-info-disabled":{"":{"color":"#c8c9cc"}},"u-type-primary":{"":{"color":"#2979ff"}},"u-type-warning":{"":{"color":"#ff9900"}},"u-type-success":{"":{"color":"#19be6b"}},"u-type-error":{"":{"color":"#fa3534"}},"u-type-info":{"":{"color":"#909399"}},"u-type-primary-bg":{"":{"backgroundColor":"#2979ff"}},"u-type-warning-bg":{"":{"backgroundColor":"#ff9900"}},"u-type-success-bg":{"":{"backgroundColor":"#19be6b"}},"u-type-error-bg":{"":{"backgroundColor":"#fa3534"}},"u-type-info-bg":{"":{"backgroundColor":"#909399"}},"u-main-color":{"":{"color":"#303133"}},"u-content-color":{"":{"color":"#606266"}},"u-tips-color":{"":{"color":"#909399"}},"u-light-color":{"":{"color":"#c0c4cc"}},"nvue":{"":{"fontSize":"24rpx"}}}];//styles
__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
diff --git a/unpackage/dist/build/app-plus/app-service.js b/unpackage/dist/build/app-plus/app-service.js
index d8c1444..997c7fb 100644
--- a/unpackage/dist/build/app-plus/app-service.js
+++ b/unpackage/dist/build/app-plus/app-service.js
@@ -1 +1 @@
-if("undefined"==typeof Promise||Promise.prototype.finally||(Promise.prototype.finally=function(e){const t=this.constructor;return this.then((l=>t.resolve(e()).then((()=>l))),(l=>t.resolve(e()).then((()=>{throw l}))))}),"undefined"!=typeof uni&&uni&&uni.requireGlobal){const e=uni.requireGlobal();ArrayBuffer=e.ArrayBuffer,Int8Array=e.Int8Array,Uint8Array=e.Uint8Array,Uint8ClampedArray=e.Uint8ClampedArray,Int16Array=e.Int16Array,Uint16Array=e.Uint16Array,Int32Array=e.Int32Array,Uint32Array=e.Uint32Array,Float32Array=e.Float32Array,Float64Array=e.Float64Array,BigInt64Array=e.BigInt64Array,BigUint64Array=e.BigUint64Array}uni.restoreGlobal&&uni.restoreGlobal(Vue,weex,plus,setTimeout,clearTimeout,setInterval,clearInterval),function(e){"use strict";function t(e){return weex.requireModule(e)}function l(e,t,...l){uni.__log__?uni.__log__(e,t,...l):console[e].apply(console,[...l,t])}function a(e,t){return"string"==typeof e?t:e}const i=(t,l=0)=>(l,a=e.getCurrentInstance())=>{!e.isInSSRComponentSetup&&e.injectHook(t,l,a)},n=i("onShow",3),r=i("onHide",3),o=i("onLoad",2),c="/static/left.png",s=(e,t)=>{const l=e.__vccOpts||e;for(const[a,i]of t)l[a]=i;return l};const d=s({name:"ZyUpgrade",props:{theme:{type:String,default:"green"},updateurl:{type:String,default:""},h5preview:{type:Boolean,default:!1},oldversion:{type:String,default:""},oldcode:{type:Number,default:0},appstoreflag:{type:Boolean,default:!1},noticeflag:{type:Boolean,default:!1},autocheckupdate:{type:Boolean,default:!0}},data(){return{update_flag:!1,dshow:!1,update_process:0,downloadTask:[],updated2version:"",version_url:"",update_tips:"",forceupgrade:!1,currentversion:this.oldversion,versionname:"",vesioncode:this.oldcode,wgt_flag:0,wgt_url:"",size:0,header:{Authorization:uni.getStorageSync("token")||"token"}}},mounted(){let e=!1;e=!0,this.h5preview,this.autocheckupdate&&this.check_update()},computed:{version(){let e="";return e=this.currentversion+(""!=this.currentversion&&""!=this.updated2version?"->":"")+this.updated2version,e}},methods:{check_update(){let e=this;plus.runtime.getProperty(plus.runtime.appid,(function(t){e.currentversion=t.version,e.versionname=t.name,e.versioncode=t.versionCode,e.updatebusiness(e)}))},updatebusiness:function(e){uni.request({url:`https://www.focusnu.com/devopsapi/api/pad/versionUpdate?platform=1&version=${e.currentversion}`,method:"GET",dataType:"json",success:t=>{404!==t.statusCode&&(100==t.data.code?t.data.data.update_url?(e.dshow=!0,e.update_tips=t.data.data.update_tips,e.forceupgrade=1==t.data.data.forceupdate,e.version_url=t.data.data.update_url,e.updated2version=t.data.data.version,e.wgt_flag=t.data.data.wgt_flag,e.wgt_url=t.data.data.wgt_url,e.size=t.data.data.size,e.getnewbanben()):e.noticeflag&&e.$emit("showupdateTips",0):uni.showToast({title:"请求升级出错:"+data.msg,icon:"none"}))},fail(){this.loading=!1}})},getnewbanben:function(){this.$emit("chuandinew",this.updated2version)},upgrade_checked:function(){uni.removeStorageSync("token"),this.update_flag=!0,this.updateversion()},upgrade_cancel:function(){this.dshow=!1},upgrade_break:function(){this.downloadTask.abort(),this.update_flag=!1},updateversion:function(){let e=this;if("ios"==uni.getSystemInfoSync().platform&&this.appstoreflag&&1!=e.wgt_flag)e.dshow=!1,plus.runtime.launchApplication({action:e.version_url},(function(e){uni.showToast({title:"打开appstore失败",icon:"none"})}));else{let e=this,t="https://www.focusnu.com/devopsapi/sys/common/static/"+(1==e.wgt_flag?e.wgt_url:e.version_url);this.update_confirm=!0,this.downloadTask=uni.downloadFile({url:t,header:this.header,success:function(e){l("log","at component/zy-upgrade/zy-upgrade.vue:223","!!!",e),200==e.statusCode?plus.runtime.install(e.tempFilePath,{force:!1},(function(){plus.runtime.restart()}),(function(e){l("error","at component/zy-upgrade/zy-upgrade.vue:232","install fail...",JSON.stringify(e)),uni.showToast({title:"升级失败",icon:"none"})})):uni.showToast({title:"下载失败,网络错误",icon:"none"})},fail:function(e){uni.showToast({title:"下载失败:"+e.errMsg,icon:"none"}),this.update_flag=!1},complete:function(){}}),this.downloadTask.onProgressUpdate((function(t){if(e.update_process=t.progress,t.progress==1/0){let l=t.totalBytesWritten/e.size*100;l>100&&(l=100),e.update_process=l}}))}}}},[["render",function(t,l,a,i,n,r){return e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["zy-modal",n.dshow?"show":""])},[e.createElementVNode("view",{style:{position:"absolute",top:"300rpx",left:"1040rpx","z-index":"9999"}},[e.createElementVNode("image",{style:{width:"300rpx",height:"400rpx",position:"absolute",top:"0rpx",left:"0rpx"},src:"/static/index/update/fly.png"})]),e.createElementVNode("view",{class:"zy-dialog",style:{"background-color":"#fff","border-radius":"40rpx"}},[e.createElementVNode("view",{style:{height:"400rpx",width:"100%",position:"relative"}},[e.createElementVNode("image",{style:{width:"1800rpx",height:"1600rpx",position:"absolute",top:"-370rpx",left:"-220rpx"},src:"/static/index/update/bgc.png"})]),e.createElementVNode("view",{class:e.normalizeClass("zy-upgrade-topbg-"+a.theme)},[e.createElementVNode("view",null,[e.createElementVNode("text",{class:"zy-upgrade-title"}," 发现新版本 ")]),e.createElementVNode("text",{class:"flex-wrap",style:{"margin-top":"10rpx"}},e.toDisplayString(r.version),1)],2),e.createElementVNode("view",{class:"padding-xl bg-white text-left"},[n.update_flag?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("scroll-view",{key:0,style:{"max-height":"200rpx","text-align":"center"},"scroll-y":"auto"},[e.createElementVNode("text",null,e.toDisplayString(n.update_tips),1)])),n.update_flag?(e.openBlock(),e.createElementBlock("view",{key:1,class:"zy-progress radius striped active"},[e.createElementVNode("view",{class:e.normalizeClass("bg-"+a.theme),style:e.normalizeStyle("width: "+n.update_process+"%;")},e.toDisplayString(n.update_process),7)])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"zy-bar bg-white",style:{"justify-content":"center",display:"flex","margin-bottom":"60rpx"}},[n.update_flag?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"action"},[e.createElementVNode("button",{class:e.normalizeClass(["zy-btn","bg-"+a.theme]),onClick:l[0]||(l[0]=(...e)=>r.upgrade_checked&&r.upgrade_checked(...e))},"确认升级",2),n.forceupgrade?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("button",{key:0,class:e.normalizeClass(["zy-btn margin-left","line-"+a.theme]),onClick:l[1]||(l[1]=(...e)=>r.upgrade_cancel&&r.upgrade_cancel(...e))},"取消升级",2))])),n.update_flag&&!n.forceupgrade?(e.openBlock(),e.createElementBlock("view",{key:1,class:"action text-center"},[e.createElementVNode("button",{class:e.normalizeClass(["zy-btn","bg-"+a.theme]),onClick:l[2]||(l[2]=(...e)=>r.upgrade_break&&r.upgrade_break(...e))},"中断升级",2)])):e.createCommentVNode("",!0)])])],2)}],["__scopeId","data-v-cd70e807"]]);const m=s({},[["render",function(t,l){return e.openBlock(),e.createElementBlock("view",{class:"all"},[e.createElementVNode("scroll-view",{"scroll-y":"",class:"all-content"},[e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 特别提示 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 欢迎使用NU护理单元为您提供的NU护理单元平台。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"请您务必审慎并完整阅读以下内容,特别是免除或者限制NU护理单元责任的条款、对用户权利进行限制的条款、规定本协议的适用法律及有权解决争议的司法管辖区的条款。限制、免责条款或者其他涉及您重大权益的条款可能以加粗等形式提示您重点注意。请注意,目前在您的地区可能无法使用NU护理单元平台上的某些服务和功能(特别是涉及身份认证和支付的功能)。给您带来的不便,我们深表歉意,并正在努力尽快(如可能)提供这些服务和功能。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 如您未满18周岁或未满您居住所在地要求可使用NU护理单元平台的年龄,请不要使用NU护理单元平台。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 除非您已充分阅读并接受本协议所有条款,否则您无权使用NU护理单元平台。如您不同意本协议或其中任何条款,您应立即停止使用NU护理单元平台。您点击“同意”,或者您使用NU护理单元平台,或者以其他任何明示或者默示方式表示接受本协议的,均视为您已阅读并同意本协议。本协议即在您与NU护理单元之间产生法律效力,成为对双方均具有约束力的法律文件。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 一、定义及协议范围 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 1.1 定义 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," NU护理单元平台:指吉林省捌零信创有限公司(以下简称“NU护理单元”或“我们”)合法拥有并运营的名称为“NU护理单元” 和/或小程序、客户端应用程序以及我们不时提供的其他形式。“我们的”应相应地进行理解。为免疑义,我们亦保留调整NU护理单元平台名称的所有权利。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," NU护理单元账号或账号:指用户在使用NU护理单元平台时可能需要注册的账号。我们为用户提供NU护理单元平台注册通道,您可通过移动电话号码或我们允许的其他方式注册NU护理单元账号。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 用户:指NU护理单元平台的使用人,在本协议中更多地称为“您”。“您的”应相应地进行理解。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 不良信息:指含有下列内容的信息: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 违反中国宪法确定的基本原则,煽动抗拒或者破坏中国宪法等法律法规实施的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 危害中国国家统一、主权和领土完整,泄露中国国家秘密,危害中国国家安全,损害中国国家尊严、荣誉和利益,宣扬恐怖主义、极端主义的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 诋毁中华民族优秀文化传统,煽动民族仇恨、民族歧视,侵害中华民族风俗习惯,歪曲中华民族历史和民族历史人物,伤害民族感情,破坏民族团结的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 煽动破坏中国国家宗教政策,宣扬宗教狂热,危害宗教和睦,伤害信教公民宗教感情,破坏信教公民和不信教公民团结,宣扬邪教、迷信的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 危害中国社会公德,扰乱中国社会秩序,破坏中国社会稳定,宣扬淫秽、赌博、吸毒,渲染暴力、恐怖,教唆犯罪或者传授犯罪方法的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 侵害未成年人合法权益或者损害未成年人身心健康的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 侮辱、诽谤他人或者散布他人隐私,侵害他人合法权益的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 违反法律法规底线、中国社会主义制度底线、中国国家利益底线、中国公民合法权益底线、中国社会公共秩序底线、道德风尚底线和信息真实性底线的“七条底线”要求的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 法律法规禁止的其他内容。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 1.2 协议范围 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 本协议是您与NU护理单元之间关于您下载、安装、使用NU护理单元平台所订立的协议,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"包括本协议正文、《NU护理单元用户隐私政策》《NU护理单元未成年人个人信息保护规则》《NU护理单元社区公约》《NU护理单元社区规范》及NU护理单元已经发布的或将来可能发布/更新的并采取合理途径通知的各类规则、规范、通知等。"),e.createTextVNode("所有规则均为本协议不可分割的组成部分,且具有同等法律效力。 ")]),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 二、账号管理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 2.1 账号获得 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," NU护理单元平台为您提供注册及登录通道,您可按照页面提示填写信息、阅读并同意本协议,在完成全部注册登录程序后,成为NU护理单元平台用户。您还需要根据法律法规的规定(如有)填写您真实的身份信息,否则您可能无法使用NU护理单元平台服务或在使用NU护理单元平台服务过程中受到限制。您了解并同意,您有义务保持您向我们提供的信息的真实性、有效性、准确性及完整性。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您注册获得的账号、设置的密码是您登录并以用户身份使用NU护理单元平台的凭证,您应当谨慎使用、妥善保管。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您须对账号进行的所有活动和行为负责。若因您保管不善导致的盗号、密码丢失、账号被非法使用的责任将由您自行承担。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您不得恶意注册NU护理单元账号,包括但不限于通过频繁注册、批量注册、使用他人身份注册或其他不以正常使用NU护理单元平台为目的的账号注册行为。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 2.2 账号信息设置 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您在注册或使用NU护理单元平台时提供的信息资料(包括但不限于昵称、头像及简介)须遵守法律法规、社会道德风尚和信息真实性等原则,不得出现不良信息,不得冒用他人姓名、名称、字号、头像或使用其他足以引起混淆的方式设置账号,不得侵害第三方的合法权益。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 2.3 账号使用及权属 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 部分第三方网站或者服务可以用NU护理单元账号作为其登录途径之一。您知晓,除非NU护理单元特别说明外,这些网站或者服务并非NU护理单元运营,您应自行判断此类第三方网站或者服务的安全性和可用性,并自行承担相关风险和责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 由于您的账号关联您的个人信息及NU护理单元平台商业信息,您的账号仅限您本人使用。未经NU护理单元同意,授权第三方使用您账号或获取您账号项下信息的行为无效。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"如NU护理单元判断您账号的使用可能违反法律法规或本协议、危及您的账号安全及/或NU护理单元平台信息安全的,NU护理单元可拒绝提供相应服务,采取包括但不限于暂停、封禁、注销、收回您的账号,或终止本协议的措施,由此带来的包括但不限于您账号中的内容以及虚拟物品的清空等损失由您自行承担。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 2.4 账号注销及回收 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 您可以依照NU护理单元平台的流程申请注销您的NU护理单元账号,但您仍应对您在注销账号前和使用NU护理单元平台期间的行为承担相应责任。注销成功后,除非法律法规另有规定,NU护理单元不会为您提供账号记录、内容或虚拟财产恢复等服务,请您谨慎操作。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您理解并同意,为了充分利用账号资源,如您在注册后未及时进行初次登录使用或连续超过六个月未登录账号并使用,且不存在未到期或未履行完毕的持续性NU护理单元平台服务的,NU护理单元有权收回您的账号。如您的账号被收回,您无法通过您此前持有被收回的账号登录并使用NU护理单元平台,您账号下保存的内容、权限、个性化设置和使用记录等信息也将无法恢复。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 2.5 账号违规处置 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 若您在注册或使用NU护理单元账号时,存在任何违反法律法规或不符合本协议约定的行为,NU护理单元有权不予注册;已经注册的,NU护理单元有权视情况要求用户限期改正,或采取短期封禁、永久封禁、注销账号等措施。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 三、NU护理单元平台服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.1 内容浏览 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您可通过NU护理单元平台浏览订阅各类信息和内容。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您对NU护理单元平台中的内容须自行加以判断,并自行承担因依赖或使用该等内容而引起的风险。在适用法律允许的最大限度内,您应对基于该等内容进行的所有支付或交易,或因前述内容而造成的任何损害或损失由您自行承担。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.2 内容发布 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 在遵守本协议的前提下,您可使用NU护理单元平台发表属于您原创或您有权发表的观点看法、文字、信息、图片、音视频等内容。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您在NU护理单元平台发布的任何内容均不代表NU护理单元的观点、立场或政策,您自行对您所发布内容承担全部责任。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您通过NU护理单元平台发布内容时必须遵守全部法律法规,不得利用NU护理单元平台制作、复制、发布、传播、储存任何违反法律法规、危害中国国家安全、可能对用户财产安全或信息安全造成损失的信息、营销信息、低俗不当信息或其他我们认为不应发布的信息不良信息以及不实信息等内容。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 用户不得利用基于深度学习、虚拟现实、生成式人工智能等新技术新应用制作、上传、复制、传送或传播虚假新闻信息等法律法规禁止的信息内容,或将合成内容谎称为真实或自然内容。您在发布或传播利用基于深度学习、虚拟现实、生成式人工智能等新技术新应用制作的非真实信息时,应当以显著方式予以标识,否则我们有权对相关内容和账号采取包括但不限于增加标识、限制、封禁等措施。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.3 商品与服务交易 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},[e.createTextVNode(" 您可使用NU护理单元平台进行商品与服务的交易,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"如您是未成年人或限制民事行为能力人,请在监护人同意后进行交易。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 进行交易时请您务必仔细确认所购商品的品名、价格、数量、型号、规格、尺寸或服务的时间、内容,以及该服务的限制性要求等重要事项,并在下单时核实您的联系地址、电话、收货人等信息。如您填写的收货人非您本人,则该收货人的行为和意思表示产生的法律后果均由您承担。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},[e.createTextVNode(" 您的交易行为应当基于真实的消费需求,不得存在对商品或服务实施恶意购买、恶意维权等扰乱NU护理单元平台正常交易秩序的行为。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"基于维护NU护理单元平台交易秩序及交易安全的需要,NU护理单元发现上述情形时可主动执行关闭相关交易订单等操作。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 如您的交易相对方存在利用NU护理单元平台系统漏洞、规则漏洞,不正当获取NU护理单元平台补贴等任何利益的行为,基于维护NU护理单元平台交易秩序、交易安全及NU护理单元合法权益的需要,NU护理单元发现上述情形时可主动执行关闭相关交易订单等操作。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本协议终止后,对于您在本协议存续期间产生的交易订单,NU护理单元可通知交易相对方,并有权自主决定或者根据交易相对方的意愿决定是否关闭未完成的交易订单;如NU护理单元未关闭交易订单,则您应当就该等交易订单继续履行本协议及交易订单的约定,并承担因此产生的法律责任及损失。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.4 内容分享与转发 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您可对NU护理单元平台的信息内容进行分享、转发,但未经NU护理单元书面许可,您不得复制、读取、采用、统计NU护理单元平台的信息内容及相关数据,或者进行任何形式的销售和商业使用,或者向第三方泄露、提供或允许第三方为任何方式的使用。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.5 活动参与 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您可通过NU护理单元平台参与NU护理单元不定期组织的各类线上、线下互动活动,但您"),e.createElementVNode("text",{style:{"font-weight":"600"}},"不得采取任何不正当或作弊的违规手段参与活动,否则NU护理单元有权限制或取消您参与活动的资格,并有权取消、追讨您已获得、领取的奖励,并保留追究您法律责任的权利。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.6 服务费用 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" NU护理单元为向您提供的NU护理单元平台服务付出了大量的成本,除NU护理单元平台明示的收费业务外,NU护理单元向您提供的NU护理单元平台服务是免费的。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"如未来NU护理单元向您收取合理费用,NU护理单元会采取合理方式并以合理的期限提前通知您,确保您有充分选择的权利。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 在NU护理单元降低收费服务的收费标准或者将收费服务改为免费服务提供时,NU护理单元保留不对原付费用户提供退费或者费用调整之权利。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 四、权利与许可 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 4.1 平台声明 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"平台知识产权。"),e.createTextVNode("NU护理单元平台所提供的内容,包括但不限于视频、图文、文字表述及其组合、界面设计、版面框架、图标、商标等,均由NU护理单元所有或授权使用,受中华人民共和国著作权法、商标法、专利法、反不正当竞争法及国际条约,以及其他国家或司法管辖区的知识产权法律法规的保护。未经NU护理单元书面允许,用户不得为任何目的擅自使用、复制、再造这些内容、或创造与内容有关的派生产品。我们保留本条款中未明确授予您的所有权利。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"平台使用规范。"),e.createTextVNode("您不得从事下列行为: ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 对NU护理单元平台或NU护理单元平台服务进行反向工程、反向汇编、反向编译,或者以其他方式尝试发现NU护理单元平台的源代码; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 以任何方式(包括但不限于盗链、冗余盗取、非法抓取、模拟下载、深度链接、假冒注册等)直接或间接盗取NU护理单元平台的视频、图文、用户信息等信息内容; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 通过非NU护理单元开发、授权、许可的第三方软件、插件、外挂、系统,登录或使用NU护理单元平台,或对NU护理单元平台的正常运行进行干扰、破坏、修改或施加其他影响; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 利用或针对NU护理单元平台进行任何危害我们或任何第三方计算机网络安全的行为,或暴露我们或任何第三方计算机网络安全弱点的行为,包括但不限于:非法侵入网络、干扰网络正常功能、窃取网络数据等危害网络安全、为上述行为提供程序、工具或其他支持与帮助;干涉、破坏NU护理单元平台系统、软件或网站的正常运行,故意传播恶意程序或病毒和其他破坏干扰正常网络信息服务的行为; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 其他以任何不合法的方式、为任何不合法的目的、或与NU护理单元为此制定的其他规范和标准不一致的方式使用NU护理单元平台或NU护理单元平台服务。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 4.2 用户内容及信息授权 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您在NU护理单元平台发布、上传的内容(包括但不限于文字、图片、视频、音频等)应有合法来源,相关内容为您所有或您已获得必要的授权。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 除非有相反证明,您理解并同意,为使用户内容得到更好的分享及推广,提高其传播价值及影响力,您授予NU护理单元免费的、不可撤销的、非排他的、全球无地域限制的许可使用,包括:存储、使用、传播、复制、修订、改编、汇编、出版、展示、翻译、表演用户内容或制作派生作品,以已知或日后开发的形式、媒体或技术将内容纳入其它作品,再许可第三方按照前述方式使用的权利,以及以自身名义或委托专业第三方对侵犯您上传发布的享有知识产权的内容进行取证、发起投诉或提起诉讼的权利。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 为免歧义,上述许可包括使用、复制和展示用户内容中的个人形象、肖像、姓名、商标、品牌、标识及其他营销推广素材、物料的权利和许可。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 4.3 侵权投诉 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 我们尊重并保护您及他人的知识产权、名誉权、姓名权、隐私权等合法权益。您保证,在NU护理单元平台上传的文字、图片、视频、音频、链接等不侵犯任何第三方的知识产权、名誉权、姓名权、隐私权等合法权益。否则,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元有权在收到权利方或者相关方通知的情况下移除该涉嫌侵权内容。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您认为NU护理单元平台上的内容侵犯您的合法权益,应当向我们发送侵权通知,具体通知方式和要求按侵权投诉指引执行。我们将在收到有效通知后进行审核,对可以初步证明构成侵权的内容采取必要措施。对无法认定为侵权的内容,您也将收到相应告知,如果您仍然认为侵权事实存在,新的侵权通知中应当补充证明侵权的证据。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 在适用法律允许的最大限度内,NU护理单元储存在其服务器上的数据是用户使用NU护理单元平台和NU护理单元平台服务的唯一有效证据。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 五、法律责任 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 5.1 违约处理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 如您违反本协议约定,NU护理单元有权作出独立判断,立即暂停或终止向您提供部分或全部NU护理单元平台服务,包括采取禁言、屏蔽信息、删除发布内容、封禁账号、注销账号等措施。您应对与该等措施相关的任何损失和损害(包括但不限于您账号的内容、虚拟财产和权限清空、无法正常使用账号及相关NU护理单元平台服务或任何其他后果)承担全部责任和义务。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 5.2 责任承担 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 您承担法律责任的形式包括但不限于:对受到侵害者充分赔偿损失、赔礼道歉、补救负面影响、返还财产等。如您的行为给NU护理单元造成损失的,您应承担全部赔偿责任,包括行政处罚或损害赔偿款等直接损失以及商誉损失、和解款、律师费、诉讼费等间接损失。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 5.3 反商业贿赂 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您充分了解,任何向NU护理单元的雇员或顾问等提供实物、现金、现金等价物、劳务、旅游等价值明显超出正常商务洽谈范畴的利益,均视为商业贿赂行为。发生前述情形的,NU护理单元可立即终止与您的所有合作并追究您的法律责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 5.4 关联处理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您因违约导致NU护理单元终止本协议时,出于维护NU护理单元平台秩序的目的,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元可终止与您在其他协议(如有)项下的合作。如您违反任何NU护理单元与您订立的其他协议,NU护理单元亦有权终止本协议。除前述协议终止外,NU护理单元亦可追究您在本协议或其他协议下的违约责任。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 5.5 信息公示 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 我们可将对您上述违约行为的处置信息,以及其他经国家行政或司法机关生效法律文书确认的违法信息,在"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元平台"),e.createTextVNode("上予以公示。对涉嫌违反法律法规的行为,我们有义务保存有关记录,向国家有关机关报告并配合调查。 ")]),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 六、责任限制、免责事由和赔偿 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 由于各国家或地区的法律与其他一些法律不同,本协议包括仅适用于您位于欧洲经济区(“EEA”)、英国和瑞士(统称 “EEA+”)内情况的条款(第6.1 条)、仅适用于您位于中国内情况的条款(第 6.2 条)(为免疑义,仅为第6.2条之目的,中国不包含香港特别行政区、澳门特别行政区和中国台湾)和仅适用于您位于其他国家或地区的情况的条款(第 6.3 条)。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.1 如您位于 EEA+内 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本第6.1条仅适用于您位于EEA+内的情况。在我们已尽专业勤勉义务的前提下,我们不对任何损失或损害承担责任,除非其:(1)是由于我们对本协议的违反而造成的;或(2)在签订本协议时可被合理预见,即其显然会发生,或在您与我们签订本协议时已知可能会发生。本协议无意排除或限制我们对死亡或人身伤害、欺诈、欺诈性虚假陈述或任何法律规定不能排除的责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 尽管本协议另有规定,如果我们怀疑您违反了本协议,我们将遵循以下步骤。首先,我们可能会进行调查,在调查期间,我们可能会暂停您对NU护理单元平台的访问,并根据涉嫌违规行为的严重程度,在适用法律允许的范围内,根据任何法律义务,合理客观地采取行动。在下列情况下,我们可能决定暂时中止或永久终止您对NU护理单元平台的访问:(1) 我们根据法律法规合理客观地认定您严重或多次违反本协议;(2) 我们有客观理由合理地认为您即将严重违反本协议;(3) 法律要求我们如此行事;或 (4) 我们有客观理由合理地认为在处理严重的技术或安全问题时需要如此行事。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.2 如您位于中国 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本第6.2条仅适用于您位于中国内的情况。仅为第6.2条之目的,中国不包含香港特别行政区、澳门特别行政区和中国台湾。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 除适用法律另有明确规定外,在任何情况下,我们均不对任何间接性、后果性、惩罚性、偶然性、特殊性或刑罚性的损害承担责任,该等损害包括但不限于您因使用NU护理单元平台或NU护理单元平台服务而遭受的利润损失。除适用法律另有明确规定外,我们对您承担的全部责任,无论因何原因或何种行为方式,始终不超过您因使用NU护理单元平台或NU护理单元平台服务期间而支付给我们的费用(如有)。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.3 如您位于其他国家或地区 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本第6.3条仅适用于您位于第6.1条所述EEA+和第6.2条所述中国外的情况。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 无陈述或保证:NU护理单元平台和NU护理单元平台服务按“现状”“可用”提供,且您“风险自担”。在法律允许的最大范围内,我们明确不作对NU护理单元平台和NU护理单元平台服务的任何及所有明示或默示的陈述和保证,包括对适销性的默示保证、针对特定用途的适用性或非侵权性。我们不保证NU护理单元平台和NU护理单元平台服务能够满足您的要求,也不保证NU护理单元平台和NU护理单元平台服务的运行不会中断或没有错误。与NU护理单元平台和NU护理单元平台服务相关的信息、内容和服务可能包含漏洞、错误、问题或其他限制。在法律允许的最大范围内,我们、我们的关联公司、我们或其各自的董事、高级职员、雇员、代理、服务提供商和许可方(统称 “NU护理单元方”)对您使用NU护理单元平台和NU护理单元平台服务不承担任何责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 责任限制:在法律允许的最大范围内,NU护理单元方不对任何因本协议、NU护理单元平台或NU护理单元平台服务引起的或与之相关的任何间接的、附带的、结果性的、特殊的、法定的、约定的、惩罚性的或其他类似的损害赔偿,或任何超出实际损害的损害赔偿,包括收入损失、利润损失、数据丢失、业务中断或其他无形损失(无论此类损失如何定性)承担责任,无论是否基于合同、侵权行为或任何其他法律理论,也无论各方是否已被告知此类损失的可能性。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"访问由我们自行决定:"),e.createTextVNode("在法律允许的最大范围内,我们可随时自行决定,不经另行通知,限制、暂停、修改或终止您对NU护理单元平台或NU护理单元平台服务的访问,包括在您未能遵守或我们怀疑您未能遵守或即将未能遵守本协议的任何规定,或实际或涉嫌非法或不当情况下。任何此类终止或暂停将不影响我们根据适用法律可能享有的任何其他权利。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"辩护和赔偿:"),e.createTextVNode("对于因您使用NU护理单元平台和NU护理单元平台服务或您违反本协议而导致或引起的任何第三方主张的任何索赔、要求、指控、调查、诉讼、程序或其他争议,您同意为NU护理单元方辩护。并且您同意赔偿NU护理单元方因任何此类争议而产生的任何损害、责任、估定、损失、成本和其他费用(包括合理的律师费和法律费用),并使其免受损害。我们将及时通知您任何此类争议,并将向您提供合理协助,费用由您承担,以就任何此类争议进行抗辩,但未提供此类通知并不免除您在本协议项下的任何义务,除非您因未被提供此类通知而受到重大损害。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"例外:"),e.createTextVNode("本协议中的任何内容均不排除或限制因我们的严重疏忽或故意不当行为而导致的任何责任,或法律不能排除的任何责任。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.4 第三方服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您在使用NU护理单元平台某一特定服务时,该服务可能会另有单独的协议或规则,您在使用该项服务前请阅读并同意相关的单独协议或规则。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您在NU护理单元平台使用第三方提供的产品或服务时,除遵守本协议及其他相关规则外,还可能需要您仔细阅读、同意并遵守第三方的协议、相关规则。如因第三方产品或服务产生的争议、损失或损害,需由您自行与第三方依据相关协议解决。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.5 平台责任承担 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 我们仅按照适用法律法规规定承担平台责任。我们不对任何第三方的诽谤、犯罪或其他非法行为承担责任,也不赔偿因此造成的您的损失。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.6 服务变更、中断、终止 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," NU护理单元始终在不断变更和改进NU护理单元平台服务,我们会尽最大努力向您提供服务,确保服务的连贯性和安全性。基于此,我们可能会对NU护理单元平台进行更新,您应将软件更新到最新版本,否则我们不保证您可正常使用NU护理单元平台。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您理解并同意,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元根据自身商业决策、政府行为、不可抗力等原因可能会选择中止、中断及终止NU护理单元平台的部分或全部服务。"),e.createTextVNode("如有此等情形发生,我们会采取合理的方式并以合理的期限提前通知您,除法律法规另有规定外,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"我们不承担由此对您造成的损失。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 在NU护理单元发生合并、分立、收购、资产转让时,NU护理单元可将本协议下部分或全部NU护理单元平台服务及相应的权利义务转交由第三方运营或履行。具体受让主体以NU护理单元通知为准。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如发生下列任何一种情形,我们有权不经通知而中断或终止向您提供服务: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 根据法律法规规定您应提交真实信息,而您提供的个人资料不真实、或与注册时信息不一致又未能提供合理证明。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您违反相关法律法规的规定或违反本协议的约定。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 按照法律法规规定,或司法机关或主管部门的要求。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 出于安全的原因或其他必要的情形。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 七、协议变更与终止 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 7.1 协议变更通知 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"我们有权在必要时,修改本协议内容,并将通过合理的方式(包括但不限于NU护理单元平台公告、系统消息、站内信、手机短信、电子邮件或其他类似方式)及合理的期限提前通知您,该等通知于发送之日视为已送达您。"),e.createTextVNode("您可以通过NU护理单元平台相关页面查阅最新版本的协议内容。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 7.2 变更协议生效 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"本协议变更生效后,如您继续使用NU护理单元平台或NU护理单元平台服务,即视为您已接受修改后的协议。如您不接受修改后的协议,应当停止使用NU护理单元平台或NU护理单元平台服务。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 7.3 协议终止 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您注销您的NU护理单元账号或NU护理单元通知您终止为您提供NU护理单元平台服务(包括但不限于封禁账号、注销账号或其他类似措施)时,本协议将同时终止,NU护理单元将不再另行通知您终止本协议。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 八、法律适用与管辖 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 8.1 本协议的订立、生效、履行、解释、修订、终止及纠纷解决,适用中华人民共和国法律法规(仅为本协议之目的,不包括香港特别行政区及澳门特别行政区法律法规,和中国台湾地区有关规定)。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 8.2 若您与NU护理单元之间发生任何纠纷或争议,由NU护理单元与您协商解决。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"协商不成的,您同意将纠纷或争议提交被告所在地人民法院管辖。")]),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 九、其他 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 9.1 本协议所有条款的标题仅为阅读和理解方便,本身并无实际涵义,不能作为本协议涵义解释的依据。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 9.2 本协议条款无论因何种原因部分无效或不可执行,其余条款仍有效,并对双方具有约束力。如果某条款规定我们在特定情况下有特定权利,这并不意味着该权利是我们在该等特定情况下可以行使的唯一权利,也不意味着该条款取消或使涉及相同情况或主旨事项的任何其他条款无效或失效。任何一方未能执行或延迟执行本协议项下的任何权利、救济或条款,不应被视为放弃该权利、救济或条款。任何弃权必须明确以书面形式作出并由弃权方签署。任何权利或救济的单次或部分行使,不应妨碍该权利或补救措施或任何其他权利或补救措施的进一步或其他行使。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 9.3 如您对本协议有任何意见或建议,您可向NU护理单元平台(service@blxinchuang.com)反馈,我们会给予您必要的帮助。 ")])])}],["__scopeId","data-v-8b11c490"]]);const u=s({},[["render",function(t,l){return e.openBlock(),e.createElementBlock("view",{class:"all"},[e.createElementVNode("scroll-view",{"scroll-y":"",class:"all-content"},[e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx"}}," 为了更好地保障您的权益,我们于近日更新了《NU护理单元隐私信息保护政策》。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx"}}," 请您在使用/继续使用NU护理单元产品/或服务前仔细阅读、充分理解全文,并在同意全部内容后使用/继续使用。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 前言 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1. NU护理单元/或服务指由吉林省捌零信创科技有限公司及其关联公司(以下称为“NU护理单元”或者“我们”)运营,并由吉林省捌零信创科技有限公司开发及维护的产品和服务(以下亦称“我们的产品/或服务”)。我们非常重视您的隐私保护和个人信息保护,鉴于此,我们制定本《NU护理单元隐私信息保护政策》(以下称为“本政策”),与您确认关于您在使用我们的产品/或服务期间,NU护理单元收集、存储、使用、披露和保护您的个人信息的相关事宜。如您对本政策内容有任何疑问、意见或建议,您可通过我们提供的各种联系方式与我们联系。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 2. 在使用我们的各项产品和/或服务前,请您务必仔细阅读并透彻理解本政策,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"特别是以粗体、粗体加下划线标识的条款,您应重点阅读,在确认充分理解并同意后开始使用。如果您/您的监护人不同意本政策的任何内容,您应该立即停止使用。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3. 本政策为NU护理单元统一适用的一般性隐私政策条款,适用于NU护理单元提供的所有产品和服务。当我们及关联公司就其向您提供的特定产品和/或服务单独设立隐私政策的,则优先适用该产品和/或服务的隐私政策。该产品和/或服务的隐私政策未涵盖的内容,以本政策内容为准;该产品和/或服务的隐私政策与本政策存在冲突的,以该产品和/或服务的隐私政策为准。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 4. "),e.createElementVNode("text",{style:{"font-weight":"600"}},"请您注意,本政策不适用于与我们的平台、产品和/或服务集成的任何第三方应用程序或软件,或者任何其他第三方产品、服务或业务(统称为“第三方服务”)。第三方服务由第三方负责运营,您使用第三方服务应遵守第三方为此制定的隐私政策或其他个人信息处理规则,我们提示您仔细识别实际服务的提供方,并在使用任何第三方服务之前仔细查看相关规则。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 5. 您同意本政策表示您已经了解并同意在相关场景下,为实现功能运行,我们将对您的相关个人信息进行处理。但这并不代表只要您开始使用我们的产品和/或服务,我们即开始处理本政策中涉及的您的全部个人信息。只有当您使用特定功能时,我们才会根据“最小必要”原则,为实现向您提供产品功能及服务的目的,处理您的相关个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 6. 您理解并同意,基于不断完善产品和服务的目的,我们将不时推出新增和/或优化功能,可能增加或变更收集、使用个人信息的范围、目的和方式。对此,我们将通过更新本政策、页面提示、新签署文件、弹窗、网站公告或站内信等即时通知方式另行向您明确说明,并为您提供同意与否的选项。该等即时通知是本政策的有效组成部分,与本政策具有同等法律效力。您有权拒绝同意该等即时通知,但您同时知悉并理解,一旦您拒绝我们收集、处理您的个人信息属于实现更新服务或功能所必要的情形时,我们将可能无法为您提供更新后的服务与功能,或者无法达到更新服务的效果,但您原有正常使用的基础功能不受影响。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 关于我们 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们的主要运营公司基本情况如下:长春市经济开发区长吉南线以东、吉林大路以南东方广场中意国际大厦B座1431号。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 联系电话:18043530712。如您想更详细的了解我们的公司、平台,您可以通过本政策提供的联系方式与我们联系。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 第一部分 定义 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"1. 个人信息:"),e.createTextVNode("是以电子或者其他方式记录的与已识别或者可识别的自然人有关的各种信息,不包括匿名化处理后的信息。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"2. 敏感个人信息:"),e.createTextVNode("是一旦泄露或者非法使用,容易导致自然人的人格尊严受到侵害或者人身、财产安全受到危害的个人信息,包括"),e.createElementVNode("text",{style:{"font-weight":"600"}},"生物识别、宗教信仰、特定身份、金融账户、行踪轨迹等信息,以及不满十四周岁未成年人的个人信息。敏感信息在本政策中会做加粗加下划线提示。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"3. 个人信息的处理:"),e.createTextVNode("包括个人信息的收集、存储、使用、加工、传输、提供、公开、删除等。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"4.个人信息处理者:"),e.createTextVNode("是指在个人信息处理活动中自主决定处理目的、处理方式的组织、个人。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"5.个人信息主体:"),e.createTextVNode("指个人信息所标识或者关联的自然人。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"6.自动化决策:"),e.createTextVNode("是指通过计算机程序自动分析、评估个人的行为习惯、兴趣爱好或者经济、健康、信用状况等,并进行决策的活动。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"7.去标识化:"),e.createTextVNode("指个人信息经过处理,使其在不借助额外信息的情况下,无法识别特定自然人的过程。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"8.匿名化:"),e.createTextVNode("指个人信息经过处理无法识别特定自然人且不能复原的过程。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"9. NU护理单元:"),e.createTextVNode("是指NU护理单元或其关联公司发布和/或运营的包括但不限于NU护理单元相关的网络平台。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"10. NU护理单元产品和/或服务:"),e.createTextVNode("指我们基于互联网,以包含NU护理单元网站、客户端(含APP\\APK\\小程序)及其他产品形态(如SDK\\API等,以及未来技术发展出现的新的形态)向您提供的包括但不限于内容分发、信息网络传播、互联网音视频业务等各项产品和服务。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"11. 平台规则:"),e.createTextVNode("包括在所有NU护理单元网站、客户端内已经发布及后续发布的全部规则、用户服务协议、解读、公告、其他内容以及各平台在频道、活动页面、帮助中心发布的各类规则、实施细则、产品说明、公告及各形式的平台规范。 ")]),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 第二部分 隐私保护政策 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本政策将帮助您了解以下内容: "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 一、我们如何收集和使用您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 二、我们如何使用 Cookie 和同类技术 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 三、我们如何共享、转让和披露您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 四、我们如何存储您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 五、我们如何保护您的个人信息安全 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 六、我们如何保护未成年人的个人信息 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 七、您如何行使您的个人信息权利 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 八、如何联系我们 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 一、我们如何收集和使用您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 因向您提供的产品和服务种类众多,我们将根据具体产品/服务范围和不同功能,遵循合法、正当和必要原则收集和使用您的个人信息。以下我们向您逐一告知各功能需要的必要个人信息类型及需授权的权限。 "),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (一) 帮助您注册、登录和维护平台账号 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1. 注册与登录 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" (1) 手机号或账号密码注册/登录:当您注册、登录我们的产品和/或服务时,为了帮您顺利完成注册/登录流程,您需要提供: "),e.createElementVNode("text",{style:{"font-weight":"600"}},"手机号码、短信验证码信息或NU护理单元登录账号及密码信息。"),e.createTextVNode("同时,我们还提供 “一键登录”功能,与我们建立合作关系的运营商或其合作伙伴会将您设备中的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"手机号码"),e.createTextVNode("提供给我们作为您的注册、登录账号并免于动态验证码核验,便于我们为您提供快捷的注册、登录服务。如果您不希望使用“一键登录”功能,可以选择其他方式进行注册、登录。收集手机号码信息是为了满足相关法律法规的网络实名制要求,如您拒绝提供手机号码进行核验,将导致注册/登录失败,但您仍可在游客模式下使用音视频的浏览、搜索、播放功能。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" (2) 扫码登录:当您通过扫码方式进行登录时,我们会请求您授权设备的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"相机、相册/存储权限"),e.createTextVNode(",以实现通过扫描二维码方式完成登录。如您不需要使用扫码登录服务,您也可以选择其他登录方式。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2. 资料维护和账号找回 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" (1) 为维护您的基本资料,提升您的服务体验,您可以选择填写完善您的个人信息,包括您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"电子邮箱、性别、所在地、头像、昵称、生日、个人简介;"),e.createTextVNode("在相关儿童页面,您也可以选择在宝贝信息界面内填写您宝贝的性别和生日,当您选择上传头像时,我们会请求您授权"),e.createElementVNode("text",{style:{"font-weight":"600"}},"相机、相册/存储权限"),e.createTextVNode(",以实现头像拍摄或选择后完成上传。当您选择一键同步第三方账号昵称和头像时,经您授权,第三方平台将与我们同步您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"第三方账号信息(如头像、昵称,具体以您的授权范围为准)。"),e.createTextVNode("如您选择不提供这些信息,不会影响您使用基础服务功能。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," (2) 若您希望绑定或者解绑您所关联的第三方平台账号,您可以随时在“我的-设置-账号与安全-账号绑定”进行设置,第三方平台账号的绑定或解绑不会影响您使用基础服务功能。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" (3) 如果您的账号遗失,您可以找回账号。如果您遗忘账号密码,您可以通过手机短信验证,或联系客服找回密码或重置密码;您也可以换绑已注册手机号码。但在此过程中,我们可能需要您提供必要的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"身份信息、手机号码、经常登录地点、经常登录设备、经常收听内容、注册时间和城市信息"),e.createTextVNode("等相关信息以验证您的身份;为了核验您的真实身份,必要时还可能通过静态或动态的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"人脸识别"),e.createTextVNode("验证您的真实身份。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3. 账号权益与资金 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," (1) 账号权益:基于NU护理单元统一账号体系和便于您在我们的产品和/或服务中使用相关权益与资产,我们会收集您在NU护理单元账号下的权益及资产信息,同时,我们会在应用内向您展示您的部分或全部前述信息,具体以页面实际展示为准。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" (2) 资产提现:当您使用我们的提现功能时,需要您提供"),e.createElementVNode("text",{style:{"font-weight":"600"}},"结算主体相关信息(姓名/名称、身份证号/统一社会信用代码)、结算账户相关信息(持卡人/户名、银行卡信息/支付宝账号信息),"),e.createTextVNode("以完成结算主体认证及资金结算账户绑定;若您是境外用户,可能还需要您提供"),e.createElementVNode("text",{style:{"font-weight":"600"}},"境外用户主体身份证明材料(如护照号、手持证照照片等"),e.createTextVNode(")。我们会在应用内向您展示您的部分或全部前述信息,具体以页面实际展示为准。您可以在我们产品的相关页面修改您已绑定的结算账户。如您拒绝提供前述结算账户相关信息,您将无法顺利提现,不影响您使用我们的其他功能与服务。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 4. 若您还未成为平台注册用户,您可以游客身份使用我们提供的基本功能,主要包括音频作品的搜索、浏览和播放。为保障上述功能实现、履行网络系统运营安全义务,我们将收取您的必要"),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备信息(设备型号、设备MAC地址、操作系统版本、唯一移动设备识别码(IMEI、Android ID、IDFA、IDFV、HarmonyOS UUID、SIM卡序列号和IMSI信息))"),e.createTextVNode(",为您分配专属标识符,并基于此标识符记录您游客身份下的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"操作信息"),e.createTextVNode(",即您浏览、播放等记录,并以日志文件的形式进行保存。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 5. 根据相关法律法规对互联网账号的管理要求、维护网络安全和良好的网络内容生态,我们会在您的个人主页以及您发布的内容、信息页面展示您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"IP属地"),e.createTextVNode("(境内IP地址展示至省/自治区/直辖市、境外IP地址展示至国家/地区,具体信息以网络运营商数据为准)。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 6."),e.createElementVNode("text",{style:{"font-weight":"600"}}," 为更好地保护未成年人隐私权益,我们特别提醒您慎重发布包含未成年人素材的内容,一经发布,即视为您已获得权利人同意在我们的产品和/或服务展示未成年人的肖像、声音等信息,且允许我们依据平台协议及本政策使用、处理该等与未成年人相关的内容。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 通讯录权限保持默认关闭状态。如您不希望被推荐给您的通讯录好友,您也可以通过设备权限管理关闭此前向NU护理单元开放的通讯录授权。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 7. 您在使用我们的服务时,若您想分享您喜欢的内容至第三方平台或应用,我们需要从您的设备终端读取"),e.createElementVNode("text",{style:{"font-weight":"600"}},"已安装的移动应用列表"),e.createTextVNode(",用以判断您是否安装了第三方应用,以便为您提供正确的分享功能。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 您在使用我们的服务时所共享的内容和信息,可能会涉及他人的个人信息,请您确认已获得他人的合法授权。与此同时,您有义务妥善保护自己的个人信息,仅在必要的情形下向他人提供、展示自己的信息。如您发现自己的个人信息泄露,尤其是您的账户或密码发生泄露,请您立即联系NU护理单元客服。 "),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (二)为您提供充值服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 为向您展示充值服务,帮助您完成交易,以及向您提供客户服务,同时基于维护支付安全、追溯网络交易行为等相关法律法规要求,当您在使用订阅或购买商品/服务时,我们会收集如下信息: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 1. 当您充值时,我们将收集您在完成交易时的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"服务信息"),e.createTextVNode("生成您的账单明细,此外,我们还需记录并保存"),e.createElementVNode("text",{style:{"font-weight":"600"}},"与订单相关的信息"),e.createTextVNode(",包括:"),e.createElementVNode("text",{style:{"font-weight":"600"}},"交易金额、下单时间、订单编号、订单状态、支付方式、支付流水号、支付状态"),e.createTextVNode(",我们收集这些信息是为了帮助您顺利完成交易、保障您的交易安全、查询订单信息,配合网络交易监管的法定义务。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 上述所有信息构成您的订单信息,我们(包括与为您提供上述服务的第三方)将使用您的订单信息进行您的身份核验、确定交易、支付结算、完成配送、为您查询订单以及提供客服咨询与售后服务。我们还会使用您的订单信息来判断您的交易是否存在异常以保障您的交易安全。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 2. 当您通过扫一扫参加活动时,我们会请求您授权您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"相机权限、相册/存储权限"),e.createTextVNode(",用于识别、保存或上传活动及分享二维码。我们可能会通过您所上传的照片/图片来识别您需要参与的活动链接或者音视频服务链接。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 3. 此外,为判断您是否满足活动要求的参与资格或者为了保障活动的正常秩序、防范作弊与欺诈等违法违规情况,我们同时可能需要收集和使用您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备信息(如:设备型号、设备MAC地址、操作系统版本、唯一移动设备识别码(IMEI、Android ID、IDFA、IDFV、HarmonyOS UUID、SIM卡序列号和IMSI信息))。")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (三)为您提供个性化内容推荐 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 1."),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备信息:"),e.createTextVNode("我们会根据您在软件安装和使用中的具体操作,接收并记录您所使用的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备相关信息(包括设备型号、硬件序列号、设备MAC地址、操作系统版本、设备设置、唯一设备识别码(IMEI、Android ID、IDFA、IDFV、GAID、HarmonyOS UUID、SIM卡序列号和IMSI信息)、UUID、必要的移动应用列表信息、软硬件及设备、设备环境信息、传感器信息)、设备所在位置相关信息"),e.createTextVNode("(为了识别判断您所在地区的内容版权,需要收集您授权的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"GPS精准位置"),e.createTextVNode("以及"),e.createElementVNode("text",{style:{"font-weight":"600"}},"WLAN接入点"),e.createTextVNode("(如SSID、BSSID)和"),e.createElementVNode("text",{style:{"font-weight":"600"}},"基站、传感器"),e.createTextVNode("信息)。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 2."),e.createElementVNode("text",{style:{"font-weight":"600"}},"日志信息:"),e.createTextVNode("当您使用我们的网站或客户端提供的产品或服务时,我们会自动收集您的详细使用情况,并作为网络日志保存。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"日志信息"),e.createTextVNode("包括您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"搜索和浏览记录"),e.createTextVNode("、关注、播放记录、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"购买消费记录"),e.createTextVNode("、访问量、播放时长、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"IP地址"),e.createTextVNode("、WIFI网络、运营商信息、电信运营商网络、使用的语言、访问日期和时间。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们将会在收集上述信息的基础上提取您的偏好特征,并基于特征标签产出间接人群画像,用于为您展示、推送个性化内容和您可能感兴趣的商业广告。但我们努力保障您的产品使用体验。如您对我们推荐的个性化内容不感兴趣或希望不再接收此类个性化服务,您可通过“我的-设置-我的隐私管理-个性化内容推荐/个性化广告推荐”选择关闭。关闭后首页向您展示和推荐的内容将可能与您的偏好相关度降低。 "),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (四)为您提供残障用户专享服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 为履行企业责任、体现社会关怀,当您享受我们为残障人士定向提供的“专享礼包”服务时,您需要提供您的姓名、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"身份证号"),e.createTextVNode("以及"),e.createElementVNode("text",{style:{"font-weight":"600"}},"残疾人证信息"),e.createTextVNode("以实现身份认证,我们会将您提供的前述信息与中国残疾人联合会的数据库进行比对和信息验证,以验证您的身份。如您拒绝提供上述信息,将使您无法享受残障用户专享服务,但不影响您正常使用NU护理单元的其他功能。 ")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (五) 帮助您连接智能设备 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您如希望将App与您所使用的智能设备相连接,您需要开启"),e.createElementVNode("text",{style:{"font-weight":"600"}},"蓝牙权限"),e.createTextVNode(",以使得我们能够搜索到您的智能设备。此外我们可能会收集您的Wi-Fi信息、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"位置信息"),e.createTextVNode("、智能设备信息。这些信息将用于为您提供智能设备快连、连接、发现附近设备和设备管理的功能。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"如您拒绝提供上述信息,我们将无法帮助您连接智能设备,但不影响您正常使用NU护理单元的其他功能。")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (六)为您提供客户服务及处理争议 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 当您向我们发起投诉、申诉或进行咨询时,为了您的账号与系统安全,我们可能需要您先行提供账号信息,并与您之前的个人信息相匹配以验证您的用户身份。同时,为了方便与您联系或帮助您解决问题,我们可能还需要您提供"),e.createElementVNode("text",{style:{"font-weight":"600"}},"姓名、手机号码、电子邮件"),e.createTextVNode("及其他联系方式等个人信息,并通过第三方客服系统保存"),e.createElementVNode("text",{style:{"font-weight":"600"}},"通话录音"),e.createTextVNode(",其中可能包含"),e.createElementVNode("text",{style:{"font-weight":"600"}},"通信/通话记录"),e.createTextVNode(",用于与您联系和帮助您解决问题,或记录相关问题的处理方案及结果。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 为确认交易状态及为您提供商品/服务的售后与争议解决服务,我们会通过您基于交易所选择的支付机构、支付方式等收集与"),e.createElementVNode("text",{style:{"font-weight":"600"}},"交易相关的信息"),e.createTextVNode(",包括iOS端IAP支付交易凭证和收费凭证。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 如您拒绝提供上述信息,我们将无法为您提供完整的客户服务及处理争议,但不影响您正常使用NU护理单元的其他功能。 "),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (七)为您提供安全保障功能 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 为履行维护网络安全义务,提高您使用服务的安全性,确保操作环境安全,预防钓鱼网站、欺诈、网络漏洞、计算机病毒、网络攻击、网络侵入等安全风险,以用于识别设备是否存在篡改设备信息行为,预防、发现和调查潜在的违法违规或违反用户服务协议、政策或规则的行为,如会员账号活动异常、多端登录、流量异常、经常性退款请求或低价转让会员卡等,我们以及在应用程序中嵌入的应用安全SDK将在后台自动收集您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备信息(包括设备型号、硬件序列号、设备MAC地址、操作系统版本、设备设置、唯一移动设备识别码(IMEI、Android ID、IDFA、IDFV、MEID、HarmonyOS UUID、OAID、SIM卡序列号和IMSI信息)、UUID、WLAN接入点(如SSID、BSSID)和基站、必要的移动应用列表信息、运行中的进程信息、软硬件及设备、设备环境信息、设备传感器信息 "),e.createTextVNode("(如磁场传感器、光传感器、压力传感器、旋转矢量传感器、方向传感器、重力传感器、加速度传感器、陀螺仪传感器,请您知悉,单纯的传感器数据并非个人信息))、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"日志信息(包括您的搜索和浏览记录、关注、播放记录、访问量、播放时长、IP地址、WIFI扫描列表、WIFI名称、运营商信息、电信运营商网络、使用的语言、访问日期和时间)"),e.createTextVNode(",并可能使用或整合您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"账户信息、交易信息、支付信息"),e.createTextVNode("以及其他取得您授权或依据法律共享的信息,综合判断您账户及交易风险、完成身份验证、检测,防范安全事件,并依法采取必要的记录、审计、分析、处置措施,保护各方合法权益稳定不受侵害。 ")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (八)其他附加服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 为向您提供个性化的产品和服务,提升用户体验,我们还会向您提供以下附加服务,并仅在您使用到相关功能时向您获取个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"1.驾驶模式:"),e.createTextVNode("当您开启驾驶模式后,我们会在获得您的同意后为您开启语音助手功能,我们会申请访问"),e.createElementVNode("text",{style:{"font-weight":"600"}},"麦克风权限"),e.createTextVNode("并收集您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"语音信息"),e.createTextVNode(",用于提供对应的语音服务,帮助您在驾驶时通过语音控制播放您喜欢的音频。即便您已同意开启麦克风权限,麦克风仍保持默认关闭状态,仅会在您主动点击客户端内麦克风图标或录制音频时通过麦克风获取语音信息。我们收集的语音信息仅作操作指令识别(或者语音转换文字识别),我们不会主动留存您的语音指令信息,更不会用作其他语音控制播放功能以外的用途。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"2.本地内容及生活服务推荐:"),e.createTextVNode("为向您提供或推荐您所在地附近的资讯和所在地相关音视频内容、本地广播和相关电影周边观影场所推荐、经常访问地周边的点餐和其他本地生活服务推荐信息,我们需要您授权"),e.createElementVNode("text",{style:{"font-weight":"600"}},"位置权限(精准地理位置)"),e.createTextVNode("以为您提供上述服务。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"3. 信息预填:"),e.createTextVNode("在部分需要填写您的信息的场景中(如广告落地页等),为优化您的使用体验、简化操作步骤,取得您的授权同意后,我们会将您在NU护理单元绑定的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"手机号码、姓名(如有)"),e.createTextVNode("等信息在相关页面进行预填。若您认为预填信息不准确的,您可以手动进行修改。请您知悉,预填的信息只有在您确认提交后才会被页面指向的个人信息处理者所获取。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 部分情况下该行为可能会被误判为应用自启动,但该行为属于合理使用并非侵犯用户权益的自启动行为。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您可在您的设备设置中逐项查看上述权限的状态,并可自行决定这些权限随时的开启或关闭。请您注意,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您开启任一权限即代表您授权我们可以收集和使用相关个人信息来为您提供对应服务,您一旦关闭任一权限即代表您取消了授权,我们将不再基于对应权限继续收集和使用相关个人信息,也无法为您提供该权限所对应的服务。"),e.createTextVNode("但是,您关闭权限的决定不会影响此前基于您的授权所进行的信息收集及使用,亦不影响您使用其他服务。 ")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (九)收集和使用您的个人信息的特别说明 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 1.若你提供的信息中含有其他用户的个人信息,在向我们提供这些个人信息之前,您需确保您已经取得合法的授权。若其中涉及未成年人个人信息的,您需在发布前取得对应未成年人监护人的同意,前述情形下监护人有权通过本政策第九条的途径联系我们,要求更正或删除涉及未成年人个人信息的内容。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2.若我们将您的个人信息用于本政策未载明的其他用途,或者我们超出了与收集您的个人信息时所声称的目的及具有直接或合理关联范围的,均会事先获得您的同意。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3. 若我们从第三方处间接获取(如从第三方处共享)您的信息,我们会在收集前明确以书面形式要求该第三方在已依法取得您同意后共享您的个人信息,并向您告知共享的您的个人信息的类型、使用目的、方式、授权同意范围,并要求第三方对个人信息来源的合法性和合规性作出承诺,如第三方存在违反行为,我们会明确要求对方承担相应法律责任。同时,我们的专业安全团队对个人信息会进行安全加固(包括敏感信息报备、敏感信息加密存储、访问权限控制)。我们会使用不低于我们对自身用户个人信息同等的保护手段与措施保护间接获取的个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 4.征得授权同意的例外 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 您充分理解并同意,根据法律法规要求,我们在以下情况下收集、使用您的个人信息无需征得您的授权同意: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (1) 为订立、履行个人作为一方当事人的合同所必需; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (2) 为履行法定职责或者法定义务所必需; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (3) 为应对突发公共卫生事件,或者紧急情况下为保护自然人的生命健康和财产安全所必需; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (4) 为公共利益实施新闻报道、舆论监督等行为,在合理的范围内处理个人信息; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (5)在合理的范围内处理个人自行公开或者其他已经合法公开的个人信息; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (6) 法律、行政法规规定的其他情形。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 二、 我们如何使用 Cookie 和同类技术 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 为确保网站正常运转、为您获得更轻松的访问体验、向您推荐您可能感兴趣的内容,我们和第三方合作伙伴可能借助于 Cookie或同类技术收集和使用您访问以及使用我们产品和/或服务的信息,并将该信息进行存储。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 如果您的浏览器或浏览器附加服务允许,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您可修改对Cookie的接受程度或拒绝我们的Cookie。"),e.createTextVNode("但如果您这么做,在某些情况下可能会影响您安全访问我们的网站,且可能需要在每一次访问我们的网站时更改用户设置。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 当您使用网页浏览使用我们的产品和/或服务时,您可以选择在浏览器的设置中清除Cookie数据,大部分浏览器均为用户提供了该等功能。但请您知悉,当您选择清除后,可能无法使用由我们提供的依赖于Cookie的功能或服务。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 三、我们如何共享、转让和披露您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (一) 共享 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 除下列情形外,我们不会与任何其他第三方共享您的个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 1. 在获得您的明确同意或授权或您主动选择的情况下共享。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"2. 在法定情形下的共享。"),e.createTextVNode("我们可能会根据法律法规规定、诉讼争议解决需要,或按行政、司法机关依法提出的要求,对外共享您的个人信息。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"3. 统一账号体系下的共享。"),e.createTextVNode("为便于我们基于统一账号体系为您带来标准化的服务体验、实现安全风控及客户服务之需要,您可以使用NU护理单元账号登录适用统一账号体系下的关联应用产品。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"4. 与合作伙伴共享。"),e.createTextVNode("您授权并同意我们可能委托合作伙伴为您提供某些服务或代表我们履行职能,我们仅会出于本隐私信息保护政策声明的合法、正当、必要、特定、明确的目的共享您的信息。我们将通过协议约束我们的合作伙伴只能接触到为其履行职责所需信息,要求其履行严格的保密和与风险相适应的安全措施来处理您的个人信息、包括但不限于数据保护协议或条款、承诺函等,且不得将您的个人信息用于其他任何目的。如超出共享目的使用您个人信息,我们将要求其另行遵循您的明确同意。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 5. 安全运营。我们将部分个人信息提供给支持我们业务的供应商、服务提供商和其他合作伙伴,以提供技术基础设施服务、分析用户使用方式、支付便利或进行学术研究和调查,进行Bug或者崩溃统计、提升登录体验,实现网关取号。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 6. 商业推广。为了您能更方便地了解和触达我们的资讯、产品/服务促销等信息,我们会向某些第三方网站和应用程序提供"),e.createElementVNode("text",{style:{"font-weight":"600"}},"加密后的设备信息"),e.createTextVNode(",进而在第三方平台为您提供我们的上述市场推广信息,并衡量优化有关我们产品和/或服务的市场推广效果。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 7. 留资广告。当第三方合作伙伴使用我们提供的技术服务向您提供商业信息或其他服务时,经取得您的授权同意,我们将基于第三方合作伙伴的委托处理您主动填写或提供的个人信息,请以相应页面内的信息收集使用提示文本为准。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"请您知悉,该等情形下,第三方合作伙伴为个人信息处理者。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 请您放心,除得到您的明确同意,我们不会将可以联系或识别您身份的个人信息与授权合作伙伴共享,我们将能够识别您身份的个人信息进行去标识化处理,以便授权合作伙伴无法识别您的具体身份。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" NU护理单元产品中包含我们的合作伙伴提供的SDK插件。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"当您在NU护理单元中使用该授权合作伙伴提供的相关服务,该等服务插件将收集和处理您的相关个人信息,详见附件:《NU护理单元与第三方共享个人信息清单》,我们强烈建议您在使用在使用我们的产品和/或服务前先行查看并了解其隐私条款。"),e.createTextVNode("我们会对合作伙伴获取有关信息的应用程序接口(API)、软件工具开发包(SDK)进行严格的安全检测,审慎评估服务提供商使用您个人信息的目的,并与合作伙伴通过签署协议的方式约定严格的数据保护措施,要求其按照我们的委托目的、服务说明以及其他任何相关的保密和安全措施来处理个人信息。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (二) 转让、公开披露 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们不会将您的个人信息转让给任何公司、组织和个人,但以下情况除外: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1. 在获取您明确同意的情况下转让; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2. 在NU护理单元及其关联公司发生重组、合并、分立、收购、资产出售或破产清算情形或其他类似情形时,如涉及到个人信息转让,我们将要求受让方采用与本政策相同或更高的标准和要求进行处理和保护,否则我们将要求受让方重新向您征求同意。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 除符合法律法规的规定进行公开披露或获得您单独同意外,我们不会公开披露您未自行公开或者其他未合法公开的个人信息。且在我们公开披露您的个人信息前会进行个人信息保护影响评估,并采用符合行业内标准的安全保护措施进行处理。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (三) 共享、转让、披露个人信息时事先征得授权同意的例外 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 以下情形中,共享、转让、公开披露您的个人信息无需事先征得您的授权同意: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1.与国家安全、国防安全有关的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2.与公共安全、公共卫生、重大公共利益有关的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3.与犯罪侦查、起诉、审判和判决执行有关的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 4.出于维护您或其他个人的生命、财产重大合法权益但又很难得到本人同意的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 5.您自行向社会公众公开的个人信息; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 6.从合法公开披露的信息中收集个人信息的,包括合法的新闻报道、政府信息公开渠道; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 7.履行其他履行法律法规规定的相关义务,如促成在线知识产权纠纷解决。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 根据法律规定,当共享、转让经采取技术措施处理的个人信息,使得数据接收方无法复原并重新识别特定个人身份时,我们将不会另行向您通知并征得您的同意。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 四、 我们如何存储您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (一) 存储地点 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们在中华人民共和国境内运营中收集和产生的个人信息,存储在中国境内。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 目前我们暂时不存在跨境存储您的个人信息或向境外提供您的个人信息的情况。如果确有必要进行数据的跨境传输,我们会单独向您明确告知(包括数据出境的目的、接收方、使用方式与范围、使用内容、安全保障措施、安全风险等),并征得您的明确授权同意,我们会确保数据接收方有充足的数据保护能力来保护您的个人信息,并严格按照适用法律法规的规定执行。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 针对以上情形,我们会确保依据本政策对您的个人信息提供足够的保护。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (二)存储期限 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们只会在达成本政策所述目的所需的最短期限内保留您的个人信息,除非法律法规有强制的存留要求,例如,根据《电子商务法》及配套法规的要求,您的订单类交易数据的保存时间自交易完成之日起不少于三年。我们判断前述期限的标准主要包括并以其中较长者为准: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1、完成与您相关的服务目的、维护相应服务及业务记录、应对您可能的查询或投诉; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2、保证我们为您提供服务的安全和质量; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3、您是否同意更长的留存期间; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 4、是否存在保留期限的其他特别约定。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 在您的个人信息超出保留期限后,我们会根据适用法律的要求删除或者匿名化处理您的个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (三) 删除和匿名化处理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如本平台服务决定停止运营时,我们将在相关服务停止运营后停止继续收集您的个人信息。我们将以公告形式将停止运营通知向您送达。对已持有您的个人信息,我们将进行删除或匿名化处理,除非法律法规另有规定。涉及未成年人个人信息的,我们会采取必要合理方式及时将停止运营的通知及时告知未成年人监护人。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 五、我们如何保护您的个人信息安全 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 为保障您的信息安全,我们努力采取各种符合业界标准的合理的物理、电子和管理方面的安全措施来保护您的信息,使您的信息不会被泄漏、毁损或者丢失。为确保您的个人信息安全,我们承诺将尽合理商业努力达到通行或者更高的安全水平: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (一) 技术安全防护 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们将采取的技术安全措施包括但不限于SSL、信息加密存储、数据中心的访问控制。我们会使用加密技术提高个人信息的安全性;使用受信赖的保护机制防止个人信息遭到恶意攻击。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (二) 安全体系保证 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们有行业先进的以数据为核心,围绕数据生命周期进行的数据安全管理体系,从组织建设、制度设计、人员管理、产品技术方面多维度提升整个系统的安全性。目前,NU护理单元已通过网络安全等级保护的三级测评。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (三) 人员安全管理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们对可能接触到您的信息的员工或外包人员采取了严格管理,包括但不限于根据不同岗位分配不同访问权限的控制机制,并签署保密协议,实时记录并掌握操作情况等。我们会举办安全和隐私保护培训课程,加强员工对于保护个人信息重要性的认识。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (四) 敏感信息及密码保护提示 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"1. 敏感个人信息保护:"),e.createTextVNode("您在使用我们服务时自愿共享甚至公开分享的信息,可能会涉及您或他人的个人信息甚至"),e.createElementVNode("text",{style:{"font-weight":"600"}},"敏感个人信息,例如您上传的头像图片,您在评论、发弹幕时选择上传包含个人信息的图片。"),e.createTextVNode("请您更加谨慎地考虑,是否在使用我们的服务时共享甚至公开分享相关信息。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"2. 您的账户均有安全保护功能,请妥善保管您的账户及密码信息。"),e.createTextVNode("我们将通过向其它服务器备份、对用户密码进行加密以及其他安全措施确保您的信息不丢失,不被滥用和变造。此外,请您尽量使用"),e.createElementVNode("text",{style:{"font-weight":"600"}},"复杂密码"),e.createTextVNode(",协助我们保证您的账号安全。我们将尽力保障您发送给我们的任何信息的安全性。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"但请您知悉,互联网并非绝对安全的环境。"),e.createTextVNode("尽管有前述安全措施,但同时也请您理解在网络上不存在“完善的安全措施”。故请您妥善保护自己的个人信息,仅在必要的情形下向他人提供。如您发现自己的个人信息泄露,尤其是您的账户及密码发生泄露,请您立即联络我们客服,以便我们采取相应措施。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (五) 信息安全事件处理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 在不幸发生个人信息安全事件时,我们将按照法律法规的要求向您告知:安全事件的基本情况和可能的影响、我们已采取或将要采取的处置措施、您可自主防范和降低风险的建议、对您的补救措施。事件相关情况我们将以邮件、电话、推送通知、短消息的方式告知您,难以逐一告知个人信息主体时,我们会采取合理、有效的方式发布公告。同时,我们还将按照监管部门要求,上报个人信息安全事件的处置情况。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 六、 我们如何保护未成年人的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 若您是未满18周岁的未成年人,您应在您的监护人监护、指导下并获得监护人同意的情况下,认真阅读并同意本政策后,方可使用我们的服务或向我们提供信息。若您未取得监护人的同意,监护人可以通过联系本政策第九节中提供的联系方式通知我们处理相关账号,我们有权对相关账号的功能、使用进行限制,包括但不限于浏览、发布信息、互动交流等功能。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 我们非常重视对未成年人的个人信息保护,未成年用户在填写个人信息时,请加强个人保护意识并谨慎对待,并应在取得监护人的同意以及在监护人指导下正确使用我们提供的产品及相关服务。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 未成年人用户及其监护人理解并确认,如您违反法律法规、本政策内容,则您及您的监护人应依照法律规定承担因此而可能导致的全部法律责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 我们在应用内专门为未成年人提供了青少年模式,监护人应为未成年人选择使用青少年模式。同时,我们为14周岁以下的儿童制定了专门的隐私保护政策,如您为儿童,我们要求您请您的父母或其他监护人仔细阅读本隐私信息保护政策及《儿童隐私政策》,并在征得您的父母或其他监护人明确同意的前提下使用我们的服务或向我们提供信息。对于经父母或其他监护人同意使用我们的产品或服务而收集儿童个人信息的情况,我们只会在法律法规允许、父母或监护人明确同意或者保护未成年人所必要的情况下使用、共享、转让或披露此信息。如您的父母或其他监护人不同意您按照本政策使用我们的服务或向我们提供信息,请立即终止使用我们的服务并及时通知我们,以便我们采取相应的措施,如果监护人发现我们在未获监护人同意的情况下收集了未成年人的个人信息,可通过第九节中的联系方式与我们联系,我们会设法尽快删除相关数据。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 未成年人个人信息的保护将同样适用于严格的个人信息访问权限控制制度和个人信息处理记录与管控措施我们始终遵循最小够用的授权原则,采取相应技术措施以尽可能避免未成年人个人信息被违法复制、下载。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们已制定的个人信息安全事件应急预案将同样适用于对未成年人个人信息的保护。我们定期组织内部相关人员进行应急响应培训和应急演练,使其掌握岗位职责和应急处置策略和规程。在不幸发生未成年人个人信息安全事件后,我们将按照法律法规的要求,及时向未成年人及其监护人告知:安全事件的基本情况和可能的影响、我们已采取或将要采取的处置措施、未成年人及其监护人可自主防范和降低风险的建议、对未成年人及其监护人的补救措施。我们将及时将事件相关情况以APP推送通知、发送邮件/短消息的方式告知未成年人及其监护人。难以逐一告知时,我们会采取合理、有效的方式发布相关警示信息。同时,我们还将按照监管部门要求,主动上报未成年人个人信息安全事件的处置情况。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 若您是未成年人的父母或其他监护人,请您关注您监护的未成年人是否是在取得您的授权同意之后使用我们的服务。如您对您所监护的未成年人的个人信息有疑问,请通过第九节中的联系方式与我们联系。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 七、 您如何行使您的个人信息权利 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们通过提供便捷的方法,让您可以访问、更正及删除自己的账户信息或使用我们的服务时您提供的其他个人信息。您可以通过如下方式访问及管理您的个人信息,但我们在不同的版本或操作系统中提供的管理方式路径可能存在差异,请以实际为准。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (一) 访问您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您有权访问您的个人信息,但法律法规规定的例外情况除外。您可以通过以下方式自行访问您的个人信息: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 账户信息——如果您希望访问或编辑您的账户中的账户信息、更改您的密码或关闭您的账户,您可以登录账号通过“账号管理”执行此类操作;例如您可以登录PC端或APP端“我的-设置-账号与安全”查询、修改自己的账号绑定情况、设置/修改密码、查看最近登录设备。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 资料信息——如果您希望访问或编辑您的账户中的个人资料,您可以通过在App端“我的-头像-编辑资料”来添加、修改、删除您的头像、昵称、性别、生日、地区、声音签名、简介。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如果您无法通过上述方式访问您的个人信息,您可以随时通过本政策披露的联系方式联系我们,我们将在十五个工作日内回复您的请求。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (二) 更正或补充您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 当您发现我们处理的关于您的个人信息有错误时,您有权要求我们做出更正或补充。您可以通过“(一)访问您的个人信息”中列明的方式提出更正或补充申请。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如果您无法通过上述方式访问您的个人信息或者其他可能目前无法向您提供在线自行更正/修改服务的,您可以随时通过本政策披露的联系方式联系我们,我们将在十五个工作日内回复您的请求。经过对您身份的验证,且更正/修改不影响信息的客观性和准确性的情况下,您有权对错误或不完整的信息作出更正或修改,但法律法规另有规定的除外。出于安全性和身份识别的考虑,您可能无法修改注册时提交的某些初始注册信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (三) 删除您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您有权通过“(一)访问您的个人信息”中列明的方式对已经填写的信息进行删除。同时,在以下情形中,您可以通过本政策披露的联系方式联系我们,向我们提出删除个人信息的请求,我们将在十五个工作日内回复您的请求: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1.如果我们处理个人信息的行为违反法律法规; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2.如果我们收集、使用您的个人信息,却未征得您的明确同意; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3.如果我们处理个人信息的行为严重违反与您的约定; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 4.如果您不再使用我们的产品或服务,或您主动注销账号; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 5.如果我们永久不再为您提供产品或服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 若我们决定响应您的删除请求,我们还将同时尽可能通知从我们处获得您的个人信息的主体,要求其及时删除,除非法律法规另有规定,例如您所提供的订单类交易数据,将会基于法律法规要求至少保留3年,或这些主体获得您的独立授权。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (四) 个人信息副本获取 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如您需要您的个人信息的副本,您可以通过本隐私政策文末提供的方式联系我们,在核实您的身份后,我们将向您提供您在我们的服务中的个人信息副本(包括基本资料、身份信息),但法律法规另有规定的或本政策另有约定的除外。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (五) 改变您授权同意的范围 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您可在您的设备系统设置-应用-APP名称-权限中逐项查看您授权同意权限的状态,或在NU护理单元App内通过“我的-设置-隐私管理-系统权限”查看并可自行决定这些权限随时的开启或关闭。对于不同功能服务中个人信息的收集和使用,您也可以与NU护理单元客服联系给予或收回您的授权同意,我们将在十五个工作日内回复您的请求。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"当您撤回同意后,我们将不再处理相应的个人信息,我们将无法继续为您提供撤回同意或授权所对应的服务。但您撤回同意的决定,不会影响此前基于您的授权而开展的个人信息处理。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (六) 注销账户 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 当您注销账号后,您将无法再以该账号登录和使用我们的产品与服务;且该账号在使用我们的产品与服务期间已产生的但未消耗完毕的权益及未来的预期利益等全部权益将被清除;该账号下的内容、信息、数据、记录等将会被删除或匿名化处理,但法律法规另有规定或监管部门另有要求的除外;您的账号注销完成后,将无法恢复。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如您在谨慎考虑后仍决定注销您的账号的,您可以在您使用的我们的产品与/或服务的相关功能设置页面或根据操作指引向我们提交注销申请,例如,您可以通过“我的-设置-账号与安全-注销账户”自行在“注销账户”页面提交账户注销申请。若未能申请成功,您也可联系NU护理单元客服,我们将在十五个工作日内回复您的请求。在您主动注销账户之后,我们将停止为您提供产品或服务。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (七) 限制自动化决策 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 在NU护理单元App端,您可以通过“我的-设置-隐私管理-个性化内容推荐/个性化广告推荐”选择是否使用我们提供的个性化服务。此外,在某些业务功能中,经向您告知并取得同意后,我们可能仅依据信息系统、算法在内的非人工自动决策机制做出决定。如果您认为这些决定显著影响您的合法权益,您有权通过本政策披露的联系方式要求我们做出解释,我们也将在十五个工作日内回复您的请求,为您提供申诉方法。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (八) 退订 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如您发现收到了不属于您主动搜索、浏览的视频内容和产品、服务信息推送。如您不希望接收上述信息,可通过原路径进行退订,例如短信推送可以直接回复相关的退订口令。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (九) 投诉 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您有权通过本政策披露的联系方式联系我们进行投诉。我们将在收到您投诉之日起十五个工作日内做出答复。如果您对我们的答复不满意,特别是我们的个人信息处理行为损害了您的合法权益,您还可以向网信、公安、工商等监管部门进行投诉或举报,或向有管辖权法院提起诉讼,但我们希望您能够首先就相关问题与我们取得联系。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (十) 响应您的上述请求 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 为保障安全,您可能需要提供书面请求,或以其他方式证明您的身份。我们可能会先要求您验证自己的身份,然后再处理您的请求。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 对于您合理的请求,我们原则上不收取费用。但对多次重复、超出合理限度的请求,我们将视情收取一定成本费用。对于那些无端重复、需要过多技术手段(例如需要开发新系统或从根本上改变现行管理)、给他人合法权益带来风险或者非常不切实际的请求,我们可能会予以拒绝。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 此外,如果您的请求直接涉及国家安全、国防安全、公共卫生、犯罪侦查等和公共利益直接相关的事由,或者可能导致您或者其他个人、组织的合法权益受到严重损害,或者基于NU护理单元履行法律法规规定的义务相关的情形,或者有充分证据标明您存在主观恶意或滥用权利,或者响应您的请求将导致您或者其他个人、组织的合法权益受到严重损害的,我们将无法响应您的请求。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 如果您无法通过上述方式访问您的个人信息,您都可以通过第九节中的联系方式与我们取得联系,我们将在十五个工作日内回复您的权利响应请求。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 七:您如何行使您的个人信息权利 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您理解,您与NU护理单元签署的本政策所列明的条款,并不能完全涵盖您与NU护理单元所有的关于个人信息的权利和义务。因此,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元公布其他声明(包括但不限于页面提示、新签署文件、弹窗、网站公告或站内信等)、各形式规则均视为本政策之补充条款,为本政策不可分割的组成部分,与本政策具有同等法律效力。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 未经您明确同意,我们不会限制您按照本政策所应享有的权利。我们将在NU护理单元专门链接上发布对隐私权政策所做的任何变更和更新。对于重大变更,我们还会提供更为显著的通知(包括通过平台公示通知甚至向您进行弹窗提示)。本政策所指的重大变更包括但不限于: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1.我们的服务模式发生重大变化。如处理个人信息的目的、处理的个人信息类型、个人信息的使用方式; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2.我们在控制权方面发生重大变化。如并购重组引起的所有者变更; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3.个人信息共享、转让或公开披露的主要对象发生变化; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 4.您参与个人信息处理方面的权利及其行使方式发生重大变化; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 5.我们负责处理个人信息安全的责任部门、联络方式及投诉渠道发生变化时。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},' 为了您能及时接收到通知,建议您在您个人的联系方式更新时及时通知我们。如您在本政策更新生效后继续使用我们的服务,即代表您已充分阅读、理解并接受更新后的政策并愿意受更新后的政策约束。我们鼓励您在每次使用我们服务时都查阅本政策。您可以在NU护理单元APP通过"首页-我的-设置-隐私政策"中查看本政策。 '),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 八、如何联系我们 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您可以通过以下方式与我们联系,我们将在十五个工作日内回复您的请求: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们设立了个人信息保护专职部门,如您对NU护理单元隐私信息保护政策、儿童个人信息有任何疑问、意见或建议,或有关于网络信息安全的投诉和举报,您可通过以下方式与我们取得联系: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们收件地址:长春市经济开发区长吉南线以东、吉林大路以南东方广场中意国际大厦B座1431号; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 联系人:NU护理单元客服部 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 联系方式:18043530712 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 联系邮箱:service@blxinchuang.com "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本政策签订地为中华人民共和国吉林省长春市,因本政策生效、履行、解释及使用NU护理单元产品和/或服务而产生或与本政策相关的一切争议、权利主张或其他事项,均适用中华人民共和国法律(为本政策之目的,港澳台地区法律不在此列)。您与NU护理单元及其关联公司或NU护理单元发生的一切争议,应友好协商,如协商不成的,您同意双方通过将争议提交本政策签订地有管辖权的法院解决。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 请您再次确认您已全部阅读并充分理解上述条款。 ")])])}],["__scopeId","data-v-842c1160"]]),v="https://www.focusnu.com/opeapi",p=e=>{let t=e.url,a=e.method||"get",i=e.data||{},n={"X-Access-Token":uni.getStorageSync("token")||"","Content-Type":"application/json;charset=UTF-8",Authorization:"Basic c2FiZXI6c2FiZXJfc2VjcmV0",...e.header};return new Promise(((e,r)=>{uni.request({url:/^https?:\/\//.test(t)?t:v+t,method:a,header:n,data:i,timeout:5e3,success(a){const n=a;if(200==n.statusCode)e(n.data);else switch(l("log","at request/index.js:34","http",/^https?:\/\//.test(t)?t:v+t),l("log","at request/index.js:35","res",a),l("log","at request/index.js:36","data",i),n.statusCode){case 401:uni.showModal({title:"提示",content:"登录过期",showCancel:!1,success(){uni.clearStorageSync(),setTimeout((()=>{uni.navigateTo({url:"/pages/login/login"})}),1e3)}});break;case 404:uni.showToast({title:"请求地址不存在...",duration:2e3});break;default:uni.showToast({title:"请重试...",duration:2e3})}},fail(e){l("log","at request/index.js:69",e),-1!==e.errMsg.indexOf("request:fail")?uni.showToast({title:"网络异常",icon:"error",duration:2e3}):uni.showToast({title:"未知异常",duration:2e3}),r(e)},complete(){uni.hideLoading(),uni.hideToast()}})})).catch((()=>{}))},g=s({__name:"huakuai",emits:["success"],setup(t,{emit:a}){const i=a,n=100,r=e.ref(400),o=e.ref(400),c=e.ref(0),s=e.ref(0),d=e.ref(0),m=e.ref(!1),u=e.ref(0),v=e.ref(""),p=e.getCurrentInstance();const g=`path('${w=n,`\n M20 0\n h${w/3-20}\n a20 20 0 0 1 0 40\n h${w/3}\n a20 20 0 0 0 0 -40\n h${w/3-20}\n v${w/3-20}\n a20 20 0 0 1 -40 0\n v${w/3}\n a20 20 0 0 0 40 0\n v${w/3-20}\n h-${w/3-20}\n a20 20 0 0 1 0 -40\n h-${w/3}\n a20 20 0 0 0 0 40\n h-${w/3-20}\n z\n `}')`;var w;function h(){e.nextTick((()=>{p?uni.createSelectorQuery().in(p.proxy).select(".bg-image").boundingClientRect((e=>{e?(r.value=2*e.width,o.value=2*e.height,c.value=Math.random()*(r.value-200)+n,c.value<100&&(c.value=100),c.value>400&&(c.value=400),s.value=o.value/2,d.value=0):l("error","at component/public/huakuai.vue:115","无法获取图片尺寸")})).exec():l("error","at component/public/huakuai.vue:107","无法获取组件实例")}))}function f(e){m.value=!0,u.value=2*e.touches[0].clientX}function N(e){if(!m.value)return;let t=2*e.touches[0].clientX-u.value;t=Math.max(0,Math.min(t,r.value-n)),d.value=t}function y(){m.value=!1,Math.abs(d.value+47-c.value)<20?(uni.showToast({title:"验证成功",icon:"none",duration:2e3}),i("success")):(d.value=0,uni.showToast({title:"验证失败",icon:"none",duration:2e3}))}return e.onMounted((()=>{const e=["https://www.focusnu.com/media/directive/login/0.png","https://www.focusnu.com/media/directive/login/1.png","https://www.focusnu.com/media/directive/login/2.png"];v.value=e[Math.floor(Math.random()*e.length)],l("log","at component/public/huakuai.vue:172","加载图片:",v.value)})),(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"captcha-container",id:"container"},[e.createElementVNode("view",{class:"font-title"},"请通过滑块验证"),e.createElementVNode("view",{class:"captcha-image",style:{position:"relative",width:"100%",height:"400rpx",overflow:"hidden"}},[e.createElementVNode("image",{src:v.value,class:"bg-image",mode:"widthFix",onLoad:h},null,40,["src"]),e.createElementVNode("view",{class:"overlay",style:e.normalizeStyle({width:r.value+"rpx",height:o.value+"rpx"})},[e.createElementVNode("view",{class:"hole",style:e.normalizeStyle({top:s.value+"rpx",left:c.value+"rpx",width:"100rpx",height:"100rpx",clipPath:g,transform:"translate(-50%, -50%)",backgroundColor:"rgba(0,0,0,0.6)"})},null,4),e.createElementVNode("view",{class:"piece",style:e.normalizeStyle({top:s.value+"rpx",left:d.value+47+"rpx",width:"100rpx",height:"100rpx",backgroundImage:`url(${v.value})`,backgroundSize:r.value+"rpx "+o.value+"rpx",backgroundPosition:`-${c.value-45}rpx -${s.value-50}rpx`,clipPath:g,transform:"translate(-50%, -50%)"})},null,4)],4)]),e.createElementVNode("view",{class:"slider-bar"},[e.createElementVNode("view",{class:"slider-bar-font"},"向右滑动滑块填充拼图"),e.createElementVNode("view",{class:"slider-button",ref:"btn",onTouchstart:f,onTouchmove:N,onTouchend:y,style:e.normalizeStyle({left:d.value+"rpx",maxWidth:r.value-n+"rpx"})},[e.createElementVNode("image",{src:"https://www.focusnu.com/media/directive/login/right.png",style:{width:"50rpx",height:"50rpx"},mode:"widthFix"})],36)])]))}},[["__scopeId","data-v-ca7ea5fb"]]),w=s(e.defineComponent({__name:"login",setup(a){const i=e.ref(null),r=e.ref(!1),s=e.ref(!1),v=e.reactive({username:"",password:"",captcha:"",checkKey:0}),w=e.reactive({oldpassword:"",newpassword:""}),h=e.computed((()=>{return v.password&&("string"==typeof(e=v.username)&&11===e.length);var e})),f=e.ref(!1);function N(){T.value=!1,r.value=!0,B()}function y(){f.value=!1,uni.setStorageSync("appWgtVersion",uni.getSystemInfoSync().appWgtVersion)}function x(){plus.runtime.quit()}const E=e=>{uni.navigateTo({url:e})},V=e.ref(!1),b=e.ref(0),k=()=>{var e;/^\d{11}$/.test(v.username)?(e=v.username,p({url:`/api/pad/loginApi/getAdvisoryInfo?tel=${encodeURIComponent(e)}`,method:"get"})).then((e=>{null!==e.result&&e.result.serverUrl?(uni.setStorageSync("serverUrl",e.result.serverUrl),b.value=Date.now(),(e=>p({url:`${uni.getStorageSync("serverUrl")}/sys/randomCode/${e}`,method:"get"}))(b.value).then((e=>{v.captcha=e.message,V.value=!0}))):(uni.setStorageSync("serverUrl",""),uni.showToast({title:"该手机号未绑定机构",icon:"none",duration:2e3}),V.value=!1)})):v.username&&uni.showToast({title:"手机号不足11位",icon:"none",duration:2e3})},T=e.ref(!1),D=e.ref(!1),C=e.ref(!1),S=e.ref(!1),B=()=>{r.value?s.value=!0:T.value=!0},z=()=>{2===_.value?setTimeout((()=>{E("/pages/watch/index")}),500):_.value++},_=e.ref(0),I=()=>{var e;v.checkKey=b.value,s.value=!1,(e=v,p({url:`${uni.getStorageSync("serverUrl")}/sys/login`,method:"post",data:e})).then((e=>{e.success?(uni.showToast({title:e.message,icon:"none",duration:500}),uni.setStorageSync("token",e.result.token),uni.setStorageSync("username",v.username),uni.setStorageSync("realname",e.result.userInfo.realname),2===_.value?setTimeout((()=>{E("/pages/watch/index")}),500):_.value++):uni.showToast({title:e.message,icon:"none",duration:2e3})}))};return o((()=>{var e,a;uni.getStorageSync("appWgtVersion")!=uni.getSystemInfoSync().appWgtVersion&&(f.value=!0),t("MonitorModule").initSMBCloudSDK(),e=t("MonitorModule"),a={userName:"admin",password:"Bl20230518",serverAddress:"121.36.88.64",port:8888},e.cloudLoginIn(a,(e=>{l("log","at pages/login/login.vue:315","?????",e),_.value?setTimeout((()=>{E("/pages/watch/index")}),500):_.value=!0}))})),n((()=>{var e;null==(e=i.value)||e.check_update(),uni.getStorageSync("token")&&1!==uni.getStorageSync("token")&&(2===_.value?setTimeout((()=>{E("/pages/watch/index")}),500):_.value++)})),(t,l)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("view",{class:"backgroundContainer"},[e.createElementVNode("image",{class:"title-img",src:"/static/index/superNu.png"}),e.createElementVNode("view",{class:"input-father"},[e.createElementVNode("view",{class:"add"},"+86"),e.createElementVNode("view",{class:"shu"}),e.withDirectives(e.createElementVNode("input",{style:{"font-size":"27rpx",height:"350rpx"},type:"number","onUpdate:modelValue":l[0]||(l[0]=e=>v.username=e),maxlength:"11",placeholder:"请输入手机号",onBlur:k},null,544),[[e.vModelText,v.username]])]),e.createElementVNode("view",{class:"input-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:"",type:"text","onUpdate:modelValue":l[1]||(l[1]=e=>v.password=e),maxlength:"15",placeholder:"请输入密码"},null,512),[[e.vModelText,v.password]])]),e.withDirectives(e.createElementVNode("view",{class:"input-father-gray"}," 验证并登录 ",512),[[e.vShow,!h.value||!V.value]]),e.withDirectives(e.createElementVNode("view",{class:"input-father-blue",onClick:l[2]||(l[2]=e=>B())}," 验证并登录 ",512),[[e.vShow,h.value&&V.value]]),e.createElementVNode("view",{class:"under-container-title"},[e.createElementVNode("view",{class:e.normalizeClass(r.value?"radio-circle-target":"radio-circle"),onClick:l[3]||(l[3]=e=>r.value=!r.value)},null,2),e.createElementVNode("view",{style:{"margin-left":"17rpx"},class:"radio-circle-font",onClick:l[4]||(l[4]=e=>r.value=!r.value)},"我已阅读并同意"),e.createElementVNode("view",{class:"radio-circle-blue",onClick:l[5]||(l[5]=e=>{C.value=!0,S.value=!0})}," 《用户协议》 "),e.createElementVNode("view",{class:"radio-circle-blue",onClick:l[6]||(l[6]=e=>{C.value=!0,S.value=!1})}," 《隐私政策》 ")])]),f.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-wrapper",style:{"z-index":"999"}},[e.createElementVNode("view",{class:"mask"}),e.createElementVNode("view",{class:"box"},[e.createElementVNode("view",{class:"box-title"}," 服务条款和隐私保护提示 "),e.createElementVNode("view",{class:"font-father"},[e.createElementVNode("view",{class:""}," 欢迎使用护理单元app! "),e.createElementVNode("view",{style:{"text-indent":"2em"}},[e.createTextVNode(" 我们将通过"),e.createElementVNode("text",{class:"text-blue",onClick:l[7]||(l[7]=e=>{C.value=!0,S.value=!0})},"《用户协议》"),e.createTextVNode("和"),e.createElementVNode("text",{class:"text-blue",onClick:l[8]||(l[8]=e=>{C.value=!0,S.value=!1})},"《隐私政策》"),e.createTextVNode(",帮助您了解我们为您提供的服务、我们如何处理个人信息以及您享有的权利。我们会严格按照相关法律法规要求,采取各种安全措施来保护您的个人信息。 ")]),e.createElementVNode("view",{style:{margin:"30rpx 0"}}," 点击“同意”按钮,表示您已知情并同意以上协议和以下约定。 ")]),e.createElementVNode("view",{class:"gray-box-bgc"},[e.createElementVNode("scroll-view",{style:{width:"100%",height:"100%"},"scroll-y":"","show-scrollbar":!0},[e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 1、服务条款与隐私政策确认:登录即表示您已阅读并同意《NU 护理单元用户服务协议》及《NU 护理单元隐私信息保护政策》,其中包含对您权利义务、个人信息处理的详细说明。 "),e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 2、账号使用规范:账号仅限本人使用,禁止恶意注册、转借或泄露。请妥善保管账号密码,因保管不善导致的账号安全问题,由您自行承担责任。 "),e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 3、内容发布责任:您在平台发布的内容需遵守法律法规,不得包含不良信息或侵犯他人权益的内容。发布利用新技术制作的非真实信息时,须显著标识。 "),e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 4、个人信息保护:我们将依法收集、使用您的个人信息(如手机号用于注册登录),您可通过 “我的 - 设置 - 隐私管理” 查看、修改授权,也可申请注销账号(注销后相关数据将按规定处理)。 "),e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 5、未成年人使用提示:未满 18 周岁用户需在监护人同意后使用,监护人可联系客服人员处理未成年人账号相关事宜,我们将严格保护未成年人信息。 ")])]),e.createElementVNode("view",{class:"blue-button",onClick:y},"同意"),e.createElementVNode("view",{class:"white-button",onClick:x},"不同意")])])):e.createCommentVNode("",!0),C.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"popup-any"},[e.createElementVNode("view",{class:"mask",onClick:l[9]||(l[9]=e=>C.value=!1)}),e.createElementVNode("view",{class:"box-any"},[e.createElementVNode("view",{class:"title-left"},[e.createElementVNode("image",{class:"back-img",src:c,onClick:l[10]||(l[10]=e=>C.value=!1)}),S.value?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"back-font"},"NU护理单元隐私信息保护政策")),S.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"back-font"},"NU护理单元用户服务协议")):e.createCommentVNode("",!0)]),S.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(u,{key:0})),S.value?(e.openBlock(),e.createBlock(m,{key:1})):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0),T.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"popup-wrapper"},[e.createElementVNode("view",{class:"mask",onClick:l[11]||(l[11]=e=>T.value=!1)}),e.createElementVNode("view",{class:"box-small"},[e.createElementVNode("view",{class:"box-title",style:{"margin-top":"30rpx"}}," 请阅读并同意以下条款 "),e.createElementVNode("view",{class:"font-father"},[e.createElementVNode("text",{class:"text-blue",onClick:l[12]||(l[12]=e=>{C.value=!0,S.value=!0})},"《用户协议》"),e.createElementVNode("text",{class:"text-blue",onClick:l[13]||(l[13]=e=>{C.value=!0,S.value=!1})},"《隐私政策》")]),e.createElementVNode("view",{class:"blue-button",onClick:N},"同意并继续")])])):e.createCommentVNode("",!0),D.value?(e.openBlock(),e.createElementBlock("view",{key:3,class:"popup-wrapper"},[e.createElementVNode("view",{class:"mask"}),e.createElementVNode("view",{class:"box-change"},[e.createElementVNode("view",{class:"box-title"}," 修改账户登录密码 "),e.createElementVNode("view",{class:"input-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":l[14]||(l[14]=e=>w.oldpassword=e),maxlength:"15",placeholder:"请输入新密码"},null,512),[[e.vModelText,w.oldpassword]])]),e.createElementVNode("view",{class:"input-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":l[15]||(l[15]=e=>w.newpassword=e),maxlength:"15",placeholder:"请再次输入新密码"},null,512),[[e.vModelText,w.newpassword]])]),e.createElementVNode("view",{class:"blue-button",style:{"margin-top":"80rpx"},onClick:l[16]||(l[16]=e=>D.value=!1)},"确定")])])):e.createCommentVNode("",!0),e.createVNode(d,{ref_key:"zyupgrade",ref:i,noticeflag:!0,theme:"blue",h5preview:!1,oldversion:"1.0.0",appstoreflag:!0,autocheckupdate:!0,onShowupdateTips:z},null,512),s.value?(e.openBlock(),e.createElementBlock("view",{key:4,class:"bg-mask",onClick:l[18]||(l[18]=e=>s.value=!1)},[e.createVNode(g,{onClick:l[17]||(l[17]=e.withModifiers((()=>{}),["stop"])),onSuccess:I})])):e.createCommentVNode("",!0)],64))}}),[["__scopeId","data-v-b090754f"]]);const h=s({data:()=>({title:"Hello"}),onLoad(){t("globalEvent").addEventListener("myEvent",(function(e){l("log","at pages/denglu.vue:20","myEvent"+JSON.stringify(e)),uni.showToast({title:"myEvent"+JSON.stringify(e),duration:2e3})}))},methods:{testAsyncFunc(){t("MonitorModule").gotoNativePage({deviceId:"4",deviceName:"sdfsfsdf"})},jumptonve(){uni.navigateTo({url:"/pages/ceshianzhuo"})},init(e){t("MonitorModule").initSMBCloudSDK()},login(e){t("MonitorModule").cloudLoginIn({userName:"admin",password:"Bl20230518",serverAddress:"121.36.88.64",port:8888},(e=>{l("log","at pages/denglu.vue:58","loginResult",e.code),uni.showToast({title:"操作成功",duration:2e3})}))},logout(e){t("MonitorModule").cloudLoginOut((e=>{l("log","at pages/denglu.vue:68","loginResult",e.code)}))}}},[["render",function(t,l,a,i,n,r){return e.openBlock(),e.createElementBlock("view",{class:"content"},[e.createElementVNode("button",{class:"typebutton",type:"primary",onClick:l[0]||(l[0]=(...e)=>r.init&&r.init(...e))},"初始化sdk"),e.createElementVNode("button",{class:"typebutton",type:"primary",onClick:l[1]||(l[1]=(...e)=>r.login&&r.login(...e))},"登陆"),e.createElementVNode("button",{class:"typebutton",type:"primary",onClick:l[2]||(l[2]=(...e)=>r.logout&&r.logout(...e))},"退出登陆"),e.createElementVNode("button",{class:"typebutton",type:"primary",onClick:l[3]||(l[3]=(...e)=>r.jumptonve&&r.jumptonve(...e))},"跳到nvue")])}]]),f=s(e.defineComponent({__name:"index",setup(t){e.ref(!1);const l=e.ref(null),a=[{name:"初始化",url:"/pages/Initialization/index"},{name:"护理单元",url:"/pages/Nursing/index"},{name:"仓库",url:"/pages/Warehousing/index"}];return o((e=>{})),n((()=>{var e;null==(e=l.value)||e.check_update()})),(t,i)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("view",{class:"backgroundContainer"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(a,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"menuCard",onClick:e=>{return l=t.url,void uni.navigateTo({url:l});var l}},e.toDisplayString(t.name),9,["onClick"])]))),64))]),e.createVNode(d,{ref_key:"zyupgrade",ref:l,noticeflag:!0,theme:"blue",h5preview:!1,oldversion:"1.0.0",appstoreflag:!0,autocheckupdate:!0},null,512)],64))}}),[["__scopeId","data-v-bd6792ac"]]),N="/static/index/oldman.png",y="/static/index/customer.png",x=s({__name:"Drawer",props:{widNumber:{type:Number,default:85},canclose:{type:Boolean,default:!0}},setup(t,{expose:l}){const a=e.ref(!1),i=t,n=e.computed((()=>({width:`${i.widNumber}%`})));function r(){i.canclose&&(a.value=!1)}return l({openDrawer:function(){a.value=!0},closeDrawer:function(){a.value=!1}}),(l,i)=>(e.openBlock(),e.createElementBlock("view",null,[e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(["overlay",{"overlay-show":a.value}]),onClick:r},null,2),[[e.vShow,a.value]]),e.createElementVNode("view",{class:e.normalizeClass(["drawer",{"drawer-open":a.value}]),style:e.normalizeStyle(n.value)},[e.createElementVNode("view",{class:"drawer-content"},[e.withDirectives(e.createElementVNode("view",{class:"drawer-content-circle",onClick:r},[e.createElementVNode("image",{class:"drawer-img",src:"/static/index/zuoyuan.png"})],512),[[e.vShow,a.value&&t.canclose]]),e.renderSlot(l.$slots,"default",{},void 0,!0)])],6)]))}},[["__scopeId","data-v-8cdafce2"]]),E="/static/index/teeth.png",V="/static/index/helpdo/xian.png",b=s(e.defineComponent({__name:"index",setup(t){const l=e=>{},a=e.ref(!1);e.ref(null);const i=e.ref(-1),n=e.ref(0),r=uni.createVideoContext("myVideo"),o=()=>{r.pause(),a.value=!1};e.computed((()=>{switch(c.value){case 0:return"0";case 1:return"calc(100% - 600rpx)";case 2:return"calc(100% - 120rpx)";default:return"100%"}}));const c=e.ref(0);return(t,r)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"转单执行")]),e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"downitems-father"},[e.createElementVNode("view",{class:"downitems-left"},[e.createElementVNode("view",{class:"downitems-left-mar"},[e.createElementVNode("image",{class:"downitems-left-img",src:E}),e.createElementVNode("view",{class:"downitems-left-father"},[e.createElementVNode("image",{class:"downitems-father-img",src:"/static/index/helpdo/zero.png"}),e.createElementVNode("view",{class:"downitems-father-font"},"清洁照料")]),e.createElementVNode("view",{class:"downitems-left-father"},[e.createElementVNode("image",{class:"downitems-father-img",src:"/static/index/helpdo/one.png"}),e.createElementVNode("view",{class:"downitems-father-font"},"四肢清洁")]),e.createElementVNode("view",{class:"downitems-left-father"},[e.createElementVNode("image",{class:"downitems-father-img",src:"/static/index/helpdo/two.png"}),e.createElementVNode("view",{class:"downitems-father-font-laba"},"协助清洁(四肢)"),e.createElementVNode("image",{class:"downitems-father-img-laba",src:"/static/index/helpdo/laba.png"})]),e.createElementVNode("view",{class:"downitems-left-father"},[e.createElementVNode("image",{class:"downitems-father-img",src:"/static/index/helpdo/three.png"}),e.createElementVNode("view",{class:"downitems-father-font-small"},"准备清水,一次性面巾,香皂,清洁后涂身体保湿乳。")]),e.createElementVNode("view",{class:"downitems-kuai",onClick:r[0]||(r[0]=e=>a.value=!0)},[e.createElementVNode("image",{class:"downitems-kuai-img",src:"/static/index/helpdo/video.png"})]),e.createElementVNode("view",{class:"downitems-says"}," 视频讲解 ")])]),e.createElementVNode("image",{class:"downitems-shu",src:V}),e.createElementVNode("view",{class:"downitems-center"},[e.createElementVNode("view",{class:"downitems-center-title"},[e.createElementVNode("view",{class:"downitems-center-title-gun"}),e.createElementVNode("view",{class:"downitems-center-title-font"},"转单原因"),e.createElementVNode("view",{class:"downitems-center-says"},[e.createElementVNode("view",{class:"downitems-center-father"},[e.createElementVNode("image",{class:"downitems-center-says-maike",src:"/static/index/helpdo/maike.png"})]),e.createElementVNode("view",{class:""},"语音输入")])]),e.createElementVNode("view",{class:"downitems-textarea"},[e.createElementVNode("textarea",{class:"custom-textarea",onBlur:l,placeholder:"请输入"},null,32)]),e.createElementVNode("view",{class:"downitems-center-title"},[e.createElementVNode("view",{class:"downitems-center-title-gun"}),e.createElementVNode("view",{class:"downitems-center-title-font"},"转单方式")]),e.createElementVNode("view",{class:"radio-circle-top-father"},[e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(n.value?"radio-circle":"radio-circle-target"),onClick:r[1]||(r[1]=e=>n.value=0)},null,2),e.createElementVNode("view",{class:"radio-font",onClick:r[2]||(r[2]=e=>n.value=0)},"重新派单")]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(n.value?"radio-circle-target":"radio-circle"),onClick:r[3]||(r[3]=e=>{n.value=1})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:r[4]||(r[4]=e=>n.value=1)},"定向派单")])]),e.createElementVNode("view",{class:"downitems-button"}," 确认 ")]),e.createElementVNode("image",{class:"downitems-shu",style:{transform:"rotate(180deg)","margin-left":"0rpx"},src:V}),e.createElementVNode("view",{class:"downitems-right"},[e.withDirectives(e.createElementVNode("view",{class:"downitems-all"},[e.createElementVNode("view",{class:"downitems-center-title"},[e.createElementVNode("view",{class:"downitems-center-title-gun"}),e.createElementVNode("view",{class:"downitems-center-title-font"},"重新派单")]),e.createElementVNode("view",{class:"downitems-all-font"}," 选择重新派单,平台自动将服务指令重新派发给其他员工,等待执行。 ")],512),[[e.vShow,!n.value]]),e.withDirectives(e.createElementVNode("view",{class:"downitems-all"},[e.createElementVNode("view",{class:"downitems-center-title"},[e.createElementVNode("view",{class:"downitems-center-title-gun"}),e.createElementVNode("view",{class:"downitems-center-title-font"},"定向派单")]),e.createElementVNode("view",{class:"downitems-all-font"}," 选择定向转单,请选择要执行服务指令的员工。 "),e.createElementVNode("view",{class:"downitems-card-all"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([0,1,2,3,4,5,6,7],((t,l)=>e.createElementVNode("view",{class:"downitems-card"},[e.createElementVNode("view",{class:e.normalizeClass(i.value===l?"downitems-card-one-target":"downitems-card-one"),onClick:e=>(e=>{i.value=e})(l)},[e.createElementVNode("view",{class:"downitems-card-father"},[e.createElementVNode("image",{class:"downitems-card-img",src:"/static/index/helpdo/people.png"})]),e.createElementVNode("view",{class:"downitems-card-font"}," 李金福 ")],10,["onClick"])]))),64))])],512),[[e.vShow,n.value]])])])]),e.withDirectives(e.createElementVNode("view",{class:"modal",onClick:o},[e.createElementVNode("view",{class:"modal-content",onClick:r[5]||(r[5]=e.withModifiers((()=>{}),["stop"]))})],512),[[e.vShow,a.value]])]))}}),[["__scopeId","data-v-6070efba"]]),k=s(e.defineComponent({__name:"index",props:{isshow:{type:Boolean,required:!0},darkFans:{type:Boolean,required:!0}},emits:["darkchange"],setup(t,{emit:l}){const a=e.ref(null),i=t,n=e.ref(!1),r=e.ref(!1),o=e.ref(!1),c=e.ref(!1),s=e.ref(!1),d=e.ref(!1),m=e.ref(""),u=e.ref(""),v=e.ref(""),p=e.ref([{url:"/static/index/undericons/alarm.png",targetUrl:"/static/index/undericons/alarmdark.png",name:"服务考核"},{url:"/static/index/undericons/linshitime.png",targetUrl:"/static/index/undericons/linshitimedark.png",name:"护理流程"},{url:"/static/index/darkicon/zhaomingdark.png",targetUrl:"/static/index/roomicons/zhaomingtar.png",name:"电子医嘱"},{url:"/static/index/darkicon/kontiaodark.png",targetUrl:"/static/index/roomicons/kongtiaotar.png",name:"进销存"},{url:"/static/index/darkicon/nuanfengdark.png",targetUrl:"/static/index/roomicons/nuanfengtar.png",name:"实时监控"},{url:"/static/index/darkicon/dianqidark.png",targetUrl:"/static/index/roomicons/dianqitar.png",name:"我的指令"}]),g=e.ref([{url:"/static/index/hulilist/zhuandan.png",name:"转单执行"},{url:"/static/index/hulilist/xiezhu.png",name:"协助执行"},{url:"/static/index/hulilist/zhongdian.png",name:"重点追踪"}]),w=e.ref([{url:"/static/index/darkicon/zhuandandark.png",name:"转单执行"},{url:"/static/index/darkicon/xiezhudark.png",name:"协助执行"},{url:"/static/index/darkicon/zhongdiandark.png",name:"重点追踪"}]),h=e.ref([{url:"/static/index/medium/yaopin.png",name:"药品信息",number:0},{url:"/static/index/medium/qingling.png",name:"请领指令",number:60},{url:"/static/index/medium/peiyao.png",name:"配药指令",number:100},{url:"/static/index/medium/xinxi.png",name:"信息反馈",number:0},{url:"/static/index/medium/xinxi.png",name:"信息反馈2",number:0}]),f=e.ref([{url:"/static/index/darkicon/yaopindark.png",name:"药品信息",number:55},{url:"/static/index/darkicon/qinglingdark.png",name:"请领指令",number:10},{url:"/static/index/darkicon/peiyaodark.png",name:"配药指令",number:100},{url:"/static/index/darkicon/xinxidark.png",name:"信息反馈",number:15},{url:"/static/index/darkicon/xinxidark.png",name:"信息反馈2",number:20}]),N=e.ref([{url:"/static/index/roomicons/zhaoming.png",targetUrl:"/static/index/roomicons/zhaomingtar.png",name:"照明"},{url:"/static/index/roomicons/kongtiao.png",targetUrl:"/static/index/roomicons/kongtiaotar.png",name:"空调"},{url:"/static/index/roomicons/nuanfeng.png",targetUrl:"/static/index/roomicons/nuanfengtar.png",name:"暖风"},{url:"/static/index/roomicons/dianqi.png",targetUrl:"/static/index/roomicons/dianqitar.png",name:"电器"}]),E=e.ref([{url:"/static/index/darkicon/zhaomingdark.png",targetUrl:"/static/index/roomicons/zhaomingtar.png",name:"照明"},{url:"/static/index/darkicon/kontiaodark.png",targetUrl:"/static/index/roomicons/kongtiaotar.png",name:"空调"},{url:"/static/index/darkicon/nuanfengdark.png",targetUrl:"/static/index/roomicons/nuanfengtar.png",name:"暖风"},{url:"/static/index/darkicon/dianqidark.png",targetUrl:"/static/index/roomicons/dianqitar.png",name:"电器"}]);e.ref(0);const V=e.ref(0);e.ref(!1);const k=e.ref([]),T=e.ref(0),D=e.ref(0),C=e.ref(0),S=e.ref(0);e.ref(0);const B=l,z=()=>{uni.navigateTo({url:"/pages/NursingNew/index"})},_=()=>{B("darkchange",!i.darkFans)},I=e=>{if(k.value.includes(e)){let t=[];k.value.forEach((l=>{l!==e&&t.push(l)})),k.value=t}else k.value.push(e)},U=()=>{const e=new Date,t=e.getHours().toString().padStart(2,"0"),l=e.getMinutes().toString().padStart(2,"0");m.value=`${t}:${l}`;const a=e.getFullYear(),i=(e.getMonth()+1).toString().padStart(2,"0"),n=e.getDate().toString().padStart(2,"0");u.value=`${a}年${i}月${n}日`;const r=["星期日","星期一","星期二","星期三","星期四","星期五","星期六"][e.getDay()];v.value=r},M=e=>{D.value=e.detail.current},F=e=>{C.value=e.detail.current},$=()=>{n.value=!n.value,r.value=!0,o.value=!1,s.value=!1,setTimeout((()=>{r.value=!1}),500)},A=()=>{o.value=!o.value,n.value=!1,s.value=!1,c.value=!0,setTimeout((()=>{c.value=!1}),500)},L=()=>{s.value=!s.value,d.value=!0,n.value=!1,o.value=!1,setTimeout((()=>{d.value=!1}),500)};let O=null;return e.onMounted((()=>{O=U(),setInterval(U,1e3)})),e.onBeforeUnmount((()=>{clearInterval(O)})),(l,i)=>(e.openBlock(),e.createElementBlock("view",{class:"right-container",style:e.normalizeStyle(t.isshow?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," ID:12345678 ",2),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," 名称:未命名01 ",2),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"right-icons-font-dark":"right-icons-font")},"王金福",2),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/face.png":"/static/index/undericons/facelight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/hand.png":"/static/index/undericons/handlight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/out.png":"/static/index/undericons/outlight.png"},null,8,["src"])]),e.withDirectives(e.createElementVNode("view",{class:"right-container-title-class-anhei-button",onClick:i[0]||(i[0]=e=>_())},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 切换到暗黑模式 ")],512),[[e.vShow,!t.darkFans]]),e.withDirectives(e.createElementVNode("view",{class:"right-container-title-class-anhei-button",style:e.normalizeStyle(t.darkFans?{backgroundColor:"#fff"}:{}),onClick:i[1]||(i[1]=e=>_())},[e.createElementVNode("text",{class:"right-container-title-class-anhei",style:e.normalizeStyle(t.darkFans?{color:"black"}:{})}," 取消暗黑模式 ",4)],4),[[e.vShow,t.darkFans]]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button",style:{"background-color":"#fff"}},[e.createElementVNode("text",{class:"right-container-title-class-anhei",style:{color:"black"},onClick:z}," 切换到新版主页 ")])]),e.createElementVNode("view",{class:"right-container-fir"},[e.createElementVNode("view",{class:e.normalizeClass([n.value?"right-container-big":"right-container-small","right-container-fir-left-nav"]),style:e.normalizeStyle(r.value||n.value?{zIndex:999}:{zIndex:998})},[e.createElementVNode("view",{style:e.normalizeStyle(n.value?{borderRadius:"30rpx"}:{borderRadius:"50rpx"}),class:e.normalizeClass(t.darkFans?"right-container-fir-left-card-dark":"right-container-fir-left-card")},[e.createElementVNode("image",{class:"right-container-fir-left-card-hulilei",src:"/static/index/hulilei.png"},null,8,["src"]),e.createElementVNode("div",{class:"right-container-fir-left-card-hulilei-font",onClick:$},"护理类"),t.darkFans?(e.openBlock(),e.createElementBlock("image",{key:0,class:"card-upfaguang",src:"/static/index/cardbgc/uplight.png"},null,8,["src"])):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"right-container-fir-left-carousel"},[e.createElementVNode("view",{class:"carousel"},[e.createElementVNode("view",{class:"dots"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("span",{key:a,class:e.normalizeClass(t.darkFans?"dot-dark":"dot"),style:e.normalizeStyle(a===D.value?{backgroundColor:"#01A0FE"}:{})},null,6))),64))])])]),e.createElementVNode("view",{class:"right-container-fir-left-card-main"},[e.createElementVNode("swiper",{current:D.value,class:"swiper savehundred",circular:"","indicator-dots":!1,vertical:!0,interval:4e3,duration:500,onChange:M},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("view",{class:"right-container-fir-left-card-flex"},[e.createElementVNode("view",{class:"uni-margin-wrap-fir"},[e.createElementVNode("swiper",{current:T.value,class:"swiper",circular:"","indicator-dots":!1,interval:4e3,duration:500},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("view",{class:"right-container-fir-left-card-card"},[e.createElementVNode("view",{class:"right-container-fir-left-card-zhixing"},[e.createElementVNode("div",{class:"right-container-fir-left-card-zhixing-font"},"待执行 ")]),e.createElementVNode("image",{class:"right-container-fir-left-card-img",src:"/static/index/teeth.png",onClick:$},null,8,["src"]),e.createElementVNode("view",{class:"right-container-fir-left-card-main-laba-video"},[e.createElementVNode("image",{class:"right-container-fir-left-card-main-laba",src:t.darkFans?"/static/index/darkicon/labadark.png":"/static/index/laba.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-fir-left-card-main-font-dark":"right-container-fir-left-card-main-font")}," 准备洁具(口腔) ",2),e.createElementVNode("image",{class:"right-container-fir-left-card-main-video",src:(t.darkFans,"/static/index/indexvideo.png")},null,8,["src"])])]),e.createElementVNode("view",{class:"split-line"}),e.createElementVNode("view",{class:"time-tra-fir"},[e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-font-dark":"time-font")}," 10:00 - 10:10 ",2),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-text-dark":"time-text")}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ",2),e.createElementVNode("view",{class:"time-people-two"},[e.createElementVNode("view",{class:"time-people-fir"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/darkicon/zhixingpeopledark.png":"/static/index/cardicons/zhixing.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 单人执行 ",2)]),e.createElementVNode("view",{class:"time-people-sec"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/dopeopledark.png":"/static/index/cardicons/zhifa.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," -- ",2)])]),e.createElementVNode("view",{class:"time-button-view"},[e.createElementVNode("view",{class:"time-button-start"}," 开始服务 "),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-button-end-dark":"time-button-end")}," 服务结束 ",2)])])]))),64))],8,["current"])]),e.createElementVNode("view",{class:"split-line-white-right-left",style:e.normalizeStyle(t.darkFans?"background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #386997 50%, rgba(0, 0, 0, 0) 100%);":"")},[t.darkFans?(e.openBlock(),e.createElementBlock("image",{key:0,class:"split-line-white-img",src:"/static/index/cardbgc/leftlight.png"},null,8,["src"])):e.createCommentVNode("",!0)],4)])]))),64))],40,["current"]),e.createElementVNode("view",{class:"right-huli-sec"},[e.createElementVNode("image",{class:"right-huli-shang",src:"/static/index/hulilist/shang.png"},null,8,["src"]),t.darkFans?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("scroll-view",{key:0,"show-scrollbar":!1,"scroll-y":"true",class:"right-huli-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-huli-view-dis",onClick:e=>{a.value.openDrawer()}},[e.createElementVNode("image",{class:"right-huli-img",src:t.url},null,8,["src"]),e.createElementVNode("text",{class:"right-huli-text"},e.toDisplayString(t.name),1)],8,["onClick"])))),128))])),t.darkFans?(e.openBlock(),e.createElementBlock("scroll-view",{key:1,"show-scrollbar":!1,"scroll-y":"true",class:"right-huli-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(w.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-huli-view-dis"},[e.createElementVNode("image",{class:"right-huli-img",src:t.url},null,8,["src"]),e.createElementVNode("text",{class:"right-huli-text-dark"},e.toDisplayString(t.name),1)])))),128))])):e.createCommentVNode("",!0),e.createElementVNode("image",{class:"right-huli-xia",src:"/static/index/hulilist/xia.png"},null,8,["src"])])])],6)],6),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"right-container-fir-right-dark":"right-container-fir-right")},[e.createElementVNode("view",{class:"right-container-card"},[e.createElementVNode("view",{class:"right-container-card-right"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3,4],((t,l)=>e.createElementVNode("view",{class:"",key:l},[e.createElementVNode("image",{class:"right-container-card-right-img",src:y})]))),64))]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-dark":"right-container-title")},e.toDisplayString(m.value),3),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-date-dark":"right-container-date")},e.toDisplayString(u.value),3),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-day-dark":"right-container-day")},e.toDisplayString(v.value),3),e.createElementVNode("view",{class:"right-container-tem"},[e.createElementVNode("image",{class:"right-container-tem-img",src:t.darkFans?"/static/index/darkicon/wendudark.png":"/static/index/roomicons/wendu.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-tem-text-dark":"right-container-tem-text")},"23°C",2),e.createElementVNode("image",{class:"right-container-tem-img",src:t.darkFans?"/static/index/roomicons/shidu.png":"/static/index/darkicon/shidudark.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-tem-text-dark":"right-container-tem-text")},"39%",2)]),e.createElementVNode("view",{class:"right-container-fenge"}),t.darkFans?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"right-container-button"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(N.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-container-button-any"},[e.withDirectives(e.createElementVNode("image",{class:"right-container-button-ray",src:"/static/index/cardicons/ray2.png"},null,8,["src"]),[[e.vShow,k.value.includes(l)]]),e.createElementVNode("image",{class:"right-container-button-img",src:k.value.includes(l)?t.targetUrl:t.url,onClick:e=>I(l)},null,8,["src","onClick"]),e.createElementVNode("text",{class:"right-container-button-text",style:e.normalizeStyle(k.value.includes(l)?{color:"#167ED7"}:{})},e.toDisplayString(t.name),5)])))),128))])),t.darkFans?(e.openBlock(),e.createElementBlock("view",{key:1,class:"right-container-button"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-container-button-any"},[e.withDirectives(e.createElementVNode("image",{class:"right-container-button-ray",src:"/static/index/cardicons/ray2.png"},null,8,["src"]),[[e.vShow,k.value.includes(l)]]),e.createElementVNode("image",{class:"right-container-button-img",src:k.value.includes(l)?t.targetUrl:t.url,onClick:e=>I(l)},null,8,["src","onClick"]),e.createElementVNode("text",{class:"right-container-button-text",style:e.normalizeStyle(k.value.includes(l)?{color:"#167ED7"}:{color:"#fff"})},e.toDisplayString(t.name),5)])))),128))])):e.createCommentVNode("",!0)])],2)]),e.createElementVNode("view",{class:"right-container-sec"},[e.createElementVNode("view",{class:e.normalizeClass(o.value?"right-container-left-big":"right-container-left-small"),style:e.normalizeStyle(c.value||o.value?{zIndex:999}:{zIndex:0})},[e.createElementVNode("view",{style:e.normalizeStyle(o.value?{borderRadius:"29rpx"}:{borderRadius:"50rpx"}),class:e.normalizeClass(t.darkFans?"right-container-left-dark":"right-container-left")},[e.createElementVNode("image",{class:"right-container-left-type",src:"/static/index/yiliao/yiliaolei.png"},null,8,["src"]),e.createElementVNode("div",{class:"right-container-left-font",onClick:A},"医疗类"),e.createElementVNode("view",{class:"right-container-fir-left-carousel"},[e.createElementVNode("view",{class:"carousel"},[e.createElementVNode("view",{class:"dots"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("span",{key:a,class:e.normalizeClass(t.darkFans?"dot-dark":"dot"),style:e.normalizeStyle(a===C.value?{backgroundColor:"#01A0FE"}:{})},null,6))),64))])])]),t.darkFans?(e.openBlock(),e.createElementBlock("image",{key:0,class:"card-upfaguang-down",src:"/static/index/cardbgc/uplight.png"},null,8,["src"])):e.createCommentVNode("",!0),e.createElementVNode("swiper",{current:C.value,class:"swiper savehundred",circular:"","indicator-dots":!1,vertical:!0,interval:4e3,duration:500,onChange:F},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("div",{class:"right-container-fir-left-card-flex-sec"},[e.createElementVNode("view",{class:"uni-margin-wrap"},[e.createElementVNode("swiper",{current:S.value,class:"swiper",circular:"","indicator-dots":!1,autoplay:!1,interval:4e3,duration:500},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("div",{class:"right-container-left-font-spec"},"进行中 "),e.createElementVNode("view",{class:"time-tra-sec"},[e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-font-dark":"time-font")}," 10:00 - 10:10 ",2),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/doctorsaydark.png":"/static/index/medium/doctorsay.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 医嘱类型:药品 ",2)]),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/howtododark.png":"/static/index/medium/howtodo.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 处置方式:肌肉注射 ",2)]),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/useMed.png":"/static/index/medium/yongyao.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 用药类型:抗生素类 ",2)]),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/domanydark.png":"/static/index/medium/domany.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 执行方式:周期一日执行一次 ",2)]),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/darkicon/zhixingpeopledark.png":"/static/index/cardicons/zhixing.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 单人执行 ",2),e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/dopeopledark.png":"/static/index/cardicons/zhifa.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 赵宇 ",2)]),e.createElementVNode("view",{class:"time-button-view"},[e.createElementVNode("view",{class:"time-button-start"}," 开始服务 "),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-button-end-dark":"time-button-end")}," 服务结束 ",2)])]),e.createElementVNode("view",{class:"right-container-photo"},[e.createElementVNode("image",{class:"right-container-photo-img",src:"/static/index/yiliao/project2.png",onClick:A},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-photo-text-dark":"right-container-photo-text")}," 脑膜炎(1/2) ",2)])]))),64))],8,["current"])])])]))),64))],40,["current"]),e.createElementVNode("view",{class:"split-line-white-sec",style:e.normalizeStyle(t.darkFans?"background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #386997 50%, rgba(0, 0, 0, 0) 100%);":"")},[t.darkFans?(e.openBlock(),e.createElementBlock("image",{key:0,class:"split-line-white-img",src:"/static/index/cardbgc/leftlight.png"},null,8,["src"])):e.createCommentVNode("",!0)],4),e.createElementVNode("view",{class:"right-huli-fir"},[e.createElementVNode("image",{class:"right-huli-shang",src:"/static/index/hulilist/shang.png"},null,8,["src"]),t.darkFans?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("scroll-view",{key:0,"show-scrollbar":!1,"scroll-y":"true",class:"right-huli-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(h.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-huli-view-dis"},[e.createElementVNode("image",{class:"right-huli-img",src:t.url},null,8,["src"]),e.createElementVNode("text",{class:"right-huli-text"},e.toDisplayString(t.name),1),e.withDirectives(e.createElementVNode("div",{class:"progress-bar-container"},[e.createElementVNode("div",{style:e.normalizeStyle({width:`${t.number}%`}),class:"progress-bar"},null,4)],512),[[e.vShow,0!==t.number]])])))),128))])),t.darkFans?(e.openBlock(),e.createElementBlock("scroll-view",{key:1,"show-scrollbar":!1,"scroll-y":"true",class:"right-huli-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(f.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-huli-view-dis"},[e.createElementVNode("image",{class:"right-huli-img",src:t.url},null,8,["src"]),e.createElementVNode("text",{class:"right-huli-text-dark"},e.toDisplayString(t.name),1),e.withDirectives(e.createElementVNode("div",{class:"progress-bar-container"},[e.createElementVNode("div",{style:e.normalizeStyle({width:`${t.number}%`}),class:"progress-bar"},null,4)],512),[[e.vShow,0!==t.number]])])))),128))])):e.createCommentVNode("",!0),e.createElementVNode("image",{class:"right-huli-xia",src:"/static/index/hulilist/xia.png"},null,8,["src"])])],6)],6),e.createElementVNode("view",{style:e.normalizeStyle(d.value||s.value?{zIndex:999}:{zIndex:0}),class:e.normalizeClass([s.value?"right-container-right-big":"right-container-right-small"])},[e.createElementVNode("view",{style:e.normalizeStyle(s.value?{borderRadius:"29rpx"}:{borderRadius:"50rpx"}),class:e.normalizeClass([t.darkFans?"right-container-right-father-dark":"right-container-right-father"])},[e.createElementVNode("view",{class:"right-container-right-down-father"},[e.createElementVNode("div",{class:"right-container-fir-left-card-flex-sec"},[e.createElementVNode("image",{class:"right-container-fir-left-card-flex-sec-img",src:"/static/index/baojielei.png"},null,8,["src"]),e.createElementVNode("div",{class:"right-container-fir-left-card-flex-sec-font",onClick:L},"保洁类"),e.createElementVNode("image",{class:"right-container-fir-left-card-flex-sec-imgright-fir",src:"/static/index/baojieleft.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-container-fir-left-card-flex-sec-imgright-sec",src:"/static/index/baojieright.png"},null,8,["src"]),e.createElementVNode("view",{class:"uni-margin-wrap"},[e.createElementVNode("swiper",{current:S.value,class:"swiper",circular:"","indicator-dots":!1,autoplay:!1,interval:4e3,duration:500},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("view",{class:"time-tra-thi"},[e.createElementVNode("view",{class:"time-tra-thi-zhixing"},[e.createElementVNode("div",{class:"time-tra-thi-zhixing-font"},"待执行 ")]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-font-dark":"time-font")}," 10:00 - 10:10 ",2),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-text-dark":"time-text")}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ",2),e.createElementVNode("view",{class:"time-people-two"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/darkicon/zhixingpeopledark.png":"/static/index/cardicons/zhixing.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 单人执行 ",2),e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/dopeopledark.png":"/static/index/cardicons/zhifa.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 王金福 / 李贵田 ",2)]),e.createElementVNode("view",{class:"time-button-view"},[e.createElementVNode("view",{class:"time-button-start"}," 开始服务 "),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-button-end-dark":"time-button-end")}," 服务结束 ",2)])]),e.createElementVNode("view",{class:"time-tra-thi-photo"},[e.createElementVNode("image",{class:"time-tra-thi-photo-img",src:"/static/index/project3.png",onClick:L},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-tra-thi-photo-font-dark":"time-tra-thi-photo-font")}," 更换纸尿裤 ",2)])]))),64))],8,["current"])])])])],6)],6),e.createElementVNode("view",{class:"under-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.value,((l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"under-father-view",key:a,onClick:e=>(e=>{V.value=e})(a)},[e.withDirectives(e.createElementVNode("image",{class:"under-father-light",src:"/static/index/undericons/upguang.png"},null,512),[[e.vShow,a===V.value]]),e.createElementVNode("image",{class:"under-father-img",src:a===V.value?l.targetUrl:l.url},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"under-father-img-font-dark":"under-father-img-font")},e.toDisplayString(l.name),3)],8,["onClick"])))),128))])]),e.createVNode(x,{ref_key:"drawer",ref:a},{default:e.withCtx((()=>[e.createVNode(b)])),_:1},512)],4))}}),[["__scopeId","data-v-6d6a66c6"]]),T="/static/index/deleteicon.png",D="/static/index/NU.png",C=[{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706886",title:"协助喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604232524795905",title:"鼻饲喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604428667228162",title:"注射器/吸管喂药",tagName:"头部,大体重"}],levle:"2",title:"协助喂药",key:"1900114812020310017",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605892869394433",title:"一级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606105021485058",title:"二级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606339931869185",title:"三级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606614344208386",title:"一级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606869953482753",title:"二级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607023431454722",title:"三级压疮防护",tagName:"大体重"}],levle:"2",title:"压疮防护",key:"1900115034452639746",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706887",title:"床椅转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706888",title:"床椅转移",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605073730211842",title:"床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605223185846273",title:"床椅转移",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605365393723393",title:"协助床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605496071458818",title:"协助床椅转移",tagName:null}],levle:"2",title:"床椅转移",key:"1902248363784159233",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607507626102786",title:"轮椅防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607677415723010",title:"轮椅防护",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902607817589362689",title:"轮椅防护",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902608061588803585",title:"轮椅防护",tagName:"大体重"}],levle:"2",title:"轮椅防护",key:"1902280900178886657",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608564582322178",title:"约束位按摩",tagName:"手"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608974609092610",title:"约束位按摩",tagName:"足"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618507855237121",title:"约束位按摩",tagName:"全"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618751548493825",title:"防护网约束",tagName:null}],levle:"2",title:"约束防护",key:"1902280933364219906",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620309090701314",title:"协助行走",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620486044192769",title:"放松按摩",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902625161569079298",title:"心灵慰藉",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902625402468929537",title:"狂躁",tagName:null}],levle:"2",title:"按摩保健",key:"1902564031454744577",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902625872432304130",title:"准备衣物",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626005538541569",title:"协助更换",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626664711163905",title:"肢体障碍",tagName:"半侧"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626800510144513",title:"肢体障碍",tagName:"全身"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627064688381953",title:"准备衣物",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627280716009474",title:"协助更换",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627416598876161",title:"肢体障碍",tagName:"半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627522404388866",title:"肢体障碍",tagName:"全身"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902627711806574593",title:"协助更换",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628058591629313",title:"肢体障碍",tagName:"半侧,大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628650718302209",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628837725540354",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628966847188993",title:"肢体障碍",tagName:"大体重,半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902629129879785474",title:"协助更换",tagName:"大体重"}],levle:"2",title:"更换衣物",key:"1902564088417587201",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629344456183809",title:"坐起",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629492301205506",title:"躺下",tagName:null}],levle:"2",title:"调整坐卧",key:"1902564199830884354",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902630862769065985",title:"遗体净身",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902631162275926017",title:"遗体穿衣",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631422431825921",title:"遗体转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631602463936514",title:"床位消毒",tagName:null}],levle:"2",title:"殡仪服务",key:"1902564263743688705",parentId:"1900112597427793921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902631830441136129",title:"更换床上用品",tagName:"全部"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632063828987905",title:"隔尿褥子更换",tagName:null}],levle:"2",title:"更换床上用品",key:"1902564446648897538",parentId:"1900112597427793921"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632288270389250",title:"临终护理",tagName:null}],levle:"2",title:"临终服务",key:"1902564503783706625",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"40",id:"1902632678701371393",title:"制氧机吸氧",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902632799853842433",title:"制氧机维护",tagName:null}],levle:"2",title:"制氧机应用",key:"1902564586101116930",parentId:"1900112597427793921"}],levle:"1",title:"1 日常照料",key:"1900112597427793921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900376187661553665",title:"准备洁具",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900420873478553602",title:"棉球清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706881",title:"协助清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706885",title:"义齿清洁",tagName:"口腔"}],levle:"2",title:"口腔清洁",key:"1902597070889127938",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902636771540963329",title:"准备洁具",tagName:"头部"},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637623425077250",title:"协助洗头",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637985234128898",title:"卧式洗头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902638122949906433",title:"擦头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902638304739430401",title:"刮头",tagName:null}],levle:"2",title:"头部清洁",key:"1902597497344987137",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902641763073101826",title:"准备洁具",tagName:"面部"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642254465175553",title:"协助洁面",tagName:null}],levle:"2",title:"面部清洁",key:"1902597651405967361",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642508145070081",title:"准备洁具",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642672796667905",title:"协助清洁",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642822885642242",title:"卧床清洁",tagName:"躯干"}],levle:"2",title:"躯干清洁",key:"1902597718082818050",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643318811758594",title:"准备洁具",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643483320750082",title:"协助清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643630888947713",title:"卧床清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643837525528578",title:"肌张力高",tagName:"清洁"}],levle:"2",title:"四肢清洁",key:"1902597811565465601",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645148199391234",title:"会阴清洁",tagName:"男"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645295457210369",title:"会阴清洁",tagName:"女"}],levle:"2",title:"会阴清洁",key:"1902597873964126209",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645493185089537",title:"肛周清洁",tagName:null}],levle:"2",title:"肛周清洁",key:"1902597930020999170",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645693211447298",title:"洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647316134465538",title:"泡手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647529817477122",title:"准备洁具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647673212342274",title:"协助洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647905878773762",title:"强直屈曲洗手",tagName:null}],levle:"2",title:"手清洁",key:"1902597991698239489",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648101203316737",title:"泡脚",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648239091060737",title:"卧式泡脚",tagName:null}],levle:"2",title:"足清洁",key:"1902598178588037121",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648426383511553",title:"修睫毛",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648548777496577",title:"剃须",tagName:null}],levle:"2",title:"剃须",key:"1902598258573414401",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648962444922882",title:"角质增生",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649132536532994",title:"灰指甲",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649302149992449",title:"正常",tagName:"修甲"}],levle:"2",title:"修甲",key:"1902598354606198785",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902649683919736834",title:"理发",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"25",id:"1902649860344745985",title:"理发",tagName:"颅骨缺损"}],levle:"2",title:"理发",key:"1902598400382832642",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902650121280786434",title:"床上沐浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650408884211713",title:"深度清洁",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650763722330113",title:"浴间洗浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"30",id:"1902651229122301954",title:"床上沐浴",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651366317985794",title:"深度清洁",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651555363655682",title:"浴间洗浴",tagName:"大体重"}],levle:"2",title:"沐浴",key:"1902598454782955522",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651778777452545",title:"内套管清洁",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651924047171586",title:"更换气切纱布",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"10",id:"1902652055928672258",title:"更换气切纱布",tagName:null}],levle:"2",title:"气切消毒",key:"1902598509522817026",parentId:"1900112615777873921"}],levle:"1",title:"2 清洁照料",key:"1900112615777873921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898057679966209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898202668666881",title:"协助进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898339931459586",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898472584712194",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898590658564097",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898719952179201",title:"准备餐具",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898979948695554",title:"协助进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899086840532993",title:"协助进餐",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899214838108162",title:"鼻胃管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899325014085633",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899587028062210",title:"食物加工",tagName:null}],levle:"2",title:"加餐饮食",key:"1902596129720864770",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281139677839362",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902281522340970498",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281654100836354",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281870434648066",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902654960639381506",title:"鼻肠管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902655101874180097",title:"轮椅进餐",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902892199009030145",title:"轮椅进餐",tagName:null}],levle:"2",title:"正餐饮食",key:"1902601263850950657",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893231608926209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893551978254337",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893716466274306",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894369850757122",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894528533860354",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"辅餐饮食",key:"1902601382595891202",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894832176304129",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894954117304322",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895077522116609",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895233407619073",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895569912434689",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"果汁饮食",key:"1902601427168759809",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895878508351489",title:"准备水杯",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895984053817346",title:"协助饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896136835534850",title:"协助饮水",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896508421509122",title:"鼻胃管饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896636553302017",title:"鼻肠管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902896855802155010",title:"准备水杯",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897018344017921",title:"协助饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897464936730626",title:"协助饮水",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897675813752834",title:"鼻胃管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897803417063426",title:"鼻肠管饮水",tagName:null}],levle:"2",title:"饮水饮食",key:"1902601487625457665",parentId:"1902280495747317762"}],levle:"1",title:"3 饮食照料",key:"1902280495747317762"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902653177363927041",title:"巡视",tagName:null}],levle:"2",title:"巡视",key:"1902564741860790273",parentId:"1902560466095017986"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653325481578497",title:"防坠床",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653497066360833",title:"被褥调整",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653650917625857",title:"睡姿调整",tagName:null}],levle:"2",title:"体位调整",key:"1902564818838851585",parentId:"1902560466095017986"}],levle:"1",title:"4 睡眠照料",key:"1902560466095017986"},{children:[{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904277308510210",title:"更换尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904458779267073",title:"更换隔尿垫",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905631242424322",title:"使用尿盆",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905824973131777",title:"使用尿壶",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906220483416065",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906459051233281",title:"坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906610562076674",title:"留置尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906783325458434",title:"更换纸尿裤",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908406344945665",title:"热敷抚触排尿",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908523827400705",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909645401067522",title:"更换尿片",tagName:null}],levle:"2",title:"小便",key:"1902596314152800257",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909835331735554",title:"床上排便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910002671882242",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910156154048514",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910361008050178",title:"人工取便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910524623654913",title:"造瘘袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910700176248834",title:"坐便椅",tagName:null}],levle:"2",title:"大便",key:"1902596399423000577",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910899565072385",title:"口腔吸痰",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911047405899778",title:"气切吸痰",tagName:null}],levle:"2",title:"吸痰",key:"1902596461238652930",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911232974491650",title:"呕吐",tagName:null}],levle:"2",title:"呕吐",key:"1902596886771765250",parentId:"1902560510768549889"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902911378349068290",title:"腹腔引流护理",tagName:null}],levle:"2",title:"引流",key:"1902596940366581762",parentId:"1902560510768549889"}],levle:"1",title:"5 排泄照料",key:"1902560510768549889"}],S=s(e.defineComponent({__name:"index",props:{isshow:{type:Boolean,required:!0},darkFans:{type:Boolean,required:!0},canmove:{type:Boolean,required:!0},liang:{type:Object}},emits:["darkchange","savename","saveruler","closename","changefangkuang","changeold"],setup(t,{expose:a,emit:i}){const o=t;e.watch((()=>o.canmove),(()=>{Ee.value=!1})),e.watch((()=>o.isshow),(()=>{Ee.value=!1,ae.value=!1})),e.onMounted((()=>{}));const c=e.ref([{name:"纸尿裤",url:"/static/index/niao.png"},{name:"呕吐",url:"/static/index/tu.png"},{name:"吸痰",url:"/static/index/ou.png"},{name:"大便",url:"/static/index/baba.png"},{name:"纸尿裤",url:"/static/index/niao.png"},{name:"呕吐",url:"/static/index/tu.png"},{name:"吸痰",url:"/static/index/ou.png"},{name:"大便",url:"/static/index/baba.png"},{name:"纸尿裤",url:"/static/index/niao.png"},{name:"呕吐",url:"/static/index/tu.png"},{name:"吸痰",url:"/static/index/ou.png"},{name:"大便",url:"/static/index/baba.png"},{name:"纸尿裤",url:"/static/index/niao.png"},{name:"呕吐",url:"/static/index/tu.png"},{name:"吸痰",url:"/static/index/ou.png"},{name:"大便",url:"/static/index/baba.png"}]),s=["00","05","10","15","20","25","30","35","40","45","50","55"],d=["周一","周二","周三","周四","周五","周六","周日"],m=Array.from({length:31},((e,t)=>(t+1).toString().padStart(2,"0"))),u=e.ref(!0),v=e.ref(0),p=e.ref(0),g=e.ref(),w=e.ref([]),h=e.ref([]),f=e.ref(!1),N=e.ref(!1),y=e.ref(!1),x=e.ref(!1),E=e.ref(!1),V=e.ref(""),b=e.ref(!1),k=e.ref(1);function S(e,t){return 2*function(e,t){const l=55.9898*e+78.233*t;return Math.abs(43758.5453*Math.sin(l))%1}(e,t)}e.ref(0);const B=t=>{k.value=t.detail.current,e.nextTick((()=>{p.value=z.value}))};e.ref(0);const z=e.ref(0);function _(e){let t=e.detail.scrollTop,l=parseFloat(t.toFixed(2));z.value=l}e.ref(!0);const I=(e,t)=>!(o.canmove||o.liang.index0!==e||o.liang.index1!==t||!pe.value.includes(e+6*k.value)&&ge.value==t),U=(e,t)=>!o.canmove&&o.liang.index0===e&&o.liang.index1===t,M=(e,t,l)=>"日常"===e.cycleType?J.value.index0===t+6*k.value&&J.value.index1===l&&ae.value?"title-time-border-yellow-active-transparent":ae.value?"title-time-border-yellow-active":"title-time-border-yellow":e.cycleType?J.value.index0===t+6*k.value&&J.value.index1===l&&ae.value?"title-time-border-pouple-active-transparent":ae.value?"title-time-border-pouple-active":"title-time-border-pouple":"title-time-border",F=e.ref([{url:"/static/index/doctorsay/light/use.png",targetUrl:"/static/index/doctorsay/dark/use.png",name:"日常"},{url:"/static/index/doctorsay/light/clean.png",targetUrl:"/static/index/doctorsay/dark/clean.png",name:"清洁"},{url:"/static/index/doctorsay/light/drink.png",targetUrl:"/static/index/doctorsay/dark/drink.png",name:"饮食"},{url:"/static/index/doctorsay/light/bed.png",targetUrl:"/static/index/doctorsay/dark/bed.png",name:"睡眠"},{url:"/static/index/doctorsay/light/shi.png",targetUrl:"/static/index/doctorsay/dark/shi.png",name:"排泻"}]),$=e.ref(1),A=e.ref(0),L=e.ref(999);e.ref(!1),e.ref([]);const O=i,P=e=>{O("changeold",e)},j=e.ref(null);e.ref({});const q=e.ref(0),R=e.ref(0),W=e.ref(0),Y=e.ref(0),J=e.ref({index0:999,index1:999,typeName:""}),X=e.ref(-1),Z=e.ref(!1),H=e.ref(!1),G=e.ref([-1,-1]),Q=e.ref(""),K=e.ref(-1),ee=e.ref(!1),te=()=>{ee.value=!0,H.value=!1,setTimeout((()=>{H.value=!0}),100)},le=()=>{uni.share({provider:"weixin",scene:"WXSceneSession",type:0,href:"http://192.168.2.31:3101/daytoday",title:"护理日程分享",summary:"九泰护理日程测试",imageUrl:"https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/uni@2x.png",success:function(e){l("log","at component/rightItemssecond/index.vue:740","success:")},fail:function(e){l("log","at component/rightItemssecond/index.vue:743","fail:")}})},ae=e.ref(!1),ie=e.ref([]),ne=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-q.value)>0||Math.abs(l-R.value)>0)&&j.value&&(clearTimeout(j.value),j.value=null)},re=e.ref(null),oe=e.ref(!1);let ce=null;function se(e){oe.value=!0,ce&&clearTimeout(ce),ce=setTimeout((()=>{oe.value=!1}),400)}const de=e.ref(!1),me=e.ref(0),ue=e.ref(0),ve=e.ref(!1),pe=e.ref([]),ge=e.ref(-1),we=e.ref(""),he=e.ref("");function fe(){return!!(!Ce.value&&De.value.startTime||1===Ce.value&&De.value.startTime&&(De.value.weekTime||De.value.monthTime)||2===Ce.value)}const Ne=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-me.value)>0||Math.abs(l-ue.value)>0)&&re.value&&(clearTimeout(re.value),re.value=null)},ye=()=>{ve.value=!1,re.value&&(clearTimeout(re.value),re.value=null)},xe=e.ref(null),Ee=e.ref(!1),Ve=e=>{me.value=Math.floor(e.touches[0].pageX),ue.value=Math.floor(e.touches[0].pageY),xe.value=setTimeout((()=>{Ee.value=!0}),500)},be=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-me.value)>0||Math.abs(l-ue.value)>0)&&xe.value&&(clearTimeout(xe.value),xe.value=null)},ke=()=>{xe.value&&(clearTimeout(xe.value),xe.value=null)},Te=e.ref({time:"",array:[]}),De=e.ref({op:{name:"",index:[-1,-1,-1]},startTime:"",monthTime:"",weekTime:""}),Ce=e.ref(0),Se=(e,t)=>{if(we.value=t.id,he.value=t.tagName,De.value.op.index[2]===e)De.value.op.index[2]=-1,De.value.op.name="",Ce.value=-1;else switch(De.value.op.index[2]=e,De.value.op.name=t.relName,t.cycleType){case"日常护理":Ce.value=0;break;case"周期护理":Ce.value=1;break;case"即时护理":Ce.value=2}},Be=e.ref([-1,-1]);e.ref(null);const ze=async()=>{N.value=!1,u.value=!0;let t=-1,l=[];if(2===Ce.value)return v.value=1,void e.nextTick((()=>{v.value=0,c.value.unshift({name:De.value.op.name,url:"/static/index/ou.png",target:"#00a8ff"}),setTimeout((()=>{c.value[0].target="#fff"}),1500),setTimeout((()=>{c.value[0].target=""}),3e3)}));Ae.value.forEach(((e,a)=>{l=[],e.children.forEach(((e,t)=>{if(null===e.directiveName||""===e.directiveName||void 0===e.directiveName){Ae.value.every((e=>{const l=e.children[t];return void 0===l||null===l.directiveName||""===l.directiveName||void 0===l.directiveName}))&&l.push(t)}})),e.children.forEach(((e,l)=>{e.typeName==h.value[De.value.op.index[0]].children[De.value.op.index[1]].title&&(t=l)}))})),-1===t&&(t=l[0]);let a=h.value[De.value.op.index[0]].children[De.value.op.index[1]].title;await e.nextTick(),Ae.value.forEach(((e,l)=>{e.children[t].typeName=a}));let i="";Ce.value?1===Ce.value&&(i=De.value.weekTime||De.value.monthTime+"号"):i="日常";const n=Number(Te.value.time),r=Number(De.value.startTime),o=r+10,s=n+Math.floor(o/60),d=`${String(n)}:${String(r).padStart(2,"0")}`,m=`${String(s)}:${String(o%60).padStart(2,"0")}`;-1!==t?(Ae.value[Be.value[0]].children[t].startTime=d,Ae.value[Be.value[0]].children[t].endTime=m):(Ae.value[Be.value[0]].children[Be.value[1]].startTime=d,Ae.value[Be.value[0]].children[Be.value[1]].endTime=m);let g={directiveId:we.value,directiveName:De.value.op.name,startTime:d,endTime:m,positioning:Be.value[0].toString(),positioningLong:Be.value[1].toString(),tagName:he.value,cycleType:i,nuId:"1",customerId:"1",id:"",typeName:a};Ae.value[Be.value[0]].children[t]=g,Ae.value.forEach((e=>{e.children.forEach((e=>{}))}));let w={index0:Be.value[0],index1:t};Fe(w);Ae.value.some((e=>{const t=e.children;return""!==t[t.length-1].directiveName.trim()}))&&(Ae.value.forEach((e=>{e.children.push({directiveName:""})})),p.value=999,e.nextTick(),p.value=9999),_e()},_e=()=>{Ae.value.forEach(((e,t)=>{e.children.forEach(((e,l)=>{let a="";if(e.directiveName||e.id)e.positioning=t,e.positioningLong=l;else{let i={};e.typeName&&(a=e.typeName),i=JSON.parse(JSON.stringify($e.value)),a&&(i.typeName=a),i.positioning=t,i.positioningLong=l}}))}))},Ie=()=>{uni.setStorage({key:"myArray",data:Ae.value,success:function(){uni.navigateTo({url:`/pages/timeMatrix/index?currentNumber=${k.value}`})}})},Ue=e.ref({index0:-1,index1:-1}),Me=e.ref({index0:-1,index1:-1,current:-1,bordershow:!0}),Fe=e=>{p.value=0,p.value=104*e.index1,k.value===Math.floor(e.index0/6)?(Me.value.index0=e.index0-6*k.value,Me.value.index1=e.index1,Ue.value.index0=Me.value.index0,Ue.value.index1=Me.value.index1,Me.value.current=k.value,Me.value.bordershow=!1,setTimeout((()=>{Me.value.index0=-1,Me.value.index1=-1,Me.value.current=-1}),400),setTimeout((()=>{Me.value.bordershow=!0,Ue.value.index0=-1,Ue.value.index1=-1}),1e3)):(setTimeout((()=>{k.value=Math.floor(e.index0/6)}),100),setTimeout((()=>{Me.value.index0=e.index0-6*k.value,Me.value.index1=e.index1,Ue.value.index0=Me.value.index0,Ue.value.index1=Me.value.index1,Me.value.current=k.value,Me.value.bordershow=!1}),800),setTimeout((()=>{Me.value.index0=-1,Me.value.index1=-1,Me.value.current=-1}),1400),setTimeout((()=>{Me.value.bordershow=!0,Ue.value.index0=-1,Ue.value.index1=-1}),2200))};n((()=>{h.value=C,g.value=h.value[0].children,uni.$on("where",Fe)})),r((()=>{uni.$off("where",Fe)})),a({rulerEnd:async e=>{de.value=!1,999!==o.liang.index0&&e&&(De.value={op:{name:"",index:[-1,-1,-1]},startTime:"",monthTime:"",weekTime:""},x.value=!1,N.value=!0,setTimeout((()=>{x.value=!0}),100),De.value.op.index[0]=A.value,De.value.op.index[1]=L.value,Te.value.time=Ae.value[o.liang.index0+6*k.value].positioning,Te.value.array=h.value[A.value].children[L.value].children,Te.value.array.forEach((e=>{e.relName=e.title+(e.tagName?e.tagName.split(",").map((e=>`(${e})`)).join(""):"")})),Be.value=[o.liang.index0+6*k.value,o.liang.index1],Se(0,Te.value.array[0]))},rulerMoveEnd:e=>{if(999!==o.liang.index0&&e.cycleType){if(pe.value.includes(o.liang.index0+6*k.value)||ge.value!==o.liang.index1)return!1;Be.value=[o.liang.index0+6*k.value,o.liang.index1];let t=-1,l=[];Ae.value.forEach(((a,i)=>{l=[],a.children.forEach(((e,t)=>{if(null===e.directiveName||""===e.directiveName||void 0===e.directiveName){Ae.value.every((e=>{const l=e.children[t];return void 0===l||null===l.directiveName||""===l.directiveName||void 0===l.directiveName}))&&l.push(t)}})),a.children.forEach(((l,a)=>{l.typeName==e.typeName&&(t=a)}))})),-1===t&&(t=l[0]);let a=0,i="";Ae.value.forEach((e=>{e.children[0].value&&(a++,i=e.children[0].typeName)})),Ae.value[J.value.index0].children[J.value.index1]=a>1?{directiveName:"",typeName:i}:{directiveName:""},Ae.value[Be.value[0]].children[t]=e;let n=Ae.value[Be.value[0]].children[t].startTime,r=Ae.value[Be.value[0]].children[t].endTime,c=Ae.value[Be.value[0]].positioning;const s=n.substring(n.indexOf(":")),d=r.substring(r.indexOf(":"));Ae.value[Be.value[0]].children[t].startTime=c+s,Ae.value[Be.value[0]].children[t].endTime=c+d;Ae.value.some((e=>{const t=e.children;return""!==t[t.length-1].directiveName.trim()}))&&(Ae.value.forEach((e=>{e.children.push({directiveName:""})})),p.value=999,p.value=9999),_e()}},nextItems:()=>{0==k.value?k.value=3:k.value--}}),e.ref({index0:999,index1:999});const $e=e.ref({directiveId:"",directiveName:"",startTime:"",endTime:"",positioning:"",positioningLong:"",tagName:"",cycleType:"",nuId:"1",customerId:"1",id:"",typeName:""}),Ae=e.ref(Array.from({length:24},((e,t)=>({positioning:t.toString(),children:Array.from({length:4},(()=>({directiveName:""})))}))));function Le(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}return(l,a)=>{var i,n,r,o;return e.openBlock(),e.createElementBlock("view",{class:"right-container",style:e.normalizeStyle(t.isshow?{opacity:"1"}:{opacity:"0"}),onClick:a[22]||(a[22]=e=>{Ee.value=!1,ae.value=!1})},[e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," ID:12345678 ",2),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," 名称:未命名01 ",2),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"right-icons-font-dark":"right-icons-font")},"王金福",2),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/face.png":"/static/index/undericons/facelight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/hand.png":"/static/index/undericons/handlight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/out.png":"/static/index/undericons/outlight.png"},null,8,["src"])]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button",onClick:a[0]||(a[0]=e=>P(0))},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 拖动模式 ")]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button-wrong",onClick:a[1]||(a[1]=e=>P(2))},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 手柄模式 ")])]),e.createElementVNode("view",{class:"doctorsay-container-view"},[e.createElementVNode("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"doctorsay-container-title"},[e.createElementVNode("view",{class:"doctorsay-container-left"},[e.createElementVNode("view",{class:"doctorsay-container-left-gun"}),e.createElementVNode("view",{class:"doctorsay-container-left-font"},"时间矩阵"),e.createElementVNode("view",{class:"doctorsay-container-share",onClick:te}," 分享 ")]),e.createElementVNode("view",{class:"doctorsay-container-right"},[e.createElementVNode("view",{class:"doctorsay-container-right-kuai-cheng"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"日常"),e.createElementVNode("view",{class:"doctorsay-container-right-kuai-zi"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"周期"),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(w.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"doctorsay-container-button-father",key:l},[e.createElementVNode("view",{class:e.normalizeClass($.value===l?"doctorsay-container-button-target":"doctorsay-container-button"),onClick:e=>(e=>{$.value=e})(l)},e.toDisplayString(t),11,["onClick"])])))),128)),e.createElementVNode("view",{class:"doctorsay-container-juzhen",onClick:Ie}," 预览 ")])]),e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("view",{class:"boom"},[e.createElementVNode("view",{style:e.normalizeStyle({marginTop:`-${2*z.value}rpx`})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Ae.value[0].children,((l,a)=>(e.openBlock(),e.createElementBlock("view",{key:a},[e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(K.value===a||t.liang.index1===a&&!t.canmove||J.value.index1===a&&ae.value?"boom-son-target":"boom-son")},e.toDisplayString(l.typeName),3),[[e.vShow,l.typeName]])])))),128))],4)]),e.createElementVNode("swiper",{"disable-touch":!t.canmove||ae.value,current:k.value,class:"scroll-x",circular:"","indicator-dots":!1,onChange:B,interval:4e3,duration:500},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3,4],((l,i)=>e.createElementVNode("swiper-item",{key:i},[e.createElementVNode("view",{style:{display:"flex","box-shadow":"10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1)",background:"linear-gradient(to right, #c4dbf4,#c9c2ef, #c6dcf3)"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Ae.value.slice(6*i,6*(i+1)),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time",style:e.normalizeStyle($.value?{width:"274rpx"}:{width:"206rpx"})},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),5)])))),128))]),e.createElementVNode("view",{style:{display:"flex",height:"calc(100% - 80rpx)"}},[e.createElementVNode("scroll-view",{style:e.normalizeStyle([{height:"100%"},$.value?{width:"6700rpx"}:{width:"5000rpx"}]),"scroll-top":p.value,"scroll-y":t.canmove&&!ae.value,onScroll:_,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Ae.value.slice(6*i,6*(i+1)),((l,i)=>(e.openBlock(),e.createElementBlock("view",{key:i},[e.createElementVNode("view",{class:"super-card-time-und",style:e.normalizeStyle($.value?{width:"274rpx"}:{width:"206rpx"})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.children,((l,n)=>(e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:n},[e.createElementVNode("view",{class:e.normalizeClass(Me.value.current===k.value&&Me.value.index0===i&&Me.value.index1===n?Me.value.index1?"title-time-border-big":"title-time-border-big-top":"super-card-time-card"),style:e.normalizeStyle([Me.value.bordershow||Ue.value.index0!==i||Ue.value.index1!==n?{borderTop:"1rpx solid transparent"}:{zIndex:999},{position:"relative"}]),id:`a${i}_${n}`,onClick:t=>((t,l,a,i)=>{t.directiveName&&(K.value=a,uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.left>100&&t.left<900&&t.top<570&&t.top>140&&t.dataset.index0==l&&t.dataset.index1==a&&(t.left>100&&t.left<400?W.value=Math.floor(t.left)+520:W.value=Math.floor(t.left),t.top>140&&t.top<300?Y.value=Math.floor(t.top)+250:Y.value=Math.floor(t.top),await e.nextTick(),f.value=!0,y.value=!1,setTimeout((()=>{y.value=!0}),100))}))})).exec())})(l,i,n),onTouchstart:e=>((e,t,l,a)=>{p.value=z.value,pe.value=[];let i=-1;q.value=Math.floor(a.touches[0].pageX),R.value=Math.floor(a.touches[0].pageY),j.value=setTimeout((()=>{e.directiveName&&(Ae.value.forEach(((t,l)=>{t.children.forEach((t=>{t.typeName===e.typeName&&t.directiveName&&pe.value.push(l),t.directiveName&&(i=l)}))})),pe.value.length?ge.value=l:ge.value=i+1,J.value.typeName=e.typeName,J.value.index0=t+6*k.value,J.value.index1=l,Be.value=[-1,-1],ie.value=[],ve.value=!0,uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((e=>{e.forEach((async e=>{e.left>100&&e.left<900&&e.top<570&&e.top>140&&ie.value.push(e)}))})).exec(),O("saveruler",e,ie.value),ae.value=!0)}),100)})(l,i,n,e),onTouchmove:ne,onTouchend:a[2]||(a[2]=e=>(ve.value=!1,void(j.value&&(clearTimeout(j.value),j.value=null)))),"data-index0":i,"data-index1":n},[l.directiveName&&ae.value?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time-delete",onClick:e.withModifiers((e=>((e,t,l)=>{G.value=[-1,-1],ae.value=!1,Ee.value=!1,b.value=!1,E.value=!0,G.value=[t+6*k.value,l],V.value=e.directiveName,Q.value=e.id,setTimeout((()=>{b.value=!0}),100)})(l,i,n)),["stop"])}," - ",8,["onClick"])),[[e.vShow,t.liang.index0!==i||t.liang.index1!==n||t.canmove]]):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{class:"title-time-blue"},[e.createElementVNode("image",{class:"title-time-blue-img",src:I(i,n)?"/static/index/movemode/targetcheng.png":"/static/index/movemode/target.png"},null,8,["src"])],512),[[e.vShow,U(i,n)]]),e.createElementVNode("view",{class:e.normalizeClass(M(l,i,n)),style:e.normalizeStyle([{"font-size":"30rpx",overflow:"hidden"},{animationDelay:`-${S(i,n).toFixed(2)}s`}])},[l.startTime?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"margin-top":"5rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(l.startTime+"-"+l.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==l.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(l.cycleType),1)],512)),[[e.vShow,t.liang.index0!==i||t.liang.index1!==n||t.canmove]]):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{style:{"margin-top":"20rpx","font-weight":"700"}},e.toDisplayString(Le(l.directiveName)[0]),513),[[e.vShow,t.liang.index0!==i||t.liang.index1!==n||t.canmove]]),Le(l.directiveName)[1]?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:1,class:"down-icons",style:e.normalizeStyle("日常"!=l.cycleType?{backgroundColor:"rgb(212,203,255)"}:{})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Le(l.directiveName).slice(1),((t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:a},[e.createElementVNode("view",{class:"icon",style:e.normalizeStyle("日常"!=l.cycleType?{backgroundColor:"rgb(123,97,255)"}:{})},e.toDisplayString(Le(l.directiveName)[a+1]),5)])))),128))],4)),[[e.vShow,t.liang.index0!==i||t.liang.index1!==n||t.canmove]]):e.createCommentVNode("",!0)],6)],46,["id","onClick","onTouchstart","data-index0","data-index1"])])))),128))],4)])))),128))])],44,["scroll-top","scroll-y"])])]))),64))],40,["disable-touch","current"])])]),e.createElementVNode("view",{class:"super-card-end"},[e.createElementVNode("view",{class:"super-end-father"},[e.createElementVNode("view",{class:"super-end-font-father"},[e.createElementVNode("view",{class:"super-end-font-gun"}),e.createElementVNode("view",{class:"super-end-font-font"},"即时指令")]),e.createElementVNode("scroll-view",{"scroll-x":"",class:"super-end-items-all","scroll-left":v.value},[e.createElementVNode("view",{class:"super-end-items"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{onTouchstart:Ve,onTouchmove:be,onTouchend:ke,style:e.normalizeStyle(t.target?{background:t.target,transition:"all 1.5s ease-in-out"}:{transition:"all 1.5s ease-in-out"}),class:"super-end-items-father"},[e.withDirectives(e.createElementVNode("view",{class:"super-end-items-father-close-father",onClick:e.withModifiers((e=>((e,t)=>{Ee.value=!1,X.value=e,ae.value=!1,H.value=!1,Z.value=!0,V.value=t,setTimeout((()=>{H.value=!0}),100)})(l,t.name)),["stop"])}," - ",8,["onClick"]),[[e.vShow,Ee.value]]),e.createElementVNode("view",{style:e.normalizeStyle({animationDelay:`-${.1*l}s`}),class:e.normalizeClass(Ee.value?"super-end-items-img-father-active":"super-end-items-img-father")},[e.createElementVNode("image",{class:"super-end-items-img",src:t.url},null,8,["src"])],6),e.createElementVNode("view",{class:"super-end-items-font"},e.toDisplayString(t.name),1)],36)])))),128))])],8,["scroll-left"])])])]),e.createElementVNode("view",{class:"doctorsay-container-items"},[e.createElementVNode("view",{class:"doctorsay-container-up"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(F.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>(e=>{A.value=e,g.value=h.value[e].children,L.value=999})(l)},[e.createElementVNode("view",{class:"doctorsay-container-card",style:e.normalizeStyle(l===A.value?{background:"linear-gradient(to right bottom, #00c9ff, #0076ff)"}:{})},[e.createElementVNode("image",{class:"doctorsay-container-card-img",src:l===A.value?t.targetUrl:t.url},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(l===A.value?"doctorsay-container-card-font-dark":"doctorsay-container-card-font")},e.toDisplayString(t.name),3)],4)],8,["onClick"])))),128)),e.createElementVNode("view",null,[e.createElementVNode("view",{class:"doctorsay-container-card",style:{background:"linear-gradient(135deg, #01e7be 0%, #0080dd 100%)"}},[e.createElementVNode("image",{class:"doctorsay-container-card-img",src:"/static/index/shexiang.png"}),e.createElementVNode("view",{class:"doctorsay-container-card-font-dark"}," 监控 ")])])]),e.createElementVNode("view",{class:"doctorsay-container-down"},[e.createElementVNode("view",{class:"doctorsay-top"},[e.createElementVNode("view",{class:"doctorsay-top-gun"}),e.createElementVNode("view",{class:"doctorsay-top-font"},"服务类型")]),e.createElementVNode("scroll-view",{"scroll-y":t.canmove,class:"doctorsay-container-scroll",onScroll:se},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"doctorsay-container-button",onClick:e=>L.value=l,onTouchstart:e=>((e,t,l)=>{p.value=z.value,ae.value=!1,me.value=Math.floor(l.touches[0].pageX),ue.value=Math.floor(l.touches[0].pageY),re.value=setTimeout((()=>{if(pe.value=[],oe.value)return;let l=-1,a=-1;Ae.value.forEach(((t,i)=>{t.children.forEach(((t,n)=>{t.typeName===e.title&&t.directiveName&&(pe.value.push(i),l=n),t.directiveName&&n>a&&(a=n)}))})),pe.value.length?ge.value=l:ge.value=a+1,de.value=!0,L.value=t,Be.value=[-1,-1],ve.value=!0,ie.value=[],uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((e=>{e.forEach((e=>{e.left>100&&e.left<900&&e.top<570&&e.top>140&&ie.value.push(e)}))})).exec(),O("savename",e.title,ie.value)}),200)})(t,l,e),onTouchmove:Ne,onTouchend:ye},[e.createElementVNode("text",{class:e.normalizeClass(L.value===l?"doctorsay-container-text-target":"doctorsay-container-text"),style:e.normalizeStyle({backgroundColor:t.color?t.color:"",...de.value?{}:{width:"250rpx",height:"75rpx",fontSize:"30rpx",borderRadius:"25rpx"}})},e.toDisplayString(t.title),7),e.withDirectives(e.createElementVNode("image",{class:"doctorsay-container-button-uplight",style:e.normalizeStyle(de.value?{}:{top:"30rpx"}),src:"/static/index/cardicons/uplight.png"},null,12,["src"]),[[e.vShow,L.value===l]])],40,["onClick","onTouchstart"])])))),128))],40,["scroll-y"])])])]),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay",onClick:a[4]||(a[4]=e=>{f.value=!1,J.value.index0=999,K.value=-1})},[e.createElementVNode("view",{class:"popup-overlay-content",style:e.normalizeStyle({top:2*Y.value-350+"rpx",left:2*W.value-780+"rpx",opacity:y.value?1:0,backgroundColor:"日常"===(null==(n=null==(i=Ae.value[J.value.index0])?void 0:i.children[J.value.index1])?void 0:n.type)?"#fffcf6":"rgb(246, 244, 254)"}),onClick:a[3]||(a[3]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"},e.toDisplayString(null==(o=null==(r=Ae.value[J.value.index0])?void 0:r.children[J.value.index1])?void 0:o.value),1)]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],4)],512),[[e.vShow,f.value]]),N.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-song",onClick:a[11]||(a[11]=e=>N.value=!1)},[e.createElementVNode("view",{class:"popup-song-contain",style:e.normalizeStyle({opacity:x.value?1:0}),onClick:a[10]||(a[10]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-song-father"},[e.createElementVNode("image",{class:"shu-up-img",src:"/static/index/cheng.png"}),e.createElementVNode("view",{class:"shu-up-font"},[e.createElementVNode("view",{class:""}," 服务时段:"+e.toDisplayString(Te.value.time+":00"),1),e.createElementVNode("view",{style:{"margin-left":"30rpx"}}," 护理时长:10分钟 ")]),e.createElementVNode("view",{class:"shu-container-left"},[e.createElementVNode("view",{class:"shu-container-left-gun"}),e.createElementVNode("view",{class:"shu-container-left-font"},"服务指令")]),e.createElementVNode("view",{class:"arrayindex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Te.value.array,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{style:{position:"relative","box-shadow":"10rpx 10rpx 20rpx rgba(105, 129, 178, 0.4)"},class:e.normalizeClass(De.value.op.index[2]===l?"arrayindex-one-target":"arrayindex-one"),onClick:e=>Se(l,t)},[e.withDirectives(e.createElementVNode("image",{class:"ri-img",src:De.value.op.index[2]!==l?"/static/index/ridark.png":"/static/index/ri.png"},null,8,["src"]),[[e.vShow,"日常护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"ri-img",src:De.value.op.index[2]==l?"/static/index/zhoudark.png":"/static/index/zhou.png"},null,8,["src"]),[[e.vShow,"周期护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"ri-img",src:De.value.op.index[2]==l?"/static/index/jidark.png":"/static/index/ji.png"},null,8,["src"]),[[e.vShow,"即时护理"===t.cycleType]]),e.createTextVNode(" "+e.toDisplayString(t.relName),1)],10,["onClick"])])))),128))]),e.withDirectives(e.createElementVNode("view",{class:"shu-container-left",style:{"margin-top":"50rpx"}},[e.createElementVNode("view",{class:"shu-container-left-gun"}),e.createElementVNode("view",{class:"shu-container-left-font"},"开始分钟")],512),[[e.vShow,2!=Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"time-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(s,((t,l)=>e.createElementVNode("view",{key:l},[e.withDirectives(e.createElementVNode("view",{class:"time-one-hui"},e.toDisplayString(t),513),[[e.vShow,Number(t)>=50]]),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(De.value.startTime===t?"time-one-target":"time-one"),onClick:e=>(e=>{De.value.startTime==e?De.value.startTime="":De.value.startTime=e})(t)},e.toDisplayString(t),11,["onClick"]),[[e.vShow,Number(t)<50]])]))),64))],512),[[e.vShow,2!=Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"shu-container-left",style:{"margin-top":"50rpx"}},[e.createElementVNode("view",{class:"shu-container-left-gun"}),e.createElementVNode("view",{class:"shu-container-left-font"},"周期类型")],512),[[e.vShow,1==Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"radio-father"},[e.createElementVNode("view",{class:e.normalizeClass(u.value?"radio-circle-target":"radio-circle"),onClick:a[5]||(a[5]=e=>{u.value=!0,De.value.monthTime=""})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[6]||(a[6]=e=>{u.value=!0,De.value.monthTime=""})},"每周"),e.createElementVNode("view",{class:e.normalizeClass(u.value?"radio-circle":"radio-circle-target"),onClick:a[7]||(a[7]=e=>{u.value=!1,De.value.weekTime=""})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[8]||(a[8]=e=>{u.value=!1,De.value.weekTime=""})},"每月")],512),[[e.vShow,1==Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"week-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(d,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(De.value.weekTime===t?"week-one-target":"week-one"),onClick:e=>(e=>{De.value.weekTime==e?De.value.weekTime="":De.value.weekTime=e})(t)},e.toDisplayString(t),11,["onClick"])]))),64))],512),[[e.vShow,u.value&&1==Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"month-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(m),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(De.value.monthTime===t?"month-one-target":"month-one"),onClick:e=>(e=>{De.value.monthTime==e?De.value.monthTime="":De.value.monthTime=e})(t)},e.toDisplayString(t),11,["onClick"])])))),128))],512),[[e.vShow,!u.value&&1==Ce.value]]),e.createElementVNode("view",{class:"button-father"},[e.createElementVNode("view",{style:{display:"flex"}},[e.withDirectives(e.createElementVNode("view",{class:"button-father-right",onClick:ze}," 确定 ",512),[[e.vShow,fe()]]),e.withDirectives(e.createElementVNode("view",{class:"button-father-wrong"}," 确定 ",512),[[e.vShow,!fe()]]),e.createElementVNode("view",{class:"button-father-wrong",onClick:a[9]||(a[9]=e=>N.value=!1),style:{"margin-left":"20rpx"}}," 取消 ")])])])],4)])):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{class:"popup-delete",onClick:a[15]||(a[15]=e=>E.value=!1)},[e.createElementVNode("view",{class:"popup-delete-content",style:e.normalizeStyle({opacity:b.value?1:0}),onClick:a[14]||(a[14]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("image",{class:"popup-delete-img",src:T}),e.createElementVNode("view",{class:"popup-delete-text"}," 确定要删除 "+e.toDisplayString(V.value)+" 吗? ",1),e.createElementVNode("view",{class:"popup-delete-button"},[e.createElementVNode("view",{class:"popup-delete-button-right",onClick:a[12]||(a[12]=e=>E.value=!1)}," 取消 "),e.createElementVNode("view",{class:"popup-delete-button-left",onClick:a[13]||(a[13]=e=>((e,t)=>{Ae.value[e].children[t]={directiveName:""},f.value=!1,J.value.index0=999,J.value.index1=999;let l=[],a=0;Ae.value.forEach(((e,t)=>{l=[],a=e.children.length,e.children.forEach(((e,t)=>{null!==e.directiveName&&""!==e.directiveName&&void 0!==e.directiveName||Ae.value.every((e=>{const l=e.children[t];return void 0===l||null===l.directiveName||""===l.directiveName||void 0===l.directiveName}))&&l.push(t)}))})),a>4&&l.length>1?Ae.value.forEach(((e,t)=>{e.children.splice(l[0],1)})):Ae.value.forEach(((e,t)=>{e.children.splice(l[0],1),e.children.push({directiveName:""})})),E.value=!1,_e()})(G.value[0],G.value[1]))}," 确定 ")])],4)],512),[[e.vShow,E.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-delete",onClick:a[19]||(a[19]=e=>Z.value=!1)},[e.createElementVNode("view",{class:"popup-delete-content",style:e.normalizeStyle({opacity:H.value?1:0}),onClick:a[18]||(a[18]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("image",{class:"popup-delete-img",src:T}),e.createElementVNode("view",{class:"popup-delete-text"}," 确定要删除 "+e.toDisplayString(V.value)+" 吗? ",1),e.createElementVNode("view",{class:"popup-delete-button"},[e.createElementVNode("view",{class:"popup-delete-button-right",onClick:a[16]||(a[16]=e=>Z.value=!1)}," 取消 "),e.createElementVNode("view",{class:"popup-delete-button-left",onClick:a[17]||(a[17]=e=>{c.value.splice(X.value,1),Z.value=!1})}," 确定 ")])],4)],512),[[e.vShow,Z.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-share",onClick:a[21]||(a[21]=e=>ee.value=!1)},[e.createElementVNode("view",{class:"popup-share-content",style:e.normalizeStyle({opacity:H.value?1:0}),onClick:a[20]||(a[20]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-share-title"},[e.createTextVNode(" 护理日程分享 "),e.createElementVNode("image",{class:"popup-share-img",src:D})]),e.createElementVNode("view",{class:"popup-share-upcontent"},[e.createElementVNode("view",{class:"popup-share-font"},"久泰护理日程分享测试")]),e.createElementVNode("view",{class:"popup-share-gray"}),e.createElementVNode("view",{class:"popup-share-downcontent"},[e.createElementVNode("view",{class:"popup-share-downcontent-left"},[e.createElementVNode("image",{class:"popup-downcontent-img",src:D}),e.createElementVNode("view",{class:"popup-downcontent-font"},"久泰护理")]),e.createElementVNode("view",{class:"popup-share-downcontent-button",onClick:le}," 分享 ")])],4)],512),[[e.vShow,ee.value]])],4)}}}),[["__scopeId","data-v-81c0d68b"]]),B="/static/index/ku.png",z="/static/index/ren.png",_="/static/index/tu.png",I=[{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706886",title:"协助喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604232524795905",title:"鼻饲喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604428667228162",title:"注射器/吸管喂药",tagName:"头部,大体重"}],levle:"2",title:"协助喂药",key:"1900114812020310017",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605892869394433",title:"一级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606105021485058",title:"二级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606339931869185",title:"三级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606614344208386",title:"一级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606869953482753",title:"二级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607023431454722",title:"三级压疮防护",tagName:"大体重"}],levle:"2",title:"压疮防护",key:"1900115034452639746",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706887",title:"床椅转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706888",title:"床椅转移",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605073730211842",title:"床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605223185846273",title:"床椅转移",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605365393723393",title:"协助床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605496071458818",title:"协助床椅转移",tagName:null}],levle:"2",title:"床椅转移",key:"1902248363784159233",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607507626102786",title:"轮椅防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607677415723010",title:"轮椅防护",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902607817589362689",title:"轮椅防护",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902608061588803585",title:"轮椅防护",tagName:"大体重"}],levle:"2",title:"轮椅防护",key:"1902280900178886657",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608564582322178",title:"约束位按摩",tagName:"手"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608974609092610",title:"约束位按摩",tagName:"足"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618507855237121",title:"约束位按摩",tagName:"全"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618751548493825",title:"防护网约束",tagName:null}],levle:"2",title:"约束防护",key:"1902280933364219906",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620309090701314",title:"协助行走",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620486044192769",title:"放松按摩",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902625161569079298",title:"心灵慰藉",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902625402468929537",title:"狂躁",tagName:null}],levle:"2",title:"按摩保健",key:"1902564031454744577",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902625872432304130",title:"准备衣物",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626005538541569",title:"协助更换",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626664711163905",title:"肢体障碍",tagName:"半侧"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626800510144513",title:"肢体障碍",tagName:"全身"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627064688381953",title:"准备衣物",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627280716009474",title:"协助更换",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627416598876161",title:"肢体障碍",tagName:"半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627522404388866",title:"肢体障碍",tagName:"全身"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902627711806574593",title:"协助更换",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628058591629313",title:"肢体障碍",tagName:"半侧,大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628650718302209",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628837725540354",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628966847188993",title:"肢体障碍",tagName:"大体重,半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902629129879785474",title:"协助更换",tagName:"大体重"}],levle:"2",title:"更换衣物",key:"1902564088417587201",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629344456183809",title:"坐起",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629492301205506",title:"躺下",tagName:null}],levle:"2",title:"调整坐卧",key:"1902564199830884354",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902630862769065985",title:"遗体净身",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902631162275926017",title:"遗体穿衣",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631422431825921",title:"遗体转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631602463936514",title:"床位消毒",tagName:null}],levle:"2",title:"殡仪服务",key:"1902564263743688705",parentId:"1900112597427793921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902631830441136129",title:"更换床上用品",tagName:"全部"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632063828987905",title:"隔尿褥子更换",tagName:null}],levle:"2",title:"更换床上用品",key:"1902564446648897538",parentId:"1900112597427793921"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632288270389250",title:"临终护理",tagName:null}],levle:"2",title:"临终服务",key:"1902564503783706625",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"40",id:"1902632678701371393",title:"制氧机吸氧",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902632799853842433",title:"制氧机维护",tagName:null}],levle:"2",title:"制氧机应用",key:"1902564586101116930",parentId:"1900112597427793921"}],levle:"1",title:"1 日常照料",key:"1900112597427793921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900376187661553665",title:"准备洁具",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900420873478553602",title:"棉球清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706881",title:"协助清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706885",title:"义齿清洁",tagName:"口腔"}],levle:"2",title:"口腔清洁",key:"1902597070889127938",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902636771540963329",title:"准备洁具",tagName:"头部"},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637623425077250",title:"协助洗头",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637985234128898",title:"卧式洗头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902638122949906433",title:"擦头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902638304739430401",title:"刮头",tagName:null}],levle:"2",title:"头部清洁",key:"1902597497344987137",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902641763073101826",title:"准备洁具",tagName:"面部"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642254465175553",title:"协助洁面",tagName:null}],levle:"2",title:"面部清洁",key:"1902597651405967361",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642508145070081",title:"准备洁具",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642672796667905",title:"协助清洁",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642822885642242",title:"卧床清洁",tagName:"躯干"}],levle:"2",title:"躯干清洁",key:"1902597718082818050",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643318811758594",title:"准备洁具",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643483320750082",title:"协助清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643630888947713",title:"卧床清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643837525528578",title:"肌张力高",tagName:"清洁"}],levle:"2",title:"四肢清洁",key:"1902597811565465601",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645148199391234",title:"会阴清洁",tagName:"男"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645295457210369",title:"会阴清洁",tagName:"女"}],levle:"2",title:"会阴清洁",key:"1902597873964126209",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645493185089537",title:"肛周清洁",tagName:null}],levle:"2",title:"肛周清洁",key:"1902597930020999170",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645693211447298",title:"洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647316134465538",title:"泡手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647529817477122",title:"准备洁具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647673212342274",title:"协助洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647905878773762",title:"强直屈曲洗手",tagName:null}],levle:"2",title:"手清洁",key:"1902597991698239489",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648101203316737",title:"泡脚",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648239091060737",title:"卧式泡脚",tagName:null}],levle:"2",title:"足清洁",key:"1902598178588037121",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648426383511553",title:"修睫毛",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648548777496577",title:"剃须",tagName:null}],levle:"2",title:"剃须",key:"1902598258573414401",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648962444922882",title:"角质增生",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649132536532994",title:"灰指甲",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649302149992449",title:"正常",tagName:"修甲"}],levle:"2",title:"修甲",key:"1902598354606198785",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902649683919736834",title:"理发",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"25",id:"1902649860344745985",title:"理发",tagName:"颅骨缺损"}],levle:"2",title:"理发",key:"1902598400382832642",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902650121280786434",title:"床上沐浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650408884211713",title:"深度清洁",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650763722330113",title:"浴间洗浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"30",id:"1902651229122301954",title:"床上沐浴",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651366317985794",title:"深度清洁",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651555363655682",title:"浴间洗浴",tagName:"大体重"}],levle:"2",title:"沐浴",key:"1902598454782955522",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651778777452545",title:"内套管清洁",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651924047171586",title:"更换气切纱布",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"10",id:"1902652055928672258",title:"更换气切纱布",tagName:null}],levle:"2",title:"气切消毒",key:"1902598509522817026",parentId:"1900112615777873921"}],levle:"1",title:"2 清洁照料",key:"1900112615777873921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898057679966209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898202668666881",title:"协助进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898339931459586",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898472584712194",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898590658564097",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898719952179201",title:"准备餐具",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898979948695554",title:"协助进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899086840532993",title:"协助进餐",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899214838108162",title:"鼻胃管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899325014085633",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899587028062210",title:"食物加工",tagName:null}],levle:"2",title:"加餐饮食",key:"1902596129720864770",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281139677839362",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902281522340970498",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281654100836354",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281870434648066",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902654960639381506",title:"鼻肠管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902655101874180097",title:"轮椅进餐",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902892199009030145",title:"轮椅进餐",tagName:null}],levle:"2",title:"正餐饮食",key:"1902601263850950657",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893231608926209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893551978254337",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893716466274306",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894369850757122",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894528533860354",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"辅餐饮食",key:"1902601382595891202",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894832176304129",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894954117304322",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895077522116609",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895233407619073",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895569912434689",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"果汁饮食",key:"1902601427168759809",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895878508351489",title:"准备水杯",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895984053817346",title:"协助饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896136835534850",title:"协助饮水",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896508421509122",title:"鼻胃管饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896636553302017",title:"鼻肠管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902896855802155010",title:"准备水杯",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897018344017921",title:"协助饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897464936730626",title:"协助饮水",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897675813752834",title:"鼻胃管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897803417063426",title:"鼻肠管饮水",tagName:null}],levle:"2",title:"饮水饮食",key:"1902601487625457665",parentId:"1902280495747317762"}],levle:"1",title:"3 饮食照料",key:"1902280495747317762"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902653177363927041",title:"巡视",tagName:null}],levle:"2",title:"巡视",key:"1902564741860790273",parentId:"1902560466095017986"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653325481578497",title:"防坠床",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653497066360833",title:"被褥调整",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653650917625857",title:"睡姿调整",tagName:null}],levle:"2",title:"体位调整",key:"1902564818838851585",parentId:"1902560466095017986"}],levle:"1",title:"4 睡眠照料",key:"1902560466095017986"},{children:[{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904277308510210",title:"更换尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904458779267073",title:"更换隔尿垫",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905631242424322",title:"使用尿盆",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905824973131777",title:"使用尿壶",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906220483416065",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906459051233281",title:"坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906610562076674",title:"留置尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906783325458434",title:"更换纸尿裤",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908406344945665",title:"热敷抚触排尿",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908523827400705",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909645401067522",title:"更换尿片",tagName:null}],levle:"2",title:"小便",key:"1902596314152800257",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909835331735554",title:"床上排便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910002671882242",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910156154048514",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910361008050178",title:"人工取便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910524623654913",title:"造瘘袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910700176248834",title:"坐便椅",tagName:null}],levle:"2",title:"大便",key:"1902596399423000577",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910899565072385",title:"口腔吸痰",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911047405899778",title:"气切吸痰",tagName:null}],levle:"2",title:"吸痰",key:"1902596461238652930",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911232974491650",title:"呕吐",tagName:null}],levle:"2",title:"呕吐",key:"1902596886771765250",parentId:"1902560510768549889"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902911378349068290",title:"腹腔引流护理",tagName:null}],levle:"2",title:"引流",key:"1902596940366581762",parentId:"1902560510768549889"}],levle:"1",title:"5 排泄照料",key:"1902560510768549889"}],U=s(e.defineComponent({__name:"joysticknew",props:{getblue:{type:Boolean,default:!1},movebottom:{type:Number,default:0},moveleft:{type:Number,default:0},pao:{type:Boolean,default:!0},notext:{type:Boolean,default:!1}},emits:["movecard"],setup(t,{emit:l}){const a=l,i=e.ref(-1);let n=null,r=null,o=!1;const c=e.ref(-1),s=e.reactive({x:0,y:0}),d=e.ref(!1),m=e.ref(!1),u=e.ref(0),v=uni.upx2px(175),p=uni.upx2px(350);uni.upx2px(-50);const g=uni.upx2px(100),w=uni.getSystemInfoSync().windowHeight-g-p,h=t,f=e.ref(!1),N=e.ref(0);function y(e,t){if(!o){if(b(),i.value=e,a("movecard",e),(null==t?void 0:t.touches)&&t.touches.length){const e=t.touches[0];T(e.pageX,e.pageY)}m.value=!1,u.value++,c.value=e,setTimeout((()=>{c.value=-1}),300),setTimeout((()=>{m.value=!0}),16),n=setTimeout((()=>{i.value=-1,n=null}),300)}}function x(){m.value=!1}function E(e,t){k(),o=!0,d.value=!0,c.value=e;const l=((null==t?void 0:t.touches)||[])[0];l&&T(l.pageX,l.pageY),i.value=e,a("movecard",e),r=setInterval((()=>{i.value=e,a("movecard",e)}),500)}function V(){b(),k(),o=!1,d.value=!1,i.value=-1,c.value=-1}function b(){n&&(clearTimeout(n),n=null)}function k(){r&&(clearInterval(r),r=null)}function T(e,t){let l=e,a=t-w-50+h.movebottom/2;const i=l-v,n=a-v;if(Math.sqrt(i*i+n*n)>v){const e=Math.atan2(n,i);l=v+v*Math.cos(e),a=v+v*Math.sin(e)}s.x=l,s.y=a}function D(e){var t;if(!o)return;const l=((null==(t=e.detail)?void 0:t.touches)||e.touches||[])[0];l&&T(l.pageX,l.pageY)}return e.ref(0),e.watch((()=>h.getblue),(e=>{})),e.onBeforeUnmount((()=>{})),(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"move-circle",style:e.normalizeStyle({bottom:`${t.movebottom}rpx`,left:`${t.moveleft}rpx`}),onTouchmove:D,onTouchend:V,onTouchcancel:V},[d.value&&t.pao?(e.openBlock(),e.createElementBlock("view",{key:0,class:"light-shadow ripple-loop",style:e.normalizeStyle({left:s.x+"px",top:s.y+"px",transform:"translate(-50%, -50%)"})},null,4)):e.createCommentVNode("",!0),m.value&&t.pao?(e.openBlock(),e.createElementBlock("view",{key:u.value,class:"light-shadow ripple-once",style:e.normalizeStyle({left:s.x+"px",top:s.y+"px",transform:"translate(-50%, -50%)"}),onAnimationend:x},null,36)):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("image",{src:t.notext?"/static/index/newruler/suere.png":"/static/index/newruler/direction_1.png",class:"move-circle-all"},null,8,["src"]),[[e.vShow,-1==c.value||4==c.value]]),e.withDirectives(e.createElementVNode("image",{src:t.notext?"/static/index/newruler/sure_2.png":"/static/index/newruler/direction_3.png",class:"move-circle-all"},null,8,["src"]),[[e.vShow,3==c.value]]),e.withDirectives(e.createElementVNode("image",{src:t.notext?"/static/index/newruler/sure_4.png":"/static/index/newruler/direction_5.png",class:"move-circle-all"},null,8,["src"]),[[e.vShow,2==c.value]]),e.withDirectives(e.createElementVNode("image",{src:t.notext?"/static/index/newruler/sure_3.png":"/static/index/newruler/direction_4.png",class:"move-circle-all"},null,8,["src"]),[[e.vShow,0==c.value]]),e.withDirectives(e.createElementVNode("image",{src:t.notext?"/static/index/newruler/sure_1.png":"/static/index/newruler/direction_2.png",class:"move-circle-all"},null,8,["src"]),[[e.vShow,1==c.value]]),f.value?(e.openBlock(),e.createElementBlock("view",{class:"pulse-circle",key:N.value})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"click-box-top",onClick:a[0]||(a[0]=e=>y(0,e)),onLongpress:a[1]||(a[1]=e=>E(0,e))},null,32),e.createElementVNode("view",{class:"click-box-left",onClick:a[2]||(a[2]=e=>y(3,e)),onLongpress:a[3]||(a[3]=e=>E(3,e))},null,32),e.createElementVNode("view",{class:"click-box-bottom",onClick:a[4]||(a[4]=e=>y(2,e)),onLongpress:a[5]||(a[5]=e=>E(2,e))},null,32),e.createElementVNode("view",{class:"click-box-right",onClick:a[6]||(a[6]=e=>y(1,e)),onLongpress:a[7]||(a[7]=e=>E(1,e))},null,32),e.createElementVNode("view",{class:"click-box-center",onClick:a[8]||(a[8]=e=>y(4,e)),onLongpress:a[9]||(a[9]=e=>E(4,e))},null,32)],36))}}),[["__scopeId","data-v-3df4b966"]]),M=s(e.defineComponent({__name:"index",props:{isshow:{type:Boolean,required:!0},darkFans:{type:Boolean,required:!0},canmove:{type:Boolean,required:!0},liang:{type:Object},isold:{type:Boolean,required:!0}},emits:["darkchange","savename","saveruler","closename","changefangkuang","changeold"],setup(t,{expose:a,emit:i}){const o=t;e.watch((()=>o.isold),(()=>{o.isold&&(te.value.index0=9,te.value.index1=0,Oe(),h.value=1,f.value=1,e.nextTick((()=>{f.value=0,h.value=605})))})),e.watch((()=>o.canmove),(()=>{ye.value=!1})),e.watch((()=>o.isshow),((t,l)=>{t!==l&&(ye.value=!1,ve.value=!1,Ie.value?Ie.value--:(te.value.index0=9,te.value.index1=0,Oe(),h.value=1,f.value=1,e.nextTick((()=>{f.value=0,h.value=605}))))}));const c=e.ref([{name:"纸尿裤",url:"/static/index/niao.png",target:"#fff",id:-1},{name:"呕吐",url:"/static/index/tu.png",target:"#fff",id:-1},{name:"吸痰",url:"/static/index/ou.png",target:"#fff",id:-1},{name:"大便",url:"/static/index/baba.png",target:"#fff",id:-1},{name:"纸尿裤",url:"/static/index/niao.png",target:"#fff",id:-1},{name:"呕吐",url:"/static/index/tu.png",target:"#fff",id:-1},{name:"吸痰",url:"/static/index/ou.png",target:"#fff",id:-1},{name:"大便",url:"/static/index/baba.png",target:"#fff",id:-1}]),s=["狂躁","正常","大体重","口腔","小体重","头部","面部","躯干","四肢","修甲","颅骨缺损"],d=["周一","周二","周三","周四","周五","周六","周日"],m=Array.from({length:31},((e,t)=>(t+1).toString().padStart(2,"0"))),u=e.ref(!0),v=e.ref(!1),p=e.ref(0),g=e.ref(0),w=e.ref(0),h=e.ref(678),f=e.ref(0),N=e.ref();e.ref([]);const y=e.ref(!1),x=e.ref([]),E=e.ref(!1);e.ref(!1);const V=e.ref(!1);e.ref(!1),e.ref(!1),e.ref(""),e.ref(!1);const b=e.ref(!1);e.ref("");const k=e.ref(!1);e.ref(0),e.ref(0),e.ref(6),e.ref(11),e.ref(0),e.ref(3);const T=e.ref(!1);e.onMounted((()=>{}));const C=e.ref(0);const S=()=>{let e=JSON.parse(JSON.stringify(Fe.value[oe.value.index0].children[oe.value.index1]));be.value=[te.value.index0,te.value.index1];let t=Fe.value[oe.value.index0].children[oe.value.index1].typeName;Fe.value[oe.value.index0].children[oe.value.index1]={directiveName:"",typeName:t};let l=Fe.value[be.value[0]].children[be.value[1]].typeName;Fe.value[be.value[0]].children[be.value[1]]=e,Fe.value[be.value[0]].children[be.value[1]].typeName=l;let a=Fe.value[be.value[0]].children[be.value[1]].startTime,i=Fe.value[be.value[0]].children[be.value[1]].endTime,n=Fe.value[be.value[0]].positioning;const r=a.split(":")[1],o=i.split(":")[1];let c=Number(o)-Number(r),s=l,d=Number(s)+c;Fe.value[be.value[0]].children[be.value[1]].startTime=n+":"+s.padStart(2,"0"),Fe.value[be.value[0]].children[be.value[1]].endTime=n+":"+String(d%60).padStart(2,"0"),oe.value.index0=-1,oe.value.index1=-1,T.value=!1;let m={index0:te.value.index0,index1:te.value.index1};Ue(m)},M=()=>{P.value=!1,T.value?S():Fe.value[te.value.index0].children[te.value.index1].directiveName&&(oe.value.index0=te.value.index0,oe.value.index1=te.value.index1,T.value=!0)};e.ref(!0),e.ref(!1);const F=e=>{switch(P.value=!1,e){case 0:te.value.index1&&(te.value.index1--,Oe());break;case 1:if(23==te.value.index0)return;te.value.index0++,Oe();break;case 2:if(11==te.value.index1)return;te.value.index1++,Oe();break;case 3:if(0==te.value.index0)return;te.value.index0--,Oe()}},$=e.ref(""),A=e.ref(-1),L=e.ref(""),O=e.ref(-1),P=e.ref(!1),j=()=>{Fe.value[te.value.index0].children[te.value.index1].directiveName&&(P.value?(P.value=!1,ge(te.value.index0,te.value.index1)):P.value=!0)};function q(e,t){return 2*function(e,t){const l=55.9898*e+78.233*t;return Math.abs(43758.5453*Math.sin(l))%1}(e,t)}e.ref(!1),e.ref(0);const R=e.ref(0),W=e.ref(0);function Y(e){let t=e.detail.scrollTop;R.value=e.detail.scrollTop;let l=parseFloat(t.toFixed(2));W.value=l}const J=e.ref(0);function X(e){J.value=e.detail.scrollLeft}e.ref(!0);const Z=(e,t,l)=>"日常"===e.cycleType?oe.value.index0===t&&oe.value.index1===l?"title-time-border-yellow-active-transparent":ve.value?"title-time-border-yellow-active":"title-time-border-yellow":e.cycleType?oe.value.index0===t&&oe.value.index1===l?"title-time-border-pouple-active-transparent":ve.value?"title-time-border-pouple-active":"title-time-border-pouple":"title-time-border",H=e.ref([{url:"/static/index/firstTags/30.png",targetUrl:"/static/index/firstTags/21.png",name:"日常"},{url:"/static/index/firstTags/10.png",targetUrl:"/static/index/firstTags/99.png",name:"清洁"},{url:"/static/index/firstTags/40.png",targetUrl:"/static/index/firstTags/31.png",name:"饮食"},{url:"/static/index/firstTags/00.png",targetUrl:"/static/index/firstTags/01.png",name:"睡眠"},{url:"/static/index/firstTags/20.png",targetUrl:"/static/index/firstTags/11.png",name:"排泻"},{url:"/static/index/firstTags/50.png",targetUrl:"/static/index/firstTags/41.png",name:"影像"}]),G=e.ref(0),Q=e.ref(0),K=e.ref(0);e.ref(!1),e.ref([]);const ee=i;e.ref(!1);const te=e.ref({index0:9,index1:0});e.ref(0),e.ref([]);const le=e.ref(null);e.ref({});const ae=e.ref(0),ie=e.ref(0),ne=e.ref(0),re=e.ref(0),oe=e.ref({index0:999,index1:999,typeName:""});e.ref(-1),e.ref(!1);const ce=e.ref(!1),se=e.ref(-1),de=e.ref(!1),me=()=>{de.value=!0,ce.value=!1,setTimeout((()=>{ce.value=!0}),100)},ue=()=>{uni.share({provider:"weixin",scene:"WXSceneSession",type:0,href:"http://192.168.2.31:3101/daytoday",title:"护理日程分享",summary:"九泰护理日程测试",imageUrl:"https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/uni@2x.png",success:function(e){l("log","at component/rightItemssecondrelnew/index.vue:943","success:")},fail:function(e){l("log","at component/rightItemssecondrelnew/index.vue:946","fail:")}})},ve=e.ref(!1);e.ref([]);const pe=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-ae.value)>0||Math.abs(l-ie.value)>0)&&le.value&&(clearTimeout(le.value),le.value=null)},ge=(e,t)=>{let l=Fe.value[e].children[t].typeName;Fe.value[e].children[t]={directiveName:"",typeName:l}};e.ref(null),e.ref(!1),e.ref(!1);const we=e.ref(0),he=e.ref(0),fe=e.ref(!1);e.ref(""),e.ref("");const Ne=e.ref(null),ye=e.ref(!1),xe=e=>{we.value=Math.floor(e.touches[0].pageX),he.value=Math.floor(e.touches[0].pageY),Ne.value=setTimeout((()=>{ye.value=!0}),500)},Ee=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-we.value)>0||Math.abs(l-he.value)>0)&&Ne.value&&(clearTimeout(Ne.value),Ne.value=null)},Ve=()=>{Ne.value&&(clearTimeout(Ne.value),Ne.value=null)};e.ref({time:"",minute:"",array:[]}),e.ref({op:{name:"",index:[-1,-1,-1]},startTime:"",weekTimeNumber:-1,monthTimeNumber:-1,monthTime:"",weekTime:""}),e.ref(0);const be=e.ref([-1,-1]);e.ref(null);const ke=()=>{k.value=!1,b.value=!0,setTimeout((()=>{k.value=!0}),50)},Te=()=>{if(P.value)return P.value=!1,void ge(te.value.index0,te.value.index1);if(T.value)return void S();oe.value.index0=-1,oe.value.index1=-1,T.value=!1;let t=!1,a=x.value[G.value].children[Q.value].children[K.value];if("即时护理"===a.cycleType)return w.value=1,c.value.forEach(((e,l)=>{e.id===a.id&&(t=!0)})),void e.nextTick((()=>{t?(clearTimeout(Ce.value),y.value=!0,Ce.value=setTimeout((()=>{y.value=!1}),1e3)):(w.value=0,c.value.length&&"#00a8ff"===c.value[0].target&&(c.value[0].target="#fff",clearTimeout(De.value)),c.value.unshift({name:a.title,url:"/static/index/ou.png",target:"#00a8ff",id:a.id}),l("log","at component/rightItemssecondrelnew/index.vue:1188","!!!!",c.value),De.value=setTimeout((()=>{c.value[0].target="#fff"}),1500))}));if("周期护理"===a.cycleType&&v.value&&-1==A.value&&-1==O.value)return;if("周期护理"===a.cycleType&&!v.value)return void(v.value=!0);let i="";"日常护理"===a.cycleType?i="日常":(i=-1!==A.value?$.value:L.value+"号",v.value=!1,A.value=-1,O.value=-1,$.value="",L.value="");const n=Number(te.value.index0),r=Number(Fe.value[te.value.index0].children[te.value.index1].typeName),o=r+10,s=n+Math.floor(o/60),d=`${String(n)}:${String(r).padStart(2,"0")}`,m=`${String(s)}:${String(o%60).padStart(2,"0")}`;Fe.value[te.value.index0].children[te.value.index1].startTime=d,Fe.value[te.value.index0].children[te.value.index1].endTime=m;let u={directiveId:a.id,directiveName:a.title,startTime:d,endTime:m,positioning:te.value.index0.toString(),positioningLong:te.value.index1.toString(),tagName:a.tagName,cycleType:i,nuId:"1",customerId:"1",id:"",typeName:Fe.value[te.value.index0].children[te.value.index1].typeName};Fe.value[te.value.index0].children[te.value.index1]=u;let p={index0:te.value.index0,index1:te.value.index1};Ue(p),Se()},De=e.ref(null),Ce=e.ref(null),Se=()=>{Fe.value.forEach(((e,t)=>{e.children.forEach(((e,l)=>{let a="";if(e.directiveName||e.id)e.positioning=t,e.positioningLong=l;else{let i={};e.typeName&&(a=e.typeName),i=JSON.parse(JSON.stringify(Ae.value)),a&&(i.typeName=a),i.positioning=t,i.positioningLong=l}}))}))},Be=()=>{uni.setStorage({key:"myArray",data:Fe.value,success:function(){uni.navigateTo({url:"/pages/timeMatrix/indexnew"})}})},ze=e.ref({index0:-1,index1:-1}),_e=e.ref({index0:-1,index1:-1,current:-1,bordershow:!0}),Ie=e.ref(0),Ue=e=>{te.value.index0=e.index0,te.value.index1=e.index1,Oe(),_e.value.index0=e.index0,_e.value.index1=e.index1,ze.value.index0=_e.value.index0,ze.value.index1=_e.value.index1,_e.value.bordershow=!1,setTimeout((()=>{_e.value.index0=-1,_e.value.index1=-1,_e.value.current=-1}),400),setTimeout((()=>{_e.value.bordershow=!0,ze.value.index0=-1,ze.value.index1=-1}),1e3)},Me=["00","05","10","15","20","25","30","35","40","45","50","55"],Fe=e.ref(Array.from({length:24},((e,t)=>({positioning:t.toString(),children:Me.map((e=>({typeName:e,directiveName:""})))}))));function $e(e){Ie.value=3,Ue(e)}n((()=>{x.value=I,N.value=x.value[0].children,uni.$on("where",$e)})),r((()=>{uni.$off("where",$e)})),a({rulerMoveEnd:e=>{if(999!==o.liang.index0&&e.cycleType){be.value=[o.liang.index0,o.liang.index1];let t=Fe.value[oe.value.index0].children[oe.value.index1].typeName;Fe.value[oe.value.index0].children[oe.value.index1]={directiveName:"",typeName:t};let l=Fe.value[be.value[0]].children[be.value[1]].typeName;Fe.value[be.value[0]].children[be.value[1]]=e,Fe.value[be.value[0]].children[be.value[1]].typeName=l;let a=Fe.value[be.value[0]].children[be.value[1]].startTime,i=Fe.value[be.value[0]].children[be.value[1]].endTime,n=Fe.value[be.value[0]].positioning;const r=a.split(":")[1],c=i.split(":")[1];let s=Number(c)-Number(r),d=l,m=Number(d)+s;Fe.value[be.value[0]].children[be.value[1]].startTime=n+":"+d.padStart(2,"0"),Fe.value[be.value[0]].children[be.value[1]].endTime=n+":"+String(m%60).padStart(2,"0")}}}),e.ref({index0:999,index1:999});const Ae=e.ref({directiveId:"",directiveName:"",startTime:"",endTime:"",positioning:"",positioningLong:"",tagName:"",cycleType:"",nuId:"1",customerId:"1",id:"",typeName:""});function Le(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}function Oe(){if(te.value.index0>=0&&te.value.index0<=24&&te.value.index1>=0&&te.value.index1<=11){const e=201*(te.value.index0+.5),t=167*(te.value.index1-.5);h.value=e-702.5,f.value=t-240;const l=4824,a=1837;h.value=Math.max(0,Math.min(h.value,l-1405))/2,f.value=Math.max(0,Math.min(f.value,a-480))/2}}return(l,a)=>{var i,n,r,o;return e.openBlock(),e.createElementBlock("view",{class:"right-container",style:e.normalizeStyle(t.isshow?{opacity:"1"}:{opacity:"0"}),onClick:a[10]||(a[10]=e=>{ye.value=!1,ve.value=!1})},[e.createVNode(U,{onMovecard:F}),e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," ID:12345678 ",2),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," 名称:未命名01 ",2),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"right-icons-font-dark":"right-icons-font")},"王金福",2),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/face.png":"/static/index/undericons/facelight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/hand.png":"/static/index/undericons/handlight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/out.png":"/static/index/undericons/outlight.png"},null,8,["src"])]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button-wrong",onClick:a[0]||(a[0]=e=>{ee("changeold",0)})},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 拖动模式 ")]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button"},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 手柄模式 ")])]),e.createElementVNode("view",{class:"doctorsay-container-view"},[e.createElementVNode("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"doctorsay-container-title"},[e.createElementVNode("view",{class:"doctorsay-container-left"},[e.createElementVNode("view",{class:"doctorsay-container-left-gun"}),e.createElementVNode("view",{class:"doctorsay-container-left-font"},"护理流程"),e.createElementVNode("view",{class:"doctorsay-container-share",onClick:me}," 分享 "),e.createElementVNode("view",{class:"doctorsay-container-share"}," 立即生效 ")]),e.createElementVNode("view",{class:"doctorsay-container-right"},[e.createElementVNode("view",{class:"doctorsay-container-right-kuai-cheng"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"日常"),e.createElementVNode("view",{class:"doctorsay-container-right-kuai-zi"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"周期"),e.createElementVNode("view",{class:"doctorsay-container-juzhen",onClick:Be}," 预览 ")])]),e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"boom-title"},[e.createElementVNode("view",{class:"boom-title-left"}," 分 "),e.createElementVNode("view",{class:"boom-title-right"}," 时 ")]),e.createElementVNode("view",{class:"boom-father"},[e.createElementVNode("view",{class:"boom"},[e.createElementVNode("view",{style:e.normalizeStyle({marginTop:`-${2*W.value}rpx`})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Fe.value[0].children,((l,a)=>(e.openBlock(),e.createElementBlock("view",{key:a},[e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(se.value===a||t.liang.index1===a&&!t.canmove||oe.value.index1===a&&ve.value?"boom-son-target":"boom-son")},e.toDisplayString(l.typeName),3),[[e.vShow,l.typeName]])])))),128))],4)])]),e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("scroll-view",{style:{height:"920rpx",width:"100%"},"scroll-left":h.value,"scroll-x":"",onScroll:X,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex","box-shadow":"10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1)",width:"4824rpx",background:"linear-gradient(to right, #c4dbf4,#c9c2ef, #c6dcf3)"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Fe.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time"},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),1)])))),128))]),e.createElementVNode("view",{style:{display:"flex",height:"calc(100% - 80rpx)"}},[e.createElementVNode("scroll-view",{style:{height:"100%",width:"4824rpx"},"scroll-top":f.value,"scroll-y":t.canmove&&!ve.value,onScroll:Y,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Fe.value,((l,i)=>(e.openBlock(),e.createElementBlock("view",{key:i},[e.createElementVNode("view",{class:"super-card-time-und"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.children,((l,n)=>(e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:n},[e.createElementVNode("view",{class:e.normalizeClass(_e.value.index0===i&&_e.value.index1===n?_e.value.index1?"title-time-border-big":"title-time-border-big-top":"super-card-time-card"),style:e.normalizeStyle([_e.value.bordershow||ze.value.index0!==i||ze.value.index1!==n?{borderBottom:"1rpx solid transparent"}:{zIndex:999},{position:"relative"}]),id:`a${i}_${n}`,onClick:t=>((t,l,a,i)=>{t.directiveName&&(se.value=a,uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.left>100&&t.left<1067&&t.top<570&&t.top>140&&t.dataset.index0==l&&t.dataset.index1==a&&(t.left>100&&t.left<500?ne.value=Math.floor(t.left)+520:ne.value=Math.floor(t.left),t.top>140&&t.top<300?re.value=Math.floor(t.top)+250:re.value=Math.floor(t.top),await e.nextTick(),E.value=!0,V.value=!1,setTimeout((()=>{V.value=!0}),100))}))})).exec())})(l,i,n),onTouchstart:e=>{},onTouchmove:pe,onTouchend:a[1]||(a[1]=e=>(fe.value=!1,void(le.value&&(clearTimeout(le.value),le.value=null)))),"data-index0":i,"data-index1":n},[oe.value.index0===i&&oe.value.index1===n&&0==n?(e.openBlock(),e.createElementBlock("view",{key:0,class:"time-button-orange-spe"},[e.createTextVNode(" 请选择服务指令迁移的目标单元格 "),e.createElementVNode("view",{class:"under-button-three"})])):e.createCommentVNode("",!0),oe.value.index0===i&&oe.value.index1===n&&n?(e.openBlock(),e.createElementBlock("view",{key:1,class:"time-button-orange"},[e.createTextVNode(" 请选择服务指令迁移的目标单元格 "),e.createElementVNode("view",{class:"under-button-three"})])):e.createCommentVNode("",!0),te.value.index0==i&&te.value.index1==n&&0==n&&P.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"time-button-black-spe"},[e.createTextVNode(" 是否确认删除该服务指令 "),e.createElementVNode("view",{class:"under-button-three"})])):e.createCommentVNode("",!0),te.value.index0==i&&te.value.index1==n&&n&&P.value?(e.openBlock(),e.createElementBlock("view",{key:3,class:"time-button-black"},[e.createTextVNode(" 是否确认删除该服务指令 "),e.createElementVNode("view",{class:"under-button-three"})])):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{class:"title-time-blue"},[e.createElementVNode("image",{class:"title-time-blue-img",src:T.value?"/static/index/movemode/targetcheng.png":"/static/index/movemode/target.png"},null,8,["src"])],512),[[e.vShow,te.value.index0==i&&te.value.index1==n]]),e.createElementVNode("view",{class:e.normalizeClass(Z(l,i,n)),style:e.normalizeStyle([{"font-size":"30rpx",overflow:"hidden"},{animationDelay:`-${q(i,n).toFixed(2)}s`}])},[l.startTime?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"margin-top":"5rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"25rpx","margin-top":"20rpx"}},e.toDisplayString(l.startTime+"-"+l.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==l.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(l.cycleType),1)],512)),[[e.vShow,t.liang.index0!==i||t.liang.index1!==n||t.canmove]]):e.createCommentVNode("",!0),l.startTime?(e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font-rel"},e.toDisplayString(Le(l.directiveName)[0]),1)):e.createCommentVNode("",!0),l.startTime?(e.openBlock(),e.createElementBlock("view",{key:2,class:"title-time-items"},[e.createElementVNode("image",{class:"right-box-items-button",src:B}),e.createElementVNode("image",{class:"right-box-items-button",src:z})])):e.createCommentVNode("",!0)],6)],46,["id","onClick","onTouchstart","data-index0","data-index1"])])))),128))])])))),128))])],40,["scroll-top","scroll-y"])])],40,["scroll-left"]),e.createElementVNode("view",{class:"scroll-bottom-bgc"})]),e.createElementVNode("view",{class:"right-cards"},[e.createElementVNode("scroll-view",{"scroll-x":"",class:"scroll-box","scroll-left":w.value},[e.createElementVNode("view",{class:"right-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"right-box-item",onTouchstart:xe,onTouchmove:Ee,onTouchend:Ve,style:e.normalizeStyle(t.target?{background:t.target,transition:"all 1.5s ease-in-out"}:{transition:"all 1.5s ease-in-out"})},[e.createElementVNode("image",{class:"title-time-button",src:"/static/index/redbian.png"}),e.createElementVNode("view",{class:"title-time-font"}," 即时 "),e.createElementVNode("view",{style:e.normalizeStyle({animationDelay:`-${.1*l}s`}),class:e.normalizeClass(ye.value?"super-end-items-img-father-active":"super-end-items-img-father")},[e.createElementVNode("image",{class:"right-box-img",src:t.url},null,8,["src"])],6),e.createElementVNode("view",{class:"right-box-font"},e.toDisplayString(t.name),1),e.createElementVNode("view",{class:"right-box-items"},[e.createElementVNode("image",{class:"right-box-items-button",src:B}),e.createElementVNode("image",{class:"right-box-items-button",src:z})]),e.withDirectives(e.createElementVNode("view",{class:"super-end-items-father-close-father",onClick:e.withModifiers((e=>c.value.splice(l,1)),["stop"])}," - ",8,["onClick"]),[[e.vShow,ye.value]])],36)])))),128))])],8,["scroll-left"]),e.createElementVNode("view",{class:"middle-box"},[e.createElementVNode("view",{class:"middle-left-box"},[e.createElementVNode("view",{class:"first-contant"},[e.withDirectives(e.createElementVNode("view",{class:"time-father"},[e.withDirectives(e.createElementVNode("view",{class:"time-button"},[e.createElementVNode("view",{class:"time-button-month"},"周"),e.createElementVNode("view",{class:"time-button-week",onClick:a[2]||(a[2]=e=>{u.value=!1,A.value=-1,$.value=""})},"月")],512),[[e.vShow,u.value]]),e.withDirectives(e.createElementVNode("view",{class:"time-button"},[e.createElementVNode("view",{class:"time-button-month-target",onClick:a[3]||(a[3]=e=>{u.value=!0,O.value=-1,L.value=""})},"周"),e.createElementVNode("view",{class:"time-button-week-target"},"月")],512),[[e.vShow,!u.value]]),e.createElementVNode("scroll-view",{"scroll-y":"",style:{width:"100%",height:"600rpx"},"show-scrollbar":!1,"scroll-top":p.value},[u.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},e.renderList(d,((t,l)=>e.createElementVNode("view",{key:l,onClick:e=>((e,t)=>{const l=Date.now();l-C.value<300?($.value=e,A.value=t,Te(),C.value=0):($.value=e,A.value=t,C.value=l)})(t,l)},[e.createElementVNode("view",{class:e.normalizeClass(A.value===l?"items-card-target":"items-card")},e.toDisplayString(t),3)],8,["onClick"]))),64)):e.createCommentVNode("",!0),u.value?e.createCommentVNode("",!0):(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(e.unref(m),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>((e,t)=>{const l=Date.now();l-C.value<300?(L.value=e,O.value=t,Te(),C.value=0):(L.value=e,O.value=t,C.value=l)})(t,l)},[e.createElementVNode("view",{class:e.normalizeClass(O.value===l?"items-card-target":"items-card")},e.toDisplayString(t),3)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"40rpx"}})],8,["scroll-top"])],512),[[e.vShow,v.value]]),e.withDirectives(e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%",width:"100%"},"show-scrollbar":!1,"scroll-top":p.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(x.value[G.value].children[Q.value].children,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>function(e){const t=Date.now();t-C.value<300?(K.value=e,Te(),C.value=0):(K.value=e,C.value=t)}(l)},[e.createElementVNode("view",{class:"right-box-item",style:e.normalizeStyle(K.value==l?{border:"2rpx solid rgb(54, 159, 239)",backgroundColor:"#fff"}:{border:"2rpx solid rgb(229, 233, 249)"})},[e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:"/static/index/ri.png"},null,512),[[e.vShow,"日常护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:"/static/index/zhou.png"},null,512),[[e.vShow,"周期护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:"/static/index/ji.png"},null,512),[[e.vShow,"即时护理"===t.cycleType]]),e.createElementVNode("image",{class:"right-box-img",src:_}),e.createElementVNode("view",{class:"right-box-font",style:e.normalizeStyle(K.value==l?{color:"rgb(54, 159, 239)"}:{})},e.toDisplayString(t.title),5),e.createElementVNode("view",{class:"right-box-items"},[e.createElementVNode("image",{class:"right-box-items-button",src:B}),e.createElementVNode("image",{class:"right-box-items-button",src:z})])],4)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"20rpx"}})],8,["scroll-top"]),[[e.vShow,!v.value]])]),e.createElementVNode("view",{class:"second-contant"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%",width:"100%"},"show-scrollbar":!1,"scroll-top":g.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(N.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:t=>(t=>{v.value=!1,A.value=-1,O.value=-1,$.value="",L.value="",Q.value=t,K.value=0,p.value=1,e.nextTick((()=>{p.value=0}))})(l)},[e.createElementVNode("view",{class:e.normalizeClass(Q.value==l?"downList-box-target":"downList-box")},[e.createElementVNode("image",{class:"downList-box-img",src:_}),e.createElementVNode("view",{class:"downList-box-text"},e.toDisplayString(t.title),1)],2)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"20rpx"}})],8,["scroll-top"])])]),e.createElementVNode("view",{class:"middle-right-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(H.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:t=>(t=>{5!==t&&(v.value=!1,A.value=-1,O.value=-1,$.value="",L.value="",g.value=1,p.value=1,e.nextTick((()=>{g.value=0,p.value=0})),G.value=t,N.value=x.value[t].children,Q.value=0,K.value=0)})(l)},[e.createElementVNode("view",{class:e.normalizeClass(l===G.value?"doctorsay-container-card-target":"doctorsay-container-card")},[e.createElementVNode("image",{class:"doctorsay-container-card-img",src:l===G.value?t.targetUrl:t.url},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(l===G.value?"doctorsay-container-card-font-dark":"doctorsay-container-card-font")},e.toDisplayString(t.name),3)],2)],8,["onClick"])))),128))])]),e.createElementVNode("view",{class:"under-button"},[e.createElementVNode("view",{class:"under-button-black",style:e.normalizeStyle(y.value?{opacity:1}:{opacity:0})}," 不能重复添加相同的即时服务指令 ",4),e.createElementVNode("view",{class:"white-circle",onClick:M},[e.createElementVNode("image",{class:"white-circle-img",src:"/static/index/keyimg/movebutton.png"})]),e.createElementVNode("view",{class:"white-circle",onClick:j},[e.createElementVNode("image",{class:"white-circle-img",src:"/static/index/keyimg/deletebutton.png"})]),e.createElementVNode("view",{class:"white-circle",onClick:ke},[e.createElementVNode("image",{class:"white-circle-img",src:"/static/index/keyimg/notebutton.png"})]),e.createElementVNode("view",{class:"white-circle-click-father",onClick:Te},[e.createElementVNode("image",{class:"white-circle-click",src:"/static/index/keyimg/okbutton.png"}),e.createElementVNode("view",{class:"white-circle-font"}," 确定 ")])])])])])]),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay",onClick:a[5]||(a[5]=e=>{E.value=!1,oe.value.index0=999,se.value=-1})},[e.createElementVNode("view",{class:"popup-overlay-content",style:e.normalizeStyle({top:2*re.value-350+"rpx",left:2*ne.value-780+"rpx",opacity:V.value?1:0,backgroundColor:"日常"===(null==(n=null==(i=Fe.value[oe.value.index0])?void 0:i.children[oe.value.index1])?void 0:n.type)?"#fffcf6":"rgb(246, 244, 254)"}),onClick:a[4]||(a[4]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"},e.toDisplayString(null==(o=null==(r=Fe.value[oe.value.index0])?void 0:r.children[oe.value.index1])?void 0:o.value),1)]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],4)],512),[[e.vShow,E.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-say",onClick:a[7]||(a[7]=e=>b.value=!1)},[e.createElementVNode("view",{class:"popup-say-content",style:e.normalizeStyle([{"padding-top":"30rpx"},{opacity:k.value?1:0}]),onClick:a[6]||(a[6]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-say-content-flex"},[e.createElementVNode("view",{class:"popup-say-content-gun"}),e.createElementVNode("view",{class:"popup-say-content-font"},"情绪标签")]),e.createElementVNode("view",{style:{display:"flex"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.slice(0,2),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"tags-father"},[e.createElementVNode("image",{class:"tags-img",src:`/static/index/tagNames/${l}.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font"},e.toDisplayString(t),1)])])))),128))]),e.createElementVNode("view",{class:"popup-say-content-flex",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"popup-say-content-gun"}),e.createElementVNode("view",{class:"popup-say-content-font"},"体型标签")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.slice(2,11),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"tags-father"},[e.createElementVNode("image",{class:"tags-img",src:`/static/index/tagNames/${l+2}.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font"},e.toDisplayString(t),1)])])))),128))]),e.createElementVNode("view",{class:"popup-say-three"})],4)],512),[[e.vShow,b.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-share",onClick:a[9]||(a[9]=e=>de.value=!1)},[e.createElementVNode("view",{class:"popup-share-content",style:e.normalizeStyle({opacity:ce.value?1:0}),onClick:a[8]||(a[8]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-share-title"},[e.createTextVNode(" 护理日程分享 "),e.createElementVNode("image",{class:"popup-share-img",src:D})]),e.createElementVNode("view",{class:"popup-share-upcontent"},[e.createElementVNode("view",{class:"popup-share-font"},"久泰护理日程分享测试")]),e.createElementVNode("view",{class:"popup-share-gray"}),e.createElementVNode("view",{class:"popup-share-downcontent"},[e.createElementVNode("view",{class:"popup-share-downcontent-left"},[e.createElementVNode("image",{class:"popup-downcontent-img",src:D}),e.createElementVNode("view",{class:"popup-downcontent-font"},"久泰护理")]),e.createElementVNode("view",{class:"popup-share-downcontent-button",onClick:ue}," 分享 ")])],4)],512),[[e.vShow,de.value]])],4)}}}),[["__scopeId","data-v-bd7a2b2a"]]),F=s(e.defineComponent({__name:"index",setup(t){e.onMounted((()=>{c.value=2,uni.getSystemInfoSync(),uni.pageScrollTo}));const l=e.ref([{url:"/static/index/lefticon/index.png",targetUrl:"/static/index/lefticontarget/blueindex.png"},{url:"/static/index/lefticon/nurse.png",targetUrl:"/static/index/lefticontarget/bluenurse.png"},{url:"/static/index/lefticon/doctor.png",targetUrl:"/static/index/lefticontarget/bluedoctor.png"},{url:"/static/index/lefticon/give.png",targetUrl:"/static/index/lefticontarget/givedark.png"},{url:"/static/index/lefticon/wifi.png",targetUrl:"/static/index/lefticontarget/bluewifi.png"},{url:"/static/index/lefticon/back.png",targetUrl:"/static/index/lefticontarget/blueback.png"}]),a=e.ref(0),i=e.ref(!1),r=e.ref(!1),o=e.ref(!1),c=e.ref(-1);e.ref([]),e.ref(0),e.ref(0),e.ref(0),e.ref(0),e.ref(0);const s=e=>{o.value=e},d=e=>{c.value=e},m=e=>{if(3===e)return i.value=!1,r.value=!1,void uni.navigateTo({url:`/pages/somethingmove/index?darkFans=${o.value}`,animationType:"slide-in-right",animationDuration:400});5!==e?(a.value=e,i.value=!1,r.value=!1,setTimeout((()=>{switch(e){case 0:i.value=!0;break;case 1:r.value=!0}}),50)):uni.navigateBack()},u=e.ref(0),v=e.ref(0),p=e.ref(""),g=e.ref(!0),w=e.ref({index0:999,index1:999}),h=e.ref(!0),f=uni.createAnimation({duration:0,timingFunction:"linear",delay:0}),y=e.ref({}),x=function(e,t){let l=0;return function(...a){const i=Date.now();i-l>=t&&(l=i,e.apply(this,a))}}((e=>{var t;const l=e.touches[0];u.value=2*(Math.floor(l.clientX)-100),v.value=2*(Math.floor(l.clientY)-55),f.translate3d(u.value/2,v.value/2,0).step({duration:0}),y.value=f.export();const a=Math.floor(l.clientX)-50,i=Math.floor(l.clientY)-25,n=E.value.find((e=>a>=Math.floor(e.left)&&a<=Math.floor(e.right)&&i>=Math.floor(e.top)&&i<=Math.floor(e.bottom)));if(n){const{index0:e,index1:l}=n.dataset;w.value.index0=e,w.value.index1=l,u.value<200&&h.value&&!c.value&&(null==(t=B.value)||t.nextItems(),h.value=!1,setTimeout((()=>{h.value=!0}),1e3))}else w.value.index0=999,w.value.index1=999}),40),E=e.ref([]),V=(e,t)=>{p.value=e,g.value=!1,E.value=t},b=e=>{E.value=e},T=e.ref({directiveName:"",cycleType:"",positioningLong:"0",typeName:"",startTime:"",id:"",endTime:"",tagName:null}),D=(e,t)=>{T.value=e,g.value=!1,E.value=t},C=()=>{p.value="",g.value=!0},B=e.ref(null),z=e.ref(null),_=()=>{var e,t,l;u.value=9999,v.value=9999,f.translate3d(u.value/2,v.value/2,0).step({duration:0}),y.value=f.export(),g.value=!0,w.value={index0:999,index1:999},p.value?c.value||null==(e=B.value)||e.rulerEnd(p.value):T.value.typeName&&(0===c.value?null==(t=B.value)||t.rulerMoveEnd(T.value):null==(l=z.value)||l.rulerMoveEnd(T.value)),p.value="",T.value={directiveName:"",cycleType:"",positioningLong:"0",typeName:"",startTime:"",id:"",endTime:"",tagName:null}};function I(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}return n((()=>{setTimeout((()=>{m(a.value)}),50)})),(t,n)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(o.value?"darkbackgroundContainer":"backgroundContainer"),onTouchmove:n[0]||(n[0]=(...t)=>e.unref(x)&&e.unref(x)(...t)),onTouchend:_},[e.withDirectives(e.createElementVNode("view",{class:"move-font",animation:y.value},e.toDisplayString(p.value),9,["animation"]),[[e.vShow,p.value&&u.value]]),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass("日常"==T.value.cycleType?"title-time-border-yellow":"title-time-border-pouple"),animation:y.value,style:{"font-size":"30rpx",overflow:"hidden"}},[e.withDirectives(e.createElementVNode("view",{class:"title-time",style:{"margin-top":"5rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(T.value.startTime+"-"+T.value.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==T.value.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(T.value.cycleType),1)],512),[[e.vShow,T.value.startTime]]),e.createElementVNode("view",{style:{"margin-top":"20rpx","font-weight":"700"}},e.toDisplayString(I(T.value.directiveName)[0]),1),e.withDirectives(e.createElementVNode("view",{class:"down-icons",style:e.normalizeStyle("日常"!=T.value.cycleType?{backgroundColor:"rgb(212,203,255)"}:{})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(I(T.value.directiveName).slice(1),((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:l},[e.createElementVNode("view",{class:"icon",style:e.normalizeStyle("日常"!=T.value.cycleType?{backgroundColor:"rgb(123,97,255)"}:{})},e.toDisplayString(I(T.value.directiveName)[1]),5)])))),128))],4),[[e.vShow,I(T.value.directiveName)[1]]])],10,["animation"]),[[e.vShow,T.value.cycleType]]),e.createElementVNode("view",{class:"left-container"},[e.createElementVNode("view",{class:"left-head"},[e.createElementVNode("image",{class:"left-head-img",src:N}),e.createElementVNode("text",{class:e.normalizeClass(o.value?"left-head-font-dark":"left-head-font")}," 王金凤 ",2)]),e.createElementVNode("view",{class:"left-img-container"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"blue-circle-pos"},[e.withDirectives(e.createElementVNode("view",{class:"blue-circle"},[e.createElementVNode("image",{class:"blue-circle-size",src:"/static/index/ray.png"},null,8,["src"])],512),[[e.vShow,l===a.value]]),e.createElementVNode("image",{class:"left-img",src:l===a.value?t.targetUrl:t.url,onClick:e=>m(l)},null,8,["src","onClick"])])))),128))])]),e.withDirectives(e.createVNode(k,{isshow:i.value,darkFans:o.value,onDarkchange:s},null,8,["isshow","darkFans"]),[[e.vShow,!a.value]]),e.withDirectives(e.createVNode(S,{ref_key:"ruler",ref:B,liang:w.value,isshow:r.value,canmove:g.value,darkFans:o.value,onDarkchange:s,onSavename:V,onSaveruler:D,onChangefangkuang:b,onCleanname:C,onChangeold:d},null,8,["liang","isshow","canmove","darkFans"]),[[e.vShow,1==a.value&&!c.value]]),e.withDirectives(e.createVNode(M,{ref_key:"rulernew",ref:z,isold:2===c.value,liang:w.value,isshow:r.value,canmove:g.value,darkFans:o.value,onDarkchange:s,onSavename:V,onSaveruler:D,onChangefangkuang:b,onCleanname:C,onChangeold:d},null,8,["isold","liang","isshow","canmove","darkFans"]),[[e.vShow,1==a.value&&2===c.value]])],34))}}),[["__scopeId","data-v-ee189f8b"]]),$="/static/index/watch/more.png",A="/static/index/newindex/wendu/0.png",L="/static/index/newindex/wendu/1.png",O="/static/index/watch/bgc.png",P="/static/index/watch/play.png",j="/static/index/video/laba.png",q="/static/index/video/video.png",R="/static/index/video/txt.png",W=s(e.defineComponent({__name:"specialDrawer",props:{widNumber:{type:Number,default:25},circletarget:{type:Boolean,default:!1}},emits:["open"],setup(t,{expose:l,emit:a}){const i=e.ref(!1),n=a,r=t,o=e.ref(0);e.onMounted((()=>{const e=uni.getSystemInfoSync();o.value=e.screenWidth}));const c=e.ref(0),s=e.ref(!1),d=e.ref(0),m=e.computed((()=>{const e=`${r.widNumber}%`;if(s.value){return{width:e,transform:`translateX(${d.value}px)`,transition:"none"}}return{width:e}}));function u(){i.value=!0,n("open")}function v(){i.value=!1}function p(){i.value?v():u(),N()}function g(e){i.value&&(s.value=!0,d.value=0,c.value=e.touches[0].pageX)}function w(e){if(!s.value)return;const t=e.touches[0].pageX-c.value;d.value=t>0?t:0}function h(){if(!s.value)return;s.value=!1;const e=o.value*(r.widNumber/100)/2;d.value>e&&(v(),N()),d.value=0}l({openDrawer:u,closeDrawer:v});const f=e.ref(0);function N(){f.value+=180}return e.computed((()=>({transform:`rotate(${f.value}deg)`,transition:"transform 0.6s ease"}))),(l,a)=>(e.openBlock(),e.createElementBlock("view",null,[e.createElementVNode("view",{class:e.normalizeClass(["drawer",{"drawer-open":i.value}]),style:e.normalizeStyle(m.value)},[e.createElementVNode("view",{class:"drawer-content",onTouchstartPassive:g,onTouchmovePassive:w,onTouchend:h,onTouchcancel:h},[e.createElementVNode("view",{class:e.normalizeClass(["drawer-content-circle",t.circletarget?"pulse":""]),style:e.normalizeStyle(i.value?{}:{background:"linear-gradient(to bottom,#62E8FF,#0097FF)"}),onClick:p},[e.createElementVNode("image",{class:"drawer-img",src:i.value?"/static/index/watch/whitearrow.png":"/static/index/watch/arrow.png"},null,8,["src"])],6),e.renderSlot(l.$slots,"default",{},void 0,!0)],32)],6)]))}}),[["__scopeId","data-v-363bab7d"]]),Y=s(e.defineComponent({__name:"index",props:{opensecondmenu:{type:Boolean,default:!1}},emits:["firstIndex","secondIndex"],setup(t,{expose:l,emit:a}){const i=a,n=["静音","对讲","截屏","录制","方位","清晰度","分屏","翻转","告警"],r=e.ref([0,1,1,1,1,0,0,3,1]),o=n.length,c=e.reactive(n.map(((e,t)=>({label:e,baseAngle:360/o*t}))));let s=null,d=null;const m=e.ref(0),u=e.ref(0),v=e.ref(null);let p=null,g=null;function w(e,t=160){g&&clearTimeout(g),g=setTimeout((()=>{v.value&&e()}),t)}const h=e.reactive({x:0,y:0});e.onMounted((async()=>{await e.nextTick(),uni.createSelectorQuery().select(".compass-container").boundingClientRect((e=>{e&&(h.x=e.left+e.width/2,h.y=e.top+e.height/2)})).exec(),await e.nextTick();const t=U(m.value);k.value=t,u.value=m.value,I(t,!1)}));const f=e.ref(!1),N=e.computed((()=>({transform:`rotate(${u.value}deg)`,transition:f.value?"transform 300ms ease-out":"none"}))),y=e.computed((()=>({transform:`rotate(${-u.value}deg)`})));function x(e){const t=e*Math.PI/180;return{transform:`translate(${190*Math.cos(t)}px, ${190*Math.sin(t)}px)`}}function E(e){let t=e%360;return t<0&&(t+=360),t}function V(e,t){const l=E(e);let a=l,i=Math.abs(a-t);for(let n=-3;n<=3;n++){const e=l+360*n,r=Math.abs(e-t);r{-1===k.value&&(k.value=T.value)}),300)}function S(){clearTimeout(d),d=setTimeout((()=>{-1===A.value&&(A.value=K.value)}),300)}function B(e){T.value=k.value,k.value=-1,f.value=!1,p=b(e),v.value="first",C()}function z(e){if(null===p)return void(p=b(e));const t=b(e),l=function(e,t){let l=E(e)-E(t);return l>180&&(l-=360),l<=-180&&(l+=360),l}(t,p);m.value=m.value+l,f.value=!1,u.value=m.value,p=t,w(_),C()}function _(){p=null,D();const e=360/o,t=o%2==0?e:e/2,l=m.value,a=E(Math.round(l/t)*t),n=V(a,l);m.value=n;let r=V(a,u.value)-u.value;r>180&&(r-=360),r<=-180&&(r+=360),f.value=!0,u.value=u.value+r;const c=U(n);k.value!==c&&(i("firstIndex",c),k.value=c),setTimeout((()=>{f.value=!1,u.value=m.value}),300),v.value=null}function I(e,t=!0){if(null==e||e<0||e>=c.length)return;const l=function(e){return c[e]?E(180-c[e].baseAngle):0}(e),a=V(l,m.value);m.value=a;const n=V(l,u.value);if(!t)return f.value=!1,u.value=a,void(k.value!==e&&(i("firstIndex",e),k.value=e));let r=n-u.value;r>180&&(r-=360),r<=-180&&(r+=360),f.value=!0,u.value=u.value+r,k.value!==e&&(i("firstIndex",e),k.value=e),setTimeout((()=>{f.value=!1,u.value=m.value}),300),v.value=null}function U(e){if(!c.length)return-1;const t=E(e);let l=1/0,a=0;return c.forEach(((e,i)=>{const n=E(180-e.baseAngle),r=function(e,t){const l=Math.abs(E(e)-E(t));return Math.min(l,360-l)}(t,n);r({transform:`rotate(${L.value}deg)`,transition:P.value?"transform 0.25s ease-out":"none"}))),q=e.computed((()=>({transform:`rotate(${-L.value}deg)`})));function R(e){const t=e*Math.PI/180;return{transform:`translate(${240*Math.cos(t)}px, ${240*Math.sin(t)}px)`}}const W=[135,157.5,180,202.5,225];const Y=e.ref(0),J=e.ref(0);function X(t){var l;const a=null==(l=c[t])?void 0:l.label,i=a&&F[a]?F[a].slice(0,5):[],n=(r=i.length,[2,1,3,0,4].slice(0,r).map((e=>W[e])));var r;if(Y.value=180-Math.max(...n.length?n:[180]),J.value=180-Math.min(...n.length?n:[180]),$.splice(0,$.length),!i.length)return L.value=0,O.value=0,void(A.value=-1);for(let e=0;e{A.value=Z()}))}function Z(){if(!$.length)return-1;let e=1/0,t=0;return $.forEach(((l,a)=>{let i=(l.baseAngle+L.value)%360;i<0&&(i+=360);const n=Math.abs(i-180);nk.value),(e=>{e>=0?(X(e),I(e,!0)):X(e)}),{immediate:!0});let H=0,G=0;function Q(e){return Math.max(Y.value,Math.min(J.value,e))}const K=e.ref(-1);function ee(e){K.value=A.value;const t=e.touches[0];H=t.clientY,G=L.value,P.value=!1,A.value=-1,v.value="second",S()}function te(e){if(!$.length)return;const t=e.touches[0].clientY-H;O.value;const l=G+.5*-t;L.value=Q(l),w(le),S()}function le(){if(!$.length)return;const e=O.value||1,t=Math.round(L.value/e)*e;P.value=!0,L.value=Q(t),setTimeout((()=>P.value=!1),250),v.value=null,k.value!==Z()&&(i("secondIndex",A.value),A.value=Z())}return l({moveFirstUp:function(){if("first"===v.value)return;const e=M();if(e<0)return;const t=(e-1+c.length)%c.length;I(t,!0),k.value!==t&&(i("firstIndex",t),k.value=t)},moveFirstDown:function(){if("first"===v.value)return;const e=M();if(e<0)return;const t=(e+1)%c.length;I(t,!0),k.value!==t&&(i("firstIndex",t),k.value=t)},moveSecondUp:function(){if("second"===v.value)return;if(!$.length)return;const e=O.value||1;let t=L.value+e;t=Math.round(t/e)*e,t=Q(t),P.value=!0,L.value=t,A.value=Z(),i("secondIndex",A.value),setTimeout((()=>P.value=!1),250)},moveSecondDown:function(){if("second"===v.value)return;if(!$.length)return;const e=O.value||1;let t=L.value-e;t=Math.round(t/e)*e,t=Q(t),P.value=!0,L.value=t,A.value=Z(),i("secondIndex",A.value),setTimeout((()=>P.value=!1),250)},startchange:()=>{r.value[k.value]=A.value}}),e.onBeforeUnmount((()=>{null!==s&&clearTimeout(s),null!==d&&clearTimeout(d),g&&(clearTimeout(g),g=null)})),(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"carmera"},[e.createElementVNode("image",{class:"all-size",src:"/static/index/watch/camera.png"})]),e.createElementVNode("view",{class:"roll"},[e.createElementVNode("image",{class:"all-size",src:"/static/index/watch/panzi.png"})]),e.createElementVNode("view",{ref:"compass",class:"compass-container",onTouchstart:e.withModifiers(B,["stop","prevent"]),onTouchmove:e.withModifiers(z,["prevent","stop"]),onTouchend:e.withModifiers(_,["stop","prevent"]),onTouchcancel:e.withModifiers(_,["stop","prevent"]),style:e.normalizeStyle(N.value)},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c,((l,a)=>(e.openBlock(),e.createElementBlock("view",{key:a,class:"compass-item",style:e.normalizeStyle(x(l.baseAngle))},[e.createElementVNode("text",{class:e.normalizeClass(a===k.value?"item-label-target":"item-label"),style:e.normalizeStyle(y.value)},[e.createElementVNode("view",{style:{"z-index":"2",display:"flex","flex-direction":"column","justify-content":"center","align-items":"center"}},[e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx","margin-bottom":"0rpx"},class:e.normalizeClass(a!==k.value||t.opensecondmenu?"":"pulse"),src:`/static/index/watch/Wheel/${a+1}${a===k.value?1:0}.png`},null,10,["src"]),e.createElementVNode("view",{style:e.normalizeStyle(a===k.value?{color:"#fff"}:{})},e.toDisplayString(l.label),5)]),e.createElementVNode("image",{class:"targetimge",src:"/static/index/watch/bluetarget.png",style:e.normalizeStyle({opacity:a===k.value?1:0})},null,4)],6)],4)))),128))],36),$.length?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,ref:"compass2",class:"compass-container second",onTouchstart:e.withModifiers(ee,["stop","prevent"]),onTouchmove:e.withModifiers(te,["prevent","stop"]),onTouchend:e.withModifiers(le,["stop","prevent"]),onTouchcancel:e.withModifiers(le,["stop","prevent"]),style:e.normalizeStyle(j.value)},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList($,((l,a)=>(e.openBlock(),e.createElementBlock("view",{key:a,class:"compass-item",style:e.normalizeStyle(R(l.baseAngle))},[e.createElementVNode("text",{class:"item-label-second",style:e.normalizeStyle(q.value)},[e.createElementVNode("view",{style:{"z-index":"2",display:"flex","flex-direction":"column","justify-content":"center","align-items":"center"}},[e.createElementVNode("image",{style:{width:"70rpx",height:"70rpx","margin-bottom":"0rpx"},class:e.normalizeClass(a===A.value&&t.opensecondmenu?"pulse":""),src:`/static/index/watch/Wheel/${-1===k.value?0:k.value+1}${a}${a===r.value[k.value]?1:0}.png`},null,10,["src"]),e.withDirectives(e.createElementVNode("view",{style:e.normalizeStyle(a===r.value[k.value]?{color:"#0E86EA"}:{})},e.toDisplayString(l.label),5),[[e.vShow,-1!==k.value]])])],4)],4)))),128))],36)),[[e.vShow,-1!==k.value]]):e.createCommentVNode("",!0),"first"===v.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"gesture-mask",onTouchmove:e.withModifiers(z,["stop","prevent"]),onTouchend:e.withModifiers(_,["stop","prevent"]),onTouchcancel:e.withModifiers(_,["stop","prevent"])},null,32)):e.createCommentVNode("",!0),"second"===v.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"gesture-mask",onTouchmove:e.withModifiers(te,["stop","prevent"]),onTouchend:e.withModifiers(le,["stop","prevent"]),onTouchcancel:e.withModifiers(le,["stop","prevent"])},null,32)):e.createCommentVNode("",!0)]))}}),[["__scopeId","data-v-d630a1ae"]]),J="https://www.focusnu.com/devopsapi",X=(e,t)=>(e=>{let t=e.url,a=e.method||"get",i=e.data||{},n={"X-Access-Token":uni.getStorageSync("token")||"","Content-Type":"application/json;charset=UTF-8",Authorization:"Basic c2FiZXI6c2FiZXJfc2VjcmV0",...e.header};return new Promise(((e,r)=>{uni.request({url:/^https?:\/\//.test(t)?t:J+t,method:a,header:n,data:i,timeout:5e3,success(a){const n=a;if(200==n.statusCode)e(n.data);else switch(l("log","at request/guanli.js:34","http",/^https?:\/\//.test(t)?t:J+t),l("log","at request/guanli.js:35","res",a),l("log","at request/guanli.js:36","data",i),n.statusCode){case 401:uni.showModal({title:"提示",content:"登录过期",showCancel:!1,success(){uni.clearStorageSync(),setTimeout((()=>{uni.navigateTo({url:"/pages/login/login"})}),1e3)}});break;case 404:uni.showToast({title:"请求地址不存在...",duration:2e3});break;default:uni.showToast({title:"请重试...",duration:2e3})}},fail(e){l("log","at request/guanli.js:69",e),-1!==e.errMsg.indexOf("request:fail")?uni.showToast({title:"网络异常",icon:"error",duration:2e3}):uni.showToast({title:"未知异常",duration:2e3}),r(e)},complete(){uni.hideLoading(),uni.hideToast()}})})).catch((()=>{}))})({url:`/iot/tplink/cameraInfo/motionCtrl?deviceIndex=5&direction=${e}&startOrNot=${t}&speed=1`,method:"get"}),Z=100,H=400,G=s(e.defineComponent({__name:"index",setup(a){o((()=>{t("globalEvent").addEventListener("myEvent",(e=>{l("log","at pages/watch/index.vue:304","myEvent",e),uni.showToast({title:"myEvent: "+JSON.stringify(e),duration:2e3})}));uni.getSubNVueById("optionSub").hide("fade-out")}));const i=()=>{uni.navigateTo({url:"/pages/ceshianzhuo"})};e.ref(null);const r=e.ref(-1),c=e.ref(-1),s=e.ref(!1),d=e.ref(!1),m=e.ref(null),u=e.ref(null),v=e.ref(0),p=e.ref(5),g=e.ref(0),w=e=>{p.value=e,ae.value=!1},h=e=>{g.value=e,ae.value=!1},f=()=>{m.value.openDrawer();uni.getSubNVueById("optionSub").show("fade-in")};function N(e,t,l){return Math.max(t,Math.min(l,e))}function y(e){const t=e*Z,l=v.value,a=l+H;if(ta){const e=t+Z-H;v.value=N(e,0,re.value.length*Z-H)}}function x(e,t,l,a="png",i=0,n=!1){return Array.from({length:l},((l,r)=>{const o=n?String(r+i).padStart(2,"0"):r+i;return`${e}/${t}${o}.${a}`}))}const E=x("/static/index/newindex/curve","curve_",9,"png",1,!1),V=e.ref([...E,...[...E].reverse()]),b=x("/static/index/newindex/curve","breathe_",9,"png",1,!1),k=e.ref([...b,...[...b].reverse()]),T=e.ref([{name:"王金福",url:"/static/index/watch/people0.png"},{name:"李宝田",url:"/static/index/watch/people1.png"}]),D=e.ref([{name:"省医保",url:"/static/index/watch/00.png",error:!1},{name:"重度失能",url:"/static/index/watch/01.png",error:!1},{name:"欠费",url:"/static/index/watch/03.png",error:!0}]),C=e.ref([{name:"护理单元",url:x("/static/index/watch","nurs_",10,"png",1,!1)},{name:"仓库",url:x("/static/index/watch","warehouse_",6,"png",1,!1)},{name:"配务室",url:x("/static/index/watch","delivery_",5,"png",1,!1)},{name:"服务大厅",url:x("/static/index/watch","service_",5,"png",1,!1)},{name:"",url:""}]),S=e.ref([{name:"护理单元01",NUID:"2508000001",url:x("/static/index/watch","nurs_",10,"png",1,!1),warning:!1,type:0},{name:"护理单元02",NUID:"2508000002",url:x("/static/index/watch","nurs_",10,"png",1,!1),warning:!1,type:0},{name:"护理单元03",NUID:"2508000003",url:x("/static/index/watch","nurs_",10,"png",1,!1),warning:!0,type:0},{name:"仓库01",NUID:"2508000001",url:x("/static/index/watch","warehouse_",6,"png",1,!1),warning:!1,type:1},{name:"配务室",NUID:"2508000001",url:x("/static/index/watch","delivery_",5,"png",1,!1),warning:!1,type:2},{name:"服务大厅",NUID:"2508000001",url:x("/static/index/watch","service_",5,"png",1,!1),warning:!1,type:3}]);e.onMounted((()=>{r.value=0,c.value=0,s.value=!0,d.value=!0}));const B=e.ref(0),z=e.ref(-1),_=e.ref(!1),I=e.ref(!1),U=e.ref(!1),M=e.ref(!1),F=()=>{B.value=-1,z.value=-1,_.value=!1,I.value=!1,I.value=!1,U.value=!0,M.value=!1},J=e=>{if(-1!==B.value)switch(e){case 0:r.value>0&&(r.value--,c.value=0,B.value=r.value,y(r.value));break;case 1:z.value=c.value,B.value=-1;break;case 2:r.value{var e;return null==(e=u.value)?void 0:e.moveFirstUp()}),400),Q=ne((()=>{var e;return null==(e=u.value)?void 0:e.moveFirstDown()}),400),K=ne((()=>{var e;return null==(e=u.value)?void 0:e.moveSecondUp()}),400),ee=ne((()=>{var e;return null==(e=u.value)?void 0:e.moveSecondDown()}),400),te=ne((()=>function(){var e;null==(e=u.value)||e.startchange(),0===p.value&&(g.value,uni.$emit("monitor:toggleVolume"));1===p.value&&(g.value?uni.$emit("monitor:stopTalk"):uni.$emit("monitor:openTalk"));2===p.value&&uni.$emit("monitor:doSnapshot");3===p.value&&(g.value?uni.$emit("monitor:stopRecord"):uni.$emit("monitor:startRecord"));4===p.value&&(g.value||(ie.value=p.value,p.value=-1,ae.value=!0));5===p.value&&le.value!==g.value&&(le.value=g.value,uni.$emit("monitor:changeQuality"));6===p.value&&uni.$emit("monitor:switchDisplay",g.value);7===p.value&&(3===g.value?uni.$emit("monitor:flipImage",6):uni.$emit("monitor:flipImage",g.value));8===p.value&&(g.value?uni.$emit("monitor:stopAlarm"):uni.$emit("monitor:startAlarm"))}()),700),le=e.ref(0),ae=e.ref(!1),ie=e.ref(-1);function ne(e,t=1e3){let l=!1;return()=>{l||(e(),l=!0,setTimeout((()=>{l=!1}),t))}}const re=e.computed((()=>(r.value=-1,setTimeout((()=>r.value=0),50),S.value.filter((e=>e.type===c.value))))),oe=()=>{uni.navigateTo({url:"/pages/watch/settings/settings"})};n((()=>{}));let ce=-1;const se={};function de(e,t){-1!==ce&&ce!==t&&me(ce),ce=t,X(e,1).then((t=>{l("log","at pages/watch/index.vue:990","start",e,t)})),se[t]&&clearTimeout(se[t]),se[t]=setTimeout((()=>{me(t)}),550)}function me(e){if(-1===e)return;let t=0;switch(e){case 0:t=1;break;case 1:t=5;break;case 2:t=7;break;case 3:t=3}X(t,0).then((e=>{})),clearTimeout(se[e]),se[e]=null,ce===e&&(ce=-1)}return(t,l)=>{const a=e.resolveComponent("donghua"),n=e.resolveComponent("arrowkeys");return e.openBlock(),e.createElementBlock("view",{class:"view"},[e.createElementVNode("view",{class:"view-left"},[e.createElementVNode("view",{class:"title-father"},[e.createElementVNode("image",{class:"title-img",src:"/static/index/watch/uni.png"}),e.createElementVNode("view",{class:"title-font",onClick:i}," 护理单元 ")]),e.createElementVNode("view",{class:"zhezhao-top"}),e.createElementVNode("view",{class:"zhezhao-bottom"}),e.createElementVNode("scroll-view",{class:"menus-father","scroll-y":"","scroll-top":v.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(re.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["menu",{warning:t.warning,target:l===B.value}]),style:e.normalizeStyle([l===r.value?{backgroundColor:"#fff"}:{},B.value===l?{backgroundColor:"#ddf0ff"}:{}]),onClick:e=>{r.value=l}},[e.createElementVNode("view",{class:"menu-img"},[e.createVNode(a,{width:"65rpx",height:"65rpx",links:t.url,playing:r.value===l},null,8,["links","playing"])]),e.createElementVNode("view",{style:{"margin-left":"10rpx"}},[e.createElementVNode("view",{style:e.normalizeStyle([{"font-size":"31rpx",overflow:"hidden","white-space":"nowrap","text-overflow":"ellipsis",width:"200rpx"},l===r.value?{color:"#017DE9 "}:{}])},e.toDisplayString(t.name),5)])],14,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"45rpx"}})],8,["scroll-top"])]),e.createElementVNode("view",{class:"view-right"},[e.createElementVNode("view",{class:"scroll-vi"},[e.createElementVNode("view",{class:"zhezhao-left"}),e.createElementVNode("view",{class:"zhezhao-right"}),e.createElementVNode("scroll-view",{"scroll-x":"true",style:{width:"66%",height:"100%"}},[e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-top":"5rpx"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(C.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["menu",{target:l===z.value}]),style:e.normalizeStyle(z.value===l?{backgroundColor:"#ddf0ff"}:{}),onClick:e=>{c.value=l}},[t.url?(e.openBlock(),e.createBlock(a,{key:0,links:t.url,playing:c.value===l},null,8,["links","playing"])):e.createCommentVNode("",!0),t.url?(e.openBlock(),e.createElementBlock("text",{key:1,class:e.normalizeClass(["menu-font",{zoom:c.value===l}]),style:e.normalizeStyle(c.value===l?{color:"#008FF5"}:{})},e.toDisplayString(t.name),7)):e.createCommentVNode("",!0),t.url?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:2},[e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx"},src:$})]))],14,["onClick"])))),128))])]),e.createElementVNode("view",{class:"right-father"},[e.createElementVNode("view",{style:{"font-weight":"600","font-size":"90rpx","margin-right":"15rpx"}}," 10:18 "),e.createElementVNode("view",{class:"",style:{"font-weight":"600","margin-right":"50rpx"}},[e.createElementVNode("view",{class:""},"7-25"),e.createElementVNode("view",{class:""},"星期三")]),e.createElementVNode("view",{class:e.normalizeClass({targetbutton:_.value}),style:{display:"flex","align-items":"center"}},[e.createElementVNode("image",{style:{width:"65rpx",height:"65rpx"},src:"/static/index/newindex/curve/shezhi.png",onClick:oe}),e.createElementVNode("view",{style:{"font-size":"32rpx","margin-left":"10rpx"},onClick:oe}," 设置 ")],2)])]),e.createElementVNode("view",{class:"big-bgc"},[e.createElementVNode("view",{style:{width:"100%",position:"absolute",top:"0",left:"0","z-index":"1",display:"flex","align-items":"center"}},[e.createElementVNode("text",{style:{"margin-top":"40rpx","font-size":"32rpx","margin-left":"50rpx"}}," NUID:2508000001 "),e.createElementVNode("text",{class:"new-weight"}," 护理单元01 "),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("view",{class:"right-container-tem"},[e.createElementVNode("image",{class:"right-container-tem-img",src:A}),e.createElementVNode("text",{class:"right-container-tem-text"},"23°C"),e.createElementVNode("image",{class:"right-container-tem-img",src:L}),e.createElementVNode("text",{class:"right-container-tem-text"},"39%")])])])]),e.createElementVNode("view",{style:{display:"flex","margin-top":"20rpx"}},[e.createElementVNode("view",{class:"card-father"},[e.createElementVNode("view",{class:"up-title"},[e.createElementVNode("view",{class:""}," 监控截屏 "),e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx","margin-right":"20rpx"},src:$})]),e.createElementVNode("view",{style:{display:"flex"}},[e.createElementVNode("view",{class:"small-bgc",style:{"margin-right":"20rpx"}},[e.createElementVNode("image",{style:{width:"100%",height:"100%",position:"absolute",top:"0",left:"0"},src:O})]),e.createElementVNode("view",{class:"small-bgc"},[e.createElementVNode("image",{style:{width:"100%",height:"100%",position:"absolute",top:"0",left:"0"},src:O})])])]),e.createElementVNode("view",{class:"card-father"},[e.createElementVNode("view",{class:"up-title"},[e.createElementVNode("view",{class:""}," 视频回放 "),e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx","margin-right":"20rpx"},src:$})]),e.createElementVNode("view",{style:{display:"flex"}},[e.createElementVNode("view",{class:"small-bgc",style:{"margin-right":"20rpx"}},[e.createElementVNode("image",{style:{width:"100%",height:"100%",position:"absolute",top:"0",left:"0"},src:O}),e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx"},src:P})]),e.createElementVNode("view",{class:"small-bgc"},[e.createElementVNode("image",{style:{width:"100%",height:"100%",position:"absolute",top:"0",left:"0"},src:O}),e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx"},src:P})])])])]),e.createElementVNode("view",{class:"right-right"},[0===c.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"red-kuang"},[e.createElementVNode("image",{style:{width:"110rpx",height:"140rpx","margin-left":"40rpx","margin-top":"-10rpx"},src:"/static/index/watch/laotai.png"}),e.createElementVNode("view",{class:""},[e.createElementVNode("view",{style:{"margin-left":"20rpx",display:"flex","align-items":"center","margin-bottom":"5rpx","margin-top":"25rpx"}},[e.createElementVNode("view",{class:"font-weight"}," 王金凤 "),e.createElementVNode("view",{class:"font-small",style:{"margin-left":"10rpx"}}," 女 80岁 "),e.createElementVNode("view",{class:"blue-bgc"}," 当日指令 ")]),e.createElementVNode("view",{class:"font-small",style:{"margin-left":"20rpx","margin-top":"25rpx"}}," 入住时间:2025.01.01 ")])])):e.createCommentVNode("",!0),1===c.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"red-kuang"},[e.createElementVNode("image",{style:{width:"110rpx",height:"140rpx","margin-left":"40rpx","margin-top":"-10rpx"},src:"/static/index/watch/laotou.png"}),e.createElementVNode("view",{class:""},[e.createElementVNode("view",{style:{"margin-left":"20rpx",display:"flex","align-items":"center","margin-bottom":"5rpx","margin-top":"25rpx",height:"60rpx"}},[e.createElementVNode("view",{class:"font-weight"}," 李树奎 "),e.createElementVNode("view",{class:"font-small",style:{"margin-left":"10rpx"}}," 男 50岁 ")]),e.createElementVNode("view",{class:"font-small",style:{"margin-left":"20rpx","margin-top":"25rpx"}}," 入职时间:2025.01.15 ")])])):e.createCommentVNode("",!0),0===c.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"states-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(D.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["states",t.error?"warning":""]),key:l},[e.createElementVNode("image",{style:{width:"40rpx",height:"40rpx"},src:t.url},null,8,["src"]),e.createElementVNode("view",{style:{color:"#555555","margin-left":"5rpx","font-size":"25rpx"}},e.toDisplayString(t.name),1)],2)))),128))])):e.createCommentVNode("",!0),1===c.value?(e.openBlock(),e.createElementBlock("view",{key:3,class:"states-father"},[e.createElementVNode("view",{class:"phone-number"},[e.createElementVNode("image",{class:"bgc-image",src:"/static/index/watch/phonebgc.png"}),e.createElementVNode("image",{style:{width:"20rpx",height:"35rpx","margin-left":"40rpx"},src:"/static/index/watch/phone.png"}),e.createElementVNode("view",{class:"font-phone"},"15533556676"),e.createElementVNode("image",{class:"phone-ball",src:"/static/index/watch/phoneball.png"})])])):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"big-view"},[e.createElementVNode("view",{class:"font-weight"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"pao"},[e.createElementVNode("image",{style:{width:"100%",height:"100%",position:"absolute",top:"0",left:"0"},src:"/static/index/watch/pao.png"}),e.createElementVNode("view",{style:{"font-size":"20rpx","z-index":"1"}}," 待进行 ")]),e.createElementVNode("view",{class:"juzhong"},[e.createVNode(a,{width:"600rpx",height:"500rpx",links:V.value,playing:s.value,loop:!0,interval:120},null,8,["links","playing"])]),e.createElementVNode("view",{class:"juzhong",style:{"z-index":"2","margin-top":"80rpx"}},[e.createVNode(a,{width:"400rpx",height:"250rpx",links:k.value,playing:s.value,loop:!0,interval:120},null,8,["links","playing"])]),e.createElementVNode("image",{style:{width:"480rpx",height:"350rpx"},src:"/static/index/newindex/wendu/2.png"}),e.createElementVNode("view",{style:{"font-size":"38rpx"}}," 一级压疮防护 "),e.createElementVNode("view",{class:"small-button"},[e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:j})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:q})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:R})])])]),e.createElementVNode("view",{class:"right-bottom"},[e.createElementVNode("view",{style:{display:"flex","margin-left":"50rpx","padding-top":"30rpx"}},[e.createElementVNode("image",{class:"bottom-img",src:"/static/index/newindex/rightmenu/2.png"}),e.createElementVNode("view",{style:{"margin-top":"10rpx","margin-left":"5rpx"}}," 协助执行 ")]),e.createElementVNode("view",{style:{display:"flex"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(T.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"people-card",key:l},[e.createElementVNode("image",{style:{width:"60rpx",height:"60rpx"},src:t.url},null,8,["src"]),e.createElementVNode("view",{style:{"margin-left":"10rpx"}},e.toDisplayString(t.name),1)])))),128))])])])]),e.createVNode(W,{ref_key:"gobackdrawer",ref:m,circletarget:I.value,onOpen:F},{default:e.withCtx((()=>[e.createVNode(Y,{ref_key:"wheelRef",ref:u,opensecondmenu:M.value,onFirstIndex:w,onSecondIndex:h},null,8,["opensecondmenu"])])),_:1},8,["circletarget"]),e.createVNode(n,{onMovecard:J,getblue:d.value,moveleft:5},null,8,["getblue"])])}}}),[["__scopeId","data-v-ea21c8e9"]]),Q=s({__name:"exit",props:{show:{type:Boolean,default:!0}},emits:["close"],setup(t,{emit:l}){const a=t,i=e.ref(!1);e.watch((()=>a.show),((e,t)=>{!t&&e&&(i.value=!1,setTimeout((()=>i.value=!0),50))}));const n=l;function r(){n("close")}const o=()=>{uni.setStorageSync("token",1),plus.runtime.quit()};return(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["neuro-wrapper",i.value?"is-active":""])},[e.createElementVNode("view",{class:"neuro-mask",onClick:r}),e.createElementVNode("view",{class:"neuro-box",onClick:a[0]||(a[0]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"button-father"},[e.createElementVNode("view",{class:"button-white",onClick:r},"取消"),e.createElementVNode("view",{class:"button",onClick:o},"确定")]),e.createElementVNode("view",{class:"title"},"退出登录"),e.createElementVNode("view",{class:"card-font"}," 确定要注销155******76账户吗 ")])],2)),[[e.vShow,t.show]])}},[["__scopeId","data-v-1c53b005"]]),K=s({__name:"reset",props:{show:{type:Boolean,default:!0}},emits:["close"],setup(t,{emit:a}){const i=t,n=e.reactive({username:uni.getStorageSync("username"),oldpassword:"",password:"",confirmpassword:""}),r=e.ref(!1);e.watch((()=>i.show),((e,t)=>{!t&&e&&(r.value=!1,setTimeout((()=>r.value=!0),50))}));const o=a;function c(){o("close")}const s=()=>{n.username&&n.oldpassword&&n.password&&n.confirmpassword?n.password.length<6||n.confirmpassword.length<6?uni.showToast({title:"密码要多于六位",icon:"none",duration:2e3}):n.password===n.confirmpassword?(e=>p({url:`${uni.getStorageSync("serverUrl")}/sys/user/updatePassword`,method:"put",data:{username:e.username,oldpassword:e.oldpassword,password:e.password,confirmpassword:e.confirmpassword}}))(n).then((e=>{l("log","at component/public/reset.vue:105","res",e),e.success?(uni.showToast({title:e.message,icon:"none",duration:2e3}),setTimeout((()=>{uni.setStorageSync("token",1),uni.reLaunch({url:"/pages/login/login"})}),1e3)):uni.showToast({title:e.message,icon:"none",duration:2e3})})):uni.showToast({title:"新密码与确认密码不一致",icon:"none",duration:2e3}):uni.showToast({title:"请完善信息",icon:"error",duration:2e3})};return(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["neuro-wrapper",r.value?"is-active":""])},[e.createElementVNode("view",{class:"neuro-mask",onClick:c}),e.createElementVNode("view",{class:"neuro-box",onClick:a[3]||(a[3]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"button-father"},[e.createElementVNode("view",{class:"button",onClick:s},"确定")]),e.createElementVNode("view",{class:"title"},"修改账号登录密码"),e.createElementVNode("view",{class:"password-father",style:{"margin-top":"50rpx"}},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":a[0]||(a[0]=e=>n.oldpassword=e),maxlength:"15",placeholder:"请输入旧密码"},null,512),[[e.vModelText,n.oldpassword]])]),e.createElementVNode("view",{class:"password-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":a[1]||(a[1]=e=>n.password=e),maxlength:"15",placeholder:"请输入新密码"},null,512),[[e.vModelText,n.password]])]),e.createElementVNode("view",{class:"password-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":a[2]||(a[2]=e=>n.confirmpassword=e),maxlength:"15",placeholder:"请再次输入新密码"},null,512),[[e.vModelText,n.confirmpassword]])]),e.createElementVNode("view",{class:"card-font"})])],2)),[[e.vShow,t.show]])}},[["__scopeId","data-v-8de7e110"]]),ee=s(e.defineComponent({__name:"settings",emits:["jump"],setup(t,{emit:l}){const a=e.ref(null),i=e.ref(!1),n=e.ref(!1),r=e.ref(!1),o=e.ref(!1),c=e.ref(!1),s=e.ref(["雷达扫描","扫码添加","手动录入","修改密码","切换机构","检查更新","用户协议","隐私政策"]);e.ref(!0),e.ref("");const v=e.ref(!1),p=e=>{var t;switch(e){case 0:uni.navigateTo({url:"/pages/watch/settings/leida"});break;case 1:uni.navigateTo({url:"/pages/watch/settings/saoma"});break;case 2:uni.navigateTo({url:"/pages/watch/settings/input"});break;case 3:c.value=!0;break;case 4:break;case 5:i.value=!0,null==(t=a.value)||t.check_update();break;case 6:n.value=!0,r.value=!0,v.value=!1,setTimeout((()=>{v.value=!0}),50);break;case 7:n.value=!0,r.value=!1,v.value=!1,setTimeout((()=>{v.value=!0}),50)}},g=()=>{i.value&&uni.showToast({title:"已经是最新版了",icon:"none",duration:2e3})},w=()=>{uni.navigateBack()};return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"index-content-other"},[e.createElementVNode("view",{class:"index-content-right",onClick:w},[e.createElementVNode("image",{class:"back-img",src:"/static/index/settings/back.png"},null,8,["src"]),e.createTextVNode(" 返回 ")]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value.slice(0,3),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>p(l)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value.slice(3,5),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>p(l+3)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l+3}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value.slice(5,8),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>p(l+5)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l+5}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"bottom-button",onClick:l[0]||(l[0]=e=>o.value=!0)}," 注销登录 "),e.createElementVNode("view",{class:"text-center"},[e.createElementVNode("view",null,"长春市朝阳区久泰开运养老服务有限公司")]),e.createVNode(Q,{show:o.value,onClose:l[1]||(l[1]=e=>o.value=!1)},null,8,["show"]),e.createVNode(K,{show:c.value,onClose:l[2]||(l[2]=e=>c.value=!1)},null,8,["show"]),e.createVNode(d,{ref_key:"zyupgrade",ref:a,noticeflag:!0,theme:"blue",h5preview:!1,oldversion:"1.0.0",appstoreflag:!0,autocheckupdate:!0,onShowupdateTips:g},null,512),n.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-any",style:e.normalizeStyle(v.value?{opacity:1}:{opacity:0})},[e.createElementVNode("view",{class:"mask",onClick:l[3]||(l[3]=e=>n.value=!1)}),e.createElementVNode("view",{class:"box-any"},[e.createElementVNode("view",{class:"title-left"},[r.value?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"back-font"},"NU护理单元隐私信息保护政策")),r.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"back-font"},"NU护理单元用户服务协议")):e.createCommentVNode("",!0)]),r.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(u,{key:0})),r.value?(e.openBlock(),e.createBlock(m,{key:1})):e.createCommentVNode("",!0)])],4)):e.createCommentVNode("",!0)]))}}),[["__scopeId","data-v-ccb4084b"]]),te="/static/click.png",le="/static/x.png",ae=s(e.defineComponent({__name:"input",setup(t){const l=()=>{uni.navigateBack()},a=e.ref("");return(t,i)=>(e.openBlock(),e.createElementBlock("view",{class:"index-content-other"},[e.createElementVNode("view",{class:"index-content-right",onClick:l},[e.createElementVNode("image",{class:"back-img",src:"/static/index/settings/back.png"},null,8,["src"]),e.createTextVNode(" 返回 ")]),e.createElementVNode("view",{class:"saomiao"},[e.createElementVNode("view",{class:"big-ball"},[e.createElementVNode("view",{class:"ball"})]),e.createElementVNode("image",{class:"left-img",src:te}),e.withDirectives(e.createElementVNode("input",{class:"saoma-input",password:!1,"onUpdate:modelValue":i[0]||(i[0]=e=>a.value=e),placeholder:"请手动录入NUID"},null,512),[[e.vModelText,a.value]]),e.withDirectives(e.createElementVNode("image",{class:"right-img",src:le,onClick:i[1]||(i[1]=e=>a.value="")},null,512),[[e.vShow,a.value]]),e.createElementVNode("view",{class:"blue-button"}," 确定 ")]),e.createElementVNode("image",{class:"big-bgc",src:"/static/bgc.png"}),e.createElementVNode("image",{class:"big-img",src:"/static/qiu.png"}),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")]))}}),[["__scopeId","data-v-87f7dd57"]]),ie=s(e.defineComponent({__name:"saoma",setup(t){const l=()=>{uni.navigateBack()};function a(){uni.scanCode({onlyFromCamera:!0,scanType:["qrCode","barCode"],success(e){},fail(e){}})}return e.ref(""),(t,i)=>(e.openBlock(),e.createElementBlock("view",{class:"index-content-other"},[e.createElementVNode("view",{class:"index-content-right",onClick:l},[e.createElementVNode("image",{class:"back-img",src:"/static/index/settings/back.png"},null,8,["src"]),e.createTextVNode(" 返回 ")]),e.createElementVNode("view",{class:"saomiao"}),e.createElementVNode("image",{class:"big-bgc",src:"/static/kuai.png"}),e.createElementVNode("view",{class:"big-img",onClick:a},[e.createElementVNode("image",{style:{width:"100%",height:"100%"},src:"/static/sao.png"}),e.createElementVNode("view",{class:"big-font"}," 点击扫描区域二维码 ")]),e.createElementVNode("image",{class:"big-QR",src:"/static/qr.png",onClick:a}),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")]))}}),[["__scopeId","data-v-33cdb877"]]),ne="/static/index/quxiao.png",re=()=>p({url:`${uni.getStorageSync("serverUrl")}/api/pad/baseInfo/queryPadPageList?token=${uni.getStorageSync("token")}`,method:"get"}),oe=s(e.defineComponent({__name:"leida",setup(t){const l=()=>{uni.navigateBack()},a=e.ref(!0),i=e.ref(0),n=e.ref(100),r=e.ref(-1),o=e.ref(""),c=e.ref(),s=e.ref(!1),d=e.ref([{url:"/static/index/leida/00.png",targetUrl:"/static/index/leida/01.png",target:!1},{url:"/static/index/leida/10.png",targetUrl:"/static/index/leida/11.png",target:!1},{url:"/static/index/leida/20.png",targetUrl:"/static/index/leida/21.png",target:!1},{url:"/static/index/leida/30.png",targetUrl:"/static/index/leida/31.png",target:!1}]),m=e.ref([]),u=e.ref([]),v=e.ref(0);let p=null;function g(e){return"function"==typeof globalThis.requestAnimationFrame?globalThis.requestAnimationFrame(e):setTimeout((()=>e(Date.now())),16)}function w(e){var t;return"number"==typeof e?e:(null==(t=globalThis.performance)?void 0:t.now)?globalThis.performance.now():Date.now()}let h=null;function f(e){const t=w(e);h||(h=t);const l=(t-h)/1e3;h=t,a.value&&(i.value=(i.value+n.value*l)%360),p=g(f)}function N(){100===D.value&&(C(),y())}function y(){a.value=!a.value,a.value?(h=w(),k()):T()}const x=e.computed((()=>({transform:`rotate(${i.value}deg)`}))),E=e.ref([]);let V=null,b=0;function k(){V||(V=setInterval((()=>{!function(){const e=1*Math.random()+5,t=Math.random()*(200-e),l=Math.random()*(200-e),a=b++,i={id:a,size:e,left:t,top:l,color:"#02a9ff",opacity:0};E.value.push(i),setTimeout((()=>{i.opacity=1}),20),setTimeout((()=>{i.opacity=0,setTimeout((()=>{E.value=E.value.filter((e=>e.id!==a))}),500)}),2e3)}()}),500))}function T(){clearInterval(V),V=null}const D=e.ref(0);function C(){let e=Date.now(),t=Math.floor(30*Math.random())+30,l=!1,a=Math.floor(500*Math.random())+300,i=0;re().then((e=>{e.result.records.forEach((e=>{e.menu=JSON.parse(JSON.stringify(d.value)),e.isNew=!0})),u.value=[],u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),function(){const e=u.value.length;m.value=[];const t=Array.from({length:e},(()=>Math.random())),l=t.reduce(((e,t)=>e+t),0),a=t.map((e=>e/l*4e3));let i=0;for(let n=0;n{m.value.push(u.value[n]),m.value.length}),i)}()})),setTimeout((function n(){let r=Date.now()-e;if(!l&&D.value>=t&&(l=!0,i=Date.now()),l){if(!(Date.now()-i>=a))return void setTimeout(n,16);l=!1}let o=Math.min(r/4e3,1);D.value=Math.floor(100*o),100===D.value&&y(),D.value<100&&setTimeout(n,16)}),16)}const S=(e,t)=>{r.value=e,o.value=t.nuName,c.value=t.nuId,s.value=!1,setTimeout((()=>{s.value=!0}),50)};e.onMounted((()=>{B()}));const B=()=>{h=w(),p=g(f),k(),C()},z=e.ref(-1),_=e.ref(-1),I=e=>{if(100===D.value)switch(e){case 0:if(0===_.value)return void(_.value=1);if(1===_.value)return void(_.value=0);z.value-2<-1?z.value=-1:(z.value=z.value-2,U(z.value));break;case 1:if(0===_.value)return void(_.value=1);if(1===_.value)return void(_.value=0);z.value+1>m.value.length-1||(z.value++,U(z.value));break;case 2:if(0===_.value)return void(_.value=1);if(1===_.value)return void(_.value=0);z.value+1===m.value.length-1||-1===z.value?(z.value++,U(z.value)):z.value+2>m.value.length-1||(z.value=z.value+2,U(z.value));break;case 3:if(0===_.value)return void(_.value=1);if(1===_.value)return void(_.value=0);-1!==z.value&&(z.value--,U(z.value));break;case 4:if(1===_.value)return void S(z.value,m.value[z.value]);-1===z.value?N():_.value=0;break;case 5:-1!==_.value?_.value=-1:l()}};function U(t){const l=m.value.length;t<0&&(t=0),t>=l&&(t=l-1),e.nextTick((()=>{const e=245*Math.floor(t/2),a=e+245,i=v.value,n=i+475;let r=v.value;en&&(r=a-475);const o=245*Math.ceil(l/2),c=Math.max(0,o-475);r<0&&(r=0),r>c&&(r=c),v.value=Math.round(r)}))}return e.onBeforeUnmount((()=>{var e;null!=p&&(e=p,"function"==typeof globalThis.cancelAnimationFrame?globalThis.cancelAnimationFrame(e):clearTimeout(e)),T()})),(t,a)=>{const i=e.resolveComponent("arrowkeys");return e.openBlock(),e.createElementBlock("view",{class:"index-content-other"},[e.createElementVNode("view",{class:"index-content-right",onClick:l},[e.createElementVNode("image",{class:"back-img",src:"/static/index/settings/back.png"},null,8,["src"]),e.createTextVNode(" 返回 ")]),e.createElementVNode("view",{class:"left-contain"},[e.createElementVNode("view",{class:"blue-bgc"},[e.createElementVNode("image",{class:"all-img",src:"/static/index/leida/leftbgc.png"}),e.createElementVNode("image",{class:"all-img",style:{width:"90%",height:"90%","margin-top":"5%","margin-left":"5%"},src:"/static/index/leida/bigball.png"}),e.createElementVNode("view",{class:"inset-img",style:e.normalizeStyle(x.value)},[e.createElementVNode("image",{class:"all-img",style:{"z-index":"2"},src:"/static/index/leida/biao.png"}),e.createElementVNode("image",{class:"all-img",style:{"z-index":"1"},src:"/static/index/leida/ball.png"}),e.createElementVNode("image",{class:"all-img",src:"/static/index/leida/shallow.png"})],4),e.createElementVNode("view",{class:"ball-layer"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E.value,(t=>(e.openBlock(),e.createElementBlock("view",{key:t.id,class:"ball",style:e.normalizeStyle({width:t.size+"px",height:t.size+"px",top:t.top+"px",left:t.left+"px",backgroundColor:t.color,opacity:t.opacity})},null,4)))),128))])]),e.createElementVNode("view",{style:{width:"100%",display:"flex","flex-direction":"column","align-items":"center"}},[e.createElementVNode("view",{class:e.normalizeClass(["blue-button",-1==z.value?"zerotarget":""]),style:{"margin-top":"0"},onClick:N},e.toDisplayString((D.value,"扫描")),3),e.createElementVNode("view",{class:"progress-wrap"},[e.createElementVNode("view",{class:"progress-inner",style:e.normalizeStyle({width:D.value+"%"})},null,4)]),e.createElementVNode("view",{class:"progress-text"},e.toDisplayString(D.value)+"%",1)])]),e.createElementVNode("view",{class:"other"},[e.createElementVNode("scroll-view",{ref:"scrollViewRef","scroll-y":"",class:"other-father","scroll-top":v.value},[e.createElementVNode("view",{class:"card-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["card",[z.value===l&&-1===_.value?"zerotarget":"",{"fade-in":t.isNew}]]),key:l,onAnimationend:e=>{t.isNew=!1}},[e.createElementVNode("view",{class:"main-title"},[e.createElementVNode("view",{class:"main-title-font",style:{"font-weight":"600","font-size":"40rpx"}},e.toDisplayString(t.nuName),1),e.createElementVNode("view",{class:e.normalizeClass(["video-father",z.value===l&&0===_.value?"zerotarget":""])},[e.createElementVNode("image",{class:"edit-img",onClick:a[0]||(a[0]=()=>{}),src:"/static/index/leida/play.png"})],2)]),e.createElementVNode("view",{class:e.normalizeClass(["blue-button",z.value===l&&1===_.value?"zerotarget":""]),style:{width:"200rpx",height:"70rpx","margin-top":"50rpx"},onClick:e=>S(l,t)}," 重命名 ",10,["onClick"]),e.createElementVNode("view",{class:"card-tags"},[e.createElementVNode("view",{style:{"margin-left":"80rpx"}}," NUID:"+e.toDisplayString(t.nuId),1)]),e.createElementVNode("view",{class:"play-img"}," 护理单元 ")],42,["onAnimationend"])))),128)),-1!==r.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-any",style:e.normalizeStyle(s.value?{opacity:1}:{opacity:0})},[e.createElementVNode("view",{class:"mask",onClick:a[1]||(a[1]=e=>r.value=-1)}),e.createElementVNode("view",{class:"rename-father"},[e.createElementVNode("view",{class:"rename-title"}," 重命名 "),e.createElementVNode("view",{style:{width:"100%","margin-left":"5rpx","margin-bottom":"20rpx"}}," NUID:"+e.toDisplayString(c.value),1),e.createElementVNode("view",{class:"rename-input"},[e.withDirectives(e.createElementVNode("input",{class:"uni-input",placeholder:"请重新命名","onUpdate:modelValue":a[2]||(a[2]=e=>o.value=e)},null,512),[[e.vModelText,o.value]]),e.withDirectives(e.createElementVNode("image",{class:"right-img",src:ne,onClick:a[3]||(a[3]=e=>o.value="")},null,512),[[e.vShow,o.value]])]),e.createElementVNode("view",{class:"blue-button",style:{width:"200rpx",height:"70rpx","margin-top":"40rpx"},onClick:a[4]||(a[4]=e=>{return t=o.value,l=r.value,t&&(m.value[l].nuName=t),void(r.value=-1);var t,l})}," 确定 ")])],4)):e.createCommentVNode("",!0)])],8,["scroll-top"])]),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 "),e.createVNode(i,{onMovecard:I})])}}}),[["__scopeId","data-v-2b7adbee"]]),ce=s(e.defineComponent({__name:"index",props:{isShow:{type:Boolean,required:!0},propsmove:{type:Number},isMain:{type:Boolean}},emits:["back"],setup(t,{emit:l}){const a=t,i=e.ref(-1);e.watch((()=>a.isMain),((e,t)=>{"boolean"==typeof t&&a.isShow&&(!0===t&&!1===e?(i.value=0,n.value=0,o.value=n.value):!1===t&&!0===e&&(i.value=-1,n.value=-1,o.value=0))}));const n=e.ref(-1),r=l;e.watch((()=>a.propsmove),(()=>{if(-1!=i.value)switch(i.value){case 0:switch(a.propsmove){case 0:i.value=-1,n.value=-1,r("back");break;case 1:n.value{const o=n?String(r+i).padStart(2,"0"):r+i;return`${e}/${t}${o}.${a}`}))}const u=e.ref([{url:"/static/index/newindex/rightmenu/0.png",name:"重点追踪"},{url:"/static/index/newindex/rightmenu/1.png",name:"转单执行"},{url:"/static/index/newindex/rightmenu/2.png",name:"协助执行"}]),v=e.ref([{url:"/static/index/newindex/states/0.png",name:"狂躁"},{url:"/static/index/newindex/states/1.png",name:"易怒"},{url:"/static/index/newindex/states/2.png",name:"大体重"},{url:"/static/index/newindex/states/3.png",name:"四肢"}]),p=e.ref(m("/static/index/newindex/leftmenu","",3,"png",0,!1));e.ref(m("/static/index/newindex/huli","care",9,"png",0,!1));const g=m("/static/index/newindex/curve","curve_",9,"png",1,!1),w=e.ref([...g,...[...g].reverse()]),h=m("/static/index/newindex/curve","breathe_",9,"png",1,!1),f=e.ref([...h,...[...h].reverse()]),N=e.ref([{url:m("/static/index/newindex/huli","care",8,"png",0,!1),name:"护理类"},{url:m("/static/index/newindex/yiliao","health_",9,"png",1,!1),name:"医疗类"},{url:m("/static/index/newindex/kufang","storeroom_",11,"png",1,!1),name:"库房类"},{url:m("/static/index/newindex/baojie","clean_",12,"png",1,!1),name:"保洁类"},{url:m("/static/index/newindex/xiaoxi","wash_",14,"png",1,!1),name:"消洗类"},{url:m("/static/index/newindex/kangfu","recovery_",6,"png",1,!1),name:"康复类"}]),y=e.ref(!1);e.watch((()=>a.isShow),((e,t)=>{!t&&e?(y.value=!1,setTimeout((()=>{y.value=!0}),50)):y.value=!1}));const x=e.ref("");return e.onMounted((()=>{x.value=uni.getStorageSync("realname"),o.value=0,c.value=!0})),(t,l)=>{const a=e.resolveComponent("donghua");return e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(y.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{style:{"margin-left":"30rpx"}}," NUID:2508000001 "),e.createElementVNode("text",{class:"new-weight"}," 护理单元01 "),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("view",{class:"right-container-tem"},[e.createElementVNode("image",{class:"right-container-tem-img",src:A}),e.createElementVNode("text",{class:"right-container-tem-text"},"23°C"),e.createElementVNode("image",{class:"right-container-tem-img",src:L}),e.createElementVNode("text",{class:"right-container-tem-text"},"39%")]),e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",null,e.toDisplayString(x.value),1)])]),e.createElementVNode("view",{class:"scroll-vi"},[e.createElementVNode("view",{class:"zhezhao-left"}),e.createElementVNode("view",{class:"zhezhao-right"}),e.createElementVNode("scroll-view",{"scroll-x":"true",style:{width:"100%",height:"100%"}},[e.createElementVNode("view",{style:{display:"flex","align-items":"center"}},[e.createElementVNode("view",{style:{width:"100rpx"}}),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(N.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass([{zerotarget:0===i.value&&n.value===l},"menu"]),style:e.normalizeStyle({backgroundColor:0===i.value&&n.value===l?"#ddf0ff":""}),onClick:e=>{o.value=l,n.value=l}},[e.createVNode(a,{links:t.url,playing:o.value===l},null,8,["links","playing"]),e.createElementVNode("text",{class:e.normalizeClass(["menu-font",{zoom:o.value===l}]),style:e.normalizeStyle(o.value===l?{color:"#008FF5"}:{})},e.toDisplayString(t.name),7)],14,["onClick"])))),128)),e.createElementVNode("view",{style:{width:"100rpx"}})])])]),e.createElementVNode("view",{class:"photo-father"},[e.createElementVNode("view",{class:"juzhong",style:{"margin-left":"-50rpx"}},[e.createVNode(a,{width:"1500rpx",height:"1000rpx",links:w.value,playing:c.value,loop:!0,interval:120},null,8,["links","playing"])]),e.createElementVNode("view",{class:"juzhong",style:{"z-index":"2","margin-top":"120rpx"}},[e.createVNode(a,{width:"800rpx",height:"500rpx",links:f.value,playing:c.value,loop:!0,interval:120},null,8,["links","playing"])]),e.createElementVNode("view",{class:"weight-time"},[e.createTextVNode(" 10:00 - 10:10 "),e.createElementVNode("view",{class:"pao-father"},[e.createElementVNode("image",{class:"pao-img",src:"/static/index/newindex/states/pao.png"},null,8,["src"]),e.createElementVNode("view",{style:{"z-index":"1"}}," 待执行 ")])]),e.createElementVNode("image",{class:"big-img",src:"/static/index/newindex/wendu/2.png"},null,8,["src"]),e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-top":"5rpx"}},[e.createElementVNode("view",{class:"server-name"}," 一级压疮防护 ")]),e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-top":"40rpx"}},[e.createElementVNode("image",{class:"down-img",src:"/static/index/newindex/states/left.png"},null,8,["src"]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(v.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"states-father"},[e.createElementVNode("image",{class:"icon-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{style:{"margin-top":"15rpx","margin-left":"10rpx"}},e.toDisplayString(t.name),1)])))),128)),e.createElementVNode("image",{class:"down-img",src:"/static/index/newindex/states/right.png"},null,8,["src"])]),e.createElementVNode("view",{style:{display:"flex","margin-top":"60rpx"}},[e.createElementVNode("view",{class:e.normalizeClass({thirdtarget:3===i.value&&0===n.value}),style:{width:"240rpx",height:"90rpx","margin-right":"40rpx"}},[e.createElementVNode("view",{class:"start-button"}," 开始服务 ")],2),e.createElementVNode("view",{class:e.normalizeClass({thirdtarget:3===i.value&&1===n.value}),style:{width:"240rpx",height:"90rpx"}},[e.createElementVNode("view",{class:"end-button"}," 结束服务 ")],2)])]),e.createElementVNode("view",{class:"left-menu"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,style:{margin:"30rpx 0"},class:e.normalizeClass({firsttarget:1===i.value&&n.value===l})},[e.createElementVNode("view",{class:"left-ball",style:e.normalizeStyle({backgroundColor:1===i.value&&n.value===l?"#ddf0ff":""})},[e.createElementVNode("image",{class:"left-menu-img",src:t},null,8,["src"])],4)],2)))),128))]),e.createElementVNode("view",{class:"right-menu"},[e.createElementVNode("view",{class:"zhezhao-top",onClick:l[0]||(l[0]=e=>s.value-=115)}),e.createElementVNode("view",{class:"zhezhao-bottom",onClick:l[1]||(l[1]=e=>s.value+=115)}),e.createElementVNode("image",{class:"top-img",src:"/static/index/newindex/rightmenu/top.png",onClick:l[2]||(l[2]=e=>s.value>0?s.value-=115:s.value=0)},null,8,["src"]),e.createElementVNode("scroll-view",{"scroll-y":"true",class:"right-scroll","scroll-top":s.value,onScroll:d},[e.createElementVNode("view",{style:{height:"30rpx"}}),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass({secondtarget:2===i.value&&n.value===l}),style:{margin:"20rpx auto",width:"110rpx"}},[e.createElementVNode("view",{class:"white-circle",style:e.normalizeStyle({backgroundColor:2===i.value&&n.value===l?"#ddf0ff":""})},[e.createElementVNode("image",{class:"right-menu-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"right-menu-name"},e.toDisplayString(t.name),1)],4)],2)))),256)),e.createElementVNode("view",{style:{height:"30rpx"}})],40,["scroll-top"]),e.createElementVNode("image",{class:"top-img",src:"/static/index/newindex/rightmenu/bottom.png",onClick:l[3]||(l[3]=e=>s.value>55*u.value.length?s.value=55*u.value.length:s.value+=115)},null,8,["src"])])],4)}}}),[["__scopeId","data-v-9c8806b6"]]),se="/static/index/newruler/jiao.png";function de(e,t,l,a="png",i=0,n=!1){return Array.from({length:l},((l,r)=>{const o=n?String(r+i).padStart(2,"0"):r+i;return`${e}/${t}${o}.${a}`}))}const me=[{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706886",title:"协助喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604232524795905",title:"鼻饲喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604428667228162",title:"注射器/吸管喂药",tagName:"头部,大体重"}],levle:"2",title:"协助喂药",key:"1900114812020310017",parentId:"1900112597427793921",url:de("/static/index/diet","medicine_",7,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605892869394433",title:"一级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606105021485058",title:"二级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606339931869185",title:"三级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606614344208386",title:"一级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606869953482753",title:"二级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607023431454722",title:"三级压疮防护",tagName:"大体重"}],levle:"2",title:"压疮防护",key:"1900115034452639746",parentId:"1900112597427793921",url:de("/static/index/diet","knead_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706887",title:"床椅转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706888",title:"床椅转移",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605073730211842",title:"床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605223185846273",title:"床椅转移",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605365393723393",title:"协助床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605496071458818",title:"协助床椅转移",tagName:null}],levle:"2",title:"床椅转移",key:"1902248363784159233",parentId:"1900112597427793921",url:de("/static/index/diet","chair_",8,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607507626102786",title:"轮椅防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607677415723010",title:"轮椅防护",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902607817589362689",title:"轮椅防护",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902608061588803585",title:"轮椅防护",tagName:"大体重"}],levle:"2",title:"轮椅防护",key:"1902280900178886657",parentId:"1900112597427793921",url:de("/static/index/diet","wheelchair_",10,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608564582322178",title:"约束位按摩",tagName:"手"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608974609092610",title:"约束位按摩",tagName:"足"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618507855237121",title:"约束位按摩",tagName:"全"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618751548493825",title:"防护网约束",tagName:null}],levle:"2",title:"约束防护",key:"1902280933364219906",parentId:"1900112597427793921",url:de("/static/index/diet","constraint_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620309090701314",title:"协助行走",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620486044192769",title:"放松按摩",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902625161569079298",title:"心灵慰藉",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902625402468929537",title:"狂躁",tagName:null}],levle:"2",title:"按摩保健",key:"1902564031454744577",parentId:"1900112597427793921",url:de("/static/index/diet","massage_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902625872432304130",title:"准备衣物",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626005538541569",title:"协助更换",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626664711163905",title:"肢体障碍",tagName:"半侧"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626800510144513",title:"肢体障碍",tagName:"全身"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627064688381953",title:"准备衣物",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627280716009474",title:"协助更换",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627416598876161",title:"肢体障碍",tagName:"半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627522404388866",title:"肢体障碍",tagName:"全身"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902627711806574593",title:"协助更换",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628058591629313",title:"肢体障碍",tagName:"半侧,大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628650718302209",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628837725540354",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628966847188993",title:"肢体障碍",tagName:"大体重,半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902629129879785474",title:"协助更换",tagName:"大体重"}],levle:"2",title:"更换衣物",key:"1902564088417587201",parentId:"1900112597427793921",url:de("/static/index/diet","replace_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629344456183809",title:"坐起",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629492301205506",title:"躺下",tagName:null}],levle:"2",title:"调整坐卧",key:"1902564199830884354",parentId:"1900112597427793921",url:de("/static/index/diet","adjust_",7,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902630862769065985",title:"遗体净身",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902631162275926017",title:"遗体穿衣",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631422431825921",title:"遗体转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631602463936514",title:"床位消毒",tagName:null}],levle:"2",title:"殡仪服务",key:"1902564263743688705",parentId:"1900112597427793921",url:de("/static/index/diet","exequy_",4,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902631830441136129",title:"更换床上用品",tagName:"全部"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632063828987905",title:"隔尿褥子更换",tagName:null}],levle:"2",title:"更换床上用品",key:"1902564446648897538",parentId:"1900112597427793921",url:de("/static/index/diet","change_",6,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632288270389250",title:"临终护理",tagName:null}],levle:"2",title:"临终服务",key:"1902564503783706625",parentId:"1900112597427793921",url:de("/static/index/diet","funeral_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"40",id:"1902632678701371393",title:"制氧机吸氧",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902632799853842433",title:"制氧机维护",tagName:null}],levle:"2",title:"制氧机应用",key:"1902564586101116930",parentId:"1900112597427793921",url:de("/static/index/diet","oxygen_",6,"png",1,!1)}],levle:"1",title:"1 日常照料",key:"1900112597427793921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900376187661553665",title:"准备洁具",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900420873478553602",title:"棉球清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706881",title:"协助清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706885",title:"义齿清洁",tagName:"口腔"}],levle:"2",title:"口腔清洁",key:"1902597070889127938",parentId:"1900112615777873921",url:de("/static/index/diet","oral_",7,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902636771540963329",title:"准备洁具",tagName:"头部"},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637623425077250",title:"协助洗头",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637985234128898",title:"卧式洗头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902638122949906433",title:"擦头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902638304739430401",title:"刮头",tagName:null}],levle:"2",title:"头部清洁",key:"1902597497344987137",parentId:"1900112615777873921",url:de("/static/index/diet","head_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902641763073101826",title:"准备洁具",tagName:"面部"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642254465175553",title:"协助洁面",tagName:null}],levle:"2",title:"面部清洁",key:"1902597651405967361",parentId:"1900112615777873921",url:de("/static/index/diet","wash_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642508145070081",title:"准备洁具",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642672796667905",title:"协助清洁",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642822885642242",title:"卧床清洁",tagName:"躯干"}],levle:"2",title:"躯干清洁",key:"1902597718082818050",parentId:"1900112615777873921",url:de("/static/index/diet","limbs_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643318811758594",title:"准备洁具",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643483320750082",title:"协助清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643630888947713",title:"卧床清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643837525528578",title:"肌张力高",tagName:"清洁"}],levle:"2",title:"四肢清洁",key:"1902597811565465601",parentId:"1900112615777873921",url:de("/static/index/diet","torso_",6,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645148199391234",title:"会阴清洁",tagName:"男"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645295457210369",title:"会阴清洁",tagName:"女"}],levle:"2",title:"会阴清洁",key:"1902597873964126209",parentId:"1900112615777873921",url:de("/static/index/diet","perineum_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645493185089537",title:"肛周清洁",tagName:null}],levle:"2",title:"肛周清洁",key:"1902597930020999170",parentId:"1900112615777873921",url:de("/static/index/diet","perianal_",7,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645693211447298",title:"洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647316134465538",title:"泡手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647529817477122",title:"准备洁具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647673212342274",title:"协助洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647905878773762",title:"强直屈曲洗手",tagName:null}],levle:"2",title:"手清洁",key:"1902597991698239489",parentId:"1900112615777873921",url:de("/static/index/diet","hands_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648101203316737",title:"泡脚",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648239091060737",title:"卧式泡脚",tagName:null}],levle:"2",title:"足清洁",key:"1902598178588037121",parentId:"1900112615777873921",url:de("/static/index/diet","feet_",4,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648426383511553",title:"修睫毛",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648548777496577",title:"剃须",tagName:null}],levle:"2",title:"剃须",key:"1902598258573414401",parentId:"1900112615777873921",url:de("/static/index/diet","shave_",6,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648962444922882",title:"角质增生",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649132536532994",title:"灰指甲",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649302149992449",title:"正常",tagName:"修甲"}],levle:"2",title:"修甲",key:"1902598354606198785",parentId:"1900112615777873921",url:de("/static/index/diet","clippers_",6,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902649683919736834",title:"理发",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"25",id:"1902649860344745985",title:"理发",tagName:"颅骨缺损"}],levle:"2",title:"理发",key:"1902598400382832642",parentId:"1900112615777873921",url:de("/static/index/diet","haircut_",5,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902650121280786434",title:"床上沐浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650408884211713",title:"深度清洁",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650763722330113",title:"浴间洗浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"30",id:"1902651229122301954",title:"床上沐浴",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651366317985794",title:"深度清洁",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651555363655682",title:"浴间洗浴",tagName:"大体重"}],levle:"2",title:"沐浴",key:"1902598454782955522",parentId:"1900112615777873921",url:de("/static/index/diet","bathe_",9,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651778777452545",title:"内套管清洁",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651924047171586",title:"更换气切纱布",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"10",id:"1902652055928672258",title:"更换气切纱布",tagName:null}],levle:"2",title:"气切消毒",key:"1902598509522817026",parentId:"1900112615777873921",url:de("/static/index/diet","omy_",4,"png",1,!1)}],levle:"1",title:"2 清洁照料",key:"1900112615777873921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898057679966209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898202668666881",title:"协助进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898339931459586",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898472584712194",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898590658564097",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898719952179201",title:"准备餐具",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898979948695554",title:"协助进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899086840532993",title:"协助进餐",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899214838108162",title:"鼻胃管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899325014085633",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899587028062210",title:"食物加工",tagName:null}],levle:"2",title:"加餐饮食",key:"1902596129720864770",parentId:"1902280495747317762",url:de("/static/index/diet","snack_",7,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281139677839362",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902281522340970498",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281654100836354",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281870434648066",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902654960639381506",title:"鼻肠管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902655101874180097",title:"轮椅进餐",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902892199009030145",title:"轮椅进餐",tagName:null}],levle:"2",title:"正餐饮食",key:"1902601263850950657",parentId:"1902280495747317762",url:de("/static/index/diet","dinner_",8,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893231608926209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893551978254337",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893716466274306",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894369850757122",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894528533860354",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"辅餐饮食",key:"1902601382595891202",parentId:"1902280495747317762",url:de("/static/index/diet","food_",6,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894832176304129",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894954117304322",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895077522116609",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895233407619073",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895569912434689",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"果汁饮食",key:"1902601427168759809",parentId:"1902280495747317762",url:de("/static/index/diet","juice_",9,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895878508351489",title:"准备水杯",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895984053817346",title:"协助饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896136835534850",title:"协助饮水",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896508421509122",title:"鼻胃管饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896636553302017",title:"鼻肠管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902896855802155010",title:"准备水杯",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897018344017921",title:"协助饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897464936730626",title:"协助饮水",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897675813752834",title:"鼻胃管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897803417063426",title:"鼻肠管饮水",tagName:null}],levle:"2",title:"饮水饮食",key:"1902601487625457665",parentId:"1902280495747317762",url:de("/static/index/diet","drink_",5,"png",1,!1)}],levle:"1",title:"3 饮食照料",key:"1902280495747317762"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902653177363927041",title:"巡视",tagName:null}],levle:"2",title:"巡视",key:"1902564741860790273",parentId:"1902560466095017986",url:de("/static/index/diet","posture_",6,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653325481578497",title:"防坠床",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653497066360833",title:"被褥调整",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653650917625857",title:"睡姿调整",tagName:null}],levle:"2",title:"体位调整",key:"1902564818838851585",parentId:"1902560466095017986",url:de("/static/index/diet","visitation_",5,"png",1,!1)}],levle:"1",title:"4 睡眠照料",key:"1902560466095017986"},{children:[{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904277308510210",title:"更换尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904458779267073",title:"更换隔尿垫",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905631242424322",title:"使用尿盆",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905824973131777",title:"使用尿壶",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906220483416065",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906459051233281",title:"坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906610562076674",title:"留置尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906783325458434",title:"更换纸尿裤",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908406344945665",title:"热敷抚触排尿",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908523827400705",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909645401067522",title:"更换尿片",tagName:null}],levle:"2",title:"小便",key:"1902596314152800257",parentId:"1902560510768549889",url:de("/static/index/diet","urinate_",4,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909835331735554",title:"床上排便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910002671882242",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910156154048514",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910361008050178",title:"人工取便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910524623654913",title:"造瘘袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910700176248834",title:"坐便椅",tagName:null}],levle:"2",title:"大便",key:"1902596399423000577",parentId:"1902560510768549889",url:de("/static/index/diet","stool_",3,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910899565072385",title:"口腔吸痰",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911047405899778",title:"气切吸痰",tagName:null}],levle:"2",title:"吸痰",key:"1902596461238652930",parentId:"1902560510768549889",url:de("/static/index/diet","Sputuma_",7,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911232974491650",title:"呕吐",tagName:null}],levle:"2",title:"呕吐",key:"1902596886771765250",parentId:"1902560510768549889",url:de("/static/index/diet","vomiting_",6,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902911378349068290",title:"腹腔引流护理",tagName:null}],levle:"2",title:"引流",key:"1902596940366581762",parentId:"1902560510768549889",url:de("/static/index/diet","drainage_",6,"png",1,!1)}],levle:"1",title:"5 排泄照料",key:"1902560510768549889"}],ue=s(e.defineComponent({__name:"index",props:{isshow:{type:Boolean,required:!0},darkFans:{type:Boolean},canmove:{type:Boolean},liang:{type:Object},isold:{type:Boolean,required:!0},propsmove:{type:Number},isMain:{type:Boolean}},emits:["vip","changeold"],setup(t,{expose:l,emit:a}){const i=t;e.watch((()=>i.isMain),((e,t)=>{i.isshow&&(!0===t&&!1===e?(Ne.value.index0=8,Ne.value.index1=0,Y.value=!0):!1===t&&!0===e&&(Ne.value.index0=-1,Ne.value.index1=-1))})),e.watch((()=>i.isold),(()=>{i.isold&&(ct(),B.value=1,z.value=1,e.nextTick((()=>{z.value=0,B.value=700})))})),e.watch((()=>i.canmove),(()=>{Le.value=!1})),e.watch((()=>i.isshow),((t,l)=>{t!==l&&(Le.value=!1,_e.value=!1,tt.value?tt.value--:(ct(),B.value=1,z.value=1,e.nextTick((()=>{z.value=0,B.value=775}))),pe.value=0,y.value=!y.value)}));const o=e.ref(!1),c=e.ref(-1),s=e.ref(!1),d=e.ref(-1);e.watch((()=>i.propsmove),(()=>{if(s.value)switch(i.propsmove){case 0:d.value-3>0?d.value=d.value-3:d.value=0;break;case 1:d.value>5||d.value++;break;case 2:d.value+3>5?d.value=6:d.value=d.value+3;break;case 3:d.value&&d.value--;break;case 4:f(d.value);break;case 5:u.value=!1,v.value=!1,s.value=!1,o.value=!1,Z.value=1}else if(o.value)switch(i.propsmove){case 0:c.value-3>0?c.value=c.value-3:c.value=0;break;case 1:c.value>3||c.value++;break;case 2:c.value+3>3?c.value=4:c.value=c.value+3;break;case 3:c.value&&c.value--;break;case 4:h(c.value);break;case 5:u.value=!1,v.value=!1,s.value=!1,o.value=!1,Z.value=0}else if(4===i.propsmove)if(Y.value)Je();else switch(Z.value){case 0:v.value=!1,u.value=!u.value,o.value=!0,c.value=0;break;case 1:u.value=!1,v.value=!v.value,s.value=!0,d.value=0;break;case 2:Qe();break;default:Se()}else Y.value?X(i.propsmove):H(i.propsmove)}));const m=e.ref(!1),u=e.ref(!1),v=e.ref(!1);e.watch((()=>u.value),(()=>{setTimeout((()=>{m.value=u.value,fe("vip",m.value)}),50)}));const p=e.ref(!1);e.watch((()=>v.value),(()=>{setTimeout((()=>{p.value=v.value,fe("vip",p.value)}),50)}));const g=e.ref([]),w=e.ref([]),h=e=>{g.value.includes(e)?g.value=g.value.filter((t=>t!==e)):g.value.length>1?uni.showToast({title:"标签最多只能添加两个",icon:"none",duration:2e3}):g.value.push(e)},f=e=>{w.value.includes(e)?w.value=w.value.filter((t=>t!==e)):w.value.length>1?uni.showToast({title:"标签最多只能添加两个",icon:"none",duration:2e3}):w.value.push(e)},N=e.ref(!1),y=e.ref(!1),x=e.ref([{name:"纸尿裤",url:"/static/index/niao.png",target:"#fff",id:-1},{name:"呕吐",url:"/static/index/tu.png",target:"#fff",id:-1},{name:"吸痰",url:"/static/index/ou.png",target:"#fff",id:-1},{name:"大便",url:"/static/index/baba.png",target:"#fff",id:-1},{name:"纸尿裤",url:"/static/index/niao.png",target:"#fff",id:-1},{name:"呕吐",url:"/static/index/tu.png",target:"#fff",id:-1},{name:"吸痰",url:"/static/index/ou.png",target:"#fff",id:-1},{name:"大便",url:"/static/index/baba.png",target:"#fff",id:-1}]),E=["标准","超重","强直","偏瘫","佝偻","稳定","焦虑","抑郁","暴力","恐惧","烦躁","易怒","臆想"],V=["周一","周二","周三","周四","周五","周六","周日"],b=Array.from({length:31},((e,t)=>(t+1).toString().padStart(2,"0"))),k=e.ref(!0),T=e.ref(!1),D=e.ref(0),C=e.ref(0),S=e.ref(0),B=e.ref(678),z=e.ref(0),I=e.ref();e.ref([]);const U=e.ref(!1),M=e.ref([]),F=e.ref(!1);e.ref(!1);const $=e.ref(!1);e.ref(!1),e.ref(!1),e.ref(""),e.ref(!1);const A=e.ref(!1);e.ref("");const L=e.ref(!1);e.ref(0),e.ref(0),e.ref(6),e.ref(11),e.ref(0),e.ref(3);const O=e.ref(!1),P=e.computed((()=>Be.value[0]&&Be.value[1]?"left-bottom":!Be.value[0]&&Be.value[1]?"right-bottom":Be.value[0]&&!Be.value[1]?"left-top":"right-top"));e.onMounted((()=>{we.value=0}));const j=e.ref(0);const q=()=>{let e=JSON.parse(JSON.stringify(it.value[ke.value.index0].children[ke.value.index1]));qe.value=[Ne.value.index0,Ne.value.index1];let t=it.value[ke.value.index0].children[ke.value.index1].typeName;it.value[ke.value.index0].children[ke.value.index1]={directiveName:"",typeName:t};let l=it.value[qe.value[0]].children[qe.value[1]].typeName;it.value[qe.value[0]].children[qe.value[1]]=e,it.value[qe.value[0]].children[qe.value[1]].typeName=l;let a=it.value[qe.value[0]].children[qe.value[1]].startTime,i=it.value[qe.value[0]].children[qe.value[1]].endTime,n=it.value[qe.value[0]].positioning;const r=a.split(":")[1],o=i.split(":")[1];let c=Number(o)-Number(r),s=l,d=Number(s)+c;it.value[qe.value[0]].children[qe.value[1]].startTime=n+":"+s.padStart(2,"0"),it.value[qe.value[0]].children[qe.value[1]].endTime=n+":"+String(d%60).padStart(2,"0"),ke.value.index0=-1,ke.value.index1=-1,O.value=!1;let m={index0:Ne.value.index0,index1:Ne.value.index1};lt(m)},R=t=>{5!==t?(T.value=!1,Q.value=-1,ee.value=-1,G.value="",K.value="",C.value=1,D.value=1,we.value=-1,e.nextTick((()=>{C.value=0,D.value=0,we.value=0})),ge.value=0,pe.value=t,I.value=M.value[t].children,he.value=0):uni.navigateTo({url:"/pages/watch/index"})},W=()=>{te.value=!1,O.value?q():it.value[Ne.value.index0].children[Ne.value.index1].directiveName&&(ke.value.index0=Ne.value.index0,ke.value.index1=Ne.value.index1,O.value=!0)};e.ref(!0),e.ref(!1);const Y=e.ref(!1),J=e.ref(-1),X=e=>{switch(te.value=!1,e){case 0:Ne.value.index1?(Ne.value.index1--,ct(),F.value=!1,N.value&&setTimeout((()=>{ze(it.value[Ne.value.index0].children[Ne.value.index1],Ne.value.index0,Ne.value.index1)}),50)):(Z.value=0,J.value=Ne.value.index0,Y.value=!1);break;case 1:if(23==Ne.value.index0)return;Ne.value.index0++,ct(),F.value=!1,N.value&&setTimeout((()=>{ze(it.value[Ne.value.index0].children[Ne.value.index1],Ne.value.index0,Ne.value.index1)}),50);break;case 2:if(11==Ne.value.index1)return;Ne.value.index1++,ct(),F.value=!1,N.value&&setTimeout((()=>{ze(it.value[Ne.value.index0].children[Ne.value.index1],Ne.value.index0,Ne.value.index1)}),50);break;case 3:if(0==Ne.value.index0)return;Ne.value.index0--,ct(),F.value=!1,N.value&&setTimeout((()=>{ze(it.value[Ne.value.index0].children[Ne.value.index1],Ne.value.index0,Ne.value.index1)}),50)}},Z=e.ref(-1),H=e=>{switch(te.value=!1,e){case 0:break;case 1:Z.value<3&&Z.value++;break;case 2:u.value=!1,v.value=!1,Z.value=-1,Ne.value.index0=J.value,Y.value=!0;break;case 3:Z.value&&Z.value--}},G=e.ref(""),Q=e.ref(-1),K=e.ref(""),ee=e.ref(-1),te=e.ref(!1),le=()=>{ke.value.index0=-1,ke.value.index1=-1,O.value=!1,it.value[Ne.value.index0].children[Ne.value.index1].directiveName&&(te.value?(te.value=!1,Ue(Ne.value.index0,Ne.value.index1)):te.value=!0)};function ae(e,t){return 2*function(e,t){const l=55.9898*e+78.233*t;return Math.abs(43758.5453*Math.sin(l))%1}(e,t)}e.ref(!1),e.ref(0);const ie=e.ref(0),ne=e.ref(0);function re(e){let t=e.detail.scrollTop;ie.value=e.detail.scrollTop;let l=parseFloat(t.toFixed(2));ne.value=l}const oe=e.ref(0);function ce(e){oe.value=e.detail.scrollLeft}e.ref(!0);const de=(e,t,l)=>"日常"===e.cycleType?ke.value.index0===t&&ke.value.index1===l?"title-time-border-yellow-active-transparent":_e.value?"title-time-border-yellow-active":"title-time-border-yellow":e.cycleType?ke.value.index0===t&&ke.value.index1===l?"title-time-border-pouple-active-transparent":_e.value?"title-time-border-pouple-active":"title-time-border-pouple":"title-time-border";function ue(e,t,l,a="png",i=0,n=!1){return Array.from({length:l},((l,r)=>{const o=n?String(r+i).padStart(2,"0"):r+i;return`${e}/${t}${o}.${a}`}))}const ve=e.ref([{url:ue("/static/index/newruler","daily_",6,"png",1,!1),name:"日常"},{url:ue("/static/index/newruler","clean_",8,"png",1,!1),name:"清洁"},{url:ue("/static/index/newruler","diet_",7,"png",1,!1),name:"饮食"},{url:ue("/static/index/newruler","sleep_",5,"png",1,!1),name:"睡眠"},{url:ue("/static/index/newruler","defecate_",5,"png",1,!1),name:"排泻"}]),pe=e.ref(1),ge=e.ref(0),we=e.ref(-1),he=e.ref(0);e.ref(!1),e.ref([]);const fe=a;e.ref(!1);const Ne=e.ref({index0:-1,index1:-1});e.ref(0),e.ref([]);const ye=e.ref(null);e.ref({});const xe=e.ref(0),Ee=e.ref(0),Ve=e.ref(0),be=e.ref(0),ke=e.ref({index0:999,index1:999,typeName:""});e.ref(-1),e.ref(!1);const Te=e.ref(!1),De=e.ref(-1),Ce=e.ref(!1),Se=()=>{Ce.value=!0,Te.value=!1,setTimeout((()=>{Te.value=!0}),100)},Be=e.ref([!1,!1]),ze=(t,l,a)=>{if(t.directiveName){De.value=a;uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.left>100&&t.left<1067&&t.top<670&&t.top>50&&t.dataset.index0==l&&t.dataset.index1==a&&(t.left>100&&t.left<500?(Ve.value=Math.floor(t.left)+528,Be.value[0]=!0):(Ve.value=Math.floor(t.left)-18,Be.value[0]=!1),t.top>500?(be.value=Math.floor(t.top)+100,Be.value[1]=!0):(be.value=Math.floor(t.top)+180,Be.value[1]=!1),await e.nextTick(),F.value=!0,$.value=!1,setTimeout((()=>{$.value=!0}),100))}))})).exec()}},_e=e.ref(!1);e.ref([]);const Ie=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-xe.value)>0||Math.abs(l-Ee.value)>0)&&ye.value&&(clearTimeout(ye.value),ye.value=null)},Ue=(e,t)=>{let l=it.value[e].children[t].typeName;it.value[e].children[t]={directiveName:"",typeName:l}};e.ref(null),e.ref(!1),e.ref(!1);const Me=e.ref(0),Fe=e.ref(0),$e=e.ref(!1);e.ref(""),e.ref("");const Ae=e.ref(null),Le=e.ref(!1),Oe=e=>{Me.value=Math.floor(e.touches[0].pageX),Fe.value=Math.floor(e.touches[0].pageY),Ae.value=setTimeout((()=>{Le.value=!0}),500)},Pe=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-Me.value)>0||Math.abs(l-Fe.value)>0)&&Ae.value&&(clearTimeout(Ae.value),Ae.value=null)},je=()=>{Ae.value&&(clearTimeout(Ae.value),Ae.value=null)};e.ref({time:"",minute:"",array:[]}),e.ref({op:{name:"",index:[-1,-1,-1]},startTime:"",weekTimeNumber:-1,monthTimeNumber:-1,monthTime:"",weekTime:""}),e.ref(0);const qe=e.ref([-1,-1]);e.ref(null);const Re=()=>{L.value=!1,A.value=!0,setTimeout((()=>{L.value=!0}),50)},We=e.ref(!1);let Ye=null;async function Je(){Ye&&(clearTimeout(Ye),Ye=null),We.value=!1,await e.nextTick(),We.value=!0,Xe(),Ye=setTimeout((()=>{We.value=!1,Ye=null}),1e3)}e.onBeforeUnmount((()=>{Ye&&clearTimeout(Ye)}));const Xe=()=>{if(-1===Ne.value.index1&&-1===Ne.value.index0)return;if(te.value)return te.value=!1,void Ue(Ne.value.index0,Ne.value.index1);if(O.value)return void q();ke.value.index0=-1,ke.value.index1=-1,O.value=!1;let t=!1,l=M.value[pe.value].children[ge.value].children[he.value];if("即时护理"===l.cycleType)return S.value=1,x.value.forEach(((e,a)=>{e.id===l.id&&(t=!0)})),void e.nextTick((()=>{t?(clearTimeout(He.value),U.value=!0,He.value=setTimeout((()=>{U.value=!1}),1500)):(S.value=0,x.value.length&&"#03a4ff"===x.value[0].target&&(x.value[0].target="#fff",clearTimeout(Ze.value)),x.value.unshift({name:l.title,url:"/static/index/ou.png",target:"#03a4ff",id:l.id}),Ze.value=setTimeout((()=>{x.value[0].target="#fff"}),1500))}));if("周期护理"===l.cycleType&&T.value&&-1==Q.value&&-1==ee.value)return;if("周期护理"===l.cycleType&&!T.value)return void(T.value=!0);let a="";"日常护理"===l.cycleType?a="日常":(a=-1!==Q.value?G.value:K.value+"号",T.value=!1,Q.value=-1,ee.value=-1,G.value="",K.value="");const i=Number(Ne.value.index0),n=Number(it.value[Ne.value.index0].children[Ne.value.index1].typeName),r=n+10,o=i+Math.floor(r/60),c=`${String(i)}:${String(n).padStart(2,"0")}`,s=`${String(o)}:${String(r%60).padStart(2,"0")}`;it.value[Ne.value.index0].children[Ne.value.index1].startTime=c,it.value[Ne.value.index0].children[Ne.value.index1].endTime=s;let d={directiveId:l.id,directiveName:l.title,startTime:c,endTime:s,positioning:Ne.value.index0.toString(),positioningLong:Ne.value.index1.toString(),tagName:l.tagName,cycleType:a,nuId:"1",customerId:"1",id:"",typeName:it.value[Ne.value.index0].children[Ne.value.index1].typeName};it.value[Ne.value.index0].children[Ne.value.index1]=d;let m={index0:Ne.value.index0,index1:Ne.value.index1};lt(m),Ge()},Ze=e.ref(null),He=e.ref(null),Ge=()=>{it.value.forEach(((e,t)=>{e.children.forEach(((e,l)=>{let a="";if(e.directiveName||e.id)e.positioning=t,e.positioningLong=l;else{let i={};e.typeName&&(a=e.typeName),i=JSON.parse(JSON.stringify(rt.value)),a&&(i.typeName=a),i.positioning=t,i.positioningLong=l}}))}))},Qe=()=>{uni.setStorage({key:"myArray",data:it.value,success:function(){uni.navigateTo({url:"/pages/timeMatrix/indexnew"})}})},Ke=e.ref({index0:-1,index1:-1}),et=e.ref({index0:-1,index1:-1,current:-1,bordershow:!0}),tt=e.ref(0),lt=e=>{Ne.value.index0=e.index0,Ne.value.index1=e.index1,ct(),et.value.index0=e.index0,et.value.index1=e.index1,Ke.value.index0=et.value.index0,Ke.value.index1=et.value.index1,et.value.bordershow=!1,setTimeout((()=>{et.value.index0=-1,et.value.index1=-1,et.value.current=-1}),400),setTimeout((()=>{et.value.bordershow=!0,Ke.value.index0=-1,Ke.value.index1=-1}),1e3)},at=["00","05","10","15","20","25","30","35","40","45","50","55"],it=e.ref(Array.from({length:24},((e,t)=>({positioning:t.toString(),children:at.map((e=>({typeName:e,directiveName:""})))}))));function nt(e){tt.value=3,lt(e)}n((()=>{M.value=me,I.value=M.value[0].children,uni.$on("where",nt)})),r((()=>{uni.$off("where",nt)})),l({rulerMoveEnd:e=>{if(999!==i.liang.index0&&e.cycleType){qe.value=[i.liang.index0,i.liang.index1];let t=it.value[ke.value.index0].children[ke.value.index1].typeName;it.value[ke.value.index0].children[ke.value.index1]={directiveName:"",typeName:t};let l=it.value[qe.value[0]].children[qe.value[1]].typeName;it.value[qe.value[0]].children[qe.value[1]]=e,it.value[qe.value[0]].children[qe.value[1]].typeName=l;let a=it.value[qe.value[0]].children[qe.value[1]].startTime,n=it.value[qe.value[0]].children[qe.value[1]].endTime,r=it.value[qe.value[0]].positioning;const o=a.split(":")[1],c=n.split(":")[1];let s=Number(c)-Number(o),d=l,m=Number(d)+s;it.value[qe.value[0]].children[qe.value[1]].startTime=r+":"+d.padStart(2,"0"),it.value[qe.value[0]].children[qe.value[1]].endTime=r+":"+String(m%60).padStart(2,"0")}}}),e.ref({index0:999,index1:999});const rt=e.ref({directiveId:"",directiveName:"",startTime:"",endTime:"",positioning:"",positioningLong:"",tagName:"",cycleType:"",nuId:"1",customerId:"1",id:"",typeName:""});function ot(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}function ct(){if(Ne.value.index0>=0&&Ne.value.index0<=24&&Ne.value.index1>=0&&Ne.value.index1<=11){const e=259*(Ne.value.index0+.5),t=250.5*(Ne.value.index1-1);B.value=e-650,z.value=t-250;const l=6216,a=2755.5;B.value=Math.max(0,Math.min(B.value,l-1300))/2,z.value=Math.max(0,Math.min(z.value,a-500))/2}}return(l,a)=>{var i,n;const r=e.resolveComponent("donghua");return e.openBlock(),e.createElementBlock("view",{class:"right-container",style:e.normalizeStyle(t.isshow?{opacity:"1"}:{opacity:"0"}),onClick:a[15]||(a[15]=e=>{Le.value=!1,_e.value=!1})},[e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{style:{"margin-left":"30rpx"}}," NUID:2508000001 "),e.createElementVNode("text",{class:"new-weight"}," 护理单元01 "),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-right":"25rpx",padding:"0 15rpx"},class:e.normalizeClass(Z.value||o.value||s.value?"":"firsttarget")},[e.createElementVNode("view",{class:"mark"},[e.createElementVNode("view",{style:{"margin-right":"15rpx"}}," 体型标签: "),e.withDirectives(e.createElementVNode("view",{class:"mark-bgc",style:e.normalizeStyle({opacity:m.value?1:0})},[e.createElementVNode("view",{style:{"margin-top":"40rpx","margin-bottom":"30rpx","margin-left":"50rpx","font-size":"32rpx"}},[e.createElementVNode("view",null," 体型标签 ")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E.slice(0,5),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>h(l)},[e.createElementVNode("view",{class:e.normalizeClass(["tags-father",c.value===l?"secondtarget":""])},[e.createElementVNode("image",{class:"tags-img",src:g.value.includes(l)?`/static/index/tagNames/${l}1.png`:`/static/index/tagNames/${l}0.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font",style:e.normalizeStyle(g.value.includes(l)?{color:"rgb(54, 159, 239)"}:{})},e.toDisplayString(t),5)],2)],8,["onClick"])))),128))])],4),[[e.vShow,u.value]])]),e.createElementVNode("view",{class:"marknone",onClick:a[0]||(a[0]=e=>{u.value=!u.value,v.value=!1})},[g.value.length?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,style:{"margin-top":"-3rpx"}}," 未选择 ")),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("image",{class:"tags-img",style:{width:"40rpx",height:"40rpx",margin:"0 10rpx"},src:`/static/index/tagNames/${t}0.png`},null,8,["src"])])))),128))]),e.createElementVNode("view",{class:"tri-down",onClick:a[1]||(a[1]=e=>{u.value=!u.value,v.value=!1})})],2),e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-right":"15rpx",padding:"0 15rpx"},class:e.normalizeClass(1!==Z.value||o.value||s.value?"":"firsttarget")},[e.createElementVNode("view",{class:"mark"},[e.createTextVNode(" 情绪标签: "),e.withDirectives(e.createElementVNode("view",{class:"mark-bgc",style:e.normalizeStyle({opacity:p.value?1:0})},[e.createElementVNode("view",{style:{"margin-top":"40rpx","margin-bottom":"30rpx","margin-left":"50rpx","font-size":"32rpx"}},[e.createElementVNode("view",null," 情绪标签 ")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E.slice(5,12),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>f(l)},[e.createElementVNode("view",{class:e.normalizeClass(["tags-father",d.value===l?"secondtarget":""])},[e.createElementVNode("image",{class:"tags-img",src:w.value.includes(l)?`/static/index/tagNames/${l+5}1.png`:`/static/index/tagNames/${l+5}0.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font",style:e.normalizeStyle(w.value.includes(l)?{color:"rgb(54, 159, 239)"}:{})},e.toDisplayString(t),5)],2)],8,["onClick"])))),128))])],4),[[e.vShow,v.value]])]),e.createElementVNode("view",{class:"marknone",onClick:a[2]||(a[2]=e=>{v.value=!v.value,u.value=!1})},[w.value.length?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,style:{"margin-top":"-3rpx"}}," 未选择 ")),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(w.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("image",{class:"tags-img",style:{width:"40rpx",height:"40rpx",margin:"0 10rpx"},src:`/static/index/tagNames/${t+5}0.png`},null,8,["src"])])))),128))]),e.createElementVNode("view",{class:"tri-down",onClick:a[3]||(a[3]=e=>{v.value=!v.value,u.value=!1})})],2),e.createElementVNode("view",{class:e.normalizeClass(["white-button",2===Z.value?"firsttarget":""]),onClick:Qe},[e.createElementVNode("image",{class:"white-img",src:"/static/index/newruler/yulan.png"},null,8,["src"]),e.createTextVNode(" 预览 ")],2),e.createElementVNode("view",{class:e.normalizeClass(["white-button",3===Z.value?"firsttarget":""]),onClick:Se},[e.createElementVNode("image",{class:"white-img",src:"/static/index/newruler/fenxiang.png"},null,8,["src"]),e.createTextVNode(" 分享 ")],2)])]),e.createElementVNode("view",{class:"doctorsay-container-view"},[e.createElementVNode("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"boom-father"},[e.createElementVNode("view",{class:"boom"},[e.createElementVNode("view",{style:e.normalizeStyle({marginTop:`-${2*ne.value}rpx`})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(it.value[0].children,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.withDirectives(e.createElementVNode("view",{class:"boom-son"},[e.createElementVNode("text",{class:"boom-text"},e.toDisplayString(t.typeName),1)],512),[[e.vShow,t.typeName]])])))),128))],4)])]),e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("scroll-view",{style:{height:"1330rpx",width:"100%",border:"2rpx solid balck"},"scroll-left":B.value,"scroll-x":"",onScroll:ce,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",width:"4824rpx"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(it.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time"},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),1)])))),128))]),e.createElementVNode("view",{style:{display:"flex",height:"calc(100% - 80rpx)",position:"relative"}},[e.createElementVNode("view",{class:"xian-bian"}),e.createElementVNode("scroll-view",{style:{height:"100%",width:"6744rpx"},"scroll-top":z.value,"scroll-y":!0,onScroll:re,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(it.value,((l,i)=>(e.openBlock(),e.createElementBlock("view",{key:i},[e.createElementVNode("view",{class:"super-card-time-und"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.children,((l,n)=>(e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:n},[e.createElementVNode("view",{class:e.normalizeClass(et.value.index0===i&&et.value.index1===n?et.value.index1?"title-time-border-big":"title-time-border-big-top":"super-card-time-card"),style:e.normalizeStyle([et.value.bordershow||Ke.value.index0!==i||Ke.value.index1!==n?{borderBottom:"1rpx solid transparent"}:{zIndex:999},{position:"relative"}]),id:`a${i}_${n}`,onClick:e=>ze(l,i,n),onTouchstart:e=>{},onTouchmove:Ie,onTouchend:a[4]||(a[4]=e=>($e.value=!1,void(ye.value&&(clearTimeout(ye.value),ye.value=null)))),"data-index0":i,"data-index1":n},[ke.value.index0===i&&ke.value.index1===n&&0==n?(e.openBlock(),e.createElementBlock("view",{key:0,class:"time-button-orange-spe",style:e.normalizeStyle({left:ke.value.index0?"-130rpx":"0"})}," 请选择服务指令迁移的目标单元格 ",4)):e.createCommentVNode("",!0),ke.value.index0===i&&ke.value.index1===n&&n?(e.openBlock(),e.createElementBlock("view",{key:1,class:"time-button-orange",style:e.normalizeStyle({left:ke.value.index0?"-130rpx":"0"})}," 请选择服务指令迁移的目标单元格 ",4)):e.createCommentVNode("",!0),Ne.value.index0==i&&Ne.value.index1==n&&0==n&&te.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"time-button-black-spe",style:e.normalizeStyle({left:Ne.value.index0?"-220rpx":"0"})}," 是否确认删除该服务指令 ",4)):e.createCommentVNode("",!0),Ne.value.index0==i&&Ne.value.index1==n&&n&&te.value?(e.openBlock(),e.createElementBlock("view",{key:3,class:"time-button-black",style:e.normalizeStyle({left:Ne.value.index0?"-220rpx":"0"})}," 是否确认删除该服务指令 ",4)):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{class:"title-time-blue"},null,512),[[e.vShow,Ne.value.index0==i&&Ne.value.index1==n&&Y.value]]),e.createElementVNode("view",{class:e.normalizeClass(de(l,i,n)),style:e.normalizeStyle([{"font-size":"30rpx",overflow:"hidden"},{animationDelay:`-${ae(i,n).toFixed(2)}s`}])},[l.startTime?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"flex-direction":"column"}},[e.withDirectives(e.createElementVNode("image",{style:{width:"60rpx",height:"60rpx",margin:"0 auto","margin-top":"30rpx"},src:_},null,512),[[e.vShow,l.startTime]]),e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(l.startTime+"-"+l.endTime),1),"日常"!=l.cycleType?(e.openBlock(),e.createElementBlock("image",{key:0,class:"title-time-button",style:{width:"80rpx",height:"48rpx"},src:se})):e.createCommentVNode("",!0),"日常"!=l.cycleType?(e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font",style:{right:"10rpx",top:"5rpx","font-size":"23rpx"}},e.toDisplayString(l.cycleType),1)):e.createCommentVNode("",!0)],512)),[[e.vShow,t.liang.index0!==i||t.liang.index1!==n||t.canmove]]):e.createCommentVNode("",!0),l.startTime?(e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font-rel"},e.toDisplayString(ot(l.directiveName)[0]),1)):e.createCommentVNode("",!0)],6)],46,["id","onClick","onTouchstart","data-index0","data-index1"])])))),128))])])))),128))])],40,["scroll-top"])])],40,["scroll-left"])]),e.createElementVNode("view",{class:"right-cards"},[e.createElementVNode("view",{style:{"margin-top":"60rpx","margin-left":"30rpx"}},[e.createElementVNode("view",{class:""}," 即时指令 "),e.createElementVNode("view",{style:{width:"30rpx",height:"6rpx","background-color":"black","margin-left":"40rpx","margin-top":"3rpx","border-radius":"20rpx"}})]),e.createElementVNode("scroll-view",{"scroll-x":"",class:"scroll-box","scroll-left":S.value},[e.createElementVNode("view",{class:"right-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(x.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"right-box-item",onTouchstart:Oe,onTouchmove:Pe,onTouchend:je,style:e.normalizeStyle(t.target?{background:t.target,transition:"all 1.5s ease-in-out"}:{transition:"all 1.5s ease-in-out"})},[e.createElementVNode("view",{style:e.normalizeStyle({animationDelay:`-${.1*l}s`}),class:e.normalizeClass(Le.value?"super-end-items-img-father-active":"super-end-items-img-father")},[e.createElementVNode("image",{class:"right-box-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"right-box-font"},e.toDisplayString(t.name),1)],6),e.withDirectives(e.createElementVNode("view",{class:"super-end-items-father-close-father",onClick:e.withModifiers((e=>x.value.splice(l,1)),["stop"])}," - ",8,["onClick"]),[[e.vShow,Le.value]])],36)])))),128))])],8,["scroll-left"]),e.createElementVNode("view",{class:"middle-box"},[e.createElementVNode("view",{class:"middle-left-box"},[e.createElementVNode("view",{class:"first-contant"},[e.withDirectives(e.createElementVNode("view",{class:"time-father"},[e.withDirectives(e.createElementVNode("view",{class:"time-button"},[e.createElementVNode("view",{class:"time-button-month"},"周"),e.createElementVNode("view",{class:"time-button-week",onClick:a[5]||(a[5]=e=>{k.value=!1,Q.value=-1,G.value=""})},"月")],512),[[e.vShow,k.value]]),e.withDirectives(e.createElementVNode("view",{class:"time-button"},[e.createElementVNode("view",{class:"time-button-month-target",onClick:a[6]||(a[6]=e=>{k.value=!0,ee.value=-1,K.value=""})},"周"),e.createElementVNode("view",{class:"time-button-week-target"},"月")],512),[[e.vShow,!k.value]]),e.createElementVNode("scroll-view",{"scroll-y":"",style:{width:"100%",height:"600rpx"},"show-scrollbar":!1,"scroll-top":D.value},[k.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},e.renderList(V,((t,l)=>e.createElementVNode("view",{key:l,onClick:e=>((e,t)=>{const l=Date.now();l-j.value<300?(G.value=e,Q.value=t,Xe(),j.value=0):(G.value=e,Q.value=t,j.value=l)})(t,l)},[e.createElementVNode("view",{class:e.normalizeClass(Q.value===l?"items-card-target":"items-card")},e.toDisplayString(t),3)],8,["onClick"]))),64)):e.createCommentVNode("",!0),k.value?e.createCommentVNode("",!0):(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(e.unref(b),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>((e,t)=>{const l=Date.now();l-j.value<300?(K.value=e,ee.value=t,Xe(),j.value=0):(K.value=e,ee.value=t,j.value=l)})(t,l)},[e.createElementVNode("view",{class:e.normalizeClass(ee.value===l?"items-card-target":"items-card")},e.toDisplayString(t),3)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"40rpx"}})],8,["scroll-top"])],512),[[e.vShow,T.value]]),e.withDirectives(e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%",width:"100%"},"show-scrollbar":!1,"scroll-top":D.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(M.value[pe.value].children[ge.value].children,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>function(e){const t=Date.now();he.value=e,t-j.value<300?(he.value=e,Xe(),j.value=0):(he.value=e,j.value=t)}(l)},[e.createElementVNode("view",{class:"right-box-item",style:e.normalizeStyle(he.value==l?{border:"2rpx solid rgb(229, 233, 249)",backgroundColor:"#fff"}:{border:"2rpx solid rgb(229, 233, 249)"})},[e.withDirectives(e.createElementVNode("view",{class:"title-time-button-font"}," 周期 ",512),[[e.vShow,"周期护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("view",{class:"title-time-button-font"}," 即时 ",512),[[e.vShow,"即时护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:se},null,512),[[e.vShow,"周期护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:se},null,512),[[e.vShow,"即时护理"===t.cycleType]]),e.createElementVNode("image",{class:"right-box-img",src:_}),e.createElementVNode("view",{class:"right-box-font",style:e.normalizeStyle([{"font-size":"20rpx","margin-top":"2rpx"},he.value==l?{color:"rgb(54, 159, 239)"}:{}])},e.toDisplayString(t.title),5)],4)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"20rpx"}})],8,["scroll-top"]),[[e.vShow,!T.value]])]),e.createElementVNode("view",{class:"second-contant"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%",width:"100%"},"show-scrollbar":!1,"scroll-top":C.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(I.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(we.value==l?"downList-box-target":"downList-box"),onClick:t=>(t=>{T.value=!1,Q.value=-1,ee.value=-1,G.value="",K.value="",ge.value=t,we.value=t,he.value=0,D.value=1,e.nextTick((()=>{D.value=0}))})(l)},[e.createVNode(r,{width:"55rpx",height:"55rpx",links:t.url,playing:we.value==l,interval:120},null,8,["links","playing"]),e.createElementVNode("view",{class:"downList-box-text"},e.toDisplayString(t.title),1)],10,["onClick"])])))),128)),e.createElementVNode("view",{style:{height:"20rpx"}})],8,["scroll-top"])])]),e.createElementVNode("view",{class:"middle-right-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(ve.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>R(l)},[e.createElementVNode("view",{class:"doctorsay-container-card"},[e.createVNode(r,{width:"55rpx",height:"55rpx",links:t.url,playing:l===pe.value,interval:120},null,8,["links","playing"]),e.createElementVNode("view",{class:e.normalizeClass(l===pe.value?"doctorsay-container-card-font-dark":"doctorsay-container-card-font")},e.toDisplayString(t.name),3)])],8,["onClick"])))),128))])]),e.createElementVNode("view",{class:"under-button"},[U.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"under-button-black"}," 不能重复添加相同的即时服务指令 ")):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"white-circle",onClick:W},[e.createElementVNode("image",{class:"white-circle-img",src:`/static/index/keyimg/movebutton${O.value?"blue":""}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"white-circle",onClick:le},[e.createElementVNode("image",{class:"white-circle-img",src:`/static/index/keyimg/deletebutton${te.value?"blue":""}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"white-circle",onClick:Re},[e.createElementVNode("image",{class:"white-circle-img",src:`/static/index/keyimg/notebutton${A.value?"blue":""}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"white-circle",onClick:a[7]||(a[7]=e=>N.value=!N.value)},[e.createElementVNode("image",{class:"white-circle-img",src:`/static/index/keyimg/open${N.value?"blue":""}.png`},null,8,["src"])]),e.createElementVNode("view",{style:{position:"relative"}},[e.createElementVNode("view",{ref:"btnRef",class:e.normalizeClass(["white-circle-click-father",{anim:We.value}]),style:e.normalizeStyle({color:We.value?"#fff":""}),onClick:Je},[e.createElementVNode("view",{style:{"z-index":"999"}}," 确定 ")],6),e.createElementVNode("view",{class:"white-circle-click-father-spec",onClick:a[8]||(a[8]=e=>R(5))},[e.createElementVNode("view",{class:"other-father"},[e.createElementVNode("image",{style:{width:"55rpx",height:"55rpx"},src:"/static/index/newruler/monitor_1.png"}),e.createElementVNode("view",{style:{"z-index":"999","font-size":"25rpx"}}," 监控 ")])])])])])])])]),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay",onClick:a[10]||(a[10]=e=>{F.value=!1,ke.value.index0=999,De.value=-1})},[e.createElementVNode("view",{class:e.normalizeClass(["popup-overlay-content",P.value]),style:e.normalizeStyle({top:2*be.value-350+"rpx",left:2*Ve.value-780+"rpx",opacity:$.value?1:0}),onClick:a[9]||(a[9]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"},e.toDisplayString(null==(n=null==(i=it.value[ke.value.index0])?void 0:i.children[ke.value.index1])?void 0:n.value),1)]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],6)],512),[[e.vShow,F.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-say",onClick:a[12]||(a[12]=e=>A.value=!1)},[e.createElementVNode("view",{class:"popup-say-content",style:e.normalizeStyle([{padding:"30rpx 0"},{opacity:L.value?1:0}]),onClick:a[11]||(a[11]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{style:{"margin-top":"20rpx","margin-bottom":"20rpx","margin-left":"30rpx","font-size":"32rpx"}},[e.createElementVNode("view",null," 体型标签 ")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E.slice(0,5),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"tags-father"},[e.createElementVNode("image",{class:"tags-img",src:`/static/index/tagNames/${l}0.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font"},e.toDisplayString(t),1)])])))),128))]),e.createElementVNode("view",{style:{"margin-top":"40rpx","margin-bottom":"20rpx","margin-left":"30rpx","font-size":"32rpx"}},[e.createElementVNode("view",null," 情绪标签 ")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E.slice(5,12),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"tags-father"},[e.createElementVNode("image",{class:"tags-img",src:`/static/index/tagNames/${l+5}0.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font"},e.toDisplayString(t),1)])])))),128))]),e.createElementVNode("view",{class:"popup-say-three"})],4)],512),[[e.vShow,A.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-share",onClick:a[14]||(a[14]=e=>Ce.value=!1)},[e.createElementVNode("view",{class:"popup-share-content",style:e.normalizeStyle({opacity:Te.value?1:0}),onClick:a[13]||(a[13]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"share-other"},[e.createElementVNode("view",{class:"share-title"},[e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx"},src:"/static/index/sharelogo.png"}),e.createElementVNode("view",{style:{"font-weight":"600","margin-left":"15rpx"}}," 护理单元 ")]),e.createElementVNode("view",{class:"share-others"},[e.createElementVNode("view",{style:{"font-weight":"600","font-size":"45rpx"}}," 护理流程 "),e.createElementVNode("view",{style:{"margin-top":"30rpx"}},[e.createTextVNode(" 护理单元01 "),e.createElementVNode("text",{style:{color:"#1083F8"}}," 王金凤 ")]),e.createElementVNode("view",{class:"blue-button"}," 分享 ")])])],4)],512),[[e.vShow,Ce.value]])],4)}}}),[["__scopeId","data-v-42a31c2e"]]),ve=s(e.defineComponent({__name:"index",setup(l){e.onMounted((()=>{o.value=-1,e.nextTick((()=>o.value=0)),m.value=2,uni.getSystemInfoSync(),uni.pageScrollTo,a.value=uni.getStorageSync("realname")}));const a=e.ref("");function i(e,t,l,a="png",i=0,n=!1){return Array.from({length:l},((l,r)=>{const o=n?String(r+i).padStart(2,"0"):r+i;return`${e}/${t}${o}.${a}`}))}const r=e.ref([{url:i("/static/index/newindex/curve","home_",5,"png",1,!1),name:"首页"},{url:i("/static/index/newindex/curve","nurse_",8,"png",1,!1),name:"护嘱"},{url:i("/static/index/newindex/curve","doctor_",6,"png",1,!1),name:"医嘱"},{url:i("/static/index/newindex/curve","lead_",12,"png",1,!1),name:"请领"},{url:i("/static/index/newindex/curve","device_",7,"png",1,!1),name:"设备"}]);e.ref([{url:"/static/index/lefticon/index.png",name:"首页"},{url:"/static/index/lefticon/nurse.png",name:"护嘱"},{url:"/static/index/lefticon/doctor.png",name:"医嘱"},{url:"/static/index/lefticon/give.png",name:"请领"},{url:"/static/index/lefticon/wifi.png",name:"设备"},{url:"/static/index/lefticon/back.png",name:"返回"}]),e.ref([{url:"/static/index/lefticon/index.png",targetUrl:"/static/index/lefticontarget/blueindex.png"},{url:"/static/index/lefticon/nurse.png",targetUrl:"/static/index/lefticontarget/bluenurse.png"},{url:"/static/index/lefticon/doctor.png",targetUrl:"/static/index/lefticontarget/bluedoctor.png"},{url:"/static/index/lefticon/give.png",targetUrl:"/static/index/lefticontarget/givedark.png"},{url:"/static/index/lefticon/wifi.png",targetUrl:"/static/index/lefticontarget/bluewifi.png"},{url:"/static/index/lefticon/back.png",targetUrl:"/static/index/lefticontarget/blueback.png"}]);const o=e.ref(-1),c=e.ref(!1),s=e.ref(!1),d=e.ref(!1),m=e.ref(-1);function u(){t("TestModule").gotoNativePage({deviceId:"4",deviceName:"sdfsfsdf"})}e.ref([]),e.ref(0),e.ref(0),e.ref(0),e.ref(0),e.ref(0);const v=e=>{o.value!==e&&(o.value=e,c.value=!1,s.value=!1,setTimeout((()=>{switch(e){case 0:c.value=!0;break;case 1:s.value=!0}}),50))},p=e=>{z.value=!0,_.value=e,o.value=e,c.value=!1,s.value=!1,5!==e?setTimeout((()=>{switch(e){case 0:c.value=!0;break;case 1:s.value=!0}}),50):uni.navigateBack()},g=e.ref(0),w=e.ref(0),h=e.ref(""),f=e.ref(!0),y=e.ref({index0:999,index1:999}),x=e.ref(!0),E=uni.createAnimation({duration:0,timingFunction:"linear",delay:0}),V=e.ref({}),b=function(e,t){let l=0;return function(...a){const i=Date.now();i-l>=t&&(l=i,e.apply(this,a))}}((e=>{var t;const l=e.touches[0];g.value=2*(Math.floor(l.clientX)-100),w.value=2*(Math.floor(l.clientY)-55),E.translate3d(g.value/2,w.value/2,0).step({duration:0}),V.value=E.export();const a=Math.floor(l.clientX)-50,i=Math.floor(l.clientY)-25,n=k.value.find((e=>a>=Math.floor(e.left)&&a<=Math.floor(e.right)&&i>=Math.floor(e.top)&&i<=Math.floor(e.bottom)));if(n){const{index0:e,index1:l}=n.dataset;y.value.index0=e,y.value.index1=l,g.value<200&&x.value&&!m.value&&(null==(t=D.value)||t.nextItems(),x.value=!1,setTimeout((()=>{x.value=!0}),1e3))}else y.value.index0=999,y.value.index1=999}),40),k=e.ref([]),T=e.ref({directiveName:"",cycleType:"",positioningLong:"0",typeName:"",startTime:"",id:"",endTime:"",tagName:null}),D=e.ref(null),C=e.ref(null),S=()=>{var e,t,l;g.value=9999,w.value=9999,E.translate3d(g.value/2,w.value/2,0).step({duration:0}),V.value=E.export(),f.value=!0,y.value={index0:999,index1:999},h.value?m.value||null==(e=D.value)||e.rulerEnd(h.value):T.value.typeName&&(0===m.value?null==(t=D.value)||t.rulerMoveEnd(T.value):null==(l=C.value)||l.rulerMoveEnd(T.value)),h.value="",T.value={directiveName:"",cycleType:"",positioningLong:"0",typeName:"",startTime:"",id:"",endTime:"",tagName:null}};function B(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}n((()=>{setTimeout((()=>{p(o.value)}),50),c.value=!1,setTimeout((()=>{c.value=!0}),50)}));const z=e.ref(!0),_=e.ref(0),I=e.ref(-1),U=e.ref(!1),M=e=>{U.value=e},F=t=>{if(5===t)return U.value?(I.value=-1,void e.nextTick((()=>I.value=t))):void(z.value?uni.navigateBack():(z.value=!0,_.value=o.value));if(z.value)switch(t){case 0:_.value&&(_.value--,v(_.value));break;case 1:z.value=!1,_.value=-1;break;case 2:_.valueI.value=t))};return(t,l)=>{const a=e.resolveComponent("donghua"),i=e.resolveComponent("arrowkeys");return e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(d.value?"darkbackgroundContainer":"backgroundContainer"),onTouchmove:l[1]||(l[1]=(...t)=>e.unref(b)&&e.unref(b)(...t)),onTouchend:S},[e.withDirectives(e.createElementVNode("view",{class:"move-font",animation:V.value},e.toDisplayString(h.value),9,["animation"]),[[e.vShow,h.value&&g.value]]),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass("日常"==T.value.cycleType?"title-time-border-yellow":"title-time-border-pouple"),animation:V.value,style:{"font-size":"30rpx",overflow:"hidden"}},[e.withDirectives(e.createElementVNode("view",{class:"title-time",style:{"margin-top":"5rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(T.value.startTime+"-"+T.value.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==T.value.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(T.value.cycleType),1)],512),[[e.vShow,T.value.startTime]]),e.createElementVNode("view",{style:{"margin-top":"20rpx","font-weight":"700"}},e.toDisplayString(B(T.value.directiveName)[0]),1),e.withDirectives(e.createElementVNode("view",{class:"down-icons",style:e.normalizeStyle("日常"!=T.value.cycleType?{backgroundColor:"rgb(212,203,255)"}:{})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(B(T.value.directiveName).slice(1),((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:l},[e.createElementVNode("view",{class:"icon",style:e.normalizeStyle("日常"!=T.value.cycleType?{backgroundColor:"rgb(123,97,255)"}:{})},e.toDisplayString(B(T.value.directiveName)[1]),5)])))),128))],4),[[e.vShow,B(T.value.directiveName)[1]]])],10,["animation"]),[[e.vShow,T.value.cycleType]]),e.createElementVNode("view",{class:"left-container"},[e.createElementVNode("view",{class:"left-head",onClick:u},[e.createElementVNode("image",{class:"left-head-img",src:N}),e.createElementVNode("text",{class:e.normalizeClass(d.value?"left-head-font-dark":"left-head-font")}," 王金福 ",2)]),e.createElementVNode("view",{class:"menus-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["menu",_.value===l?"target":""]),style:e.normalizeStyle(_.value===l?{backgroundColor:"#ddf0ff"}:l===o.value?{backgroundColor:"#fff"}:{}),onClick:e=>p(l)},[e.createVNode(a,{width:"65rpx",height:"65rpx",links:t.url,playing:l===o.value},null,8,["links","playing"]),e.createElementVNode("text",{style:{"font-size":"31rpx","margin-left":"15rpx"}},e.toDisplayString(t.name),1)],14,["onClick"])))),128))])]),o.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(ce,{key:0,isShow:c.value,propsmove:I.value,isMain:z.value,onBack:l[0]||(l[0]=e=>F(5))},null,8,["isShow","propsmove","isMain"])),1==o.value&&2===m.value?(e.openBlock(),e.createBlock(ue,{key:1,isold:2===m.value,liang:y.value,isshow:s.value,propsmove:I.value,isMain:z.value,onVip:M},null,8,["isold","liang","isshow","propsmove","isMain"])):e.createCommentVNode("",!0),e.createVNode(i,{onMovecard:F})],34)}}}),[["__scopeId","data-v-8ad00f91"]]),pe=s(e.defineComponent({__name:"index",setup(t){const l=e.ref("");return(t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"请购清单")]),e.createElementVNode("view",{class:"draw-blue"}," 请购单号:A0120250301001 ")]),e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("image",{class:"swiper-card-top-img",src:"/static/index/project3.png"},null,8,["src"]),e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"}," 纸尿裤-拉拉裤 "),e.createElementVNode("view",{class:"weight-right",style:{width:"40%"}}," 采购数量:50 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-black"}," 800mm*690mm ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购单位: "),e.createElementVNode("view",{class:"swiper-black"}," 片 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 库存数量: "),e.createElementVNode("view",{class:"swiper-black"}," 50 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 库存下限: "),e.createElementVNode("view",{class:"swiper-black"}," 10 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 库存上限: "),e.createElementVNode("view",{class:"swiper-black"}," 1000 ")])])])]),e.createElementVNode("view",{class:"swiper-card-down"},[e.createElementVNode("view",{class:"down-left"},[e.createElementVNode("view",{class:"down-left-weight"}," 供应商: "),e.createElementVNode("view",{class:"down-left-font"}," 长春市永佳利商贸有限公司1 ")]),e.createElementVNode("image",{class:"delete-img",src:"/static/index/deleteIt.png"},null,8,["src"])])])]))),64))])])]),e.createElementVNode("view",{class:"down-note"},[e.withDirectives(e.createElementVNode("textarea",{class:"down-note-title-input","onUpdate:modelValue":a[0]||(a[0]=e=>l.value=e),maxlength:"300","placeholder-style":"color:#999",placeholder:"请输入备注"},null,512),[[e.vModelText,l.value]]),e.createElementVNode("text",{class:"char-count"},e.toDisplayString(l.value.length)+"/300",1)]),e.createElementVNode("view",{class:"down-button"},[e.createElementVNode("view",{class:"swiper-left-button-orange"}," 清空 "),e.createElementVNode("view",{class:"swiper-left-button-blue"}," 保存 "),e.createElementVNode("view",{class:"swiper-left-button-blue",style:{"margin-right":"40rpx"}}," 提交 ")])])]))}}),[["__scopeId","data-v-e15809eb"]]),ge=s(e.defineComponent({__name:"index",setup(t){const l=e.ref("");return(t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"请购清单")]),e.createElementVNode("view",{class:"draw-blue"}," 请购单号:A0120250301001 ")]),e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("image",{class:"swiper-card-top-img",src:"/static/index/project3.png"},null,8,["src"]),e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"}," 纸尿裤-拉拉裤 "),e.createElementVNode("view",{class:"weight-right",style:{width:"40%"}}," 采购数量:50 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-black"}," 800mm*690mm ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购单位: "),e.createElementVNode("view",{class:"swiper-black"}," 片 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 库存数量: "),e.createElementVNode("view",{class:"swiper-black"}," 50 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 库存下限: "),e.createElementVNode("view",{class:"swiper-black"}," 10 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 库存上限: "),e.createElementVNode("view",{class:"swiper-black"}," 1000 ")])])])]),e.createElementVNode("view",{class:"swiper-card-down"},[e.createElementVNode("view",{class:"down-left"},[e.createElementVNode("view",{class:"down-left-weight"}," 供应商: "),e.createElementVNode("view",{class:"down-left-font"}," 长春市永佳利商贸有限公司1 ")])])])]))),64))])])]),e.createElementVNode("view",{class:"down-note"},[e.withDirectives(e.createElementVNode("textarea",{disabled:"",class:"down-note-title-input","onUpdate:modelValue":a[0]||(a[0]=e=>l.value=e),maxlength:"300","placeholder-style":"color:#999",placeholder:"该请购单未备注"},null,512),[[e.vModelText,l.value]]),e.createElementVNode("text",{class:"char-count"},e.toDisplayString(l.value.length)+"/300",1)])])]))}}),[["__scopeId","data-v-c8dcc752"]]),we=s(e.defineComponent({__name:"index",setup(t){e.ref("");const l=e.ref(0),a=e.ref(0),i=e.ref(!1),n=e.ref(!1),r=e.ref("全部"),o=e.ref("日期从近到远"),c=e.ref([{value:0,label:"全部"},{value:1,label:"出库"},{value:2,label:"入库"}]),s=e.ref([{value:0,label:"日期从近到远"},{value:1,label:"日期从远到近"}]),d=e.ref([{name:"生活用品请领",add:-20},{name:"采购入库",add:10},{name:"生活用品请领",add:-20},{name:"生活用品请领",add:20},{name:"生活用品请领",add:-20},{name:"生活用品请领",add:100},{name:"生活用品请领",add:9999}]),m=e=>{a.value=e.detail.scrollTop.toFixed(2)};return(t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"出入库")])]),e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("image",{class:"swiper-card-top-img",src:"/static/index/project3.png"},null,8,["src"]),e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"}," 纸尿裤-拉拉裤 "),e.createElementVNode("view",{class:"weight-right",style:{"margin-right":"30rpx"}}," 当前库存:96 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"20rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 物料编码: "),e.createElementVNode("view",{class:"swiper-black"}," ZHYP044 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"20rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-black"}," 800mm*690mm ")])])])])]),e.createElementVNode("view",{class:"select-width"},[e.createElementVNode("view",{class:"select-blue",onClick:a[1]||(a[1]=e=>i.value=!i.value)},[e.createElementVNode("image",{class:"select-blue-img",src:"/static/index/warehouseCard/selectblue.png"}),e.createElementVNode("view",{class:"select-blue-font"},e.toDisplayString(r.value),1),e.createElementVNode("div",{class:"triangle-down"}),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(["dropdown-list",i.value?"open":"close"]),onClick:a[0]||(a[0]=e.withModifiers((()=>{}),["stop"]))},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["dropdown-item",t.label==r.value?"active":""]),onClick:e=>{r.value=t.label,i.value=!1}},e.toDisplayString(t.label),11,["onClick"])))),128))],2),[[e.vShow,i.value]])]),e.createElementVNode("view",{class:"select-white",onClick:a[3]||(a[3]=e=>n.value=!n.value)},[e.createElementVNode("image",{class:"select-blue-img",src:"/static/index/warehouseCard/selectwhite.png"}),e.createElementVNode("view",{class:"select-blue-font"},e.toDisplayString(o.value),1),e.createElementVNode("div",{class:"triangle-down"}),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(["dropdown-list",n.value?"open":"close"]),onClick:a[2]||(a[2]=e.withModifiers((()=>{}),["stop"]))},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["dropdown-item",t.label==o.value?"active":""]),onClick:e=>{o.value=t.label,n.value=!1}},e.toDisplayString(t.label),11,["onClick"])))),128))],2),[[e.vShow,n.value]])])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("view",{class:"scroll-view-title"},[e.createElementVNode("view",{class:"amount"}," 总计:100笔 "),e.createElementVNode("view",{class:"outhouse"},[e.createElementVNode("image",{class:"outhouse-img",src:"/static/index/warehouseCard/orangeicon.png"}),e.createElementVNode("view",{class:"outhouse-left"}," 出库: "),e.createElementVNode("view",{class:"outhouse-right"}," 50笔 ")]),e.createElementVNode("view",{class:"inhouse"},[e.createElementVNode("image",{class:"inhouse-img",src:"/static/index/warehouseCard/blueicon.png"}),e.createElementVNode("view",{class:"inhouse-left"}," 出库: "),e.createElementVNode("view",{class:"inhouse-right"}," 50笔 ")])]),e.createElementVNode("scroll-view",{"scroll-y":"","scroll-top":l.value,onScroll:m,style:{height:"770rpx","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(d.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"swiper-card-spec"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},e.toDisplayString(t.name),1),e.createElementVNode("view",{class:"weight-right",style:{color:"#59657A","font-weight":"400"}}," 摘要:服务指令 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 服务指令:生活用品请领 ")]),e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray",style:e.normalizeStyle([t.add<0?{color:"#FF6600"}:{color:"#008AFF"},{"font-weight":"700","font-size":"35rpx"}])},e.toDisplayString(t.add>0?"+"+t.add:t.add),5)])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-black"}," 2025-02-13 17:29:18 ")]),e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-black"}," 库存: "),e.createElementVNode("view",{class:"swiper-black"}," 96 ")])])])]),e.createElementVNode("view",{class:"swiper-card-down"},[e.createElementVNode("view",{class:"down-left"},[e.createElementVNode("view",{class:"down-left-weight"}," 供应商: "),e.createElementVNode("view",{class:"down-left-font"}," 长春市永佳利商贸有限公司1 ")]),e.createElementVNode("image",{class:"delete-img",src:"/static/index/deleteIt.png"},null,8,["src"])])])])))),128))])],40,["scroll-top"])])])]))}}),[["__scopeId","data-v-a22273dc"]]);const he=s({name:"u-icon",emits:["click","touchstart"],props:{name:{type:String,default:""},color:{type:[String,null],default:""},size:{type:[Number,String],default:"inherit"},bold:{type:Boolean,default:!1},index:{type:[Number,String],default:""},hoverClass:{type:String,default:""},customPrefix:{type:String,default:"uicon"},label:{type:[String,Number],default:""},labelPos:{type:String,default:"right"},labelSize:{type:[String,Number],default:"28"},labelColor:{type:String,default:"#606266"},marginLeft:{type:[String,Number],default:"6"},marginTop:{type:[String,Number],default:"6"},marginRight:{type:[String,Number],default:"6"},marginBottom:{type:[String,Number],default:"6"},imgMode:{type:String,default:"widthFix"},customStyle:{type:Object,default:()=>({})},width:{type:[String,Number],default:""},height:{type:[String,Number],default:""},top:{type:[String,Number],default:0},showDecimalIcon:{type:Boolean,default:!1},inactiveColor:{type:String,default:"#ececec"},percent:{type:[Number,String],default:"50"}},computed:{customClass(){let e=[],{customPrefix:t,name:l}=this,a=l.indexOf("-icon-");return a>-1?(t=l.substring(0,a+5),e.push(l)):e.push(`${t}-${l}`),"uicon"===t?e.push("u-iconfont"):e.push(t),this.showDecimalIcon&&this.inactiveColor&&this.$u.config.type.includes(this.inactiveColor)?e.push("u-icon__icon--"+this.inactiveColor):this.color&&this.$u.config.type.includes(this.color)&&e.push("u-icon__icon--"+this.color),e},iconStyle(){let e={};return e={fontSize:"inherit"==this.size?"inherit":this.$u.addUnit(this.size),fontWeight:this.bold?"bold":"normal",top:this.$u.addUnit(this.top)},this.showDecimalIcon&&this.inactiveColor&&!this.$u.config.type.includes(this.inactiveColor)?e.color=this.inactiveColor:this.color&&!this.$u.config.type.includes(this.color)&&(e.color=this.color),e},isImg(){return-1!==this.name.indexOf("/")},imgStyle(){let e={};return e.width=this.width?this.$u.addUnit(this.width):this.$u.addUnit(this.size),e.height=this.height?this.$u.addUnit(this.height):this.$u.addUnit(this.size),e},decimalIconStyle(){let e={};return e={fontSize:"inherit"==this.size?"inherit":this.$u.addUnit(this.size),fontWeight:this.bold?"bold":"normal",top:this.$u.addUnit(this.top),width:this.percent+"%"},this.color&&!this.$u.config.type.includes(this.color)&&(e.color=this.color),e},decimalIconClass(){let e=[];return e.push(this.customPrefix+"-"+this.name),"uicon"==this.customPrefix?e.push("u-iconfont"):e.push(this.customPrefix),this.color&&this.$u.config.type.includes(this.color)?e.push("u-icon__icon--"+this.color):e.push("u-icon__icon--primary"),e}},methods:{click(){this.$emit("click",this.index)},touchstart(){this.$emit("touchstart",this.index)}}},[["render",function(t,l,a,i,n,r){return e.openBlock(),e.createElementBlock("view",{style:e.normalizeStyle([a.customStyle]),class:e.normalizeClass(["u-icon",["u-icon--"+a.labelPos]]),onClick:l[1]||(l[1]=(...e)=>r.click&&r.click(...e))},[r.isImg?(e.openBlock(),e.createElementBlock("image",{key:0,class:"u-icon__img",src:a.name,mode:a.imgMode,style:e.normalizeStyle([r.imgStyle])},null,12,["src","mode"])):(e.openBlock(),e.createElementBlock("view",{key:1,class:e.normalizeClass(["u-icon__icon",r.customClass]),style:e.normalizeStyle([r.iconStyle]),"hover-class":a.hoverClass,onTouchstart:l[0]||(l[0]=(...e)=>r.touchstart&&r.touchstart(...e))},[a.showDecimalIcon?(e.openBlock(),e.createElementBlock("text",{key:0,style:e.normalizeStyle([r.decimalIconStyle]),class:e.normalizeClass([r.decimalIconClass,"u-icon__decimal"]),"hover-class":a.hoverClass},null,14,["hover-class"])):e.createCommentVNode("",!0)],46,["hover-class"])),""!==a.label&&null!==a.label?(e.openBlock(),e.createElementBlock("text",{key:2,class:"u-icon__label",style:e.normalizeStyle({color:a.labelColor,fontSize:t.$u.addUnit(a.labelSize),marginLeft:"right"==a.labelPos?t.$u.addUnit(a.marginLeft):0,marginTop:"bottom"==a.labelPos?t.$u.addUnit(a.marginTop):0,marginRight:"left"==a.labelPos?t.$u.addUnit(a.marginRight):0,marginBottom:"top"==a.labelPos?t.$u.addUnit(a.marginBottom):0})},e.toDisplayString(a.label),5)):e.createCommentVNode("",!0)],6)}],["__scopeId","data-v-32e6a46e"]]);const fe=s({name:"u-button",emits:["click","getphonenumber","getuserinfo","error","opensetting","launchapp","chooseavatar"],props:{hairLine:{type:Boolean,default:!0},type:{type:String,default:"default"},size:{type:String,default:"default"},shape:{type:String,default:"square"},plain:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},openType:{type:String,default:""},formType:{type:String,default:""},appParameter:{type:String,default:""},hoverStopPropagation:{type:Boolean,default:!1},lang:{type:String,default:"en"},sessionFrom:{type:String,default:""},sendMessageTitle:{type:String,default:""},sendMessagePath:{type:String,default:""},sendMessageImg:{type:String,default:""},showMessageCard:{type:Boolean,default:!1},hoverBgColor:{type:String,default:""},rippleBgColor:{type:String,default:""},ripple:{type:Boolean,default:!1},hoverClass:{type:String,default:""},customStyle:{type:Object,default:()=>({})},dataName:{type:String,default:""},throttleTime:{type:[String,Number],default:500},hoverStartTime:{type:[String,Number],default:20},hoverStayTime:{type:[String,Number],default:150},timerId:{type:[String,Number]}},computed:{getHoverClass(){if(this.loading||this.disabled||this.ripple||this.hoverClass)return"";let e="";return e=this.plain?"u-"+this.type+"-plain-hover":"u-"+this.type+"-hover",e},showHairLineBorder(){return["primary","success","error","warning"].indexOf(this.type)>=0&&!this.plain?"":"u-hairline-border"}},data(){return{btnTimerId:this.timerId||"button_"+Math.floor(1e8*Math.random()+0),rippleTop:0,rippleLeft:0,fields:{},waveActive:!1}},methods:{click(e){this.$u.throttle((()=>{!0!==this.loading&&!0!==this.disabled&&(this.ripple&&(this.waveActive=!1,this.$nextTick((function(){this.getWaveQuery(e)}))),this.$emit("click",e))}),this.throttleTime,!0,this.btnTimerId)},getWaveQuery(e){this.getElQuery().then((t=>{let l=t[0];if(!l.width||!l.width)return;if(l.targetWidth=l.height>l.width?l.height:l.width,!l.targetWidth)return;this.fields=l;let a="",i="";a=e.touches[0].clientX,i=e.touches[0].clientY,this.rippleTop=i-l.top-l.targetWidth/2,this.rippleLeft=a-l.left-l.targetWidth/2,this.$nextTick((()=>{this.waveActive=!0}))}))},getElQuery(){return new Promise((e=>{let t="";t=uni.createSelectorQuery().in(this),t.select(".u-btn").boundingClientRect(),t.exec((t=>{e(t)}))}))},getphonenumber(e){this.$emit("getphonenumber",e)},getuserinfo(e){this.$emit("getuserinfo",e)},error(e){this.$emit("error",e)},opensetting(e){this.$emit("opensetting",e)},launchapp(e){this.$emit("launchapp",e)},chooseavatar(e){this.$emit("chooseavatar",e)}}},[["render",function(t,l,a,i,n,r){return e.openBlock(),e.createElementBlock("button",{id:"u-wave-btn",class:e.normalizeClass(["u-btn u-line-1 u-fix-ios-appearance",["u-size-"+a.size,a.plain?"u-btn--"+a.type+"--plain":"",a.loading?"u-loading":"","circle"==a.shape?"u-round-circle":"",a.hairLine?r.showHairLineBorder:"u-btn--bold-border","u-btn--"+a.type,a.disabled?`u-btn--${a.type}--disabled`:""]]),"hover-start-time":Number(a.hoverStartTime),"hover-stay-time":Number(a.hoverStayTime),disabled:a.disabled,"form-type":a.formType,"open-type":a.openType,"app-parameter":a.appParameter,"hover-stop-propagation":a.hoverStopPropagation,"send-message-title":a.sendMessageTitle,"send-message-path":"sendMessagePath",lang:a.lang,"data-name":a.dataName,"session-from":a.sessionFrom,"send-message-img":a.sendMessageImg,"show-message-card":a.showMessageCard,onGetphonenumber:l[0]||(l[0]=(...e)=>r.getphonenumber&&r.getphonenumber(...e)),onGetuserinfo:l[1]||(l[1]=(...e)=>r.getuserinfo&&r.getuserinfo(...e)),onError:l[2]||(l[2]=(...e)=>r.error&&r.error(...e)),onOpensetting:l[3]||(l[3]=(...e)=>r.opensetting&&r.opensetting(...e)),onLaunchapp:l[4]||(l[4]=(...e)=>r.launchapp&&r.launchapp(...e)),onChooseavatar:l[5]||(l[5]=(...e)=>r.chooseavatar&&r.chooseavatar(...e)),style:e.normalizeStyle([a.customStyle,{overflow:a.ripple?"hidden":"visible"}]),onClick:l[6]||(l[6]=e.withModifiers((e=>r.click(e)),["stop"])),"hover-class":r.getHoverClass,loading:a.loading},[e.renderSlot(t.$slots,"default",{},void 0,!0),a.ripple?(e.openBlock(),e.createElementBlock("view",{key:0,class:e.normalizeClass(["u-wave-ripple",[n.waveActive?"u-wave-active":""]]),style:e.normalizeStyle({top:n.rippleTop+"px",left:n.rippleLeft+"px",width:n.fields.targetWidth+"px",height:n.fields.targetWidth+"px","background-color":a.rippleBgColor||"rgba(0, 0, 0, 0.15)"})},null,6)):e.createCommentVNode("",!0)],46,["hover-start-time","hover-stay-time","disabled","form-type","open-type","app-parameter","hover-stop-propagation","send-message-title","lang","data-name","session-from","send-message-img","show-message-card","hover-class","loading"])}],["__scopeId","data-v-942515d8"]]);const Ne=s({name:"u-mask",emits:["click"],props:{show:{type:Boolean,default:!1},zIndex:{type:[Number,String],default:""},customStyle:{type:Object,default:()=>({})},zoom:{type:Boolean,default:!0},duration:{type:[Number,String],default:300},maskClickAble:{type:Boolean,default:!0},blur:{type:[Number,String],default:0}},data:()=>({zoomStyle:{transform:""},scale:"scale(1.2, 1.2)"}),watch:{show(e){e&&this.zoom?this.zoomStyle.transform="scale(1, 1)":!e&&this.zoom&&(this.zoomStyle.transform=this.scale)}},computed:{maskStyle(){let e={backgroundColor:"rgba(0, 0, 0, 0.6)"};return this.show?e.zIndex=this.zIndex?this.zIndex:this.$u.zIndex.mask:e.zIndex=-1,e.transition=`all ${this.duration/1e3}s ease-in-out`,Object.keys(this.customStyle).length&&(e={...e,...this.customStyle}),e},filterStyle(){let{blur:e}=this,t={};return e&&(t.backdropFilter=`blur(${e}rpx)`),t}},methods:{click(){this.maskClickAble&&this.$emit("click")}}},[["render",function(t,l,a,i,n,r){return e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["u-mask",{"u-mask-zoom":a.zoom,"u-mask-show":a.show}]),"hover-stop-propagation":"",style:e.normalizeStyle([r.maskStyle,n.zoomStyle,r.filterStyle]),onClick:l[0]||(l[0]=(...e)=>r.click&&r.click(...e)),onTouchmove:e.withModifiers((()=>{}),["stop","prevent"])},[e.renderSlot(t.$slots,"default",{},void 0,!0)],38)}],["__scopeId","data-v-005d3602"]]);const ye=s({name:"u-popup",emits:["update:modelValue","input","open","close"],props:{value:{type:Boolean,default:!1},modelValue:{type:Boolean,default:!1},show:{type:Boolean,default:!1},mode:{type:String,default:"left"},mask:{type:Boolean,default:!0},length:{type:[Number,String],default:"auto"},zoom:{type:Boolean,default:!0},safeAreaInsetBottom:{type:Boolean,default:!1},maskCloseAble:{type:Boolean,default:!0},customStyle:{type:Object,default:()=>({})},popup:{type:Boolean,default:!0},borderRadius:{type:[Number,String],default:0},zIndex:{type:[Number,String],default:""},closeable:{type:Boolean,default:!1},closeIcon:{type:String,default:"close"},closeIconPos:{type:String,default:"top-right"},closeIconColor:{type:String,default:"#909399"},closeIconSize:{type:[String,Number],default:"30"},width:{type:String,default:""},height:{type:String,default:""},negativeTop:{type:[String,Number],default:0},maskCustomStyle:{type:Object,default:()=>({})},duration:{type:[String,Number],default:250},blur:{type:[String,Number],default:0}},data:()=>({visibleSync:!1,showDrawer:!1,timer:null,closeFromInner:!1}),computed:{valueCom(){return this.modelValue},style(){let e={};if("left"==this.mode||"right"==this.mode?e={width:this.width?this.getUnitValue(this.width):this.getUnitValue(this.length),height:"100%",transform:`translate3D(${"left"==this.mode?"-100%":"100%"},0px,0px)`}:"top"!=this.mode&&"bottom"!=this.mode||(e={width:"100%",height:this.height?this.getUnitValue(this.height):this.getUnitValue(this.length),transform:`translate3D(0px,${"top"==this.mode?"-100%":"100%"},0px)`}),e.zIndex=this.uZindex,this.borderRadius){switch(this.mode){case"left":e.borderRadius=`0 ${this.borderRadius}rpx ${this.borderRadius}rpx 0`;break;case"top":e.borderRadius=`0 0 ${this.borderRadius}rpx ${this.borderRadius}rpx`;break;case"right":e.borderRadius=`${this.borderRadius}rpx 0 0 ${this.borderRadius}rpx`;break;case"bottom":e.borderRadius=`${this.borderRadius}rpx ${this.borderRadius}rpx 0 0`}e.overflow="hidden"}return this.duration&&(e.transition=`all ${this.duration/1e3}s linear`),e},centerStyle(){let e={};return e.width=this.width?this.getUnitValue(this.width):this.getUnitValue(this.length),e.height=this.height?this.getUnitValue(this.height):"auto",e.zIndex=this.uZindex,e.marginTop=`-${this.$u.addUnit(this.negativeTop)}`,this.borderRadius&&(e.borderRadius=`${this.borderRadius}rpx`,e.overflow="hidden"),e},uZindex(){return this.zIndex?this.zIndex:this.$u.zIndex.popup}},watch:{valueCom:{handler(e){e?this.open():this.closeFromInner||this.close(),this.closeFromInner=!1}}},mounted(){this.valueCom&&this.open()},methods:{getUnitValue:e=>/(%|px|rpx|auto)$/.test(e)?e:e+"rpx",maskClick(){this.close()},close(){this.closeFromInner=!0,this.change("showDrawer","visibleSync",!1)},modeCenterClose(e){"center"==e&&this.maskCloseAble&&this.close()},open(){this.change("visibleSync","showDrawer",!0)},change(e,t,l){1==this.popup&&(this.$emit("input",l),this.$emit("update:modelValue",l)),this[e]=l,l?this.$nextTick((()=>{this[t]=l,this.$emit(l?"open":"close")})):this.timer=setTimeout((()=>{this[t]=l,this.$emit(l?"open":"close")}),this.duration)}}},[["render",function(t,l,i,n,r,o){const c=a(e.resolveDynamicComponent("u-mask"),Ne),s=a(e.resolveDynamicComponent("u-icon"),he);return r.visibleSync?(e.openBlock(),e.createElementBlock("view",{key:0,style:e.normalizeStyle([i.customStyle,{zIndex:o.uZindex-1}]),class:"u-drawer","hover-stop-propagation":""},[e.createVNode(c,{blur:i.blur,duration:i.duration,"custom-style":i.maskCustomStyle,maskClickAble:i.maskCloseAble,"z-index":o.uZindex-2,show:r.showDrawer&&i.mask,onClick:o.maskClick},null,8,["blur","duration","custom-style","maskClickAble","z-index","show","onClick"]),e.createElementVNode("view",{class:e.normalizeClass(["u-drawer-content",[i.safeAreaInsetBottom?"safe-area-inset-bottom":"","u-drawer-"+i.mode,r.showDrawer?"u-drawer-content-visible":"",i.zoom&&"center"==i.mode?"u-animation-zoom":""]]),onClick:l[3]||(l[3]=e=>o.modeCenterClose(i.mode)),onTouchmove:l[4]||(l[4]=e.withModifiers((()=>{}),["stop","prevent"])),style:e.normalizeStyle([o.style])},["center"==i.mode?(e.openBlock(),e.createElementBlock("view",{key:0,class:"u-mode-center-box",onClick:l[0]||(l[0]=e.withModifiers((()=>{}),["stop","prevent"])),onTouchmove:l[1]||(l[1]=e.withModifiers((()=>{}),["stop","prevent"])),style:e.normalizeStyle([o.centerStyle])},[i.closeable?(e.openBlock(),e.createBlock(s,{key:0,onClick:o.close,class:e.normalizeClass(["u-close",["u-close--"+i.closeIconPos]]),name:i.closeIcon,color:i.closeIconColor,size:i.closeIconSize},null,8,["onClick","class","name","color","size"])):e.createCommentVNode("",!0),e.createElementVNode("scroll-view",{class:"u-drawer__scroll-view","scroll-y":"true"},[e.renderSlot(t.$slots,"default",{},void 0,!0)])],36)):(e.openBlock(),e.createElementBlock("scroll-view",{key:1,class:"u-drawer__scroll-view","scroll-y":"true"},[e.renderSlot(t.$slots,"default",{},void 0,!0)])),e.createElementVNode("view",{onClick:l[2]||(l[2]=(...e)=>o.close&&o.close(...e)),class:e.normalizeClass(["u-close",["u-close--"+i.closeIconPos]])},["center"!=i.mode&&i.closeable?(e.openBlock(),e.createBlock(s,{key:0,name:i.closeIcon,color:i.closeIconColor,size:i.closeIconSize},null,8,["name","color","size"])):e.createCommentVNode("",!0)],2)],38)],4)):e.createCommentVNode("",!0)}],["__scopeId","data-v-98075be7"]]);const xe=s({name:"u-calendar",emits:["update:modelValue","input","change"],props:{value:{type:Boolean,default:!1},modelValue:{type:Boolean,default:!1},safeAreaInsetBottom:{type:Boolean,default:!1},maskCloseAble:{type:Boolean,default:!0},zIndex:{type:[String,Number],default:0},changeYear:{type:Boolean,default:!0},changeMonth:{type:Boolean,default:!0},mode:{type:String,default:"date"},maxYear:{type:[Number,String],default:2050},minYear:{type:[Number,String],default:1950},minDate:{type:[Number,String],default:"1950-01-01"},maxDate:{type:[Number,String],default:""},borderRadius:{type:[String,Number],default:20},monthArrowColor:{type:String,default:"#606266"},yearArrowColor:{type:String,default:"#909399"},color:{type:String,default:"#303133"},activeBgColor:{type:String,default:"#2979ff"},activeColor:{type:String,default:"#ffffff"},rangeBgColor:{type:String,default:"rgba(41,121,255,0.13)"},rangeColor:{type:String,default:"#2979ff"},startText:{type:String,default:"开始"},endText:{type:String,default:"结束"},btnType:{type:String,default:"primary"},isActiveCurrent:{type:Boolean,default:!0},isChange:{type:Boolean,default:!1},closeable:{type:Boolean,default:!0},toolTip:{type:String,default:"选择日期"},blur:{type:[Number,String],default:0},confirmText:{type:String,default:"确定"},toText:{type:String,default:"至"},yearText:{type:String,default:"年"},monthText:{type:String,default:"月"}},data:()=>({popupValue:!1,weekday:1,weekdayArr:[],days:0,daysArr:[],showTitle:"",year:2020,month:0,day:0,startYear:0,startMonth:0,startDay:0,endYear:0,endMonth:0,endDay:0,today:"",activeDate:"",startDate:"",endDate:"",isStart:!0,min:null,max:null,weekDayZh:["日","一","二","三","四","五","六"]}),computed:{valueCom(){return this.modelValue},dataChange(){return`${this.mode}-${this.minDate}-${this.maxDate}`},uZIndex(){return this.zIndex?this.zIndex:this.$u.zIndex.popup}},watch:{dataChange(e){this.init()},valueCom:{immediate:!0,handler(e){this.popupValue=e}}},created(){this.init()},methods:{getColor(e,t){let l=1==t?"":this.color,a=e+1,i=`${this.year}-${this.month}-${a}`,n=new Date(i.replace(/\-/g,"/")).getTime(),r=this.startDate.replace(/\-/g,"/"),o=this.endDate.replace(/\-/g,"/");return this.isActiveCurrent&&this.activeDate==i||this.startDate==i||this.endDate==i?l=1==t?null:this.activeColor:this.endDate&&n>new Date(r).getTime()&&n=new Date(n).getTime()&&o<=new Date(r).getTime()&&(a=!1),a},generateArray:function(e,t){return Array.from(new Array(t+1).keys()).slice(e)},formatNum:function(e){return e<10?"0"+e:e+""},getMonthDay:(e,t)=>new Date(e,t,0).getDate(),getWeekday:(e,t)=>new Date(`${e}/${t}/01 00:00:00`).getDay(),checkRange(e){let t=!1;return(ethis.maxYear)&&(uni.showToast({title:"日期超出范围啦~",icon:"none"}),t=!0),t},changeMonthHandler(e){if(e){let e=this.month+1,t=e>12?this.year+1:this.year;this.checkRange(t)||(this.month=e>12?1:e,this.year=t,this.changeData())}else{let e=this.month-1,t=e<1?this.year-1:this.year;this.checkRange(t)||(this.month=e<1?12:e,this.year=t,this.changeData())}},changeYearHandler(e){let t=e?this.year+1:this.year-1;this.checkRange(t)||(this.year=t,this.changeData())},changeData(){this.days=this.getMonthDay(this.year,this.month),this.daysArr=this.generateArray(1,this.days),this.weekday=this.getWeekday(this.year,this.month),this.weekdayArr=this.generateArray(1,this.weekday),this.showTitle=`${this.year}${this.yearText}${this.month}${this.monthText}`,this.isChange&&"date"==this.mode&&this.btnFix(!0)},dateClick:function(e){if(e+=1,!this.openDisAbled(this.year,this.month,e)){this.day=e;let t=`${this.year}-${this.month}-${e}`;if("date"==this.mode)this.activeDate=t;else{let e=new Date(t.replace(/\-/g,"/")).getTime()"星期"+["日","一","二","三","四","五","六"][(e=new Date(`${e.replace(/\-/g,"/")} 00:00:00`)).getDay()],btnFix(e){if(e||this.close(),"date"==this.mode){let e=this.activeDate.split("-"),t=this.isChange?this.year:Number(e[0]),l=this.isChange?this.month:Number(e[1]),a=this.isChange?this.day:Number(e[2]),i=this.getMonthDay(t,l),n=`${t}-${this.formatNum(l)}-${this.formatNum(a)}`,r=this.getWeekText(n),o=!1;`${t}-${l}-${a}`==this.today&&(o=!0),this.$emit("change",{year:t,month:l,day:a,days:i,result:n,week:r,isToday:o})}else{if(!this.startDate||!this.endDate)return;let e=this.formatNum(this.startMonth),t=this.formatNum(this.startDay),l=`${this.startYear}-${e}-${t}`,a=this.getWeekText(l),i=this.formatNum(this.endMonth),n=this.formatNum(this.endDay),r=`${this.endYear}-${i}-${n}`,o=this.getWeekText(r);this.$emit("change",{startYear:this.startYear,startMonth:this.startMonth,startDay:this.startDay,startDate:l,startWeek:a,endYear:this.endYear,endMonth:this.endMonth,endDay:this.endDay,endDate:r,endWeek:o})}}}},[["render",function(t,l,i,n,r,o){const c=a(e.resolveDynamicComponent("u-icon"),he),s=a(e.resolveDynamicComponent("u-button"),fe),d=a(e.resolveDynamicComponent("u-popup"),ye);return e.openBlock(),e.createBlock(d,{blur:i.blur,closeable:"",maskCloseAble:i.maskCloseAble,mode:"bottom",popup:!1,modelValue:r.popupValue,"onUpdate:modelValue":l[5]||(l[5]=e=>r.popupValue=e),length:"auto",safeAreaInsetBottom:i.safeAreaInsetBottom,onClose:o.close,"z-index":o.uZIndex,"border-radius":i.borderRadius},{default:e.withCtx((()=>[e.createElementVNode("view",{class:"u-calendar"},[e.createElementVNode("view",{class:"u-calendar__action u-flex u-row-center"},[e.createElementVNode("view",{class:"u-calendar__action__icon"},[i.changeYear?(e.openBlock(),e.createBlock(c,{key:0,name:"arrow-left-double",color:i.yearArrowColor,onClick:l[0]||(l[0]=e=>o.changeYearHandler(0))},null,8,["color"])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"u-calendar__action__icon"},[i.changeMonth?(e.openBlock(),e.createBlock(c,{key:0,name:"arrow-left",color:i.monthArrowColor,onClick:l[1]||(l[1]=e=>o.changeMonthHandler(0))},null,8,["color"])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"u-calendar__action__text"},e.toDisplayString(r.showTitle),1),e.createElementVNode("view",{class:"u-calendar__action__icon"},[i.changeMonth?(e.openBlock(),e.createBlock(c,{key:0,name:"arrow-right",color:i.monthArrowColor,onClick:l[2]||(l[2]=e=>o.changeMonthHandler(1))},null,8,["color"])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"u-calendar__action__icon"},[i.changeYear?(e.openBlock(),e.createBlock(c,{key:0,name:"arrow-right-double",color:i.yearArrowColor,onClick:l[3]||(l[3]=e=>o.changeYearHandler(1))},null,8,["color"])):e.createCommentVNode("",!0)])]),e.createElementVNode("view",{class:"u-calendar__week-day"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.weekDayZh,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"u-calendar__week-day__text",key:l},e.toDisplayString(t),1)))),128))]),e.createElementVNode("view",{class:"u-calendar__content"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.weekdayArr,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"u-calendar__content__item"})))),128)),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.daysArr,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["u-calendar__content__item",{"u-hover-class":o.openDisAbled(r.year,r.month,l+1),"u-calendar__content--start-date":"range"==i.mode&&r.startDate==`${r.year}-${r.month}-${l+1}`||"date"==i.mode,"u-calendar__content--end-date":"range"==i.mode&&r.endDate==`${r.year}-${r.month}-${l+1}`||"date"==i.mode}]),style:e.normalizeStyle([o.getStyle(l),{"border-radius":"30rpx"}]),key:l,onClick:e=>o.dateClick(l)},[e.createElementVNode("view",{class:"u-calendar__content__item__inner",style:e.normalizeStyle({color:o.getColor(l,2)})},[e.createElementVNode("view",null,e.toDisplayString(l+1),1)],4),"range"==i.mode&&r.startDate==`${r.year}-${r.month}-${l+1}`&&r.startDate!=r.endDate?(e.openBlock(),e.createElementBlock("view",{key:0,class:"u-calendar__content__item__tips",style:e.normalizeStyle({color:i.activeColor})},e.toDisplayString(i.startText),5)):e.createCommentVNode("",!0),"range"==i.mode&&r.endDate==`${r.year}-${r.month}-${l+1}`?(e.openBlock(),e.createElementBlock("view",{key:1,class:"u-calendar__content__item__tips",style:e.normalizeStyle({color:i.activeColor})},e.toDisplayString(i.endText),5)):e.createCommentVNode("",!0)],14,["onClick"])))),128)),e.createElementVNode("view",{class:"u-calendar__content__bg-month"},e.toDisplayString(r.month),1)]),e.createElementVNode("view",{class:"u-calendar__bottom"},[e.createElementVNode("view",{class:"u-calendar__bottom__choose"},[e.createElementVNode("text",null,e.toDisplayString("date"==i.mode?r.activeDate:r.startDate),1),r.endDate?(e.openBlock(),e.createElementBlock("text",{key:0},e.toDisplayString(i.toText)+e.toDisplayString(r.endDate),1)):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"u-calendar__bottom__btn"},[e.createVNode(s,{type:i.btnType,shape:"circle",size:"default",onClick:l[4]||(l[4]=e=>o.btnFix(!1)),disabled:"range"==i.mode&&!r.endDate},{default:e.withCtx((()=>[e.createTextVNode(e.toDisplayString(i.confirmText),1)])),_:1},8,["type","disabled"])])])])])),_:1},8,["blur","maskCloseAble","modelValue","safeAreaInsetBottom","onClose","z-index","border-radius","closeable"])}],["__scopeId","data-v-d354e4bf"]]),Ee=s(e.defineComponent({__name:"index",emits:["opendetail"],setup(t,{emit:l}){e.ref("");const i=e.ref(!1),n=e.ref(""),r=e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]),o=l,c=e=>{n.value=e.result},s=()=>{o("opendetail")};return(t,l)=>{const o=a(e.resolveDynamicComponent("u-calendar"),xe);return e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"index-right-height"}),e.createElementVNode("view",{class:"index-right-title"},[e.createElementVNode("view",{class:"index-right-name"}," 请购单号: "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入请购单号"}),e.createElementVNode("view",{class:"index-right-name"}," 请购人: "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入请购人"}),e.createElementVNode("view",{class:"index-right-name"}," 请购日期: "),e.createElementVNode("view",{onClick:l[0]||(l[0]=e.withModifiers((e=>i.value=!0),["stop"]))},[e.createElementVNode("view",{class:"index-right-input",style:e.normalizeStyle([{width:"300rpx",height:"66rpx"},n.value?{}:{color:"#999"}])},e.toDisplayString(n.value?n.value:"请输入请购日期"),5)]),e.createVNode(o,{style:{width:"40%","margin-left":"30%"},"border-radius":"40",modelValue:i.value,"onUpdate:modelValue":l[1]||(l[1]=e=>i.value=e),mode:"date",onChange:c},null,8,["modelValue"]),e.createElementVNode("view",{class:"index-right-button-all"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"index-right-button"},[e.createElementVNode("image",{class:"index-right-button-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"index-right-button-font"},e.toDisplayString(t.name),1)])])))),128))])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"请购单号"),e.createElementVNode("view",{class:"blue-number"},"A0120250301001")]),e.createElementVNode("view",{class:"index-right-button-blue",onClick:s}," 详情 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 请购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.01 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 请购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")])])])])])]))),64))])])])])])}}}),[["__scopeId","data-v-cb386bfb"]]),Ve=s({__name:"ball",props:{isShow:{type:Boolean,required:!0}},emits:["clickBall"],setup(t,{emit:l}){const a=l,i=e.ref(1090),n=e.ref(120),r=e.ref(!1);let o=0,c=0,s=0,d=0,m=null,u=0,v=0;function p(e){const t=e.touches[0];o=t.clientX.toFixed(2),c=t.clientY.toFixed(2),s=i.value,d=n.value,m=setTimeout((()=>{r.value=!0}),300)}function g(e){if(!r.value){const t=e.touches[0],l=Math.abs(t.clientX.toFixed(2)-o),a=Math.abs(t.clientY.toFixed(2)-c);(l>5||a>5)&&(clearTimeout(m),r.value=!0)}if(r.value){const t=e.touches[0];let l=s+(t.clientX.toFixed(2)-o),a=d+(t.clientY.toFixed(2)-c);l=Math.max(0,Math.min(l,u-60)),a=Math.max(0,Math.min(a,v-60)),i.value=l,n.value=a}}function w(e){clearTimeout(m),r.value?r.value=!1:a("clickBall")}return e.onMounted((()=>{const e=uni.getSystemInfoSync();u=e.windowWidth,v=e.windowHeight})),(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"floating-ball",style:e.normalizeStyle({left:i.value+"px",top:n.value+"px"}),onTouchstart:p,onTouchmove:g,onTouchend:w,onTouchcancel:w},[e.createElementVNode("image",{class:"floating-ball-img",src:"/static/index/caigouqingdan.png"})],36)),[[e.vShow,t.isShow]])}},[["__scopeId","data-v-5147ae32"]]),be=s(e.defineComponent({__name:"info",emits:["qinggou","churuku"],setup(t,{emit:l}){const a=l,i=e=>{a(e)};return(t,l)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("view",{class:"popup-detail-left"},[e.createElementVNode("view",{class:"popup-detail-left-white"},[e.createElementVNode("image",{class:"popup-detail-left-white-img",src:"/static/index/project3.png"},null,8,["src"])]),e.createElementVNode("view",{class:"popup-detail-left-bottom"},[e.createElementVNode("view",{class:"popup-small-card"},[e.createElementVNode("view",{class:"popup-small-circle"},[e.createElementVNode("image",{class:"popup-small-circle-img",src:"/static/index/saveUp.png"})]),e.createElementVNode("view",{class:"popup-small-number"},"1000"),e.createElementVNode("view",{class:"popup-small-font"},"库存上限")]),e.createElementVNode("view",{class:"popup-small-shu"}),e.createElementVNode("view",{class:"popup-small-card"},[e.createElementVNode("view",{class:"popup-small-circle"},[e.createElementVNode("image",{class:"popup-small-circle-img",src:"/static/index/saveDown.png"})]),e.createElementVNode("view",{class:"popup-small-number"},"10"),e.createElementVNode("view",{class:"popup-small-font"},"库存下限")]),e.createElementVNode("view",{class:"popup-small-shu"}),e.createElementVNode("view",{class:"popup-small-card"},[e.createElementVNode("view",{class:"popup-small-circle"},[e.createElementVNode("image",{class:"popup-small-circle-img",src:"/static/index/saveNumber.png"})]),e.createElementVNode("view",{class:"popup-small-number"},"50"),e.createElementVNode("view",{class:"popup-small-font"},"库存数量")])])]),e.createElementVNode("view",{class:"popup-detail-right"},[e.createElementVNode("view",{class:"popup-detail-title"},[e.createElementVNode("view",{class:"popup-detail-weight"}," 纸尿裤-拉拉裤 "),e.createElementVNode("view",{class:"popup-detail-gray"}," ZHYP044 ")]),e.createElementVNode("view",{class:"popup-weight"}," 物料分类 "),e.createElementVNode("view",{class:"popup-right-father"},[e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 物料类别: "),e.createElementVNode("view",{class:"popup-font-right"}," 生活用品 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 物料类型: "),e.createElementVNode("view",{class:"popup-font-right"}," 照护用品 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 物料类别: "),e.createElementVNode("view",{class:"popup-font-right"}," - ")])]),e.createElementVNode("view",{class:"popup-weight"}," 物料信息 "),e.createElementVNode("view",{class:"popup-right-father"},[e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 物料品牌: "),e.createElementVNode("view",{class:"popup-font-right"}," 洁奴 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 采购单位: "),e.createElementVNode("view",{class:"popup-font-right"}," 片 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 参考单价: "),e.createElementVNode("view",{class:"popup-font-right"}," 1.175 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 采购单价: "),e.createElementVNode("view",{class:"popup-font-right"}," 2 ")]),e.createElementVNode("view",{class:"popup-right-font-contain",style:{width:"100%"}},[e.createElementVNode("view",{class:"popup-font-left"}," 规格型号: "),e.createElementVNode("view",{class:"popup-font-right"}," 800mm*690mm ")]),e.createElementVNode("view",{class:"popup-right-font-contain",style:{width:"100%"}},[e.createElementVNode("view",{class:"popup-font-left"}," 供 应 商 : "),e.createElementVNode("view",{class:"popup-font-right"}," 山东恒发卫生用品有限公司 ")])]),e.createElementVNode("view",{class:"popup-weight"}," 优惠信息 "),e.createElementVNode("view",{class:"popup-right-father"},[e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 医保报销: "),e.createElementVNode("view",{class:"popup-font-right"}," 是 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 机构优惠: "),e.createElementVNode("view",{class:"popup-font-right"}," 否 ")])]),e.createElementVNode("view",{class:"swiper-left-buttons-big"},[e.createElementVNode("view",{class:"swiper-left-button-blue",onClick:l[0]||(l[0]=e=>i("qinggou"))}," 请购 "),e.createElementVNode("view",{class:"swiper-left-button",onClick:l[1]||(l[1]=e=>i("churuku"))}," 出入库 ")])])],64))}}),[["__scopeId","data-v-a77dd54e"]]),ke=s(e.defineComponent({__name:"plsbuy",props:{saveIndex:{type:Number,required:!0},changeNumber:{type:Number,required:!0}},emits:["closeIt","openRight","closeRight"],setup(t,{emit:l}){const a=l,i=t;e.watch((()=>i.changeNumber),(()=>{o.value[i.saveIndex].many=i.changeNumber})),e.ref(50);const n=e.ref(0),r=e.ref({name:"长春市永佳利商贸有限公司",many:0,change:0}),o=e.ref([{name:"长春市永佳利商贸有限公司",many:9999,change:0},{name:"长春市永佳利商贸有限公司",many:0,change:0},{name:"长春市永佳利商贸有限公司",many:0,change:0}]),c=()=>{d(),m.value&&(o.value.push(JSON.parse(JSON.stringify(r.value))),n.value=998,e.nextTick((()=>{n.value=999})))},s=()=>{d(),a("closeIt")},d=()=>{a("closeRight")},m=e.ref(!0);return(l,i)=>(e.openBlock(),e.createElementBlock("view",{class:"plsbuy-contain"},[e.createElementVNode("view",{class:"plsbuy-title"},[e.createElementVNode("image",{class:"plsbuy-title-img",src:"/static/index/project3.png"},null,8,["src"]),e.createElementVNode("view",{class:"plsbuy-title-font"},[e.createElementVNode("view",{class:"plsbuy-title-weight"},"纸尿裤-拉拉裤"),e.createElementVNode("view",{class:"plsbuy-title-flex"},[e.createElementVNode("view",{class:"popup-right-font-contain",style:{width:"75%"}},[e.createElementVNode("view",{class:"popup-font-left"}," 规格型号: "),e.createElementVNode("view",{class:"popup-font-right"}," 800mm*690mm ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 采购单位: "),e.createElementVNode("view",{class:"popup-font-right"}," 片 ")])]),e.createElementVNode("view",{class:"plsbuy-title-flex"},[e.createElementVNode("view",{class:"popup-right-font-contain",style:{width:"75%"}},[e.createElementVNode("view",{class:"popup-font-left"}," 库存上限: "),e.createElementVNode("view",{class:"popup-font-right"}," 1000 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 库存下限: "),e.createElementVNode("view",{class:"popup-font-right"}," 10 ")])]),e.createElementVNode("view",{class:"plsbuy-title-flex"},[e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 库存数量: "),e.createElementVNode("view",{class:"popup-font-right"}," 50 ")])])])]),e.createElementVNode("view",{class:"plsbuy-card"},[e.createElementVNode("scroll-view",{"scroll-y":"","scroll-top":n.value,style:{height:"100%",width:"1150rpx"},"show-scrollbar":!0},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.value,((l,i)=>(e.openBlock(),e.createElementBlock("view",{key:i,class:e.normalizeClass(["plsbuy-card-heng",{"slide-out":l.sliding}])},[e.createElementVNode("view",{class:"card-flex"},[e.createElementVNode("image",{class:"plsbuy-card-img",src:"/static/index/subtract.png",onClick:e=>{return t=i,d(),void(m.value&&(m.value=!1,o.value[t].sliding=!0,setTimeout((()=>{o.value.splice(t,1),m.value=!0}),400)));var t}},null,8,["onClick"]),e.createElementVNode("view",{class:"plsbuy-weight"},"供应商:"),e.createElementVNode("view",{class:"plsbuy-font-right"},e.toDisplayString(l.name),1)]),e.createElementVNode("view",{class:"card-flex"},[e.createElementVNode("view",{class:"plsbuy-right-weight"},"采购数量"),e.createElementVNode("view",{class:e.normalizeClass(1===l.change?"plsbuy-jian-target":"plsbuy-jian"),onClick:e=>(e=>{d(),e.many&&e.many--,e.change=1,setTimeout((()=>{e.change=0}),300)})(l)}," -",10,["onClick"]),e.createElementVNode("view",{class:e.normalizeClass(t.saveIndex==i?"plsbuy-number-target":"plsbuy-number"),onClick:e=>((e,t)=>{a("openRight",e,t)})(l.many,i)},e.toDisplayString(l.many),11,["onClick"]),e.createElementVNode("view",{class:e.normalizeClass(2===l.change?"plsbuy-jia-target":"plsbuy-jia"),onClick:e=>(e=>{d(),e.many<9999&&e.many++,e.change=2,setTimeout((()=>{e.change=0}),300)})(l)},"+ ",10,["onClick"])])],2)))),128))],8,["scroll-top"])]),e.createElementVNode("view",{class:"plsbuy-amount"},[e.createElementVNode("view",{class:"plsbuy-amount-font"}," 合计: "),e.createElementVNode("view",{class:"plsbuy-amount-red"}," 100 ")]),e.createElementVNode("view",{class:"plsbuy-bottom"},[e.createElementVNode("view",{class:"plsbuy-bottom-blue",onClick:c}," 新增供应商 "),e.createElementVNode("view",{class:"plsbuy-bottom-blue",onClick:s}," 确认 "),e.createElementVNode("view",{class:"plsbuy-bottom-white",onClick:s}," 取消 ")])]))}}),[["__scopeId","data-v-5d6b5cea"]]),Te=s(e.defineComponent({__name:"calculator",props:{doOnce:{type:Number,required:!0},translateNumber:{type:Number,required:!0}},emits:["right"],setup(t,{emit:l}){const a=l,i=e.ref(-1),n=t;e.watch((()=>n.doOnce),(()=>{c.value=n.translateNumber,o.value=m(c.value)}));const r=[1,2,3,4,5,6,7,8,9,"AC",0,"CE"],o=e.ref("0000"),c=e.ref(0),s=(e,t)=>{return i.value=t,setTimeout((()=>{i.value=-1}),300),"AC"==e?(c.value=0,void(o.value="0000")):"CE"==e?(c.value=Math.trunc(c.value/10),void(o.value=m(c.value))):(l=c.value,void(Math.abs(l).toString().length>3||(c.value?c.value=10*c.value+e:c.value=e,o.value=m(c.value))));var l},d=()=>{a("right",c.value)};function m(e){const t=Math.floor(Math.abs(e));return String(t).padStart(4,"0")}return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"plsbuy-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"请购数量")])]),e.createElementVNode("view",{class:"calculator-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(r,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(i.value==l?"calculator-kuai-target":"calculator-kuai"),onClick:e=>s(t,l)},e.toDisplayString(t),11,["onClick"])]))),64))]),e.createElementVNode("view",{class:"qinggou-font"}," 请购数量 "),e.createElementVNode("view",{class:"stringShow-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"stringShow-kuai"},e.toDisplayString(t),1)])))),128))]),e.createElementVNode("view",{class:"plsbuy-bottom"},[e.createElementVNode("view",{class:"plsbuy-bottom-blue",onClick:d}," 确认 ")])]))}}),[["__scopeId","data-v-72274131"]]),De=s(e.defineComponent({__name:"index",props:{isShow:{type:Boolean,required:!0}},setup(t){const l=t,a=e.ref(!0),i=e.ref(null),n=e.ref(null),r=e.ref(null),o=e.ref(null),c=e.ref([{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2}]);e.watch((()=>l.isShow),((e,t)=>{!t&&e&&(a.value=!1,setTimeout((()=>{a.value=!0}),50))}));const s=e.ref(!1),d=e.ref(!1),m=e.ref(!1),u=e.ref(!1),v=e.ref(!1),p=e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]),g=()=>{s.value=!0,d.value=!1,setTimeout((()=>{d.value=!0}),100)},w=()=>{s.value=!1,m.value=!0,u.value=!1,setTimeout((()=>{u.value=!0}),100)},h=()=>{n.value.openDrawer()},f=()=>{o.value.openDrawer()},N=()=>{s.value=!1,r.value.openDrawer()},y=e.ref(-1),E=e.ref(0),V=e.ref(!1),b=e.ref(0),k=(e,t)=>{y.value=t,E.value=e,V.value=!0,b.value++},T=()=>{y.value=-1,E.value=0,V.value=!1},D=e.ref(0),C=e=>{V.value=!1,D.value=e};return(l,S)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.withDirectives(e.createElementVNode("view",{class:"index-content-other",style:e.normalizeStyle(a.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-right-height"}),e.createElementVNode("view",{class:"index-right-title"},[e.createElementVNode("view",{class:"index-right-name"}," 货品名称 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入货品名称"}),e.createElementVNode("view",{class:"index-right-name"}," 货品编码 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入货品编码"}),e.createElementVNode("view",{class:"index-right-name"}," 拼音检索 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入货品拼音"}),e.createElementVNode("view",{class:"index-right-button-all"},[e.createElementVNode("view",{class:"first-bgc"},[e.createElementVNode("image",{class:"bgc-img",src:"/static/index/Warehousing/firstbutton.png"})]),e.createElementVNode("view",{class:"second-bgc"},[e.createElementVNode("image",{class:"bgc-img",src:"/static/index/Warehousing/secondbutton.png"})]),e.createElementVNode("view",{class:e.normalizeClass(v.value?"bgc-white":"third-bgc"),onClick:S[0]||(S[0]=e=>v.value=!v.value)},[e.withDirectives(e.createElementVNode("view",{class:"red-pao"},e.toDisplayString("99+"),512),[[e.vShow,!v.value]]),e.createElementVNode("image",{class:"bgc-img",src:"/static/index/Warehousing/thirdbutton.png"})],2),e.createElementVNode("view",{class:"fourth-bgc",onClick:f},[e.createElementVNode("image",{class:"fourth-bgc-img",src:"/static/index/Warehousing/fourthbutton.png"}),e.createElementVNode("view",{class:"fourth-bgc-font"}," 请购单 ")]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"index-right-button"},[e.createElementVNode("image",{class:"index-right-button-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"index-right-button-font"},e.toDisplayString(t.name),1)])])))),128))])]),e.createElementVNode("view",{class:"swiper-contain"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"98%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"swiper-card",style:e.normalizeStyle(1===t.type?{background:"#00D6A9 url(/static/index/warehouseCard/bgcgreen.png) center/cover"}:2===t.type?{background:"#BD9AF8 url(/static/index/warehouseCard/bgcpouple.png) center/cover"}:{})},[e.createElementVNode("view",{class:"swiper-card-left"},[e.createElementVNode("view",{class:"swiper-card-left-white"},[e.createElementVNode("image",{class:e.normalizeClass(0===t.type?"swiper-card-left-white-img-first":1===t.type?"swiper-card-left-white-img-second":"swiper-card-left-white-img-third"),src:"/static/index/project3.png",onClick:g},null,10,["src"])])]),e.createElementVNode("view",{class:"swiper-card-right"},[e.createElementVNode("view",{class:"swiper-right-title"},[e.createElementVNode("view",{class:"swiper-title-font"},e.toDisplayString(t.name),1),e.createElementVNode("view",{class:"swiper-title-font-button"},e.toDisplayString(0===t.type?"护理类":1===t.type?"医疗类":"行政类"),1)]),e.createElementVNode("view",{class:"swiper-heng"}),e.createElementVNode("view",{class:"swiper-font"}," 规格型号:800mm*690mm "),e.createElementVNode("view",{class:"swiper-double"},[e.createElementVNode("view",{class:"swiper-littlefont"}," 采购单位:片 "),e.withDirectives(e.createElementVNode("view",{class:"swiper-littlefont",style:{"margin-left":"10rpx"}},[e.createTextVNode(" 库存 "),e.createElementVNode("view",{style:{color:"rgb(18,169,51)"}},"↑"),e.createTextVNode(" :1000 ")],512),[[e.vShow,v.value]])]),e.createElementVNode("view",{class:"swiper-double"},[e.createElementVNode("view",{class:"swiper-littlefont"},[e.createTextVNode(" 库存数量: "),e.createElementVNode("view",{class:"blackfont"}," 50 ")]),e.withDirectives(e.createElementVNode("view",{class:"swiper-littlefont",style:{"margin-left":"10rpx"}},[e.createTextVNode(" 库存 "),e.createElementVNode("view",{style:{color:"rgb(248,122,85)"}},"↓"),e.createTextVNode(" :5 ")],512),[[e.vShow,v.value]])]),e.createElementVNode("view",{class:"swiper-left-buttons"},[e.createElementVNode("view",{class:e.normalizeClass(0===t.type?"swiper-left-button-blue":1===t.type?"swiper-left-button-green":"swiper-left-button-pouple"),onClick:w}," 请购 ",2),e.createElementVNode("view",{class:"swiper-left-button",onClick:N}," 出入库 ")])])],4)])))),128))]),e.createElementVNode("view",{class:"bug-bottom"})])])]),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")],4),[[e.vShow,t.isShow]]),e.withDirectives(e.createElementVNode("view",{class:"popup-detail",onClick:S[2]||(S[2]=e=>s.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content",style:e.normalizeStyle({opacity:d.value?1:0}),onClick:S[1]||(S[1]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(be,{onQinggou:w,onChuruku:N})],4)],512),[[e.vShow,s.value&&t.isShow]]),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-plsbuy",onClick:S[6]||(S[6]=e=>m.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content-plsbuy",style:e.normalizeStyle({opacity:u.value?1:0}),onClick:S[4]||(S[4]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(ke,{saveIndex:y.value,changeNumber:D.value,onCloseIt:S[3]||(S[3]=e=>m.value=!1),onOpenRight:k,onCloseRight:T},null,8,["saveIndex","changeNumber"])],4),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-content-calculator",style:e.normalizeStyle({opacity:u.value?1:0}),onClick:S[5]||(S[5]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(Te,{doOnce:b.value,translateNumber:E.value,onRight:C},null,8,["doOnce","translateNumber"])],4),[[e.vShow,V.value]])],512),[[e.vShow,m.value&&t.isShow]]),e.createVNode(x,{ref_key:"drawer",ref:n},{default:e.withCtx((()=>[e.createVNode(pe)])),_:1},512),e.createVNode(x,{ref_key:"draweranther",ref:i,widNumber:45,style:{"z-index":"9999"}},{default:e.withCtx((()=>[e.createVNode(ge)])),_:1},512),e.createVNode(x,{ref_key:"goshopdrawer",ref:o},{default:e.withCtx((()=>[e.createVNode(Ee,{onOpendetail:S[7]||(S[7]=e=>i.value.openDrawer())})])),_:1},512),e.createVNode(x,{ref_key:"gobackdrawer",ref:r,widNumber:45},{default:e.withCtx((()=>[e.createVNode(we)])),_:1},512),e.createVNode(Ve,{isShow:t.isShow&&!s.value&&!m.value,onClick:h},null,8,["isShow"])],64))}}),[["__scopeId","data-v-912c10f8"]]),Ce="/static/index/guan.png",Se=s(e.defineComponent({__name:"index",props:{openType:{type:Number,required:!0}},emits:["closedetail","openDrawer"],setup(t,{emit:l}){const a=e.ref("");e.ref(!1),e.ref("");const i=["已作废","未确认","已确认","未完结","待结账","已结账"];e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const n=l,r=e=>{n("openDrawer",e)};return(l,n)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")]),e.createElementVNode("view",{class:e.normalizeClass(t.openType?"title-button":"title-button-red")},e.toDisplayString(i[t.openType]),3)]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"采购单号:"),e.createElementVNode("view",{class:"",style:{"font-weight":"700"}},"A0120250301001")]),e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"总金额:"),e.createElementVNode("view",{class:""},"100.00")])]),e.createElementVNode("view",{class:"weight-boom"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"物料信息")]),3===t.openType?(e.openBlock(),e.createElementBlock("view",{key:0,class:"draw-flex",style:{"margin-top":"-10rpx"}},[e.createElementVNode("view",{class:"button-first",onClick:n[0]||(n[0]=e=>r(0))}," 入库单 "),e.createElementVNode("view",{class:"button-second",onClick:n[1]||(n[1]=e=>r(1))}," 挂账单 "),e.createElementVNode("view",{class:"button-third",onClick:n[2]||(n[2]=e=>r(2))}," 销账单 ")])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("image",{class:"card-img",src:Ce})]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 货品名称: "),e.createElementVNode("view",{class:"title-black"}," 引流袋(医用透明) ")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 采购数量: "),e.createElementVNode("view",{class:"title-black"}," 10 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 货品编码: "),e.createElementVNode("view",{class:"title-black"}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 规格型号: "),e.createElementVNode("view",{class:"title-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单位: "),e.createElementVNode("view",{class:"title-black"}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-black"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-black"}," 10.12 ")])])])])])])]))),64))])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"10rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},e.toDisplayString(t.openType?"备注":"作废原因"),1),t.openType?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"draw-red"},"*"))])]),e.createElementVNode("view",{class:"down-note"},[e.withDirectives(e.createElementVNode("textarea",{class:"down-note-title-input","onUpdate:modelValue":n[3]||(n[3]=e=>a.value=e),maxlength:"300","placeholder-style":"color:#999",placeholder:t.openType?"请输入备注":"不予采购"},null,8,["placeholder"]),[[e.vModelText,a.value]]),e.createElementVNode("text",{class:"char-count"},e.toDisplayString(a.value.length)+"/300",1)])])]))}}),[["__scopeId","data-v-7e25ad7e"]]),Be=s(e.defineComponent({__name:"index",props:{},emits:["voidIt","closevoid"],setup(t,{emit:l}){const a=e.ref("");e.ref(!1),e.ref("");const i=l;e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")])]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"采购单号:"),e.createElementVNode("view",{class:"",style:{"font-weight":"700"}},"A0120250301001")]),e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"总金额:"),e.createElementVNode("view",{class:"",style:{color:"red"}},"100.00")])]),e.createElementVNode("view",{class:"weight-boom"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"物料信息")])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("image",{class:"card-img",src:Ce})]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 货品名称: "),e.createElementVNode("view",{class:"title-black"}," 引流袋(医用透明) ")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 采购数量: "),e.createElementVNode("view",{class:"title-black"}," 10 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 货品编码: "),e.createElementVNode("view",{class:"title-black"}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 规格型号: "),e.createElementVNode("view",{class:"title-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单位: "),e.createElementVNode("view",{class:"title-black"}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-red"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-red"}," 10.12 ")])])])])])])]))),64))])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"作废原因"),e.createElementVNode("view",{class:"draw-red"},"*")])]),e.createElementVNode("view",{class:"down-note"},[e.withDirectives(e.createElementVNode("textarea",{class:"down-note-title-input","onUpdate:modelValue":l[0]||(l[0]=e=>a.value=e),maxlength:"300","placeholder-style":"color:#999",placeholder:"请输入作废原因"},null,512),[[e.vModelText,a.value]]),e.createElementVNode("text",{class:"char-count"},e.toDisplayString(a.value.length)+"/300",1)]),e.createElementVNode("view",{class:"button-card"},[e.createElementVNode("view",{class:"swiper-button-blue",onClick:l[1]||(l[1]=e=>{i("voidIt")})}," 作废 ")])])]))}}),[["__scopeId","data-v-034b4de7"]]),ze="/static/index/Warehousing/goku.png",_e="/static/index/Warehousing/guazhang.png",Ie="/static/index/Warehousing/hexiao.png",Ue="/static/index/Warehousing/zuo.png",Me="/static/index/Warehousing/you.png",Fe=s(e.defineComponent({__name:"index",props:{dantype:{type:Number,required:!0}},emits:["opensuixing","closevoid"],setup(t,{emit:a}){e.ref(""),e.ref(!1),e.ref("");const i=a,n=e.ref(0);e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const r=()=>{i("opensuixing")},o=()=>{uni.previewImage({urls:["/static/index/Warehousing/photo.png"]}),l("log","at component/storeroom/drawer/storage/index.vue:294","????")};return(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:e.normalizeClass(t.dantype?"pouple-font":"green-font")},"采购单号:",2),e.createElementVNode("view",{class:e.normalizeClass(t.dantype?"pouple-font":"green-font"),style:{"font-weight":"700"}},"A0120250301001",2)])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},e.toDisplayString(t.dantype?"挂账单":"入库单"),1)])]),e.createElementVNode("view",{class:"radio-circle-top-father"},[e.createElementVNode("scroll-view",{"scroll-x":"",style:{height:"100%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(n.value?"radio-circle":"radio-circle-target"),onClick:a[0]||(a[0]=e=>n.value=0)},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[1]||(a[1]=e=>n.value=0)},e.toDisplayString(`${t.dantype?"挂账":"入库"}单号:A0120250301001555${t.dantype?"G":"R"}01`),1)]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(1==n.value?"radio-circle-target":"radio-circle"),onClick:a[2]||(a[2]=e=>{n.value=1})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[3]||(a[3]=e=>n.value=1)},e.toDisplayString(`${t.dantype?"挂账":"入库"}单号:A0120250301001555${t.dantype?"G":"R"}02`),1)]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(2==n.value?"radio-circle-target":"radio-circle"),onClick:a[4]||(a[4]=e=>{n.value=2})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[5]||(a[5]=e=>n.value=2)},e.toDisplayString(`${t.dantype?"挂账":"入库"}单号:A0120250301001555${t.dantype?"G":"R"}03`),1)])])])]),e.createElementVNode("view",{class:"ruku-time"},[e.createElementVNode("view",{style:{display:"flex","margin-left":"50rpx"}},[e.createElementVNode("view",{class:"ruku-time-font"},e.toDisplayString((t.dantype?"挂账":"入库")+"时间:"),1),e.createElementVNode("view",{class:"ruku-time-font"}," 2025.03.02 10:10:10 ")]),e.createElementVNode("view",{class:"button-first",onClick:r}," 随行单 ")]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("view",{class:"card-img-bgc"},[e.createElementVNode("image",{class:"card-img",src:Ce})])]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 采购数量: "),e.createElementVNode("view",{class:"title-black"}," 10 ")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 总金额: "),e.createElementVNode("view",{class:"title-black"}," 1150 ")])]),e.createElementVNode("view",{class:"card-right-bgc"},[e.createElementVNode("view",{class:"card-boom"},[e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%","margin-left":"30rpx"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 货品编码: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 规格型号: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 采购单位: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%","margin-left":"30rpx"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-black"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-black"}," 10.12 ")])])]),e.createElementVNode("view",{class:"boom-other"},[e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:ze}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量"),e.createElementVNode("view",{class:"boom-other-weight"},"10")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:_e}),e.createElementVNode("view",{class:"boom-other-font"},"挂账数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:Ie}),e.createElementVNode("view",{class:"boom-other-font"},"核销数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")])])])])])])])]))),64))])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"30rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"拣货拍照")])]),e.createElementVNode("view",{class:"down-note"},[e.createElementVNode("image",{class:"down-note-img",style:{"margin-left":"40rpx"},src:Ue}),e.createElementVNode("scroll-view",{"scroll-x":"",style:{height:"100%",width:"950rpx"},"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex"}},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l,onClick:o},[e.createElementVNode("image",{class:"down-note-photo",src:"/static/index/Warehousing/photo.png"})]))),64))])]),e.createElementVNode("image",{class:"down-note-img",src:Me})])])]))}}),[["__scopeId","data-v-4605a6eb"]]),$e=s(e.defineComponent({__name:"index",props:{},emits:["opensuixing","closevoid"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref(""),e.ref(0);const a=e.ref(["https://img-s.msn.cn/tenant/amp/entityid/AA1ECZ6y.img?w=768&h=960&m=6&x=355&y=171&s=47&d=47","https://img-s.msn.cn/tenant/amp/entityid/AA1ECtEb.img?w=768&h=436&m=6&x=280&y=134&s=200&d=200","/static/index/addphoto.png"]);e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const i=e=>{e==a.value.length-1?uni.chooseImage({count:9,sizeType:["original","compressed"],sourceType:["album","camera"],success:e=>{a.value.pop(),a.value=[...a.value,...e.tempFilePaths],a.value.push("/static/index/addphoto.png")}}):uni.previewImage({urls:a.value.slice(0,-1),current:a.value[e]})};return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"入库单")])]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:"green-font"},"采购单号:"),e.createElementVNode("view",{class:"green-font",style:{"font-weight":"700"}},"A0120250301001")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"50rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"随行单")])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%"},"show-scrollbar":!1},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"card-father",onClick:e=>i(l)},[e.createElementVNode("view",{class:"card-white"},[e.createElementVNode("image",{class:"card-white-photo",src:t},null,8,["src"])]),l!==a.value.length-1?(e.openBlock(),e.createElementBlock("view",{key:0,class:"down-title"},[e.createElementVNode("view",{class:"down-title-flex"},[e.createElementVNode("image",{class:"down-title-photo",src:"/static/index/Warehousing/shangchuanpeople.png"}),e.createElementVNode("view",{style:{"margin-left":"10rpx"}},"上传人:"),e.createElementVNode("view",{style:{"font-weight":"700"}},"王法")]),e.createElementVNode("view",{class:"down-title-flex"},[e.createElementVNode("image",{class:"down-title-photo",src:"/static/index/Warehousing/shangchuantime.png"}),e.createElementVNode("view",{style:{"margin-left":"10rpx"}},"上传时间:"),e.createElementVNode("view",{style:{"font-weight":"500"}},"2025.03.01 10:00:00")])])):e.createCommentVNode("",!0)],8,["onClick"])])))),128))])]),e.createElementVNode("view",{class:"button-card"})])]))}}),[["__scopeId","data-v-1773957a"]]),Ae=s(e.defineComponent({__name:"index",props:{},emits:["opensuixing","closehexiao"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref("");const a=e.ref(0);return e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]),(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:"green-font"},"采购单号:"),e.createElementVNode("view",{class:"green-font",style:{"font-weight":"700"}},"A0120250301001")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"销账单")])]),e.createElementVNode("view",{class:"radio-circle-top-father"},[e.createElementVNode("scroll-view",{"scroll-x":"",style:{height:"100%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(a.value?"radio-circle":"radio-circle-target"),onClick:l[0]||(l[0]=e=>a.value=0)},null,2),e.createElementVNode("view",{class:"radio-font",onClick:l[1]||(l[1]=e=>a.value=0)},"销账单号:A0120250301001555X01")]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(1==a.value?"radio-circle-target":"radio-circle"),onClick:l[2]||(l[2]=e=>{a.value=1})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:l[3]||(l[3]=e=>a.value=1)},"销账单号:A0120250301001555RX2")]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(2==a.value?"radio-circle-target":"radio-circle"),onClick:l[4]||(l[4]=e=>{a.value=2})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:l[5]||(l[5]=e=>a.value=2)},"销账单号:A0120250301001555X03")])])])]),e.createElementVNode("view",{class:"ruku-time"},[e.createElementVNode("view",{style:{display:"flex","margin-left":"50rpx"}},[e.createElementVNode("view",{class:"ruku-time-font"}," 销账时间: "),e.createElementVNode("view",{class:"ruku-time-font"}," 2025.03.02 10:10:10 ")])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("view",{class:"card-img-bgc"},[e.createElementVNode("image",{class:"card-img",src:Ce})])]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 采购数量: "),e.createElementVNode("view",{class:"title-black"}," 10 ")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 总金额: "),e.createElementVNode("view",{class:"title-black"}," 1150 ")])]),e.createElementVNode("view",{class:"card-right-bgc"},[e.createElementVNode("view",{class:"card-boom"},[e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%","margin-left":"30rpx"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 货品编码: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 规格型号: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 采购单位: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%","margin-left":"30rpx"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-black"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-black"}," 10.12 ")])])]),e.createElementVNode("view",{class:"boom-other"},[e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:ze}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量"),e.createElementVNode("view",{class:"boom-other-weight"},"10")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:_e}),e.createElementVNode("view",{class:"boom-other-font"},"挂账数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:Ie}),e.createElementVNode("view",{class:"boom-other-font"},"核销数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")])])])])])])])]))),64))])])])])]))}}),[["__scopeId","data-v-ee45895e"]]),Le=s(e.defineComponent({__name:"index",emits:["closedetail","openDrawer"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref("");const a=e.ref(0),i=e.ref([{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2}]);e.onMounted((()=>{c.value=JSON.parse(JSON.stringify(i.value))})),e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const n=l,r=e=>{n("openDrawer",e)},o=e.ref([]),c=e.ref([]),s=()=>{c.value=[],a.value?i.value.forEach((e=>{e.type===a.value-1&&c.value.push(e)})):c.value=JSON.parse(JSON.stringify(i.value))};return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")]),e.createElementVNode("view",{class:"draw-title-money"},[e.createElementVNode("view",{class:"draw-title-mon-left"},"总金额:"),e.createElementVNode("view",{class:"draw-title-mon-right"},"921.50")])]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"采购单号:"),e.createElementVNode("view",{class:"",style:{"font-weight":"700"}},"A0120250301001")]),e.createElementVNode("view",{class:"weight-right"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"button-blue",style:{"margin-left":"80rpx"},onClick:l[0]||(l[0]=e=>r(3))}," 拣货 "),e.createElementVNode("view",{class:"button-blue",onClick:l[1]||(l[1]=e=>r(4))}," 随行单 ")])])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"0rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"物料信息")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-target",style:e.normalizeStyle(0===a.value?{background:"#fff"}:{}),onClick:l[2]||(l[2]=e=>{a.value=0,s()})},[0===a.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"bad-circle-right"})):e.createCommentVNode("",!0),0===a.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"bad-circle-left"})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"kuai-blue"}),e.createElementVNode("view",{class:"kuai-font"},"全部")],4),e.createElementVNode("view",{class:"draw-target",style:e.normalizeStyle(1===a.value?{background:"#fff"}:{}),onClick:l[3]||(l[3]=e=>{a.value=1,s()})},[1===a.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"bad-circle-right"})):e.createCommentVNode("",!0),1===a.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"bad-circle-left"})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"kuai-pouple"}),e.createElementVNode("view",{class:"kuai-font"},"待入库")],4),e.createElementVNode("view",{class:"draw-target",style:e.normalizeStyle(2===a.value?{background:"#fff"}:{}),onClick:l[4]||(l[4]=e=>{a.value=2,s()})},[2===a.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"bad-circle-right"})):e.createCommentVNode("",!0),2===a.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"bad-circle-left"})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"kuai-green"}),e.createElementVNode("view",{class:"kuai-font"},"已入库")],4),e.createElementVNode("view",{class:"draw-target",style:e.normalizeStyle([{"margin-right":"120rpx"},3===a.value?{background:"#fff"}:{}]),onClick:l[5]||(l[5]=e=>{a.value=3,s()})},[3===a.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"bad-circle-right"})):e.createCommentVNode("",!0),3===a.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"bad-circle-left"})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"kuai-orange"}),e.createElementVNode("view",{class:"kuai-font"},"销账")],4)])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>(e=>{o.value.includes(e)?o.value=o.value.filter((t=>t!==e)):o.value.push(e)})(l)},[e.createElementVNode("view",{class:"swiper-card",style:e.normalizeStyle(1===t.type?{background:"#00D6A9 url(/static/index/warehouseCard/bgcgreengreen.png) center/cover"}:2===t.type?{background:"#FF6699 url(/static/index/warehouseCard/bgcorange.png) center/cover"}:{})},[e.createElementVNode("view",{class:"card-button",style:e.normalizeStyle(1===t.type?{background:"linear-gradient(to right, #E2FFFF, #83EBDC, #E2FFFF)"}:2===t.type?{background:"linear-gradient(to right, #FFFFFF , #FFCCC3, #FFE6FF )"}:{})},[e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:ze}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量"),e.createElementVNode("view",{class:"boom-other-weight"},"10")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:_e}),e.createElementVNode("view",{class:"boom-other-font"},"挂账数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:Ie}),e.createElementVNode("view",{class:"boom-other-font"},"销账数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")])],4),e.createElementVNode("view",{class:"swiper-card-title"},[o.value.includes(l)?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"swiper-card-img"},[e.createElementVNode("view",{class:"swiper-card-font-font"},"✓")])),o.value.includes(l)?(e.openBlock(),e.createElementBlock("view",{key:1,class:"swiper-card-img-target"},[e.createElementVNode("view",{class:"swiper-card-font-font"},"✓")])):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"swiper-card-title-name"},[e.createElementVNode("view",{class:"swiper-card-font"}," 采购数量: "),e.createElementVNode("view",{class:"swiper-card-weight"}," 10 "),e.createElementVNode("view",{class:"swiper-card-shu"}," | "),e.createElementVNode("view",{class:"swiper-card-font"}," 总金额: "),e.createElementVNode("view",{class:"swiper-card-weight"}," 1150 ")]),e.createElementVNode("view",{class:"swiper-right-title"},[2!==t.type?(e.openBlock(),e.createElementBlock("view",{key:0,class:"swiper-title-font-button"},e.toDisplayString(0===t.type?"待入库":1===t.type?"已入库":""),1)):e.createCommentVNode("",!0),2===t.type?(e.openBlock(),e.createElementBlock("view",{key:1,class:"swiper-title-font-button",style:{"margin-right":"45rpx","margin-left":"5rpx"}}," 销账 ")):e.createCommentVNode("",!0)])]),e.createElementVNode("view",{style:{display:"flex"}},[e.createElementVNode("view",{class:"swiper-card-left"},[e.createElementVNode("view",{class:"swiper-card-left-white"},[e.createElementVNode("image",{class:e.normalizeClass(0===t.type?"swiper-card-left-white-img-first":1===t.type?"swiper-card-left-white-img-second":"swiper-card-left-white-img-third"),src:"/static/index/project3.png"},null,10,["src"])])]),e.createElementVNode("view",{class:"swiper-card-right"},[e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"30rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 物料名称: "),e.createElementVNode("view",{class:"swiper-font-right"}," 胃管(进口) ")]),e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"10rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-font-right"}," CH/FR15,100cm ")]),e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"10rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 物料编码: "),e.createElementVNode("view",{class:"swiper-font-right"}," QXYP016 ")]),e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"10rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 采购单位: "),e.createElementVNode("view",{class:"swiper-font-right"}," 根 ")]),e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"10rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 采购单价: "),e.createElementVNode("view",{class:"swiper-font-right",style:{"margin-right":"20rpx"}}," 115.00 "),e.createElementVNode("view",{class:"swiper-font-left"}," 到货单价: "),e.createElementVNode("view",{class:"swiper-font-right"}," 115.00 ")])])])],4)],8,["onClick"])))),128))])])])])]))}}),[["__scopeId","data-v-72acf113"]]),Oe=s(e.defineComponent({__name:"index",props:{backnumber:{type:Number}},emits:["opensuixing","closehexiao","closepickingdrawer","openCal"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref("");const a=l,i=t;e.watch((()=>i.backnumber),(()=>{r.value[o.value].many=i.backnumber})),e.ref(0),e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const n=e.ref(["https://img-s.msn.cn/tenant/amp/entityid/AA1ECZ6y.img?w=768&h=960&m=6&x=355&y=171&s=47&d=47","https://img-s.msn.cn/tenant/amp/entityid/AA1ECtEb.img?w=768&h=436&m=6&x=280&y=134&s=200&d=200","/static/index/addphoto.png"]),r=e.ref([{name:"入库数量",many:9999,change:0},{name:"销账数量",many:0,change:0}]),o=e.ref(0),c=()=>{a("closepickingdrawer")},s=e=>{e==n.value.length-1?uni.chooseImage({count:9,sizeType:["original","compressed"],sourceType:["album","camera"],success:e=>{n.value.pop(),n.value=[...n.value,...e.tempFilePaths],n.value.push("/static/index/addphoto.png")}}):uni.previewImage({urls:n.value.slice(0,-1),current:n.value[e]})};return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"title-title"}," 留置针敷贴(医用透明敷料) "),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"10rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")])]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 货品名称: "),e.createElementVNode("view",{class:"swiper-black"}," 留置针敷贴(医用透明敷料) ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"45%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 货品编码: "),e.createElementVNode("view",{class:"swiper-black"}," FLYP001 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"45%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购单位: "),e.createElementVNode("view",{class:"swiper-black"}," 个 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购单价: "),e.createElementVNode("view",{class:"swiper-black"}," 0.1 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 到货单价: "),e.createElementVNode("view",{class:"swiper-black"}," 0.12 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购金额: "),e.createElementVNode("view",{class:"swiper-black"}," 10.12 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"10rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"入库信息")])]),e.createElementVNode("view",{class:"color-father"},[e.createElementVNode("view",{class:"color-pink",style:{"margin-left":"40rpx"}},[e.createElementVNode("view",{class:"color-weight"}," 10 "),e.createElementVNode("view",{class:"color-font"}," 采购数量 ")]),e.createElementVNode("view",{class:"color-green"},[e.createElementVNode("view",{class:"color-weight"}," 0 "),e.createElementVNode("view",{class:"color-font"}," 入库数量 ")]),e.createElementVNode("view",{class:"color-red"},[e.createElementVNode("view",{class:"color-weight"}," 0 "),e.createElementVNode("view",{class:"color-font"}," 销账数量 ")])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"10rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"拣货入库")])]),e.createElementVNode("view",{class:"swiper-card-once",style:{height:"240rpx"}},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx","flex-direction":"column"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"plsbuy-card-heng"},[e.createElementVNode("view",{class:"card-flex"},[e.createElementVNode("view",{class:"plsbuy-font-right"},e.toDisplayString(t.name),1)]),e.createElementVNode("view",{class:"card-flex"},[e.createElementVNode("view",{class:"plsbuy-right-weight"},e.toDisplayString(l?"销账数量":"入库数量"),1),e.createElementVNode("view",{class:e.normalizeClass(1===t.change?"plsbuy-jian-target":"plsbuy-jian"),onClick:e=>(e=>{e.many&&e.many--,e.change=1,setTimeout((()=>{e.change=0}),300)})(t)}," -",10,["onClick"]),e.createElementVNode("view",{class:"plsbuy-number",onClick:e=>((e,t)=>{o.value=e,a("openCal",t)})(l,t.many)},e.toDisplayString(t.many),9,["onClick"]),e.createElementVNode("view",{class:e.normalizeClass(2===t.change?"plsbuy-jia-target":"plsbuy-jia"),onClick:e=>(e=>{e.many<9999&&e.many++,e.change=2,setTimeout((()=>{e.change=0}),300)})(t)},"+ ",10,["onClick"])])])))),128))])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"拣货拍照")])]),e.createElementVNode("view",{class:"down-note"},[e.createElementVNode("image",{class:"down-note-img",style:{"margin-left":"40rpx"},src:Ue}),e.createElementVNode("scroll-view",{"scroll-x":"",style:{height:"100%",width:"950rpx"},"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("image",{class:"down-note-photo",src:t,onClick:e=>s(l)},null,8,["src","onClick"])])))),128))])]),e.createElementVNode("image",{class:"down-note-img",src:Me})]),e.createElementVNode("view",{class:"button-card"},[e.createElementVNode("view",{class:"swiper-button-white",onClick:c}," 取消 "),e.createElementVNode("view",{class:"swiper-button-blue",onClick:c}," 确定 ")])])]))}}),[["__scopeId","data-v-ab4efe77"]]),Pe=s(e.defineComponent({__name:"index",props:{doOnce:{type:Number,required:!0},translateNumber:{type:Number,required:!0}},emits:["right","close"],setup(t,{emit:l}){const a=l,i=e.ref(-1),n=t;e.watch((()=>n.doOnce),(()=>{c.value=n.translateNumber,o.value=d(c.value)}));const r=[1,2,3,4,5,6,7,8,9,"AC",0,"CE"],o=e.ref("0000"),c=e.ref(0),s=(e,t)=>{return i.value=t,setTimeout((()=>{i.value=-1}),300),"AC"==e?(c.value=0,void(o.value="0000")):"CE"==e?(c.value=Math.trunc(c.value/10),void(o.value=d(c.value))):(l=c.value,void(Math.abs(l).toString().length>3||(c.value?c.value=10*c.value+e:c.value=e,o.value=d(c.value))));var l};function d(e){const t=Math.floor(Math.abs(e));return String(t).padStart(4,"0")}return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{style:{"margin-left":"80rpx"}},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购数量")])]),e.createElementVNode("view",{class:"calculator-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(r,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(i.value==l?"calculator-kuai-target":"calculator-kuai"),onClick:e=>s(t,l)},e.toDisplayString(t),11,["onClick"])]))),64))]),e.createElementVNode("view",{class:"qinggou-font"}," 采购数量 "),e.createElementVNode("view",{class:"stringShow-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"stringShow-kuai"},e.toDisplayString(t),1)])))),128))])]),e.createElementVNode("view",{class:"button-card"},[e.createElementVNode("view",{class:"swiper-button-white",onClick:l[0]||(l[0]=e=>{a("close")})}," 关闭 "),e.createElementVNode("view",{class:"swiper-button-blue",onClick:l[1]||(l[1]=e=>{a("right",c.value)})}," 确定 ")])])]))}}),[["__scopeId","data-v-e7259b7d"]]),je=s(e.defineComponent({__name:"index",props:{savePrice:{type:Number,required:!0},changePrice:{type:Number,required:!0}},emits:["right","close","openCal","closeCal","rightclose"],setup(t,{emit:l}){const a=l;e.ref(-1);const i=t;return(l,n)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title-father"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-font"},"货品名称:"),e.createElementVNode("view",{class:"draw-weight"},"留置针敷贴(医用透明敷料)")])]),e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("image",{class:"card-img",src:Ce})]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 货品名称: "),e.createElementVNode("view",{class:"title-black"}," 引流袋(医用透明) ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"300rpx"}},[e.createElementVNode("view",{class:"title-gray"}," 货品编码: "),e.createElementVNode("view",{class:"title-black"}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"300rpx"}},[e.createElementVNode("view",{class:"title-gray"}," 规格型号: "),e.createElementVNode("view",{class:"title-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{}},[e.createElementVNode("view",{class:"title-gray"}," 采购单位: "),e.createElementVNode("view",{class:"title-black"}," 个 ")])])])])])]),e.createElementVNode("view",{class:"contant-mid"},[e.createElementVNode("view",{class:""},"改价前到货单价:"),e.createElementVNode("view",{class:"contant-mid-wight"},e.toDisplayString(t.savePrice),1)]),e.createElementVNode("view",{class:"contant-mid"},[e.createElementVNode("view",{class:""},"改价后到货单价:"),e.createElementVNode("view",{class:"contant-mid-wight-target",onClick:n[0]||(n[0]=e=>{return l=t.changePrice,void a("openCal",l);var l})},e.toDisplayString(t.changePrice),1)]),e.createElementVNode("view",{class:"button-card"},[e.createElementVNode("view",{class:"swiper-button-white",onClick:n[1]||(n[1]=e=>(a("close"),void a("closeCal")))}," 关闭 "),e.createElementVNode("view",{class:"swiper-button-blue",onClick:n[2]||(n[2]=e=>(a("close"),a("closeCal"),void a("rightclose",i.changePrice)))}," 确定 ")])])]))}}),[["__scopeId","data-v-2517b556"]]),qe=s(e.defineComponent({__name:"index",props:{openType:{type:Number,required:!0},valueBack:{type:Number,required:!0}},emits:["closedetail","openDrawer","openPen"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref("");const a=t,i=[{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1}],n=["已作废","未确认","已确认","未完结","待结账","已结账"];e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const r=l,o=e.ref(0);return e.watch((()=>a.valueBack),(()=>{-1!=a.valueBack&&(i[o.value].price=a.valueBack)}),{immediate:!0}),(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")]),e.createElementVNode("view",{class:e.normalizeClass(t.openType?"title-button":"title-button-red")},e.toDisplayString(n[t.openType]),3)]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"采购单号:"),e.createElementVNode("view",{class:"",style:{"font-weight":"700"}},"A0120250301001")]),e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"总金额:"),e.createElementVNode("view",{class:""},"100.00")])]),e.createElementVNode("view",{class:"weight-boom"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"物料信息")]),e.createElementVNode("view",{class:"draw-flex",style:{"margin-top":"-10rpx"}},[e.createElementVNode("view",{class:"button-blue",onClick:a[0]||(a[0]=e=>{r("openDrawer",4)})}," 随行单 ")])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(i,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-rightbox"},[e.createElementVNode("view",{class:"vertical-line"}),e.createElementVNode("view",{class:"rightbox-other"},[e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:ze}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量:"),e.createElementVNode("view",{class:"boom-other-weight"},"10")]),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:_e}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量:"),e.createElementVNode("view",{class:"boom-other-weight"},"0")]),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:Ie}),e.createElementVNode("view",{class:"boom-other-font"},"销账数量:"),e.createElementVNode("view",{class:"boom-other-weight"},"0")])])]),e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("image",{class:"card-img",src:Ce})]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 货品名称: "),e.createElementVNode("view",{class:"title-black"},e.toDisplayString(t.name),1)])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 货品编码: "),e.createElementVNode("view",{class:"title-black"}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 规格型号: "),e.createElementVNode("view",{class:"title-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单位: "),e.createElementVNode("view",{class:"title-black"}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-black"},e.toDisplayString(t.price),1),e.createElementVNode("image",{class:"title-img",src:"/static/index/Warehousing/pen.png",onClick:e=>(e=>{o.value=e,r("openPen",i[e].price)})(l)},null,8,["onClick"])]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-black"}," 10.12 ")])])])])])])]))),64))])])])])]))}}),[["__scopeId","data-v-d07b1c84"]]),Re=s(e.defineComponent({__name:"calculatorfly",props:{doOnce:{type:Number,required:!0},translateNumber:{type:[Number,String],required:!0}},emits:["right"],setup(t,{emit:l}){const a=l,i=t,n=e.ref(""),r=e.ref([]),o=e.ref(-1),c=[1,2,3,4,5,6,7,8,9,0,".","CE","AC"];function s(e,t){if(o.value=t,setTimeout((()=>{o.value=-1}),300),"AC"===e)n.value="";else if("CE"===e)n.value=n.value.slice(0,-1);else if("."===e)!n.value.includes(".")&&n.value.length<7&&(n.value=n.value||"0",n.value+=".");else{const t=e.toString();(function(e){const t=n.value+e,l=t.split(".");return!(l[1]&&l[1].length>2)&&t.length<=7})(t)&&(n.value+=t)}m()}function d(){const e=parseFloat(n.value)||0;a("right",e)}function m(){if("0"===n.value)return void(r.value=Array(7).fill(" "));if(!n.value)return void(r.value=Array(7).fill(" "));const e=function(e){let[t,l]=e.split(".");void 0!==l&&(l=l.slice(0,2));t=t.replace(/^0+/,""),""===t&&(t="0");let a=void 0!==l?`${t}.${l}`:t;a.length>7&&(a=a.slice(0,7));return a.padStart(7," ")}(n.value);r.value=e.split("")}return e.watch((()=>i.doOnce),(()=>{n.value=String(i.translateNumber),m()}),{immediate:!0}),(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"plsbuy-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"货品价格")])]),e.createElementVNode("view",{class:"calculator-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(c,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(o.value===l?"calculator-kuai-target":"calculator-kuai"),onClick:e=>s(t,l)},e.toDisplayString(t),11,["onClick"])]))),64))]),e.createElementVNode("view",{class:"qinggou-font"},"货品价格"),e.createElementVNode("view",{class:"stringShow-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"stringShow-kuai"},e.toDisplayString(t),1)])))),128))]),e.createElementVNode("view",{class:"plsbuy-bottom"},[e.createElementVNode("view",{class:"plsbuy-bottom-blue",onClick:d},"确认")])]))}}),[["__scopeId","data-v-86c43bb8"]]),We=s(e.defineComponent({__name:"orders",props:{isShow:{type:Boolean,required:!0}},setup(t){const l=t,i=e.ref(!0),n=e=>{switch(e){case 0:return"ball-red-big";case 1:return"ball-yellow-big";default:return"ball-green"}},r=e=>{switch(e){case 0:case 1:return"ball-white";case 2:case 3:return"ball-yellow-big";case 4:case 5:return"ball-green"}},o=e=>{switch(e){case 4:return"ball-yellow-big";case 5:return"ball-green";default:return"ball-white"}};e.watch((()=>l.isShow),((e,t)=>{!t&&e&&(i.value=!1,setTimeout((()=>{i.value=!0}),50))}));const c=e.ref(null),s=e.ref(null),d=e.ref(null),m=e.ref(null),u=e.ref(!1),v=e.ref(0),p=e.ref(0),g=e.ref(0),w=e.ref(!1),h=e.ref(-1),f=e.ref(null),N=()=>{f.value.openDrawer()},y=e.ref(-1),E=e.ref(null),V=()=>{E.value.openDrawer()},b=e.ref(0),k=e.ref(null),T=e=>{e?1===e?(d.value.openDrawer(),b.value=1):2===e?(b.value=2,m.value.openDrawer()):3===e?k.value.openDrawer():4===e&&E.value.openDrawer():(d.value.openDrawer(),b.value=0)},D=e.ref(0),C=e.ref(0),S=e.ref(-1),B=e=>{S.value=e},z=e=>{$.value=!1,C.value=e},_=e=>{D.value=e,C.value=e,u.value=!0,X.value=!0},I=e.ref(0),U=e.ref(0),M=e.ref(!1),F=()=>{M.value=!1},$=e.ref(!1),A=e=>{$.value=!0,U.value++,I.value=e},L=e.ref(0),O=e=>{M.value=!1,L.value=e},P=e=>{I.value=e,M.value=!0,X.value=!1,setTimeout((()=>{X.value=!0}),100),U.value++},j=()=>{k.value.closeDrawer()},q=e.ref(null),R=()=>{if(p.value=0,g.value=0,v.value<3?v.value++:v.value=0,v.value){let e=[];switch(v.value){case 1:Q.value.forEach((t=>{1==t.cardType&&e.push(t)})),K.value=e;break;case 2:Q.value.forEach((t=>{t.cardType>2&&e.push(t)})),K.value=e;break;case 3:Q.value.forEach((t=>{0==t.cardType&&e.push(t)})),K.value=e}}else K.value=Q.value},W=()=>{if(v.value=0,g.value=0,p.value<2?p.value++:p.value=0,p.value){let e=[];switch(p.value){case 1:Q.value.forEach((t=>{2!=t.cardType&&3!=t.cardType||e.push(t)})),K.value=e;break;case 2:Q.value.forEach((t=>{t.cardType>3&&e.push(t)})),K.value=e}}else K.value=Q.value},Y=()=>{if(p.value=0,v.value=0,g.value<2?g.value++:g.value=0,g.value){let e=[];switch(g.value){case 1:Q.value.forEach((t=>{4==t.cardType&&e.push(t)})),K.value=e;break;case 2:Q.value.forEach((t=>{5==t.cardType&&e.push(t)})),K.value=e}}else K.value=Q.value},J=e.ref(!1),X=e.ref(!1),Z=e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]),H=e.ref(""),G=e.ref(["已作废","未确认","已确认","未完结","待结账","已结账"]),Q=e.ref(Array.from({length:6},((e,t)=>({cardType:t})))),K=e.ref([]),ee=e=>{switch(e){case 0:return"ball-white";case 1:return"ball-yellow";case 2:return"ball-green";case 3:return"ball-red"}},te=()=>{J.value=!0,X.value=!1,setTimeout((()=>{X.value=!0}),200)},le=()=>{c.value.closeDrawer()},ae=()=>{d.value.closeDrawer()},ie=()=>{s.value.closeDrawer()},ne=()=>{m.value.closeDrawer()},re=e=>{H.value=e.result};return e.onMounted((()=>{K.value=Q.value})),(l,oe)=>{const ce=a(e.resolveDynamicComponent("u-calendar"),xe);return e.openBlock(),e.createElementBlock(e.Fragment,null,[e.withDirectives(e.createElementVNode("view",{class:"index-content-other",style:e.normalizeStyle(i.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-right-height"}),e.createElementVNode("view",{class:"index-right-title"},[e.createElementVNode("view",{class:"ball-bgc",style:{"box-shadow":"2rpx 2rpx 4rpx 0rpx rgba(0, 0, 0, 0.3)"},onClick:R},[e.createElementVNode("view",{class:e.normalizeClass(ee(v.value))}," 采购 ",2)]),e.createElementVNode("view",{class:"ball-bgc",style:{"box-shadow":"2rpx 2rpx 4rpx 0rpx rgba(0, 0, 0, 0.3)"},onClick:W},[e.createElementVNode("view",{class:e.normalizeClass(ee(p.value))}," 拣货 ",2)]),e.createElementVNode("view",{class:"ball-bgc",style:{"box-shadow":"2rpx 2rpx 4rpx 0rpx rgba(0, 0, 0, 0.3)"},onClick:Y},[e.createElementVNode("view",{class:e.normalizeClass(ee(g.value))}," 结账 ",2)]),e.createElementVNode("view",{class:"index-right-name"}," 采购单号 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入采购单号"}),e.createElementVNode("view",{class:"index-right-name"}," 供应商 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入供应商"}),e.createElementVNode("view",{class:"index-right-name"}," 采购日期 "),e.createElementVNode("view",{onClick:oe[0]||(oe[0]=e.withModifiers((e=>w.value=!0),["stop"]))},[e.createElementVNode("view",{class:"index-right-input",style:e.normalizeStyle([{width:"200rpx",height:"66rpx"},H.value?{}:{color:"#999"}])},e.toDisplayString(H.value?H.value:"请输入采购日期"),5)]),e.createVNode(ce,{style:{width:"40%","margin-left":"30%"},"border-radius":"40",modelValue:w.value,"onUpdate:modelValue":oe[1]||(oe[1]=e=>w.value=e),mode:"date",onChange:re},null,8,["modelValue"]),e.createElementVNode("view",{class:"index-right-button-all"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Z.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:l},[e.createElementVNode("view",{class:"index-right-button"},[e.createElementVNode("image",{class:"index-right-button-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"index-right-button-font"},e.toDisplayString(t.name),1)])])))),128))])]),e.createElementVNode("view",{class:"swiper-contain"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"98%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(K.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-title-contect"},[e.createElementVNode("view",{class:"swiper-states"},[e.createElementVNode("view",{class:e.normalizeClass(t.cardType>1?"swiper-states-heng-one-green":"swiper-states-heng-one")},null,2),e.createElementVNode("view",{class:e.normalizeClass(t.cardType>3?"swiper-states-heng-two-green":"swiper-states-heng-two")},null,2),e.createElementVNode("view",{class:"ball-bgc",style:e.normalizeStyle(0!==t.cardType&&1!==t.cardType?{}:{boxShadow:"8rpx 8rpx 16rpx 0rpx rgba(0, 0, 0, 0.3)",width:"110rpx",height:"110rpx"})},[e.createElementVNode("view",{class:e.normalizeClass(n(t.cardType))}," 采购 ",2)],4),e.createElementVNode("view",{class:"ball-bgc",style:e.normalizeStyle(2!=t.cardType&&3!=t.cardType?{}:{boxShadow:"8rpx 8rpx 16rpx 0rpx rgba(0, 0, 0, 0.3)",width:"110rpx",height:"110rpx"})},[e.createElementVNode("view",{class:e.normalizeClass(r(t.cardType))}," 拣货 ",2)],4),e.createElementVNode("view",{class:"ball-bgc",style:e.normalizeStyle(4!=t.cardType?{}:{boxShadow:"8rpx 8rpx 16rpx 0rpx rgba(0, 0, 0, 0.3)",width:"110rpx",height:"110rpx"})},[e.createElementVNode("view",{class:e.normalizeClass(o(t.cardType))}," 结账 ",2)],4)]),e.createElementVNode("view",{class:e.normalizeClass(t.cardType?"title-button":"title-button-red")},e.toDisplayString(G.value[t.cardType]),3)]),e.createElementVNode("view",{class:"swiper-down"},[e.createElementVNode("view",{class:"swiper-flex"},[e.createElementVNode("view",{class:"swiper-down-title"},"采购单号:"),e.createElementVNode("view",{class:"swiper-down-number"},"A0120250301001555")]),e.createElementVNode("view",{class:"swiper-down-card"},[e.createElementVNode("view",{class:"swiper-down-text"},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 采 购 人 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-down-text"},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 采购日期 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 2025.03.02 ")]),e.createElementVNode("view",{class:"swiper-down-text"},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 联 系 人 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 李月 ")]),e.createElementVNode("view",{class:"swiper-down-text"},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 联系电话 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 13355653333 ")]),e.createElementVNode("view",{class:"swiper-down-text",style:{width:"100%"}},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 供 应 商 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 宽城区珂爱个人卫生用品店 ")])]),e.createElementVNode("view",{class:"swiper-button"},[e.createElementVNode("view",{class:"button-father"},[e.createElementVNode("view",{class:"swiper-button-white",onClick:e=>{return l=t.cardType,h.value=l,void c.value.openDrawer();var l}}," 详情 ",8,["onClick"]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-blue",onClick:e=>(e=>{h.value=e,q.value.openDrawer()})(t.cardType)}," 结账 ",8,["onClick"]),[[e.vShow,4==t.cardType]]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-blue",onClick:N}," 拣货 ",512),[[e.vShow,3==t.cardType||2==t.cardType]]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-white",onClick:e=>(e=>{v.value=0,p.value=0,g.value=0,Q.value[e].cardType--,K.value=Q.value})(l)}," 回退 ",8,["onClick"]),[[e.vShow,t.cardType>=2&&5!==t.cardType]]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-blue",onClick:e=>(e=>{v.value=0,p.value=0,g.value=0,Q.value[e].cardType++,K.value=Q.value})(l)}," 确认 ",8,["onClick"]),[[e.vShow,1==t.cardType]]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-red",onClick:e=>(e=>{y.value=e,s.value.openDrawer()})(l)}," 作废 ",8,["onClick"]),[[e.vShow,1==t.cardType]])])])])])])))),128))])])])]),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")],4),[[e.vShow,t.isShow]]),e.withDirectives(e.createElementVNode("view",{class:"popup-detail",onClick:oe[3]||(oe[3]=e=>J.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content",style:e.normalizeStyle({opacity:X.value?1:0}),onClick:oe[2]||(oe[2]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-detail-left"},[e.createElementVNode("view",{class:"popup-detail-left-white"},[e.createElementVNode("image",{class:"popup-detail-left-white-img",src:"/static/index/project3.png",onClick:te},null,8,["src"])]),e.createElementVNode("view",{class:"popup-detail-left-bottom"},[e.createElementVNode("view",{class:"popup-small-card"})])]),e.createElementVNode("view",{class:"popup-detail-right"})],4)],512),[[e.vShow,J.value&&t.isShow]]),e.createVNode(x,{ref_key:"detaildrawer",ref:c,widNumber:60},{default:e.withCtx((()=>[e.createVNode(Se,{openType:h.value,onClosedetail:le,onOpenDrawer:T},null,8,["openType"])])),_:1},512),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-finish",onClick:oe[8]||(oe[8]=e=>u.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content",style:e.normalizeStyle({opacity:X.value?1:0}),onClick:oe[6]||(oe[6]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(je,{changePrice:C.value,savePrice:D.value,onRightclose:B,onClose:oe[4]||(oe[4]=e=>u.value=!1),onOpenCal:A,onCloseCal:oe[5]||(oe[5]=e=>$.value=!1)},null,8,["changePrice","savePrice"])],4),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-content-calculator",style:e.normalizeStyle({opacity:X.value?1:0}),onClick:oe[7]||(oe[7]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(Re,{doOnce:U.value,translateNumber:I.value,onRight:z},null,8,["doOnce","translateNumber"])],4),[[e.vShow,$.value]])],512),[[e.vShow,u.value&&t.isShow]]),e.createVNode(x,{ref_key:"finishAccountdrawer",ref:q,widNumber:60},{default:e.withCtx((()=>[e.createVNode(qe,{valueBack:S.value,openType:h.value,onClosedetail:le,onOpenDrawer:T,onOpenPen:_},null,8,["valueBack","openType"])])),_:1},512),e.createVNode(x,{ref_key:"storagedrawer",ref:d,widNumber:50,style:{"z-index":"1000"}},{default:e.withCtx((()=>[e.createVNode(Fe,{dantype:b.value,onOpensuixing:V,onClosevoid:ae},null,8,["dantype"])])),_:1},512),e.createVNode(x,{ref_key:"verificationdrawer",ref:m,widNumber:50,style:{"z-index":"1000"}},{default:e.withCtx((()=>[e.createVNode(Ae,{onClosehexiao:ne})])),_:1},512),e.createVNode(x,{ref_key:"suixingdrawer",ref:E,widNumber:40,style:{"z-index":"1001"}},{default:e.withCtx((()=>[e.createVNode($e)])),_:1},512),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-cal",onClick:oe[10]||(oe[10]=e=>M.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content",style:e.normalizeStyle({opacity:X.value?1:0}),onClick:oe[9]||(oe[9]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(Pe,{doOnce:U.value,translateNumber:I.value,onClose:F,onRight:O},null,8,["doOnce","translateNumber"])],4)],512),[[e.vShow,M.value&&t.isShow]]),e.createVNode(x,{ref_key:"voiddrawer",ref:s,widNumber:60},{default:e.withCtx((()=>[e.createVNode(Be,{onVoidIt:oe[11]||(oe[11]=e=>{return t=y.value,v.value=0,p.value=0,g.value=0,Q.value[t].cardType=0,K.value=Q.value,void s.value.closeDrawer();var t}),onClosevoid:ie})])),_:1},512),e.createVNode(x,{ref_key:"pickingGooddrawer",ref:f,widNumber:60,style:{"z-index":"998"}},{default:e.withCtx((()=>[e.createVNode(Le,{onOpenDrawer:T})])),_:1},512),e.createVNode(x,{ref_key:"pickingdrawer",ref:k,canclose:!1,widNumber:50,style:{"z-index":"998"}},{default:e.withCtx((()=>[e.createVNode(Oe,{backnumber:L.value,onOpenCal:P,onClosepickingdrawer:j},null,8,["backnumber"])])),_:1},512)],64)}}}),[["__scopeId","data-v-4e891f28"]]),Ye=s(e.defineComponent({__name:"index",setup(t){const l=e.ref(!1),a=e.ref(0);e.ref(!1),e.ref(!1);const i=e.ref([{url:"/static/index/lefticon/index.png",targetUrl:"/static/index/lefticontarget/blueindex.png",name:"首页",pao:0},{url:"/static/index/Warehousing/dingdan.png",targetUrl:"/static/index/Warehousing/dingdanblue.png",name:"订单",pao:0},{url:"/static/index/Warehousing/chuku.png",targetUrl:"/static/index/Warehousing/chukublue.png",name:"出库",pao:5},{url:"/static/index/Warehousing/pandian.png",targetUrl:"/static/index/Warehousing/pandianblue.png",name:"盘点",pao:0},{url:"/static/index/Warehousing/jiankong.png",targetUrl:"/static/index/Warehousing/jiankongblue.png",name:"监控",pao:0},{url:"/static/index/lefticon/back.png",targetUrl:"/static/index/lefticontarget/blueback.png",name:"返回",pao:0}]),n=e=>{5!==e?a.value=e:uni.navigateBack()};return(t,r)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(l.value?"darkbackgroundContainer":"backgroundContainer")},[e.createElementVNode("view",{class:"index-title"},[e.createElementVNode("view",{class:"index-title-left"},[e.createElementVNode("image",{class:"index-title-left-img",src:y}),e.createElementVNode("view",{class:"index-title-left-font"}," 王金福 "),e.createElementVNode("view",{class:"index-title-left-wel"}," 欢迎 "),e.createElementVNode("view",{class:"index-title-left-weight"}," 张春凤 "),e.createElementVNode("view",{class:""}," 登录护理单元操作台 ")]),e.createElementVNode("view",{class:"index-title-right"},[e.createElementVNode("view",{class:"index-title-right-circle"},[e.createElementVNode("image",{class:"index-title-right-circle-img",src:"/static/index/Warehousing/house.png"})]),e.createElementVNode("view",{class:"index-title-right-font"}," 生活用品库 ")])]),e.createElementVNode("view",{class:"index-content"},[e.createElementVNode("view",{class:"index-content-leftMenus"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"blue-circle-pos"},[e.withDirectives(e.createElementVNode("view",{class:"blue-circle"},[e.createElementVNode("image",{class:"blue-circle-size",src:"/static/index/ray.png"},null,8,["src"])],512),[[e.vShow,l===a.value]]),t.pao?(e.openBlock(),e.createElementBlock("view",{key:0,class:"red-pao",onClick:e=>n(l)},e.toDisplayString(t.pao>99?"99+":t.pao),9,["onClick"])):e.createCommentVNode("",!0),e.createElementVNode("image",{class:"left-img",src:l===a.value?t.targetUrl:t.url,onClick:e=>n(l)},null,8,["src","onClick"]),e.createElementVNode("view",{class:e.normalizeClass(l===a.value?"left-img-font-target":"left-img-font"),onClick:e=>n(l)},e.toDisplayString(t.name),11,["onClick"])])))),128))]),e.createVNode(De,{isShow:!a.value},null,8,["isShow"]),e.createVNode(We,{isShow:1===a.value},null,8,["isShow"])])],2))}}),[["__scopeId","data-v-77445644"]]),Je="/static/index/video/videoright/guang.png",Xe="/static/index/bed.png",Ze="/static/index/cardicons/zhixing.png",He="/static/index/cardicons/zhifa.png",Ge=s(e.defineComponent({__name:"fuwu",props:{isShow:{type:Boolean,required:!0}},emits:["nav"],setup(t,{emit:l}){const a=t,i=e.ref(["清晰度","分屏","画面旋转"]),n=e.ref([{url:"/static/index/video/videotopright/0.png",name:"入住",bgc:"linear-gradient(to right,#008AFF,#01BCFF)"},{url:"/static/index/video/videotopright/1.png",name:"预警",bgc:"linear-gradient(to right,#FF585D ,#FF4F52)"},{url:"/static/index/video/videotopright/2.png",name:"外出",bgc:"linear-gradient(to right,#709EE2 ,#A0BFEC )"},{url:"/static/index/video/videotopright/3.png",name:"空闲",bgc:"linear-gradient(to right,#B7BCD0,#B7BCD0)"}]),r=e.ref([{url:"/static/index/video/kufang/00.png",targeturl:"/static/index/video/kufang/01.png",name:"盘点"},{url:"/static/index/video/kufang/10.png",targeturl:"/static/index/video/kufang/11.png",name:"请领"},{url:"/static/index/video/kufang/20.png",targeturl:"/static/index/video/kufang/21.png",name:"退货"},{url:"/static/index/video/kufang/30.png",targeturl:"/static/index/video/kufang/31.png",name:"采购"},{url:"/static/index/video/kufang/40.png",targeturl:"/static/index/video/kufang/41.png",name:"指令"}]),c=e.ref([{url:"/static/index/video/videotopright/4.png",name:"启用",bgc:"linear-gradient(to right,#008AFF,#01BCFF)"},{url:"/static/index/video/videotopright/5.png",name:"停用",bgc:"linear-gradient(to right,#B7BCD0,#B7BCD0)"}]),s=e.ref([{url:"/static/index/video/videoright/00.png",targeturl:"/static/index/video/videoright/01.png"},{url:"/static/index/video/videoright/10.png",targeturl:"/static/index/video/videoright/11.png"},{url:"/static/index/video/videoright/20.png",targeturl:"/static/index/video/videoright/21.png"},{url:"/static/index/video/videoright/30.png",targeturl:"/static/index/video/videoright/31.png"},{url:"/static/index/video/videoright/40.png",targeturl:"/static/index/video/videoright/41.png"}]),d=e.ref([{cardtype:0,states:0,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:0,states:1,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:0,states:2,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:0,states:3,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:0,states:0,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:0,movestates:0,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:1,movestates:1,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:0,movestates:2,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:0,movestates:3,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:0,movestates:4,buttontarget:[!1,!1,!1,!1,!1]}]),m=e.ref([]),u=e.ref(!0);e.ref("");const v=e.ref(["全部"," 护理单元","配务室","库房"]);e.watch((()=>a.isShow),((e,t)=>{!t&&e&&(u.value=!1,setTimeout((()=>u.value=!0),50),g.value=0,m.value=JSON.parse(JSON.stringify(d.value)))}));const p=e.ref("");o((()=>{p.value=uni.getStorageSync("realname"),m.value=JSON.parse(JSON.stringify(d.value))}));const g=e.ref(0),w=()=>{uni.navigateTo({url:"/pages/NursingNew/index"})},h=()=>{uni.navigateTo({url:"/pages/Warehousing/index"})};return(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(u.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{style:{display:"flex",position:"relative","margin-left":"-30rpx"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(v.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"tab",onClick:e=>(e=>{if(g.value!==e)switch(g.value=e,e){case 0:m.value=JSON.parse(JSON.stringify(d.value));break;case 1:m.value=[],d.value.forEach((e=>{e.cardtype||m.value.push(e)}));break;case 2:m.value=[];break;case 3:m.value=[],d.value.forEach((e=>{1===e.cardtype&&m.value.push(e)}));break;default:return""}})(l)},[e.createElementVNode("view",{style:e.normalizeStyle([g.value===l?{fontWeight:800}:{},{"z-index":"1"}])},e.toDisplayString(t),5),e.withDirectives(e.createElementVNode("view",{class:"tab-heng"},null,512),[[e.vShow,g.value===l]])],8,["onClick"])))),128)),e.createElementVNode("view",{class:"right-title-father"},[e.createElementVNode("view",{style:{"margin-right":"20rpx"}}," 长春市朝阳区久泰开运养老服务有限公司 ")])]),e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"calc(100% - 10rpx)"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"scroll-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[t.cardtype?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"card",style:e.normalizeStyle(1===t.states?{border:"2rpx solid red",boxShadow:"none"}:{})},[e.createElementVNode("view",{class:"card-left"},[e.createElementVNode("view",{class:"card-left-title"},[e.createElementVNode("view",{class:"left-view"},[e.createElementVNode("image",{class:"left-view-img",src:N}),e.createElementVNode("view",null,[e.createElementVNode("view",{class:"top-font-line"},[e.createElementVNode("view",{class:"line-weight"},"王金凤"),e.createElementVNode("view",{class:"line-margin"}," 女 "),e.createElementVNode("view",null," 80岁 "),e.createElementVNode("view",{style:{"margin-left":"20rpx"}}," 2025.01.01 ")]),e.createElementVNode("view",{class:"top-font-line"},[e.createElementVNode("view",{class:"font-gray"}," 省医保 | 重度失能 | 正常缴费 ")])])]),e.createElementVNode("view",{class:"right-spec"}," 护理单元 ")]),e.createElementVNode("view",{class:"bottom-balls"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"one-ball-father"},e.toDisplayString(t),1)))),128))]),e.createElementVNode("view",{class:"topright-ball"},[e.createElementVNode("image",{class:"ball-righttop",src:`/static/index/video/videobottom/${1===t.states?1:0}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"right-balls"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,a)=>{var i,n;return e.openBlock(),e.createElementBlock("view",{key:a,class:"blue-ball-father",onClick:e=>d.value[l].buttontarget[a]=!d.value[l].buttontarget[a]},[e.createElementVNode("image",{class:"blue-ball",src:(null==(i=d.value[l])?void 0:i.buttontarget[a])?t.targeturl:t.url},null,8,["src"]),e.withDirectives(e.createElementVNode("image",{style:{position:"absolute",bottom:"0",left:"50%",transform:"translateX(-50%)",width:"100%",height:"80%"},src:Je},null,512),[[e.vShow,null==(n=d.value[l])?void 0:n.buttontarget[a]]])],8,["onClick"])})),128))]),e.createElementVNode("image",{class:"video-img",src:Xe}),e.createElementVNode("view",{class:"video-bottom"},[e.createElementVNode("view",{class:"blue-button"}," 服务指令 "),e.createElementVNode("view",{class:""}," NUID:2506000001 "),e.createElementVNode("view",{class:"bottom-shu"},"|"),e.createElementVNode("view",{class:""}," 未命名01 ")])]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"split-line-white-sec"}),e.createElementVNode("view",{class:"right-title"},[e.createElementVNode("view",{class:"right-other",style:e.normalizeStyle(`background: ${n.value[t.states].bgc};`)},[e.createElementVNode("image",{class:"other-class",src:n.value[t.states].url},null,8,["src"]),e.createElementVNode("view",{class:"other-font"},e.toDisplayString(n.value[t.states].name),1)],4)]),1!=t.states&&t.states?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,style:{width:"100%",position:"relative"}},[e.createElementVNode("view",{class:"time"},[e.createElementVNode("view",{class:"time-left"},[e.createElementVNode("view",{class:""}," 10:00~10:10 ")])]),e.createElementVNode("view",{style:{width:"100%",display:"flex","align-items":"center","flex-direction":"column",position:"relative"}},[e.createElementVNode("view",{class:"time-right"}," 待执行 "),e.createElementVNode("image",{class:"time-img",src:E,onClick:w}),e.createElementVNode("view",{class:"small-button"},[e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:j})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:q})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:R})])]),e.createElementVNode("view",{class:"time-weight"}," 准备洁具(口腔) ")]),e.createElementVNode("view",{class:"time-people-two",style:{"margin-top":"20rpx"}},[e.createElementVNode("image",{class:"time-people-img",src:Ze}),e.createElementVNode("text",{class:"time-people-font"}," 单人执行 ")]),e.createElementVNode("view",{class:"time-people-two"},[e.createElementVNode("image",{class:"time-people-img",src:He}),e.createElementVNode("text",{class:"time-people-font"}," 王金福 / 李贵田 ")])])),2==t.states?(e.openBlock(),e.createElementBlock("view",{key:1,style:{width:"100%",height:"100%",display:"flex","justify-content":"center","align-items":"center","flex-direction":"column"}},[e.createElementVNode("image",{class:"fail-img",src:"/static/index/video/videotopright/goto.png",onClick:w}),e.createElementVNode("view",{class:"fail-text"}," 长者外出 ")])):e.createCommentVNode("",!0),3==t.states?(e.openBlock(),e.createElementBlock("view",{key:2,style:{width:"100%",height:"100%",display:"flex","justify-content":"center","align-items":"center","flex-direction":"column"}},[e.createElementVNode("image",{class:"fail-img-spec",src:"/static/index/video/videotopright/none.png",onClick:w}),e.createElementVNode("view",{class:"fail-text-spec"}," 暂无长者入住 ")])):e.createCommentVNode("",!0)])],4)),t.cardtype?(e.openBlock(),e.createElementBlock("view",{key:1,class:"card"},[e.createElementVNode("view",{class:"card-left"},[e.createElementVNode("view",{class:"card-left-title"},[e.createElementVNode("view",{class:"left-view"},[e.createElementVNode("image",{class:"left-view-img",src:"/static/index/badman.png",style:{width:"70rpx",height:"80rpx"}}),e.createElementVNode("view",{style:{"margin-left":"10rpx",width:"150rpx"}},[e.createElementVNode("view",{style:{"font-size":"35rpx","font-weight":"600","margin-top":"20rpx","margin-left":"10rpx"}}," 欧阳三四")]),e.createElementVNode("view",{style:{display:"flex","align-items":"center",position:"absolute",top:"50%",transform:"translateY(-50%)",right:"0"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.value,((l,a)=>(e.openBlock(),e.createElementBlock("view",{style:{margin:"0 15rpx",display:"flex","flex-direction":"column","align-items":"center",position:"relative"},key:a},[e.createElementVNode("image",{class:"kufang-img",src:t.movestates===a?l.targeturl:l.url},null,8,["src"]),e.createElementVNode("view",{style:e.normalizeStyle([{"font-size":"20rpx"},t.movestates===a?{color:"#0096ff"}:{}])},e.toDisplayString(l.name),5)])))),128))])])]),e.createElementVNode("view",{class:"bottom-balls"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"one-ball-father"},e.toDisplayString(t),1)))),128))]),e.createElementVNode("view",{class:"topright-ball"},[e.createElementVNode("image",{class:"ball-righttop",src:`/static/index/video/videobottom/${1===t.states?1:0}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"right-balls"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,a)=>{var i,n,r;return e.openBlock(),e.createElementBlock("view",{key:a,class:e.normalizeClass((null==(i=d.value[l])?void 0:i.buttontarget[a])?"blue-ball-father-target":"blue-ball-father"),onClick:e=>d.value[l].buttontarget[a]=!d.value[l].buttontarget[a]},[e.createElementVNode("image",{class:"blue-ball",src:(null==(n=d.value[l])?void 0:n.buttontarget[a])?t.targeturl:t.url},null,8,["src"]),e.withDirectives(e.createElementVNode("image",{style:{position:"absolute",bottom:"0",left:"50%",transform:"translateX(-50%)",width:"100%",height:"80%"},src:Je},null,512),[[e.vShow,null==(r=d.value[l])?void 0:r.buttontarget[a]]])],10,["onClick"])})),128))]),e.createElementVNode("image",{class:"video-img",src:Xe}),e.createElementVNode("view",{class:"video-bottom"},[e.createElementVNode("view",{class:"font-bottom-weight"}," 库房 "),e.createElementVNode("view",{class:"bottom-shu"},"|"),e.createElementVNode("view",{class:""}," NUID:2506000001 "),e.createElementVNode("view",{class:"bottom-shu"},"|"),e.createElementVNode("view",{class:""}," 库房01 ")])]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"split-line-white-sec"}),e.createElementVNode("view",{class:"right-title"},[e.createElementVNode("view",{class:"right-other",style:e.normalizeStyle(`background: ${c.value[t.states].bgc};`)},[e.createElementVNode("image",{class:"other-class",src:c.value[t.states].url},null,8,["src"]),e.createElementVNode("view",{class:"other-font"},e.toDisplayString(c.value[t.states].name),1)],4)]),t.states?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,style:{width:"100%",position:"relative"}},[e.createElementVNode("view",{class:"time"},[e.createElementVNode("view",{class:"time-left"},[e.createElementVNode("view",{class:""}," 10:00~10:10 ")])]),e.createElementVNode("view",{style:{width:"100%",display:"flex","align-items":"center","flex-direction":"column",position:"relative"}},[e.createElementVNode("view",{class:"time-right"}," 待执行 "),e.createElementVNode("image",{class:"time-img",src:E,onClick:h}),e.createElementVNode("view",{class:"small-button"},[e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:j})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:q})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:R})])]),e.createElementVNode("view",{class:"time-weight"}," 准备洁具(口腔) ")]),e.createElementVNode("view",{class:"time-people-two",style:{"margin-top":"20rpx"}},[e.createElementVNode("image",{class:"time-people-img",src:Ze}),e.createElementVNode("text",{class:"time-people-font"}," 单人执行 ")]),e.createElementVNode("view",{class:"time-people-two"},[e.createElementVNode("image",{class:"time-people-img",src:He}),e.createElementVNode("text",{class:"time-people-font"}," 王金福 / 李贵田 ")])])),1==t.states?(e.openBlock(),e.createElementBlock("view",{key:1,style:{width:"100%",height:"100%",display:"flex","justify-content":"center","align-items":"center","flex-direction":"column"}},[e.createElementVNode("image",{class:"fail-img",style:{width:"150rpx",height:"180rpx"},src:"/static/index/video/videotopright/stop.png",onClick:h}),e.createElementVNode("view",{class:"fail-text"}," 库房已停用 ")])):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0)])))),128))])])])],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-01c2b33c"]]),Qe=s(e.defineComponent({__name:"settings",props:{isShow:{type:Boolean,required:!0}},emits:["jump"],setup(t,{emit:l}){const a=e.ref(null),i=e.ref(!1),n=e.ref(!1),r=e.ref(!1),o=e.ref(!1),s=e.ref(!1),v=l,p=t,g=e.ref(["雷达扫描","扫码添加","手动录入","修改密码","切换机构","检查更新","用户协议","隐私政策"]),w=e.ref(!0);e.ref(""),e.watch((()=>p.isShow),((e,t)=>{!t&&e&&(w.value=!1,setTimeout((()=>w.value=!0),50))}));const h=e.ref(!1),f=e=>{var t;switch(e){case 0:case 1:case 2:v("jump",e);break;case 3:s.value=!0;break;case 4:break;case 5:i.value=!0,null==(t=a.value)||t.check_update();break;case 6:n.value=!0,r.value=!0,h.value=!1,setTimeout((()=>{h.value=!0}),50);break;case 7:n.value=!0,r.value=!1,h.value=!1,setTimeout((()=>{h.value=!0}),50)}},N=()=>{p.isShow&&i.value&&uni.showToast({title:"已经是最新版了",icon:"none",duration:2e3})};return(l,i)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(w.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{style:{"margin-right":"40rpx"}},"长春市朝阳区久泰开运养老服务有限公司")]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value.slice(0,3),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>f(l)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"array-father",style:{margin:"30rpx 0"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value.slice(3,5),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>f(l+3)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l+3}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value.slice(5,8),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>f(l+5)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l+5}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"bottom-button",onClick:i[0]||(i[0]=e=>o.value=!0)}," 注销登录 "),e.createVNode(Q,{show:o.value,onClose:i[1]||(i[1]=e=>o.value=!1)},null,8,["show"]),e.createVNode(K,{show:s.value,onClose:i[2]||(i[2]=e=>s.value=!1)},null,8,["show"]),e.createVNode(d,{ref_key:"zyupgrade",ref:a,noticeflag:!0,theme:"blue",h5preview:!1,oldversion:"1.0.0",appstoreflag:!0,autocheckupdate:!0,onShowupdateTips:N},null,512),n.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-any",style:e.normalizeStyle(h.value?{opacity:1}:{opacity:0})},[e.createElementVNode("view",{class:"mask",onClick:i[3]||(i[3]=e=>n.value=!1)}),e.createElementVNode("view",{class:"box-any"},[e.createElementVNode("view",{class:"title-left"},[e.createElementVNode("image",{class:"back-img",src:c,onClick:i[4]||(i[4]=e=>n.value=!1)}),r.value?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"back-font"},"NU护理单元隐私信息保护政策")),r.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"back-font"},"NU护理单元用户服务协议")):e.createCommentVNode("",!0)]),r.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(u,{key:0})),r.value?(e.openBlock(),e.createBlock(m,{key:1})):e.createCommentVNode("",!0)])],4)):e.createCommentVNode("",!0)],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-db2cf42d"]]),Ke=s(e.defineComponent({__name:"leida",props:{isShow:{type:Boolean,required:!0}},emits:["nav"],setup(t,{emit:a}){const i=t,n=e.ref(""),r=e.ref(-1),o=e.ref(!0),c=e.ref(1),s=e.ref(0),d=e.ref(null),m=e.ref([{url:"/static/index/leida/00.png",targetUrl:"/static/index/leida/01.png",target:!1},{url:"/static/index/leida/10.png",targetUrl:"/static/index/leida/11.png",target:!1},{url:"/static/index/leida/20.png",targetUrl:"/static/index/leida/21.png",target:!1},{url:"/static/index/leida/30.png",targetUrl:"/static/index/leida/31.png",target:!1}]),u=e.ref([]),v=e.ref([]);function p(){if(1==c.value){r.value=-1,function(){const t=v.value.length;u.value=[];const l=Array.from({length:t},(()=>Math.random())),a=l.reduce(((e,t)=>e+t),0),i=l.map((e=>e/a*5e3));let n=0;for(let r=0;r{u.value.push(v.value[r]);const t=u.value.length;t>=5&&t%2==1&&(s.value=999,await e.nextTick(),s.value=99999)}),n)}(),c.value=0;const t=setInterval((()=>{c.value+=.01,c.value>=1&&(c.value=1,clearInterval(t))}),50)}}e.watch((()=>i.isShow),((e,t)=>{!t&&e&&(o.value=!1,setTimeout((()=>o.value=!0),50),re().then((e=>{e.result.records.forEach((e=>{e.menu=JSON.parse(JSON.stringify(m.value)),e.isNew=!0})),v.value=e.result.records,l("log","at component/Initialization/leida.vue:123","????",v.value),p()})))}));return e.onMounted((()=>{})),(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(o.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-content-title"},[e.createElementVNode("view",{class:"shu"}),e.createElementVNode("view",{class:"shu-font"},"长春市朝阳区久泰开运养老服务有限公司")]),e.createElementVNode("view",{class:"leida"},[e.createElementVNode("view",{class:"kutong-father"},[e.createElementVNode("image",{class:"kutong-img",src:"/static/index/leida/leidabgc.png"}),e.createElementVNode("image",{class:e.normalizeClass(["kutong-shan",c.value<1?"spin-anim":"no-anim"]),src:"/static/index/leida/shan.png"},null,2),e.createElementVNode("view",{class:"huan"},[e.createElementVNode("view",{class:e.normalizeClass(["quarter-ring",c.value<1?"spin-anim-spec":"no-anim-spec"])},null,2)])]),e.createElementVNode("view",{class:"jindutiao"},[e.createElementVNode("view",{class:"progress-fill",style:e.normalizeStyle({transform:`scaleX(${c.value})`})},null,4)]),e.createElementVNode("view",{class:"color-font",style:{"margin-top":"80rpx"}},e.toDisplayString(c.value>=1?"扫描完成。":"正在使用雷达区域扫描护理机构,"),1),e.createElementVNode("view",{class:"color-font"},e.toDisplayString(c.value>=1?"":"请稍后..."),1),e.createElementVNode("view",{class:"agagin-button",onClick:p},"重新扫描")]),e.createElementVNode("view",{class:"other"},[e.createElementVNode("scroll-view",{ref_key:"scrollViewRef",ref:d,"scroll-y":"",class:"other-father","scroll-top":s.value},[e.createElementVNode("view",{class:"card-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["card",{"fade-in":t.isNew}]),key:l,onAnimationend:e=>{t.isNew=!1}},[e.createElementVNode("view",{class:"card-title"},[e.createElementVNode("view",{style:{"font-size":"25rpx"}},"NUID:"+e.toDisplayString(t.nuId),1),e.createElementVNode("view",{class:"right-box"},"护理单元")]),e.createElementVNode("view",{class:"card-middle"},[e.createElementVNode("view",{class:"video-box",onClick:a[0]||(a[0]=e=>r.value=-1)},[e.createElementVNode("image",{class:"video-box-img",src:"/static/index/leida/video.png"})]),e.createElementVNode("view",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.menu,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>{t.target=!t.target,r.value=-1}},[e.createElementVNode("view",{class:"small-menu"},[e.createElementVNode("image",{class:"small-img",src:t.target?t.targetUrl:t.url},null,8,["src"])])],8,["onClick"])))),128))])]),e.createElementVNode("view",{class:"card-bottom"},[e.createTextVNode(e.toDisplayString(t.nuName)+" ",1),e.createElementVNode("image",{class:"bottom-img",src:"/static/index/leida/rename.png",onClick:e=>{r.value=l,n.value=t.nuName}},null,8,["onClick"])]),r.value==l?(e.openBlock(),e.createElementBlock("view",{key:0,class:"rename-father"},[e.createElementVNode("view",{class:"rename-title"}," 重命名 "),e.createElementVNode("view",{class:"rename-gray"}," NUID:20241001001 "),e.createElementVNode("view",{class:"rename-input"},[e.createElementVNode("image",{class:"left-img",src:"/static/index/click.png"}),e.withDirectives(e.createElementVNode("input",{class:"uni-input",placeholder:"请重新命名","onUpdate:modelValue":a[1]||(a[1]=e=>n.value=e)},null,512),[[e.vModelText,n.value]]),e.withDirectives(e.createElementVNode("image",{class:"right-img",src:ne,onClick:a[2]||(a[2]=e=>n.value="")},null,512),[[e.vShow,n.value]])]),e.createElementVNode("view",{class:"blue-button",onClick:e=>{return t=n.value,a=l,t&&(u.value[a].nuName=t),void(r.value=-1);var t,a}}," 确定 ",8,["onClick"])])):e.createCommentVNode("",!0)],42,["onAnimationend"])))),128))])],8,["scroll-top"])])])],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-08e03fe2"]]),et=s(e.defineComponent({__name:"saoma",props:{isShow:{type:Boolean,required:!0}},emits:["nav"],setup(t,{emit:l}){const a=t,i=e.ref(!0);function n(){uni.scanCode({onlyFromCamera:!0,scanType:["qrCode","barCode"],success(e){},fail(e){uni.showToast({title:"扫码失败:"+e.errMsg,icon:"none"})}})}return e.watch((()=>a.isShow),((e,t)=>{!t&&e&&(i.value=!1,setTimeout((()=>i.value=!0),50))})),(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(i.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-content-title"},[e.createElementVNode("view",{class:"shu"}),e.createElementVNode("view",{class:"shu-font"},"长春市朝阳区久泰开运养老服务有限公司")])]),e.createElementVNode("view",{class:"saomiao",onClick:n},[e.createElementVNode("view",{class:"saomiao-son"},[e.createElementVNode("view",{class:"saomiao-son-son"},[e.createElementVNode("view",{class:"saomiao-son-son-img"})])])])],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-3c477a5f"]]),tt=s(e.defineComponent({__name:"input",props:{isShow:{type:Boolean,required:!0}},emits:["nav"],setup(t,{emit:l}){const a=t,i=e.ref(!0),n=e.ref("");return e.watch((()=>a.isShow),((e,t)=>{!t&&e&&(i.value=!1,setTimeout((()=>i.value=!0),50))})),(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(i.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-content-title"},[e.createElementVNode("view",{class:"shu"}),e.createElementVNode("view",{class:"shu-font"},"长春市朝阳区久泰开运养老服务有限公司")])]),e.createElementVNode("view",{class:"saomiao"},[e.createElementVNode("view",{class:"big-ball"},[e.createElementVNode("view",{class:"ball"})]),e.createElementVNode("image",{class:"left-img",src:te}),e.withDirectives(e.createElementVNode("input",{class:"saoma-input",password:!1,"onUpdate:modelValue":a[0]||(a[0]=e=>n.value=e),placeholder:"请手动录入NUID"},null,512),[[e.vModelText,n.value]]),e.withDirectives(e.createElementVNode("image",{class:"right-img",src:le,onClick:a[1]||(a[1]=e=>n.value="")},null,512),[[e.vShow,n.value]]),e.createElementVNode("view",{class:"blue-button"}," 确定 ")]),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-5fc7e05c"]]),lt=s(e.defineComponent({__name:"index",setup(t){const a=e.ref(!1),i=e.ref(0);e.ref(!1),e.ref(!1);const n=e.ref([{url:"/static/index/relindex/index.png",targetUrl:"/static/index/relindex/indexblue.png",name:"首页",pao:0},{url:"/static/index/relindex/fuwu.png",targetUrl:"/static/index/relindex/fuwublue.png",name:"服务考核",pao:0},{url:"/static/index/relindex/jigou.png",targetUrl:"/static/index/relindex/jigoublue.png",name:"机构功能1",pao:0},{url:"/static/index/relindex/jigou.png",targetUrl:"/static/index/relindex/jigoublue.png",name:"机构功能2",pao:0},{url:"/static/index/relindex/shezhi.png",targetUrl:"/static/index/relindex/shezhiblue.png",name:"设置",pao:0},{url:"/static/index/newindex/curve/return_8.png",targetUrl:"/static/index/newindex/curve/return_1.png",name:"返回",pao:0}]);e.ref([{url:"/static/index/topright/title/0.png",name:"切换机构"},{url:"/static/index/topright/title/1.png",name:"修改密码"},{url:"/static/index/topright/title/2.png",name:"注销账号"}]),e.ref([{url:"/static/index/topright/scan/00.png",targetUrl:"/static/index/topright/scan/01.png",name:"雷达扫描"},{url:"/static/index/topright/scan/10.png",targetUrl:"/static/index/topright/scan/11.png",name:"扫码添加"},{url:"/static/index/topright/scan/20.png",targetUrl:"/static/index/topright/scan/21.png",name:"手动录入"}]);const r=e=>{5===e&&uni.navigateBack(),i.value=e},c=e=>{switch(e){case 0:i.value=-2;break;case 1:i.value=-3;break;case 2:i.value=-4}},s=e=>{switch(e){case 0:i.value=-2;break;case 1:i.value=-3;break;case 2:i.value=-4}},d=e.ref("");return o((e=>{l("log","at pages/Initialization/index.vue:135","???",e.menu),e.menu?i.value=e.menu:i.value=0,d.value=uni.getStorageSync("realname")})),(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(a.value?"darkbackgroundContainer":"backgroundContainer")},[e.createElementVNode("view",{class:"index-content"},[e.createElementVNode("view",{class:"index-content-leftMenus"},[e.createElementVNode("view",{class:"index-title-title"},[e.createElementVNode("image",{class:"index-title-left-img",src:y}),e.createElementVNode("view",{class:"index-title-left-font"},e.toDisplayString(d.value),1)]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"blue-circle-pos"},[e.withDirectives(e.createElementVNode("view",{class:"blue-circle"},[e.createElementVNode("image",{class:"blue-circle-size",src:"/static/index/ray.png"},null,8,["src"])],512),[[e.vShow,l===i.value]]),t.pao?(e.openBlock(),e.createElementBlock("view",{key:0,class:"red-pao",onClick:e=>r(l)},e.toDisplayString(t.pao>99?"99+":t.pao),9,["onClick"])):e.createCommentVNode("",!0),e.createElementVNode("image",{class:"left-img",src:l===i.value?t.targetUrl:t.url,onClick:e=>r(l)},null,8,["src","onClick"]),e.createElementVNode("view",{class:e.normalizeClass(l===i.value?"left-img-font-target":"left-img-font"),onClick:e=>r(l)},e.toDisplayString(t.name),11,["onClick"])])))),128))]),e.createVNode(Ge,{isShow:0==i.value},null,8,["isShow"]),e.createVNode(Qe,{isShow:4==i.value,onJump:c},null,8,["isShow"]),e.createVNode(Ge,{isShow:-1==i.value,onNav:s},null,8,["isShow"]),e.createVNode(Ke,{isShow:-2==i.value},null,8,["isShow"]),e.createVNode(et,{isShow:-3==i.value},null,8,["isShow"]),e.createVNode(tt,{isShow:-4==i.value},null,8,["isShow"])])],2))}}),[["__scopeId","data-v-aebf66be"]]);"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self&&self;function at(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var it={exports:{}};it.exports=function(e){function t(a){if(l[a])return l[a].exports;var i=l[a]={i:a,l:!1,exports:{}};return e[a].call(i.exports,i,i.exports,t),i.l=!0,i.exports}var l={};return t.m=e,t.c=l,t.d=function(e,l,a){t.o(e,l)||Object.defineProperty(e,l,{configurable:!1,enumerable:!0,get:a})},t.n=function(e){var l=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(l,"a",l),l},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=0)}([function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0});var a,i=l(1),n=(a=i)&&a.__esModule?a:{default:a};t.default=n.default,e.exports=t.default},function(e,t,l){function a(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=a(l(2)),n=a(l(3)),r=a(l(4)),o=a(l(5)),c=a(l(6)),s=a(l(7)),d=a(l(8)),m=a(l(9)),u=a(l(10)),v=a(l(11)),p=a(l(12)),g={lunarInfo:i.default,solarMonth:n.default,gan:r.default,zhi:o.default,animals:c.default,lunarTerm:s.default,lTermInfo:d.default,nStr1:m.default,nStr2:u.default,nStr3:v.default,nStr4:p.default,lYearDays:function(e){var t,l=348;for(t=32768;t>8;t>>=1)l+=g.lunarInfo[e-1900]&t?1:0;return l+g.leapDays(e)},leapMonth:function(e){return 15&g.lunarInfo[e-1900]},leapDays:function(e){return g.leapMonth(e)?65536&g.lunarInfo[e-1900]?30:29:0},monthDays:function(e,t){return t>12||t<1?-1:g.lunarInfo[e-1900]&65536>>t?30:29},solarDays:function(e,t){if(t>12||t<1)return-1;var l=t-1;return 1==l?e%4==0&&e%100!=0||e%400==0?29:28:g.solarMonth[l]},toGanZhi:function(e){return g.gan[e%10]+g.zhi[e%12]},getTerm:function(e,t){if(e<1900||e>2100)return-1;if(t<1||t>24)return-1;var l=g.lTermInfo[e-1900],a=[parseInt("0x"+l.substr(0,5)).toString(),parseInt("0x"+l.substr(5,5)).toString(),parseInt("0x"+l.substr(10,5)).toString(),parseInt("0x"+l.substr(15,5)).toString(),parseInt("0x"+l.substr(20,5)).toString(),parseInt("0x"+l.substr(25,5)).toString()],i=[a[0].substr(0,1),a[0].substr(1,2),a[0].substr(3,1),a[0].substr(4,2),a[1].substr(0,1),a[1].substr(1,2),a[1].substr(3,1),a[1].substr(4,2),a[2].substr(0,1),a[2].substr(1,2),a[2].substr(3,1),a[2].substr(4,2),a[3].substr(0,1),a[3].substr(1,2),a[3].substr(3,1),a[3].substr(4,2),a[4].substr(0,1),a[4].substr(1,2),a[4].substr(3,1),a[4].substr(4,2),a[5].substr(0,1),a[5].substr(1,2),a[5].substr(3,1),a[5].substr(4,2)];return parseInt(i[t-1])},toChinaYear:function(e){var t=parseInt(e/1e3),l=parseInt(e%1e3/100),a=parseInt(e%100/10),i=e%10;return g.nStr4[t]+g.nStr4[l]+g.nStr4[a]+g.nStr4[i]+"年"},toChinaMonth:function(e){return e>12||e<1?-1:g.nStr3[e-1]+"月"},toChinaDay:function(e){var t;switch(e){case 10:t="初十";break;case 20:t="二十";break;case 30:t="三十";break;default:t=g.nStr2[Math.floor(e/10)],t+=g.nStr1[e%10]}return t},getAnimal:function(e){return g.animals[(e-4)%12]},solar2lunar:function(e,t,l){if(e<1900||e>2100)return-1;if(1900==e&&1==t&&l<31)return-1;if(e)var a=new Date(e,parseInt(t)-1,l);else a=new Date;var i,n=0,r=0,o=(e=a.getFullYear(),t=a.getMonth()+1,l=a.getDate(),(Date.UTC(a.getFullYear(),a.getMonth(),a.getDate())-Date.UTC(1900,0,31))/864e5);for(i=1900;i<2101&&o>0;i++)o-=r=g.lYearDays(i);o<0&&(o+=r,i--);var c=new Date,s=!1;c.getFullYear()==e&&c.getMonth()+1==t&&c.getDate()==l&&(s=!0);var d=a.getDay(),m=g.nStr1[d];0==d&&(d=7);var u=i,v=(n=g.leapMonth(i),!1);for(i=1;i<13&&o>0;i++)n>0&&i==n+1&&0==v?(--i,v=!0,r=g.leapDays(u)):r=g.monthDays(u,i),1==v&&i==n+1&&(v=!1),o-=r;0==o&&n>0&&i==n+1&&(v?v=!1:(v=!0,--i)),o<0&&(o+=r,--i);var p=i,w=o+1,h=t-1,f=g.getTerm(e,3),N=g.toGanZhi(e-4),y=new Date(e,1,f).getTime();new Date(e,h,l).getTime()=x&&(V=g.toGanZhi(12*(e-1900)+t+12));var b=!1,k="";x==l&&(b=!0,k=g.lunarTerm[2*t-2]),E==l&&(b=!0,k=g.lunarTerm[2*t-1]);var T=Date.UTC(e,h,1,0,0,0,0)/864e5+25567+10,D=g.toGanZhi(T+l-1);return{lYear:u,lMonth:p,lDay:w,animal:g.getAnimal(u),yearCn:g.toChinaYear(u),monthCn:(v&&n===p?"闰":"")+g.toChinaMonth(p),dayCn:g.toChinaDay(w),cYear:e,cMonth:t,cDay:l,gzYear:N,gzMonth:V,gzDay:D,isToday:s,isLeap:v,nWeek:d,ncWeek:"星期"+m,isTerm:b,term:k}},lunar2solar:function(e,t,l,a){var i=g.leapMonth(e);if(g.leapDays(e),a&&i!=t)return-1;if(2100==e&&12==t&&l>1||1900==e&&1==t&&l<31)return-1;var n=g.monthDays(e,t);if(e<1900||e>2100||l>n)return-1;for(var r=0,o=1900;o0&&(r+=g.leapDays(e),s=!0),r+=g.monthDays(e,o);a&&(r+=n);var d=Date.UTC(1900,1,30,0,0,0),m=new Date(864e5*(r+l-31)+d),u=m.getUTCFullYear(),v=m.getUTCMonth()+1,p=m.getUTCDate();return g.solar2lunar(u,v,p)}};t.default=g,e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=[19416,19168,42352,21717,53856,55632,91476,22176,39632,21970,19168,42422,42192,53840,119381,46400,54944,44450,38320,84343,18800,42160,46261,27216,27968,109396,11104,38256,21234,18800,25958,54432,59984,28309,23248,11104,100067,37600,116951,51536,54432,120998,46416,22176,107956,9680,37584,53938,43344,46423,27808,46416,86869,19872,42416,83315,21168,43432,59728,27296,44710,43856,19296,43748,42352,21088,62051,55632,23383,22176,38608,19925,19152,42192,54484,53840,54616,46400,46752,103846,38320,18864,43380,42160,45690,27216,27968,44870,43872,38256,19189,18800,25776,29859,59984,27480,23232,43872,38613,37600,51552,55636,54432,55888,30034,22176,43959,9680,37584,51893,43344,46240,47780,44368,21977,19360,42416,86390,21168,43312,31060,27296,44368,23378,19296,42726,42208,53856,60005,54576,23200,30371,38608,19195,19152,42192,118966,53840,54560,56645,46496,22224,21938,18864,42359,42160,43600,111189,27936,44448,84835,37744,18936,18800,25776,92326,59984,27424,108228,43744,37600,53987,51552,54615,54432,55888,23893,22176,42704,21972,21200,43448,43344,46240,46758,44368,21920,43940,42416,21168,45683,26928,29495,27296,44368,84821,19296,42352,21732,53600,59752,54560,55968,92838,22224,19168,43476,42192,53584,62034,54560],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=[31,28,31,30,31,30,31,31,30,31,30,31],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["甲","乙","丙","丁","戊","己","庚","辛","壬","癸"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["子","丑","寅","卯","辰","巳","午","未","申","酉","戌","亥"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["鼠","牛","虎","兔","龙","蛇","马","羊","猴","鸡","狗","猪"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["小寒","大寒","立春","雨水","惊蛰","春分","清明","谷雨","立夏","小满","芒种","夏至","小暑","大暑","立秋","处暑","白露","秋分","寒露","霜降","立冬","小雪","大雪","冬至"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c3598082c95f8c965cc920f","97bd0b06bdb0722c965ce1cfcc920f","b027097bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd0b06bdb0722c965ce1cfcc920f","b027097bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd0b06bdb0722c965ce1cfcc920f","b027097bd097c36b0b6fc9274c91aa","9778397bd19801ec9210c965cc920e","97b6b97bd19801ec95f8c965cc920f","97bd09801d98082c95f8e1cfcc920f","97bd097bd097c36b0b6fc9210c8dc2","9778397bd197c36c9210c9274c91aa","97b6b97bd19801ec95f8c965cc920e","97bd09801d98082c95f8e1cfcc920f","97bd097bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c91aa","97b6b97bd19801ec95f8c965cc920e","97bcf97c3598082c95f8e1cfcc920f","97bd097bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c3598082c95f8c965cc920f","97bd097bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c3598082c95f8c965cc920f","97bd097bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd097bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd097bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd097bd07f595b0b6fc920fb0722","9778397bd097c36b0b6fc9210c8dc2","9778397bd19801ec9210c9274c920e","97b6b97bd19801ec95f8c965cc920f","97bd07f5307f595b0b0bc920fb0722","7f0e397bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c920e","97b6b97bd19801ec95f8c965cc920f","97bd07f5307f595b0b0bc920fb0722","7f0e397bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c91aa","97b6b97bd19801ec9210c965cc920e","97bd07f1487f595b0b0bc920fb0722","7f0e397bd097c36b0b6fc9210c8dc2","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf7f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf7f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf7f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf7f1487f531b0b0bb0b6fb0722","7f0e397bd07f595b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c9274c920e","97bcf7f0e47f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9210c91aa","97b6b97bd197c36c9210c9274c920e","97bcf7f0e47f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c920e","97b6b7f0e47f531b0723b0b6fb0722","7f0e37f5307f595b0b0bc920fb0722","7f0e397bd097c36b0b6fc9210c8dc2","9778397bd097c36b0b70c9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e37f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc9210c8dc2","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e27f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0787b0721","7f0e27f0e47f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9210c91aa","97b6b7f0e47f149b0723b0787b0721","7f0e27f0e47f531b0723b0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9210c8dc2","977837f0e37f149b0723b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e37f5307f595b0b0bc920fb0722","7f0e397bd097c35b0b6fc9210c8dc2","977837f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0721","7f0e37f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc9210c8dc2","977837f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","977837f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","977837f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","977837f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","977837f0e37f14998082b0787b06bd","7f07e7f0e47f149b0723b0787b0721","7f0e27f0e47f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","977837f0e37f14998082b0723b06bd","7f07e7f0e37f149b0723b0787b0721","7f0e27f0e47f531b0723b0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","977837f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e37f1487f595b0b0bb0b6fb0722","7f0e37f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e37f1487f531b0b0bb0b6fb0722","7f0e37f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e37f1487f531b0b0bb0b6fb0722","7f0e37f0e37f14898082b072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e37f0e37f14898082b072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e37f0e366aa89801eb072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f149b0723b0787b0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e37f0e366aa89801eb072297c35","7ec967f0e37f14998082b0723b06bd","7f07e7f0e47f149b0723b0787b0721","7f0e27f0e47f531b0723b0b6fb0722","7f0e37f0e366aa89801eb072297c35","7ec967f0e37f14998082b0723b06bd","7f07e7f0e37f14998083b0787b0721","7f0e27f0e47f531b0723b0b6fb0722","7f0e37f0e366aa89801eb072297c35","7ec967f0e37f14898082b0723b02d5","7f07e7f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e36665b66aa89801e9808297c35","665f67f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e36665b66a449801e9808297c35","665f67f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e36665b66a449801e9808297c35","665f67f0e37f14898082b072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e26665b66a449801e9808297c35","665f67f0e37f1489801eb072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["日","一","二","三","四","五","六","七","八","九","十"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["初","十","廿","卅"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["正","二","三","四","五","六","七","八","九","十","冬","腊"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["零","一","二","三","四","五","六","七","八","九","十"],e.exports=t.default}]);const nt=at(it.exports),rt=s({__name:"calendar",setup(t){const a=new Date,i=e.ref(a.getFullYear()),n=e.ref(a.getMonth()),r=e.ref(null),o=["一","二","三","四","五","六","日"],c=e.computed((()=>{const e=[],t=new Date(i.value,n.value,0),l=t.getFullYear(),a=t.getMonth(),r=t.getDate(),o=(c=i.value,s=n.value,(new Date(c,s,1).getDay()+6)%7);var c,s;for(let i=0;i(e.openBlock(),e.createElementBlock("view",{class:"calendar"},[e.createElementVNode("view",{class:"header"},[e.createElementVNode("view",{class:"header-title"},[e.createElementVNode("view",{class:"year-month"},e.toDisplayString(i.value)+"年"+e.toDisplayString(n.value+1)+"月",1),e.createElementVNode("view",{class:"botton-father"},[e.createElementVNode("view",{class:"click-button",onClick:s},"上个月"),e.createElementVNode("view",{class:"click-button",onClick:d},"下个月")])]),e.createElementVNode("view",{class:"weekdays"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(o,((t,l)=>e.createElementVNode("view",{key:l,class:"weekday"},e.toDisplayString(t),1))),64))])]),e.createElementVNode("view",{class:"days"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,(t=>{return e.openBlock(),e.createElementBlock("view",{key:t.key,class:e.normalizeClass(["day-cell",{"prev-month":t.prev,"next-month":t.next,selected:(a=t.key,r.value===a)}]),onClick:e=>function(e){e.prev||(r.value=e.key,l("log","at component/public/calendar.vue:91","Selected date:",e.key))}(t)},[e.createElementVNode("view",{class:"gregorian"},e.toDisplayString(t.dateText),1),t.lunarText?(e.openBlock(),e.createElementBlock("view",{key:0,class:"lunar"},e.toDisplayString(t.lunarText),1)):e.createCommentVNode("",!0)],10,["onClick"]);var a})),128))])]))}},[["__scopeId","data-v-0bf11501"]]),ot=s(e.defineComponent({__name:"index",setup(t){const l=e.ref(!1),a=e.ref(null),i=e=>{uni.navigateBack()};return o((e=>{})),n((()=>{var e;null==(e=a.value)||e.check_update()})),(t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"backgroundContainer"},[e.createElementVNode("view",{class:"assess-title"},[e.createElementVNode("view",{class:"left-icons"},[e.createElementVNode("image",{class:"left-icons-img",src:"/static/index/undericons/doublekuai.png"},null,8,["src"]),e.createElementVNode("view",{class:"right-icons-font"},"服务考核-"),e.createElementVNode("view",{class:"right-icons-text"},"批量考核")]),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(l.value?"right-icons-font-dark":"right-icons-font")},"王金福",2),e.createElementVNode("image",{class:"right-icons-img-icon",src:l.value?"/static/index/undericons/face.png":"/static/index/undericons/facelight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:l.value?"/static/index/undericons/hand.png":"/static/index/undericons/handlight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",onClick:i,src:l.value?"/static/index/undericons/out.png":"/static/index/undericons/outlight.png"},null,8,["src"])])]),e.createElementVNode("view",{class:"assess-another"},[e.createElementVNode("view",{class:"left-contain"},[e.createElementVNode("view",{class:"calendar"},[e.createVNode(rt)])])])]))}}),[["__scopeId","data-v-65a124ce"]]),ct=s(e.defineComponent({__name:"index",setup(t){e.ref(!1);const l=e.ref([]),a=e.ref(["全部","日常","周期"]),i=e.ref(0),n=e.ref(0);function r(e){let t=e.detail.scrollTop,l=parseFloat(t.toFixed(2));n.value=l}const c=e=>{if(i.value!==e)return"titlebutton";switch(e){case 0:return"titlebutton-target";case 1:return"titlebutton-target-yellow";case 2:return"titlebutton-target-pouple"}};function s(e){if(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}return[]}const d=e.ref(0),m=e.ref([]);o((e=>{let t=uni.getStorageSync("myArray");l.value=t,l.value[0].children.length<8&&l.value.forEach((e=>{for(;e.children.length<8;)e.children.push({directiveName:""})})),m.value=JSON.parse(JSON.stringify(l.value)),e.currentNumber&&(d.value=745*e.currentNumber)}));const u=e.ref(0),v=e.ref(0),p=e.ref(!1),g=e.ref(!1),w=e.ref(-1),h=e.ref(-1),f=()=>{uni.navigateBack()},N=()=>{let e=[];m.value.forEach(((t,l)=>{e=[],t.children.forEach(((t,l)=>{if(null===t.directiveName||""===t.directiveName||void 0===t.directiveName){m.value.every((e=>""===e.children[l].directiveName))&&e.push(l)}}))}));const t=[...e].sort(((e,t)=>t-e));m.value.forEach((e=>{t.forEach((t=>{e.children.splice(t,1)}))})),m.value[0].children.length<8&&m.value.forEach((e=>{for(;e.children.length<8;)e.children.push({directiveName:""})}))},y=e.ref(0),x=e.ref(null);function E(t,l,a,i){const n=Date.now();null!=x.value&&clearTimeout(x.value),n-y.value<250?(((e,t)=>{uni.navigateBack({delta:1,success:()=>{uni.$emit("where",{index0:e,index1:t})}})})(l,a),y.value=0):(x.value=setTimeout((()=>{((t,l,a,i)=>{t.directiveName&&(w.value=l,h.value=a,uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.dataset.index0==l&&t.dataset.index1==a&&(t.left<500?u.value=Math.floor(t.left)+510:u.value=Math.floor(t.left)-10,t.top<300?v.value=Math.floor(t.top)+250:v.value=Math.floor(t.top),await e.nextTick(),p.value=!0,g.value=!1,setTimeout((()=>{g.value=!0}),100))}))})).exec())})(t,l,a)}),250),y.value=n)}return(t,o)=>{var y,x,V;return e.openBlock(),e.createElementBlock("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"doctorsay-container-title"},[e.createElementVNode("view",{class:"doctorsay-container-left"},[e.createElementVNode("view",{class:"doctorsay-container-left-gun"}),e.createElementVNode("view",{class:"doctorsay-container-left-font"},"时间矩阵")]),e.createElementVNode("view",{class:"doctorsay-container-right"},[e.createElementVNode("view",{class:"titlebutton-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.value,((t,a)=>(e.openBlock(),e.createElementBlock("view",{key:a},[e.createElementVNode("view",{class:e.normalizeClass(c(a)),onClick:e=>(e=>{if(i.value!==e)switch(m.value=[],i.value=e,e){case 0:m.value=JSON.parse(JSON.stringify(l.value));break;case 1:m.value=JSON.parse(JSON.stringify(l.value)),m.value.forEach((e=>{e.children.forEach((e=>{e.directiveName&&"日常"!==e.cycleType&&(e.directiveName="",e.cycleType="",e.startTime="")}))})),N();break;case 2:m.value=JSON.parse(JSON.stringify(l.value)),m.value.forEach((e=>{e.children.forEach((e=>{e.directiveName&&"日常"===e.cycleType&&(e.directiveName="",e.cycleType="",e.startTime="")}))})),N()}})(a)},e.toDisplayString(t),11,["onClick"])])))),128))]),e.createElementVNode("view",{class:"doctorsay-container-right-kuai-cheng"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"日常"),e.createElementVNode("view",{class:"doctorsay-container-right-kuai-zi"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"周期"),e.createElementVNode("view",{class:"doctorsay-container-juzhen",onClick:f}," 返回 ")])]),e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("view",{class:"boom"},[e.createElementVNode("view",{style:e.normalizeStyle({marginTop:`-${2*n.value}rpx`})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(null==(y=m.value[0])?void 0:y.children,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(h.value===l?"boom-son-target":"boom-son")},e.toDisplayString(t.typeName),3),[[e.vShow,t.typeName]])])))),128))],4)]),e.createElementVNode("scroll-view",{style:{height:"100%",width:"100%"},"scroll-left":d.value,"scroll-x":"","show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",width:"5945rpx","box-shadow":"10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1)",background:"linear-gradient(to right, #c4dbf4,#c9c2ef, #c6dcf3)"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time"},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),1)])))),128))]),e.createElementVNode("view",{style:{display:"flex",height:"calc(100% - 80rpx)",width:"5945rpx"}},[e.createElementVNode("scroll-view",{"scroll-y":"","show-scrollbar":!1,onScroll:r},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time-und"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.children,((t,a)=>{return e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:a},[e.createElementVNode("view",{class:e.normalizeClass([w.value===l&&h.value===a?"title-time-border-blue":"","super-card-time-card"]),style:{position:"relative"},onTouchend:e=>E(t,l,a),"data-index0":l,"data-index1":a},[e.createElementVNode("view",{class:e.normalizeClass((i=t,"日常"===i.cycleType?"title-time-border-yellow":i.cycleType?"title-time-border-pouple":"title-time-border")),style:{"font-size":"30rpx",overflow:"hidden"}},[t.startTime?(e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"margin-top":"0rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"25rpx"}},e.toDisplayString(t.startTime+"-"+t.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==t.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(t.cycleType),1)])):e.createCommentVNode("",!0),e.createElementVNode("view",{style:e.normalizeStyle([s(t.directiveName)[1]?{}:{marginTop:"20rpx"},{"font-weight":"700","font-size":"24rpx"}])},e.toDisplayString(s(t.directiveName)[0]),5),s(t.directiveName)[1]?(e.openBlock(),e.createElementBlock("view",{key:1,class:"down-icons",style:e.normalizeStyle("日常"!=t.cycleType?{backgroundColor:"rgb(212,203,255)"}:{})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s(t.directiveName).slice(1),((l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:a},[e.createElementVNode("view",{class:"icon",style:e.normalizeStyle("日常"!=t.cycleType?{backgroundColor:"rgb(123,97,255)"}:{})},e.toDisplayString(s(t.directiveName)[a+1]),5)])))),128))],4)):e.createCommentVNode("",!0)],2)],42,["onTouchend","data-index0","data-index1"])]);var i})),128))])])))),128))])],32)])],8,["scroll-left"])])]),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay",onClick:o[1]||(o[1]=e=>p.value=!1)},[e.createElementVNode("view",{class:"popup-overlay-content",style:e.normalizeStyle({top:2*v.value-350+"rpx",left:2*u.value-780+"rpx",opacity:g.value?1:0,backgroundColor:"日常"===(null==(V=null==(x=l.value[h.value])?void 0:x.children[w.value])?void 0:V.type)?"#fffcf6":"rgb(246, 244, 254)"}),onClick:o[0]||(o[0]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"}," 占个位置 ")]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],4)],512),[[e.vShow,p.value]])])}}}),[["__scopeId","data-v-70d077f4"]]),st=s({__name:"specialDrawer",props:{widNumber:{type:Number,default:17}},setup(t,{expose:l}){const a=e.ref(!1),i=t,n=e.ref(0);e.onMounted((()=>{const e=uni.getSystemInfoSync();n.value=e.screenWidth})),e.ref(0);const r=e.ref(!0),o=e.ref(0),c=e.computed((()=>{const e=`${i.widNumber}%`;if(r.value){return{width:e,transform:`translateX(${o.value}px)`,transition:"none"}}return{width:e}}));function s(e){}function d(e){}function m(){}l({openDrawer:function(){a.value=!0},closeDrawer:function(){a.value=!0}});const u=e.ref(0);return e.computed((()=>({transform:`rotate(${u.value}deg)`,transition:"transform 0.6s ease"}))),(t,l)=>(e.openBlock(),e.createElementBlock("view",null,[e.createElementVNode("view",{class:e.normalizeClass(["drawer",{"drawer-open":a.value}]),style:e.normalizeStyle(c.value)},[e.createElementVNode("view",{class:"drawer-content",onTouchstartPassive:s,onTouchmovePassive:d,onTouchend:m,onTouchcancel:m},[e.renderSlot(t.$slots,"default",{},void 0,!0)],32)],6)]))}},[["__scopeId","data-v-7979ddf3"]]),dt=s(e.defineComponent({__name:"index",props:{changerightbottom:{type:String,default:"标准"}},emits:["clickball"],setup(t,{emit:l}){const a=e.ref([{name:"周期",url:""},{name:"放大",url:"/static/index/getbig.png"},{name:"日常",url:""},{name:"缩小",url:"/static/index/getsmall.png"},{name:"全部",url:""},{name:"标准",url:""}]),i=l;return(l,n)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"button-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.value,((l,a)=>(e.openBlock(),e.createElementBlock("view",{key:a,class:"white-ball",onClick:e=>(e=>{i("clickball",e)})(a)},[l.url?(e.openBlock(),e.createElementBlock("image",{key:0,style:{width:"50%",height:"50%"},src:l.url},null,8,["src"])):(e.openBlock(),e.createElementBlock("view",{key:1},e.toDisplayString(5===a?t.changerightbottom:l.name),1))],8,["onClick"])))),128))])]))}}),[["__scopeId","data-v-a6bada18"]]),mt=s(e.defineComponent({__name:"indexnew",setup(t){e.ref(!1);const l=e.ref([]);e.ref(["全部","日常","周期"]),e.ref(["放大","缩小"]);const a=e.ref(0);uni.getSystemInfoSync().windowWidth;const i=e=>{switch(e){case 0:b(2);break;case 1:v(0);break;case 2:b(1);break;case 3:v(1);break;case 4:b(0);break;case 5:7===d.value?T(!1):T(!0)}};function n(e){if(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}return[]}const r=e.ref(0),c=e.ref(0),s=e.ref([]),d=e.ref(0),m=e.ref(247),u=e.ref(180);e.ref(0),e.ref(0),o((e=>{let t=uni.getStorageSync("myArray");l.value=t,l.value[0].children.length<8&&l.value.forEach((e=>{for(;e.children.length<8;)e.children.push({directiveName:""})})),s.value=JSON.parse(JSON.stringify(l.value)),d.value=7,p()}));const v=e=>{e?d.value<24&&d.value++:d.value>7&&d.value--};function p(){if(g.value>=0&&g.value<=24&&w.value>=0&&w.value<=11){const e=(g.value+.5)*m.value,t=(w.value-.5)*u.value;r.value=e-1110,c.value=t-281.25;const l=24*m.value,a=11*u.value;r.value=Math.max(0,Math.min(r.value,l-2220))/2,c.value=Math.max(0,Math.min(c.value,a-562.5))/2}}const g=e.ref(10),w=e.ref(0);e.watch([g,w],(()=>{p()})),e.watch(d,((e,t)=>{if(t===e);else{switch(e){case 24:m.value=92.5,u.value=107;break;case 23:m.value=96.5,u.value=107;break;case 22:m.value=101,u.value=107;break;case 21:m.value=106,u.value=116;break;case 20:m.value=112,u.value=116;break;case 19:m.value=117,u.value=116;break;case 18:m.value=124,u.value=121;break;case 17:m.value=131,u.value=128;break;case 16:m.value=139,u.value=133;break;case 15:m.value=148,u.value=142;break;case 14:m.value=159,u.value=150;break;case 13:m.value=171,u.value=160;break;case 12:m.value=185,u.value=170;break;case 11:m.value=202,u.value=183;break;case 10:m.value=222,u.value=195;break;case 9:m.value=247,u.value=213;break;case 8:m.value=280,u.value=235;break;case 7:m.value=320,u.value=256}p()}}));const h=e.ref(0),f=e.ref(null);const N=e.ref(0),y=e.ref(0),x=e.ref(!1),E=e.ref(!1);e.ref(null);const V=(e,t)=>{uni.navigateBack({delta:1,success:()=>{uni.$emit("where",{index0:e,index1:t})}})},b=e=>{if(a.value!==e)switch(s.value=[],a.value=e,e){case 0:s.value=JSON.parse(JSON.stringify(l.value));break;case 1:s.value=JSON.parse(JSON.stringify(l.value)),s.value.forEach((e=>{e.children.forEach((e=>{e.directiveName&&"日常"!==e.cycleType&&(e.directiveName="",e.cycleType="",e.startTime="")}))}));break;case 2:s.value=JSON.parse(JSON.stringify(l.value)),s.value.forEach((e=>{e.children.forEach((e=>{e.directiveName&&"日常"===e.cycleType&&(e.directiveName="",e.cycleType="",e.startTime="")}))}))}},k=t=>{switch(x.value=!1,t){case 0:w.value>0&&w.value--;break;case 1:g.value<23&&g.value++;break;case 2:w.value<11&&w.value++;break;case 3:g.value>0&&g.value--;break;case 4:l=s.value[g.value].children[w.value],a=g.value,i=w.value,l.directiveName&&e.nextTick((()=>{uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.dataset.index0==a&&t.dataset.index1==i&&(t.left<500?N.value=Math.floor(t.left)+510:N.value=Math.floor(t.left)-10,t.top<300?y.value=Math.floor(t.top)+250:y.value=Math.floor(t.top),await e.nextTick(),x.value=!0,E.value=!1,setTimeout((()=>{E.value=!0}),100))}))})).exec()}));break;case 5:uni.navigateBack()}var l,a,i};function T(e){d.value=e?7:24}return(t,a)=>{var o,v;const p=e.resolveComponent("arrowkeys");return e.openBlock(),e.createElementBlock("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("scroll-view",{style:{height:"100%",width:"100%"},"scroll-left":r.value,"scroll-x":"","show-scrollbar":!1},[e.createElementVNode("view",{style:e.normalizeStyle([{width:24*m.value+"rpx"},{display:"flex"}])},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time",style:e.normalizeStyle({width:m.value+"rpx"})},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),5)])))),128))],4),e.createElementVNode("view",{style:e.normalizeStyle([{display:"flex",height:"calc(100% - 80rpx)",position:"relative"},{width:24*m.value+"rpx"}])},[e.createElementVNode("view",{class:"xian-bian"}),e.createElementVNode("scroll-view",{"scroll-y":"","show-scrollbar":!1,"scroll-top":c.value},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time-und",style:e.normalizeStyle({width:m.value+"rpx"})},[e.createElementVNode("view",{class:"bottom-bian"}),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.children,((t,a)=>{return e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:a},[e.createElementVNode("view",{style:e.normalizeStyle({height:u.value+"rpx"}),class:"super-card-time-card",onTouchend:e=>function(e,t,l){const a=Date.now();null!=f.value&&clearTimeout(f.value),a-h.value<250?(e.startTime&&V(t,l),h.value=0):(e.directiveName&&(g.value=t,w.value=l),h.value=a)}(t,l,a),"data-index0":l,"data-index1":a},[e.createElementVNode("view",{class:e.normalizeClass((i=t,"日常"===i.cycleType?"title-time-border-yellow":i.cycleType?"title-time-border-pouple":"title-time-border")),style:e.normalizeStyle([d.value>=11&&"日常"!==t.cycleType&&t.startTime?{backgroundColor:"#c5e5ff"}:{},{"font-size":"30rpx",position:"relative"}])},[e.withDirectives(e.createElementVNode("view",{class:"title-time-blue"},null,512),[[e.vShow,g.value==l&&w.value==a]]),t.startTime?(e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"flex-direction":"column",overflow:"hidden"}},[e.withDirectives(e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx",margin:"0 auto"},src:_},null,512),[[e.vShow,t.startTime]]),e.withDirectives(e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(t.startTime+"-"+t.endTime),513),[[e.vShow,d.value<10]]),"日常"!=t.cycleType?e.withDirectives((e.openBlock(),e.createElementBlock("image",{key:0,class:"title-time-button",style:{width:"80rpx",height:"48rpx"},src:se},null,512)),[[e.vShow,d.value<11]]):e.createCommentVNode("",!0),"日常"!=t.cycleType?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font",style:{right:"10rpx",top:"5rpx","font-size":"20rpx"}},e.toDisplayString(t.cycleType),513)),[[e.vShow,d.value<11]]):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0),t.startTime?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font-rel"},e.toDisplayString(n(t.directiveName)[0]),513)),[[e.vShow,d.value<11]]):e.createCommentVNode("",!0)],6)],44,["onTouchend","data-index0","data-index1"])]);var i})),128))],4)])))),128))])],8,["scroll-top"])],4)],8,["scroll-left"])])]),e.createVNode(st,{ref:"gobackdrawer"},{default:e.withCtx((()=>[e.createVNode(dt,{onClickball:i,changerightbottom:7===d.value?"缩略图":"标准"},null,8,["changerightbottom"])])),_:1},512),e.createVNode(p,{onMovecard:k}),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay-content",style:e.normalizeStyle({top:2*y.value-350+"rpx",left:2*N.value-780+"rpx",opacity:E.value?1:0,backgroundColor:"日常"===(null==(v=null==(o=l.value[w.value])?void 0:o.children[g.value])?void 0:v.type)?"#fffcf6":"rgb(246, 244, 254)"}),onClick:a[0]||(a[0]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"}," 占个位置 ")]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],4),[[e.vShow,x.value]])])}}}),[["__scopeId","data-v-7e3cfa67"]]);__definePage("pages/login/login",w),__definePage("pages/denglu",h),__definePage("pages/index/index",f),__definePage("pages/Nursing/index",F),__definePage("pages/watch/index",G),__definePage("pages/watch/settings/settings",ee),__definePage("pages/watch/settings/input",ae),__definePage("pages/watch/settings/saoma",ie),__definePage("pages/watch/settings/leida",oe),__definePage("pages/NursingNew/index",ve),__definePage("pages/Warehousing/index",Ye),__definePage("pages/Initialization/index",lt),__definePage("pages/assess/index",ot),__definePage("pages/timeMatrix/index",ct),__definePage("pages/timeMatrix/indexnew",mt);const ut={onLaunch:function(){l("log","at App.vue:4","App Launch")},onShow:function(){l("log","at App.vue:7","App Show")},onHide:function(){l("log","at App.vue:10","App Hide")}},vt={data:()=>({}),onLoad(){this.$u.getRect=this.$uGetRect},methods:{$uGetRect(e,t){return new Promise((l=>{uni.createSelectorQuery().in(this)[t?"selectAll":"select"](e).boundingClientRect((e=>{t&&Array.isArray(e)&&e.length&&l(e),!t&&e&&l(e)})).exec()}))},getParentData(e=""){this.parent||(this.parent=!1),this.parent=this.$u.$parent.call(this,e),this.parent&&(Object.keys(this.parentData).map((e=>{this.parentData[e]=this.parent[e]})),this.parentData.value=this.parent.modelValue)},preventEvent(e){e&&e.stopPropagation&&e.stopPropagation()}},onReachBottom(){uni.$emit("uOnReachBottom")},beforeUnmount(){if(this.parent&&uni.$u.test.array(this.parent.children)){const e=this.parent.children;e.map(((t,l)=>{t===this&&e.splice(l,1)}))}}};function pt(e){if([null,void 0,NaN,!1].includes(e))return e;if("object"!=typeof e&&"function"!=typeof e)return e;var t,l=(t=e,"[object Array]"===Object.prototype.toString.call(t)?[]:{});for(let a in e)e.hasOwnProperty(a)&&(l[a]="object"==typeof e[a]?pt(e[a]):e[a]);return l}function gt(e={},t={}){if("object"!=typeof(e=pt(e))||"object"!=typeof t)return!1;for(var l in t)t.hasOwnProperty(l)&&(l in e?"object"!=typeof e[l]||"object"!=typeof t[l]?e[l]=t[l]:e[l].concat&&t[l].concat?e[l]=e[l].concat(t[l]):e[l]=gt(e[l],t[l]):e[l]=t[l]);return e}function wt(e){return/^(?:-?\d+|-?\d{1,3}(?:,\d{3})+)?(?:\.\d+)?$/.test(e)}function ht(e){switch(typeof e){case"undefined":return!0;case"string":if(0==e.replace(/(^[ \t\n\r]*)|([ \t\n\r]*$)/g,"").length)return!0;break;case"boolean":if(!e)return!0;break;case"number":if(0===e||isNaN(e))return!0;break;case"object":if(null===e||0===e.length)return!0;for(var t in e)return!1;return!0}return!1}function ft(e){return"[object Object]"===Object.prototype.toString.call(e)}function Nt(e){return"function"==typeof e}const yt={email:function(e){return/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/.test(e)},mobile:function(e){return/^1[23456789]\d{9}$/.test(e)},url:function(e){return/http(s)?:\/\/([\w-]+\.)+[\w-]+(\/[\w-.\/?%&=]*)?/.test(e)},date:function(e){return!!e&&(wt(e)&&(e=+e),!/Invalid|NaN/.test(new Date(e).toString()))},dateISO:function(e){return/^\d{4}[\/\-](0?[1-9]|1[012])[\/\-](0?[1-9]|[12][0-9]|3[01])$/.test(e)},number:wt,digits:function(e){return/^\d+$/.test(e)},idCard:function(e){return/^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}([0-9]|X)$/.test(e)},carNo:function(e){const t=/^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}(([0-9]{5}[DF]$)|([DF][A-HJ-NP-Z0-9][0-9]{4}$))/,l=/^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}[A-HJ-NP-Z0-9]{4}[A-HJ-NP-Z0-9挂学警港澳]{1}$/;return 7===e.length?l.test(e):8===e.length&&t.test(e)},amount:function(e){return/^[1-9]\d*(,\d{3})*(\.\d{1,2})?$|^0\.\d{1,2}$/.test(e)},chinese:function(e){return/^[\u4e00-\u9fa5]+$/gi.test(e)},letter:function(e){return/^[a-zA-Z]*$/.test(e)},enOrNum:function(e){return/^[0-9a-zA-Z]*$/g.test(e)},contains:function(e,t){return e.indexOf(t)>=0},range:function(e,t){return e>=t[0]&&e<=t[1]},rangeLength:function(e,t){return e.length>=t[0]&&e.length<=t[1]},empty:ht,isEmpty:ht,jsonString:function(e){if("string"==typeof e)try{var t=JSON.parse(e);return!("object"!=typeof t||!t)}catch(l){return!1}return!1},landline:function(e){return/^\d{3,4}-\d{7,8}(-\d{3,4})?$/.test(e)},object:ft,array:function(e){return"function"==typeof Array.isArray?Array.isArray(e):"[object Array]"===Object.prototype.toString.call(e)},code:function(e,t=6){return new RegExp(`^\\d{${t}}$`).test(e)},func:Nt,promise:function(e){return ft(e)&&Nt(e.then)&&Nt(e.catch)},video:function(e){const t=e.split("?")[0];return new RegExp(/\.(mp4|mpg|mpeg|dat|asf|avi|rm|rmvb|mov|wmv|flv|mkv|m3u8|3gp)$/).test(t)},image:function(e){const t=e.split("?")[0];return new RegExp(/\.(jpeg|jpg|gif|png|svg|webp|jfif|bmp|dpg)$/).test(t)},regExp:function(e){return e&&"[object RegExp]"===Object.prototype.toString.call(e)},string:function(e){return"string"==typeof e}};const xt=new class{setConfig(e){this.config=gt(this.config,e)}request(e={}){if(this.interceptor.request&&"function"==typeof this.interceptor.request){let t=this.interceptor.request(e);if(!1===t)return new Promise((()=>{}));this.options=t}return e.dataType=e.dataType||this.config.dataType,e.responseType=e.responseType||this.config.responseType,e.url=e.url||"",e.params=e.params||{},e.header=Object.assign({},this.config.header,e.header),e.method=e.method||this.config.method,new Promise(((t,l)=>{e.complete=e=>{if(uni.hideLoading(),clearTimeout(this.config.timer),this.config.timer=null,this.config.originalData)if(this.interceptor.response&&"function"==typeof this.interceptor.response){let a=this.interceptor.response(e);!1!==a?t(a):l(e)}else t(e);else if(200==e.statusCode)if(this.interceptor.response&&"function"==typeof this.interceptor.response){let a=this.interceptor.response(e.data);!1!==a?t(a):l(e.data)}else t(e.data);else l(e)},e.url=yt.url(e.url)?e.url:this.config.baseUrl+(0==e.url.indexOf("/")?e.url:"/"+e.url),this.config.showLoading&&!this.config.timer&&(this.config.timer=setTimeout((()=>{uni.showLoading({title:this.config.loadingText,mask:this.config.loadingMask}),this.config.timer=null}),this.config.loadingTime)),uni.request(e)}))}constructor(){this.config={baseUrl:"",header:{},method:"POST",dataType:"json",responseType:"text",showLoading:!0,loadingText:"请求中...",loadingTime:800,timer:null,originalData:!1,loadingMask:!0},this.interceptor={request:null,response:null},this.get=(e,t={},l={})=>this.request({method:"GET",url:e,header:l,data:t}),this.post=(e,t={},l={})=>this.request({url:e,method:"POST",header:l,data:t}),this.put=(e,t={},l={})=>this.request({url:e,method:"PUT",header:l,data:t}),this.delete=(e,t={},l={})=>this.request({url:e,method:"DELETE",header:l,data:t})}};const Et=(new class{constructor(){this.config={type:"navigateTo",url:"",delta:1,params:{},animationType:"pop-in",animationDuration:300,intercept:!1},this.route=this.route.bind(this)}addRootPath(e){return"/"===e[0]?e:`/${e}`}mixinParam(e,t){e=e&&this.addRootPath(e);let l="";return/.*\/.*\?.*=.*/.test(e)?(l=uni.$u.queryParams(t,!1),e+"&"+l):(l=uni.$u.queryParams(t),e+l)}async route(e={},t={}){let l={};if("string"==typeof e?(l.url=this.mixinParam(e,t),l.type="navigateTo"):(l=uni.$u.deepClone(e,this.config),l.url=this.mixinParam(e.url,e.params)),t.intercept&&(this.config.intercept=t.intercept),l.params=t,l=uni.$u.deepMerge(this.config,l),"function"==typeof uni.$u.routeIntercept){await new Promise(((e,t)=>{uni.$u.routeIntercept(l,e)}))&&this.openPage(l)}else this.openPage(l)}openPage(e){const{url:t,type:l,delta:a,animationType:i,animationDuration:n}=e;"navigateTo"!=e.type&&"to"!=e.type||uni.navigateTo({url:t,animationType:i,animationDuration:n}),"redirectTo"!=e.type&&"redirect"!=e.type||uni.redirectTo({url:t}),"switchTab"!=e.type&&"tab"!=e.type||uni.switchTab({url:t}),"reLaunch"!=e.type&&"launch"!=e.type||uni.reLaunch({url:t}),"navigateBack"!=e.type&&"back"!=e.type||uni.navigateBack({delta:a})}}).route;function Vt(e=null,t="yyyy-mm-dd"){e||(e=Number(new Date)),10==e.toString().length&&(e*=1e3);let l,a=new Date(e),i={"y+":a.getFullYear().toString(),"m+":(a.getMonth()+1).toString(),"d+":a.getDate().toString(),"h+":a.getHours().toString(),"M+":a.getMinutes().toString(),"s+":a.getSeconds().toString()};for(let n in i)l=new RegExp("("+n+")").exec(t),l&&(t=t.replace(l[1],1==l[1].length?i[n]:i[n].padStart(l[1].length,"0")));return t}function bt(e,t=!0){if((e=e.toLowerCase())&&/^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/.test(e)){if(4===e.length){let t="#";for(let l=1;l<4;l+=1)t+=e.slice(l,l+1).concat(e.slice(l,l+1));e=t}let l=[];for(let t=1;t<7;t+=2)l.push(parseInt("0x"+e.slice(t,t+2)));return t?`rgb(${l[0]},${l[1]},${l[2]})`:l}if(/^(rgb|RGB)/.test(e)){return e.replace(/(?:\(|\)|rgb|RGB)*/g,"").split(",").map((e=>Number(e)))}return e}function kt(e){let t=e;if(/^(rgb|RGB)/.test(t)){let e=t.replace(/(?:\(|\)|rgb|RGB)*/g,"").split(","),l="#";for(let t=0;t=e)return String(l);let a=e-l.length,i=Math.ceil(a/t.length);for(;i>>=1;)t+=t,1===i&&(t+=t);return t.slice(0,a)+l});const Tt={colorGradient:function(e="rgb(0, 0, 0)",t="rgb(255, 255, 255)",l=10){let a=bt(e,!1),i=a[0],n=a[1],r=a[2],o=bt(t,!1),c=(o[0]-i)/l,s=(o[1]-n)/l,d=(o[2]-r)/l,m=[];for(let u=0;u=0))if(t.constructor===Array)switch(l){case"indices":for(let l=0;l{i.push(n+"[]="+e)}));break;case"repeat":t.forEach((e=>{i.push(n+"="+e)}));break;case"comma":let e="";t.forEach((t=>{e+=(e?",":"")+t})),i.push(n+"="+e)}else i.push(n+"="+t)}return i.length?a+i.join("&"):""},route:Et,timeFormat:Vt,date:Vt,timeFrom:function(e=null,t="yyyy-mm-dd"){e||(e=Number(new Date)),10==e.toString().length&&(e*=1e3);let l=+new Date(Number(e)),a=(Number(new Date)-l)/1e3,i="";switch(!0){case a<300:i="刚刚";break;case a>=300&&a<3600:i=parseInt(a/60)+"分钟前";break;case a>=3600&&a<86400:i=parseInt(a/3600)+"小时前";break;case a>=86400&&a<2592e3:i=parseInt(a/86400)+"天前";break;default:i=!1===t?a>=2592e3&&a<31536e3?parseInt(a/2592e3)+"个月前":parseInt(a/31536e3)+"年前":Vt(l,t)}return i},colorGradient:Tt.colorGradient,colorToRgba:Tt.colorToRgba,guid:function(e=32,t=!0,l=null){let a="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".split(""),i=[];if(l=l||a.length,e)for(let n=0;nMath.random()-.5))},wranning:function(e){},get:xt.get,post:xt.post,put:xt.put,delete:xt.delete,hexToRgb:Tt.hexToRgb,rgbToHex:Tt.rgbToHex,test:yt,random:function(e,t){if(e>=0&&t>0&&t>=e){let l=t-e+1;return Math.floor(Math.random()*l+e)}return 0},deepClone:pt,deepMerge:gt,getParent:function(e,t){let l=this.$parent;for(;l;){if(l.$options.name===e){let e={};if(Array.isArray(t))t.map((t=>{e[t]=l[t]?l[t]:""}));else for(let a in t)Array.isArray(t[a])?t[a].length?e[a]=t[a]:e[a]=l[a]:t[a].constructor===Object?Object.keys(t[a]).length?e[a]=t[a]:e[a]=l[a]:e[a]=t[a]||!1===t[a]?t[a]:l[a];return e}l=l.$parent}return{}},$parent:function(e){let t=this.$parent;for(;t;){if(!t.$options||t.$options.name===e)return t;t=t.$parent}return!1},addUnit:function(e="auto",t="rpx"){return e=String(e),yt.number(e)?`${e}${t}`:e},trim:function(e,t="both"){return"both"==t?e.replace(/^\s+|\s+$/g,""):"left"==t?e.replace(/^\s*/,""):"right"==t?e.replace(/(\s*$)/g,""):"all"==t?e.replace(/\s+/g,""):e},type:["primary","success","error","warning","info"],http:xt,toast:function(e,t=1500){uni.showToast({title:e,icon:"none",duration:t})},config:_t,zIndex:{toast:10090,noNetwork:10080,popup:10075,mask:10070,navbar:980,topTips:975,sticky:970,indexListSticky:965},debounce:function(e,t=500,l=!1){if(null!==Dt&&clearTimeout(Dt),l){var a=!Dt;Dt=setTimeout((function(){Dt=null}),t),a&&"function"==typeof e&&e()}else Dt=setTimeout((function(){"function"==typeof e&&e()}),t)},throttle:function(e,t=500,l=!0,a="default"){Ct[a]||(Ct[a]=null),l?St[a]||(St[a]=!0,"function"==typeof e&&e(),Ct[a]=setTimeout((()=>{St[a]=!1}),t)):St[a]||(St[a]=!0,Ct[a]=setTimeout((()=>{St[a]=!1,"function"==typeof e&&e()}),t))},addStyle:function(e,t="object"){if(yt.empty(e)||"object"==typeof e&&"object"===t||"string"===t&&"string"==typeof e)return e;if("object"===t){const t=(e=Bt(e)).split(";"),l={};for(let e=0;e{e.mixin(vt),e.config.globalProperties.$u=It}},Mt={__name:"donghua",props:{links:{type:Array,default:()=>[]},width:{type:String,default:"65rpx"},height:{type:String,default:"65rpx"},objectFit:{type:String,default:"aspectFill"},defaultImage:{type:String,default:""},interval:{type:Number,default:80},playing:{type:Boolean,default:!1},showButton:{type:Boolean,default:!1},loop:{type:Boolean,default:!1}},emits:["update:playing"],setup(t,{emit:l}){const a=t,i=e.ref(0),n=e.ref(!1),r=e.ref(!1);let o=null;const c=()=>{n.value=!1,clearInterval(o)};return e.watch((()=>a.playing),(e=>{i.value=0,e?n.value||(n.value=!0,o=setInterval((()=>{a.loop?(i.value=(i.value+1)%a.links.length,r.value=!1):i.valuei.value=0),50))})),e.watch((()=>a.links),(()=>{i.value=0,r.value=!1,n.value&&c()}),{deep:!0}),e.onUnmounted((()=>{c()})),(l,a)=>(e.openBlock(),e.createElementBlock("view",null,[e.createElementVNode("image",{src:r.value?t.defaultImage:t.links[i.value],style:e.normalizeStyle({width:t.width,height:t.height}),mode:t.objectFit,onError:a[0]||(a[0]=e=>r.value=!0),onLoad:a[1]||(a[1]=e=>r.value=!1)},null,44,["src","mode"]),t.showButton?(e.openBlock(),e.createElementBlock("button",{key:0,onClick:a[2]||(a[2]=e=>l.$emit("update:playing",!t.playing))},e.toDisplayString(t.playing?"停止播放":"开始播放"),1)):e.createCommentVNode("",!0)]))}},Ft=s(e.defineComponent({__name:"arrowkeys",props:{movebottom:{type:Number,default:30},moveleft:{type:Number,default:10},leftbuttonname:{type:String,default:"返回"},rightbuttonname:{type:String,default:"确定"}},emits:["movecard"],setup(t,{emit:l}){const a=l;let i=null,n=null,r=!1;const o=e.ref(-1);let c=null;function s(){i&&(clearTimeout(i),i=null)}function d(){n&&(clearTimeout(n),n=null),r=!1,c=null}function m(e){d(),s(),o.value=e,a("movecard",e),i=setTimeout((()=>{o.value=-1,i=null}),500)}function u(e){s(),d(),o.value=e,a("movecard",e),c=e,r=!0,n=setTimeout((function e(){r&&null!==c&&(n=setTimeout(e,500))}),500)}function v(){r&&(d(),s(),i=setTimeout((()=>{o.value=-1,i=null}),500))}return e.onBeforeUnmount((()=>{s(),d()})),(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"move-circle",style:e.normalizeStyle({bottom:`${t.movebottom}rpx`,left:`${t.moveleft}rpx`})},[e.createElementVNode("view",{class:e.normalizeClass(5===o.value?"click-box-target":"click-box"),onClick:a[0]||(a[0]=e=>m(5)),onLongpress:a[1]||(a[1]=()=>u(5)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${5===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("span",{style:{"z-index":"1","font-size":"30rpx"},class:e.normalizeClass(5===o.value?"grad-text":"")},e.toDisplayString(t.leftbuttonname),3)],34),e.createElementVNode("view",{class:e.normalizeClass(0===o.value?"click-box-target":"click-box"),onClick:a[2]||(a[2]=e=>m(0)),onLongpress:a[3]||(a[3]=()=>u(0)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${0===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("image",{src:`/static/index/newruler/fangxiang${0===o.value?"target":""}.png`,class:"image-photo"},null,8,["src"])],34),e.createElementVNode("view",{class:e.normalizeClass(4===o.value?"click-box-target":"click-box"),onClick:a[4]||(a[4]=e=>m(4)),onLongpress:a[5]||(a[5]=()=>u(4)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${4===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("span",{style:{"z-index":"1","font-size":"30rpx"},class:e.normalizeClass(4===o.value?"grad-text":"")},e.toDisplayString(t.rightbuttonname),3)],34),e.createElementVNode("view",{class:e.normalizeClass(3===o.value?"click-box-target":"click-box"),onClick:a[6]||(a[6]=e=>m(3)),onLongpress:a[7]||(a[7]=()=>u(3)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${3===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("image",{style:{transform:"rotate(270deg)","transform-origin":"center"},src:`/static/index/newruler/fangxiang${3===o.value?"target":""}.png`,class:"image-photo"},null,8,["src"])],34),e.createElementVNode("view",{class:e.normalizeClass(2===o.value?"click-box-target":"click-box"),onClick:a[8]||(a[8]=e=>m(2)),onLongpress:a[9]||(a[9]=()=>u(2)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${2===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("image",{style:{transform:"rotate(180deg)","transform-origin":"center"},src:`/static/index/newruler/fangxiang${2===o.value?"target":""}.png`,class:"image-photo"},null,8,["src"])],34),e.createElementVNode("view",{class:e.normalizeClass(1===o.value?"click-box-target":"click-box"),onClick:a[10]||(a[10]=e=>m(1)),onLongpress:a[11]||(a[11]=()=>u(1)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${1===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("image",{style:{transform:"rotate(90deg)","transform-origin":"center"},src:`/static/index/newruler/fangxiang${1===o.value?"target":""}.png`,class:"image-photo"},null,8,["src"])],34)],4))}}),[["__scopeId","data-v-4057d511"]]);const{app:$t,Vuex:At,Pinia:Lt}=function(){const t=e.createVueApp(ut);return t.use(Ut),t.component("donghua",Mt),t.component("arrowkeys",Ft),{app:t}}();uni.Vuex=At,uni.Pinia=Lt,$t.provide("__globalStyles",__uniConfig.styles),$t._component.mpType="app",$t._component.render=()=>{},$t.mount("#app")}(Vue);
+if("undefined"==typeof Promise||Promise.prototype.finally||(Promise.prototype.finally=function(e){const t=this.constructor;return this.then((l=>t.resolve(e()).then((()=>l))),(l=>t.resolve(e()).then((()=>{throw l}))))}),"undefined"!=typeof uni&&uni&&uni.requireGlobal){const e=uni.requireGlobal();ArrayBuffer=e.ArrayBuffer,Int8Array=e.Int8Array,Uint8Array=e.Uint8Array,Uint8ClampedArray=e.Uint8ClampedArray,Int16Array=e.Int16Array,Uint16Array=e.Uint16Array,Int32Array=e.Int32Array,Uint32Array=e.Uint32Array,Float32Array=e.Float32Array,Float64Array=e.Float64Array,BigInt64Array=e.BigInt64Array,BigUint64Array=e.BigUint64Array}uni.restoreGlobal&&uni.restoreGlobal(Vue,weex,plus,setTimeout,clearTimeout,setInterval,clearInterval),function(e){"use strict";function t(e){return weex.requireModule(e)}function l(e,t,...l){uni.__log__?uni.__log__(e,t,...l):console[e].apply(console,[...l,t])}function a(e,t){return"string"==typeof e?t:e}const i=(t,l=0)=>(l,a=e.getCurrentInstance())=>{!e.isInSSRComponentSetup&&e.injectHook(t,l,a)},r=i("onShow",3),n=i("onHide",3),o=i("onLoad",2),c="/static/left.png",s=(e,t)=>{const l=e.__vccOpts||e;for(const[a,i]of t)l[a]=i;return l};const d=s({name:"ZyUpgrade",props:{theme:{type:String,default:"green"},updateurl:{type:String,default:""},h5preview:{type:Boolean,default:!1},oldversion:{type:String,default:""},oldcode:{type:Number,default:0},appstoreflag:{type:Boolean,default:!1},noticeflag:{type:Boolean,default:!1},autocheckupdate:{type:Boolean,default:!0}},data(){return{update_flag:!1,dshow:!1,update_process:0,downloadTask:[],updated2version:"",version_url:"",update_tips:"",forceupgrade:!1,currentversion:this.oldversion,versionname:"",vesioncode:this.oldcode,wgt_flag:0,wgt_url:"",size:0,header:{Authorization:uni.getStorageSync("token")||"token"}}},mounted(){let e=!1;e=!0,this.h5preview,this.autocheckupdate&&this.check_update()},computed:{version(){let e="";return e=this.currentversion+(""!=this.currentversion&&""!=this.updated2version?"->":"")+this.updated2version,e}},methods:{check_update(){let e=this;plus.runtime.getProperty(plus.runtime.appid,(function(t){e.currentversion=t.version,e.versionname=t.name,e.versioncode=t.versionCode,e.updatebusiness(e)}))},updatebusiness:function(e){uni.request({url:`https://www.focusnu.com/devopsapi/api/pad/versionUpdate?platform=1&version=${e.currentversion}`,method:"GET",dataType:"json",success:t=>{404!==t.statusCode&&(100==t.data.code?t.data.data.update_url?(e.dshow=!0,e.update_tips=t.data.data.update_tips,e.forceupgrade=1==t.data.data.forceupdate,e.version_url=t.data.data.update_url,e.updated2version=t.data.data.version,e.wgt_flag=t.data.data.wgt_flag,e.wgt_url=t.data.data.wgt_url,e.size=t.data.data.size,e.getnewbanben()):e.noticeflag&&e.$emit("showupdateTips",0):uni.showToast({title:"请求升级出错:"+data.msg,icon:"none"}))},fail(){this.loading=!1}})},getnewbanben:function(){this.$emit("chuandinew",this.updated2version)},upgrade_checked:function(){uni.removeStorageSync("token"),this.update_flag=!0,this.updateversion()},upgrade_cancel:function(){this.dshow=!1},upgrade_break:function(){this.downloadTask.abort(),this.update_flag=!1},updateversion:function(){let e=this;if("ios"==uni.getSystemInfoSync().platform&&this.appstoreflag&&1!=e.wgt_flag)e.dshow=!1,plus.runtime.launchApplication({action:e.version_url},(function(e){uni.showToast({title:"打开appstore失败",icon:"none"})}));else{let e=this,t="https://www.focusnu.com/devopsapi/sys/common/static/"+(1==e.wgt_flag?e.wgt_url:e.version_url);this.update_confirm=!0,this.downloadTask=uni.downloadFile({url:t,header:this.header,success:function(e){l("log","at component/zy-upgrade/zy-upgrade.vue:223","!!!",e),200==e.statusCode?plus.runtime.install(e.tempFilePath,{force:!1},(function(){plus.runtime.restart()}),(function(e){l("error","at component/zy-upgrade/zy-upgrade.vue:232","install fail...",JSON.stringify(e)),uni.showToast({title:"升级失败",icon:"none"})})):uni.showToast({title:"下载失败,网络错误",icon:"none"})},fail:function(e){uni.showToast({title:"下载失败:"+e.errMsg,icon:"none"}),this.update_flag=!1},complete:function(){}}),this.downloadTask.onProgressUpdate((function(t){if(e.update_process=t.progress,t.progress==1/0){let l=t.totalBytesWritten/e.size*100;l>100&&(l=100),e.update_process=l}}))}}}},[["render",function(t,l,a,i,r,n){return e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["zy-modal",r.dshow?"show":""])},[e.createElementVNode("view",{style:{position:"absolute",top:"300rpx",left:"1040rpx","z-index":"9999"}},[e.createElementVNode("image",{style:{width:"300rpx",height:"400rpx",position:"absolute",top:"0rpx",left:"0rpx"},src:"/static/index/update/fly.png"})]),e.createElementVNode("view",{class:"zy-dialog",style:{"background-color":"#fff","border-radius":"40rpx"}},[e.createElementVNode("view",{style:{height:"400rpx",width:"100%",position:"relative"}},[e.createElementVNode("image",{style:{width:"1800rpx",height:"1600rpx",position:"absolute",top:"-370rpx",left:"-220rpx"},src:"/static/index/update/bgc.png"})]),e.createElementVNode("view",{class:e.normalizeClass("zy-upgrade-topbg-"+a.theme)},[e.createElementVNode("view",null,[e.createElementVNode("text",{class:"zy-upgrade-title"}," 发现新版本 ")]),e.createElementVNode("text",{class:"flex-wrap",style:{"margin-top":"10rpx"}},e.toDisplayString(n.version),1)],2),e.createElementVNode("view",{class:"padding-xl bg-white text-left"},[r.update_flag?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("scroll-view",{key:0,style:{"max-height":"200rpx","text-align":"center"},"scroll-y":"auto"},[e.createElementVNode("text",null,e.toDisplayString(r.update_tips),1)])),r.update_flag?(e.openBlock(),e.createElementBlock("view",{key:1,class:"zy-progress radius striped active"},[e.createElementVNode("view",{class:e.normalizeClass("bg-"+a.theme),style:e.normalizeStyle("width: "+r.update_process+"%;")},e.toDisplayString(r.update_process),7)])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"zy-bar bg-white",style:{"justify-content":"center",display:"flex","margin-bottom":"60rpx"}},[r.update_flag?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"action"},[e.createElementVNode("button",{class:e.normalizeClass(["zy-btn","bg-"+a.theme]),onClick:l[0]||(l[0]=(...e)=>n.upgrade_checked&&n.upgrade_checked(...e))},"确认升级",2),r.forceupgrade?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("button",{key:0,class:e.normalizeClass(["zy-btn margin-left","line-"+a.theme]),onClick:l[1]||(l[1]=(...e)=>n.upgrade_cancel&&n.upgrade_cancel(...e))},"取消升级",2))])),r.update_flag&&!r.forceupgrade?(e.openBlock(),e.createElementBlock("view",{key:1,class:"action text-center"},[e.createElementVNode("button",{class:e.normalizeClass(["zy-btn","bg-"+a.theme]),onClick:l[2]||(l[2]=(...e)=>n.upgrade_break&&n.upgrade_break(...e))},"中断升级",2)])):e.createCommentVNode("",!0)])])],2)}],["__scopeId","data-v-cd70e807"]]);const m=s({},[["render",function(t,l){return e.openBlock(),e.createElementBlock("view",{class:"all"},[e.createElementVNode("scroll-view",{"scroll-y":"",class:"all-content"},[e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 特别提示 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 欢迎使用NU护理单元为您提供的NU护理单元平台。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"请您务必审慎并完整阅读以下内容,特别是免除或者限制NU护理单元责任的条款、对用户权利进行限制的条款、规定本协议的适用法律及有权解决争议的司法管辖区的条款。限制、免责条款或者其他涉及您重大权益的条款可能以加粗等形式提示您重点注意。请注意,目前在您的地区可能无法使用NU护理单元平台上的某些服务和功能(特别是涉及身份认证和支付的功能)。给您带来的不便,我们深表歉意,并正在努力尽快(如可能)提供这些服务和功能。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 如您未满18周岁或未满您居住所在地要求可使用NU护理单元平台的年龄,请不要使用NU护理单元平台。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 除非您已充分阅读并接受本协议所有条款,否则您无权使用NU护理单元平台。如您不同意本协议或其中任何条款,您应立即停止使用NU护理单元平台。您点击“同意”,或者您使用NU护理单元平台,或者以其他任何明示或者默示方式表示接受本协议的,均视为您已阅读并同意本协议。本协议即在您与NU护理单元之间产生法律效力,成为对双方均具有约束力的法律文件。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 一、定义及协议范围 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 1.1 定义 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," NU护理单元平台:指吉林省捌零信创有限公司(以下简称“NU护理单元”或“我们”)合法拥有并运营的名称为“NU护理单元” 和/或小程序、客户端应用程序以及我们不时提供的其他形式。“我们的”应相应地进行理解。为免疑义,我们亦保留调整NU护理单元平台名称的所有权利。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," NU护理单元账号或账号:指用户在使用NU护理单元平台时可能需要注册的账号。我们为用户提供NU护理单元平台注册通道,您可通过移动电话号码或我们允许的其他方式注册NU护理单元账号。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 用户:指NU护理单元平台的使用人,在本协议中更多地称为“您”。“您的”应相应地进行理解。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 不良信息:指含有下列内容的信息: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 违反中国宪法确定的基本原则,煽动抗拒或者破坏中国宪法等法律法规实施的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 危害中国国家统一、主权和领土完整,泄露中国国家秘密,危害中国国家安全,损害中国国家尊严、荣誉和利益,宣扬恐怖主义、极端主义的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 诋毁中华民族优秀文化传统,煽动民族仇恨、民族歧视,侵害中华民族风俗习惯,歪曲中华民族历史和民族历史人物,伤害民族感情,破坏民族团结的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 煽动破坏中国国家宗教政策,宣扬宗教狂热,危害宗教和睦,伤害信教公民宗教感情,破坏信教公民和不信教公民团结,宣扬邪教、迷信的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 危害中国社会公德,扰乱中国社会秩序,破坏中国社会稳定,宣扬淫秽、赌博、吸毒,渲染暴力、恐怖,教唆犯罪或者传授犯罪方法的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 侵害未成年人合法权益或者损害未成年人身心健康的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 侮辱、诽谤他人或者散布他人隐私,侵害他人合法权益的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 违反法律法规底线、中国社会主义制度底线、中国国家利益底线、中国公民合法权益底线、中国社会公共秩序底线、道德风尚底线和信息真实性底线的“七条底线”要求的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 法律法规禁止的其他内容。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 1.2 协议范围 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 本协议是您与NU护理单元之间关于您下载、安装、使用NU护理单元平台所订立的协议,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"包括本协议正文、《NU护理单元用户隐私政策》《NU护理单元未成年人个人信息保护规则》《NU护理单元社区公约》《NU护理单元社区规范》及NU护理单元已经发布的或将来可能发布/更新的并采取合理途径通知的各类规则、规范、通知等。"),e.createTextVNode("所有规则均为本协议不可分割的组成部分,且具有同等法律效力。 ")]),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 二、账号管理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 2.1 账号获得 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," NU护理单元平台为您提供注册及登录通道,您可按照页面提示填写信息、阅读并同意本协议,在完成全部注册登录程序后,成为NU护理单元平台用户。您还需要根据法律法规的规定(如有)填写您真实的身份信息,否则您可能无法使用NU护理单元平台服务或在使用NU护理单元平台服务过程中受到限制。您了解并同意,您有义务保持您向我们提供的信息的真实性、有效性、准确性及完整性。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您注册获得的账号、设置的密码是您登录并以用户身份使用NU护理单元平台的凭证,您应当谨慎使用、妥善保管。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您须对账号进行的所有活动和行为负责。若因您保管不善导致的盗号、密码丢失、账号被非法使用的责任将由您自行承担。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您不得恶意注册NU护理单元账号,包括但不限于通过频繁注册、批量注册、使用他人身份注册或其他不以正常使用NU护理单元平台为目的的账号注册行为。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 2.2 账号信息设置 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您在注册或使用NU护理单元平台时提供的信息资料(包括但不限于昵称、头像及简介)须遵守法律法规、社会道德风尚和信息真实性等原则,不得出现不良信息,不得冒用他人姓名、名称、字号、头像或使用其他足以引起混淆的方式设置账号,不得侵害第三方的合法权益。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 2.3 账号使用及权属 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 部分第三方网站或者服务可以用NU护理单元账号作为其登录途径之一。您知晓,除非NU护理单元特别说明外,这些网站或者服务并非NU护理单元运营,您应自行判断此类第三方网站或者服务的安全性和可用性,并自行承担相关风险和责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 由于您的账号关联您的个人信息及NU护理单元平台商业信息,您的账号仅限您本人使用。未经NU护理单元同意,授权第三方使用您账号或获取您账号项下信息的行为无效。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"如NU护理单元判断您账号的使用可能违反法律法规或本协议、危及您的账号安全及/或NU护理单元平台信息安全的,NU护理单元可拒绝提供相应服务,采取包括但不限于暂停、封禁、注销、收回您的账号,或终止本协议的措施,由此带来的包括但不限于您账号中的内容以及虚拟物品的清空等损失由您自行承担。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 2.4 账号注销及回收 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 您可以依照NU护理单元平台的流程申请注销您的NU护理单元账号,但您仍应对您在注销账号前和使用NU护理单元平台期间的行为承担相应责任。注销成功后,除非法律法规另有规定,NU护理单元不会为您提供账号记录、内容或虚拟财产恢复等服务,请您谨慎操作。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您理解并同意,为了充分利用账号资源,如您在注册后未及时进行初次登录使用或连续超过六个月未登录账号并使用,且不存在未到期或未履行完毕的持续性NU护理单元平台服务的,NU护理单元有权收回您的账号。如您的账号被收回,您无法通过您此前持有被收回的账号登录并使用NU护理单元平台,您账号下保存的内容、权限、个性化设置和使用记录等信息也将无法恢复。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 2.5 账号违规处置 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 若您在注册或使用NU护理单元账号时,存在任何违反法律法规或不符合本协议约定的行为,NU护理单元有权不予注册;已经注册的,NU护理单元有权视情况要求用户限期改正,或采取短期封禁、永久封禁、注销账号等措施。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 三、NU护理单元平台服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.1 内容浏览 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您可通过NU护理单元平台浏览订阅各类信息和内容。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您对NU护理单元平台中的内容须自行加以判断,并自行承担因依赖或使用该等内容而引起的风险。在适用法律允许的最大限度内,您应对基于该等内容进行的所有支付或交易,或因前述内容而造成的任何损害或损失由您自行承担。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.2 内容发布 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 在遵守本协议的前提下,您可使用NU护理单元平台发表属于您原创或您有权发表的观点看法、文字、信息、图片、音视频等内容。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您在NU护理单元平台发布的任何内容均不代表NU护理单元的观点、立场或政策,您自行对您所发布内容承担全部责任。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您通过NU护理单元平台发布内容时必须遵守全部法律法规,不得利用NU护理单元平台制作、复制、发布、传播、储存任何违反法律法规、危害中国国家安全、可能对用户财产安全或信息安全造成损失的信息、营销信息、低俗不当信息或其他我们认为不应发布的信息不良信息以及不实信息等内容。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 用户不得利用基于深度学习、虚拟现实、生成式人工智能等新技术新应用制作、上传、复制、传送或传播虚假新闻信息等法律法规禁止的信息内容,或将合成内容谎称为真实或自然内容。您在发布或传播利用基于深度学习、虚拟现实、生成式人工智能等新技术新应用制作的非真实信息时,应当以显著方式予以标识,否则我们有权对相关内容和账号采取包括但不限于增加标识、限制、封禁等措施。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.3 商品与服务交易 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},[e.createTextVNode(" 您可使用NU护理单元平台进行商品与服务的交易,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"如您是未成年人或限制民事行为能力人,请在监护人同意后进行交易。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 进行交易时请您务必仔细确认所购商品的品名、价格、数量、型号、规格、尺寸或服务的时间、内容,以及该服务的限制性要求等重要事项,并在下单时核实您的联系地址、电话、收货人等信息。如您填写的收货人非您本人,则该收货人的行为和意思表示产生的法律后果均由您承担。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},[e.createTextVNode(" 您的交易行为应当基于真实的消费需求,不得存在对商品或服务实施恶意购买、恶意维权等扰乱NU护理单元平台正常交易秩序的行为。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"基于维护NU护理单元平台交易秩序及交易安全的需要,NU护理单元发现上述情形时可主动执行关闭相关交易订单等操作。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 如您的交易相对方存在利用NU护理单元平台系统漏洞、规则漏洞,不正当获取NU护理单元平台补贴等任何利益的行为,基于维护NU护理单元平台交易秩序、交易安全及NU护理单元合法权益的需要,NU护理单元发现上述情形时可主动执行关闭相关交易订单等操作。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本协议终止后,对于您在本协议存续期间产生的交易订单,NU护理单元可通知交易相对方,并有权自主决定或者根据交易相对方的意愿决定是否关闭未完成的交易订单;如NU护理单元未关闭交易订单,则您应当就该等交易订单继续履行本协议及交易订单的约定,并承担因此产生的法律责任及损失。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.4 内容分享与转发 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您可对NU护理单元平台的信息内容进行分享、转发,但未经NU护理单元书面许可,您不得复制、读取、采用、统计NU护理单元平台的信息内容及相关数据,或者进行任何形式的销售和商业使用,或者向第三方泄露、提供或允许第三方为任何方式的使用。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.5 活动参与 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您可通过NU护理单元平台参与NU护理单元不定期组织的各类线上、线下互动活动,但您"),e.createElementVNode("text",{style:{"font-weight":"600"}},"不得采取任何不正当或作弊的违规手段参与活动,否则NU护理单元有权限制或取消您参与活动的资格,并有权取消、追讨您已获得、领取的奖励,并保留追究您法律责任的权利。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.6 服务费用 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" NU护理单元为向您提供的NU护理单元平台服务付出了大量的成本,除NU护理单元平台明示的收费业务外,NU护理单元向您提供的NU护理单元平台服务是免费的。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"如未来NU护理单元向您收取合理费用,NU护理单元会采取合理方式并以合理的期限提前通知您,确保您有充分选择的权利。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 在NU护理单元降低收费服务的收费标准或者将收费服务改为免费服务提供时,NU护理单元保留不对原付费用户提供退费或者费用调整之权利。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 四、权利与许可 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 4.1 平台声明 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"平台知识产权。"),e.createTextVNode("NU护理单元平台所提供的内容,包括但不限于视频、图文、文字表述及其组合、界面设计、版面框架、图标、商标等,均由NU护理单元所有或授权使用,受中华人民共和国著作权法、商标法、专利法、反不正当竞争法及国际条约,以及其他国家或司法管辖区的知识产权法律法规的保护。未经NU护理单元书面允许,用户不得为任何目的擅自使用、复制、再造这些内容、或创造与内容有关的派生产品。我们保留本条款中未明确授予您的所有权利。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"平台使用规范。"),e.createTextVNode("您不得从事下列行为: ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 对NU护理单元平台或NU护理单元平台服务进行反向工程、反向汇编、反向编译,或者以其他方式尝试发现NU护理单元平台的源代码; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 以任何方式(包括但不限于盗链、冗余盗取、非法抓取、模拟下载、深度链接、假冒注册等)直接或间接盗取NU护理单元平台的视频、图文、用户信息等信息内容; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 通过非NU护理单元开发、授权、许可的第三方软件、插件、外挂、系统,登录或使用NU护理单元平台,或对NU护理单元平台的正常运行进行干扰、破坏、修改或施加其他影响; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 利用或针对NU护理单元平台进行任何危害我们或任何第三方计算机网络安全的行为,或暴露我们或任何第三方计算机网络安全弱点的行为,包括但不限于:非法侵入网络、干扰网络正常功能、窃取网络数据等危害网络安全、为上述行为提供程序、工具或其他支持与帮助;干涉、破坏NU护理单元平台系统、软件或网站的正常运行,故意传播恶意程序或病毒和其他破坏干扰正常网络信息服务的行为; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 其他以任何不合法的方式、为任何不合法的目的、或与NU护理单元为此制定的其他规范和标准不一致的方式使用NU护理单元平台或NU护理单元平台服务。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 4.2 用户内容及信息授权 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您在NU护理单元平台发布、上传的内容(包括但不限于文字、图片、视频、音频等)应有合法来源,相关内容为您所有或您已获得必要的授权。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 除非有相反证明,您理解并同意,为使用户内容得到更好的分享及推广,提高其传播价值及影响力,您授予NU护理单元免费的、不可撤销的、非排他的、全球无地域限制的许可使用,包括:存储、使用、传播、复制、修订、改编、汇编、出版、展示、翻译、表演用户内容或制作派生作品,以已知或日后开发的形式、媒体或技术将内容纳入其它作品,再许可第三方按照前述方式使用的权利,以及以自身名义或委托专业第三方对侵犯您上传发布的享有知识产权的内容进行取证、发起投诉或提起诉讼的权利。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 为免歧义,上述许可包括使用、复制和展示用户内容中的个人形象、肖像、姓名、商标、品牌、标识及其他营销推广素材、物料的权利和许可。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 4.3 侵权投诉 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 我们尊重并保护您及他人的知识产权、名誉权、姓名权、隐私权等合法权益。您保证,在NU护理单元平台上传的文字、图片、视频、音频、链接等不侵犯任何第三方的知识产权、名誉权、姓名权、隐私权等合法权益。否则,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元有权在收到权利方或者相关方通知的情况下移除该涉嫌侵权内容。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您认为NU护理单元平台上的内容侵犯您的合法权益,应当向我们发送侵权通知,具体通知方式和要求按侵权投诉指引执行。我们将在收到有效通知后进行审核,对可以初步证明构成侵权的内容采取必要措施。对无法认定为侵权的内容,您也将收到相应告知,如果您仍然认为侵权事实存在,新的侵权通知中应当补充证明侵权的证据。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 在适用法律允许的最大限度内,NU护理单元储存在其服务器上的数据是用户使用NU护理单元平台和NU护理单元平台服务的唯一有效证据。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 五、法律责任 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 5.1 违约处理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 如您违反本协议约定,NU护理单元有权作出独立判断,立即暂停或终止向您提供部分或全部NU护理单元平台服务,包括采取禁言、屏蔽信息、删除发布内容、封禁账号、注销账号等措施。您应对与该等措施相关的任何损失和损害(包括但不限于您账号的内容、虚拟财产和权限清空、无法正常使用账号及相关NU护理单元平台服务或任何其他后果)承担全部责任和义务。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 5.2 责任承担 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 您承担法律责任的形式包括但不限于:对受到侵害者充分赔偿损失、赔礼道歉、补救负面影响、返还财产等。如您的行为给NU护理单元造成损失的,您应承担全部赔偿责任,包括行政处罚或损害赔偿款等直接损失以及商誉损失、和解款、律师费、诉讼费等间接损失。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 5.3 反商业贿赂 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您充分了解,任何向NU护理单元的雇员或顾问等提供实物、现金、现金等价物、劳务、旅游等价值明显超出正常商务洽谈范畴的利益,均视为商业贿赂行为。发生前述情形的,NU护理单元可立即终止与您的所有合作并追究您的法律责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 5.4 关联处理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您因违约导致NU护理单元终止本协议时,出于维护NU护理单元平台秩序的目的,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元可终止与您在其他协议(如有)项下的合作。如您违反任何NU护理单元与您订立的其他协议,NU护理单元亦有权终止本协议。除前述协议终止外,NU护理单元亦可追究您在本协议或其他协议下的违约责任。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 5.5 信息公示 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 我们可将对您上述违约行为的处置信息,以及其他经国家行政或司法机关生效法律文书确认的违法信息,在"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元平台"),e.createTextVNode("上予以公示。对涉嫌违反法律法规的行为,我们有义务保存有关记录,向国家有关机关报告并配合调查。 ")]),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 六、责任限制、免责事由和赔偿 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 由于各国家或地区的法律与其他一些法律不同,本协议包括仅适用于您位于欧洲经济区(“EEA”)、英国和瑞士(统称 “EEA+”)内情况的条款(第6.1 条)、仅适用于您位于中国内情况的条款(第 6.2 条)(为免疑义,仅为第6.2条之目的,中国不包含香港特别行政区、澳门特别行政区和中国台湾)和仅适用于您位于其他国家或地区的情况的条款(第 6.3 条)。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.1 如您位于 EEA+内 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本第6.1条仅适用于您位于EEA+内的情况。在我们已尽专业勤勉义务的前提下,我们不对任何损失或损害承担责任,除非其:(1)是由于我们对本协议的违反而造成的;或(2)在签订本协议时可被合理预见,即其显然会发生,或在您与我们签订本协议时已知可能会发生。本协议无意排除或限制我们对死亡或人身伤害、欺诈、欺诈性虚假陈述或任何法律规定不能排除的责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 尽管本协议另有规定,如果我们怀疑您违反了本协议,我们将遵循以下步骤。首先,我们可能会进行调查,在调查期间,我们可能会暂停您对NU护理单元平台的访问,并根据涉嫌违规行为的严重程度,在适用法律允许的范围内,根据任何法律义务,合理客观地采取行动。在下列情况下,我们可能决定暂时中止或永久终止您对NU护理单元平台的访问:(1) 我们根据法律法规合理客观地认定您严重或多次违反本协议;(2) 我们有客观理由合理地认为您即将严重违反本协议;(3) 法律要求我们如此行事;或 (4) 我们有客观理由合理地认为在处理严重的技术或安全问题时需要如此行事。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.2 如您位于中国 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本第6.2条仅适用于您位于中国内的情况。仅为第6.2条之目的,中国不包含香港特别行政区、澳门特别行政区和中国台湾。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 除适用法律另有明确规定外,在任何情况下,我们均不对任何间接性、后果性、惩罚性、偶然性、特殊性或刑罚性的损害承担责任,该等损害包括但不限于您因使用NU护理单元平台或NU护理单元平台服务而遭受的利润损失。除适用法律另有明确规定外,我们对您承担的全部责任,无论因何原因或何种行为方式,始终不超过您因使用NU护理单元平台或NU护理单元平台服务期间而支付给我们的费用(如有)。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.3 如您位于其他国家或地区 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本第6.3条仅适用于您位于第6.1条所述EEA+和第6.2条所述中国外的情况。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 无陈述或保证:NU护理单元平台和NU护理单元平台服务按“现状”“可用”提供,且您“风险自担”。在法律允许的最大范围内,我们明确不作对NU护理单元平台和NU护理单元平台服务的任何及所有明示或默示的陈述和保证,包括对适销性的默示保证、针对特定用途的适用性或非侵权性。我们不保证NU护理单元平台和NU护理单元平台服务能够满足您的要求,也不保证NU护理单元平台和NU护理单元平台服务的运行不会中断或没有错误。与NU护理单元平台和NU护理单元平台服务相关的信息、内容和服务可能包含漏洞、错误、问题或其他限制。在法律允许的最大范围内,我们、我们的关联公司、我们或其各自的董事、高级职员、雇员、代理、服务提供商和许可方(统称 “NU护理单元方”)对您使用NU护理单元平台和NU护理单元平台服务不承担任何责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 责任限制:在法律允许的最大范围内,NU护理单元方不对任何因本协议、NU护理单元平台或NU护理单元平台服务引起的或与之相关的任何间接的、附带的、结果性的、特殊的、法定的、约定的、惩罚性的或其他类似的损害赔偿,或任何超出实际损害的损害赔偿,包括收入损失、利润损失、数据丢失、业务中断或其他无形损失(无论此类损失如何定性)承担责任,无论是否基于合同、侵权行为或任何其他法律理论,也无论各方是否已被告知此类损失的可能性。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"访问由我们自行决定:"),e.createTextVNode("在法律允许的最大范围内,我们可随时自行决定,不经另行通知,限制、暂停、修改或终止您对NU护理单元平台或NU护理单元平台服务的访问,包括在您未能遵守或我们怀疑您未能遵守或即将未能遵守本协议的任何规定,或实际或涉嫌非法或不当情况下。任何此类终止或暂停将不影响我们根据适用法律可能享有的任何其他权利。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"辩护和赔偿:"),e.createTextVNode("对于因您使用NU护理单元平台和NU护理单元平台服务或您违反本协议而导致或引起的任何第三方主张的任何索赔、要求、指控、调查、诉讼、程序或其他争议,您同意为NU护理单元方辩护。并且您同意赔偿NU护理单元方因任何此类争议而产生的任何损害、责任、估定、损失、成本和其他费用(包括合理的律师费和法律费用),并使其免受损害。我们将及时通知您任何此类争议,并将向您提供合理协助,费用由您承担,以就任何此类争议进行抗辩,但未提供此类通知并不免除您在本协议项下的任何义务,除非您因未被提供此类通知而受到重大损害。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"例外:"),e.createTextVNode("本协议中的任何内容均不排除或限制因我们的严重疏忽或故意不当行为而导致的任何责任,或法律不能排除的任何责任。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.4 第三方服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您在使用NU护理单元平台某一特定服务时,该服务可能会另有单独的协议或规则,您在使用该项服务前请阅读并同意相关的单独协议或规则。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您在NU护理单元平台使用第三方提供的产品或服务时,除遵守本协议及其他相关规则外,还可能需要您仔细阅读、同意并遵守第三方的协议、相关规则。如因第三方产品或服务产生的争议、损失或损害,需由您自行与第三方依据相关协议解决。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.5 平台责任承担 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 我们仅按照适用法律法规规定承担平台责任。我们不对任何第三方的诽谤、犯罪或其他非法行为承担责任,也不赔偿因此造成的您的损失。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.6 服务变更、中断、终止 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," NU护理单元始终在不断变更和改进NU护理单元平台服务,我们会尽最大努力向您提供服务,确保服务的连贯性和安全性。基于此,我们可能会对NU护理单元平台进行更新,您应将软件更新到最新版本,否则我们不保证您可正常使用NU护理单元平台。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您理解并同意,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元根据自身商业决策、政府行为、不可抗力等原因可能会选择中止、中断及终止NU护理单元平台的部分或全部服务。"),e.createTextVNode("如有此等情形发生,我们会采取合理的方式并以合理的期限提前通知您,除法律法规另有规定外,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"我们不承担由此对您造成的损失。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 在NU护理单元发生合并、分立、收购、资产转让时,NU护理单元可将本协议下部分或全部NU护理单元平台服务及相应的权利义务转交由第三方运营或履行。具体受让主体以NU护理单元通知为准。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如发生下列任何一种情形,我们有权不经通知而中断或终止向您提供服务: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 根据法律法规规定您应提交真实信息,而您提供的个人资料不真实、或与注册时信息不一致又未能提供合理证明。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您违反相关法律法规的规定或违反本协议的约定。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 按照法律法规规定,或司法机关或主管部门的要求。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 出于安全的原因或其他必要的情形。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 七、协议变更与终止 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 7.1 协议变更通知 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"我们有权在必要时,修改本协议内容,并将通过合理的方式(包括但不限于NU护理单元平台公告、系统消息、站内信、手机短信、电子邮件或其他类似方式)及合理的期限提前通知您,该等通知于发送之日视为已送达您。"),e.createTextVNode("您可以通过NU护理单元平台相关页面查阅最新版本的协议内容。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 7.2 变更协议生效 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"本协议变更生效后,如您继续使用NU护理单元平台或NU护理单元平台服务,即视为您已接受修改后的协议。如您不接受修改后的协议,应当停止使用NU护理单元平台或NU护理单元平台服务。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 7.3 协议终止 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您注销您的NU护理单元账号或NU护理单元通知您终止为您提供NU护理单元平台服务(包括但不限于封禁账号、注销账号或其他类似措施)时,本协议将同时终止,NU护理单元将不再另行通知您终止本协议。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 八、法律适用与管辖 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 8.1 本协议的订立、生效、履行、解释、修订、终止及纠纷解决,适用中华人民共和国法律法规(仅为本协议之目的,不包括香港特别行政区及澳门特别行政区法律法规,和中国台湾地区有关规定)。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 8.2 若您与NU护理单元之间发生任何纠纷或争议,由NU护理单元与您协商解决。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"协商不成的,您同意将纠纷或争议提交被告所在地人民法院管辖。")]),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 九、其他 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 9.1 本协议所有条款的标题仅为阅读和理解方便,本身并无实际涵义,不能作为本协议涵义解释的依据。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 9.2 本协议条款无论因何种原因部分无效或不可执行,其余条款仍有效,并对双方具有约束力。如果某条款规定我们在特定情况下有特定权利,这并不意味着该权利是我们在该等特定情况下可以行使的唯一权利,也不意味着该条款取消或使涉及相同情况或主旨事项的任何其他条款无效或失效。任何一方未能执行或延迟执行本协议项下的任何权利、救济或条款,不应被视为放弃该权利、救济或条款。任何弃权必须明确以书面形式作出并由弃权方签署。任何权利或救济的单次或部分行使,不应妨碍该权利或补救措施或任何其他权利或补救措施的进一步或其他行使。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 9.3 如您对本协议有任何意见或建议,您可向NU护理单元平台(service@blxinchuang.com)反馈,我们会给予您必要的帮助。 ")])])}],["__scopeId","data-v-8b11c490"]]);const u=s({},[["render",function(t,l){return e.openBlock(),e.createElementBlock("view",{class:"all"},[e.createElementVNode("scroll-view",{"scroll-y":"",class:"all-content"},[e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx"}}," 为了更好地保障您的权益,我们于近日更新了《NU护理单元隐私信息保护政策》。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx"}}," 请您在使用/继续使用NU护理单元产品/或服务前仔细阅读、充分理解全文,并在同意全部内容后使用/继续使用。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 前言 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1. NU护理单元/或服务指由吉林省捌零信创科技有限公司及其关联公司(以下称为“NU护理单元”或者“我们”)运营,并由吉林省捌零信创科技有限公司开发及维护的产品和服务(以下亦称“我们的产品/或服务”)。我们非常重视您的隐私保护和个人信息保护,鉴于此,我们制定本《NU护理单元隐私信息保护政策》(以下称为“本政策”),与您确认关于您在使用我们的产品/或服务期间,NU护理单元收集、存储、使用、披露和保护您的个人信息的相关事宜。如您对本政策内容有任何疑问、意见或建议,您可通过我们提供的各种联系方式与我们联系。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 2. 在使用我们的各项产品和/或服务前,请您务必仔细阅读并透彻理解本政策,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"特别是以粗体、粗体加下划线标识的条款,您应重点阅读,在确认充分理解并同意后开始使用。如果您/您的监护人不同意本政策的任何内容,您应该立即停止使用。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3. 本政策为NU护理单元统一适用的一般性隐私政策条款,适用于NU护理单元提供的所有产品和服务。当我们及关联公司就其向您提供的特定产品和/或服务单独设立隐私政策的,则优先适用该产品和/或服务的隐私政策。该产品和/或服务的隐私政策未涵盖的内容,以本政策内容为准;该产品和/或服务的隐私政策与本政策存在冲突的,以该产品和/或服务的隐私政策为准。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 4. "),e.createElementVNode("text",{style:{"font-weight":"600"}},"请您注意,本政策不适用于与我们的平台、产品和/或服务集成的任何第三方应用程序或软件,或者任何其他第三方产品、服务或业务(统称为“第三方服务”)。第三方服务由第三方负责运营,您使用第三方服务应遵守第三方为此制定的隐私政策或其他个人信息处理规则,我们提示您仔细识别实际服务的提供方,并在使用任何第三方服务之前仔细查看相关规则。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 5. 您同意本政策表示您已经了解并同意在相关场景下,为实现功能运行,我们将对您的相关个人信息进行处理。但这并不代表只要您开始使用我们的产品和/或服务,我们即开始处理本政策中涉及的您的全部个人信息。只有当您使用特定功能时,我们才会根据“最小必要”原则,为实现向您提供产品功能及服务的目的,处理您的相关个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 6. 您理解并同意,基于不断完善产品和服务的目的,我们将不时推出新增和/或优化功能,可能增加或变更收集、使用个人信息的范围、目的和方式。对此,我们将通过更新本政策、页面提示、新签署文件、弹窗、网站公告或站内信等即时通知方式另行向您明确说明,并为您提供同意与否的选项。该等即时通知是本政策的有效组成部分,与本政策具有同等法律效力。您有权拒绝同意该等即时通知,但您同时知悉并理解,一旦您拒绝我们收集、处理您的个人信息属于实现更新服务或功能所必要的情形时,我们将可能无法为您提供更新后的服务与功能,或者无法达到更新服务的效果,但您原有正常使用的基础功能不受影响。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 关于我们 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们的主要运营公司基本情况如下:长春市经济开发区长吉南线以东、吉林大路以南东方广场中意国际大厦B座1431号。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 联系电话:18043530712。如您想更详细的了解我们的公司、平台,您可以通过本政策提供的联系方式与我们联系。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 第一部分 定义 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"1. 个人信息:"),e.createTextVNode("是以电子或者其他方式记录的与已识别或者可识别的自然人有关的各种信息,不包括匿名化处理后的信息。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"2. 敏感个人信息:"),e.createTextVNode("是一旦泄露或者非法使用,容易导致自然人的人格尊严受到侵害或者人身、财产安全受到危害的个人信息,包括"),e.createElementVNode("text",{style:{"font-weight":"600"}},"生物识别、宗教信仰、特定身份、金融账户、行踪轨迹等信息,以及不满十四周岁未成年人的个人信息。敏感信息在本政策中会做加粗加下划线提示。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"3. 个人信息的处理:"),e.createTextVNode("包括个人信息的收集、存储、使用、加工、传输、提供、公开、删除等。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"4.个人信息处理者:"),e.createTextVNode("是指在个人信息处理活动中自主决定处理目的、处理方式的组织、个人。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"5.个人信息主体:"),e.createTextVNode("指个人信息所标识或者关联的自然人。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"6.自动化决策:"),e.createTextVNode("是指通过计算机程序自动分析、评估个人的行为习惯、兴趣爱好或者经济、健康、信用状况等,并进行决策的活动。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"7.去标识化:"),e.createTextVNode("指个人信息经过处理,使其在不借助额外信息的情况下,无法识别特定自然人的过程。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"8.匿名化:"),e.createTextVNode("指个人信息经过处理无法识别特定自然人且不能复原的过程。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"9. NU护理单元:"),e.createTextVNode("是指NU护理单元或其关联公司发布和/或运营的包括但不限于NU护理单元相关的网络平台。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"10. NU护理单元产品和/或服务:"),e.createTextVNode("指我们基于互联网,以包含NU护理单元网站、客户端(含APP\\APK\\小程序)及其他产品形态(如SDK\\API等,以及未来技术发展出现的新的形态)向您提供的包括但不限于内容分发、信息网络传播、互联网音视频业务等各项产品和服务。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"11. 平台规则:"),e.createTextVNode("包括在所有NU护理单元网站、客户端内已经发布及后续发布的全部规则、用户服务协议、解读、公告、其他内容以及各平台在频道、活动页面、帮助中心发布的各类规则、实施细则、产品说明、公告及各形式的平台规范。 ")]),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 第二部分 隐私保护政策 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本政策将帮助您了解以下内容: "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 一、我们如何收集和使用您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 二、我们如何使用 Cookie 和同类技术 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 三、我们如何共享、转让和披露您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 四、我们如何存储您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 五、我们如何保护您的个人信息安全 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 六、我们如何保护未成年人的个人信息 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 七、您如何行使您的个人信息权利 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 八、如何联系我们 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 一、我们如何收集和使用您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 因向您提供的产品和服务种类众多,我们将根据具体产品/服务范围和不同功能,遵循合法、正当和必要原则收集和使用您的个人信息。以下我们向您逐一告知各功能需要的必要个人信息类型及需授权的权限。 "),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (一) 帮助您注册、登录和维护平台账号 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1. 注册与登录 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" (1) 手机号或账号密码注册/登录:当您注册、登录我们的产品和/或服务时,为了帮您顺利完成注册/登录流程,您需要提供: "),e.createElementVNode("text",{style:{"font-weight":"600"}},"手机号码、短信验证码信息或NU护理单元登录账号及密码信息。"),e.createTextVNode("同时,我们还提供 “一键登录”功能,与我们建立合作关系的运营商或其合作伙伴会将您设备中的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"手机号码"),e.createTextVNode("提供给我们作为您的注册、登录账号并免于动态验证码核验,便于我们为您提供快捷的注册、登录服务。如果您不希望使用“一键登录”功能,可以选择其他方式进行注册、登录。收集手机号码信息是为了满足相关法律法规的网络实名制要求,如您拒绝提供手机号码进行核验,将导致注册/登录失败,但您仍可在游客模式下使用音视频的浏览、搜索、播放功能。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" (2) 扫码登录:当您通过扫码方式进行登录时,我们会请求您授权设备的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"相机、相册/存储权限"),e.createTextVNode(",以实现通过扫描二维码方式完成登录。如您不需要使用扫码登录服务,您也可以选择其他登录方式。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2. 资料维护和账号找回 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" (1) 为维护您的基本资料,提升您的服务体验,您可以选择填写完善您的个人信息,包括您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"电子邮箱、性别、所在地、头像、昵称、生日、个人简介;"),e.createTextVNode("在相关儿童页面,您也可以选择在宝贝信息界面内填写您宝贝的性别和生日,当您选择上传头像时,我们会请求您授权"),e.createElementVNode("text",{style:{"font-weight":"600"}},"相机、相册/存储权限"),e.createTextVNode(",以实现头像拍摄或选择后完成上传。当您选择一键同步第三方账号昵称和头像时,经您授权,第三方平台将与我们同步您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"第三方账号信息(如头像、昵称,具体以您的授权范围为准)。"),e.createTextVNode("如您选择不提供这些信息,不会影响您使用基础服务功能。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," (2) 若您希望绑定或者解绑您所关联的第三方平台账号,您可以随时在“我的-设置-账号与安全-账号绑定”进行设置,第三方平台账号的绑定或解绑不会影响您使用基础服务功能。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" (3) 如果您的账号遗失,您可以找回账号。如果您遗忘账号密码,您可以通过手机短信验证,或联系客服找回密码或重置密码;您也可以换绑已注册手机号码。但在此过程中,我们可能需要您提供必要的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"身份信息、手机号码、经常登录地点、经常登录设备、经常收听内容、注册时间和城市信息"),e.createTextVNode("等相关信息以验证您的身份;为了核验您的真实身份,必要时还可能通过静态或动态的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"人脸识别"),e.createTextVNode("验证您的真实身份。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3. 账号权益与资金 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," (1) 账号权益:基于NU护理单元统一账号体系和便于您在我们的产品和/或服务中使用相关权益与资产,我们会收集您在NU护理单元账号下的权益及资产信息,同时,我们会在应用内向您展示您的部分或全部前述信息,具体以页面实际展示为准。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" (2) 资产提现:当您使用我们的提现功能时,需要您提供"),e.createElementVNode("text",{style:{"font-weight":"600"}},"结算主体相关信息(姓名/名称、身份证号/统一社会信用代码)、结算账户相关信息(持卡人/户名、银行卡信息/支付宝账号信息),"),e.createTextVNode("以完成结算主体认证及资金结算账户绑定;若您是境外用户,可能还需要您提供"),e.createElementVNode("text",{style:{"font-weight":"600"}},"境外用户主体身份证明材料(如护照号、手持证照照片等"),e.createTextVNode(")。我们会在应用内向您展示您的部分或全部前述信息,具体以页面实际展示为准。您可以在我们产品的相关页面修改您已绑定的结算账户。如您拒绝提供前述结算账户相关信息,您将无法顺利提现,不影响您使用我们的其他功能与服务。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 4. 若您还未成为平台注册用户,您可以游客身份使用我们提供的基本功能,主要包括音频作品的搜索、浏览和播放。为保障上述功能实现、履行网络系统运营安全义务,我们将收取您的必要"),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备信息(设备型号、设备MAC地址、操作系统版本、唯一移动设备识别码(IMEI、Android ID、IDFA、IDFV、HarmonyOS UUID、SIM卡序列号和IMSI信息))"),e.createTextVNode(",为您分配专属标识符,并基于此标识符记录您游客身份下的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"操作信息"),e.createTextVNode(",即您浏览、播放等记录,并以日志文件的形式进行保存。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 5. 根据相关法律法规对互联网账号的管理要求、维护网络安全和良好的网络内容生态,我们会在您的个人主页以及您发布的内容、信息页面展示您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"IP属地"),e.createTextVNode("(境内IP地址展示至省/自治区/直辖市、境外IP地址展示至国家/地区,具体信息以网络运营商数据为准)。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 6."),e.createElementVNode("text",{style:{"font-weight":"600"}}," 为更好地保护未成年人隐私权益,我们特别提醒您慎重发布包含未成年人素材的内容,一经发布,即视为您已获得权利人同意在我们的产品和/或服务展示未成年人的肖像、声音等信息,且允许我们依据平台协议及本政策使用、处理该等与未成年人相关的内容。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 通讯录权限保持默认关闭状态。如您不希望被推荐给您的通讯录好友,您也可以通过设备权限管理关闭此前向NU护理单元开放的通讯录授权。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 7. 您在使用我们的服务时,若您想分享您喜欢的内容至第三方平台或应用,我们需要从您的设备终端读取"),e.createElementVNode("text",{style:{"font-weight":"600"}},"已安装的移动应用列表"),e.createTextVNode(",用以判断您是否安装了第三方应用,以便为您提供正确的分享功能。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 您在使用我们的服务时所共享的内容和信息,可能会涉及他人的个人信息,请您确认已获得他人的合法授权。与此同时,您有义务妥善保护自己的个人信息,仅在必要的情形下向他人提供、展示自己的信息。如您发现自己的个人信息泄露,尤其是您的账户或密码发生泄露,请您立即联系NU护理单元客服。 "),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (二)为您提供充值服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 为向您展示充值服务,帮助您完成交易,以及向您提供客户服务,同时基于维护支付安全、追溯网络交易行为等相关法律法规要求,当您在使用订阅或购买商品/服务时,我们会收集如下信息: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 1. 当您充值时,我们将收集您在完成交易时的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"服务信息"),e.createTextVNode("生成您的账单明细,此外,我们还需记录并保存"),e.createElementVNode("text",{style:{"font-weight":"600"}},"与订单相关的信息"),e.createTextVNode(",包括:"),e.createElementVNode("text",{style:{"font-weight":"600"}},"交易金额、下单时间、订单编号、订单状态、支付方式、支付流水号、支付状态"),e.createTextVNode(",我们收集这些信息是为了帮助您顺利完成交易、保障您的交易安全、查询订单信息,配合网络交易监管的法定义务。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 上述所有信息构成您的订单信息,我们(包括与为您提供上述服务的第三方)将使用您的订单信息进行您的身份核验、确定交易、支付结算、完成配送、为您查询订单以及提供客服咨询与售后服务。我们还会使用您的订单信息来判断您的交易是否存在异常以保障您的交易安全。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 2. 当您通过扫一扫参加活动时,我们会请求您授权您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"相机权限、相册/存储权限"),e.createTextVNode(",用于识别、保存或上传活动及分享二维码。我们可能会通过您所上传的照片/图片来识别您需要参与的活动链接或者音视频服务链接。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 3. 此外,为判断您是否满足活动要求的参与资格或者为了保障活动的正常秩序、防范作弊与欺诈等违法违规情况,我们同时可能需要收集和使用您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备信息(如:设备型号、设备MAC地址、操作系统版本、唯一移动设备识别码(IMEI、Android ID、IDFA、IDFV、HarmonyOS UUID、SIM卡序列号和IMSI信息))。")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (三)为您提供个性化内容推荐 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 1."),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备信息:"),e.createTextVNode("我们会根据您在软件安装和使用中的具体操作,接收并记录您所使用的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备相关信息(包括设备型号、硬件序列号、设备MAC地址、操作系统版本、设备设置、唯一设备识别码(IMEI、Android ID、IDFA、IDFV、GAID、HarmonyOS UUID、SIM卡序列号和IMSI信息)、UUID、必要的移动应用列表信息、软硬件及设备、设备环境信息、传感器信息)、设备所在位置相关信息"),e.createTextVNode("(为了识别判断您所在地区的内容版权,需要收集您授权的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"GPS精准位置"),e.createTextVNode("以及"),e.createElementVNode("text",{style:{"font-weight":"600"}},"WLAN接入点"),e.createTextVNode("(如SSID、BSSID)和"),e.createElementVNode("text",{style:{"font-weight":"600"}},"基站、传感器"),e.createTextVNode("信息)。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 2."),e.createElementVNode("text",{style:{"font-weight":"600"}},"日志信息:"),e.createTextVNode("当您使用我们的网站或客户端提供的产品或服务时,我们会自动收集您的详细使用情况,并作为网络日志保存。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"日志信息"),e.createTextVNode("包括您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"搜索和浏览记录"),e.createTextVNode("、关注、播放记录、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"购买消费记录"),e.createTextVNode("、访问量、播放时长、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"IP地址"),e.createTextVNode("、WIFI网络、运营商信息、电信运营商网络、使用的语言、访问日期和时间。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们将会在收集上述信息的基础上提取您的偏好特征,并基于特征标签产出间接人群画像,用于为您展示、推送个性化内容和您可能感兴趣的商业广告。但我们努力保障您的产品使用体验。如您对我们推荐的个性化内容不感兴趣或希望不再接收此类个性化服务,您可通过“我的-设置-我的隐私管理-个性化内容推荐/个性化广告推荐”选择关闭。关闭后首页向您展示和推荐的内容将可能与您的偏好相关度降低。 "),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (四)为您提供残障用户专享服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 为履行企业责任、体现社会关怀,当您享受我们为残障人士定向提供的“专享礼包”服务时,您需要提供您的姓名、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"身份证号"),e.createTextVNode("以及"),e.createElementVNode("text",{style:{"font-weight":"600"}},"残疾人证信息"),e.createTextVNode("以实现身份认证,我们会将您提供的前述信息与中国残疾人联合会的数据库进行比对和信息验证,以验证您的身份。如您拒绝提供上述信息,将使您无法享受残障用户专享服务,但不影响您正常使用NU护理单元的其他功能。 ")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (五) 帮助您连接智能设备 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您如希望将App与您所使用的智能设备相连接,您需要开启"),e.createElementVNode("text",{style:{"font-weight":"600"}},"蓝牙权限"),e.createTextVNode(",以使得我们能够搜索到您的智能设备。此外我们可能会收集您的Wi-Fi信息、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"位置信息"),e.createTextVNode("、智能设备信息。这些信息将用于为您提供智能设备快连、连接、发现附近设备和设备管理的功能。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"如您拒绝提供上述信息,我们将无法帮助您连接智能设备,但不影响您正常使用NU护理单元的其他功能。")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (六)为您提供客户服务及处理争议 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 当您向我们发起投诉、申诉或进行咨询时,为了您的账号与系统安全,我们可能需要您先行提供账号信息,并与您之前的个人信息相匹配以验证您的用户身份。同时,为了方便与您联系或帮助您解决问题,我们可能还需要您提供"),e.createElementVNode("text",{style:{"font-weight":"600"}},"姓名、手机号码、电子邮件"),e.createTextVNode("及其他联系方式等个人信息,并通过第三方客服系统保存"),e.createElementVNode("text",{style:{"font-weight":"600"}},"通话录音"),e.createTextVNode(",其中可能包含"),e.createElementVNode("text",{style:{"font-weight":"600"}},"通信/通话记录"),e.createTextVNode(",用于与您联系和帮助您解决问题,或记录相关问题的处理方案及结果。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 为确认交易状态及为您提供商品/服务的售后与争议解决服务,我们会通过您基于交易所选择的支付机构、支付方式等收集与"),e.createElementVNode("text",{style:{"font-weight":"600"}},"交易相关的信息"),e.createTextVNode(",包括iOS端IAP支付交易凭证和收费凭证。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 如您拒绝提供上述信息,我们将无法为您提供完整的客户服务及处理争议,但不影响您正常使用NU护理单元的其他功能。 "),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (七)为您提供安全保障功能 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 为履行维护网络安全义务,提高您使用服务的安全性,确保操作环境安全,预防钓鱼网站、欺诈、网络漏洞、计算机病毒、网络攻击、网络侵入等安全风险,以用于识别设备是否存在篡改设备信息行为,预防、发现和调查潜在的违法违规或违反用户服务协议、政策或规则的行为,如会员账号活动异常、多端登录、流量异常、经常性退款请求或低价转让会员卡等,我们以及在应用程序中嵌入的应用安全SDK将在后台自动收集您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备信息(包括设备型号、硬件序列号、设备MAC地址、操作系统版本、设备设置、唯一移动设备识别码(IMEI、Android ID、IDFA、IDFV、MEID、HarmonyOS UUID、OAID、SIM卡序列号和IMSI信息)、UUID、WLAN接入点(如SSID、BSSID)和基站、必要的移动应用列表信息、运行中的进程信息、软硬件及设备、设备环境信息、设备传感器信息 "),e.createTextVNode("(如磁场传感器、光传感器、压力传感器、旋转矢量传感器、方向传感器、重力传感器、加速度传感器、陀螺仪传感器,请您知悉,单纯的传感器数据并非个人信息))、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"日志信息(包括您的搜索和浏览记录、关注、播放记录、访问量、播放时长、IP地址、WIFI扫描列表、WIFI名称、运营商信息、电信运营商网络、使用的语言、访问日期和时间)"),e.createTextVNode(",并可能使用或整合您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"账户信息、交易信息、支付信息"),e.createTextVNode("以及其他取得您授权或依据法律共享的信息,综合判断您账户及交易风险、完成身份验证、检测,防范安全事件,并依法采取必要的记录、审计、分析、处置措施,保护各方合法权益稳定不受侵害。 ")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (八)其他附加服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 为向您提供个性化的产品和服务,提升用户体验,我们还会向您提供以下附加服务,并仅在您使用到相关功能时向您获取个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"1.驾驶模式:"),e.createTextVNode("当您开启驾驶模式后,我们会在获得您的同意后为您开启语音助手功能,我们会申请访问"),e.createElementVNode("text",{style:{"font-weight":"600"}},"麦克风权限"),e.createTextVNode("并收集您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"语音信息"),e.createTextVNode(",用于提供对应的语音服务,帮助您在驾驶时通过语音控制播放您喜欢的音频。即便您已同意开启麦克风权限,麦克风仍保持默认关闭状态,仅会在您主动点击客户端内麦克风图标或录制音频时通过麦克风获取语音信息。我们收集的语音信息仅作操作指令识别(或者语音转换文字识别),我们不会主动留存您的语音指令信息,更不会用作其他语音控制播放功能以外的用途。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"2.本地内容及生活服务推荐:"),e.createTextVNode("为向您提供或推荐您所在地附近的资讯和所在地相关音视频内容、本地广播和相关电影周边观影场所推荐、经常访问地周边的点餐和其他本地生活服务推荐信息,我们需要您授权"),e.createElementVNode("text",{style:{"font-weight":"600"}},"位置权限(精准地理位置)"),e.createTextVNode("以为您提供上述服务。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"3. 信息预填:"),e.createTextVNode("在部分需要填写您的信息的场景中(如广告落地页等),为优化您的使用体验、简化操作步骤,取得您的授权同意后,我们会将您在NU护理单元绑定的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"手机号码、姓名(如有)"),e.createTextVNode("等信息在相关页面进行预填。若您认为预填信息不准确的,您可以手动进行修改。请您知悉,预填的信息只有在您确认提交后才会被页面指向的个人信息处理者所获取。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 部分情况下该行为可能会被误判为应用自启动,但该行为属于合理使用并非侵犯用户权益的自启动行为。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您可在您的设备设置中逐项查看上述权限的状态,并可自行决定这些权限随时的开启或关闭。请您注意,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您开启任一权限即代表您授权我们可以收集和使用相关个人信息来为您提供对应服务,您一旦关闭任一权限即代表您取消了授权,我们将不再基于对应权限继续收集和使用相关个人信息,也无法为您提供该权限所对应的服务。"),e.createTextVNode("但是,您关闭权限的决定不会影响此前基于您的授权所进行的信息收集及使用,亦不影响您使用其他服务。 ")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (九)收集和使用您的个人信息的特别说明 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 1.若你提供的信息中含有其他用户的个人信息,在向我们提供这些个人信息之前,您需确保您已经取得合法的授权。若其中涉及未成年人个人信息的,您需在发布前取得对应未成年人监护人的同意,前述情形下监护人有权通过本政策第九条的途径联系我们,要求更正或删除涉及未成年人个人信息的内容。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2.若我们将您的个人信息用于本政策未载明的其他用途,或者我们超出了与收集您的个人信息时所声称的目的及具有直接或合理关联范围的,均会事先获得您的同意。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3. 若我们从第三方处间接获取(如从第三方处共享)您的信息,我们会在收集前明确以书面形式要求该第三方在已依法取得您同意后共享您的个人信息,并向您告知共享的您的个人信息的类型、使用目的、方式、授权同意范围,并要求第三方对个人信息来源的合法性和合规性作出承诺,如第三方存在违反行为,我们会明确要求对方承担相应法律责任。同时,我们的专业安全团队对个人信息会进行安全加固(包括敏感信息报备、敏感信息加密存储、访问权限控制)。我们会使用不低于我们对自身用户个人信息同等的保护手段与措施保护间接获取的个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 4.征得授权同意的例外 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 您充分理解并同意,根据法律法规要求,我们在以下情况下收集、使用您的个人信息无需征得您的授权同意: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (1) 为订立、履行个人作为一方当事人的合同所必需; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (2) 为履行法定职责或者法定义务所必需; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (3) 为应对突发公共卫生事件,或者紧急情况下为保护自然人的生命健康和财产安全所必需; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (4) 为公共利益实施新闻报道、舆论监督等行为,在合理的范围内处理个人信息; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (5)在合理的范围内处理个人自行公开或者其他已经合法公开的个人信息; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (6) 法律、行政法规规定的其他情形。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 二、 我们如何使用 Cookie 和同类技术 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 为确保网站正常运转、为您获得更轻松的访问体验、向您推荐您可能感兴趣的内容,我们和第三方合作伙伴可能借助于 Cookie或同类技术收集和使用您访问以及使用我们产品和/或服务的信息,并将该信息进行存储。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 如果您的浏览器或浏览器附加服务允许,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您可修改对Cookie的接受程度或拒绝我们的Cookie。"),e.createTextVNode("但如果您这么做,在某些情况下可能会影响您安全访问我们的网站,且可能需要在每一次访问我们的网站时更改用户设置。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 当您使用网页浏览使用我们的产品和/或服务时,您可以选择在浏览器的设置中清除Cookie数据,大部分浏览器均为用户提供了该等功能。但请您知悉,当您选择清除后,可能无法使用由我们提供的依赖于Cookie的功能或服务。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 三、我们如何共享、转让和披露您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (一) 共享 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 除下列情形外,我们不会与任何其他第三方共享您的个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 1. 在获得您的明确同意或授权或您主动选择的情况下共享。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"2. 在法定情形下的共享。"),e.createTextVNode("我们可能会根据法律法规规定、诉讼争议解决需要,或按行政、司法机关依法提出的要求,对外共享您的个人信息。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"3. 统一账号体系下的共享。"),e.createTextVNode("为便于我们基于统一账号体系为您带来标准化的服务体验、实现安全风控及客户服务之需要,您可以使用NU护理单元账号登录适用统一账号体系下的关联应用产品。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"4. 与合作伙伴共享。"),e.createTextVNode("您授权并同意我们可能委托合作伙伴为您提供某些服务或代表我们履行职能,我们仅会出于本隐私信息保护政策声明的合法、正当、必要、特定、明确的目的共享您的信息。我们将通过协议约束我们的合作伙伴只能接触到为其履行职责所需信息,要求其履行严格的保密和与风险相适应的安全措施来处理您的个人信息、包括但不限于数据保护协议或条款、承诺函等,且不得将您的个人信息用于其他任何目的。如超出共享目的使用您个人信息,我们将要求其另行遵循您的明确同意。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 5. 安全运营。我们将部分个人信息提供给支持我们业务的供应商、服务提供商和其他合作伙伴,以提供技术基础设施服务、分析用户使用方式、支付便利或进行学术研究和调查,进行Bug或者崩溃统计、提升登录体验,实现网关取号。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 6. 商业推广。为了您能更方便地了解和触达我们的资讯、产品/服务促销等信息,我们会向某些第三方网站和应用程序提供"),e.createElementVNode("text",{style:{"font-weight":"600"}},"加密后的设备信息"),e.createTextVNode(",进而在第三方平台为您提供我们的上述市场推广信息,并衡量优化有关我们产品和/或服务的市场推广效果。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 7. 留资广告。当第三方合作伙伴使用我们提供的技术服务向您提供商业信息或其他服务时,经取得您的授权同意,我们将基于第三方合作伙伴的委托处理您主动填写或提供的个人信息,请以相应页面内的信息收集使用提示文本为准。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"请您知悉,该等情形下,第三方合作伙伴为个人信息处理者。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 请您放心,除得到您的明确同意,我们不会将可以联系或识别您身份的个人信息与授权合作伙伴共享,我们将能够识别您身份的个人信息进行去标识化处理,以便授权合作伙伴无法识别您的具体身份。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" NU护理单元产品中包含我们的合作伙伴提供的SDK插件。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"当您在NU护理单元中使用该授权合作伙伴提供的相关服务,该等服务插件将收集和处理您的相关个人信息,详见附件:《NU护理单元与第三方共享个人信息清单》,我们强烈建议您在使用在使用我们的产品和/或服务前先行查看并了解其隐私条款。"),e.createTextVNode("我们会对合作伙伴获取有关信息的应用程序接口(API)、软件工具开发包(SDK)进行严格的安全检测,审慎评估服务提供商使用您个人信息的目的,并与合作伙伴通过签署协议的方式约定严格的数据保护措施,要求其按照我们的委托目的、服务说明以及其他任何相关的保密和安全措施来处理个人信息。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (二) 转让、公开披露 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们不会将您的个人信息转让给任何公司、组织和个人,但以下情况除外: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1. 在获取您明确同意的情况下转让; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2. 在NU护理单元及其关联公司发生重组、合并、分立、收购、资产出售或破产清算情形或其他类似情形时,如涉及到个人信息转让,我们将要求受让方采用与本政策相同或更高的标准和要求进行处理和保护,否则我们将要求受让方重新向您征求同意。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 除符合法律法规的规定进行公开披露或获得您单独同意外,我们不会公开披露您未自行公开或者其他未合法公开的个人信息。且在我们公开披露您的个人信息前会进行个人信息保护影响评估,并采用符合行业内标准的安全保护措施进行处理。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (三) 共享、转让、披露个人信息时事先征得授权同意的例外 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 以下情形中,共享、转让、公开披露您的个人信息无需事先征得您的授权同意: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1.与国家安全、国防安全有关的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2.与公共安全、公共卫生、重大公共利益有关的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3.与犯罪侦查、起诉、审判和判决执行有关的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 4.出于维护您或其他个人的生命、财产重大合法权益但又很难得到本人同意的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 5.您自行向社会公众公开的个人信息; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 6.从合法公开披露的信息中收集个人信息的,包括合法的新闻报道、政府信息公开渠道; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 7.履行其他履行法律法规规定的相关义务,如促成在线知识产权纠纷解决。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 根据法律规定,当共享、转让经采取技术措施处理的个人信息,使得数据接收方无法复原并重新识别特定个人身份时,我们将不会另行向您通知并征得您的同意。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 四、 我们如何存储您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (一) 存储地点 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们在中华人民共和国境内运营中收集和产生的个人信息,存储在中国境内。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 目前我们暂时不存在跨境存储您的个人信息或向境外提供您的个人信息的情况。如果确有必要进行数据的跨境传输,我们会单独向您明确告知(包括数据出境的目的、接收方、使用方式与范围、使用内容、安全保障措施、安全风险等),并征得您的明确授权同意,我们会确保数据接收方有充足的数据保护能力来保护您的个人信息,并严格按照适用法律法规的规定执行。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 针对以上情形,我们会确保依据本政策对您的个人信息提供足够的保护。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (二)存储期限 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们只会在达成本政策所述目的所需的最短期限内保留您的个人信息,除非法律法规有强制的存留要求,例如,根据《电子商务法》及配套法规的要求,您的订单类交易数据的保存时间自交易完成之日起不少于三年。我们判断前述期限的标准主要包括并以其中较长者为准: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1、完成与您相关的服务目的、维护相应服务及业务记录、应对您可能的查询或投诉; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2、保证我们为您提供服务的安全和质量; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3、您是否同意更长的留存期间; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 4、是否存在保留期限的其他特别约定。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 在您的个人信息超出保留期限后,我们会根据适用法律的要求删除或者匿名化处理您的个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (三) 删除和匿名化处理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如本平台服务决定停止运营时,我们将在相关服务停止运营后停止继续收集您的个人信息。我们将以公告形式将停止运营通知向您送达。对已持有您的个人信息,我们将进行删除或匿名化处理,除非法律法规另有规定。涉及未成年人个人信息的,我们会采取必要合理方式及时将停止运营的通知及时告知未成年人监护人。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 五、我们如何保护您的个人信息安全 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 为保障您的信息安全,我们努力采取各种符合业界标准的合理的物理、电子和管理方面的安全措施来保护您的信息,使您的信息不会被泄漏、毁损或者丢失。为确保您的个人信息安全,我们承诺将尽合理商业努力达到通行或者更高的安全水平: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (一) 技术安全防护 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们将采取的技术安全措施包括但不限于SSL、信息加密存储、数据中心的访问控制。我们会使用加密技术提高个人信息的安全性;使用受信赖的保护机制防止个人信息遭到恶意攻击。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (二) 安全体系保证 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们有行业先进的以数据为核心,围绕数据生命周期进行的数据安全管理体系,从组织建设、制度设计、人员管理、产品技术方面多维度提升整个系统的安全性。目前,NU护理单元已通过网络安全等级保护的三级测评。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (三) 人员安全管理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们对可能接触到您的信息的员工或外包人员采取了严格管理,包括但不限于根据不同岗位分配不同访问权限的控制机制,并签署保密协议,实时记录并掌握操作情况等。我们会举办安全和隐私保护培训课程,加强员工对于保护个人信息重要性的认识。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (四) 敏感信息及密码保护提示 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"1. 敏感个人信息保护:"),e.createTextVNode("您在使用我们服务时自愿共享甚至公开分享的信息,可能会涉及您或他人的个人信息甚至"),e.createElementVNode("text",{style:{"font-weight":"600"}},"敏感个人信息,例如您上传的头像图片,您在评论、发弹幕时选择上传包含个人信息的图片。"),e.createTextVNode("请您更加谨慎地考虑,是否在使用我们的服务时共享甚至公开分享相关信息。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"2. 您的账户均有安全保护功能,请妥善保管您的账户及密码信息。"),e.createTextVNode("我们将通过向其它服务器备份、对用户密码进行加密以及其他安全措施确保您的信息不丢失,不被滥用和变造。此外,请您尽量使用"),e.createElementVNode("text",{style:{"font-weight":"600"}},"复杂密码"),e.createTextVNode(",协助我们保证您的账号安全。我们将尽力保障您发送给我们的任何信息的安全性。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"但请您知悉,互联网并非绝对安全的环境。"),e.createTextVNode("尽管有前述安全措施,但同时也请您理解在网络上不存在“完善的安全措施”。故请您妥善保护自己的个人信息,仅在必要的情形下向他人提供。如您发现自己的个人信息泄露,尤其是您的账户及密码发生泄露,请您立即联络我们客服,以便我们采取相应措施。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (五) 信息安全事件处理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 在不幸发生个人信息安全事件时,我们将按照法律法规的要求向您告知:安全事件的基本情况和可能的影响、我们已采取或将要采取的处置措施、您可自主防范和降低风险的建议、对您的补救措施。事件相关情况我们将以邮件、电话、推送通知、短消息的方式告知您,难以逐一告知个人信息主体时,我们会采取合理、有效的方式发布公告。同时,我们还将按照监管部门要求,上报个人信息安全事件的处置情况。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 六、 我们如何保护未成年人的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 若您是未满18周岁的未成年人,您应在您的监护人监护、指导下并获得监护人同意的情况下,认真阅读并同意本政策后,方可使用我们的服务或向我们提供信息。若您未取得监护人的同意,监护人可以通过联系本政策第九节中提供的联系方式通知我们处理相关账号,我们有权对相关账号的功能、使用进行限制,包括但不限于浏览、发布信息、互动交流等功能。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 我们非常重视对未成年人的个人信息保护,未成年用户在填写个人信息时,请加强个人保护意识并谨慎对待,并应在取得监护人的同意以及在监护人指导下正确使用我们提供的产品及相关服务。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 未成年人用户及其监护人理解并确认,如您违反法律法规、本政策内容,则您及您的监护人应依照法律规定承担因此而可能导致的全部法律责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 我们在应用内专门为未成年人提供了青少年模式,监护人应为未成年人选择使用青少年模式。同时,我们为14周岁以下的儿童制定了专门的隐私保护政策,如您为儿童,我们要求您请您的父母或其他监护人仔细阅读本隐私信息保护政策及《儿童隐私政策》,并在征得您的父母或其他监护人明确同意的前提下使用我们的服务或向我们提供信息。对于经父母或其他监护人同意使用我们的产品或服务而收集儿童个人信息的情况,我们只会在法律法规允许、父母或监护人明确同意或者保护未成年人所必要的情况下使用、共享、转让或披露此信息。如您的父母或其他监护人不同意您按照本政策使用我们的服务或向我们提供信息,请立即终止使用我们的服务并及时通知我们,以便我们采取相应的措施,如果监护人发现我们在未获监护人同意的情况下收集了未成年人的个人信息,可通过第九节中的联系方式与我们联系,我们会设法尽快删除相关数据。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 未成年人个人信息的保护将同样适用于严格的个人信息访问权限控制制度和个人信息处理记录与管控措施我们始终遵循最小够用的授权原则,采取相应技术措施以尽可能避免未成年人个人信息被违法复制、下载。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们已制定的个人信息安全事件应急预案将同样适用于对未成年人个人信息的保护。我们定期组织内部相关人员进行应急响应培训和应急演练,使其掌握岗位职责和应急处置策略和规程。在不幸发生未成年人个人信息安全事件后,我们将按照法律法规的要求,及时向未成年人及其监护人告知:安全事件的基本情况和可能的影响、我们已采取或将要采取的处置措施、未成年人及其监护人可自主防范和降低风险的建议、对未成年人及其监护人的补救措施。我们将及时将事件相关情况以APP推送通知、发送邮件/短消息的方式告知未成年人及其监护人。难以逐一告知时,我们会采取合理、有效的方式发布相关警示信息。同时,我们还将按照监管部门要求,主动上报未成年人个人信息安全事件的处置情况。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 若您是未成年人的父母或其他监护人,请您关注您监护的未成年人是否是在取得您的授权同意之后使用我们的服务。如您对您所监护的未成年人的个人信息有疑问,请通过第九节中的联系方式与我们联系。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 七、 您如何行使您的个人信息权利 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们通过提供便捷的方法,让您可以访问、更正及删除自己的账户信息或使用我们的服务时您提供的其他个人信息。您可以通过如下方式访问及管理您的个人信息,但我们在不同的版本或操作系统中提供的管理方式路径可能存在差异,请以实际为准。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (一) 访问您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您有权访问您的个人信息,但法律法规规定的例外情况除外。您可以通过以下方式自行访问您的个人信息: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 账户信息——如果您希望访问或编辑您的账户中的账户信息、更改您的密码或关闭您的账户,您可以登录账号通过“账号管理”执行此类操作;例如您可以登录PC端或APP端“我的-设置-账号与安全”查询、修改自己的账号绑定情况、设置/修改密码、查看最近登录设备。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 资料信息——如果您希望访问或编辑您的账户中的个人资料,您可以通过在App端“我的-头像-编辑资料”来添加、修改、删除您的头像、昵称、性别、生日、地区、声音签名、简介。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如果您无法通过上述方式访问您的个人信息,您可以随时通过本政策披露的联系方式联系我们,我们将在十五个工作日内回复您的请求。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (二) 更正或补充您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 当您发现我们处理的关于您的个人信息有错误时,您有权要求我们做出更正或补充。您可以通过“(一)访问您的个人信息”中列明的方式提出更正或补充申请。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如果您无法通过上述方式访问您的个人信息或者其他可能目前无法向您提供在线自行更正/修改服务的,您可以随时通过本政策披露的联系方式联系我们,我们将在十五个工作日内回复您的请求。经过对您身份的验证,且更正/修改不影响信息的客观性和准确性的情况下,您有权对错误或不完整的信息作出更正或修改,但法律法规另有规定的除外。出于安全性和身份识别的考虑,您可能无法修改注册时提交的某些初始注册信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (三) 删除您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您有权通过“(一)访问您的个人信息”中列明的方式对已经填写的信息进行删除。同时,在以下情形中,您可以通过本政策披露的联系方式联系我们,向我们提出删除个人信息的请求,我们将在十五个工作日内回复您的请求: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1.如果我们处理个人信息的行为违反法律法规; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2.如果我们收集、使用您的个人信息,却未征得您的明确同意; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3.如果我们处理个人信息的行为严重违反与您的约定; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 4.如果您不再使用我们的产品或服务,或您主动注销账号; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 5.如果我们永久不再为您提供产品或服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 若我们决定响应您的删除请求,我们还将同时尽可能通知从我们处获得您的个人信息的主体,要求其及时删除,除非法律法规另有规定,例如您所提供的订单类交易数据,将会基于法律法规要求至少保留3年,或这些主体获得您的独立授权。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (四) 个人信息副本获取 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如您需要您的个人信息的副本,您可以通过本隐私政策文末提供的方式联系我们,在核实您的身份后,我们将向您提供您在我们的服务中的个人信息副本(包括基本资料、身份信息),但法律法规另有规定的或本政策另有约定的除外。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (五) 改变您授权同意的范围 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您可在您的设备系统设置-应用-APP名称-权限中逐项查看您授权同意权限的状态,或在NU护理单元App内通过“我的-设置-隐私管理-系统权限”查看并可自行决定这些权限随时的开启或关闭。对于不同功能服务中个人信息的收集和使用,您也可以与NU护理单元客服联系给予或收回您的授权同意,我们将在十五个工作日内回复您的请求。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"当您撤回同意后,我们将不再处理相应的个人信息,我们将无法继续为您提供撤回同意或授权所对应的服务。但您撤回同意的决定,不会影响此前基于您的授权而开展的个人信息处理。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (六) 注销账户 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 当您注销账号后,您将无法再以该账号登录和使用我们的产品与服务;且该账号在使用我们的产品与服务期间已产生的但未消耗完毕的权益及未来的预期利益等全部权益将被清除;该账号下的内容、信息、数据、记录等将会被删除或匿名化处理,但法律法规另有规定或监管部门另有要求的除外;您的账号注销完成后,将无法恢复。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如您在谨慎考虑后仍决定注销您的账号的,您可以在您使用的我们的产品与/或服务的相关功能设置页面或根据操作指引向我们提交注销申请,例如,您可以通过“我的-设置-账号与安全-注销账户”自行在“注销账户”页面提交账户注销申请。若未能申请成功,您也可联系NU护理单元客服,我们将在十五个工作日内回复您的请求。在您主动注销账户之后,我们将停止为您提供产品或服务。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (七) 限制自动化决策 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 在NU护理单元App端,您可以通过“我的-设置-隐私管理-个性化内容推荐/个性化广告推荐”选择是否使用我们提供的个性化服务。此外,在某些业务功能中,经向您告知并取得同意后,我们可能仅依据信息系统、算法在内的非人工自动决策机制做出决定。如果您认为这些决定显著影响您的合法权益,您有权通过本政策披露的联系方式要求我们做出解释,我们也将在十五个工作日内回复您的请求,为您提供申诉方法。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (八) 退订 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如您发现收到了不属于您主动搜索、浏览的视频内容和产品、服务信息推送。如您不希望接收上述信息,可通过原路径进行退订,例如短信推送可以直接回复相关的退订口令。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (九) 投诉 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您有权通过本政策披露的联系方式联系我们进行投诉。我们将在收到您投诉之日起十五个工作日内做出答复。如果您对我们的答复不满意,特别是我们的个人信息处理行为损害了您的合法权益,您还可以向网信、公安、工商等监管部门进行投诉或举报,或向有管辖权法院提起诉讼,但我们希望您能够首先就相关问题与我们取得联系。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (十) 响应您的上述请求 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 为保障安全,您可能需要提供书面请求,或以其他方式证明您的身份。我们可能会先要求您验证自己的身份,然后再处理您的请求。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 对于您合理的请求,我们原则上不收取费用。但对多次重复、超出合理限度的请求,我们将视情收取一定成本费用。对于那些无端重复、需要过多技术手段(例如需要开发新系统或从根本上改变现行管理)、给他人合法权益带来风险或者非常不切实际的请求,我们可能会予以拒绝。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 此外,如果您的请求直接涉及国家安全、国防安全、公共卫生、犯罪侦查等和公共利益直接相关的事由,或者可能导致您或者其他个人、组织的合法权益受到严重损害,或者基于NU护理单元履行法律法规规定的义务相关的情形,或者有充分证据标明您存在主观恶意或滥用权利,或者响应您的请求将导致您或者其他个人、组织的合法权益受到严重损害的,我们将无法响应您的请求。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 如果您无法通过上述方式访问您的个人信息,您都可以通过第九节中的联系方式与我们取得联系,我们将在十五个工作日内回复您的权利响应请求。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 七:您如何行使您的个人信息权利 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您理解,您与NU护理单元签署的本政策所列明的条款,并不能完全涵盖您与NU护理单元所有的关于个人信息的权利和义务。因此,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元公布其他声明(包括但不限于页面提示、新签署文件、弹窗、网站公告或站内信等)、各形式规则均视为本政策之补充条款,为本政策不可分割的组成部分,与本政策具有同等法律效力。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 未经您明确同意,我们不会限制您按照本政策所应享有的权利。我们将在NU护理单元专门链接上发布对隐私权政策所做的任何变更和更新。对于重大变更,我们还会提供更为显著的通知(包括通过平台公示通知甚至向您进行弹窗提示)。本政策所指的重大变更包括但不限于: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1.我们的服务模式发生重大变化。如处理个人信息的目的、处理的个人信息类型、个人信息的使用方式; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2.我们在控制权方面发生重大变化。如并购重组引起的所有者变更; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3.个人信息共享、转让或公开披露的主要对象发生变化; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 4.您参与个人信息处理方面的权利及其行使方式发生重大变化; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 5.我们负责处理个人信息安全的责任部门、联络方式及投诉渠道发生变化时。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},' 为了您能及时接收到通知,建议您在您个人的联系方式更新时及时通知我们。如您在本政策更新生效后继续使用我们的服务,即代表您已充分阅读、理解并接受更新后的政策并愿意受更新后的政策约束。我们鼓励您在每次使用我们服务时都查阅本政策。您可以在NU护理单元APP通过"首页-我的-设置-隐私政策"中查看本政策。 '),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 八、如何联系我们 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您可以通过以下方式与我们联系,我们将在十五个工作日内回复您的请求: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们设立了个人信息保护专职部门,如您对NU护理单元隐私信息保护政策、儿童个人信息有任何疑问、意见或建议,或有关于网络信息安全的投诉和举报,您可通过以下方式与我们取得联系: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们收件地址:长春市经济开发区长吉南线以东、吉林大路以南东方广场中意国际大厦B座1431号; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 联系人:NU护理单元客服部 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 联系方式:18043530712 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 联系邮箱:service@blxinchuang.com "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本政策签订地为中华人民共和国吉林省长春市,因本政策生效、履行、解释及使用NU护理单元产品和/或服务而产生或与本政策相关的一切争议、权利主张或其他事项,均适用中华人民共和国法律(为本政策之目的,港澳台地区法律不在此列)。您与NU护理单元及其关联公司或NU护理单元发生的一切争议,应友好协商,如协商不成的,您同意双方通过将争议提交本政策签订地有管辖权的法院解决。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 请您再次确认您已全部阅读并充分理解上述条款。 ")])])}],["__scopeId","data-v-842c1160"]]),v="https://www.focusnu.com/opeapi",p=e=>{let t=e.url,a=e.method||"get",i=e.data||{},r={"X-Access-Token":uni.getStorageSync("token")||"","Content-Type":"application/json;charset=UTF-8",Authorization:"Basic c2FiZXI6c2FiZXJfc2VjcmV0",...e.header};return new Promise(((e,n)=>{uni.request({url:/^https?:\/\//.test(t)?t:v+t,method:a,header:r,data:i,timeout:5e3,success(a){const r=a;if(200==r.statusCode)e(r.data);else switch(l("log","at request/index.js:34","http",/^https?:\/\//.test(t)?t:v+t),l("log","at request/index.js:35","res",a),l("log","at request/index.js:36","data",i),r.statusCode){case 401:uni.showModal({title:"提示",content:"登录过期",showCancel:!1,success(){uni.clearStorageSync(),setTimeout((()=>{uni.navigateTo({url:"/pages/login/login"})}),1e3)}});break;case 404:uni.showToast({title:"请求地址不存在...",duration:2e3});break;default:uni.showToast({title:"请重试...",duration:2e3})}},fail(e){l("log","at request/index.js:69",e),-1!==e.errMsg.indexOf("request:fail")?uni.showToast({title:"网络异常",icon:"error",duration:2e3}):uni.showToast({title:"未知异常",duration:2e3}),n(e)},complete(){uni.hideLoading(),uni.hideToast()}})})).catch((()=>{}))},g=s({__name:"huakuai",emits:["success"],setup(t,{emit:a}){const i=a,r=100,n=e.ref(400),o=e.ref(400),c=e.ref(0),s=e.ref(0),d=e.ref(0),m=e.ref(!1),u=e.ref(0),v=e.ref(""),p=e.getCurrentInstance();const g=`path('${w=r,`\n M20 0\n h${w/3-20}\n a20 20 0 0 1 0 40\n h${w/3}\n a20 20 0 0 0 0 -40\n h${w/3-20}\n v${w/3-20}\n a20 20 0 0 1 -40 0\n v${w/3}\n a20 20 0 0 0 40 0\n v${w/3-20}\n h-${w/3-20}\n a20 20 0 0 1 0 -40\n h-${w/3}\n a20 20 0 0 0 0 40\n h-${w/3-20}\n z\n `}')`;var w;function h(){e.nextTick((()=>{p?uni.createSelectorQuery().in(p.proxy).select(".bg-image").boundingClientRect((e=>{e?(n.value=2*e.width,o.value=2*e.height,c.value=Math.random()*(n.value-200)+r,c.value<100&&(c.value=100),c.value>400&&(c.value=400),s.value=o.value/2,d.value=0):l("error","at component/public/huakuai.vue:115","无法获取图片尺寸")})).exec():l("error","at component/public/huakuai.vue:107","无法获取组件实例")}))}function f(e){m.value=!0,u.value=2*e.touches[0].clientX}function N(e){if(!m.value)return;let t=2*e.touches[0].clientX-u.value;t=Math.max(0,Math.min(t,n.value-r)),d.value=t}function y(){m.value=!1,Math.abs(d.value+47-c.value)<20?(uni.showToast({title:"验证成功",icon:"none",duration:2e3}),i("success")):(d.value=0,uni.showToast({title:"验证失败",icon:"none",duration:2e3}))}return e.onMounted((()=>{const e=["https://www.focusnu.com/media/directive/login/0.png","https://www.focusnu.com/media/directive/login/1.png","https://www.focusnu.com/media/directive/login/2.png"];v.value=e[Math.floor(Math.random()*e.length)],l("log","at component/public/huakuai.vue:172","加载图片:",v.value)})),(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"captcha-container",id:"container"},[e.createElementVNode("view",{class:"font-title"},"请通过滑块验证"),e.createElementVNode("view",{class:"captcha-image",style:{position:"relative",width:"100%",height:"400rpx",overflow:"hidden"}},[e.createElementVNode("image",{src:v.value,class:"bg-image",mode:"widthFix",onLoad:h},null,40,["src"]),e.createElementVNode("view",{class:"overlay",style:e.normalizeStyle({width:n.value+"rpx",height:o.value+"rpx"})},[e.createElementVNode("view",{class:"hole",style:e.normalizeStyle({top:s.value+"rpx",left:c.value+"rpx",width:"100rpx",height:"100rpx",clipPath:g,transform:"translate(-50%, -50%)",backgroundColor:"rgba(0,0,0,0.6)"})},null,4),e.createElementVNode("view",{class:"piece",style:e.normalizeStyle({top:s.value+"rpx",left:d.value+47+"rpx",width:"100rpx",height:"100rpx",backgroundImage:`url(${v.value})`,backgroundSize:n.value+"rpx "+o.value+"rpx",backgroundPosition:`-${c.value-45}rpx -${s.value-50}rpx`,clipPath:g,transform:"translate(-50%, -50%)"})},null,4)],4)]),e.createElementVNode("view",{class:"slider-bar"},[e.createElementVNode("view",{class:"slider-bar-font"},"向右滑动滑块填充拼图"),e.createElementVNode("view",{class:"slider-button",ref:"btn",onTouchstart:f,onTouchmove:N,onTouchend:y,style:e.normalizeStyle({left:d.value+"rpx",maxWidth:n.value-r+"rpx"})},[e.createElementVNode("image",{src:"https://www.focusnu.com/media/directive/login/right.png",style:{width:"50rpx",height:"50rpx"},mode:"widthFix"})],36)])]))}},[["__scopeId","data-v-ca7ea5fb"]]),w=s(e.defineComponent({__name:"login",setup(a){const i=e.ref(null),n=e.ref(!1),s=e.ref(!1),v=e.reactive({username:"",password:"",captcha:"",checkKey:0}),w=e.reactive({oldpassword:"",newpassword:""}),h=e.computed((()=>{return v.password&&("string"==typeof(e=v.username)&&11===e.length);var e})),f=e.ref(!1);function N(){T.value=!1,n.value=!0,B()}function y(){f.value=!1,uni.setStorageSync("appWgtVersion",uni.getSystemInfoSync().appWgtVersion)}function x(){plus.runtime.quit()}const E=e=>{uni.navigateTo({url:e})},V=e.ref(!1),b=e.ref(0),k=()=>{var e;/^\d{11}$/.test(v.username)?(e=v.username,p({url:`/api/pad/loginApi/getAdvisoryInfo?tel=${encodeURIComponent(e)}`,method:"get"})).then((e=>{null!==e.result&&e.result.serverUrl?(uni.setStorageSync("serverUrl",e.result.serverUrl),l("log","at pages/login/login.vue:195","url",e.result.serverUrl),b.value=Date.now(),(e=>p({url:`${uni.getStorageSync("serverUrl")}/sys/randomCode/${e}`,method:"get"}))(b.value).then((e=>{v.captcha=e.message,V.value=!0}))):(uni.setStorageSync("serverUrl",""),uni.showToast({title:"该手机号未绑定机构",icon:"none",duration:2e3}),V.value=!1)})):v.username&&uni.showToast({title:"手机号不足11位",icon:"none",duration:2e3})},T=e.ref(!1),D=e.ref(!1),C=e.ref(!1),S=e.ref(!1),B=()=>{n.value?s.value=!0:T.value=!0},z=e.ref(!1),_=()=>{z.value||(2===I.value?setTimeout((()=>{E("/pages/watch/index")}),500):I.value++,z.value=!0)},I=e.ref(0),U=()=>{var e;v.checkKey=b.value,s.value=!1,(e=v,p({url:`${uni.getStorageSync("serverUrl")}/sys/login`,method:"post",data:e})).then((e=>{e.success?(uni.showToast({title:e.message,icon:"none",duration:500}),uni.setStorageSync("token",e.result.token),uni.setStorageSync("username",v.username),uni.setStorageSync("realname",e.result.userInfo.realname),2===I.value?setTimeout((()=>{E("/pages/watch/index")}),500):I.value++):uni.showToast({title:e.message,icon:"none",duration:2e3})}))};return o((()=>{var e,a;uni.getStorageSync("appWgtVersion")!=uni.getSystemInfoSync().appWgtVersion&&(f.value=!0),uni.getStorageSync("token")&&1!==uni.getStorageSync("token")&&(2===I.value?setTimeout((()=>{E("/pages/watch/index")}),500):I.value++),t("MonitorModule").initSMBCloudSDK(),e=t("MonitorModule"),a={userName:"admin",password:"Bl20230518",serverAddress:"121.36.88.64",port:8888},e.cloudLoginIn(a,(e=>{l("log","at pages/login/login.vue:322","?????",e),2===I.value?setTimeout((()=>{E("/pages/watch/index")}),500):I.value++}))})),r((()=>{var e;null==(e=i.value)||e.check_update()})),(t,l)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("view",{class:"backgroundContainer"},[e.createElementVNode("image",{class:"title-img",src:"/static/index/superNu.png"}),e.createElementVNode("view",{class:"input-father"},[e.createElementVNode("view",{class:"add"},"+86"),e.createElementVNode("view",{class:"shu"}),e.withDirectives(e.createElementVNode("input",{style:{"font-size":"27rpx",height:"350rpx"},type:"number","onUpdate:modelValue":l[0]||(l[0]=e=>v.username=e),maxlength:"11",placeholder:"请输入手机号",onBlur:k},null,544),[[e.vModelText,v.username]])]),e.createElementVNode("view",{class:"input-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:"",type:"text","onUpdate:modelValue":l[1]||(l[1]=e=>v.password=e),maxlength:"15",placeholder:"请输入密码"},null,512),[[e.vModelText,v.password]])]),e.withDirectives(e.createElementVNode("view",{class:"input-father-gray"}," 验证并登录 ",512),[[e.vShow,!h.value||!V.value]]),e.withDirectives(e.createElementVNode("view",{class:"input-father-blue",onClick:l[2]||(l[2]=e=>B())}," 验证并登录 ",512),[[e.vShow,h.value&&V.value]]),e.createElementVNode("view",{class:"under-container-title"},[e.createElementVNode("view",{class:e.normalizeClass(n.value?"radio-circle-target":"radio-circle"),onClick:l[3]||(l[3]=e=>n.value=!n.value)},null,2),e.createElementVNode("view",{style:{"margin-left":"17rpx"},class:"radio-circle-font",onClick:l[4]||(l[4]=e=>n.value=!n.value)},"我已阅读并同意"),e.createElementVNode("view",{class:"radio-circle-blue",onClick:l[5]||(l[5]=e=>{C.value=!0,S.value=!0})}," 《用户协议》 "),e.createElementVNode("view",{class:"radio-circle-blue",onClick:l[6]||(l[6]=e=>{C.value=!0,S.value=!1})}," 《隐私政策》 ")])]),f.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-wrapper",style:{"z-index":"999"}},[e.createElementVNode("view",{class:"mask"}),e.createElementVNode("view",{class:"box"},[e.createElementVNode("view",{class:"box-title"}," 服务条款和隐私保护提示 "),e.createElementVNode("view",{class:"font-father"},[e.createElementVNode("view",{class:""}," 欢迎使用护理单元app! "),e.createElementVNode("view",{style:{"text-indent":"2em"}},[e.createTextVNode(" 我们将通过"),e.createElementVNode("text",{class:"text-blue",onClick:l[7]||(l[7]=e=>{C.value=!0,S.value=!0})},"《用户协议》"),e.createTextVNode("和"),e.createElementVNode("text",{class:"text-blue",onClick:l[8]||(l[8]=e=>{C.value=!0,S.value=!1})},"《隐私政策》"),e.createTextVNode(",帮助您了解我们为您提供的服务、我们如何处理个人信息以及您享有的权利。我们会严格按照相关法律法规要求,采取各种安全措施来保护您的个人信息。 ")]),e.createElementVNode("view",{style:{margin:"30rpx 0"}}," 点击“同意”按钮,表示您已知情并同意以上协议和以下约定。 ")]),e.createElementVNode("view",{class:"gray-box-bgc"},[e.createElementVNode("scroll-view",{style:{width:"100%",height:"100%"},"scroll-y":"","show-scrollbar":!0},[e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 1、服务条款与隐私政策确认:登录即表示您已阅读并同意《NU 护理单元用户服务协议》及《NU 护理单元隐私信息保护政策》,其中包含对您权利义务、个人信息处理的详细说明。 "),e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 2、账号使用规范:账号仅限本人使用,禁止恶意注册、转借或泄露。请妥善保管账号密码,因保管不善导致的账号安全问题,由您自行承担责任。 "),e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 3、内容发布责任:您在平台发布的内容需遵守法律法规,不得包含不良信息或侵犯他人权益的内容。发布利用新技术制作的非真实信息时,须显著标识。 "),e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 4、个人信息保护:我们将依法收集、使用您的个人信息(如手机号用于注册登录),您可通过 “我的 - 设置 - 隐私管理” 查看、修改授权,也可申请注销账号(注销后相关数据将按规定处理)。 "),e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 5、未成年人使用提示:未满 18 周岁用户需在监护人同意后使用,监护人可联系客服人员处理未成年人账号相关事宜,我们将严格保护未成年人信息。 ")])]),e.createElementVNode("view",{class:"blue-button",onClick:y},"同意"),e.createElementVNode("view",{class:"white-button",onClick:x},"不同意")])])):e.createCommentVNode("",!0),C.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"popup-any"},[e.createElementVNode("view",{class:"mask",onClick:l[9]||(l[9]=e=>C.value=!1)}),e.createElementVNode("view",{class:"box-any"},[e.createElementVNode("view",{class:"title-left"},[e.createElementVNode("image",{class:"back-img",src:c,onClick:l[10]||(l[10]=e=>C.value=!1)}),S.value?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"back-font"},"NU护理单元隐私信息保护政策")),S.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"back-font"},"NU护理单元用户服务协议")):e.createCommentVNode("",!0)]),S.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(u,{key:0})),S.value?(e.openBlock(),e.createBlock(m,{key:1})):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0),T.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"popup-wrapper"},[e.createElementVNode("view",{class:"mask",onClick:l[11]||(l[11]=e=>T.value=!1)}),e.createElementVNode("view",{class:"box-small"},[e.createElementVNode("view",{class:"box-title",style:{"margin-top":"30rpx"}}," 请阅读并同意以下条款 "),e.createElementVNode("view",{class:"font-father"},[e.createElementVNode("text",{class:"text-blue",onClick:l[12]||(l[12]=e=>{C.value=!0,S.value=!0})},"《用户协议》"),e.createElementVNode("text",{class:"text-blue",onClick:l[13]||(l[13]=e=>{C.value=!0,S.value=!1})},"《隐私政策》")]),e.createElementVNode("view",{class:"blue-button",onClick:N},"同意并继续")])])):e.createCommentVNode("",!0),D.value?(e.openBlock(),e.createElementBlock("view",{key:3,class:"popup-wrapper"},[e.createElementVNode("view",{class:"mask"}),e.createElementVNode("view",{class:"box-change"},[e.createElementVNode("view",{class:"box-title"}," 修改账户登录密码 "),e.createElementVNode("view",{class:"input-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":l[14]||(l[14]=e=>w.oldpassword=e),maxlength:"15",placeholder:"请输入新密码"},null,512),[[e.vModelText,w.oldpassword]])]),e.createElementVNode("view",{class:"input-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":l[15]||(l[15]=e=>w.newpassword=e),maxlength:"15",placeholder:"请再次输入新密码"},null,512),[[e.vModelText,w.newpassword]])]),e.createElementVNode("view",{class:"blue-button",style:{"margin-top":"80rpx"},onClick:l[16]||(l[16]=e=>D.value=!1)},"确定")])])):e.createCommentVNode("",!0),e.createVNode(d,{ref_key:"zyupgrade",ref:i,noticeflag:!0,theme:"blue",h5preview:!1,oldversion:"1.0.0",appstoreflag:!0,autocheckupdate:!0,onShowupdateTips:_},null,512),s.value?(e.openBlock(),e.createElementBlock("view",{key:4,class:"bg-mask",onClick:l[18]||(l[18]=e=>s.value=!1)},[e.createVNode(g,{onClick:l[17]||(l[17]=e.withModifiers((()=>{}),["stop"])),onSuccess:U})])):e.createCommentVNode("",!0)],64))}}),[["__scopeId","data-v-e979d453"]]);const h=s({data:()=>({title:"Hello"}),onLoad(){t("globalEvent").addEventListener("myEvent",(function(e){l("log","at pages/denglu.vue:20","myEvent"+JSON.stringify(e)),uni.showToast({title:"myEvent"+JSON.stringify(e),duration:2e3})}))},methods:{testAsyncFunc(){t("MonitorModule").gotoNativePage({deviceId:"4",deviceName:"sdfsfsdf"})},jumptonve(){uni.navigateTo({url:"/pages/ceshianzhuo"})},init(e){t("MonitorModule").initSMBCloudSDK()},login(e){t("MonitorModule").cloudLoginIn({userName:"admin",password:"Bl20230518",serverAddress:"121.36.88.64",port:8888},(e=>{l("log","at pages/denglu.vue:58","loginResult",e.code),uni.showToast({title:"操作成功",duration:2e3})}))},logout(e){t("MonitorModule").cloudLoginOut((e=>{l("log","at pages/denglu.vue:68","loginResult",e.code)}))}}},[["render",function(t,l,a,i,r,n){return e.openBlock(),e.createElementBlock("view",{class:"content"},[e.createElementVNode("button",{class:"typebutton",type:"primary",onClick:l[0]||(l[0]=(...e)=>n.init&&n.init(...e))},"初始化sdk"),e.createElementVNode("button",{class:"typebutton",type:"primary",onClick:l[1]||(l[1]=(...e)=>n.login&&n.login(...e))},"登陆"),e.createElementVNode("button",{class:"typebutton",type:"primary",onClick:l[2]||(l[2]=(...e)=>n.logout&&n.logout(...e))},"退出登陆"),e.createElementVNode("button",{class:"typebutton",type:"primary",onClick:l[3]||(l[3]=(...e)=>n.jumptonve&&n.jumptonve(...e))},"跳到nvue")])}]]),f=s(e.defineComponent({__name:"index",setup(t){e.ref(!1);const l=e.ref(null),a=[{name:"初始化",url:"/pages/Initialization/index"},{name:"护理单元",url:"/pages/Nursing/index"},{name:"仓库",url:"/pages/Warehousing/index"}];return o((e=>{})),r((()=>{var e;null==(e=l.value)||e.check_update()})),(t,i)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("view",{class:"backgroundContainer"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(a,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"menuCard",onClick:e=>{return l=t.url,void uni.navigateTo({url:l});var l}},e.toDisplayString(t.name),9,["onClick"])]))),64))]),e.createVNode(d,{ref_key:"zyupgrade",ref:l,noticeflag:!0,theme:"blue",h5preview:!1,oldversion:"1.0.0",appstoreflag:!0,autocheckupdate:!0},null,512)],64))}}),[["__scopeId","data-v-bd6792ac"]]),N="/static/index/oldman.png",y="/static/index/customer.png",x=s({__name:"Drawer",props:{widNumber:{type:Number,default:85},canclose:{type:Boolean,default:!0}},setup(t,{expose:l}){const a=e.ref(!1),i=t,r=e.computed((()=>({width:`${i.widNumber}%`})));function n(){i.canclose&&(a.value=!1)}return l({openDrawer:function(){a.value=!0},closeDrawer:function(){a.value=!1}}),(l,i)=>(e.openBlock(),e.createElementBlock("view",null,[e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(["overlay",{"overlay-show":a.value}]),onClick:n},null,2),[[e.vShow,a.value]]),e.createElementVNode("view",{class:e.normalizeClass(["drawer",{"drawer-open":a.value}]),style:e.normalizeStyle(r.value)},[e.createElementVNode("view",{class:"drawer-content"},[e.withDirectives(e.createElementVNode("view",{class:"drawer-content-circle",onClick:n},[e.createElementVNode("image",{class:"drawer-img",src:"/static/index/zuoyuan.png"})],512),[[e.vShow,a.value&&t.canclose]]),e.renderSlot(l.$slots,"default",{},void 0,!0)])],6)]))}},[["__scopeId","data-v-8cdafce2"]]),E="/static/index/teeth.png",V="/static/index/helpdo/xian.png",b=s(e.defineComponent({__name:"index",setup(t){const l=e=>{},a=e.ref(!1);e.ref(null);const i=e.ref(-1),r=e.ref(0),n=uni.createVideoContext("myVideo"),o=()=>{n.pause(),a.value=!1};e.computed((()=>{switch(c.value){case 0:return"0";case 1:return"calc(100% - 600rpx)";case 2:return"calc(100% - 120rpx)";default:return"100%"}}));const c=e.ref(0);return(t,n)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"转单执行")]),e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"downitems-father"},[e.createElementVNode("view",{class:"downitems-left"},[e.createElementVNode("view",{class:"downitems-left-mar"},[e.createElementVNode("image",{class:"downitems-left-img",src:E}),e.createElementVNode("view",{class:"downitems-left-father"},[e.createElementVNode("image",{class:"downitems-father-img",src:"/static/index/helpdo/zero.png"}),e.createElementVNode("view",{class:"downitems-father-font"},"清洁照料")]),e.createElementVNode("view",{class:"downitems-left-father"},[e.createElementVNode("image",{class:"downitems-father-img",src:"/static/index/helpdo/one.png"}),e.createElementVNode("view",{class:"downitems-father-font"},"四肢清洁")]),e.createElementVNode("view",{class:"downitems-left-father"},[e.createElementVNode("image",{class:"downitems-father-img",src:"/static/index/helpdo/two.png"}),e.createElementVNode("view",{class:"downitems-father-font-laba"},"协助清洁(四肢)"),e.createElementVNode("image",{class:"downitems-father-img-laba",src:"/static/index/helpdo/laba.png"})]),e.createElementVNode("view",{class:"downitems-left-father"},[e.createElementVNode("image",{class:"downitems-father-img",src:"/static/index/helpdo/three.png"}),e.createElementVNode("view",{class:"downitems-father-font-small"},"准备清水,一次性面巾,香皂,清洁后涂身体保湿乳。")]),e.createElementVNode("view",{class:"downitems-kuai",onClick:n[0]||(n[0]=e=>a.value=!0)},[e.createElementVNode("image",{class:"downitems-kuai-img",src:"/static/index/helpdo/video.png"})]),e.createElementVNode("view",{class:"downitems-says"}," 视频讲解 ")])]),e.createElementVNode("image",{class:"downitems-shu",src:V}),e.createElementVNode("view",{class:"downitems-center"},[e.createElementVNode("view",{class:"downitems-center-title"},[e.createElementVNode("view",{class:"downitems-center-title-gun"}),e.createElementVNode("view",{class:"downitems-center-title-font"},"转单原因"),e.createElementVNode("view",{class:"downitems-center-says"},[e.createElementVNode("view",{class:"downitems-center-father"},[e.createElementVNode("image",{class:"downitems-center-says-maike",src:"/static/index/helpdo/maike.png"})]),e.createElementVNode("view",{class:""},"语音输入")])]),e.createElementVNode("view",{class:"downitems-textarea"},[e.createElementVNode("textarea",{class:"custom-textarea",onBlur:l,placeholder:"请输入"},null,32)]),e.createElementVNode("view",{class:"downitems-center-title"},[e.createElementVNode("view",{class:"downitems-center-title-gun"}),e.createElementVNode("view",{class:"downitems-center-title-font"},"转单方式")]),e.createElementVNode("view",{class:"radio-circle-top-father"},[e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(r.value?"radio-circle":"radio-circle-target"),onClick:n[1]||(n[1]=e=>r.value=0)},null,2),e.createElementVNode("view",{class:"radio-font",onClick:n[2]||(n[2]=e=>r.value=0)},"重新派单")]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(r.value?"radio-circle-target":"radio-circle"),onClick:n[3]||(n[3]=e=>{r.value=1})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:n[4]||(n[4]=e=>r.value=1)},"定向派单")])]),e.createElementVNode("view",{class:"downitems-button"}," 确认 ")]),e.createElementVNode("image",{class:"downitems-shu",style:{transform:"rotate(180deg)","margin-left":"0rpx"},src:V}),e.createElementVNode("view",{class:"downitems-right"},[e.withDirectives(e.createElementVNode("view",{class:"downitems-all"},[e.createElementVNode("view",{class:"downitems-center-title"},[e.createElementVNode("view",{class:"downitems-center-title-gun"}),e.createElementVNode("view",{class:"downitems-center-title-font"},"重新派单")]),e.createElementVNode("view",{class:"downitems-all-font"}," 选择重新派单,平台自动将服务指令重新派发给其他员工,等待执行。 ")],512),[[e.vShow,!r.value]]),e.withDirectives(e.createElementVNode("view",{class:"downitems-all"},[e.createElementVNode("view",{class:"downitems-center-title"},[e.createElementVNode("view",{class:"downitems-center-title-gun"}),e.createElementVNode("view",{class:"downitems-center-title-font"},"定向派单")]),e.createElementVNode("view",{class:"downitems-all-font"}," 选择定向转单,请选择要执行服务指令的员工。 "),e.createElementVNode("view",{class:"downitems-card-all"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([0,1,2,3,4,5,6,7],((t,l)=>e.createElementVNode("view",{class:"downitems-card"},[e.createElementVNode("view",{class:e.normalizeClass(i.value===l?"downitems-card-one-target":"downitems-card-one"),onClick:e=>(e=>{i.value=e})(l)},[e.createElementVNode("view",{class:"downitems-card-father"},[e.createElementVNode("image",{class:"downitems-card-img",src:"/static/index/helpdo/people.png"})]),e.createElementVNode("view",{class:"downitems-card-font"}," 李金福 ")],10,["onClick"])]))),64))])],512),[[e.vShow,r.value]])])])]),e.withDirectives(e.createElementVNode("view",{class:"modal",onClick:o},[e.createElementVNode("view",{class:"modal-content",onClick:n[5]||(n[5]=e.withModifiers((()=>{}),["stop"]))})],512),[[e.vShow,a.value]])]))}}),[["__scopeId","data-v-6070efba"]]),k=s(e.defineComponent({__name:"index",props:{isshow:{type:Boolean,required:!0},darkFans:{type:Boolean,required:!0}},emits:["darkchange"],setup(t,{emit:l}){const a=e.ref(null),i=t,r=e.ref(!1),n=e.ref(!1),o=e.ref(!1),c=e.ref(!1),s=e.ref(!1),d=e.ref(!1),m=e.ref(""),u=e.ref(""),v=e.ref(""),p=e.ref([{url:"/static/index/undericons/alarm.png",targetUrl:"/static/index/undericons/alarmdark.png",name:"服务考核"},{url:"/static/index/undericons/linshitime.png",targetUrl:"/static/index/undericons/linshitimedark.png",name:"护理流程"},{url:"/static/index/darkicon/zhaomingdark.png",targetUrl:"/static/index/roomicons/zhaomingtar.png",name:"电子医嘱"},{url:"/static/index/darkicon/kontiaodark.png",targetUrl:"/static/index/roomicons/kongtiaotar.png",name:"进销存"},{url:"/static/index/darkicon/nuanfengdark.png",targetUrl:"/static/index/roomicons/nuanfengtar.png",name:"实时监控"},{url:"/static/index/darkicon/dianqidark.png",targetUrl:"/static/index/roomicons/dianqitar.png",name:"我的指令"}]),g=e.ref([{url:"/static/index/hulilist/zhuandan.png",name:"转单执行"},{url:"/static/index/hulilist/xiezhu.png",name:"协助执行"},{url:"/static/index/hulilist/zhongdian.png",name:"重点追踪"}]),w=e.ref([{url:"/static/index/darkicon/zhuandandark.png",name:"转单执行"},{url:"/static/index/darkicon/xiezhudark.png",name:"协助执行"},{url:"/static/index/darkicon/zhongdiandark.png",name:"重点追踪"}]),h=e.ref([{url:"/static/index/medium/yaopin.png",name:"药品信息",number:0},{url:"/static/index/medium/qingling.png",name:"请领指令",number:60},{url:"/static/index/medium/peiyao.png",name:"配药指令",number:100},{url:"/static/index/medium/xinxi.png",name:"信息反馈",number:0},{url:"/static/index/medium/xinxi.png",name:"信息反馈2",number:0}]),f=e.ref([{url:"/static/index/darkicon/yaopindark.png",name:"药品信息",number:55},{url:"/static/index/darkicon/qinglingdark.png",name:"请领指令",number:10},{url:"/static/index/darkicon/peiyaodark.png",name:"配药指令",number:100},{url:"/static/index/darkicon/xinxidark.png",name:"信息反馈",number:15},{url:"/static/index/darkicon/xinxidark.png",name:"信息反馈2",number:20}]),N=e.ref([{url:"/static/index/roomicons/zhaoming.png",targetUrl:"/static/index/roomicons/zhaomingtar.png",name:"照明"},{url:"/static/index/roomicons/kongtiao.png",targetUrl:"/static/index/roomicons/kongtiaotar.png",name:"空调"},{url:"/static/index/roomicons/nuanfeng.png",targetUrl:"/static/index/roomicons/nuanfengtar.png",name:"暖风"},{url:"/static/index/roomicons/dianqi.png",targetUrl:"/static/index/roomicons/dianqitar.png",name:"电器"}]),E=e.ref([{url:"/static/index/darkicon/zhaomingdark.png",targetUrl:"/static/index/roomicons/zhaomingtar.png",name:"照明"},{url:"/static/index/darkicon/kontiaodark.png",targetUrl:"/static/index/roomicons/kongtiaotar.png",name:"空调"},{url:"/static/index/darkicon/nuanfengdark.png",targetUrl:"/static/index/roomicons/nuanfengtar.png",name:"暖风"},{url:"/static/index/darkicon/dianqidark.png",targetUrl:"/static/index/roomicons/dianqitar.png",name:"电器"}]);e.ref(0);const V=e.ref(0);e.ref(!1);const k=e.ref([]),T=e.ref(0),D=e.ref(0),C=e.ref(0),S=e.ref(0);e.ref(0);const B=l,z=()=>{uni.navigateTo({url:"/pages/NursingNew/index"})},_=()=>{B("darkchange",!i.darkFans)},I=e=>{if(k.value.includes(e)){let t=[];k.value.forEach((l=>{l!==e&&t.push(l)})),k.value=t}else k.value.push(e)},U=()=>{const e=new Date,t=e.getHours().toString().padStart(2,"0"),l=e.getMinutes().toString().padStart(2,"0");m.value=`${t}:${l}`;const a=e.getFullYear(),i=(e.getMonth()+1).toString().padStart(2,"0"),r=e.getDate().toString().padStart(2,"0");u.value=`${a}年${i}月${r}日`;const n=["星期日","星期一","星期二","星期三","星期四","星期五","星期六"][e.getDay()];v.value=n},F=e=>{D.value=e.detail.current},$=e=>{C.value=e.detail.current},M=()=>{r.value=!r.value,n.value=!0,o.value=!1,s.value=!1,setTimeout((()=>{n.value=!1}),500)},A=()=>{o.value=!o.value,r.value=!1,s.value=!1,c.value=!0,setTimeout((()=>{c.value=!1}),500)},L=()=>{s.value=!s.value,d.value=!0,r.value=!1,o.value=!1,setTimeout((()=>{d.value=!1}),500)};let O=null;return e.onMounted((()=>{O=U(),setInterval(U,1e3)})),e.onBeforeUnmount((()=>{clearInterval(O)})),(l,i)=>(e.openBlock(),e.createElementBlock("view",{class:"right-container",style:e.normalizeStyle(t.isshow?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," ID:12345678 ",2),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," 名称:未命名01 ",2),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"right-icons-font-dark":"right-icons-font")},"王金福",2),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/face.png":"/static/index/undericons/facelight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/hand.png":"/static/index/undericons/handlight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/out.png":"/static/index/undericons/outlight.png"},null,8,["src"])]),e.withDirectives(e.createElementVNode("view",{class:"right-container-title-class-anhei-button",onClick:i[0]||(i[0]=e=>_())},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 切换到暗黑模式 ")],512),[[e.vShow,!t.darkFans]]),e.withDirectives(e.createElementVNode("view",{class:"right-container-title-class-anhei-button",style:e.normalizeStyle(t.darkFans?{backgroundColor:"#fff"}:{}),onClick:i[1]||(i[1]=e=>_())},[e.createElementVNode("text",{class:"right-container-title-class-anhei",style:e.normalizeStyle(t.darkFans?{color:"black"}:{})}," 取消暗黑模式 ",4)],4),[[e.vShow,t.darkFans]]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button",style:{"background-color":"#fff"}},[e.createElementVNode("text",{class:"right-container-title-class-anhei",style:{color:"black"},onClick:z}," 切换到新版主页 ")])]),e.createElementVNode("view",{class:"right-container-fir"},[e.createElementVNode("view",{class:e.normalizeClass([r.value?"right-container-big":"right-container-small","right-container-fir-left-nav"]),style:e.normalizeStyle(n.value||r.value?{zIndex:999}:{zIndex:998})},[e.createElementVNode("view",{style:e.normalizeStyle(r.value?{borderRadius:"30rpx"}:{borderRadius:"50rpx"}),class:e.normalizeClass(t.darkFans?"right-container-fir-left-card-dark":"right-container-fir-left-card")},[e.createElementVNode("image",{class:"right-container-fir-left-card-hulilei",src:"/static/index/hulilei.png"},null,8,["src"]),e.createElementVNode("div",{class:"right-container-fir-left-card-hulilei-font",onClick:M},"护理类"),t.darkFans?(e.openBlock(),e.createElementBlock("image",{key:0,class:"card-upfaguang",src:"/static/index/cardbgc/uplight.png"},null,8,["src"])):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"right-container-fir-left-carousel"},[e.createElementVNode("view",{class:"carousel"},[e.createElementVNode("view",{class:"dots"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("span",{key:a,class:e.normalizeClass(t.darkFans?"dot-dark":"dot"),style:e.normalizeStyle(a===D.value?{backgroundColor:"#01A0FE"}:{})},null,6))),64))])])]),e.createElementVNode("view",{class:"right-container-fir-left-card-main"},[e.createElementVNode("swiper",{current:D.value,class:"swiper savehundred",circular:"","indicator-dots":!1,vertical:!0,interval:4e3,duration:500,onChange:F},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("view",{class:"right-container-fir-left-card-flex"},[e.createElementVNode("view",{class:"uni-margin-wrap-fir"},[e.createElementVNode("swiper",{current:T.value,class:"swiper",circular:"","indicator-dots":!1,interval:4e3,duration:500},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("view",{class:"right-container-fir-left-card-card"},[e.createElementVNode("view",{class:"right-container-fir-left-card-zhixing"},[e.createElementVNode("div",{class:"right-container-fir-left-card-zhixing-font"},"待执行 ")]),e.createElementVNode("image",{class:"right-container-fir-left-card-img",src:"/static/index/teeth.png",onClick:M},null,8,["src"]),e.createElementVNode("view",{class:"right-container-fir-left-card-main-laba-video"},[e.createElementVNode("image",{class:"right-container-fir-left-card-main-laba",src:t.darkFans?"/static/index/darkicon/labadark.png":"/static/index/laba.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-fir-left-card-main-font-dark":"right-container-fir-left-card-main-font")}," 准备洁具(口腔) ",2),e.createElementVNode("image",{class:"right-container-fir-left-card-main-video",src:(t.darkFans,"/static/index/indexvideo.png")},null,8,["src"])])]),e.createElementVNode("view",{class:"split-line"}),e.createElementVNode("view",{class:"time-tra-fir"},[e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-font-dark":"time-font")}," 10:00 - 10:10 ",2),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-text-dark":"time-text")}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ",2),e.createElementVNode("view",{class:"time-people-two"},[e.createElementVNode("view",{class:"time-people-fir"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/darkicon/zhixingpeopledark.png":"/static/index/cardicons/zhixing.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 单人执行 ",2)]),e.createElementVNode("view",{class:"time-people-sec"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/dopeopledark.png":"/static/index/cardicons/zhifa.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," -- ",2)])]),e.createElementVNode("view",{class:"time-button-view"},[e.createElementVNode("view",{class:"time-button-start"}," 开始服务 "),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-button-end-dark":"time-button-end")}," 服务结束 ",2)])])]))),64))],8,["current"])]),e.createElementVNode("view",{class:"split-line-white-right-left",style:e.normalizeStyle(t.darkFans?"background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #386997 50%, rgba(0, 0, 0, 0) 100%);":"")},[t.darkFans?(e.openBlock(),e.createElementBlock("image",{key:0,class:"split-line-white-img",src:"/static/index/cardbgc/leftlight.png"},null,8,["src"])):e.createCommentVNode("",!0)],4)])]))),64))],40,["current"]),e.createElementVNode("view",{class:"right-huli-sec"},[e.createElementVNode("image",{class:"right-huli-shang",src:"/static/index/hulilist/shang.png"},null,8,["src"]),t.darkFans?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("scroll-view",{key:0,"show-scrollbar":!1,"scroll-y":"true",class:"right-huli-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-huli-view-dis",onClick:e=>{a.value.openDrawer()}},[e.createElementVNode("image",{class:"right-huli-img",src:t.url},null,8,["src"]),e.createElementVNode("text",{class:"right-huli-text"},e.toDisplayString(t.name),1)],8,["onClick"])))),128))])),t.darkFans?(e.openBlock(),e.createElementBlock("scroll-view",{key:1,"show-scrollbar":!1,"scroll-y":"true",class:"right-huli-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(w.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-huli-view-dis"},[e.createElementVNode("image",{class:"right-huli-img",src:t.url},null,8,["src"]),e.createElementVNode("text",{class:"right-huli-text-dark"},e.toDisplayString(t.name),1)])))),128))])):e.createCommentVNode("",!0),e.createElementVNode("image",{class:"right-huli-xia",src:"/static/index/hulilist/xia.png"},null,8,["src"])])])],6)],6),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"right-container-fir-right-dark":"right-container-fir-right")},[e.createElementVNode("view",{class:"right-container-card"},[e.createElementVNode("view",{class:"right-container-card-right"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3,4],((t,l)=>e.createElementVNode("view",{class:"",key:l},[e.createElementVNode("image",{class:"right-container-card-right-img",src:y})]))),64))]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-dark":"right-container-title")},e.toDisplayString(m.value),3),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-date-dark":"right-container-date")},e.toDisplayString(u.value),3),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-day-dark":"right-container-day")},e.toDisplayString(v.value),3),e.createElementVNode("view",{class:"right-container-tem"},[e.createElementVNode("image",{class:"right-container-tem-img",src:t.darkFans?"/static/index/darkicon/wendudark.png":"/static/index/roomicons/wendu.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-tem-text-dark":"right-container-tem-text")},"23°C",2),e.createElementVNode("image",{class:"right-container-tem-img",src:t.darkFans?"/static/index/roomicons/shidu.png":"/static/index/darkicon/shidudark.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-tem-text-dark":"right-container-tem-text")},"39%",2)]),e.createElementVNode("view",{class:"right-container-fenge"}),t.darkFans?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"right-container-button"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(N.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-container-button-any"},[e.withDirectives(e.createElementVNode("image",{class:"right-container-button-ray",src:"/static/index/cardicons/ray2.png"},null,8,["src"]),[[e.vShow,k.value.includes(l)]]),e.createElementVNode("image",{class:"right-container-button-img",src:k.value.includes(l)?t.targetUrl:t.url,onClick:e=>I(l)},null,8,["src","onClick"]),e.createElementVNode("text",{class:"right-container-button-text",style:e.normalizeStyle(k.value.includes(l)?{color:"#167ED7"}:{})},e.toDisplayString(t.name),5)])))),128))])),t.darkFans?(e.openBlock(),e.createElementBlock("view",{key:1,class:"right-container-button"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-container-button-any"},[e.withDirectives(e.createElementVNode("image",{class:"right-container-button-ray",src:"/static/index/cardicons/ray2.png"},null,8,["src"]),[[e.vShow,k.value.includes(l)]]),e.createElementVNode("image",{class:"right-container-button-img",src:k.value.includes(l)?t.targetUrl:t.url,onClick:e=>I(l)},null,8,["src","onClick"]),e.createElementVNode("text",{class:"right-container-button-text",style:e.normalizeStyle(k.value.includes(l)?{color:"#167ED7"}:{color:"#fff"})},e.toDisplayString(t.name),5)])))),128))])):e.createCommentVNode("",!0)])],2)]),e.createElementVNode("view",{class:"right-container-sec"},[e.createElementVNode("view",{class:e.normalizeClass(o.value?"right-container-left-big":"right-container-left-small"),style:e.normalizeStyle(c.value||o.value?{zIndex:999}:{zIndex:0})},[e.createElementVNode("view",{style:e.normalizeStyle(o.value?{borderRadius:"29rpx"}:{borderRadius:"50rpx"}),class:e.normalizeClass(t.darkFans?"right-container-left-dark":"right-container-left")},[e.createElementVNode("image",{class:"right-container-left-type",src:"/static/index/yiliao/yiliaolei.png"},null,8,["src"]),e.createElementVNode("div",{class:"right-container-left-font",onClick:A},"医疗类"),e.createElementVNode("view",{class:"right-container-fir-left-carousel"},[e.createElementVNode("view",{class:"carousel"},[e.createElementVNode("view",{class:"dots"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("span",{key:a,class:e.normalizeClass(t.darkFans?"dot-dark":"dot"),style:e.normalizeStyle(a===C.value?{backgroundColor:"#01A0FE"}:{})},null,6))),64))])])]),t.darkFans?(e.openBlock(),e.createElementBlock("image",{key:0,class:"card-upfaguang-down",src:"/static/index/cardbgc/uplight.png"},null,8,["src"])):e.createCommentVNode("",!0),e.createElementVNode("swiper",{current:C.value,class:"swiper savehundred",circular:"","indicator-dots":!1,vertical:!0,interval:4e3,duration:500,onChange:$},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("div",{class:"right-container-fir-left-card-flex-sec"},[e.createElementVNode("view",{class:"uni-margin-wrap"},[e.createElementVNode("swiper",{current:S.value,class:"swiper",circular:"","indicator-dots":!1,autoplay:!1,interval:4e3,duration:500},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("div",{class:"right-container-left-font-spec"},"进行中 "),e.createElementVNode("view",{class:"time-tra-sec"},[e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-font-dark":"time-font")}," 10:00 - 10:10 ",2),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/doctorsaydark.png":"/static/index/medium/doctorsay.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 医嘱类型:药品 ",2)]),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/howtododark.png":"/static/index/medium/howtodo.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 处置方式:肌肉注射 ",2)]),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/useMed.png":"/static/index/medium/yongyao.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 用药类型:抗生素类 ",2)]),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/domanydark.png":"/static/index/medium/domany.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 执行方式:周期一日执行一次 ",2)]),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/darkicon/zhixingpeopledark.png":"/static/index/cardicons/zhixing.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 单人执行 ",2),e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/dopeopledark.png":"/static/index/cardicons/zhifa.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 赵宇 ",2)]),e.createElementVNode("view",{class:"time-button-view"},[e.createElementVNode("view",{class:"time-button-start"}," 开始服务 "),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-button-end-dark":"time-button-end")}," 服务结束 ",2)])]),e.createElementVNode("view",{class:"right-container-photo"},[e.createElementVNode("image",{class:"right-container-photo-img",src:"/static/index/yiliao/project2.png",onClick:A},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-photo-text-dark":"right-container-photo-text")}," 脑膜炎(1/2) ",2)])]))),64))],8,["current"])])])]))),64))],40,["current"]),e.createElementVNode("view",{class:"split-line-white-sec",style:e.normalizeStyle(t.darkFans?"background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #386997 50%, rgba(0, 0, 0, 0) 100%);":"")},[t.darkFans?(e.openBlock(),e.createElementBlock("image",{key:0,class:"split-line-white-img",src:"/static/index/cardbgc/leftlight.png"},null,8,["src"])):e.createCommentVNode("",!0)],4),e.createElementVNode("view",{class:"right-huli-fir"},[e.createElementVNode("image",{class:"right-huli-shang",src:"/static/index/hulilist/shang.png"},null,8,["src"]),t.darkFans?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("scroll-view",{key:0,"show-scrollbar":!1,"scroll-y":"true",class:"right-huli-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(h.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-huli-view-dis"},[e.createElementVNode("image",{class:"right-huli-img",src:t.url},null,8,["src"]),e.createElementVNode("text",{class:"right-huli-text"},e.toDisplayString(t.name),1),e.withDirectives(e.createElementVNode("div",{class:"progress-bar-container"},[e.createElementVNode("div",{style:e.normalizeStyle({width:`${t.number}%`}),class:"progress-bar"},null,4)],512),[[e.vShow,0!==t.number]])])))),128))])),t.darkFans?(e.openBlock(),e.createElementBlock("scroll-view",{key:1,"show-scrollbar":!1,"scroll-y":"true",class:"right-huli-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(f.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-huli-view-dis"},[e.createElementVNode("image",{class:"right-huli-img",src:t.url},null,8,["src"]),e.createElementVNode("text",{class:"right-huli-text-dark"},e.toDisplayString(t.name),1),e.withDirectives(e.createElementVNode("div",{class:"progress-bar-container"},[e.createElementVNode("div",{style:e.normalizeStyle({width:`${t.number}%`}),class:"progress-bar"},null,4)],512),[[e.vShow,0!==t.number]])])))),128))])):e.createCommentVNode("",!0),e.createElementVNode("image",{class:"right-huli-xia",src:"/static/index/hulilist/xia.png"},null,8,["src"])])],6)],6),e.createElementVNode("view",{style:e.normalizeStyle(d.value||s.value?{zIndex:999}:{zIndex:0}),class:e.normalizeClass([s.value?"right-container-right-big":"right-container-right-small"])},[e.createElementVNode("view",{style:e.normalizeStyle(s.value?{borderRadius:"29rpx"}:{borderRadius:"50rpx"}),class:e.normalizeClass([t.darkFans?"right-container-right-father-dark":"right-container-right-father"])},[e.createElementVNode("view",{class:"right-container-right-down-father"},[e.createElementVNode("div",{class:"right-container-fir-left-card-flex-sec"},[e.createElementVNode("image",{class:"right-container-fir-left-card-flex-sec-img",src:"/static/index/baojielei.png"},null,8,["src"]),e.createElementVNode("div",{class:"right-container-fir-left-card-flex-sec-font",onClick:L},"保洁类"),e.createElementVNode("image",{class:"right-container-fir-left-card-flex-sec-imgright-fir",src:"/static/index/baojieleft.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-container-fir-left-card-flex-sec-imgright-sec",src:"/static/index/baojieright.png"},null,8,["src"]),e.createElementVNode("view",{class:"uni-margin-wrap"},[e.createElementVNode("swiper",{current:S.value,class:"swiper",circular:"","indicator-dots":!1,autoplay:!1,interval:4e3,duration:500},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("view",{class:"time-tra-thi"},[e.createElementVNode("view",{class:"time-tra-thi-zhixing"},[e.createElementVNode("div",{class:"time-tra-thi-zhixing-font"},"待执行 ")]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-font-dark":"time-font")}," 10:00 - 10:10 ",2),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-text-dark":"time-text")}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ",2),e.createElementVNode("view",{class:"time-people-two"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/darkicon/zhixingpeopledark.png":"/static/index/cardicons/zhixing.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 单人执行 ",2),e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/dopeopledark.png":"/static/index/cardicons/zhifa.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 王金福 / 李贵田 ",2)]),e.createElementVNode("view",{class:"time-button-view"},[e.createElementVNode("view",{class:"time-button-start"}," 开始服务 "),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-button-end-dark":"time-button-end")}," 服务结束 ",2)])]),e.createElementVNode("view",{class:"time-tra-thi-photo"},[e.createElementVNode("image",{class:"time-tra-thi-photo-img",src:"/static/index/project3.png",onClick:L},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-tra-thi-photo-font-dark":"time-tra-thi-photo-font")}," 更换纸尿裤 ",2)])]))),64))],8,["current"])])])])],6)],6),e.createElementVNode("view",{class:"under-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.value,((l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"under-father-view",key:a,onClick:e=>(e=>{V.value=e})(a)},[e.withDirectives(e.createElementVNode("image",{class:"under-father-light",src:"/static/index/undericons/upguang.png"},null,512),[[e.vShow,a===V.value]]),e.createElementVNode("image",{class:"under-father-img",src:a===V.value?l.targetUrl:l.url},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"under-father-img-font-dark":"under-father-img-font")},e.toDisplayString(l.name),3)],8,["onClick"])))),128))])]),e.createVNode(x,{ref_key:"drawer",ref:a},{default:e.withCtx((()=>[e.createVNode(b)])),_:1},512)],4))}}),[["__scopeId","data-v-6d6a66c6"]]),T="/static/index/deleteicon.png",D="/static/index/NU.png",C=[{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706886",title:"协助喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604232524795905",title:"鼻饲喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604428667228162",title:"注射器/吸管喂药",tagName:"头部,大体重"}],levle:"2",title:"协助喂药",key:"1900114812020310017",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605892869394433",title:"一级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606105021485058",title:"二级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606339931869185",title:"三级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606614344208386",title:"一级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606869953482753",title:"二级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607023431454722",title:"三级压疮防护",tagName:"大体重"}],levle:"2",title:"压疮防护",key:"1900115034452639746",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706887",title:"床椅转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706888",title:"床椅转移",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605073730211842",title:"床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605223185846273",title:"床椅转移",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605365393723393",title:"协助床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605496071458818",title:"协助床椅转移",tagName:null}],levle:"2",title:"床椅转移",key:"1902248363784159233",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607507626102786",title:"轮椅防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607677415723010",title:"轮椅防护",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902607817589362689",title:"轮椅防护",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902608061588803585",title:"轮椅防护",tagName:"大体重"}],levle:"2",title:"轮椅防护",key:"1902280900178886657",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608564582322178",title:"约束位按摩",tagName:"手"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608974609092610",title:"约束位按摩",tagName:"足"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618507855237121",title:"约束位按摩",tagName:"全"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618751548493825",title:"防护网约束",tagName:null}],levle:"2",title:"约束防护",key:"1902280933364219906",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620309090701314",title:"协助行走",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620486044192769",title:"放松按摩",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902625161569079298",title:"心灵慰藉",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902625402468929537",title:"狂躁",tagName:null}],levle:"2",title:"按摩保健",key:"1902564031454744577",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902625872432304130",title:"准备衣物",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626005538541569",title:"协助更换",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626664711163905",title:"肢体障碍",tagName:"半侧"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626800510144513",title:"肢体障碍",tagName:"全身"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627064688381953",title:"准备衣物",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627280716009474",title:"协助更换",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627416598876161",title:"肢体障碍",tagName:"半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627522404388866",title:"肢体障碍",tagName:"全身"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902627711806574593",title:"协助更换",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628058591629313",title:"肢体障碍",tagName:"半侧,大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628650718302209",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628837725540354",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628966847188993",title:"肢体障碍",tagName:"大体重,半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902629129879785474",title:"协助更换",tagName:"大体重"}],levle:"2",title:"更换衣物",key:"1902564088417587201",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629344456183809",title:"坐起",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629492301205506",title:"躺下",tagName:null}],levle:"2",title:"调整坐卧",key:"1902564199830884354",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902630862769065985",title:"遗体净身",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902631162275926017",title:"遗体穿衣",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631422431825921",title:"遗体转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631602463936514",title:"床位消毒",tagName:null}],levle:"2",title:"殡仪服务",key:"1902564263743688705",parentId:"1900112597427793921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902631830441136129",title:"更换床上用品",tagName:"全部"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632063828987905",title:"隔尿褥子更换",tagName:null}],levle:"2",title:"更换床上用品",key:"1902564446648897538",parentId:"1900112597427793921"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632288270389250",title:"临终护理",tagName:null}],levle:"2",title:"临终服务",key:"1902564503783706625",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"40",id:"1902632678701371393",title:"制氧机吸氧",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902632799853842433",title:"制氧机维护",tagName:null}],levle:"2",title:"制氧机应用",key:"1902564586101116930",parentId:"1900112597427793921"}],levle:"1",title:"1 日常照料",key:"1900112597427793921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900376187661553665",title:"准备洁具",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900420873478553602",title:"棉球清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706881",title:"协助清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706885",title:"义齿清洁",tagName:"口腔"}],levle:"2",title:"口腔清洁",key:"1902597070889127938",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902636771540963329",title:"准备洁具",tagName:"头部"},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637623425077250",title:"协助洗头",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637985234128898",title:"卧式洗头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902638122949906433",title:"擦头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902638304739430401",title:"刮头",tagName:null}],levle:"2",title:"头部清洁",key:"1902597497344987137",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902641763073101826",title:"准备洁具",tagName:"面部"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642254465175553",title:"协助洁面",tagName:null}],levle:"2",title:"面部清洁",key:"1902597651405967361",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642508145070081",title:"准备洁具",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642672796667905",title:"协助清洁",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642822885642242",title:"卧床清洁",tagName:"躯干"}],levle:"2",title:"躯干清洁",key:"1902597718082818050",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643318811758594",title:"准备洁具",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643483320750082",title:"协助清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643630888947713",title:"卧床清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643837525528578",title:"肌张力高",tagName:"清洁"}],levle:"2",title:"四肢清洁",key:"1902597811565465601",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645148199391234",title:"会阴清洁",tagName:"男"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645295457210369",title:"会阴清洁",tagName:"女"}],levle:"2",title:"会阴清洁",key:"1902597873964126209",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645493185089537",title:"肛周清洁",tagName:null}],levle:"2",title:"肛周清洁",key:"1902597930020999170",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645693211447298",title:"洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647316134465538",title:"泡手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647529817477122",title:"准备洁具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647673212342274",title:"协助洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647905878773762",title:"强直屈曲洗手",tagName:null}],levle:"2",title:"手清洁",key:"1902597991698239489",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648101203316737",title:"泡脚",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648239091060737",title:"卧式泡脚",tagName:null}],levle:"2",title:"足清洁",key:"1902598178588037121",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648426383511553",title:"修睫毛",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648548777496577",title:"剃须",tagName:null}],levle:"2",title:"剃须",key:"1902598258573414401",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648962444922882",title:"角质增生",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649132536532994",title:"灰指甲",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649302149992449",title:"正常",tagName:"修甲"}],levle:"2",title:"修甲",key:"1902598354606198785",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902649683919736834",title:"理发",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"25",id:"1902649860344745985",title:"理发",tagName:"颅骨缺损"}],levle:"2",title:"理发",key:"1902598400382832642",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902650121280786434",title:"床上沐浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650408884211713",title:"深度清洁",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650763722330113",title:"浴间洗浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"30",id:"1902651229122301954",title:"床上沐浴",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651366317985794",title:"深度清洁",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651555363655682",title:"浴间洗浴",tagName:"大体重"}],levle:"2",title:"沐浴",key:"1902598454782955522",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651778777452545",title:"内套管清洁",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651924047171586",title:"更换气切纱布",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"10",id:"1902652055928672258",title:"更换气切纱布",tagName:null}],levle:"2",title:"气切消毒",key:"1902598509522817026",parentId:"1900112615777873921"}],levle:"1",title:"2 清洁照料",key:"1900112615777873921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898057679966209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898202668666881",title:"协助进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898339931459586",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898472584712194",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898590658564097",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898719952179201",title:"准备餐具",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898979948695554",title:"协助进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899086840532993",title:"协助进餐",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899214838108162",title:"鼻胃管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899325014085633",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899587028062210",title:"食物加工",tagName:null}],levle:"2",title:"加餐饮食",key:"1902596129720864770",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281139677839362",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902281522340970498",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281654100836354",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281870434648066",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902654960639381506",title:"鼻肠管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902655101874180097",title:"轮椅进餐",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902892199009030145",title:"轮椅进餐",tagName:null}],levle:"2",title:"正餐饮食",key:"1902601263850950657",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893231608926209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893551978254337",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893716466274306",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894369850757122",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894528533860354",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"辅餐饮食",key:"1902601382595891202",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894832176304129",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894954117304322",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895077522116609",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895233407619073",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895569912434689",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"果汁饮食",key:"1902601427168759809",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895878508351489",title:"准备水杯",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895984053817346",title:"协助饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896136835534850",title:"协助饮水",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896508421509122",title:"鼻胃管饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896636553302017",title:"鼻肠管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902896855802155010",title:"准备水杯",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897018344017921",title:"协助饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897464936730626",title:"协助饮水",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897675813752834",title:"鼻胃管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897803417063426",title:"鼻肠管饮水",tagName:null}],levle:"2",title:"饮水饮食",key:"1902601487625457665",parentId:"1902280495747317762"}],levle:"1",title:"3 饮食照料",key:"1902280495747317762"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902653177363927041",title:"巡视",tagName:null}],levle:"2",title:"巡视",key:"1902564741860790273",parentId:"1902560466095017986"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653325481578497",title:"防坠床",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653497066360833",title:"被褥调整",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653650917625857",title:"睡姿调整",tagName:null}],levle:"2",title:"体位调整",key:"1902564818838851585",parentId:"1902560466095017986"}],levle:"1",title:"4 睡眠照料",key:"1902560466095017986"},{children:[{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904277308510210",title:"更换尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904458779267073",title:"更换隔尿垫",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905631242424322",title:"使用尿盆",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905824973131777",title:"使用尿壶",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906220483416065",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906459051233281",title:"坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906610562076674",title:"留置尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906783325458434",title:"更换纸尿裤",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908406344945665",title:"热敷抚触排尿",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908523827400705",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909645401067522",title:"更换尿片",tagName:null}],levle:"2",title:"小便",key:"1902596314152800257",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909835331735554",title:"床上排便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910002671882242",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910156154048514",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910361008050178",title:"人工取便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910524623654913",title:"造瘘袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910700176248834",title:"坐便椅",tagName:null}],levle:"2",title:"大便",key:"1902596399423000577",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910899565072385",title:"口腔吸痰",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911047405899778",title:"气切吸痰",tagName:null}],levle:"2",title:"吸痰",key:"1902596461238652930",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911232974491650",title:"呕吐",tagName:null}],levle:"2",title:"呕吐",key:"1902596886771765250",parentId:"1902560510768549889"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902911378349068290",title:"腹腔引流护理",tagName:null}],levle:"2",title:"引流",key:"1902596940366581762",parentId:"1902560510768549889"}],levle:"1",title:"5 排泄照料",key:"1902560510768549889"}],S=s(e.defineComponent({__name:"index",props:{isshow:{type:Boolean,required:!0},darkFans:{type:Boolean,required:!0},canmove:{type:Boolean,required:!0},liang:{type:Object}},emits:["darkchange","savename","saveruler","closename","changefangkuang","changeold"],setup(t,{expose:a,emit:i}){const o=t;e.watch((()=>o.canmove),(()=>{Ee.value=!1})),e.watch((()=>o.isshow),(()=>{Ee.value=!1,ae.value=!1})),e.onMounted((()=>{}));const c=e.ref([{name:"纸尿裤",url:"/static/index/niao.png"},{name:"呕吐",url:"/static/index/tu.png"},{name:"吸痰",url:"/static/index/ou.png"},{name:"大便",url:"/static/index/baba.png"},{name:"纸尿裤",url:"/static/index/niao.png"},{name:"呕吐",url:"/static/index/tu.png"},{name:"吸痰",url:"/static/index/ou.png"},{name:"大便",url:"/static/index/baba.png"},{name:"纸尿裤",url:"/static/index/niao.png"},{name:"呕吐",url:"/static/index/tu.png"},{name:"吸痰",url:"/static/index/ou.png"},{name:"大便",url:"/static/index/baba.png"},{name:"纸尿裤",url:"/static/index/niao.png"},{name:"呕吐",url:"/static/index/tu.png"},{name:"吸痰",url:"/static/index/ou.png"},{name:"大便",url:"/static/index/baba.png"}]),s=["00","05","10","15","20","25","30","35","40","45","50","55"],d=["周一","周二","周三","周四","周五","周六","周日"],m=Array.from({length:31},((e,t)=>(t+1).toString().padStart(2,"0"))),u=e.ref(!0),v=e.ref(0),p=e.ref(0),g=e.ref(),w=e.ref([]),h=e.ref([]),f=e.ref(!1),N=e.ref(!1),y=e.ref(!1),x=e.ref(!1),E=e.ref(!1),V=e.ref(""),b=e.ref(!1),k=e.ref(1);function S(e,t){return 2*function(e,t){const l=55.9898*e+78.233*t;return Math.abs(43758.5453*Math.sin(l))%1}(e,t)}e.ref(0);const B=t=>{k.value=t.detail.current,e.nextTick((()=>{p.value=z.value}))};e.ref(0);const z=e.ref(0);function _(e){let t=e.detail.scrollTop,l=parseFloat(t.toFixed(2));z.value=l}e.ref(!0);const I=(e,t)=>!(o.canmove||o.liang.index0!==e||o.liang.index1!==t||!pe.value.includes(e+6*k.value)&&ge.value==t),U=(e,t)=>!o.canmove&&o.liang.index0===e&&o.liang.index1===t,F=(e,t,l)=>"日常"===e.cycleType?J.value.index0===t+6*k.value&&J.value.index1===l&&ae.value?"title-time-border-yellow-active-transparent":ae.value?"title-time-border-yellow-active":"title-time-border-yellow":e.cycleType?J.value.index0===t+6*k.value&&J.value.index1===l&&ae.value?"title-time-border-pouple-active-transparent":ae.value?"title-time-border-pouple-active":"title-time-border-pouple":"title-time-border",$=e.ref([{url:"/static/index/doctorsay/light/use.png",targetUrl:"/static/index/doctorsay/dark/use.png",name:"日常"},{url:"/static/index/doctorsay/light/clean.png",targetUrl:"/static/index/doctorsay/dark/clean.png",name:"清洁"},{url:"/static/index/doctorsay/light/drink.png",targetUrl:"/static/index/doctorsay/dark/drink.png",name:"饮食"},{url:"/static/index/doctorsay/light/bed.png",targetUrl:"/static/index/doctorsay/dark/bed.png",name:"睡眠"},{url:"/static/index/doctorsay/light/shi.png",targetUrl:"/static/index/doctorsay/dark/shi.png",name:"排泻"}]),M=e.ref(1),A=e.ref(0),L=e.ref(999);e.ref(!1),e.ref([]);const O=i,P=e=>{O("changeold",e)},j=e.ref(null);e.ref({});const q=e.ref(0),R=e.ref(0),W=e.ref(0),Y=e.ref(0),J=e.ref({index0:999,index1:999,typeName:""}),X=e.ref(-1),Z=e.ref(!1),H=e.ref(!1),G=e.ref([-1,-1]),Q=e.ref(""),K=e.ref(-1),ee=e.ref(!1),te=()=>{ee.value=!0,H.value=!1,setTimeout((()=>{H.value=!0}),100)},le=()=>{uni.share({provider:"weixin",scene:"WXSceneSession",type:0,href:"http://192.168.2.31:3101/daytoday",title:"护理日程分享",summary:"九泰护理日程测试",imageUrl:"https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/uni@2x.png",success:function(e){l("log","at component/rightItemssecond/index.vue:740","success:")},fail:function(e){l("log","at component/rightItemssecond/index.vue:743","fail:")}})},ae=e.ref(!1),ie=e.ref([]),re=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-q.value)>0||Math.abs(l-R.value)>0)&&j.value&&(clearTimeout(j.value),j.value=null)},ne=e.ref(null),oe=e.ref(!1);let ce=null;function se(e){oe.value=!0,ce&&clearTimeout(ce),ce=setTimeout((()=>{oe.value=!1}),400)}const de=e.ref(!1),me=e.ref(0),ue=e.ref(0),ve=e.ref(!1),pe=e.ref([]),ge=e.ref(-1),we=e.ref(""),he=e.ref("");function fe(){return!!(!Ce.value&&De.value.startTime||1===Ce.value&&De.value.startTime&&(De.value.weekTime||De.value.monthTime)||2===Ce.value)}const Ne=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-me.value)>0||Math.abs(l-ue.value)>0)&&ne.value&&(clearTimeout(ne.value),ne.value=null)},ye=()=>{ve.value=!1,ne.value&&(clearTimeout(ne.value),ne.value=null)},xe=e.ref(null),Ee=e.ref(!1),Ve=e=>{me.value=Math.floor(e.touches[0].pageX),ue.value=Math.floor(e.touches[0].pageY),xe.value=setTimeout((()=>{Ee.value=!0}),500)},be=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-me.value)>0||Math.abs(l-ue.value)>0)&&xe.value&&(clearTimeout(xe.value),xe.value=null)},ke=()=>{xe.value&&(clearTimeout(xe.value),xe.value=null)},Te=e.ref({time:"",array:[]}),De=e.ref({op:{name:"",index:[-1,-1,-1]},startTime:"",monthTime:"",weekTime:""}),Ce=e.ref(0),Se=(e,t)=>{if(we.value=t.id,he.value=t.tagName,De.value.op.index[2]===e)De.value.op.index[2]=-1,De.value.op.name="",Ce.value=-1;else switch(De.value.op.index[2]=e,De.value.op.name=t.relName,t.cycleType){case"日常护理":Ce.value=0;break;case"周期护理":Ce.value=1;break;case"即时护理":Ce.value=2}},Be=e.ref([-1,-1]);e.ref(null);const ze=async()=>{N.value=!1,u.value=!0;let t=-1,l=[];if(2===Ce.value)return v.value=1,void e.nextTick((()=>{v.value=0,c.value.unshift({name:De.value.op.name,url:"/static/index/ou.png",target:"#00a8ff"}),setTimeout((()=>{c.value[0].target="#fff"}),1500),setTimeout((()=>{c.value[0].target=""}),3e3)}));Ae.value.forEach(((e,a)=>{l=[],e.children.forEach(((e,t)=>{if(null===e.directiveName||""===e.directiveName||void 0===e.directiveName){Ae.value.every((e=>{const l=e.children[t];return void 0===l||null===l.directiveName||""===l.directiveName||void 0===l.directiveName}))&&l.push(t)}})),e.children.forEach(((e,l)=>{e.typeName==h.value[De.value.op.index[0]].children[De.value.op.index[1]].title&&(t=l)}))})),-1===t&&(t=l[0]);let a=h.value[De.value.op.index[0]].children[De.value.op.index[1]].title;await e.nextTick(),Ae.value.forEach(((e,l)=>{e.children[t].typeName=a}));let i="";Ce.value?1===Ce.value&&(i=De.value.weekTime||De.value.monthTime+"号"):i="日常";const r=Number(Te.value.time),n=Number(De.value.startTime),o=n+10,s=r+Math.floor(o/60),d=`${String(r)}:${String(n).padStart(2,"0")}`,m=`${String(s)}:${String(o%60).padStart(2,"0")}`;-1!==t?(Ae.value[Be.value[0]].children[t].startTime=d,Ae.value[Be.value[0]].children[t].endTime=m):(Ae.value[Be.value[0]].children[Be.value[1]].startTime=d,Ae.value[Be.value[0]].children[Be.value[1]].endTime=m);let g={directiveId:we.value,directiveName:De.value.op.name,startTime:d,endTime:m,positioning:Be.value[0].toString(),positioningLong:Be.value[1].toString(),tagName:he.value,cycleType:i,nuId:"1",customerId:"1",id:"",typeName:a};Ae.value[Be.value[0]].children[t]=g,Ae.value.forEach((e=>{e.children.forEach((e=>{}))}));let w={index0:Be.value[0],index1:t};$e(w);Ae.value.some((e=>{const t=e.children;return""!==t[t.length-1].directiveName.trim()}))&&(Ae.value.forEach((e=>{e.children.push({directiveName:""})})),p.value=999,e.nextTick(),p.value=9999),_e()},_e=()=>{Ae.value.forEach(((e,t)=>{e.children.forEach(((e,l)=>{let a="";if(e.directiveName||e.id)e.positioning=t,e.positioningLong=l;else{let i={};e.typeName&&(a=e.typeName),i=JSON.parse(JSON.stringify(Me.value)),a&&(i.typeName=a),i.positioning=t,i.positioningLong=l}}))}))},Ie=()=>{uni.setStorage({key:"myArray",data:Ae.value,success:function(){uni.navigateTo({url:`/pages/timeMatrix/index?currentNumber=${k.value}`})}})},Ue=e.ref({index0:-1,index1:-1}),Fe=e.ref({index0:-1,index1:-1,current:-1,bordershow:!0}),$e=e=>{p.value=0,p.value=104*e.index1,k.value===Math.floor(e.index0/6)?(Fe.value.index0=e.index0-6*k.value,Fe.value.index1=e.index1,Ue.value.index0=Fe.value.index0,Ue.value.index1=Fe.value.index1,Fe.value.current=k.value,Fe.value.bordershow=!1,setTimeout((()=>{Fe.value.index0=-1,Fe.value.index1=-1,Fe.value.current=-1}),400),setTimeout((()=>{Fe.value.bordershow=!0,Ue.value.index0=-1,Ue.value.index1=-1}),1e3)):(setTimeout((()=>{k.value=Math.floor(e.index0/6)}),100),setTimeout((()=>{Fe.value.index0=e.index0-6*k.value,Fe.value.index1=e.index1,Ue.value.index0=Fe.value.index0,Ue.value.index1=Fe.value.index1,Fe.value.current=k.value,Fe.value.bordershow=!1}),800),setTimeout((()=>{Fe.value.index0=-1,Fe.value.index1=-1,Fe.value.current=-1}),1400),setTimeout((()=>{Fe.value.bordershow=!0,Ue.value.index0=-1,Ue.value.index1=-1}),2200))};r((()=>{h.value=C,g.value=h.value[0].children,uni.$on("where",$e)})),n((()=>{uni.$off("where",$e)})),a({rulerEnd:async e=>{de.value=!1,999!==o.liang.index0&&e&&(De.value={op:{name:"",index:[-1,-1,-1]},startTime:"",monthTime:"",weekTime:""},x.value=!1,N.value=!0,setTimeout((()=>{x.value=!0}),100),De.value.op.index[0]=A.value,De.value.op.index[1]=L.value,Te.value.time=Ae.value[o.liang.index0+6*k.value].positioning,Te.value.array=h.value[A.value].children[L.value].children,Te.value.array.forEach((e=>{e.relName=e.title+(e.tagName?e.tagName.split(",").map((e=>`(${e})`)).join(""):"")})),Be.value=[o.liang.index0+6*k.value,o.liang.index1],Se(0,Te.value.array[0]))},rulerMoveEnd:e=>{if(999!==o.liang.index0&&e.cycleType){if(pe.value.includes(o.liang.index0+6*k.value)||ge.value!==o.liang.index1)return!1;Be.value=[o.liang.index0+6*k.value,o.liang.index1];let t=-1,l=[];Ae.value.forEach(((a,i)=>{l=[],a.children.forEach(((e,t)=>{if(null===e.directiveName||""===e.directiveName||void 0===e.directiveName){Ae.value.every((e=>{const l=e.children[t];return void 0===l||null===l.directiveName||""===l.directiveName||void 0===l.directiveName}))&&l.push(t)}})),a.children.forEach(((l,a)=>{l.typeName==e.typeName&&(t=a)}))})),-1===t&&(t=l[0]);let a=0,i="";Ae.value.forEach((e=>{e.children[0].value&&(a++,i=e.children[0].typeName)})),Ae.value[J.value.index0].children[J.value.index1]=a>1?{directiveName:"",typeName:i}:{directiveName:""},Ae.value[Be.value[0]].children[t]=e;let r=Ae.value[Be.value[0]].children[t].startTime,n=Ae.value[Be.value[0]].children[t].endTime,c=Ae.value[Be.value[0]].positioning;const s=r.substring(r.indexOf(":")),d=n.substring(n.indexOf(":"));Ae.value[Be.value[0]].children[t].startTime=c+s,Ae.value[Be.value[0]].children[t].endTime=c+d;Ae.value.some((e=>{const t=e.children;return""!==t[t.length-1].directiveName.trim()}))&&(Ae.value.forEach((e=>{e.children.push({directiveName:""})})),p.value=999,p.value=9999),_e()}},nextItems:()=>{0==k.value?k.value=3:k.value--}}),e.ref({index0:999,index1:999});const Me=e.ref({directiveId:"",directiveName:"",startTime:"",endTime:"",positioning:"",positioningLong:"",tagName:"",cycleType:"",nuId:"1",customerId:"1",id:"",typeName:""}),Ae=e.ref(Array.from({length:24},((e,t)=>({positioning:t.toString(),children:Array.from({length:4},(()=>({directiveName:""})))}))));function Le(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}return(l,a)=>{var i,r,n,o;return e.openBlock(),e.createElementBlock("view",{class:"right-container",style:e.normalizeStyle(t.isshow?{opacity:"1"}:{opacity:"0"}),onClick:a[22]||(a[22]=e=>{Ee.value=!1,ae.value=!1})},[e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," ID:12345678 ",2),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," 名称:未命名01 ",2),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"right-icons-font-dark":"right-icons-font")},"王金福",2),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/face.png":"/static/index/undericons/facelight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/hand.png":"/static/index/undericons/handlight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/out.png":"/static/index/undericons/outlight.png"},null,8,["src"])]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button",onClick:a[0]||(a[0]=e=>P(0))},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 拖动模式 ")]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button-wrong",onClick:a[1]||(a[1]=e=>P(2))},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 手柄模式 ")])]),e.createElementVNode("view",{class:"doctorsay-container-view"},[e.createElementVNode("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"doctorsay-container-title"},[e.createElementVNode("view",{class:"doctorsay-container-left"},[e.createElementVNode("view",{class:"doctorsay-container-left-gun"}),e.createElementVNode("view",{class:"doctorsay-container-left-font"},"时间矩阵"),e.createElementVNode("view",{class:"doctorsay-container-share",onClick:te}," 分享 ")]),e.createElementVNode("view",{class:"doctorsay-container-right"},[e.createElementVNode("view",{class:"doctorsay-container-right-kuai-cheng"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"日常"),e.createElementVNode("view",{class:"doctorsay-container-right-kuai-zi"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"周期"),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(w.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"doctorsay-container-button-father",key:l},[e.createElementVNode("view",{class:e.normalizeClass(M.value===l?"doctorsay-container-button-target":"doctorsay-container-button"),onClick:e=>(e=>{M.value=e})(l)},e.toDisplayString(t),11,["onClick"])])))),128)),e.createElementVNode("view",{class:"doctorsay-container-juzhen",onClick:Ie}," 预览 ")])]),e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("view",{class:"boom"},[e.createElementVNode("view",{style:e.normalizeStyle({marginTop:`-${2*z.value}rpx`})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Ae.value[0].children,((l,a)=>(e.openBlock(),e.createElementBlock("view",{key:a},[e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(K.value===a||t.liang.index1===a&&!t.canmove||J.value.index1===a&&ae.value?"boom-son-target":"boom-son")},e.toDisplayString(l.typeName),3),[[e.vShow,l.typeName]])])))),128))],4)]),e.createElementVNode("swiper",{"disable-touch":!t.canmove||ae.value,current:k.value,class:"scroll-x",circular:"","indicator-dots":!1,onChange:B,interval:4e3,duration:500},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3,4],((l,i)=>e.createElementVNode("swiper-item",{key:i},[e.createElementVNode("view",{style:{display:"flex","box-shadow":"10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1)",background:"linear-gradient(to right, #c4dbf4,#c9c2ef, #c6dcf3)"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Ae.value.slice(6*i,6*(i+1)),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time",style:e.normalizeStyle(M.value?{width:"274rpx"}:{width:"206rpx"})},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),5)])))),128))]),e.createElementVNode("view",{style:{display:"flex",height:"calc(100% - 80rpx)"}},[e.createElementVNode("scroll-view",{style:e.normalizeStyle([{height:"100%"},M.value?{width:"6700rpx"}:{width:"5000rpx"}]),"scroll-top":p.value,"scroll-y":t.canmove&&!ae.value,onScroll:_,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Ae.value.slice(6*i,6*(i+1)),((l,i)=>(e.openBlock(),e.createElementBlock("view",{key:i},[e.createElementVNode("view",{class:"super-card-time-und",style:e.normalizeStyle(M.value?{width:"274rpx"}:{width:"206rpx"})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.children,((l,r)=>(e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:r},[e.createElementVNode("view",{class:e.normalizeClass(Fe.value.current===k.value&&Fe.value.index0===i&&Fe.value.index1===r?Fe.value.index1?"title-time-border-big":"title-time-border-big-top":"super-card-time-card"),style:e.normalizeStyle([Fe.value.bordershow||Ue.value.index0!==i||Ue.value.index1!==r?{borderTop:"1rpx solid transparent"}:{zIndex:999},{position:"relative"}]),id:`a${i}_${r}`,onClick:t=>((t,l,a,i)=>{t.directiveName&&(K.value=a,uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.left>100&&t.left<900&&t.top<570&&t.top>140&&t.dataset.index0==l&&t.dataset.index1==a&&(t.left>100&&t.left<400?W.value=Math.floor(t.left)+520:W.value=Math.floor(t.left),t.top>140&&t.top<300?Y.value=Math.floor(t.top)+250:Y.value=Math.floor(t.top),await e.nextTick(),f.value=!0,y.value=!1,setTimeout((()=>{y.value=!0}),100))}))})).exec())})(l,i,r),onTouchstart:e=>((e,t,l,a)=>{p.value=z.value,pe.value=[];let i=-1;q.value=Math.floor(a.touches[0].pageX),R.value=Math.floor(a.touches[0].pageY),j.value=setTimeout((()=>{e.directiveName&&(Ae.value.forEach(((t,l)=>{t.children.forEach((t=>{t.typeName===e.typeName&&t.directiveName&&pe.value.push(l),t.directiveName&&(i=l)}))})),pe.value.length?ge.value=l:ge.value=i+1,J.value.typeName=e.typeName,J.value.index0=t+6*k.value,J.value.index1=l,Be.value=[-1,-1],ie.value=[],ve.value=!0,uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((e=>{e.forEach((async e=>{e.left>100&&e.left<900&&e.top<570&&e.top>140&&ie.value.push(e)}))})).exec(),O("saveruler",e,ie.value),ae.value=!0)}),100)})(l,i,r,e),onTouchmove:re,onTouchend:a[2]||(a[2]=e=>(ve.value=!1,void(j.value&&(clearTimeout(j.value),j.value=null)))),"data-index0":i,"data-index1":r},[l.directiveName&&ae.value?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time-delete",onClick:e.withModifiers((e=>((e,t,l)=>{G.value=[-1,-1],ae.value=!1,Ee.value=!1,b.value=!1,E.value=!0,G.value=[t+6*k.value,l],V.value=e.directiveName,Q.value=e.id,setTimeout((()=>{b.value=!0}),100)})(l,i,r)),["stop"])}," - ",8,["onClick"])),[[e.vShow,t.liang.index0!==i||t.liang.index1!==r||t.canmove]]):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{class:"title-time-blue"},[e.createElementVNode("image",{class:"title-time-blue-img",src:I(i,r)?"/static/index/movemode/targetcheng.png":"/static/index/movemode/target.png"},null,8,["src"])],512),[[e.vShow,U(i,r)]]),e.createElementVNode("view",{class:e.normalizeClass(F(l,i,r)),style:e.normalizeStyle([{"font-size":"30rpx",overflow:"hidden"},{animationDelay:`-${S(i,r).toFixed(2)}s`}])},[l.startTime?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"margin-top":"5rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(l.startTime+"-"+l.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==l.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(l.cycleType),1)],512)),[[e.vShow,t.liang.index0!==i||t.liang.index1!==r||t.canmove]]):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{style:{"margin-top":"20rpx","font-weight":"700"}},e.toDisplayString(Le(l.directiveName)[0]),513),[[e.vShow,t.liang.index0!==i||t.liang.index1!==r||t.canmove]]),Le(l.directiveName)[1]?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:1,class:"down-icons",style:e.normalizeStyle("日常"!=l.cycleType?{backgroundColor:"rgb(212,203,255)"}:{})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Le(l.directiveName).slice(1),((t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:a},[e.createElementVNode("view",{class:"icon",style:e.normalizeStyle("日常"!=l.cycleType?{backgroundColor:"rgb(123,97,255)"}:{})},e.toDisplayString(Le(l.directiveName)[a+1]),5)])))),128))],4)),[[e.vShow,t.liang.index0!==i||t.liang.index1!==r||t.canmove]]):e.createCommentVNode("",!0)],6)],46,["id","onClick","onTouchstart","data-index0","data-index1"])])))),128))],4)])))),128))])],44,["scroll-top","scroll-y"])])]))),64))],40,["disable-touch","current"])])]),e.createElementVNode("view",{class:"super-card-end"},[e.createElementVNode("view",{class:"super-end-father"},[e.createElementVNode("view",{class:"super-end-font-father"},[e.createElementVNode("view",{class:"super-end-font-gun"}),e.createElementVNode("view",{class:"super-end-font-font"},"即时指令")]),e.createElementVNode("scroll-view",{"scroll-x":"",class:"super-end-items-all","scroll-left":v.value},[e.createElementVNode("view",{class:"super-end-items"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{onTouchstart:Ve,onTouchmove:be,onTouchend:ke,style:e.normalizeStyle(t.target?{background:t.target,transition:"all 1.5s ease-in-out"}:{transition:"all 1.5s ease-in-out"}),class:"super-end-items-father"},[e.withDirectives(e.createElementVNode("view",{class:"super-end-items-father-close-father",onClick:e.withModifiers((e=>((e,t)=>{Ee.value=!1,X.value=e,ae.value=!1,H.value=!1,Z.value=!0,V.value=t,setTimeout((()=>{H.value=!0}),100)})(l,t.name)),["stop"])}," - ",8,["onClick"]),[[e.vShow,Ee.value]]),e.createElementVNode("view",{style:e.normalizeStyle({animationDelay:`-${.1*l}s`}),class:e.normalizeClass(Ee.value?"super-end-items-img-father-active":"super-end-items-img-father")},[e.createElementVNode("image",{class:"super-end-items-img",src:t.url},null,8,["src"])],6),e.createElementVNode("view",{class:"super-end-items-font"},e.toDisplayString(t.name),1)],36)])))),128))])],8,["scroll-left"])])])]),e.createElementVNode("view",{class:"doctorsay-container-items"},[e.createElementVNode("view",{class:"doctorsay-container-up"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList($.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>(e=>{A.value=e,g.value=h.value[e].children,L.value=999})(l)},[e.createElementVNode("view",{class:"doctorsay-container-card",style:e.normalizeStyle(l===A.value?{background:"linear-gradient(to right bottom, #00c9ff, #0076ff)"}:{})},[e.createElementVNode("image",{class:"doctorsay-container-card-img",src:l===A.value?t.targetUrl:t.url},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(l===A.value?"doctorsay-container-card-font-dark":"doctorsay-container-card-font")},e.toDisplayString(t.name),3)],4)],8,["onClick"])))),128)),e.createElementVNode("view",null,[e.createElementVNode("view",{class:"doctorsay-container-card",style:{background:"linear-gradient(135deg, #01e7be 0%, #0080dd 100%)"}},[e.createElementVNode("image",{class:"doctorsay-container-card-img",src:"/static/index/shexiang.png"}),e.createElementVNode("view",{class:"doctorsay-container-card-font-dark"}," 监控 ")])])]),e.createElementVNode("view",{class:"doctorsay-container-down"},[e.createElementVNode("view",{class:"doctorsay-top"},[e.createElementVNode("view",{class:"doctorsay-top-gun"}),e.createElementVNode("view",{class:"doctorsay-top-font"},"服务类型")]),e.createElementVNode("scroll-view",{"scroll-y":t.canmove,class:"doctorsay-container-scroll",onScroll:se},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"doctorsay-container-button",onClick:e=>L.value=l,onTouchstart:e=>((e,t,l)=>{p.value=z.value,ae.value=!1,me.value=Math.floor(l.touches[0].pageX),ue.value=Math.floor(l.touches[0].pageY),ne.value=setTimeout((()=>{if(pe.value=[],oe.value)return;let l=-1,a=-1;Ae.value.forEach(((t,i)=>{t.children.forEach(((t,r)=>{t.typeName===e.title&&t.directiveName&&(pe.value.push(i),l=r),t.directiveName&&r>a&&(a=r)}))})),pe.value.length?ge.value=l:ge.value=a+1,de.value=!0,L.value=t,Be.value=[-1,-1],ve.value=!0,ie.value=[],uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((e=>{e.forEach((e=>{e.left>100&&e.left<900&&e.top<570&&e.top>140&&ie.value.push(e)}))})).exec(),O("savename",e.title,ie.value)}),200)})(t,l,e),onTouchmove:Ne,onTouchend:ye},[e.createElementVNode("text",{class:e.normalizeClass(L.value===l?"doctorsay-container-text-target":"doctorsay-container-text"),style:e.normalizeStyle({backgroundColor:t.color?t.color:"",...de.value?{}:{width:"250rpx",height:"75rpx",fontSize:"30rpx",borderRadius:"25rpx"}})},e.toDisplayString(t.title),7),e.withDirectives(e.createElementVNode("image",{class:"doctorsay-container-button-uplight",style:e.normalizeStyle(de.value?{}:{top:"30rpx"}),src:"/static/index/cardicons/uplight.png"},null,12,["src"]),[[e.vShow,L.value===l]])],40,["onClick","onTouchstart"])])))),128))],40,["scroll-y"])])])]),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay",onClick:a[4]||(a[4]=e=>{f.value=!1,J.value.index0=999,K.value=-1})},[e.createElementVNode("view",{class:"popup-overlay-content",style:e.normalizeStyle({top:2*Y.value-350+"rpx",left:2*W.value-780+"rpx",opacity:y.value?1:0,backgroundColor:"日常"===(null==(r=null==(i=Ae.value[J.value.index0])?void 0:i.children[J.value.index1])?void 0:r.type)?"#fffcf6":"rgb(246, 244, 254)"}),onClick:a[3]||(a[3]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"},e.toDisplayString(null==(o=null==(n=Ae.value[J.value.index0])?void 0:n.children[J.value.index1])?void 0:o.value),1)]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],4)],512),[[e.vShow,f.value]]),N.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-song",onClick:a[11]||(a[11]=e=>N.value=!1)},[e.createElementVNode("view",{class:"popup-song-contain",style:e.normalizeStyle({opacity:x.value?1:0}),onClick:a[10]||(a[10]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-song-father"},[e.createElementVNode("image",{class:"shu-up-img",src:"/static/index/cheng.png"}),e.createElementVNode("view",{class:"shu-up-font"},[e.createElementVNode("view",{class:""}," 服务时段:"+e.toDisplayString(Te.value.time+":00"),1),e.createElementVNode("view",{style:{"margin-left":"30rpx"}}," 护理时长:10分钟 ")]),e.createElementVNode("view",{class:"shu-container-left"},[e.createElementVNode("view",{class:"shu-container-left-gun"}),e.createElementVNode("view",{class:"shu-container-left-font"},"服务指令")]),e.createElementVNode("view",{class:"arrayindex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Te.value.array,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{style:{position:"relative","box-shadow":"10rpx 10rpx 20rpx rgba(105, 129, 178, 0.4)"},class:e.normalizeClass(De.value.op.index[2]===l?"arrayindex-one-target":"arrayindex-one"),onClick:e=>Se(l,t)},[e.withDirectives(e.createElementVNode("image",{class:"ri-img",src:De.value.op.index[2]!==l?"/static/index/ridark.png":"/static/index/ri.png"},null,8,["src"]),[[e.vShow,"日常护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"ri-img",src:De.value.op.index[2]==l?"/static/index/zhoudark.png":"/static/index/zhou.png"},null,8,["src"]),[[e.vShow,"周期护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"ri-img",src:De.value.op.index[2]==l?"/static/index/jidark.png":"/static/index/ji.png"},null,8,["src"]),[[e.vShow,"即时护理"===t.cycleType]]),e.createTextVNode(" "+e.toDisplayString(t.relName),1)],10,["onClick"])])))),128))]),e.withDirectives(e.createElementVNode("view",{class:"shu-container-left",style:{"margin-top":"50rpx"}},[e.createElementVNode("view",{class:"shu-container-left-gun"}),e.createElementVNode("view",{class:"shu-container-left-font"},"开始分钟")],512),[[e.vShow,2!=Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"time-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(s,((t,l)=>e.createElementVNode("view",{key:l},[e.withDirectives(e.createElementVNode("view",{class:"time-one-hui"},e.toDisplayString(t),513),[[e.vShow,Number(t)>=50]]),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(De.value.startTime===t?"time-one-target":"time-one"),onClick:e=>(e=>{De.value.startTime==e?De.value.startTime="":De.value.startTime=e})(t)},e.toDisplayString(t),11,["onClick"]),[[e.vShow,Number(t)<50]])]))),64))],512),[[e.vShow,2!=Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"shu-container-left",style:{"margin-top":"50rpx"}},[e.createElementVNode("view",{class:"shu-container-left-gun"}),e.createElementVNode("view",{class:"shu-container-left-font"},"周期类型")],512),[[e.vShow,1==Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"radio-father"},[e.createElementVNode("view",{class:e.normalizeClass(u.value?"radio-circle-target":"radio-circle"),onClick:a[5]||(a[5]=e=>{u.value=!0,De.value.monthTime=""})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[6]||(a[6]=e=>{u.value=!0,De.value.monthTime=""})},"每周"),e.createElementVNode("view",{class:e.normalizeClass(u.value?"radio-circle":"radio-circle-target"),onClick:a[7]||(a[7]=e=>{u.value=!1,De.value.weekTime=""})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[8]||(a[8]=e=>{u.value=!1,De.value.weekTime=""})},"每月")],512),[[e.vShow,1==Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"week-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(d,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(De.value.weekTime===t?"week-one-target":"week-one"),onClick:e=>(e=>{De.value.weekTime==e?De.value.weekTime="":De.value.weekTime=e})(t)},e.toDisplayString(t),11,["onClick"])]))),64))],512),[[e.vShow,u.value&&1==Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"month-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(m),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(De.value.monthTime===t?"month-one-target":"month-one"),onClick:e=>(e=>{De.value.monthTime==e?De.value.monthTime="":De.value.monthTime=e})(t)},e.toDisplayString(t),11,["onClick"])])))),128))],512),[[e.vShow,!u.value&&1==Ce.value]]),e.createElementVNode("view",{class:"button-father"},[e.createElementVNode("view",{style:{display:"flex"}},[e.withDirectives(e.createElementVNode("view",{class:"button-father-right",onClick:ze}," 确定 ",512),[[e.vShow,fe()]]),e.withDirectives(e.createElementVNode("view",{class:"button-father-wrong"}," 确定 ",512),[[e.vShow,!fe()]]),e.createElementVNode("view",{class:"button-father-wrong",onClick:a[9]||(a[9]=e=>N.value=!1),style:{"margin-left":"20rpx"}}," 取消 ")])])])],4)])):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{class:"popup-delete",onClick:a[15]||(a[15]=e=>E.value=!1)},[e.createElementVNode("view",{class:"popup-delete-content",style:e.normalizeStyle({opacity:b.value?1:0}),onClick:a[14]||(a[14]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("image",{class:"popup-delete-img",src:T}),e.createElementVNode("view",{class:"popup-delete-text"}," 确定要删除 "+e.toDisplayString(V.value)+" 吗? ",1),e.createElementVNode("view",{class:"popup-delete-button"},[e.createElementVNode("view",{class:"popup-delete-button-right",onClick:a[12]||(a[12]=e=>E.value=!1)}," 取消 "),e.createElementVNode("view",{class:"popup-delete-button-left",onClick:a[13]||(a[13]=e=>((e,t)=>{Ae.value[e].children[t]={directiveName:""},f.value=!1,J.value.index0=999,J.value.index1=999;let l=[],a=0;Ae.value.forEach(((e,t)=>{l=[],a=e.children.length,e.children.forEach(((e,t)=>{null!==e.directiveName&&""!==e.directiveName&&void 0!==e.directiveName||Ae.value.every((e=>{const l=e.children[t];return void 0===l||null===l.directiveName||""===l.directiveName||void 0===l.directiveName}))&&l.push(t)}))})),a>4&&l.length>1?Ae.value.forEach(((e,t)=>{e.children.splice(l[0],1)})):Ae.value.forEach(((e,t)=>{e.children.splice(l[0],1),e.children.push({directiveName:""})})),E.value=!1,_e()})(G.value[0],G.value[1]))}," 确定 ")])],4)],512),[[e.vShow,E.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-delete",onClick:a[19]||(a[19]=e=>Z.value=!1)},[e.createElementVNode("view",{class:"popup-delete-content",style:e.normalizeStyle({opacity:H.value?1:0}),onClick:a[18]||(a[18]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("image",{class:"popup-delete-img",src:T}),e.createElementVNode("view",{class:"popup-delete-text"}," 确定要删除 "+e.toDisplayString(V.value)+" 吗? ",1),e.createElementVNode("view",{class:"popup-delete-button"},[e.createElementVNode("view",{class:"popup-delete-button-right",onClick:a[16]||(a[16]=e=>Z.value=!1)}," 取消 "),e.createElementVNode("view",{class:"popup-delete-button-left",onClick:a[17]||(a[17]=e=>{c.value.splice(X.value,1),Z.value=!1})}," 确定 ")])],4)],512),[[e.vShow,Z.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-share",onClick:a[21]||(a[21]=e=>ee.value=!1)},[e.createElementVNode("view",{class:"popup-share-content",style:e.normalizeStyle({opacity:H.value?1:0}),onClick:a[20]||(a[20]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-share-title"},[e.createTextVNode(" 护理日程分享 "),e.createElementVNode("image",{class:"popup-share-img",src:D})]),e.createElementVNode("view",{class:"popup-share-upcontent"},[e.createElementVNode("view",{class:"popup-share-font"},"久泰护理日程分享测试")]),e.createElementVNode("view",{class:"popup-share-gray"}),e.createElementVNode("view",{class:"popup-share-downcontent"},[e.createElementVNode("view",{class:"popup-share-downcontent-left"},[e.createElementVNode("image",{class:"popup-downcontent-img",src:D}),e.createElementVNode("view",{class:"popup-downcontent-font"},"久泰护理")]),e.createElementVNode("view",{class:"popup-share-downcontent-button",onClick:le}," 分享 ")])],4)],512),[[e.vShow,ee.value]])],4)}}}),[["__scopeId","data-v-81c0d68b"]]),B="/static/index/ku.png",z="/static/index/ren.png",_="/static/index/tu.png",I=[{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706886",title:"协助喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604232524795905",title:"鼻饲喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604428667228162",title:"注射器/吸管喂药",tagName:"头部,大体重"}],levle:"2",title:"协助喂药",key:"1900114812020310017",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605892869394433",title:"一级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606105021485058",title:"二级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606339931869185",title:"三级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606614344208386",title:"一级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606869953482753",title:"二级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607023431454722",title:"三级压疮防护",tagName:"大体重"}],levle:"2",title:"压疮防护",key:"1900115034452639746",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706887",title:"床椅转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706888",title:"床椅转移",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605073730211842",title:"床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605223185846273",title:"床椅转移",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605365393723393",title:"协助床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605496071458818",title:"协助床椅转移",tagName:null}],levle:"2",title:"床椅转移",key:"1902248363784159233",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607507626102786",title:"轮椅防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607677415723010",title:"轮椅防护",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902607817589362689",title:"轮椅防护",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902608061588803585",title:"轮椅防护",tagName:"大体重"}],levle:"2",title:"轮椅防护",key:"1902280900178886657",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608564582322178",title:"约束位按摩",tagName:"手"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608974609092610",title:"约束位按摩",tagName:"足"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618507855237121",title:"约束位按摩",tagName:"全"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618751548493825",title:"防护网约束",tagName:null}],levle:"2",title:"约束防护",key:"1902280933364219906",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620309090701314",title:"协助行走",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620486044192769",title:"放松按摩",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902625161569079298",title:"心灵慰藉",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902625402468929537",title:"狂躁",tagName:null}],levle:"2",title:"按摩保健",key:"1902564031454744577",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902625872432304130",title:"准备衣物",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626005538541569",title:"协助更换",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626664711163905",title:"肢体障碍",tagName:"半侧"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626800510144513",title:"肢体障碍",tagName:"全身"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627064688381953",title:"准备衣物",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627280716009474",title:"协助更换",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627416598876161",title:"肢体障碍",tagName:"半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627522404388866",title:"肢体障碍",tagName:"全身"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902627711806574593",title:"协助更换",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628058591629313",title:"肢体障碍",tagName:"半侧,大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628650718302209",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628837725540354",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628966847188993",title:"肢体障碍",tagName:"大体重,半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902629129879785474",title:"协助更换",tagName:"大体重"}],levle:"2",title:"更换衣物",key:"1902564088417587201",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629344456183809",title:"坐起",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629492301205506",title:"躺下",tagName:null}],levle:"2",title:"调整坐卧",key:"1902564199830884354",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902630862769065985",title:"遗体净身",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902631162275926017",title:"遗体穿衣",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631422431825921",title:"遗体转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631602463936514",title:"床位消毒",tagName:null}],levle:"2",title:"殡仪服务",key:"1902564263743688705",parentId:"1900112597427793921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902631830441136129",title:"更换床上用品",tagName:"全部"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632063828987905",title:"隔尿褥子更换",tagName:null}],levle:"2",title:"更换床上用品",key:"1902564446648897538",parentId:"1900112597427793921"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632288270389250",title:"临终护理",tagName:null}],levle:"2",title:"临终服务",key:"1902564503783706625",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"40",id:"1902632678701371393",title:"制氧机吸氧",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902632799853842433",title:"制氧机维护",tagName:null}],levle:"2",title:"制氧机应用",key:"1902564586101116930",parentId:"1900112597427793921"}],levle:"1",title:"1 日常照料",key:"1900112597427793921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900376187661553665",title:"准备洁具",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900420873478553602",title:"棉球清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706881",title:"协助清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706885",title:"义齿清洁",tagName:"口腔"}],levle:"2",title:"口腔清洁",key:"1902597070889127938",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902636771540963329",title:"准备洁具",tagName:"头部"},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637623425077250",title:"协助洗头",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637985234128898",title:"卧式洗头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902638122949906433",title:"擦头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902638304739430401",title:"刮头",tagName:null}],levle:"2",title:"头部清洁",key:"1902597497344987137",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902641763073101826",title:"准备洁具",tagName:"面部"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642254465175553",title:"协助洁面",tagName:null}],levle:"2",title:"面部清洁",key:"1902597651405967361",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642508145070081",title:"准备洁具",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642672796667905",title:"协助清洁",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642822885642242",title:"卧床清洁",tagName:"躯干"}],levle:"2",title:"躯干清洁",key:"1902597718082818050",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643318811758594",title:"准备洁具",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643483320750082",title:"协助清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643630888947713",title:"卧床清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643837525528578",title:"肌张力高",tagName:"清洁"}],levle:"2",title:"四肢清洁",key:"1902597811565465601",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645148199391234",title:"会阴清洁",tagName:"男"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645295457210369",title:"会阴清洁",tagName:"女"}],levle:"2",title:"会阴清洁",key:"1902597873964126209",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645493185089537",title:"肛周清洁",tagName:null}],levle:"2",title:"肛周清洁",key:"1902597930020999170",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645693211447298",title:"洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647316134465538",title:"泡手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647529817477122",title:"准备洁具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647673212342274",title:"协助洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647905878773762",title:"强直屈曲洗手",tagName:null}],levle:"2",title:"手清洁",key:"1902597991698239489",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648101203316737",title:"泡脚",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648239091060737",title:"卧式泡脚",tagName:null}],levle:"2",title:"足清洁",key:"1902598178588037121",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648426383511553",title:"修睫毛",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648548777496577",title:"剃须",tagName:null}],levle:"2",title:"剃须",key:"1902598258573414401",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648962444922882",title:"角质增生",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649132536532994",title:"灰指甲",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649302149992449",title:"正常",tagName:"修甲"}],levle:"2",title:"修甲",key:"1902598354606198785",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902649683919736834",title:"理发",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"25",id:"1902649860344745985",title:"理发",tagName:"颅骨缺损"}],levle:"2",title:"理发",key:"1902598400382832642",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902650121280786434",title:"床上沐浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650408884211713",title:"深度清洁",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650763722330113",title:"浴间洗浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"30",id:"1902651229122301954",title:"床上沐浴",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651366317985794",title:"深度清洁",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651555363655682",title:"浴间洗浴",tagName:"大体重"}],levle:"2",title:"沐浴",key:"1902598454782955522",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651778777452545",title:"内套管清洁",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651924047171586",title:"更换气切纱布",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"10",id:"1902652055928672258",title:"更换气切纱布",tagName:null}],levle:"2",title:"气切消毒",key:"1902598509522817026",parentId:"1900112615777873921"}],levle:"1",title:"2 清洁照料",key:"1900112615777873921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898057679966209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898202668666881",title:"协助进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898339931459586",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898472584712194",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898590658564097",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898719952179201",title:"准备餐具",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898979948695554",title:"协助进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899086840532993",title:"协助进餐",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899214838108162",title:"鼻胃管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899325014085633",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899587028062210",title:"食物加工",tagName:null}],levle:"2",title:"加餐饮食",key:"1902596129720864770",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281139677839362",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902281522340970498",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281654100836354",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281870434648066",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902654960639381506",title:"鼻肠管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902655101874180097",title:"轮椅进餐",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902892199009030145",title:"轮椅进餐",tagName:null}],levle:"2",title:"正餐饮食",key:"1902601263850950657",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893231608926209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893551978254337",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893716466274306",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894369850757122",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894528533860354",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"辅餐饮食",key:"1902601382595891202",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894832176304129",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894954117304322",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895077522116609",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895233407619073",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895569912434689",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"果汁饮食",key:"1902601427168759809",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895878508351489",title:"准备水杯",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895984053817346",title:"协助饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896136835534850",title:"协助饮水",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896508421509122",title:"鼻胃管饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896636553302017",title:"鼻肠管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902896855802155010",title:"准备水杯",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897018344017921",title:"协助饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897464936730626",title:"协助饮水",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897675813752834",title:"鼻胃管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897803417063426",title:"鼻肠管饮水",tagName:null}],levle:"2",title:"饮水饮食",key:"1902601487625457665",parentId:"1902280495747317762"}],levle:"1",title:"3 饮食照料",key:"1902280495747317762"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902653177363927041",title:"巡视",tagName:null}],levle:"2",title:"巡视",key:"1902564741860790273",parentId:"1902560466095017986"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653325481578497",title:"防坠床",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653497066360833",title:"被褥调整",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653650917625857",title:"睡姿调整",tagName:null}],levle:"2",title:"体位调整",key:"1902564818838851585",parentId:"1902560466095017986"}],levle:"1",title:"4 睡眠照料",key:"1902560466095017986"},{children:[{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904277308510210",title:"更换尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904458779267073",title:"更换隔尿垫",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905631242424322",title:"使用尿盆",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905824973131777",title:"使用尿壶",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906220483416065",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906459051233281",title:"坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906610562076674",title:"留置尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906783325458434",title:"更换纸尿裤",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908406344945665",title:"热敷抚触排尿",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908523827400705",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909645401067522",title:"更换尿片",tagName:null}],levle:"2",title:"小便",key:"1902596314152800257",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909835331735554",title:"床上排便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910002671882242",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910156154048514",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910361008050178",title:"人工取便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910524623654913",title:"造瘘袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910700176248834",title:"坐便椅",tagName:null}],levle:"2",title:"大便",key:"1902596399423000577",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910899565072385",title:"口腔吸痰",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911047405899778",title:"气切吸痰",tagName:null}],levle:"2",title:"吸痰",key:"1902596461238652930",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911232974491650",title:"呕吐",tagName:null}],levle:"2",title:"呕吐",key:"1902596886771765250",parentId:"1902560510768549889"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902911378349068290",title:"腹腔引流护理",tagName:null}],levle:"2",title:"引流",key:"1902596940366581762",parentId:"1902560510768549889"}],levle:"1",title:"5 排泄照料",key:"1902560510768549889"}],U=s(e.defineComponent({__name:"joysticknew",props:{getblue:{type:Boolean,default:!1},movebottom:{type:Number,default:0},moveright:{type:Number,default:110},pao:{type:Boolean,default:!0},notext:{type:Boolean,default:!1}},emits:["movecard"],setup(t,{emit:l}){const a=l,i=e.ref(-1);let r=null,n=null,o=!1;const c=e.ref(-1),s=e.reactive({x:0,y:0}),d=e.ref(!1),m=e.ref(!1),u=e.ref(0),v=uni.upx2px(175),p=uni.upx2px(350);uni.upx2px(-50);const g=uni.upx2px(100),w=uni.getSystemInfoSync().windowHeight-g-p,h=t,f=e.ref(!1),N=e.ref(0);function y(e,t){if(!o){if(V(),i.value=e,a("movecard",e),(null==t?void 0:t.touches)&&t.touches.length){const e=t.touches[0];k(e.pageX,e.pageY)}m.value=!1,u.value++,c.value=e,setTimeout((()=>{c.value=-1}),300),setTimeout((()=>{m.value=!0}),16),r=setTimeout((()=>{i.value=-1,r=null}),300)}}function x(e,t){b(),o=!0,d.value=!0,c.value=e;const l=((null==t?void 0:t.touches)||[])[0];l&&k(l.pageX,l.pageY),i.value=e,a("movecard",e),n=setInterval((()=>{i.value=e,a("movecard",e)}),500)}function E(){V(),b(),o=!1,d.value=!1,i.value=-1,c.value=-1}function V(){r&&(clearTimeout(r),r=null)}function b(){n&&(clearInterval(n),n=null)}function k(e,t){let l=e,a=t-w-50+h.movebottom/2;const i=l-v,r=a-v;if(Math.sqrt(i*i+r*r)>v){const e=Math.atan2(r,i);l=v+v*Math.cos(e),a=v+v*Math.sin(e)}s.x=l,s.y=a}function T(e){var t;if(!o)return;const l=((null==(t=e.detail)?void 0:t.touches)||e.touches||[])[0];l&&k(l.pageX,l.pageY)}return e.ref(0),e.watch((()=>h.getblue),(e=>{})),e.onBeforeUnmount((()=>{})),(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"move-circle",style:e.normalizeStyle({bottom:`${t.movebottom}rpx`,right:`${t.moveright}rpx`}),onTouchmove:T,onTouchend:E,onTouchcancel:E},[e.withDirectives(e.createElementVNode("image",{src:"/static/index/camera/arrow1.png",class:"move-circle-all"},null,512),[[e.vShow,-1==c.value||4==c.value]]),e.withDirectives(e.createElementVNode("image",{src:"/static/index/camera/arrow3.png",class:"move-circle-all"},null,512),[[e.vShow,3==c.value]]),e.withDirectives(e.createElementVNode("image",{src:"/static/index/camera/arrow5.png",class:"move-circle-all"},null,512),[[e.vShow,2==c.value]]),e.withDirectives(e.createElementVNode("image",{src:"/static/index/camera/arrow4.png",class:"move-circle-all"},null,512),[[e.vShow,0==c.value]]),e.withDirectives(e.createElementVNode("image",{src:"/static/index/camera/arrow2.png",class:"move-circle-all"},null,512),[[e.vShow,1==c.value]]),f.value?(e.openBlock(),e.createElementBlock("view",{class:"pulse-circle",key:N.value})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"click-box-top",onClick:a[0]||(a[0]=e=>y(0,e)),onLongpress:a[1]||(a[1]=e=>x(0,e))},null,32),e.createElementVNode("view",{class:"click-box-left",onClick:a[2]||(a[2]=e=>y(3,e)),onLongpress:a[3]||(a[3]=e=>x(3,e))},null,32),e.createElementVNode("view",{class:"click-box-bottom",onClick:a[4]||(a[4]=e=>y(2,e)),onLongpress:a[5]||(a[5]=e=>x(2,e))},null,32),e.createElementVNode("view",{class:"click-box-right",onClick:a[6]||(a[6]=e=>y(1,e)),onLongpress:a[7]||(a[7]=e=>x(1,e))},null,32),e.createElementVNode("view",{class:"click-box-center",onClick:a[8]||(a[8]=e=>y(4,e)),onLongpress:a[9]||(a[9]=e=>x(4,e))},null,32)],36))}}),[["__scopeId","data-v-a880c760"]]),F=s(e.defineComponent({__name:"index",props:{isshow:{type:Boolean,required:!0},darkFans:{type:Boolean,required:!0},canmove:{type:Boolean,required:!0},liang:{type:Object},isold:{type:Boolean,required:!0}},emits:["darkchange","savename","saveruler","closename","changefangkuang","changeold"],setup(t,{expose:a,emit:i}){const o=t;e.watch((()=>o.isold),(()=>{o.isold&&(te.value.index0=9,te.value.index1=0,Oe(),h.value=1,f.value=1,e.nextTick((()=>{f.value=0,h.value=605})))})),e.watch((()=>o.canmove),(()=>{ye.value=!1})),e.watch((()=>o.isshow),((t,l)=>{t!==l&&(ye.value=!1,ve.value=!1,Ie.value?Ie.value--:(te.value.index0=9,te.value.index1=0,Oe(),h.value=1,f.value=1,e.nextTick((()=>{f.value=0,h.value=605}))))}));const c=e.ref([{name:"纸尿裤",url:"/static/index/niao.png",target:"#fff",id:-1},{name:"呕吐",url:"/static/index/tu.png",target:"#fff",id:-1},{name:"吸痰",url:"/static/index/ou.png",target:"#fff",id:-1},{name:"大便",url:"/static/index/baba.png",target:"#fff",id:-1},{name:"纸尿裤",url:"/static/index/niao.png",target:"#fff",id:-1},{name:"呕吐",url:"/static/index/tu.png",target:"#fff",id:-1},{name:"吸痰",url:"/static/index/ou.png",target:"#fff",id:-1},{name:"大便",url:"/static/index/baba.png",target:"#fff",id:-1}]),s=["狂躁","正常","大体重","口腔","小体重","头部","面部","躯干","四肢","修甲","颅骨缺损"],d=["周一","周二","周三","周四","周五","周六","周日"],m=Array.from({length:31},((e,t)=>(t+1).toString().padStart(2,"0"))),u=e.ref(!0),v=e.ref(!1),p=e.ref(0),g=e.ref(0),w=e.ref(0),h=e.ref(678),f=e.ref(0),N=e.ref();e.ref([]);const y=e.ref(!1),x=e.ref([]),E=e.ref(!1);e.ref(!1);const V=e.ref(!1);e.ref(!1),e.ref(!1),e.ref(""),e.ref(!1);const b=e.ref(!1);e.ref("");const k=e.ref(!1);e.ref(0),e.ref(0),e.ref(6),e.ref(11),e.ref(0),e.ref(3);const T=e.ref(!1);e.onMounted((()=>{}));const C=e.ref(0);const S=()=>{let e=JSON.parse(JSON.stringify($e.value[oe.value.index0].children[oe.value.index1]));be.value=[te.value.index0,te.value.index1];let t=$e.value[oe.value.index0].children[oe.value.index1].typeName;$e.value[oe.value.index0].children[oe.value.index1]={directiveName:"",typeName:t};let l=$e.value[be.value[0]].children[be.value[1]].typeName;$e.value[be.value[0]].children[be.value[1]]=e,$e.value[be.value[0]].children[be.value[1]].typeName=l;let a=$e.value[be.value[0]].children[be.value[1]].startTime,i=$e.value[be.value[0]].children[be.value[1]].endTime,r=$e.value[be.value[0]].positioning;const n=a.split(":")[1],o=i.split(":")[1];let c=Number(o)-Number(n),s=l,d=Number(s)+c;$e.value[be.value[0]].children[be.value[1]].startTime=r+":"+s.padStart(2,"0"),$e.value[be.value[0]].children[be.value[1]].endTime=r+":"+String(d%60).padStart(2,"0"),oe.value.index0=-1,oe.value.index1=-1,T.value=!1;let m={index0:te.value.index0,index1:te.value.index1};Ue(m)},F=()=>{P.value=!1,T.value?S():$e.value[te.value.index0].children[te.value.index1].directiveName&&(oe.value.index0=te.value.index0,oe.value.index1=te.value.index1,T.value=!0)};e.ref(!0),e.ref(!1);const $=e=>{switch(P.value=!1,e){case 0:te.value.index1&&(te.value.index1--,Oe());break;case 1:if(23==te.value.index0)return;te.value.index0++,Oe();break;case 2:if(11==te.value.index1)return;te.value.index1++,Oe();break;case 3:if(0==te.value.index0)return;te.value.index0--,Oe()}},M=e.ref(""),A=e.ref(-1),L=e.ref(""),O=e.ref(-1),P=e.ref(!1),j=()=>{$e.value[te.value.index0].children[te.value.index1].directiveName&&(P.value?(P.value=!1,ge(te.value.index0,te.value.index1)):P.value=!0)};function q(e,t){return 2*function(e,t){const l=55.9898*e+78.233*t;return Math.abs(43758.5453*Math.sin(l))%1}(e,t)}e.ref(!1),e.ref(0);const R=e.ref(0),W=e.ref(0);function Y(e){let t=e.detail.scrollTop;R.value=e.detail.scrollTop;let l=parseFloat(t.toFixed(2));W.value=l}const J=e.ref(0);function X(e){J.value=e.detail.scrollLeft}e.ref(!0);const Z=(e,t,l)=>"日常"===e.cycleType?oe.value.index0===t&&oe.value.index1===l?"title-time-border-yellow-active-transparent":ve.value?"title-time-border-yellow-active":"title-time-border-yellow":e.cycleType?oe.value.index0===t&&oe.value.index1===l?"title-time-border-pouple-active-transparent":ve.value?"title-time-border-pouple-active":"title-time-border-pouple":"title-time-border",H=e.ref([{url:"/static/index/firstTags/30.png",targetUrl:"/static/index/firstTags/21.png",name:"日常"},{url:"/static/index/firstTags/10.png",targetUrl:"/static/index/firstTags/99.png",name:"清洁"},{url:"/static/index/firstTags/40.png",targetUrl:"/static/index/firstTags/31.png",name:"饮食"},{url:"/static/index/firstTags/00.png",targetUrl:"/static/index/firstTags/01.png",name:"睡眠"},{url:"/static/index/firstTags/20.png",targetUrl:"/static/index/firstTags/11.png",name:"排泻"},{url:"/static/index/firstTags/50.png",targetUrl:"/static/index/firstTags/41.png",name:"影像"}]),G=e.ref(0),Q=e.ref(0),K=e.ref(0);e.ref(!1),e.ref([]);const ee=i;e.ref(!1);const te=e.ref({index0:9,index1:0});e.ref(0),e.ref([]);const le=e.ref(null);e.ref({});const ae=e.ref(0),ie=e.ref(0),re=e.ref(0),ne=e.ref(0),oe=e.ref({index0:999,index1:999,typeName:""});e.ref(-1),e.ref(!1);const ce=e.ref(!1),se=e.ref(-1),de=e.ref(!1),me=()=>{de.value=!0,ce.value=!1,setTimeout((()=>{ce.value=!0}),100)},ue=()=>{uni.share({provider:"weixin",scene:"WXSceneSession",type:0,href:"http://192.168.2.31:3101/daytoday",title:"护理日程分享",summary:"九泰护理日程测试",imageUrl:"https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/uni@2x.png",success:function(e){l("log","at component/rightItemssecondrelnew/index.vue:943","success:")},fail:function(e){l("log","at component/rightItemssecondrelnew/index.vue:946","fail:")}})},ve=e.ref(!1);e.ref([]);const pe=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-ae.value)>0||Math.abs(l-ie.value)>0)&&le.value&&(clearTimeout(le.value),le.value=null)},ge=(e,t)=>{let l=$e.value[e].children[t].typeName;$e.value[e].children[t]={directiveName:"",typeName:l}};e.ref(null),e.ref(!1),e.ref(!1);const we=e.ref(0),he=e.ref(0),fe=e.ref(!1);e.ref(""),e.ref("");const Ne=e.ref(null),ye=e.ref(!1),xe=e=>{we.value=Math.floor(e.touches[0].pageX),he.value=Math.floor(e.touches[0].pageY),Ne.value=setTimeout((()=>{ye.value=!0}),500)},Ee=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-we.value)>0||Math.abs(l-he.value)>0)&&Ne.value&&(clearTimeout(Ne.value),Ne.value=null)},Ve=()=>{Ne.value&&(clearTimeout(Ne.value),Ne.value=null)};e.ref({time:"",minute:"",array:[]}),e.ref({op:{name:"",index:[-1,-1,-1]},startTime:"",weekTimeNumber:-1,monthTimeNumber:-1,monthTime:"",weekTime:""}),e.ref(0);const be=e.ref([-1,-1]);e.ref(null);const ke=()=>{k.value=!1,b.value=!0,setTimeout((()=>{k.value=!0}),50)},Te=()=>{if(P.value)return P.value=!1,void ge(te.value.index0,te.value.index1);if(T.value)return void S();oe.value.index0=-1,oe.value.index1=-1,T.value=!1;let t=!1,a=x.value[G.value].children[Q.value].children[K.value];if("即时护理"===a.cycleType)return w.value=1,c.value.forEach(((e,l)=>{e.id===a.id&&(t=!0)})),void e.nextTick((()=>{t?(clearTimeout(Ce.value),y.value=!0,Ce.value=setTimeout((()=>{y.value=!1}),1e3)):(w.value=0,c.value.length&&"#00a8ff"===c.value[0].target&&(c.value[0].target="#fff",clearTimeout(De.value)),c.value.unshift({name:a.title,url:"/static/index/ou.png",target:"#00a8ff",id:a.id}),l("log","at component/rightItemssecondrelnew/index.vue:1188","!!!!",c.value),De.value=setTimeout((()=>{c.value[0].target="#fff"}),1500))}));if("周期护理"===a.cycleType&&v.value&&-1==A.value&&-1==O.value)return;if("周期护理"===a.cycleType&&!v.value)return void(v.value=!0);let i="";"日常护理"===a.cycleType?i="日常":(i=-1!==A.value?M.value:L.value+"号",v.value=!1,A.value=-1,O.value=-1,M.value="",L.value="");const r=Number(te.value.index0),n=Number($e.value[te.value.index0].children[te.value.index1].typeName),o=n+10,s=r+Math.floor(o/60),d=`${String(r)}:${String(n).padStart(2,"0")}`,m=`${String(s)}:${String(o%60).padStart(2,"0")}`;$e.value[te.value.index0].children[te.value.index1].startTime=d,$e.value[te.value.index0].children[te.value.index1].endTime=m;let u={directiveId:a.id,directiveName:a.title,startTime:d,endTime:m,positioning:te.value.index0.toString(),positioningLong:te.value.index1.toString(),tagName:a.tagName,cycleType:i,nuId:"1",customerId:"1",id:"",typeName:$e.value[te.value.index0].children[te.value.index1].typeName};$e.value[te.value.index0].children[te.value.index1]=u;let p={index0:te.value.index0,index1:te.value.index1};Ue(p),Se()},De=e.ref(null),Ce=e.ref(null),Se=()=>{$e.value.forEach(((e,t)=>{e.children.forEach(((e,l)=>{let a="";if(e.directiveName||e.id)e.positioning=t,e.positioningLong=l;else{let i={};e.typeName&&(a=e.typeName),i=JSON.parse(JSON.stringify(Ae.value)),a&&(i.typeName=a),i.positioning=t,i.positioningLong=l}}))}))},Be=()=>{uni.setStorage({key:"myArray",data:$e.value,success:function(){uni.navigateTo({url:"/pages/timeMatrix/indexnew"})}})},ze=e.ref({index0:-1,index1:-1}),_e=e.ref({index0:-1,index1:-1,current:-1,bordershow:!0}),Ie=e.ref(0),Ue=e=>{te.value.index0=e.index0,te.value.index1=e.index1,Oe(),_e.value.index0=e.index0,_e.value.index1=e.index1,ze.value.index0=_e.value.index0,ze.value.index1=_e.value.index1,_e.value.bordershow=!1,setTimeout((()=>{_e.value.index0=-1,_e.value.index1=-1,_e.value.current=-1}),400),setTimeout((()=>{_e.value.bordershow=!0,ze.value.index0=-1,ze.value.index1=-1}),1e3)},Fe=["00","05","10","15","20","25","30","35","40","45","50","55"],$e=e.ref(Array.from({length:24},((e,t)=>({positioning:t.toString(),children:Fe.map((e=>({typeName:e,directiveName:""})))}))));function Me(e){Ie.value=3,Ue(e)}r((()=>{x.value=I,N.value=x.value[0].children,uni.$on("where",Me)})),n((()=>{uni.$off("where",Me)})),a({rulerMoveEnd:e=>{if(999!==o.liang.index0&&e.cycleType){be.value=[o.liang.index0,o.liang.index1];let t=$e.value[oe.value.index0].children[oe.value.index1].typeName;$e.value[oe.value.index0].children[oe.value.index1]={directiveName:"",typeName:t};let l=$e.value[be.value[0]].children[be.value[1]].typeName;$e.value[be.value[0]].children[be.value[1]]=e,$e.value[be.value[0]].children[be.value[1]].typeName=l;let a=$e.value[be.value[0]].children[be.value[1]].startTime,i=$e.value[be.value[0]].children[be.value[1]].endTime,r=$e.value[be.value[0]].positioning;const n=a.split(":")[1],c=i.split(":")[1];let s=Number(c)-Number(n),d=l,m=Number(d)+s;$e.value[be.value[0]].children[be.value[1]].startTime=r+":"+d.padStart(2,"0"),$e.value[be.value[0]].children[be.value[1]].endTime=r+":"+String(m%60).padStart(2,"0")}}}),e.ref({index0:999,index1:999});const Ae=e.ref({directiveId:"",directiveName:"",startTime:"",endTime:"",positioning:"",positioningLong:"",tagName:"",cycleType:"",nuId:"1",customerId:"1",id:"",typeName:""});function Le(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}function Oe(){if(te.value.index0>=0&&te.value.index0<=24&&te.value.index1>=0&&te.value.index1<=11){const e=201*(te.value.index0+.5),t=167*(te.value.index1-.5);h.value=e-702.5,f.value=t-240;const l=4824,a=1837;h.value=Math.max(0,Math.min(h.value,l-1405))/2,f.value=Math.max(0,Math.min(f.value,a-480))/2}}return(l,a)=>{var i,r,n,o;return e.openBlock(),e.createElementBlock("view",{class:"right-container",style:e.normalizeStyle(t.isshow?{opacity:"1"}:{opacity:"0"}),onClick:a[10]||(a[10]=e=>{ye.value=!1,ve.value=!1})},[e.createVNode(U,{onMovecard:$}),e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," ID:12345678 ",2),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," 名称:未命名01 ",2),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"right-icons-font-dark":"right-icons-font")},"王金福",2),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/face.png":"/static/index/undericons/facelight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/hand.png":"/static/index/undericons/handlight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/out.png":"/static/index/undericons/outlight.png"},null,8,["src"])]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button-wrong",onClick:a[0]||(a[0]=e=>{ee("changeold",0)})},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 拖动模式 ")]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button"},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 手柄模式 ")])]),e.createElementVNode("view",{class:"doctorsay-container-view"},[e.createElementVNode("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"doctorsay-container-title"},[e.createElementVNode("view",{class:"doctorsay-container-left"},[e.createElementVNode("view",{class:"doctorsay-container-left-gun"}),e.createElementVNode("view",{class:"doctorsay-container-left-font"},"护理流程"),e.createElementVNode("view",{class:"doctorsay-container-share",onClick:me}," 分享 "),e.createElementVNode("view",{class:"doctorsay-container-share"}," 立即生效 ")]),e.createElementVNode("view",{class:"doctorsay-container-right"},[e.createElementVNode("view",{class:"doctorsay-container-right-kuai-cheng"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"日常"),e.createElementVNode("view",{class:"doctorsay-container-right-kuai-zi"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"周期"),e.createElementVNode("view",{class:"doctorsay-container-juzhen",onClick:Be}," 预览 ")])]),e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"boom-title"},[e.createElementVNode("view",{class:"boom-title-left"}," 分 "),e.createElementVNode("view",{class:"boom-title-right"}," 时 ")]),e.createElementVNode("view",{class:"boom-father"},[e.createElementVNode("view",{class:"boom"},[e.createElementVNode("view",{style:e.normalizeStyle({marginTop:`-${2*W.value}rpx`})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList($e.value[0].children,((l,a)=>(e.openBlock(),e.createElementBlock("view",{key:a},[e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(se.value===a||t.liang.index1===a&&!t.canmove||oe.value.index1===a&&ve.value?"boom-son-target":"boom-son")},e.toDisplayString(l.typeName),3),[[e.vShow,l.typeName]])])))),128))],4)])]),e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("scroll-view",{style:{height:"920rpx",width:"100%"},"scroll-left":h.value,"scroll-x":"",onScroll:X,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex","box-shadow":"10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1)",width:"4824rpx",background:"linear-gradient(to right, #c4dbf4,#c9c2ef, #c6dcf3)"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList($e.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time"},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),1)])))),128))]),e.createElementVNode("view",{style:{display:"flex",height:"calc(100% - 80rpx)"}},[e.createElementVNode("scroll-view",{style:{height:"100%",width:"4824rpx"},"scroll-top":f.value,"scroll-y":t.canmove&&!ve.value,onScroll:Y,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList($e.value,((l,i)=>(e.openBlock(),e.createElementBlock("view",{key:i},[e.createElementVNode("view",{class:"super-card-time-und"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.children,((l,r)=>(e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:r},[e.createElementVNode("view",{class:e.normalizeClass(_e.value.index0===i&&_e.value.index1===r?_e.value.index1?"title-time-border-big":"title-time-border-big-top":"super-card-time-card"),style:e.normalizeStyle([_e.value.bordershow||ze.value.index0!==i||ze.value.index1!==r?{borderBottom:"1rpx solid transparent"}:{zIndex:999},{position:"relative"}]),id:`a${i}_${r}`,onClick:t=>((t,l,a,i)=>{t.directiveName&&(se.value=a,uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.left>100&&t.left<1067&&t.top<570&&t.top>140&&t.dataset.index0==l&&t.dataset.index1==a&&(t.left>100&&t.left<500?re.value=Math.floor(t.left)+520:re.value=Math.floor(t.left),t.top>140&&t.top<300?ne.value=Math.floor(t.top)+250:ne.value=Math.floor(t.top),await e.nextTick(),E.value=!0,V.value=!1,setTimeout((()=>{V.value=!0}),100))}))})).exec())})(l,i,r),onTouchstart:e=>{},onTouchmove:pe,onTouchend:a[1]||(a[1]=e=>(fe.value=!1,void(le.value&&(clearTimeout(le.value),le.value=null)))),"data-index0":i,"data-index1":r},[oe.value.index0===i&&oe.value.index1===r&&0==r?(e.openBlock(),e.createElementBlock("view",{key:0,class:"time-button-orange-spe"},[e.createTextVNode(" 请选择服务指令迁移的目标单元格 "),e.createElementVNode("view",{class:"under-button-three"})])):e.createCommentVNode("",!0),oe.value.index0===i&&oe.value.index1===r&&r?(e.openBlock(),e.createElementBlock("view",{key:1,class:"time-button-orange"},[e.createTextVNode(" 请选择服务指令迁移的目标单元格 "),e.createElementVNode("view",{class:"under-button-three"})])):e.createCommentVNode("",!0),te.value.index0==i&&te.value.index1==r&&0==r&&P.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"time-button-black-spe"},[e.createTextVNode(" 是否确认删除该服务指令 "),e.createElementVNode("view",{class:"under-button-three"})])):e.createCommentVNode("",!0),te.value.index0==i&&te.value.index1==r&&r&&P.value?(e.openBlock(),e.createElementBlock("view",{key:3,class:"time-button-black"},[e.createTextVNode(" 是否确认删除该服务指令 "),e.createElementVNode("view",{class:"under-button-three"})])):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{class:"title-time-blue"},[e.createElementVNode("image",{class:"title-time-blue-img",src:T.value?"/static/index/movemode/targetcheng.png":"/static/index/movemode/target.png"},null,8,["src"])],512),[[e.vShow,te.value.index0==i&&te.value.index1==r]]),e.createElementVNode("view",{class:e.normalizeClass(Z(l,i,r)),style:e.normalizeStyle([{"font-size":"30rpx",overflow:"hidden"},{animationDelay:`-${q(i,r).toFixed(2)}s`}])},[l.startTime?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"margin-top":"5rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"25rpx","margin-top":"20rpx"}},e.toDisplayString(l.startTime+"-"+l.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==l.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(l.cycleType),1)],512)),[[e.vShow,t.liang.index0!==i||t.liang.index1!==r||t.canmove]]):e.createCommentVNode("",!0),l.startTime?(e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font-rel"},e.toDisplayString(Le(l.directiveName)[0]),1)):e.createCommentVNode("",!0),l.startTime?(e.openBlock(),e.createElementBlock("view",{key:2,class:"title-time-items"},[e.createElementVNode("image",{class:"right-box-items-button",src:B}),e.createElementVNode("image",{class:"right-box-items-button",src:z})])):e.createCommentVNode("",!0)],6)],46,["id","onClick","onTouchstart","data-index0","data-index1"])])))),128))])])))),128))])],40,["scroll-top","scroll-y"])])],40,["scroll-left"]),e.createElementVNode("view",{class:"scroll-bottom-bgc"})]),e.createElementVNode("view",{class:"right-cards"},[e.createElementVNode("scroll-view",{"scroll-x":"",class:"scroll-box","scroll-left":w.value},[e.createElementVNode("view",{class:"right-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"right-box-item",onTouchstart:xe,onTouchmove:Ee,onTouchend:Ve,style:e.normalizeStyle(t.target?{background:t.target,transition:"all 1.5s ease-in-out"}:{transition:"all 1.5s ease-in-out"})},[e.createElementVNode("image",{class:"title-time-button",src:"/static/index/redbian.png"}),e.createElementVNode("view",{class:"title-time-font"}," 即时 "),e.createElementVNode("view",{style:e.normalizeStyle({animationDelay:`-${.1*l}s`}),class:e.normalizeClass(ye.value?"super-end-items-img-father-active":"super-end-items-img-father")},[e.createElementVNode("image",{class:"right-box-img",src:t.url},null,8,["src"])],6),e.createElementVNode("view",{class:"right-box-font"},e.toDisplayString(t.name),1),e.createElementVNode("view",{class:"right-box-items"},[e.createElementVNode("image",{class:"right-box-items-button",src:B}),e.createElementVNode("image",{class:"right-box-items-button",src:z})]),e.withDirectives(e.createElementVNode("view",{class:"super-end-items-father-close-father",onClick:e.withModifiers((e=>c.value.splice(l,1)),["stop"])}," - ",8,["onClick"]),[[e.vShow,ye.value]])],36)])))),128))])],8,["scroll-left"]),e.createElementVNode("view",{class:"middle-box"},[e.createElementVNode("view",{class:"middle-left-box"},[e.createElementVNode("view",{class:"first-contant"},[e.withDirectives(e.createElementVNode("view",{class:"time-father"},[e.withDirectives(e.createElementVNode("view",{class:"time-button"},[e.createElementVNode("view",{class:"time-button-month"},"周"),e.createElementVNode("view",{class:"time-button-week",onClick:a[2]||(a[2]=e=>{u.value=!1,A.value=-1,M.value=""})},"月")],512),[[e.vShow,u.value]]),e.withDirectives(e.createElementVNode("view",{class:"time-button"},[e.createElementVNode("view",{class:"time-button-month-target",onClick:a[3]||(a[3]=e=>{u.value=!0,O.value=-1,L.value=""})},"周"),e.createElementVNode("view",{class:"time-button-week-target"},"月")],512),[[e.vShow,!u.value]]),e.createElementVNode("scroll-view",{"scroll-y":"",style:{width:"100%",height:"600rpx"},"show-scrollbar":!1,"scroll-top":p.value},[u.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},e.renderList(d,((t,l)=>e.createElementVNode("view",{key:l,onClick:e=>((e,t)=>{const l=Date.now();l-C.value<300?(M.value=e,A.value=t,Te(),C.value=0):(M.value=e,A.value=t,C.value=l)})(t,l)},[e.createElementVNode("view",{class:e.normalizeClass(A.value===l?"items-card-target":"items-card")},e.toDisplayString(t),3)],8,["onClick"]))),64)):e.createCommentVNode("",!0),u.value?e.createCommentVNode("",!0):(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(e.unref(m),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>((e,t)=>{const l=Date.now();l-C.value<300?(L.value=e,O.value=t,Te(),C.value=0):(L.value=e,O.value=t,C.value=l)})(t,l)},[e.createElementVNode("view",{class:e.normalizeClass(O.value===l?"items-card-target":"items-card")},e.toDisplayString(t),3)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"40rpx"}})],8,["scroll-top"])],512),[[e.vShow,v.value]]),e.withDirectives(e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%",width:"100%"},"show-scrollbar":!1,"scroll-top":p.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(x.value[G.value].children[Q.value].children,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>function(e){const t=Date.now();t-C.value<300?(K.value=e,Te(),C.value=0):(K.value=e,C.value=t)}(l)},[e.createElementVNode("view",{class:"right-box-item",style:e.normalizeStyle(K.value==l?{border:"2rpx solid rgb(54, 159, 239)",backgroundColor:"#fff"}:{border:"2rpx solid rgb(229, 233, 249)"})},[e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:"/static/index/ri.png"},null,512),[[e.vShow,"日常护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:"/static/index/zhou.png"},null,512),[[e.vShow,"周期护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:"/static/index/ji.png"},null,512),[[e.vShow,"即时护理"===t.cycleType]]),e.createElementVNode("image",{class:"right-box-img",src:_}),e.createElementVNode("view",{class:"right-box-font",style:e.normalizeStyle(K.value==l?{color:"rgb(54, 159, 239)"}:{})},e.toDisplayString(t.title),5),e.createElementVNode("view",{class:"right-box-items"},[e.createElementVNode("image",{class:"right-box-items-button",src:B}),e.createElementVNode("image",{class:"right-box-items-button",src:z})])],4)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"20rpx"}})],8,["scroll-top"]),[[e.vShow,!v.value]])]),e.createElementVNode("view",{class:"second-contant"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%",width:"100%"},"show-scrollbar":!1,"scroll-top":g.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(N.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:t=>(t=>{v.value=!1,A.value=-1,O.value=-1,M.value="",L.value="",Q.value=t,K.value=0,p.value=1,e.nextTick((()=>{p.value=0}))})(l)},[e.createElementVNode("view",{class:e.normalizeClass(Q.value==l?"downList-box-target":"downList-box")},[e.createElementVNode("image",{class:"downList-box-img",src:_}),e.createElementVNode("view",{class:"downList-box-text"},e.toDisplayString(t.title),1)],2)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"20rpx"}})],8,["scroll-top"])])]),e.createElementVNode("view",{class:"middle-right-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(H.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:t=>(t=>{5!==t&&(v.value=!1,A.value=-1,O.value=-1,M.value="",L.value="",g.value=1,p.value=1,e.nextTick((()=>{g.value=0,p.value=0})),G.value=t,N.value=x.value[t].children,Q.value=0,K.value=0)})(l)},[e.createElementVNode("view",{class:e.normalizeClass(l===G.value?"doctorsay-container-card-target":"doctorsay-container-card")},[e.createElementVNode("image",{class:"doctorsay-container-card-img",src:l===G.value?t.targetUrl:t.url},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(l===G.value?"doctorsay-container-card-font-dark":"doctorsay-container-card-font")},e.toDisplayString(t.name),3)],2)],8,["onClick"])))),128))])]),e.createElementVNode("view",{class:"under-button"},[e.createElementVNode("view",{class:"under-button-black",style:e.normalizeStyle(y.value?{opacity:1}:{opacity:0})}," 不能重复添加相同的即时服务指令 ",4),e.createElementVNode("view",{class:"white-circle",onClick:F},[e.createElementVNode("image",{class:"white-circle-img",src:"/static/index/keyimg/movebutton.png"})]),e.createElementVNode("view",{class:"white-circle",onClick:j},[e.createElementVNode("image",{class:"white-circle-img",src:"/static/index/keyimg/deletebutton.png"})]),e.createElementVNode("view",{class:"white-circle",onClick:ke},[e.createElementVNode("image",{class:"white-circle-img",src:"/static/index/keyimg/notebutton.png"})]),e.createElementVNode("view",{class:"white-circle-click-father",onClick:Te},[e.createElementVNode("image",{class:"white-circle-click",src:"/static/index/keyimg/okbutton.png"}),e.createElementVNode("view",{class:"white-circle-font"}," 确定 ")])])])])])]),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay",onClick:a[5]||(a[5]=e=>{E.value=!1,oe.value.index0=999,se.value=-1})},[e.createElementVNode("view",{class:"popup-overlay-content",style:e.normalizeStyle({top:2*ne.value-350+"rpx",left:2*re.value-780+"rpx",opacity:V.value?1:0,backgroundColor:"日常"===(null==(r=null==(i=$e.value[oe.value.index0])?void 0:i.children[oe.value.index1])?void 0:r.type)?"#fffcf6":"rgb(246, 244, 254)"}),onClick:a[4]||(a[4]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"},e.toDisplayString(null==(o=null==(n=$e.value[oe.value.index0])?void 0:n.children[oe.value.index1])?void 0:o.value),1)]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],4)],512),[[e.vShow,E.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-say",onClick:a[7]||(a[7]=e=>b.value=!1)},[e.createElementVNode("view",{class:"popup-say-content",style:e.normalizeStyle([{"padding-top":"30rpx"},{opacity:k.value?1:0}]),onClick:a[6]||(a[6]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-say-content-flex"},[e.createElementVNode("view",{class:"popup-say-content-gun"}),e.createElementVNode("view",{class:"popup-say-content-font"},"情绪标签")]),e.createElementVNode("view",{style:{display:"flex"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.slice(0,2),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"tags-father"},[e.createElementVNode("image",{class:"tags-img",src:`/static/index/tagNames/${l}.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font"},e.toDisplayString(t),1)])])))),128))]),e.createElementVNode("view",{class:"popup-say-content-flex",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"popup-say-content-gun"}),e.createElementVNode("view",{class:"popup-say-content-font"},"体型标签")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.slice(2,11),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"tags-father"},[e.createElementVNode("image",{class:"tags-img",src:`/static/index/tagNames/${l+2}.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font"},e.toDisplayString(t),1)])])))),128))]),e.createElementVNode("view",{class:"popup-say-three"})],4)],512),[[e.vShow,b.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-share",onClick:a[9]||(a[9]=e=>de.value=!1)},[e.createElementVNode("view",{class:"popup-share-content",style:e.normalizeStyle({opacity:ce.value?1:0}),onClick:a[8]||(a[8]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-share-title"},[e.createTextVNode(" 护理日程分享 "),e.createElementVNode("image",{class:"popup-share-img",src:D})]),e.createElementVNode("view",{class:"popup-share-upcontent"},[e.createElementVNode("view",{class:"popup-share-font"},"久泰护理日程分享测试")]),e.createElementVNode("view",{class:"popup-share-gray"}),e.createElementVNode("view",{class:"popup-share-downcontent"},[e.createElementVNode("view",{class:"popup-share-downcontent-left"},[e.createElementVNode("image",{class:"popup-downcontent-img",src:D}),e.createElementVNode("view",{class:"popup-downcontent-font"},"久泰护理")]),e.createElementVNode("view",{class:"popup-share-downcontent-button",onClick:ue}," 分享 ")])],4)],512),[[e.vShow,de.value]])],4)}}}),[["__scopeId","data-v-bd7a2b2a"]]),$=s(e.defineComponent({__name:"index",setup(t){e.onMounted((()=>{c.value=2,uni.getSystemInfoSync(),uni.pageScrollTo}));const l=e.ref([{url:"/static/index/lefticon/index.png",targetUrl:"/static/index/lefticontarget/blueindex.png"},{url:"/static/index/lefticon/nurse.png",targetUrl:"/static/index/lefticontarget/bluenurse.png"},{url:"/static/index/lefticon/doctor.png",targetUrl:"/static/index/lefticontarget/bluedoctor.png"},{url:"/static/index/lefticon/give.png",targetUrl:"/static/index/lefticontarget/givedark.png"},{url:"/static/index/lefticon/wifi.png",targetUrl:"/static/index/lefticontarget/bluewifi.png"},{url:"/static/index/lefticon/back.png",targetUrl:"/static/index/lefticontarget/blueback.png"}]),a=e.ref(0),i=e.ref(!1),n=e.ref(!1),o=e.ref(!1),c=e.ref(-1);e.ref([]),e.ref(0),e.ref(0),e.ref(0),e.ref(0),e.ref(0);const s=e=>{o.value=e},d=e=>{c.value=e},m=e=>{if(3===e)return i.value=!1,n.value=!1,void uni.navigateTo({url:`/pages/somethingmove/index?darkFans=${o.value}`,animationType:"slide-in-right",animationDuration:400});5!==e?(a.value=e,i.value=!1,n.value=!1,setTimeout((()=>{switch(e){case 0:i.value=!0;break;case 1:n.value=!0}}),50)):uni.navigateBack()},u=e.ref(0),v=e.ref(0),p=e.ref(""),g=e.ref(!0),w=e.ref({index0:999,index1:999}),h=e.ref(!0),f=uni.createAnimation({duration:0,timingFunction:"linear",delay:0}),y=e.ref({}),x=function(e,t){let l=0;return function(...a){const i=Date.now();i-l>=t&&(l=i,e.apply(this,a))}}((e=>{var t;const l=e.touches[0];u.value=2*(Math.floor(l.clientX)-100),v.value=2*(Math.floor(l.clientY)-55),f.translate3d(u.value/2,v.value/2,0).step({duration:0}),y.value=f.export();const a=Math.floor(l.clientX)-50,i=Math.floor(l.clientY)-25,r=E.value.find((e=>a>=Math.floor(e.left)&&a<=Math.floor(e.right)&&i>=Math.floor(e.top)&&i<=Math.floor(e.bottom)));if(r){const{index0:e,index1:l}=r.dataset;w.value.index0=e,w.value.index1=l,u.value<200&&h.value&&!c.value&&(null==(t=B.value)||t.nextItems(),h.value=!1,setTimeout((()=>{h.value=!0}),1e3))}else w.value.index0=999,w.value.index1=999}),40),E=e.ref([]),V=(e,t)=>{p.value=e,g.value=!1,E.value=t},b=e=>{E.value=e},T=e.ref({directiveName:"",cycleType:"",positioningLong:"0",typeName:"",startTime:"",id:"",endTime:"",tagName:null}),D=(e,t)=>{T.value=e,g.value=!1,E.value=t},C=()=>{p.value="",g.value=!0},B=e.ref(null),z=e.ref(null),_=()=>{var e,t,l;u.value=9999,v.value=9999,f.translate3d(u.value/2,v.value/2,0).step({duration:0}),y.value=f.export(),g.value=!0,w.value={index0:999,index1:999},p.value?c.value||null==(e=B.value)||e.rulerEnd(p.value):T.value.typeName&&(0===c.value?null==(t=B.value)||t.rulerMoveEnd(T.value):null==(l=z.value)||l.rulerMoveEnd(T.value)),p.value="",T.value={directiveName:"",cycleType:"",positioningLong:"0",typeName:"",startTime:"",id:"",endTime:"",tagName:null}};function I(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}return r((()=>{setTimeout((()=>{m(a.value)}),50)})),(t,r)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(o.value?"darkbackgroundContainer":"backgroundContainer"),onTouchmove:r[0]||(r[0]=(...t)=>e.unref(x)&&e.unref(x)(...t)),onTouchend:_},[e.withDirectives(e.createElementVNode("view",{class:"move-font",animation:y.value},e.toDisplayString(p.value),9,["animation"]),[[e.vShow,p.value&&u.value]]),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass("日常"==T.value.cycleType?"title-time-border-yellow":"title-time-border-pouple"),animation:y.value,style:{"font-size":"30rpx",overflow:"hidden"}},[e.withDirectives(e.createElementVNode("view",{class:"title-time",style:{"margin-top":"5rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(T.value.startTime+"-"+T.value.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==T.value.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(T.value.cycleType),1)],512),[[e.vShow,T.value.startTime]]),e.createElementVNode("view",{style:{"margin-top":"20rpx","font-weight":"700"}},e.toDisplayString(I(T.value.directiveName)[0]),1),e.withDirectives(e.createElementVNode("view",{class:"down-icons",style:e.normalizeStyle("日常"!=T.value.cycleType?{backgroundColor:"rgb(212,203,255)"}:{})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(I(T.value.directiveName).slice(1),((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:l},[e.createElementVNode("view",{class:"icon",style:e.normalizeStyle("日常"!=T.value.cycleType?{backgroundColor:"rgb(123,97,255)"}:{})},e.toDisplayString(I(T.value.directiveName)[1]),5)])))),128))],4),[[e.vShow,I(T.value.directiveName)[1]]])],10,["animation"]),[[e.vShow,T.value.cycleType]]),e.createElementVNode("view",{class:"left-container"},[e.createElementVNode("view",{class:"left-head"},[e.createElementVNode("image",{class:"left-head-img",src:N}),e.createElementVNode("text",{class:e.normalizeClass(o.value?"left-head-font-dark":"left-head-font")}," 王金凤 ",2)]),e.createElementVNode("view",{class:"left-img-container"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"blue-circle-pos"},[e.withDirectives(e.createElementVNode("view",{class:"blue-circle"},[e.createElementVNode("image",{class:"blue-circle-size",src:"/static/index/ray.png"},null,8,["src"])],512),[[e.vShow,l===a.value]]),e.createElementVNode("image",{class:"left-img",src:l===a.value?t.targetUrl:t.url,onClick:e=>m(l)},null,8,["src","onClick"])])))),128))])]),e.withDirectives(e.createVNode(k,{isshow:i.value,darkFans:o.value,onDarkchange:s},null,8,["isshow","darkFans"]),[[e.vShow,!a.value]]),e.withDirectives(e.createVNode(S,{ref_key:"ruler",ref:B,liang:w.value,isshow:n.value,canmove:g.value,darkFans:o.value,onDarkchange:s,onSavename:V,onSaveruler:D,onChangefangkuang:b,onCleanname:C,onChangeold:d},null,8,["liang","isshow","canmove","darkFans"]),[[e.vShow,1==a.value&&!c.value]]),e.withDirectives(e.createVNode(F,{ref_key:"rulernew",ref:z,isold:2===c.value,liang:w.value,isshow:n.value,canmove:g.value,darkFans:o.value,onDarkchange:s,onSavename:V,onSaveruler:D,onChangefangkuang:b,onCleanname:C,onChangeold:d},null,8,["isold","liang","isshow","canmove","darkFans"]),[[e.vShow,1==a.value&&2===c.value]])],34))}}),[["__scopeId","data-v-ee189f8b"]]),M="/static/index/newindex/wendu/0.png",A="/static/index/newindex/wendu/1.png",L="https://www.focusnu.com/devopsapi",O=(e,t)=>(e=>{let t=e.url,a=e.method||"get",i=e.data||{},r={"X-Access-Token":uni.getStorageSync("token")||"","Content-Type":"application/json;charset=UTF-8",Authorization:"Basic c2FiZXI6c2FiZXJfc2VjcmV0",...e.header};return new Promise(((e,n)=>{uni.request({url:/^https?:\/\//.test(t)?t:L+t,method:a,header:r,data:i,timeout:5e3,success(a){const r=a;if(200==r.statusCode)e(r.data);else switch(l("log","at request/guanli.js:34","http",/^https?:\/\//.test(t)?t:L+t),l("log","at request/guanli.js:35","res",a),l("log","at request/guanli.js:36","data",i),r.statusCode){case 401:uni.showModal({title:"提示",content:"登录过期",showCancel:!1,success(){uni.clearStorageSync(),setTimeout((()=>{uni.navigateTo({url:"/pages/login/login"})}),1e3)}});break;case 404:uni.showToast({title:"请求地址不存在...",duration:2e3});break;default:uni.showToast({title:"请重试...",duration:2e3})}},fail(e){l("log","at request/guanli.js:69",e),-1!==e.errMsg.indexOf("request:fail")?uni.showToast({title:"网络异常",icon:"error",duration:2e3}):uni.showToast({title:"未知异常",duration:2e3}),n(e)},complete(){uni.hideLoading(),uni.hideToast()}})})).catch((()=>{}))})({url:`/iot/tplink/cameraInfo/motionCtrl?deviceIndex=5&direction=${e}&startOrNot=${t}&speed=1`,method:"get"}),P=100,j=400,q=s(e.defineComponent({__name:"index",setup(t){const l=e.ref([]);o((()=>{l.value=h})),e.ref(null);const a=e.ref(-1),i=e.ref(-1),n=e.ref(!1),c=e.ref(!1),s=e.ref(null),d=e.ref(null),m=e.ref(0),u=e.ref(3),v=[{name:"左右翻转",url:"/static/index/camera/800.png",target:"/static/index/camera/801.png"},{name:"上下翻转",url:"/static/index/camera/810.png",target:"/static/index/camera/811.png"},{name:"中心翻转",url:"/static/index/camera/820.png",target:"/static/index/camera/821.png"},{name:"不翻转",url:"/static/index/camera/830.png",target:"/static/index/camera/831.png"}],p=["原图","全景拉伸","四分屏","180°全景","360°全景"],g=e.ref([]),w=["截图","录制","对讲","静音","预警","更多","图片","视频","清晰度","翻转"],h=["截图","录制","对讲","静音","预警","更多"],f=e.ref(0),N=e.ref(5),y=e.ref(0),x=()=>{s.value.openDrawer()};function E(e,t,l){return Math.max(t,Math.min(l,e))}function V(e){const t=e*P,l=m.value,a=l+j;if(ta){const e=t+P-j;m.value=E(e,0,ie.value.length*P-j)}}function b(e,t,l,a="png",i=0,r=!1){return Array.from({length:l},((l,n)=>{const o=r?String(n+i).padStart(2,"0"):n+i;return`${e}/${t}${o}.${a}`}))}const k=b("/static/index/newindex/curve","curve_",9,"png",1,!1),T=e.ref([...k,...[...k].reverse()]),D=b("/static/index/newindex/curve","breathe_",9,"png",1,!1),C=e.ref([...D,...[...D].reverse()]);e.ref([{name:"王金福",url:"/static/index/watch/people0.png"},{name:"李宝田",url:"/static/index/watch/people1.png"}]);const S=e.ref([{name:"省医保",url:"/static/index/watch/00.png",error:!1},{name:"重度失能",url:"/static/index/watch/01.png",error:!1},{name:"欠费",url:"/static/index/watch/03.png",error:!0}]),B=e.ref([{name:"护理单元",url:b("/static/index/watch","nurs_",10,"png",1,!1)},{name:"仓库",url:b("/static/index/watch","warehouse_",6,"png",1,!1)},{name:"配务室",url:b("/static/index/watch","delivery_",5,"png",1,!1)},{name:"服务大厅",url:b("/static/index/watch","service_",5,"png",1,!1)},{name:"",url:""}]),z=e.ref([{name:"护理单元01",NUID:"2508000001",url:b("/static/index/watch","nurs_",10,"png",1,!1),warning:!1,type:0},{name:"护理单元02",NUID:"2508000002",url:b("/static/index/watch","nurs_",10,"png",1,!1),warning:!1,type:0},{name:"护理单元03",NUID:"2508000003",url:b("/static/index/watch","nurs_",10,"png",1,!1),warning:!0,type:0},{name:"仓库01",NUID:"2508000001",url:b("/static/index/watch","warehouse_",6,"png",1,!1),warning:!1,type:1},{name:"配务室",NUID:"2508000001",url:b("/static/index/watch","delivery_",5,"png",1,!1),warning:!1,type:2},{name:"服务大厅",NUID:"2508000001",url:b("/static/index/watch","service_",5,"png",1,!1),warning:!1,type:3}]);e.onMounted((()=>{a.value=0,i.value=0,n.value=!0,c.value=!0}));const _=e.ref(0),I=e.ref(-1),F=e.ref(!1),$=e.ref(!1),L=e.ref(!1),q=e.ref(!1),R=e=>{ce(e)},W=e=>{if(-1!==_.value)switch(e){case 0:a.value>0?(a.value--,i.value=0,_.value=a.value,V(a.value)):(I.value=i.value,_.value=-1);break;case 1:I.value=i.value,_.value=-1;break;case 2:a.value{for(const e of Y.values())clearTimeout(e);Y.clear()}));const J=e=>{const t=g.value.indexOf(e);-1!==t&&g.value.splice(t,1)},X=e.ref(!1),Z=ae((()=>{var e;return null==(e=d.value)?void 0:e.moveFirstUp()}),400),H=ae((()=>{var e;return null==(e=d.value)?void 0:e.moveFirstDown()}),400),G=ae((()=>{var e;return null==(e=d.value)?void 0:e.moveSecondUp()}),400),Q=ae((()=>{var e;return null==(e=d.value)?void 0:e.moveSecondDown()}),400),K=ae((()=>function(){var e;null==(e=d.value)||e.startchange(),0===N.value&&(y.value,uni.$emit("monitor:toggleVolume"));1===N.value&&(y.value?uni.$emit("monitor:stopTalk"):uni.$emit("monitor:openTalk"));2===N.value&&uni.$emit("monitor:doSnapshot");3===N.value&&(y.value?uni.$emit("monitor:stopRecord"):uni.$emit("monitor:startRecord"));4===N.value&&(y.value||(le.value=N.value,N.value=-1,te.value=!0));5===N.value&&ee.value!==y.value&&(ee.value=y.value,uni.$emit("monitor:changeQuality"));6===N.value&&uni.$emit("monitor:switchDisplay",y.value);7===N.value&&(3===y.value?uni.$emit("monitor:flipImage",6):uni.$emit("monitor:flipImage",y.value));8===N.value&&(y.value?uni.$emit("monitor:stopAlarm"):uni.$emit("monitor:startAlarm"))}()),700),ee=e.ref(0),te=e.ref(!1),le=e.ref(-1);function ae(e,t=1e3){let l=!1;return()=>{l||(e(),l=!0,setTimeout((()=>{l=!1}),t))}}const ie=e.computed((()=>(a.value=-1,setTimeout((()=>a.value=0),50),z.value.filter((e=>e.type===i.value))))),re=()=>{uni.navigateTo({url:"/pages/watch/settings/settings"})};r((()=>{}));let ne=-1;const oe={};function ce(e){switch(e){case 0:se(1,0);break;case 1:se(5,1);break;case 2:se(7,2);break;case 3:se(3,3);break;case 4:case 5:N.value=le.value,te.value=!1,le.value=-1,G(),K()}}function se(e,t){-1!==ne&&ne!==t&&de(ne),ne=t,O(e,1),oe[t]&&clearTimeout(oe[t]),oe[t]=setTimeout((()=>{de(t)}),550)}function de(e){if(-1===e)return;let t=0;switch(e){case 0:t=1;break;case 1:t=5;break;case 2:t=7;break;case 3:t=3}O(t,0).then((e=>{})),clearTimeout(oe[e]),oe[e]=null,ne===e&&(ne=-1)}return(t,r)=>{const o=e.resolveComponent("donghua"),s=e.resolveComponent("arrowkeys");return e.openBlock(),e.createElementBlock("view",{class:"view"},[e.createElementVNode("view",{class:"view-left"},[e.createElementVNode("view",{class:"title-father"},[e.createElementVNode("image",{class:"title-img",src:"/static/index/watch/uni.png"}),e.createElementVNode("view",{class:"title-font"}," 护理单元 ")]),e.createElementVNode("view",{class:"zhezhao-top"}),e.createElementVNode("view",{class:"zhezhao-bottom"}),e.createElementVNode("scroll-view",{class:"menus-father","scroll-y":"","scroll-top":m.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(ie.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["menu",{warning:t.warning,target:l===_.value}]),style:e.normalizeStyle([l===a.value?{backgroundColor:"#fff"}:{},_.value===l?{backgroundColor:"#ddf0ff"}:{}]),onClick:e=>{a.value=l}},[e.createElementVNode("view",{class:"menu-img"},[e.createVNode(o,{width:"65rpx",height:"65rpx",links:t.url,playing:a.value===l},null,8,["links","playing"])]),e.createElementVNode("view",{style:{"margin-left":"10rpx"}},[e.createElementVNode("view",{style:e.normalizeStyle([{"font-size":"31rpx",overflow:"hidden","white-space":"nowrap","text-overflow":"ellipsis",width:"200rpx"},l===a.value?{color:"#017DE9 "}:{}])},e.toDisplayString(t.name),5)])],14,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"45rpx"}})],8,["scroll-top"])]),e.createElementVNode("view",{class:"view-right"},[e.createElementVNode("view",{class:"scroll-vi"},[e.createElementVNode("view",{class:"zhezhao-left"}),e.createElementVNode("view",{class:"zhezhao-right"}),e.createElementVNode("scroll-view",{"scroll-x":"true",style:{width:"66%",height:"100%"}},[e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-top":"5rpx"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(B.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["menu",{target:l===I.value}]),style:e.normalizeStyle(I.value===l?{backgroundColor:"#ddf0ff"}:{}),onClick:e=>{i.value=l}},[t.url?(e.openBlock(),e.createBlock(o,{key:0,links:t.url,playing:i.value===l},null,8,["links","playing"])):e.createCommentVNode("",!0),t.url?(e.openBlock(),e.createElementBlock("text",{key:1,class:e.normalizeClass(["menu-font",{zoom:i.value===l}]),style:e.normalizeStyle(i.value===l?{color:"#008FF5"}:{})},e.toDisplayString(t.name),7)):e.createCommentVNode("",!0),t.url?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:2},[e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx"},src:"/static/index/watch/more.png"})]))],14,["onClick"])))),128))])]),e.createElementVNode("view",{class:"right-father"},[e.createElementVNode("view",{style:{"font-weight":"600","font-size":"90rpx","margin-right":"15rpx"}}," 10:18 "),e.createElementVNode("view",{class:"",style:{"font-weight":"600","margin-right":"50rpx"}},[e.createElementVNode("view",{class:""},"7-25"),e.createElementVNode("view",{class:""},"星期三")]),e.createElementVNode("view",{class:e.normalizeClass({targetbutton:F.value}),style:{display:"flex","align-items":"center"}},[e.createElementVNode("image",{style:{width:"65rpx",height:"65rpx"},src:"/static/index/newindex/curve/shezhi.png",onClick:re}),e.createElementVNode("view",{style:{"font-size":"32rpx","margin-left":"10rpx"},onClick:re}," 设置 ")],2)])]),e.createElementVNode("view",{class:"big-bgc"},[e.createElementVNode("view",{style:{width:"100%",position:"absolute",top:"0",left:"0","z-index":"1",display:"flex","align-items":"center"}},[e.createElementVNode("text",{style:{"margin-top":"40rpx","font-size":"32rpx","margin-left":"50rpx"}}," NUID:2508000001 "),e.createElementVNode("text",{class:"new-weight"}," 护理单元01 "),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("view",{class:"right-container-tem"},[e.createElementVNode("image",{class:"right-container-tem-img",src:M}),e.createElementVNode("text",{class:"right-container-tem-text"},"23°C"),e.createElementVNode("image",{class:"right-container-tem-img",src:A}),e.createElementVNode("text",{class:"right-container-tem-text"},"39%")])])])]),e.createElementVNode("view",{class:"picture"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(p,((t,l)=>e.createElementVNode("view",{class:"picture-card",key:l,style:e.normalizeStyle({color:f.value===l?"#1486EB":""}),onClick:e=>(e=>{switch(f.value=e,e){case 0:uni.$emit("monitor:switchDisplay",0);break;case 1:uni.$emit("monitor:switchDisplay",4);break;case 2:uni.$emit("monitor:switchDisplay",1);break;case 3:uni.$emit("monitor:switchDisplay",2);break;case 4:uni.$emit("monitor:switchDisplay",3)}})(l)},[e.createElementVNode("view",{class:"bgc-card",style:e.normalizeStyle({background:f.value===l?"#E2EDFC":""})},[e.createElementVNode("image",{style:{width:"90rpx",height:"90rpx"},src:`/static/index/picture/${l}${f.value===l?1:0}.png`},null,8,["src"])],4),e.createTextVNode(" "+e.toDisplayString(t),1)],12,["onClick"]))),64))]),e.createElementVNode("view",{class:"right-right"},[0===i.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"red-kuang"},[e.createElementVNode("image",{style:{width:"75rpx",height:"90rpx","margin-left":"40rpx","margin-top":"-10rpx"},src:"/static/index/watch/laotai.png"}),e.createElementVNode("view",{class:""},[e.createElementVNode("view",{style:{"margin-left":"20rpx",display:"flex","align-items":"center","margin-bottom":"5rpx"}},[e.createElementVNode("view",{class:"font-weight"}," 王金凤 "),e.createElementVNode("view",{class:"font-small",style:{"margin-left":"30rpx"}}," 女 80岁 "),e.createElementVNode("view",{class:"blue-bgc"}," 当日指令 ")]),e.createElementVNode("view",{class:"font-small",style:{"margin-left":"20rpx","margin-top":"0rpx"}}," 入住时间:2025.01.01 ")])])):e.createCommentVNode("",!0),1===i.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"red-kuang"},[e.createElementVNode("image",{style:{width:"110rpx",height:"140rpx","margin-left":"40rpx","margin-top":"-10rpx"},src:"/static/index/watch/laotou.png"}),e.createElementVNode("view",{class:""},[e.createElementVNode("view",{style:{"margin-left":"20rpx",display:"flex","align-items":"center","margin-bottom":"5rpx","margin-top":"25rpx",height:"60rpx"}},[e.createElementVNode("view",{class:"font-weight"}," 李树奎 "),e.createElementVNode("view",{class:"font-small",style:{"margin-left":"10rpx"}}," 男 50岁 ")]),e.createElementVNode("view",{class:"font-small",style:{"margin-left":"20rpx","margin-top":"25rpx"}}," 入职时间:2025.01.15 ")])])):e.createCommentVNode("",!0),0===i.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"states-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(S.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["states",t.error?"warning":""]),key:l},[e.createElementVNode("image",{style:{width:"40rpx",height:"40rpx"},src:t.url},null,8,["src"]),e.createElementVNode("view",{style:{color:"#555555","margin-left":"5rpx","font-size":"25rpx"}},e.toDisplayString(t.name),1)],2)))),128))])):e.createCommentVNode("",!0),1===i.value?(e.openBlock(),e.createElementBlock("view",{key:3,class:"states-father"},[e.createElementVNode("view",{class:"phone-number"},[e.createElementVNode("image",{class:"bgc-image",src:"/static/index/watch/phonebgc.png"}),e.createElementVNode("image",{style:{width:"20rpx",height:"35rpx","margin-left":"40rpx"},src:"/static/index/watch/phone.png"}),e.createElementVNode("view",{class:"font-phone"},"15533556676"),e.createElementVNode("image",{class:"phone-ball",src:"/static/index/watch/phoneball.png"})])])):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"big-view"},[e.createElementVNode("view",{class:"font-weight"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"pao"},[e.createElementVNode("image",{style:{width:"100%",height:"100%",position:"absolute",top:"0",left:"0"},src:"/static/index/watch/pao.png"}),e.createElementVNode("view",{style:{"font-size":"20rpx","z-index":"1"}}," 待进行 ")]),e.createElementVNode("view",{class:"juzhong",style:{top:"-120rpx"}},[e.createVNode(o,{width:"600rpx",height:"500rpx",links:T.value,playing:n.value,loop:!0,interval:120},null,8,["links","playing"])]),e.createElementVNode("view",{class:"juzhong",style:{"z-index":"2","margin-top":"50rpx"}},[e.createVNode(o,{width:"300rpx",height:"200rpx",links:C.value,playing:n.value,loop:!0,interval:120},null,8,["links","playing"])]),e.createElementVNode("image",{style:{width:"300rpx",height:"200rpx"},src:"/static/index/newindex/wendu/2.png"}),e.createElementVNode("view",{style:{"font-size":"25rpx"}}," 一级压疮防护 ")]),e.createElementVNode("view",{class:"bottom-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.value,((t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"button-father",onClick:e=>(e=>{switch(e){case 0:uni.$emit("monitor:doSnapshot"),g.value.includes(e)||g.value.push(e),Y.has(e)&&clearTimeout(Y.get(e));const t=setTimeout((()=>{const t=g.value.indexOf(e);-1!==t&&g.value.splice(t,1),Y.delete(e)}),500);Y.set(e,t);break;case 1:g.value.includes(e)?(uni.$emit("monitor:stopRecord"),J(e)):(uni.$emit("monitor:startRecord"),g.value.push(e));break;case 2:g.value.includes(e)?(uni.$emit("monitor:stopTalk"),J(e)):(uni.$emit("monitor:openTalk"),g.value.push(e));break;case 3:g.value.includes(e)?(uni.$emit("monitor:toggleVolume"),J(e)):(uni.$emit("monitor:toggleVolume"),g.value.push(e));break;case 4:g.value.includes(e)?(uni.$emit("monitor:stopAlarm"),J(e)):(uni.$emit("monitor:startAlarm"),g.value.push(e));break;case 5:g.value.includes(e)?(l.value=h,J(e)):(l.value=w,g.value.push(e)),X.value=!1;break;case 6:case 7:g.value.includes(e)?J(e):g.value.push(e);break;case 8:g.value.includes(e)?(uni.$emit("monitor:changeQuality"),J(e)):(uni.$emit("monitor:changeQuality"),g.value.push(e));break;case 9:X.value=!0}})(a)},[e.createElementVNode("view",{class:"bottom-button",style:e.normalizeStyle({backgroundColor:g.value.includes(a)?"#DDE9F0":""})},[e.createElementVNode("image",{style:{width:"70%",height:"70%"},src:`/static/index/camera/${a}${g.value.includes(a)?1:0}.png`},null,8,["src"])],4),e.createElementVNode("view",{style:e.normalizeStyle([{"font-size":"25rpx"},{color:g.value.includes(a)?"#0E86EA":""}])},e.toDisplayString(t),5)],8,["onClick"])))),256)),e.withDirectives(e.createElementVNode("view",{class:"jump-white"},[e.createElementVNode("view",{style:{display:"flex","justify-content":"space-around",height:"100rpx",width:"100%","align-items":"center"}},[e.createElementVNode("view",{class:""}," 清晰度 "),e.createElementVNode("image",{style:{width:"40rpx",height:"40rpx"},src:"/static/index/camera/back.png",onClick:r[0]||(r[0]=e=>X.value=!1)})]),(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(v,((t,l)=>e.createElementVNode("view",{class:"jump-item",key:l,onClick:e=>(e=>{u.value=e,3===e?(uni.$emit("monitor:flipImage",6),J(9)):(uni.$emit("monitor:flipImage",e),g.value.push(9))})(l),style:e.normalizeStyle({backgroundColor:u.value===l?"#E5E8EE":""})},[e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx","margin-right":"10rpx","margin-left":"-10rpx"},src:u.value===l?t.target:t.url},null,8,["src"]),e.createElementVNode("view",{style:e.normalizeStyle({color:u.value===l?"#0E86EA":""})},e.toDisplayString(t.name),5)],12,["onClick"]))),64))],512),[[e.vShow,X.value]])])])]),e.createVNode(s,{onMovecard:W,getblue:c.value,moveleft:5},null,8,["getblue"]),e.withDirectives(e.createVNode(U,{onMovecard:R},null,512),[[e.vShow,!g.value.includes(5)]])])}}}),[["__scopeId","data-v-bd9aba2f"]]),R=s({__name:"exit",props:{show:{type:Boolean,default:!0}},emits:["close"],setup(t,{emit:l}){const a=t,i=e.ref(!1);e.watch((()=>a.show),((e,t)=>{!t&&e&&(i.value=!1,setTimeout((()=>i.value=!0),50))}));const r=l;function n(){r("close")}const o=()=>{uni.setStorageSync("token",1),uni.redirectTo({url:"/pages/login/login"})};return(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["neuro-wrapper",i.value?"is-active":""])},[e.createElementVNode("view",{class:"neuro-mask",onClick:n}),e.createElementVNode("view",{class:"neuro-box",onClick:a[0]||(a[0]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"button-father"},[e.createElementVNode("view",{class:"button-white",onClick:n},"取消"),e.createElementVNode("view",{class:"button",onClick:o},"确定")]),e.createElementVNode("view",{class:"title"},"退出登录"),e.createElementVNode("view",{class:"card-font"}," 确定要注销130******31账户吗 ")])],2)),[[e.vShow,t.show]])}},[["__scopeId","data-v-9117e9d1"]]),W=s({__name:"reset",props:{show:{type:Boolean,default:!0}},emits:["close"],setup(t,{emit:a}){const i=t,r=e.reactive({username:uni.getStorageSync("username"),oldpassword:"",password:"",confirmpassword:""}),n=e.ref(!1);e.watch((()=>i.show),((e,t)=>{!t&&e&&(n.value=!1,setTimeout((()=>n.value=!0),50))}));const o=a;function c(){o("close")}const s=()=>{r.username&&r.oldpassword&&r.password&&r.confirmpassword?r.password.length<6||r.confirmpassword.length<6?uni.showToast({title:"密码要多于六位",icon:"none",duration:2e3}):r.password===r.confirmpassword?(e=>p({url:`${uni.getStorageSync("serverUrl")}/sys/user/updatePassword`,method:"put",data:{username:e.username,oldpassword:e.oldpassword,password:e.password,confirmpassword:e.confirmpassword}}))(r).then((e=>{l("log","at component/public/reset.vue:105","res",e),e.success?(uni.showToast({title:e.message,icon:"none",duration:2e3}),setTimeout((()=>{uni.setStorageSync("token",1),uni.reLaunch({url:"/pages/login/login"})}),1e3)):uni.showToast({title:e.message,icon:"none",duration:2e3})})):uni.showToast({title:"新密码与确认密码不一致",icon:"none",duration:2e3}):uni.showToast({title:"请完善信息",icon:"error",duration:2e3})};return(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["neuro-wrapper",n.value?"is-active":""])},[e.createElementVNode("view",{class:"neuro-mask",onClick:c}),e.createElementVNode("view",{class:"neuro-box",onClick:a[3]||(a[3]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"button-father"},[e.createElementVNode("view",{class:"button",onClick:s},"确定")]),e.createElementVNode("view",{class:"title"},"修改账号登录密码"),e.createElementVNode("view",{class:"password-father",style:{"margin-top":"50rpx"}},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":a[0]||(a[0]=e=>r.oldpassword=e),maxlength:"15",placeholder:"请输入旧密码"},null,512),[[e.vModelText,r.oldpassword]])]),e.createElementVNode("view",{class:"password-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":a[1]||(a[1]=e=>r.password=e),maxlength:"15",placeholder:"请输入新密码"},null,512),[[e.vModelText,r.password]])]),e.createElementVNode("view",{class:"password-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":a[2]||(a[2]=e=>r.confirmpassword=e),maxlength:"15",placeholder:"请再次输入新密码"},null,512),[[e.vModelText,r.confirmpassword]])]),e.createElementVNode("view",{class:"card-font"})])],2)),[[e.vShow,t.show]])}},[["__scopeId","data-v-8de7e110"]]),Y=s(e.defineComponent({__name:"settings",emits:["jump"],setup(t,{emit:l}){const a=e.ref(null),i=e.ref(!1),r=e.ref(!1),n=e.ref(!1),o=e.ref(!1),c=e.ref(!1),s=e.ref(["雷达扫描","扫码添加","手动录入","修改密码","切换机构","检查更新","用户协议","隐私政策"]);e.ref(!0),e.ref("");const v=e.ref(!1),p=e=>{var t;switch(e){case 0:uni.navigateTo({url:"/pages/watch/settings/leida"});break;case 1:uni.navigateTo({url:"/pages/watch/settings/saoma"});break;case 2:uni.navigateTo({url:"/pages/watch/settings/input"});break;case 3:c.value=!0;break;case 4:break;case 5:i.value=!0,null==(t=a.value)||t.check_update();break;case 6:r.value=!0,n.value=!0,v.value=!1,setTimeout((()=>{v.value=!0}),50);break;case 7:r.value=!0,n.value=!1,v.value=!1,setTimeout((()=>{v.value=!0}),50)}},g=()=>{i.value&&uni.showToast({title:"已经是最新版了",icon:"none",duration:2e3})},w=()=>{uni.navigateBack()};return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"index-content-other"},[e.createElementVNode("view",{class:"index-content-right",onClick:w},[e.createElementVNode("image",{class:"back-img",src:"/static/index/settings/back.png"},null,8,["src"]),e.createTextVNode(" 返回 ")]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value.slice(0,3),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>p(l)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value.slice(3,5),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>p(l+3)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l+3}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value.slice(5,8),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>p(l+5)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l+5}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"bottom-button",onClick:l[0]||(l[0]=e=>o.value=!0)}," 注销登录 "),e.createElementVNode("view",{class:"text-center"},[e.createElementVNode("view",null,"长春市朝阳区久泰开运养老服务有限公司")]),e.createVNode(R,{show:o.value,onClose:l[1]||(l[1]=e=>o.value=!1)},null,8,["show"]),e.createVNode(W,{show:c.value,onClose:l[2]||(l[2]=e=>c.value=!1)},null,8,["show"]),e.createVNode(d,{ref_key:"zyupgrade",ref:a,noticeflag:!0,theme:"blue",h5preview:!1,oldversion:"1.0.0",appstoreflag:!0,autocheckupdate:!0,onShowupdateTips:g},null,512),r.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-any",style:e.normalizeStyle(v.value?{opacity:1}:{opacity:0})},[e.createElementVNode("view",{class:"mask",onClick:l[3]||(l[3]=e=>r.value=!1)}),e.createElementVNode("view",{class:"box-any"},[e.createElementVNode("view",{class:"title-left"},[n.value?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"back-font"},"NU护理单元隐私信息保护政策")),n.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"back-font"},"NU护理单元用户服务协议")):e.createCommentVNode("",!0)]),n.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(u,{key:0})),n.value?(e.openBlock(),e.createBlock(m,{key:1})):e.createCommentVNode("",!0)])],4)):e.createCommentVNode("",!0)]))}}),[["__scopeId","data-v-ccb4084b"]]),J="/static/click.png",X="/static/x.png",Z=s(e.defineComponent({__name:"input",setup(t){const l=()=>{uni.navigateBack()},a=e.ref("");return(t,i)=>(e.openBlock(),e.createElementBlock("view",{class:"index-content-other"},[e.createElementVNode("view",{class:"index-content-right",onClick:l},[e.createElementVNode("image",{class:"back-img",src:"/static/index/settings/back.png"},null,8,["src"]),e.createTextVNode(" 返回 ")]),e.createElementVNode("view",{class:"saomiao"},[e.createElementVNode("view",{class:"big-ball"},[e.createElementVNode("view",{class:"ball"})]),e.createElementVNode("image",{class:"left-img",src:J}),e.withDirectives(e.createElementVNode("input",{class:"saoma-input",password:!1,"onUpdate:modelValue":i[0]||(i[0]=e=>a.value=e),placeholder:"请手动录入NUID"},null,512),[[e.vModelText,a.value]]),e.withDirectives(e.createElementVNode("image",{class:"right-img",src:X,onClick:i[1]||(i[1]=e=>a.value="")},null,512),[[e.vShow,a.value]]),e.createElementVNode("view",{class:"blue-button"}," 确定 ")]),e.createElementVNode("image",{class:"big-bgc",src:"/static/bgc.png"}),e.createElementVNode("image",{class:"big-img",src:"/static/qiu.png"}),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")]))}}),[["__scopeId","data-v-87f7dd57"]]),H=s(e.defineComponent({__name:"saoma",setup(t){const l=()=>{uni.navigateBack()};function a(){uni.scanCode({onlyFromCamera:!0,scanType:["qrCode","barCode"],success(e){},fail(e){}})}return e.ref(""),(t,i)=>(e.openBlock(),e.createElementBlock("view",{class:"index-content-other"},[e.createElementVNode("view",{class:"index-content-right",onClick:l},[e.createElementVNode("image",{class:"back-img",src:"/static/index/settings/back.png"},null,8,["src"]),e.createTextVNode(" 返回 ")]),e.createElementVNode("view",{class:"saomiao"}),e.createElementVNode("image",{class:"big-bgc",src:"/static/kuai.png"}),e.createElementVNode("view",{class:"big-img",onClick:a},[e.createElementVNode("image",{style:{width:"100%",height:"100%"},src:"/static/sao.png"}),e.createElementVNode("view",{class:"big-font"}," 点击扫描区域二维码 ")]),e.createElementVNode("image",{class:"big-QR",src:"/static/qr.png",onClick:a}),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")]))}}),[["__scopeId","data-v-33cdb877"]]),G="/static/index/quxiao.png",Q=()=>p({url:`${uni.getStorageSync("serverUrl")}/api/pad/baseInfo/queryPadPageList?token=${uni.getStorageSync("token")}`,method:"get"}),K=s(e.defineComponent({__name:"leida",setup(t){const l=()=>{uni.navigateBack()},a=e.ref(!0),i=e.ref(0),r=e.ref(100),n=e.ref(-1),o=e.ref(""),c=e.ref(),s=e.ref(!1),d=e.ref([{url:"/static/index/leida/00.png",targetUrl:"/static/index/leida/01.png",target:!1},{url:"/static/index/leida/10.png",targetUrl:"/static/index/leida/11.png",target:!1},{url:"/static/index/leida/20.png",targetUrl:"/static/index/leida/21.png",target:!1},{url:"/static/index/leida/30.png",targetUrl:"/static/index/leida/31.png",target:!1}]),m=e.ref([]),u=e.ref([]),v=e.ref(0);let p=null;function g(e){return"function"==typeof globalThis.requestAnimationFrame?globalThis.requestAnimationFrame(e):setTimeout((()=>e(Date.now())),16)}function w(e){var t;return"number"==typeof e?e:(null==(t=globalThis.performance)?void 0:t.now)?globalThis.performance.now():Date.now()}let h=null;function f(e){const t=w(e);h||(h=t);const l=(t-h)/1e3;h=t,a.value&&(i.value=(i.value+r.value*l)%360),p=g(f)}function N(){100===D.value&&(C(),y())}function y(){a.value=!a.value,a.value?(h=w(),k()):T()}const x=e.computed((()=>({transform:`rotate(${i.value}deg)`}))),E=e.ref([]);let V=null,b=0;function k(){V||(V=setInterval((()=>{!function(){const e=1*Math.random()+5,t=Math.random()*(200-e),l=Math.random()*(200-e),a=b++,i={id:a,size:e,left:t,top:l,color:"#02a9ff",opacity:0};E.value.push(i),setTimeout((()=>{i.opacity=1}),20),setTimeout((()=>{i.opacity=0,setTimeout((()=>{E.value=E.value.filter((e=>e.id!==a))}),500)}),2e3)}()}),500))}function T(){clearInterval(V),V=null}const D=e.ref(0);function C(){let e=Date.now(),t=Math.floor(30*Math.random())+30,l=!1,a=Math.floor(500*Math.random())+300,i=0;Q().then((e=>{e.result.records.forEach((e=>{e.menu=JSON.parse(JSON.stringify(d.value)),e.isNew=!0})),u.value=[],u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),function(){const e=u.value.length;m.value=[];const t=Array.from({length:e},(()=>Math.random())),l=t.reduce(((e,t)=>e+t),0),a=t.map((e=>e/l*4e3));let i=0;for(let r=0;r{m.value.push(u.value[r]),m.value.length}),i)}()})),setTimeout((function r(){let n=Date.now()-e;if(!l&&D.value>=t&&(l=!0,i=Date.now()),l){if(!(Date.now()-i>=a))return void setTimeout(r,16);l=!1}let o=Math.min(n/4e3,1);D.value=Math.floor(100*o),100===D.value&&y(),D.value<100&&setTimeout(r,16)}),16)}const S=(e,t)=>{n.value=e,o.value=t.nuName,c.value=t.nuId,s.value=!1,setTimeout((()=>{s.value=!0}),50)};e.onMounted((()=>{B()}));const B=()=>{h=w(),p=g(f),k(),C()},z=e.ref(-1),_=e.ref(-1),I=e=>{if(100===D.value)switch(e){case 0:if(0===_.value)return void(_.value=1);if(1===_.value)return void(_.value=0);z.value-2<-1?z.value=-1:(z.value=z.value-2,U(z.value));break;case 1:if(0===_.value)return void(_.value=1);if(1===_.value)return void(_.value=0);z.value+1>m.value.length-1||(z.value++,U(z.value));break;case 2:if(0===_.value)return void(_.value=1);if(1===_.value)return void(_.value=0);z.value+1===m.value.length-1||-1===z.value?(z.value++,U(z.value)):z.value+2>m.value.length-1||(z.value=z.value+2,U(z.value));break;case 3:if(0===_.value)return void(_.value=1);if(1===_.value)return void(_.value=0);-1!==z.value&&(z.value--,U(z.value));break;case 4:if(1===_.value)return void S(z.value,m.value[z.value]);-1===z.value?N():_.value=0;break;case 5:-1!==_.value?_.value=-1:l()}};function U(t){const l=m.value.length;t<0&&(t=0),t>=l&&(t=l-1),e.nextTick((()=>{const e=245*Math.floor(t/2),a=e+245,i=v.value,r=i+475;let n=v.value;er&&(n=a-475);const o=245*Math.ceil(l/2),c=Math.max(0,o-475);n<0&&(n=0),n>c&&(n=c),v.value=Math.round(n)}))}return e.onBeforeUnmount((()=>{var e;null!=p&&(e=p,"function"==typeof globalThis.cancelAnimationFrame?globalThis.cancelAnimationFrame(e):clearTimeout(e)),T()})),(t,a)=>{const i=e.resolveComponent("arrowkeys");return e.openBlock(),e.createElementBlock("view",{class:"index-content-other"},[e.createElementVNode("view",{class:"index-content-right",onClick:l},[e.createElementVNode("image",{class:"back-img",src:"/static/index/settings/back.png"},null,8,["src"]),e.createTextVNode(" 返回 ")]),e.createElementVNode("view",{class:"left-contain"},[e.createElementVNode("view",{class:"blue-bgc"},[e.createElementVNode("image",{class:"all-img",src:"/static/index/leida/leftbgc.png"}),e.createElementVNode("image",{class:"all-img",style:{width:"90%",height:"90%","margin-top":"5%","margin-left":"5%"},src:"/static/index/leida/bigball.png"}),e.createElementVNode("view",{class:"inset-img",style:e.normalizeStyle(x.value)},[e.createElementVNode("image",{class:"all-img",style:{"z-index":"2"},src:"/static/index/leida/biao.png"}),e.createElementVNode("image",{class:"all-img",style:{"z-index":"1"},src:"/static/index/leida/ball.png"}),e.createElementVNode("image",{class:"all-img",src:"/static/index/leida/shallow.png"})],4),e.createElementVNode("view",{class:"ball-layer"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E.value,(t=>(e.openBlock(),e.createElementBlock("view",{key:t.id,class:"ball",style:e.normalizeStyle({width:t.size+"px",height:t.size+"px",top:t.top+"px",left:t.left+"px",backgroundColor:t.color,opacity:t.opacity})},null,4)))),128))])]),e.createElementVNode("view",{style:{width:"100%",display:"flex","flex-direction":"column","align-items":"center"}},[e.createElementVNode("view",{class:e.normalizeClass(["blue-button",-1==z.value?"zerotarget":""]),style:{"margin-top":"0"},onClick:N},e.toDisplayString((D.value,"扫描")),3),e.createElementVNode("view",{class:"progress-wrap"},[e.createElementVNode("view",{class:"progress-inner",style:e.normalizeStyle({width:D.value+"%"})},null,4)]),e.createElementVNode("view",{class:"progress-text"},e.toDisplayString(D.value)+"%",1)])]),e.createElementVNode("view",{class:"other"},[e.createElementVNode("scroll-view",{ref:"scrollViewRef","scroll-y":"",class:"other-father","scroll-top":v.value},[e.createElementVNode("view",{class:"card-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["card",[z.value===l&&-1===_.value?"zerotarget":"",{"fade-in":t.isNew}]]),key:l,onAnimationend:e=>{t.isNew=!1}},[e.createElementVNode("view",{class:"main-title"},[e.createElementVNode("view",{class:"main-title-font",style:{"font-weight":"600","font-size":"40rpx"}},e.toDisplayString(t.nuName),1),e.createElementVNode("view",{class:e.normalizeClass(["video-father",z.value===l&&0===_.value?"zerotarget":""])},[e.createElementVNode("image",{class:"edit-img",onClick:a[0]||(a[0]=()=>{}),src:"/static/index/leida/play.png"})],2)]),e.createElementVNode("view",{class:e.normalizeClass(["blue-button",z.value===l&&1===_.value?"zerotarget":""]),style:{width:"200rpx",height:"70rpx","margin-top":"50rpx"},onClick:e=>S(l,t)}," 重命名 ",10,["onClick"]),e.createElementVNode("view",{class:"card-tags"},[e.createElementVNode("view",{style:{"margin-left":"80rpx"}}," NUID:"+e.toDisplayString(t.nuId),1)]),e.createElementVNode("view",{class:"play-img"}," 护理单元 ")],42,["onAnimationend"])))),128)),-1!==n.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-any",style:e.normalizeStyle(s.value?{opacity:1}:{opacity:0})},[e.createElementVNode("view",{class:"mask",onClick:a[1]||(a[1]=e=>n.value=-1)}),e.createElementVNode("view",{class:"rename-father"},[e.createElementVNode("view",{class:"rename-title"}," 重命名 "),e.createElementVNode("view",{style:{width:"100%","margin-left":"5rpx","margin-bottom":"20rpx"}}," NUID:"+e.toDisplayString(c.value),1),e.createElementVNode("view",{class:"rename-input"},[e.withDirectives(e.createElementVNode("input",{class:"uni-input",placeholder:"请重新命名","onUpdate:modelValue":a[2]||(a[2]=e=>o.value=e)},null,512),[[e.vModelText,o.value]]),e.withDirectives(e.createElementVNode("image",{class:"right-img",src:G,onClick:a[3]||(a[3]=e=>o.value="")},null,512),[[e.vShow,o.value]])]),e.createElementVNode("view",{class:"blue-button",style:{width:"200rpx",height:"70rpx","margin-top":"40rpx"},onClick:a[4]||(a[4]=e=>{return t=o.value,l=n.value,t&&(m.value[l].nuName=t),void(n.value=-1);var t,l})}," 确定 ")])],4)):e.createCommentVNode("",!0)])],8,["scroll-top"])]),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 "),e.createVNode(i,{onMovecard:I})])}}}),[["__scopeId","data-v-2b7adbee"]]),ee=s(e.defineComponent({__name:"index",props:{isShow:{type:Boolean,required:!0},propsmove:{type:Number},isMain:{type:Boolean}},emits:["back"],setup(t,{emit:l}){const a=t,i=e.ref(-1);e.watch((()=>a.isMain),((e,t)=>{"boolean"==typeof t&&a.isShow&&(!0===t&&!1===e?(i.value=0,r.value=0,o.value=r.value):!1===t&&!0===e&&(i.value=-1,r.value=-1,o.value=0))}));const r=e.ref(-1),n=l;e.watch((()=>a.propsmove),(()=>{if(-1!=i.value)switch(i.value){case 0:switch(a.propsmove){case 0:i.value=-1,r.value=-1,n("back");break;case 1:r.value{const o=r?String(n+i).padStart(2,"0"):n+i;return`${e}/${t}${o}.${a}`}))}const u=e.ref([{url:"/static/index/newindex/rightmenu/0.png",name:"重点追踪"},{url:"/static/index/newindex/rightmenu/1.png",name:"转单执行"},{url:"/static/index/newindex/rightmenu/2.png",name:"协助执行"}]),v=e.ref([{url:"/static/index/newindex/states/0.png",name:"狂躁"},{url:"/static/index/newindex/states/1.png",name:"易怒"},{url:"/static/index/newindex/states/2.png",name:"大体重"},{url:"/static/index/newindex/states/3.png",name:"四肢"}]),p=e.ref(m("/static/index/newindex/leftmenu","",3,"png",0,!1));e.ref(m("/static/index/newindex/huli","care",9,"png",0,!1));const g=m("/static/index/newindex/curve","curve_",9,"png",1,!1),w=e.ref([...g,...[...g].reverse()]),h=m("/static/index/newindex/curve","breathe_",9,"png",1,!1),f=e.ref([...h,...[...h].reverse()]),N=e.ref([{url:m("/static/index/newindex/huli","care",8,"png",0,!1),name:"护理类"},{url:m("/static/index/newindex/yiliao","health_",9,"png",1,!1),name:"医疗类"},{url:m("/static/index/newindex/kufang","storeroom_",11,"png",1,!1),name:"库房类"},{url:m("/static/index/newindex/baojie","clean_",12,"png",1,!1),name:"保洁类"},{url:m("/static/index/newindex/xiaoxi","wash_",14,"png",1,!1),name:"消洗类"},{url:m("/static/index/newindex/kangfu","recovery_",6,"png",1,!1),name:"康复类"}]),y=e.ref(!1);e.watch((()=>a.isShow),((e,t)=>{!t&&e?(y.value=!1,setTimeout((()=>{y.value=!0}),50)):y.value=!1}));const x=e.ref("");return e.onMounted((()=>{x.value=uni.getStorageSync("realname"),o.value=0,c.value=!0})),(t,l)=>{const a=e.resolveComponent("donghua");return e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(y.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{style:{"margin-left":"30rpx"}}," NUID:2508000001 "),e.createElementVNode("text",{class:"new-weight"}," 护理单元01 "),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("view",{class:"right-container-tem"},[e.createElementVNode("image",{class:"right-container-tem-img",src:M}),e.createElementVNode("text",{class:"right-container-tem-text"},"23°C"),e.createElementVNode("image",{class:"right-container-tem-img",src:A}),e.createElementVNode("text",{class:"right-container-tem-text"},"39%")]),e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",null,e.toDisplayString(x.value),1)])]),e.createElementVNode("view",{class:"scroll-vi"},[e.createElementVNode("view",{class:"zhezhao-left"}),e.createElementVNode("view",{class:"zhezhao-right"}),e.createElementVNode("scroll-view",{"scroll-x":"true",style:{width:"100%",height:"100%"}},[e.createElementVNode("view",{style:{display:"flex","align-items":"center"}},[e.createElementVNode("view",{style:{width:"100rpx"}}),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(N.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass([{zerotarget:0===i.value&&r.value===l},"menu"]),style:e.normalizeStyle({backgroundColor:0===i.value&&r.value===l?"#ddf0ff":""}),onClick:e=>{o.value=l,r.value=l}},[e.createVNode(a,{links:t.url,playing:o.value===l},null,8,["links","playing"]),e.createElementVNode("text",{class:e.normalizeClass(["menu-font",{zoom:o.value===l}]),style:e.normalizeStyle(o.value===l?{color:"#008FF5"}:{})},e.toDisplayString(t.name),7)],14,["onClick"])))),128)),e.createElementVNode("view",{style:{width:"100rpx"}})])])]),e.createElementVNode("view",{class:"photo-father"},[e.createElementVNode("view",{class:"juzhong",style:{"margin-left":"-50rpx"}},[e.createVNode(a,{width:"1500rpx",height:"1000rpx",links:w.value,playing:c.value,loop:!0,interval:120},null,8,["links","playing"])]),e.createElementVNode("view",{class:"juzhong",style:{"z-index":"2","margin-top":"120rpx"}},[e.createVNode(a,{width:"800rpx",height:"500rpx",links:f.value,playing:c.value,loop:!0,interval:120},null,8,["links","playing"])]),e.createElementVNode("view",{class:"weight-time"},[e.createTextVNode(" 10:00 - 10:10 "),e.createElementVNode("view",{class:"pao-father"},[e.createElementVNode("image",{class:"pao-img",src:"/static/index/newindex/states/pao.png"},null,8,["src"]),e.createElementVNode("view",{style:{"z-index":"1"}}," 待执行 ")])]),e.createElementVNode("image",{class:"big-img",src:"/static/index/newindex/wendu/2.png"},null,8,["src"]),e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-top":"5rpx"}},[e.createElementVNode("view",{class:"server-name"}," 一级压疮防护 ")]),e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-top":"40rpx"}},[e.createElementVNode("image",{class:"down-img",src:"/static/index/newindex/states/left.png"},null,8,["src"]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(v.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"states-father"},[e.createElementVNode("image",{class:"icon-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{style:{"margin-top":"15rpx","margin-left":"10rpx"}},e.toDisplayString(t.name),1)])))),128)),e.createElementVNode("image",{class:"down-img",src:"/static/index/newindex/states/right.png"},null,8,["src"])]),e.createElementVNode("view",{style:{display:"flex","margin-top":"60rpx"}},[e.createElementVNode("view",{class:e.normalizeClass({thirdtarget:3===i.value&&0===r.value}),style:{width:"240rpx",height:"90rpx","margin-right":"40rpx"}},[e.createElementVNode("view",{class:"start-button"}," 开始服务 ")],2),e.createElementVNode("view",{class:e.normalizeClass({thirdtarget:3===i.value&&1===r.value}),style:{width:"240rpx",height:"90rpx"}},[e.createElementVNode("view",{class:"end-button"}," 结束服务 ")],2)])]),e.createElementVNode("view",{class:"left-menu"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,style:{margin:"30rpx 0"},class:e.normalizeClass({firsttarget:1===i.value&&r.value===l})},[e.createElementVNode("view",{class:"left-ball",style:e.normalizeStyle({backgroundColor:1===i.value&&r.value===l?"#ddf0ff":""})},[e.createElementVNode("image",{class:"left-menu-img",src:t},null,8,["src"])],4)],2)))),128))]),e.createElementVNode("view",{class:"right-menu"},[e.createElementVNode("view",{class:"zhezhao-top",onClick:l[0]||(l[0]=e=>s.value-=115)}),e.createElementVNode("view",{class:"zhezhao-bottom",onClick:l[1]||(l[1]=e=>s.value+=115)}),e.createElementVNode("image",{class:"top-img",src:"/static/index/newindex/rightmenu/top.png",onClick:l[2]||(l[2]=e=>s.value>0?s.value-=115:s.value=0)},null,8,["src"]),e.createElementVNode("scroll-view",{"scroll-y":"true",class:"right-scroll","scroll-top":s.value,onScroll:d},[e.createElementVNode("view",{style:{height:"30rpx"}}),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass({secondtarget:2===i.value&&r.value===l}),style:{margin:"20rpx auto",width:"110rpx"}},[e.createElementVNode("view",{class:"white-circle",style:e.normalizeStyle({backgroundColor:2===i.value&&r.value===l?"#ddf0ff":""})},[e.createElementVNode("image",{class:"right-menu-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"right-menu-name"},e.toDisplayString(t.name),1)],4)],2)))),256)),e.createElementVNode("view",{style:{height:"30rpx"}})],40,["scroll-top"]),e.createElementVNode("image",{class:"top-img",src:"/static/index/newindex/rightmenu/bottom.png",onClick:l[3]||(l[3]=e=>s.value>55*u.value.length?s.value=55*u.value.length:s.value+=115)},null,8,["src"])])],4)}}}),[["__scopeId","data-v-9c8806b6"]]),te="/static/index/newruler/jiao.png";function le(e,t,l,a="png",i=0,r=!1){return Array.from({length:l},((l,n)=>{const o=r?String(n+i).padStart(2,"0"):n+i;return`${e}/${t}${o}.${a}`}))}const ae=[{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706886",title:"协助喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604232524795905",title:"鼻饲喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604428667228162",title:"注射器/吸管喂药",tagName:"头部,大体重"}],levle:"2",title:"协助喂药",key:"1900114812020310017",parentId:"1900112597427793921",url:le("/static/index/diet","medicine_",7,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605892869394433",title:"一级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606105021485058",title:"二级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606339931869185",title:"三级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606614344208386",title:"一级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606869953482753",title:"二级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607023431454722",title:"三级压疮防护",tagName:"大体重"}],levle:"2",title:"压疮防护",key:"1900115034452639746",parentId:"1900112597427793921",url:le("/static/index/diet","knead_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706887",title:"床椅转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706888",title:"床椅转移",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605073730211842",title:"床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605223185846273",title:"床椅转移",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605365393723393",title:"协助床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605496071458818",title:"协助床椅转移",tagName:null}],levle:"2",title:"床椅转移",key:"1902248363784159233",parentId:"1900112597427793921",url:le("/static/index/diet","chair_",8,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607507626102786",title:"轮椅防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607677415723010",title:"轮椅防护",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902607817589362689",title:"轮椅防护",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902608061588803585",title:"轮椅防护",tagName:"大体重"}],levle:"2",title:"轮椅防护",key:"1902280900178886657",parentId:"1900112597427793921",url:le("/static/index/diet","wheelchair_",10,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608564582322178",title:"约束位按摩",tagName:"手"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608974609092610",title:"约束位按摩",tagName:"足"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618507855237121",title:"约束位按摩",tagName:"全"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618751548493825",title:"防护网约束",tagName:null}],levle:"2",title:"约束防护",key:"1902280933364219906",parentId:"1900112597427793921",url:le("/static/index/diet","constraint_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620309090701314",title:"协助行走",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620486044192769",title:"放松按摩",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902625161569079298",title:"心灵慰藉",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902625402468929537",title:"狂躁",tagName:null}],levle:"2",title:"按摩保健",key:"1902564031454744577",parentId:"1900112597427793921",url:le("/static/index/diet","massage_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902625872432304130",title:"准备衣物",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626005538541569",title:"协助更换",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626664711163905",title:"肢体障碍",tagName:"半侧"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626800510144513",title:"肢体障碍",tagName:"全身"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627064688381953",title:"准备衣物",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627280716009474",title:"协助更换",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627416598876161",title:"肢体障碍",tagName:"半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627522404388866",title:"肢体障碍",tagName:"全身"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902627711806574593",title:"协助更换",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628058591629313",title:"肢体障碍",tagName:"半侧,大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628650718302209",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628837725540354",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628966847188993",title:"肢体障碍",tagName:"大体重,半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902629129879785474",title:"协助更换",tagName:"大体重"}],levle:"2",title:"更换衣物",key:"1902564088417587201",parentId:"1900112597427793921",url:le("/static/index/diet","replace_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629344456183809",title:"坐起",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629492301205506",title:"躺下",tagName:null}],levle:"2",title:"调整坐卧",key:"1902564199830884354",parentId:"1900112597427793921",url:le("/static/index/diet","adjust_",7,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902630862769065985",title:"遗体净身",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902631162275926017",title:"遗体穿衣",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631422431825921",title:"遗体转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631602463936514",title:"床位消毒",tagName:null}],levle:"2",title:"殡仪服务",key:"1902564263743688705",parentId:"1900112597427793921",url:le("/static/index/diet","exequy_",4,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902631830441136129",title:"更换床上用品",tagName:"全部"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632063828987905",title:"隔尿褥子更换",tagName:null}],levle:"2",title:"更换床上用品",key:"1902564446648897538",parentId:"1900112597427793921",url:le("/static/index/diet","change_",6,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632288270389250",title:"临终护理",tagName:null}],levle:"2",title:"临终服务",key:"1902564503783706625",parentId:"1900112597427793921",url:le("/static/index/diet","funeral_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"40",id:"1902632678701371393",title:"制氧机吸氧",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902632799853842433",title:"制氧机维护",tagName:null}],levle:"2",title:"制氧机应用",key:"1902564586101116930",parentId:"1900112597427793921",url:le("/static/index/diet","oxygen_",6,"png",1,!1)}],levle:"1",title:"1 日常照料",key:"1900112597427793921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900376187661553665",title:"准备洁具",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900420873478553602",title:"棉球清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706881",title:"协助清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706885",title:"义齿清洁",tagName:"口腔"}],levle:"2",title:"口腔清洁",key:"1902597070889127938",parentId:"1900112615777873921",url:le("/static/index/diet","oral_",7,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902636771540963329",title:"准备洁具",tagName:"头部"},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637623425077250",title:"协助洗头",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637985234128898",title:"卧式洗头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902638122949906433",title:"擦头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902638304739430401",title:"刮头",tagName:null}],levle:"2",title:"头部清洁",key:"1902597497344987137",parentId:"1900112615777873921",url:le("/static/index/diet","head_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902641763073101826",title:"准备洁具",tagName:"面部"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642254465175553",title:"协助洁面",tagName:null}],levle:"2",title:"面部清洁",key:"1902597651405967361",parentId:"1900112615777873921",url:le("/static/index/diet","wash_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642508145070081",title:"准备洁具",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642672796667905",title:"协助清洁",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642822885642242",title:"卧床清洁",tagName:"躯干"}],levle:"2",title:"躯干清洁",key:"1902597718082818050",parentId:"1900112615777873921",url:le("/static/index/diet","limbs_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643318811758594",title:"准备洁具",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643483320750082",title:"协助清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643630888947713",title:"卧床清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643837525528578",title:"肌张力高",tagName:"清洁"}],levle:"2",title:"四肢清洁",key:"1902597811565465601",parentId:"1900112615777873921",url:le("/static/index/diet","torso_",6,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645148199391234",title:"会阴清洁",tagName:"男"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645295457210369",title:"会阴清洁",tagName:"女"}],levle:"2",title:"会阴清洁",key:"1902597873964126209",parentId:"1900112615777873921",url:le("/static/index/diet","perineum_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645493185089537",title:"肛周清洁",tagName:null}],levle:"2",title:"肛周清洁",key:"1902597930020999170",parentId:"1900112615777873921",url:le("/static/index/diet","perianal_",7,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645693211447298",title:"洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647316134465538",title:"泡手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647529817477122",title:"准备洁具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647673212342274",title:"协助洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647905878773762",title:"强直屈曲洗手",tagName:null}],levle:"2",title:"手清洁",key:"1902597991698239489",parentId:"1900112615777873921",url:le("/static/index/diet","hands_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648101203316737",title:"泡脚",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648239091060737",title:"卧式泡脚",tagName:null}],levle:"2",title:"足清洁",key:"1902598178588037121",parentId:"1900112615777873921",url:le("/static/index/diet","feet_",4,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648426383511553",title:"修睫毛",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648548777496577",title:"剃须",tagName:null}],levle:"2",title:"剃须",key:"1902598258573414401",parentId:"1900112615777873921",url:le("/static/index/diet","shave_",6,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648962444922882",title:"角质增生",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649132536532994",title:"灰指甲",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649302149992449",title:"正常",tagName:"修甲"}],levle:"2",title:"修甲",key:"1902598354606198785",parentId:"1900112615777873921",url:le("/static/index/diet","clippers_",6,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902649683919736834",title:"理发",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"25",id:"1902649860344745985",title:"理发",tagName:"颅骨缺损"}],levle:"2",title:"理发",key:"1902598400382832642",parentId:"1900112615777873921",url:le("/static/index/diet","haircut_",5,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902650121280786434",title:"床上沐浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650408884211713",title:"深度清洁",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650763722330113",title:"浴间洗浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"30",id:"1902651229122301954",title:"床上沐浴",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651366317985794",title:"深度清洁",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651555363655682",title:"浴间洗浴",tagName:"大体重"}],levle:"2",title:"沐浴",key:"1902598454782955522",parentId:"1900112615777873921",url:le("/static/index/diet","bathe_",9,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651778777452545",title:"内套管清洁",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651924047171586",title:"更换气切纱布",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"10",id:"1902652055928672258",title:"更换气切纱布",tagName:null}],levle:"2",title:"气切消毒",key:"1902598509522817026",parentId:"1900112615777873921",url:le("/static/index/diet","omy_",4,"png",1,!1)}],levle:"1",title:"2 清洁照料",key:"1900112615777873921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898057679966209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898202668666881",title:"协助进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898339931459586",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898472584712194",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898590658564097",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898719952179201",title:"准备餐具",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898979948695554",title:"协助进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899086840532993",title:"协助进餐",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899214838108162",title:"鼻胃管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899325014085633",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899587028062210",title:"食物加工",tagName:null}],levle:"2",title:"加餐饮食",key:"1902596129720864770",parentId:"1902280495747317762",url:le("/static/index/diet","snack_",7,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281139677839362",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902281522340970498",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281654100836354",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281870434648066",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902654960639381506",title:"鼻肠管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902655101874180097",title:"轮椅进餐",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902892199009030145",title:"轮椅进餐",tagName:null}],levle:"2",title:"正餐饮食",key:"1902601263850950657",parentId:"1902280495747317762",url:le("/static/index/diet","dinner_",8,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893231608926209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893551978254337",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893716466274306",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894369850757122",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894528533860354",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"辅餐饮食",key:"1902601382595891202",parentId:"1902280495747317762",url:le("/static/index/diet","food_",6,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894832176304129",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894954117304322",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895077522116609",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895233407619073",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895569912434689",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"果汁饮食",key:"1902601427168759809",parentId:"1902280495747317762",url:le("/static/index/diet","juice_",9,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895878508351489",title:"准备水杯",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895984053817346",title:"协助饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896136835534850",title:"协助饮水",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896508421509122",title:"鼻胃管饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896636553302017",title:"鼻肠管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902896855802155010",title:"准备水杯",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897018344017921",title:"协助饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897464936730626",title:"协助饮水",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897675813752834",title:"鼻胃管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897803417063426",title:"鼻肠管饮水",tagName:null}],levle:"2",title:"饮水饮食",key:"1902601487625457665",parentId:"1902280495747317762",url:le("/static/index/diet","drink_",5,"png",1,!1)}],levle:"1",title:"3 饮食照料",key:"1902280495747317762"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902653177363927041",title:"巡视",tagName:null}],levle:"2",title:"巡视",key:"1902564741860790273",parentId:"1902560466095017986",url:le("/static/index/diet","posture_",6,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653325481578497",title:"防坠床",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653497066360833",title:"被褥调整",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653650917625857",title:"睡姿调整",tagName:null}],levle:"2",title:"体位调整",key:"1902564818838851585",parentId:"1902560466095017986",url:le("/static/index/diet","visitation_",5,"png",1,!1)}],levle:"1",title:"4 睡眠照料",key:"1902560466095017986"},{children:[{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904277308510210",title:"更换尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904458779267073",title:"更换隔尿垫",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905631242424322",title:"使用尿盆",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905824973131777",title:"使用尿壶",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906220483416065",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906459051233281",title:"坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906610562076674",title:"留置尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906783325458434",title:"更换纸尿裤",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908406344945665",title:"热敷抚触排尿",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908523827400705",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909645401067522",title:"更换尿片",tagName:null}],levle:"2",title:"小便",key:"1902596314152800257",parentId:"1902560510768549889",url:le("/static/index/diet","urinate_",4,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909835331735554",title:"床上排便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910002671882242",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910156154048514",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910361008050178",title:"人工取便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910524623654913",title:"造瘘袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910700176248834",title:"坐便椅",tagName:null}],levle:"2",title:"大便",key:"1902596399423000577",parentId:"1902560510768549889",url:le("/static/index/diet","stool_",3,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910899565072385",title:"口腔吸痰",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911047405899778",title:"气切吸痰",tagName:null}],levle:"2",title:"吸痰",key:"1902596461238652930",parentId:"1902560510768549889",url:le("/static/index/diet","Sputuma_",7,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911232974491650",title:"呕吐",tagName:null}],levle:"2",title:"呕吐",key:"1902596886771765250",parentId:"1902560510768549889",url:le("/static/index/diet","vomiting_",6,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902911378349068290",title:"腹腔引流护理",tagName:null}],levle:"2",title:"引流",key:"1902596940366581762",parentId:"1902560510768549889",url:le("/static/index/diet","drainage_",6,"png",1,!1)}],levle:"1",title:"5 排泄照料",key:"1902560510768549889"}],ie=s(e.defineComponent({__name:"index",props:{isshow:{type:Boolean,required:!0},darkFans:{type:Boolean},canmove:{type:Boolean},liang:{type:Object},isold:{type:Boolean,required:!0},propsmove:{type:Number},isMain:{type:Boolean}},emits:["vip","changeold"],setup(t,{expose:a,emit:i}){const o=t;e.watch((()=>o.isMain),((e,t)=>{o.isshow&&(!0===t&&!1===e?(xe.value.index0=8,xe.value.index1=0,X.value=!0):!1===t&&!0===e&&(xe.value.index0=-1,xe.value.index1=-1))})),e.watch((()=>o.isold),(()=>{o.isold&&(dt(),I.value=1,U.value=1,e.nextTick((()=>{U.value=0,I.value=700})))})),e.watch((()=>o.canmove),(()=>{Pe.value=!1})),e.watch((()=>o.isshow),((t,l)=>{t!==l&&(Pe.value=!1,Ue.value=!1,at.value?at.value--:(dt(),I.value=1,U.value=1,e.nextTick((()=>{U.value=0,I.value=775}))),we.value=0,E.value=!E.value)}));const c=e.ref(!1),s=e.ref(-1),d=e.ref(!1),m=e.ref(-1);e.watch((()=>o.propsmove),(()=>{if(d.value)switch(o.propsmove){case 0:m.value-3>0?m.value=m.value-3:m.value=0;break;case 1:m.value>5||m.value++;break;case 2:m.value+3>5?m.value=6:m.value=m.value+3;break;case 3:m.value&&m.value--;break;case 4:y(m.value);break;case 5:v.value=!1,g.value=!1,d.value=!1,c.value=!1,G.value=1}else if(c.value)switch(o.propsmove){case 0:s.value-3>0?s.value=s.value-3:s.value=0;break;case 1:s.value>3||s.value++;break;case 2:s.value+3>3?s.value=4:s.value=s.value+3;break;case 3:s.value&&s.value--;break;case 4:N(s.value);break;case 5:v.value=!1,g.value=!1,d.value=!1,c.value=!1,G.value=0}else if(4===o.propsmove)if(X.value)Ze();else switch(G.value){case 0:g.value=!1,v.value=!v.value,c.value=!0,s.value=0;break;case 1:v.value=!1,g.value=!g.value,d.value=!0,m.value=0;break;case 2:et();break;default:ze()}else X.value?H(o.propsmove):Q(o.propsmove)}));const u=e.ref(!1),v=e.ref(!1),g=e.ref(!1);e.watch((()=>v.value),(()=>{setTimeout((()=>{u.value=v.value,ye("vip",u.value)}),50)}));const w=e.ref(!1);e.watch((()=>g.value),(()=>{setTimeout((()=>{w.value=g.value,ye("vip",w.value)}),50)}));const h=e.ref([]),f=e.ref([]),N=e=>{h.value.includes(e)?h.value=h.value.filter((t=>t!==e)):h.value.length>1?uni.showToast({title:"标签最多只能添加两个",icon:"none",duration:2e3}):h.value.push(e)},y=e=>{f.value.includes(e)?f.value=f.value.filter((t=>t!==e)):f.value.length>1?uni.showToast({title:"标签最多只能添加两个",icon:"none",duration:2e3}):f.value.push(e)},x=e.ref(!1),E=e.ref(!1),V=e.ref([{name:"纸尿裤",url:"/static/index/niao.png",target:"#fff",id:-1},{name:"呕吐",url:"/static/index/tu.png",target:"#fff",id:-1},{name:"吸痰",url:"/static/index/ou.png",target:"#fff",id:-1},{name:"大便",url:"/static/index/baba.png",target:"#fff",id:-1},{name:"纸尿裤",url:"/static/index/niao.png",target:"#fff",id:-1},{name:"呕吐",url:"/static/index/tu.png",target:"#fff",id:-1},{name:"吸痰",url:"/static/index/ou.png",target:"#fff",id:-1},{name:"大便",url:"/static/index/baba.png",target:"#fff",id:-1}]),b=["标准","超重","强直","偏瘫","佝偻","稳定","焦虑","抑郁","暴力","恐惧","烦躁","易怒","臆想"],k=["周一","周二","周三","周四","周五","周六","周日"],T=Array.from({length:31},((e,t)=>(t+1).toString().padStart(2,"0"))),D=e.ref(!0),C=e.ref(!1),S=e.ref(0),B=e.ref(0),z=e.ref(0),I=e.ref(678),U=e.ref(0),F=e.ref();e.ref([]);const $=e.ref(!1),M=e.ref([]),A=e.ref(!1);e.ref(!1);const L=e.ref(!1);e.ref(!1),e.ref(!1),e.ref(""),e.ref(!1);const O=e.ref(!1);e.ref("");const P=e.ref(!1);e.ref(0),e.ref(0),e.ref(6),e.ref(11),e.ref(0),e.ref(3);const j=e.ref(!1),q=e.computed((()=>_e.value[0]&&_e.value[1]?"left-bottom":!_e.value[0]&&_e.value[1]?"right-bottom":_e.value[0]&&!_e.value[1]?"left-top":"right-top"));e.onMounted((()=>{fe.value=0,p({url:`${uni.getStorageSync("serverUrl")}/nuIpadApi/nuConfigServiceCategory/getServiceTree`,method:"get"}).then((e=>{l("log","at pages/NursingNew/component/nurse/index.vue:930","res",e)}))}));const R=e.ref(0);const W=()=>{let e=JSON.parse(JSON.stringify(nt.value[De.value.index0].children[De.value.index1]));We.value=[xe.value.index0,xe.value.index1];let t=nt.value[De.value.index0].children[De.value.index1].typeName;nt.value[De.value.index0].children[De.value.index1]={directiveName:"",typeName:t};let l=nt.value[We.value[0]].children[We.value[1]].typeName;nt.value[We.value[0]].children[We.value[1]]=e,nt.value[We.value[0]].children[We.value[1]].typeName=l;let a=nt.value[We.value[0]].children[We.value[1]].startTime,i=nt.value[We.value[0]].children[We.value[1]].endTime,r=nt.value[We.value[0]].positioning;const n=a.split(":")[1],o=i.split(":")[1];let c=Number(o)-Number(n),s=l,d=Number(s)+c;nt.value[We.value[0]].children[We.value[1]].startTime=r+":"+s.padStart(2,"0"),nt.value[We.value[0]].children[We.value[1]].endTime=r+":"+String(d%60).padStart(2,"0"),De.value.index0=-1,De.value.index1=-1,j.value=!1;let m={index0:xe.value.index0,index1:xe.value.index1};it(m)},Y=t=>{5!==t?(C.value=!1,ee.value=-1,ie.value=-1,K.value="",le.value="",B.value=1,S.value=1,fe.value=-1,e.nextTick((()=>{B.value=0,S.value=0,fe.value=0})),he.value=0,we.value=t,F.value=M.value[t].children,Ne.value=0):uni.navigateTo({url:"/pages/watch/index"})},J=()=>{re.value=!1,j.value?W():nt.value[xe.value.index0].children[xe.value.index1].directiveName&&(De.value.index0=xe.value.index0,De.value.index1=xe.value.index1,j.value=!0)};e.ref(!0),e.ref(!1);const X=e.ref(!1),Z=e.ref(-1),H=e=>{switch(re.value=!1,e){case 0:xe.value.index1?(xe.value.index1--,dt(),A.value=!1,x.value&&setTimeout((()=>{Ie(nt.value[xe.value.index0].children[xe.value.index1],xe.value.index0,xe.value.index1)}),50)):(G.value=0,Z.value=xe.value.index0,X.value=!1);break;case 1:if(23==xe.value.index0)return;xe.value.index0++,dt(),A.value=!1,x.value&&setTimeout((()=>{Ie(nt.value[xe.value.index0].children[xe.value.index1],xe.value.index0,xe.value.index1)}),50);break;case 2:if(11==xe.value.index1)return;xe.value.index1++,dt(),A.value=!1,x.value&&setTimeout((()=>{Ie(nt.value[xe.value.index0].children[xe.value.index1],xe.value.index0,xe.value.index1)}),50);break;case 3:if(0==xe.value.index0)return;xe.value.index0--,dt(),A.value=!1,x.value&&setTimeout((()=>{Ie(nt.value[xe.value.index0].children[xe.value.index1],xe.value.index0,xe.value.index1)}),50)}},G=e.ref(-1),Q=e=>{switch(re.value=!1,e){case 0:break;case 1:G.value<3&&G.value++;break;case 2:v.value=!1,g.value=!1,G.value=-1,xe.value.index0=Z.value,X.value=!0;break;case 3:G.value&&G.value--}},K=e.ref(""),ee=e.ref(-1),le=e.ref(""),ie=e.ref(-1),re=e.ref(!1),ne=()=>{De.value.index0=-1,De.value.index1=-1,j.value=!1,nt.value[xe.value.index0].children[xe.value.index1].directiveName&&(re.value?(re.value=!1,$e(xe.value.index0,xe.value.index1)):re.value=!0)};function oe(e,t){return 2*function(e,t){const l=55.9898*e+78.233*t;return Math.abs(43758.5453*Math.sin(l))%1}(e,t)}e.ref(!1),e.ref(0);const ce=e.ref(0),se=e.ref(0);function de(e){let t=e.detail.scrollTop;ce.value=e.detail.scrollTop;let l=parseFloat(t.toFixed(2));se.value=l}const me=e.ref(0);function ue(e){me.value=e.detail.scrollLeft}e.ref(!0);const ve=(e,t,l)=>"日常"===e.cycleType?De.value.index0===t&&De.value.index1===l?"title-time-border-yellow-active-transparent":Ue.value?"title-time-border-yellow-active":"title-time-border-yellow":e.cycleType?De.value.index0===t&&De.value.index1===l?"title-time-border-pouple-active-transparent":Ue.value?"title-time-border-pouple-active":"title-time-border-pouple":"title-time-border";function pe(e,t,l,a="png",i=0,r=!1){return Array.from({length:l},((l,n)=>{const o=r?String(n+i).padStart(2,"0"):n+i;return`${e}/${t}${o}.${a}`}))}const ge=e.ref([{url:pe("/static/index/newruler","daily_",6,"png",1,!1),name:"日常"},{url:pe("/static/index/newruler","clean_",8,"png",1,!1),name:"清洁"},{url:pe("/static/index/newruler","diet_",7,"png",1,!1),name:"饮食"},{url:pe("/static/index/newruler","sleep_",5,"png",1,!1),name:"睡眠"},{url:pe("/static/index/newruler","defecate_",5,"png",1,!1),name:"排泻"}]),we=e.ref(1),he=e.ref(0),fe=e.ref(-1),Ne=e.ref(0);e.ref(!1),e.ref([]);const ye=i;e.ref(!1);const xe=e.ref({index0:-1,index1:-1});e.ref(0),e.ref([]);const Ee=e.ref(null);e.ref({});const Ve=e.ref(0),be=e.ref(0),ke=e.ref(0),Te=e.ref(0),De=e.ref({index0:999,index1:999,typeName:""});e.ref(-1),e.ref(!1);const Ce=e.ref(!1),Se=e.ref(-1),Be=e.ref(!1),ze=()=>{Be.value=!0,Ce.value=!1,setTimeout((()=>{Ce.value=!0}),100)},_e=e.ref([!1,!1]),Ie=(t,l,a)=>{if(t.directiveName){Se.value=a;uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.left>100&&t.left<1067&&t.top<670&&t.top>50&&t.dataset.index0==l&&t.dataset.index1==a&&(t.left>100&&t.left<500?(ke.value=Math.floor(t.left)+528,_e.value[0]=!0):(ke.value=Math.floor(t.left)-18,_e.value[0]=!1),t.top>500?(Te.value=Math.floor(t.top)+100,_e.value[1]=!0):(Te.value=Math.floor(t.top)+180,_e.value[1]=!1),await e.nextTick(),A.value=!0,L.value=!1,setTimeout((()=>{L.value=!0}),100))}))})).exec()}},Ue=e.ref(!1);e.ref([]);const Fe=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-Ve.value)>0||Math.abs(l-be.value)>0)&&Ee.value&&(clearTimeout(Ee.value),Ee.value=null)},$e=(e,t)=>{let l=nt.value[e].children[t].typeName;nt.value[e].children[t]={directiveName:"",typeName:l}};e.ref(null),e.ref(!1),e.ref(!1);const Me=e.ref(0),Ae=e.ref(0),Le=e.ref(!1);e.ref(""),e.ref("");const Oe=e.ref(null),Pe=e.ref(!1),je=e=>{Me.value=Math.floor(e.touches[0].pageX),Ae.value=Math.floor(e.touches[0].pageY),Oe.value=setTimeout((()=>{Pe.value=!0}),500)},qe=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-Me.value)>0||Math.abs(l-Ae.value)>0)&&Oe.value&&(clearTimeout(Oe.value),Oe.value=null)},Re=()=>{Oe.value&&(clearTimeout(Oe.value),Oe.value=null)};e.ref({time:"",minute:"",array:[]}),e.ref({op:{name:"",index:[-1,-1,-1]},startTime:"",weekTimeNumber:-1,monthTimeNumber:-1,monthTime:"",weekTime:""}),e.ref(0);const We=e.ref([-1,-1]);e.ref(null);const Ye=()=>{P.value=!1,O.value=!0,setTimeout((()=>{P.value=!0}),50)},Je=e.ref(!1);let Xe=null;async function Ze(){Xe&&(clearTimeout(Xe),Xe=null),Je.value=!1,await e.nextTick(),Je.value=!0,He(),Xe=setTimeout((()=>{Je.value=!1,Xe=null}),1e3)}e.onBeforeUnmount((()=>{Xe&&clearTimeout(Xe)}));const He=()=>{if(-1===xe.value.index1&&-1===xe.value.index0)return;if(re.value)return re.value=!1,void $e(xe.value.index0,xe.value.index1);if(j.value)return void W();De.value.index0=-1,De.value.index1=-1,j.value=!1;let t=!1,l=M.value[we.value].children[he.value].children[Ne.value];if("即时护理"===l.cycleType)return z.value=1,V.value.forEach(((e,a)=>{e.id===l.id&&(t=!0)})),void e.nextTick((()=>{t?(clearTimeout(Qe.value),$.value=!0,Qe.value=setTimeout((()=>{$.value=!1}),1500)):(z.value=0,V.value.length&&"#03a4ff"===V.value[0].target&&(V.value[0].target="#fff",clearTimeout(Ge.value)),V.value.unshift({name:l.title,url:"/static/index/ou.png",target:"#03a4ff",id:l.id}),Ge.value=setTimeout((()=>{V.value[0].target="#fff"}),1500))}));if("周期护理"===l.cycleType&&C.value&&-1==ee.value&&-1==ie.value)return;if("周期护理"===l.cycleType&&!C.value)return void(C.value=!0);let a="";"日常护理"===l.cycleType?a="日常":(a=-1!==ee.value?K.value:le.value+"号",C.value=!1,ee.value=-1,ie.value=-1,K.value="",le.value="");const i=Number(xe.value.index0),r=Number(nt.value[xe.value.index0].children[xe.value.index1].typeName),n=r+10,o=i+Math.floor(n/60),c=`${String(i)}:${String(r).padStart(2,"0")}`,s=`${String(o)}:${String(n%60).padStart(2,"0")}`;nt.value[xe.value.index0].children[xe.value.index1].startTime=c,nt.value[xe.value.index0].children[xe.value.index1].endTime=s;let d={directiveId:l.id,directiveName:l.title,startTime:c,endTime:s,positioning:xe.value.index0.toString(),positioningLong:xe.value.index1.toString(),tagName:l.tagName,cycleType:a,nuId:"1",customerId:"1",id:"",typeName:nt.value[xe.value.index0].children[xe.value.index1].typeName};nt.value[xe.value.index0].children[xe.value.index1]=d;let m={index0:xe.value.index0,index1:xe.value.index1};it(m),Ke()},Ge=e.ref(null),Qe=e.ref(null),Ke=()=>{nt.value.forEach(((e,t)=>{e.children.forEach(((e,l)=>{let a="";if(e.directiveName||e.id)e.positioning=t,e.positioningLong=l;else{let i={};e.typeName&&(a=e.typeName),i=JSON.parse(JSON.stringify(ct.value)),a&&(i.typeName=a),i.positioning=t,i.positioningLong=l}}))}))},et=()=>{uni.setStorage({key:"myArray",data:nt.value,success:function(){uni.navigateTo({url:"/pages/timeMatrix/indexnew"})}})},tt=e.ref({index0:-1,index1:-1}),lt=e.ref({index0:-1,index1:-1,current:-1,bordershow:!0}),at=e.ref(0),it=e=>{xe.value.index0=e.index0,xe.value.index1=e.index1,dt(),lt.value.index0=e.index0,lt.value.index1=e.index1,tt.value.index0=lt.value.index0,tt.value.index1=lt.value.index1,lt.value.bordershow=!1,setTimeout((()=>{lt.value.index0=-1,lt.value.index1=-1,lt.value.current=-1}),400),setTimeout((()=>{lt.value.bordershow=!0,tt.value.index0=-1,tt.value.index1=-1}),1e3)},rt=["00","05","10","15","20","25","30","35","40","45","50","55"],nt=e.ref(Array.from({length:24},((e,t)=>({positioning:t.toString(),children:rt.map((e=>({typeName:e,directiveName:""})))}))));function ot(e){at.value=3,it(e)}r((()=>{M.value=ae,F.value=M.value[0].children,uni.$on("where",ot)})),n((()=>{uni.$off("where",ot)})),a({rulerMoveEnd:e=>{if(999!==o.liang.index0&&e.cycleType){We.value=[o.liang.index0,o.liang.index1];let t=nt.value[De.value.index0].children[De.value.index1].typeName;nt.value[De.value.index0].children[De.value.index1]={directiveName:"",typeName:t};let l=nt.value[We.value[0]].children[We.value[1]].typeName;nt.value[We.value[0]].children[We.value[1]]=e,nt.value[We.value[0]].children[We.value[1]].typeName=l;let a=nt.value[We.value[0]].children[We.value[1]].startTime,i=nt.value[We.value[0]].children[We.value[1]].endTime,r=nt.value[We.value[0]].positioning;const n=a.split(":")[1],c=i.split(":")[1];let s=Number(c)-Number(n),d=l,m=Number(d)+s;nt.value[We.value[0]].children[We.value[1]].startTime=r+":"+d.padStart(2,"0"),nt.value[We.value[0]].children[We.value[1]].endTime=r+":"+String(m%60).padStart(2,"0")}}}),e.ref({index0:999,index1:999});const ct=e.ref({directiveId:"",directiveName:"",startTime:"",endTime:"",positioning:"",positioningLong:"",tagName:"",cycleType:"",nuId:"1",customerId:"1",id:"",typeName:""});function st(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}function dt(){if(xe.value.index0>=0&&xe.value.index0<=24&&xe.value.index1>=0&&xe.value.index1<=11){const e=259*(xe.value.index0+.5),t=250.5*(xe.value.index1-1);I.value=e-650,U.value=t-250;const l=6216,a=2755.5;I.value=Math.max(0,Math.min(I.value,l-1300))/2,U.value=Math.max(0,Math.min(U.value,a-500))/2}}return(l,a)=>{var i,r;const n=e.resolveComponent("donghua");return e.openBlock(),e.createElementBlock("view",{class:"right-container",style:e.normalizeStyle(t.isshow?{opacity:"1"}:{opacity:"0"}),onClick:a[15]||(a[15]=e=>{Pe.value=!1,Ue.value=!1})},[e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{style:{"margin-left":"30rpx"}}," NUID:2508000001 "),e.createElementVNode("text",{class:"new-weight"}," 护理单元01 "),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-right":"25rpx",padding:"0 15rpx"},class:e.normalizeClass(G.value||c.value||d.value?"":"firsttarget")},[e.createElementVNode("view",{class:"mark"},[e.createElementVNode("view",{style:{"margin-right":"15rpx"}}," 体型标签: "),e.withDirectives(e.createElementVNode("view",{class:"mark-bgc",style:e.normalizeStyle({opacity:u.value?1:0})},[e.createElementVNode("view",{style:{"margin-top":"40rpx","margin-bottom":"30rpx","margin-left":"50rpx","font-size":"32rpx"}},[e.createElementVNode("view",null," 体型标签 ")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(b.slice(0,5),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>N(l)},[e.createElementVNode("view",{class:e.normalizeClass(["tags-father",s.value===l?"secondtarget":""])},[e.createElementVNode("image",{class:"tags-img",src:h.value.includes(l)?`/static/index/tagNames/${l}1.png`:`/static/index/tagNames/${l}0.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font",style:e.normalizeStyle(h.value.includes(l)?{color:"rgb(54, 159, 239)"}:{})},e.toDisplayString(t),5)],2)],8,["onClick"])))),128))])],4),[[e.vShow,v.value]])]),e.createElementVNode("view",{class:"marknone",onClick:a[0]||(a[0]=e=>{v.value=!v.value,g.value=!1})},[h.value.length?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,style:{"margin-top":"-3rpx"}}," 未选择 ")),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(h.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("image",{class:"tags-img",style:{width:"40rpx",height:"40rpx",margin:"0 10rpx"},src:`/static/index/tagNames/${t}0.png`},null,8,["src"])])))),128))]),e.createElementVNode("view",{class:"tri-down",onClick:a[1]||(a[1]=e=>{v.value=!v.value,g.value=!1})})],2),e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-right":"15rpx",padding:"0 15rpx"},class:e.normalizeClass(1!==G.value||c.value||d.value?"":"firsttarget")},[e.createElementVNode("view",{class:"mark"},[e.createTextVNode(" 情绪标签: "),e.withDirectives(e.createElementVNode("view",{class:"mark-bgc",style:e.normalizeStyle({opacity:w.value?1:0})},[e.createElementVNode("view",{style:{"margin-top":"40rpx","margin-bottom":"30rpx","margin-left":"50rpx","font-size":"32rpx"}},[e.createElementVNode("view",null," 情绪标签 ")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(b.slice(5,12),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>y(l)},[e.createElementVNode("view",{class:e.normalizeClass(["tags-father",m.value===l?"secondtarget":""])},[e.createElementVNode("image",{class:"tags-img",src:f.value.includes(l)?`/static/index/tagNames/${l+5}1.png`:`/static/index/tagNames/${l+5}0.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font",style:e.normalizeStyle(f.value.includes(l)?{color:"rgb(54, 159, 239)"}:{})},e.toDisplayString(t),5)],2)],8,["onClick"])))),128))])],4),[[e.vShow,g.value]])]),e.createElementVNode("view",{class:"marknone",onClick:a[2]||(a[2]=e=>{g.value=!g.value,v.value=!1})},[f.value.length?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,style:{"margin-top":"-3rpx"}}," 未选择 ")),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(f.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("image",{class:"tags-img",style:{width:"40rpx",height:"40rpx",margin:"0 10rpx"},src:`/static/index/tagNames/${t+5}0.png`},null,8,["src"])])))),128))]),e.createElementVNode("view",{class:"tri-down",onClick:a[3]||(a[3]=e=>{g.value=!g.value,v.value=!1})})],2),e.createElementVNode("view",{class:e.normalizeClass(["white-button",2===G.value?"firsttarget":""]),onClick:et},[e.createElementVNode("image",{class:"white-img",src:"/static/index/newruler/yulan.png"},null,8,["src"]),e.createTextVNode(" 预览 ")],2),e.createElementVNode("view",{class:e.normalizeClass(["white-button",3===G.value?"firsttarget":""]),onClick:ze},[e.createElementVNode("image",{class:"white-img",src:"/static/index/newruler/fenxiang.png"},null,8,["src"]),e.createTextVNode(" 分享 ")],2)])]),e.createElementVNode("view",{class:"doctorsay-container-view"},[e.createElementVNode("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"boom-father"},[e.createElementVNode("view",{class:"boom"},[e.createElementVNode("view",{style:e.normalizeStyle({marginTop:`-${2*se.value}rpx`})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(nt.value[0].children,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.withDirectives(e.createElementVNode("view",{class:"boom-son"},[e.createElementVNode("text",{class:"boom-text"},e.toDisplayString(t.typeName),1)],512),[[e.vShow,t.typeName]])])))),128))],4)])]),e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("scroll-view",{style:{height:"1330rpx",width:"100%",border:"2rpx solid balck"},"scroll-left":I.value,"scroll-x":"",onScroll:ue,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",width:"4824rpx"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(nt.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time"},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),1)])))),128))]),e.createElementVNode("view",{style:{display:"flex",height:"calc(100% - 80rpx)",position:"relative"}},[e.createElementVNode("view",{class:"xian-bian"}),e.createElementVNode("scroll-view",{style:{height:"100%",width:"6744rpx"},"scroll-top":U.value,"scroll-y":!0,onScroll:de,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(nt.value,((l,i)=>(e.openBlock(),e.createElementBlock("view",{key:i},[e.createElementVNode("view",{class:"super-card-time-und"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.children,((l,r)=>(e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:r},[e.createElementVNode("view",{class:e.normalizeClass(lt.value.index0===i&<.value.index1===r?lt.value.index1?"title-time-border-big":"title-time-border-big-top":"super-card-time-card"),style:e.normalizeStyle([lt.value.bordershow||tt.value.index0!==i||tt.value.index1!==r?{borderBottom:"1rpx solid transparent"}:{zIndex:999},{position:"relative"}]),id:`a${i}_${r}`,onClick:e=>Ie(l,i,r),onTouchstart:e=>{},onTouchmove:Fe,onTouchend:a[4]||(a[4]=e=>(Le.value=!1,void(Ee.value&&(clearTimeout(Ee.value),Ee.value=null)))),"data-index0":i,"data-index1":r},[De.value.index0===i&&De.value.index1===r&&0==r?(e.openBlock(),e.createElementBlock("view",{key:0,class:"time-button-orange-spe",style:e.normalizeStyle({left:De.value.index0?"-130rpx":"0"})}," 请选择服务指令迁移的目标单元格 ",4)):e.createCommentVNode("",!0),De.value.index0===i&&De.value.index1===r&&r?(e.openBlock(),e.createElementBlock("view",{key:1,class:"time-button-orange",style:e.normalizeStyle({left:De.value.index0?"-130rpx":"0"})}," 请选择服务指令迁移的目标单元格 ",4)):e.createCommentVNode("",!0),xe.value.index0==i&&xe.value.index1==r&&0==r&&re.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"time-button-black-spe",style:e.normalizeStyle({left:xe.value.index0?"-220rpx":"0"})}," 是否确认删除该服务指令 ",4)):e.createCommentVNode("",!0),xe.value.index0==i&&xe.value.index1==r&&r&&re.value?(e.openBlock(),e.createElementBlock("view",{key:3,class:"time-button-black",style:e.normalizeStyle({left:xe.value.index0?"-220rpx":"0"})}," 是否确认删除该服务指令 ",4)):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{class:"title-time-blue"},null,512),[[e.vShow,xe.value.index0==i&&xe.value.index1==r&&X.value]]),e.createElementVNode("view",{class:e.normalizeClass(ve(l,i,r)),style:e.normalizeStyle([{"font-size":"30rpx",overflow:"hidden"},{animationDelay:`-${oe(i,r).toFixed(2)}s`}])},[l.startTime?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"flex-direction":"column"}},[e.withDirectives(e.createElementVNode("image",{style:{width:"60rpx",height:"60rpx",margin:"0 auto","margin-top":"30rpx"},src:_},null,512),[[e.vShow,l.startTime]]),e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(l.startTime+"-"+l.endTime),1),"日常"!=l.cycleType?(e.openBlock(),e.createElementBlock("image",{key:0,class:"title-time-button",style:{width:"80rpx",height:"48rpx"},src:te})):e.createCommentVNode("",!0),"日常"!=l.cycleType?(e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font",style:{right:"10rpx",top:"5rpx","font-size":"23rpx"}},e.toDisplayString(l.cycleType),1)):e.createCommentVNode("",!0)],512)),[[e.vShow,t.liang.index0!==i||t.liang.index1!==r||t.canmove]]):e.createCommentVNode("",!0),l.startTime?(e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font-rel"},e.toDisplayString(st(l.directiveName)[0]),1)):e.createCommentVNode("",!0)],6)],46,["id","onClick","onTouchstart","data-index0","data-index1"])])))),128))])])))),128))])],40,["scroll-top"])])],40,["scroll-left"])]),e.createElementVNode("view",{class:"right-cards"},[e.createElementVNode("view",{style:{"margin-top":"60rpx","margin-left":"30rpx"}},[e.createElementVNode("view",{class:""}," 即时指令 "),e.createElementVNode("view",{style:{width:"30rpx",height:"6rpx","background-color":"black","margin-left":"40rpx","margin-top":"3rpx","border-radius":"20rpx"}})]),e.createElementVNode("scroll-view",{"scroll-x":"",class:"scroll-box","scroll-left":z.value},[e.createElementVNode("view",{class:"right-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(V.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"right-box-item",onTouchstart:je,onTouchmove:qe,onTouchend:Re,style:e.normalizeStyle(t.target?{background:t.target,transition:"all 1.5s ease-in-out"}:{transition:"all 1.5s ease-in-out"})},[e.createElementVNode("view",{style:e.normalizeStyle({animationDelay:`-${.1*l}s`}),class:e.normalizeClass(Pe.value?"super-end-items-img-father-active":"super-end-items-img-father")},[e.createElementVNode("image",{class:"right-box-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"right-box-font"},e.toDisplayString(t.name),1)],6),e.withDirectives(e.createElementVNode("view",{class:"super-end-items-father-close-father",onClick:e.withModifiers((e=>V.value.splice(l,1)),["stop"])}," - ",8,["onClick"]),[[e.vShow,Pe.value]])],36)])))),128))])],8,["scroll-left"]),e.createElementVNode("view",{class:"middle-box"},[e.createElementVNode("view",{class:"middle-left-box"},[e.createElementVNode("view",{class:"first-contant"},[e.withDirectives(e.createElementVNode("view",{class:"time-father"},[e.withDirectives(e.createElementVNode("view",{class:"time-button"},[e.createElementVNode("view",{class:"time-button-month"},"周"),e.createElementVNode("view",{class:"time-button-week",onClick:a[5]||(a[5]=e=>{D.value=!1,ee.value=-1,K.value=""})},"月")],512),[[e.vShow,D.value]]),e.withDirectives(e.createElementVNode("view",{class:"time-button"},[e.createElementVNode("view",{class:"time-button-month-target",onClick:a[6]||(a[6]=e=>{D.value=!0,ie.value=-1,le.value=""})},"周"),e.createElementVNode("view",{class:"time-button-week-target"},"月")],512),[[e.vShow,!D.value]]),e.createElementVNode("scroll-view",{"scroll-y":"",style:{width:"100%",height:"600rpx"},"show-scrollbar":!1,"scroll-top":S.value},[D.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},e.renderList(k,((t,l)=>e.createElementVNode("view",{key:l,onClick:e=>((e,t)=>{const l=Date.now();l-R.value<300?(K.value=e,ee.value=t,He(),R.value=0):(K.value=e,ee.value=t,R.value=l)})(t,l)},[e.createElementVNode("view",{class:e.normalizeClass(ee.value===l?"items-card-target":"items-card")},e.toDisplayString(t),3)],8,["onClick"]))),64)):e.createCommentVNode("",!0),D.value?e.createCommentVNode("",!0):(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(e.unref(T),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>((e,t)=>{const l=Date.now();l-R.value<300?(le.value=e,ie.value=t,He(),R.value=0):(le.value=e,ie.value=t,R.value=l)})(t,l)},[e.createElementVNode("view",{class:e.normalizeClass(ie.value===l?"items-card-target":"items-card")},e.toDisplayString(t),3)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"40rpx"}})],8,["scroll-top"])],512),[[e.vShow,C.value]]),e.withDirectives(e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%",width:"100%"},"show-scrollbar":!1,"scroll-top":S.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(M.value[we.value].children[he.value].children,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>function(e){const t=Date.now();Ne.value=e,t-R.value<300?(Ne.value=e,He(),R.value=0):(Ne.value=e,R.value=t)}(l)},[e.createElementVNode("view",{class:"right-box-item",style:e.normalizeStyle(Ne.value==l?{border:"2rpx solid rgb(229, 233, 249)",backgroundColor:"#fff"}:{border:"2rpx solid rgb(229, 233, 249)"})},[e.withDirectives(e.createElementVNode("view",{class:"title-time-button-font"}," 周期 ",512),[[e.vShow,"周期护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("view",{class:"title-time-button-font"}," 即时 ",512),[[e.vShow,"即时护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:te},null,512),[[e.vShow,"周期护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:te},null,512),[[e.vShow,"即时护理"===t.cycleType]]),e.createElementVNode("image",{class:"right-box-img",src:_}),e.createElementVNode("view",{class:"right-box-font",style:e.normalizeStyle([{"font-size":"20rpx","margin-top":"2rpx"},Ne.value==l?{color:"rgb(54, 159, 239)"}:{}])},e.toDisplayString(t.title),5)],4)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"20rpx"}})],8,["scroll-top"]),[[e.vShow,!C.value]])]),e.createElementVNode("view",{class:"second-contant"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%",width:"100%"},"show-scrollbar":!1,"scroll-top":B.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(F.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(fe.value==l?"downList-box-target":"downList-box"),onClick:t=>(t=>{C.value=!1,ee.value=-1,ie.value=-1,K.value="",le.value="",he.value=t,fe.value=t,Ne.value=0,S.value=1,e.nextTick((()=>{S.value=0}))})(l)},[e.createVNode(n,{width:"55rpx",height:"55rpx",links:t.url,playing:fe.value==l,interval:120},null,8,["links","playing"]),e.createElementVNode("view",{class:"downList-box-text"},e.toDisplayString(t.title),1)],10,["onClick"])])))),128)),e.createElementVNode("view",{style:{height:"20rpx"}})],8,["scroll-top"])])]),e.createElementVNode("view",{class:"middle-right-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(ge.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>Y(l)},[e.createElementVNode("view",{class:"doctorsay-container-card"},[e.createVNode(n,{width:"55rpx",height:"55rpx",links:t.url,playing:l===we.value,interval:120},null,8,["links","playing"]),e.createElementVNode("view",{class:e.normalizeClass(l===we.value?"doctorsay-container-card-font-dark":"doctorsay-container-card-font")},e.toDisplayString(t.name),3)])],8,["onClick"])))),128))])]),e.createElementVNode("view",{class:"under-button"},[$.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"under-button-black"}," 不能重复添加相同的即时服务指令 ")):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"white-circle",onClick:J},[e.createElementVNode("image",{class:"white-circle-img",src:`/static/index/keyimg/movebutton${j.value?"blue":""}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"white-circle",onClick:ne},[e.createElementVNode("image",{class:"white-circle-img",src:`/static/index/keyimg/deletebutton${re.value?"blue":""}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"white-circle",onClick:Ye},[e.createElementVNode("image",{class:"white-circle-img",src:`/static/index/keyimg/notebutton${O.value?"blue":""}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"white-circle",onClick:a[7]||(a[7]=e=>x.value=!x.value)},[e.createElementVNode("image",{class:"white-circle-img",src:`/static/index/keyimg/open${x.value?"blue":""}.png`},null,8,["src"])]),e.createElementVNode("view",{style:{position:"relative"}},[e.createElementVNode("view",{ref:"btnRef",class:e.normalizeClass(["white-circle-click-father",{anim:Je.value}]),style:e.normalizeStyle({color:Je.value?"#fff":""}),onClick:Ze},[e.createElementVNode("view",{style:{"z-index":"999"}}," 确定 ")],6),e.createElementVNode("view",{class:"white-circle-click-father-spec",onClick:a[8]||(a[8]=e=>Y(5))},[e.createElementVNode("view",{class:"other-father"},[e.createElementVNode("image",{style:{width:"55rpx",height:"55rpx"},src:"/static/index/newruler/monitor_1.png"}),e.createElementVNode("view",{style:{"z-index":"999","font-size":"25rpx"}}," 监控 ")])])])])])])])]),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay",onClick:a[10]||(a[10]=e=>{A.value=!1,De.value.index0=999,Se.value=-1})},[e.createElementVNode("view",{class:e.normalizeClass(["popup-overlay-content",q.value]),style:e.normalizeStyle({top:2*Te.value-350+"rpx",left:2*ke.value-780+"rpx",opacity:L.value?1:0}),onClick:a[9]||(a[9]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"},e.toDisplayString(null==(r=null==(i=nt.value[De.value.index0])?void 0:i.children[De.value.index1])?void 0:r.value),1)]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],6)],512),[[e.vShow,A.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-say",onClick:a[12]||(a[12]=e=>O.value=!1)},[e.createElementVNode("view",{class:"popup-say-content",style:e.normalizeStyle([{padding:"30rpx 0"},{opacity:P.value?1:0}]),onClick:a[11]||(a[11]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{style:{"margin-top":"20rpx","margin-bottom":"20rpx","margin-left":"30rpx","font-size":"32rpx"}},[e.createElementVNode("view",null," 体型标签 ")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(b.slice(0,5),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"tags-father"},[e.createElementVNode("image",{class:"tags-img",src:`/static/index/tagNames/${l}0.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font"},e.toDisplayString(t),1)])])))),128))]),e.createElementVNode("view",{style:{"margin-top":"40rpx","margin-bottom":"20rpx","margin-left":"30rpx","font-size":"32rpx"}},[e.createElementVNode("view",null," 情绪标签 ")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(b.slice(5,12),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"tags-father"},[e.createElementVNode("image",{class:"tags-img",src:`/static/index/tagNames/${l+5}0.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font"},e.toDisplayString(t),1)])])))),128))]),e.createElementVNode("view",{class:"popup-say-three"})],4)],512),[[e.vShow,O.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-share",onClick:a[14]||(a[14]=e=>Be.value=!1)},[e.createElementVNode("view",{class:"popup-share-content",style:e.normalizeStyle({opacity:Ce.value?1:0}),onClick:a[13]||(a[13]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"share-other"},[e.createElementVNode("view",{class:"share-title"},[e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx"},src:"/static/index/sharelogo.png"}),e.createElementVNode("view",{style:{"font-weight":"600","margin-left":"15rpx"}}," 护理单元 ")]),e.createElementVNode("view",{class:"share-others"},[e.createElementVNode("view",{style:{"font-weight":"600","font-size":"45rpx"}}," 护理流程 "),e.createElementVNode("view",{style:{"margin-top":"30rpx"}},[e.createTextVNode(" 护理单元01 "),e.createElementVNode("text",{style:{color:"#1083F8"}}," 王金凤 ")]),e.createElementVNode("view",{class:"blue-button"}," 分享 ")])])],4)],512),[[e.vShow,Be.value]])],4)}}}),[["__scopeId","data-v-08249c72"]]),re=s(e.defineComponent({__name:"index",setup(l){e.onMounted((()=>{o.value=-1,e.nextTick((()=>o.value=0)),m.value=2,uni.getSystemInfoSync(),uni.pageScrollTo,a.value=uni.getStorageSync("realname")}));const a=e.ref("");function i(e,t,l,a="png",i=0,r=!1){return Array.from({length:l},((l,n)=>{const o=r?String(n+i).padStart(2,"0"):n+i;return`${e}/${t}${o}.${a}`}))}const n=e.ref([{url:i("/static/index/newindex/curve","home_",5,"png",1,!1),name:"首页"},{url:i("/static/index/newindex/curve","nurse_",8,"png",1,!1),name:"护嘱"},{url:i("/static/index/newindex/curve","doctor_",6,"png",1,!1),name:"医嘱"},{url:i("/static/index/newindex/curve","lead_",12,"png",1,!1),name:"请领"},{url:i("/static/index/newindex/curve","device_",7,"png",1,!1),name:"设备"}]);e.ref([{url:"/static/index/lefticon/index.png",name:"首页"},{url:"/static/index/lefticon/nurse.png",name:"护嘱"},{url:"/static/index/lefticon/doctor.png",name:"医嘱"},{url:"/static/index/lefticon/give.png",name:"请领"},{url:"/static/index/lefticon/wifi.png",name:"设备"},{url:"/static/index/lefticon/back.png",name:"返回"}]),e.ref([{url:"/static/index/lefticon/index.png",targetUrl:"/static/index/lefticontarget/blueindex.png"},{url:"/static/index/lefticon/nurse.png",targetUrl:"/static/index/lefticontarget/bluenurse.png"},{url:"/static/index/lefticon/doctor.png",targetUrl:"/static/index/lefticontarget/bluedoctor.png"},{url:"/static/index/lefticon/give.png",targetUrl:"/static/index/lefticontarget/givedark.png"},{url:"/static/index/lefticon/wifi.png",targetUrl:"/static/index/lefticontarget/bluewifi.png"},{url:"/static/index/lefticon/back.png",targetUrl:"/static/index/lefticontarget/blueback.png"}]);const o=e.ref(-1),c=e.ref(!1),s=e.ref(!1),d=e.ref(!1),m=e.ref(-1);function u(){t("TestModule").gotoNativePage({deviceId:"4",deviceName:"sdfsfsdf"})}e.ref([]),e.ref(0),e.ref(0),e.ref(0),e.ref(0),e.ref(0);const v=e=>{o.value!==e&&(o.value=e,c.value=!1,s.value=!1,setTimeout((()=>{switch(e){case 0:c.value=!0;break;case 1:s.value=!0}}),50))},p=e=>{z.value=!0,_.value=e,o.value=e,c.value=!1,s.value=!1,5!==e?setTimeout((()=>{switch(e){case 0:c.value=!0;break;case 1:s.value=!0}}),50):uni.navigateBack()},g=e.ref(0),w=e.ref(0),h=e.ref(""),f=e.ref(!0),y=e.ref({index0:999,index1:999}),x=e.ref(!0),E=uni.createAnimation({duration:0,timingFunction:"linear",delay:0}),V=e.ref({}),b=function(e,t){let l=0;return function(...a){const i=Date.now();i-l>=t&&(l=i,e.apply(this,a))}}((e=>{var t;const l=e.touches[0];g.value=2*(Math.floor(l.clientX)-100),w.value=2*(Math.floor(l.clientY)-55),E.translate3d(g.value/2,w.value/2,0).step({duration:0}),V.value=E.export();const a=Math.floor(l.clientX)-50,i=Math.floor(l.clientY)-25,r=k.value.find((e=>a>=Math.floor(e.left)&&a<=Math.floor(e.right)&&i>=Math.floor(e.top)&&i<=Math.floor(e.bottom)));if(r){const{index0:e,index1:l}=r.dataset;y.value.index0=e,y.value.index1=l,g.value<200&&x.value&&!m.value&&(null==(t=D.value)||t.nextItems(),x.value=!1,setTimeout((()=>{x.value=!0}),1e3))}else y.value.index0=999,y.value.index1=999}),40),k=e.ref([]),T=e.ref({directiveName:"",cycleType:"",positioningLong:"0",typeName:"",startTime:"",id:"",endTime:"",tagName:null}),D=e.ref(null),C=e.ref(null),S=()=>{var e,t,l;g.value=9999,w.value=9999,E.translate3d(g.value/2,w.value/2,0).step({duration:0}),V.value=E.export(),f.value=!0,y.value={index0:999,index1:999},h.value?m.value||null==(e=D.value)||e.rulerEnd(h.value):T.value.typeName&&(0===m.value?null==(t=D.value)||t.rulerMoveEnd(T.value):null==(l=C.value)||l.rulerMoveEnd(T.value)),h.value="",T.value={directiveName:"",cycleType:"",positioningLong:"0",typeName:"",startTime:"",id:"",endTime:"",tagName:null}};function B(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}r((()=>{setTimeout((()=>{p(o.value)}),50),c.value=!1,setTimeout((()=>{c.value=!0}),50)}));const z=e.ref(!0),_=e.ref(0),I=e.ref(-1),U=e.ref(!1),F=e=>{U.value=e},$=t=>{if(5===t)return U.value?(I.value=-1,void e.nextTick((()=>I.value=t))):void(z.value?uni.navigateBack():(z.value=!0,_.value=o.value));if(z.value)switch(t){case 0:_.value&&(_.value--,v(_.value));break;case 1:z.value=!1,_.value=-1;break;case 2:_.valueI.value=t))};return(t,l)=>{const a=e.resolveComponent("donghua"),i=e.resolveComponent("arrowkeys");return e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(d.value?"darkbackgroundContainer":"backgroundContainer"),onTouchmove:l[1]||(l[1]=(...t)=>e.unref(b)&&e.unref(b)(...t)),onTouchend:S},[e.withDirectives(e.createElementVNode("view",{class:"move-font",animation:V.value},e.toDisplayString(h.value),9,["animation"]),[[e.vShow,h.value&&g.value]]),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass("日常"==T.value.cycleType?"title-time-border-yellow":"title-time-border-pouple"),animation:V.value,style:{"font-size":"30rpx",overflow:"hidden"}},[e.withDirectives(e.createElementVNode("view",{class:"title-time",style:{"margin-top":"5rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(T.value.startTime+"-"+T.value.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==T.value.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(T.value.cycleType),1)],512),[[e.vShow,T.value.startTime]]),e.createElementVNode("view",{style:{"margin-top":"20rpx","font-weight":"700"}},e.toDisplayString(B(T.value.directiveName)[0]),1),e.withDirectives(e.createElementVNode("view",{class:"down-icons",style:e.normalizeStyle("日常"!=T.value.cycleType?{backgroundColor:"rgb(212,203,255)"}:{})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(B(T.value.directiveName).slice(1),((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:l},[e.createElementVNode("view",{class:"icon",style:e.normalizeStyle("日常"!=T.value.cycleType?{backgroundColor:"rgb(123,97,255)"}:{})},e.toDisplayString(B(T.value.directiveName)[1]),5)])))),128))],4),[[e.vShow,B(T.value.directiveName)[1]]])],10,["animation"]),[[e.vShow,T.value.cycleType]]),e.createElementVNode("view",{class:"left-container"},[e.createElementVNode("view",{class:"left-head",onClick:u},[e.createElementVNode("image",{class:"left-head-img",src:N}),e.createElementVNode("text",{class:e.normalizeClass(d.value?"left-head-font-dark":"left-head-font")}," 王金福 ",2)]),e.createElementVNode("view",{class:"menus-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["menu",_.value===l?"target":""]),style:e.normalizeStyle(_.value===l?{backgroundColor:"#ddf0ff"}:l===o.value?{backgroundColor:"#fff"}:{}),onClick:e=>p(l)},[e.createVNode(a,{width:"65rpx",height:"65rpx",links:t.url,playing:l===o.value},null,8,["links","playing"]),e.createElementVNode("text",{style:{"font-size":"31rpx","margin-left":"15rpx"}},e.toDisplayString(t.name),1)],14,["onClick"])))),128))])]),o.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(ee,{key:0,isShow:c.value,propsmove:I.value,isMain:z.value,onBack:l[0]||(l[0]=e=>$(5))},null,8,["isShow","propsmove","isMain"])),1==o.value&&2===m.value?(e.openBlock(),e.createBlock(ie,{key:1,isold:2===m.value,liang:y.value,isshow:s.value,propsmove:I.value,isMain:z.value,onVip:F},null,8,["isold","liang","isshow","propsmove","isMain"])):e.createCommentVNode("",!0),e.createVNode(i,{onMovecard:$})],34)}}}),[["__scopeId","data-v-8ad00f91"]]),ne=s(e.defineComponent({__name:"index",setup(t){const l=e.ref("");return(t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"请购清单")]),e.createElementVNode("view",{class:"draw-blue"}," 请购单号:A0120250301001 ")]),e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("image",{class:"swiper-card-top-img",src:"/static/index/project3.png"},null,8,["src"]),e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"}," 纸尿裤-拉拉裤 "),e.createElementVNode("view",{class:"weight-right",style:{width:"40%"}}," 采购数量:50 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-black"}," 800mm*690mm ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购单位: "),e.createElementVNode("view",{class:"swiper-black"}," 片 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 库存数量: "),e.createElementVNode("view",{class:"swiper-black"}," 50 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 库存下限: "),e.createElementVNode("view",{class:"swiper-black"}," 10 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 库存上限: "),e.createElementVNode("view",{class:"swiper-black"}," 1000 ")])])])]),e.createElementVNode("view",{class:"swiper-card-down"},[e.createElementVNode("view",{class:"down-left"},[e.createElementVNode("view",{class:"down-left-weight"}," 供应商: "),e.createElementVNode("view",{class:"down-left-font"}," 长春市永佳利商贸有限公司1 ")]),e.createElementVNode("image",{class:"delete-img",src:"/static/index/deleteIt.png"},null,8,["src"])])])]))),64))])])]),e.createElementVNode("view",{class:"down-note"},[e.withDirectives(e.createElementVNode("textarea",{class:"down-note-title-input","onUpdate:modelValue":a[0]||(a[0]=e=>l.value=e),maxlength:"300","placeholder-style":"color:#999",placeholder:"请输入备注"},null,512),[[e.vModelText,l.value]]),e.createElementVNode("text",{class:"char-count"},e.toDisplayString(l.value.length)+"/300",1)]),e.createElementVNode("view",{class:"down-button"},[e.createElementVNode("view",{class:"swiper-left-button-orange"}," 清空 "),e.createElementVNode("view",{class:"swiper-left-button-blue"}," 保存 "),e.createElementVNode("view",{class:"swiper-left-button-blue",style:{"margin-right":"40rpx"}}," 提交 ")])])]))}}),[["__scopeId","data-v-e15809eb"]]),oe=s(e.defineComponent({__name:"index",setup(t){const l=e.ref("");return(t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"请购清单")]),e.createElementVNode("view",{class:"draw-blue"}," 请购单号:A0120250301001 ")]),e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("image",{class:"swiper-card-top-img",src:"/static/index/project3.png"},null,8,["src"]),e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"}," 纸尿裤-拉拉裤 "),e.createElementVNode("view",{class:"weight-right",style:{width:"40%"}}," 采购数量:50 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-black"}," 800mm*690mm ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购单位: "),e.createElementVNode("view",{class:"swiper-black"}," 片 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 库存数量: "),e.createElementVNode("view",{class:"swiper-black"}," 50 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 库存下限: "),e.createElementVNode("view",{class:"swiper-black"}," 10 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 库存上限: "),e.createElementVNode("view",{class:"swiper-black"}," 1000 ")])])])]),e.createElementVNode("view",{class:"swiper-card-down"},[e.createElementVNode("view",{class:"down-left"},[e.createElementVNode("view",{class:"down-left-weight"}," 供应商: "),e.createElementVNode("view",{class:"down-left-font"}," 长春市永佳利商贸有限公司1 ")])])])]))),64))])])]),e.createElementVNode("view",{class:"down-note"},[e.withDirectives(e.createElementVNode("textarea",{disabled:"",class:"down-note-title-input","onUpdate:modelValue":a[0]||(a[0]=e=>l.value=e),maxlength:"300","placeholder-style":"color:#999",placeholder:"该请购单未备注"},null,512),[[e.vModelText,l.value]]),e.createElementVNode("text",{class:"char-count"},e.toDisplayString(l.value.length)+"/300",1)])])]))}}),[["__scopeId","data-v-c8dcc752"]]),ce=s(e.defineComponent({__name:"index",setup(t){e.ref("");const l=e.ref(0),a=e.ref(0),i=e.ref(!1),r=e.ref(!1),n=e.ref("全部"),o=e.ref("日期从近到远"),c=e.ref([{value:0,label:"全部"},{value:1,label:"出库"},{value:2,label:"入库"}]),s=e.ref([{value:0,label:"日期从近到远"},{value:1,label:"日期从远到近"}]),d=e.ref([{name:"生活用品请领",add:-20},{name:"采购入库",add:10},{name:"生活用品请领",add:-20},{name:"生活用品请领",add:20},{name:"生活用品请领",add:-20},{name:"生活用品请领",add:100},{name:"生活用品请领",add:9999}]),m=e=>{a.value=e.detail.scrollTop.toFixed(2)};return(t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"出入库")])]),e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("image",{class:"swiper-card-top-img",src:"/static/index/project3.png"},null,8,["src"]),e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"}," 纸尿裤-拉拉裤 "),e.createElementVNode("view",{class:"weight-right",style:{"margin-right":"30rpx"}}," 当前库存:96 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"20rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 物料编码: "),e.createElementVNode("view",{class:"swiper-black"}," ZHYP044 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"20rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-black"}," 800mm*690mm ")])])])])]),e.createElementVNode("view",{class:"select-width"},[e.createElementVNode("view",{class:"select-blue",onClick:a[1]||(a[1]=e=>i.value=!i.value)},[e.createElementVNode("image",{class:"select-blue-img",src:"/static/index/warehouseCard/selectblue.png"}),e.createElementVNode("view",{class:"select-blue-font"},e.toDisplayString(n.value),1),e.createElementVNode("div",{class:"triangle-down"}),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(["dropdown-list",i.value?"open":"close"]),onClick:a[0]||(a[0]=e.withModifiers((()=>{}),["stop"]))},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["dropdown-item",t.label==n.value?"active":""]),onClick:e=>{n.value=t.label,i.value=!1}},e.toDisplayString(t.label),11,["onClick"])))),128))],2),[[e.vShow,i.value]])]),e.createElementVNode("view",{class:"select-white",onClick:a[3]||(a[3]=e=>r.value=!r.value)},[e.createElementVNode("image",{class:"select-blue-img",src:"/static/index/warehouseCard/selectwhite.png"}),e.createElementVNode("view",{class:"select-blue-font"},e.toDisplayString(o.value),1),e.createElementVNode("div",{class:"triangle-down"}),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(["dropdown-list",r.value?"open":"close"]),onClick:a[2]||(a[2]=e.withModifiers((()=>{}),["stop"]))},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["dropdown-item",t.label==o.value?"active":""]),onClick:e=>{o.value=t.label,r.value=!1}},e.toDisplayString(t.label),11,["onClick"])))),128))],2),[[e.vShow,r.value]])])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("view",{class:"scroll-view-title"},[e.createElementVNode("view",{class:"amount"}," 总计:100笔 "),e.createElementVNode("view",{class:"outhouse"},[e.createElementVNode("image",{class:"outhouse-img",src:"/static/index/warehouseCard/orangeicon.png"}),e.createElementVNode("view",{class:"outhouse-left"}," 出库: "),e.createElementVNode("view",{class:"outhouse-right"}," 50笔 ")]),e.createElementVNode("view",{class:"inhouse"},[e.createElementVNode("image",{class:"inhouse-img",src:"/static/index/warehouseCard/blueicon.png"}),e.createElementVNode("view",{class:"inhouse-left"}," 出库: "),e.createElementVNode("view",{class:"inhouse-right"}," 50笔 ")])]),e.createElementVNode("scroll-view",{"scroll-y":"","scroll-top":l.value,onScroll:m,style:{height:"770rpx","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(d.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"swiper-card-spec"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},e.toDisplayString(t.name),1),e.createElementVNode("view",{class:"weight-right",style:{color:"#59657A","font-weight":"400"}}," 摘要:服务指令 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 服务指令:生活用品请领 ")]),e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray",style:e.normalizeStyle([t.add<0?{color:"#FF6600"}:{color:"#008AFF"},{"font-weight":"700","font-size":"35rpx"}])},e.toDisplayString(t.add>0?"+"+t.add:t.add),5)])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-black"}," 2025-02-13 17:29:18 ")]),e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-black"}," 库存: "),e.createElementVNode("view",{class:"swiper-black"}," 96 ")])])])]),e.createElementVNode("view",{class:"swiper-card-down"},[e.createElementVNode("view",{class:"down-left"},[e.createElementVNode("view",{class:"down-left-weight"}," 供应商: "),e.createElementVNode("view",{class:"down-left-font"}," 长春市永佳利商贸有限公司1 ")]),e.createElementVNode("image",{class:"delete-img",src:"/static/index/deleteIt.png"},null,8,["src"])])])])))),128))])],40,["scroll-top"])])])]))}}),[["__scopeId","data-v-a22273dc"]]);const se=s({name:"u-icon",emits:["click","touchstart"],props:{name:{type:String,default:""},color:{type:[String,null],default:""},size:{type:[Number,String],default:"inherit"},bold:{type:Boolean,default:!1},index:{type:[Number,String],default:""},hoverClass:{type:String,default:""},customPrefix:{type:String,default:"uicon"},label:{type:[String,Number],default:""},labelPos:{type:String,default:"right"},labelSize:{type:[String,Number],default:"28"},labelColor:{type:String,default:"#606266"},marginLeft:{type:[String,Number],default:"6"},marginTop:{type:[String,Number],default:"6"},marginRight:{type:[String,Number],default:"6"},marginBottom:{type:[String,Number],default:"6"},imgMode:{type:String,default:"widthFix"},customStyle:{type:Object,default:()=>({})},width:{type:[String,Number],default:""},height:{type:[String,Number],default:""},top:{type:[String,Number],default:0},showDecimalIcon:{type:Boolean,default:!1},inactiveColor:{type:String,default:"#ececec"},percent:{type:[Number,String],default:"50"}},computed:{customClass(){let e=[],{customPrefix:t,name:l}=this,a=l.indexOf("-icon-");return a>-1?(t=l.substring(0,a+5),e.push(l)):e.push(`${t}-${l}`),"uicon"===t?e.push("u-iconfont"):e.push(t),this.showDecimalIcon&&this.inactiveColor&&this.$u.config.type.includes(this.inactiveColor)?e.push("u-icon__icon--"+this.inactiveColor):this.color&&this.$u.config.type.includes(this.color)&&e.push("u-icon__icon--"+this.color),e},iconStyle(){let e={};return e={fontSize:"inherit"==this.size?"inherit":this.$u.addUnit(this.size),fontWeight:this.bold?"bold":"normal",top:this.$u.addUnit(this.top)},this.showDecimalIcon&&this.inactiveColor&&!this.$u.config.type.includes(this.inactiveColor)?e.color=this.inactiveColor:this.color&&!this.$u.config.type.includes(this.color)&&(e.color=this.color),e},isImg(){return-1!==this.name.indexOf("/")},imgStyle(){let e={};return e.width=this.width?this.$u.addUnit(this.width):this.$u.addUnit(this.size),e.height=this.height?this.$u.addUnit(this.height):this.$u.addUnit(this.size),e},decimalIconStyle(){let e={};return e={fontSize:"inherit"==this.size?"inherit":this.$u.addUnit(this.size),fontWeight:this.bold?"bold":"normal",top:this.$u.addUnit(this.top),width:this.percent+"%"},this.color&&!this.$u.config.type.includes(this.color)&&(e.color=this.color),e},decimalIconClass(){let e=[];return e.push(this.customPrefix+"-"+this.name),"uicon"==this.customPrefix?e.push("u-iconfont"):e.push(this.customPrefix),this.color&&this.$u.config.type.includes(this.color)?e.push("u-icon__icon--"+this.color):e.push("u-icon__icon--primary"),e}},methods:{click(){this.$emit("click",this.index)},touchstart(){this.$emit("touchstart",this.index)}}},[["render",function(t,l,a,i,r,n){return e.openBlock(),e.createElementBlock("view",{style:e.normalizeStyle([a.customStyle]),class:e.normalizeClass(["u-icon",["u-icon--"+a.labelPos]]),onClick:l[1]||(l[1]=(...e)=>n.click&&n.click(...e))},[n.isImg?(e.openBlock(),e.createElementBlock("image",{key:0,class:"u-icon__img",src:a.name,mode:a.imgMode,style:e.normalizeStyle([n.imgStyle])},null,12,["src","mode"])):(e.openBlock(),e.createElementBlock("view",{key:1,class:e.normalizeClass(["u-icon__icon",n.customClass]),style:e.normalizeStyle([n.iconStyle]),"hover-class":a.hoverClass,onTouchstart:l[0]||(l[0]=(...e)=>n.touchstart&&n.touchstart(...e))},[a.showDecimalIcon?(e.openBlock(),e.createElementBlock("text",{key:0,style:e.normalizeStyle([n.decimalIconStyle]),class:e.normalizeClass([n.decimalIconClass,"u-icon__decimal"]),"hover-class":a.hoverClass},null,14,["hover-class"])):e.createCommentVNode("",!0)],46,["hover-class"])),""!==a.label&&null!==a.label?(e.openBlock(),e.createElementBlock("text",{key:2,class:"u-icon__label",style:e.normalizeStyle({color:a.labelColor,fontSize:t.$u.addUnit(a.labelSize),marginLeft:"right"==a.labelPos?t.$u.addUnit(a.marginLeft):0,marginTop:"bottom"==a.labelPos?t.$u.addUnit(a.marginTop):0,marginRight:"left"==a.labelPos?t.$u.addUnit(a.marginRight):0,marginBottom:"top"==a.labelPos?t.$u.addUnit(a.marginBottom):0})},e.toDisplayString(a.label),5)):e.createCommentVNode("",!0)],6)}],["__scopeId","data-v-32e6a46e"]]);const de=s({name:"u-button",emits:["click","getphonenumber","getuserinfo","error","opensetting","launchapp","chooseavatar"],props:{hairLine:{type:Boolean,default:!0},type:{type:String,default:"default"},size:{type:String,default:"default"},shape:{type:String,default:"square"},plain:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},openType:{type:String,default:""},formType:{type:String,default:""},appParameter:{type:String,default:""},hoverStopPropagation:{type:Boolean,default:!1},lang:{type:String,default:"en"},sessionFrom:{type:String,default:""},sendMessageTitle:{type:String,default:""},sendMessagePath:{type:String,default:""},sendMessageImg:{type:String,default:""},showMessageCard:{type:Boolean,default:!1},hoverBgColor:{type:String,default:""},rippleBgColor:{type:String,default:""},ripple:{type:Boolean,default:!1},hoverClass:{type:String,default:""},customStyle:{type:Object,default:()=>({})},dataName:{type:String,default:""},throttleTime:{type:[String,Number],default:500},hoverStartTime:{type:[String,Number],default:20},hoverStayTime:{type:[String,Number],default:150},timerId:{type:[String,Number]}},computed:{getHoverClass(){if(this.loading||this.disabled||this.ripple||this.hoverClass)return"";let e="";return e=this.plain?"u-"+this.type+"-plain-hover":"u-"+this.type+"-hover",e},showHairLineBorder(){return["primary","success","error","warning"].indexOf(this.type)>=0&&!this.plain?"":"u-hairline-border"}},data(){return{btnTimerId:this.timerId||"button_"+Math.floor(1e8*Math.random()+0),rippleTop:0,rippleLeft:0,fields:{},waveActive:!1}},methods:{click(e){this.$u.throttle((()=>{!0!==this.loading&&!0!==this.disabled&&(this.ripple&&(this.waveActive=!1,this.$nextTick((function(){this.getWaveQuery(e)}))),this.$emit("click",e))}),this.throttleTime,!0,this.btnTimerId)},getWaveQuery(e){this.getElQuery().then((t=>{let l=t[0];if(!l.width||!l.width)return;if(l.targetWidth=l.height>l.width?l.height:l.width,!l.targetWidth)return;this.fields=l;let a="",i="";a=e.touches[0].clientX,i=e.touches[0].clientY,this.rippleTop=i-l.top-l.targetWidth/2,this.rippleLeft=a-l.left-l.targetWidth/2,this.$nextTick((()=>{this.waveActive=!0}))}))},getElQuery(){return new Promise((e=>{let t="";t=uni.createSelectorQuery().in(this),t.select(".u-btn").boundingClientRect(),t.exec((t=>{e(t)}))}))},getphonenumber(e){this.$emit("getphonenumber",e)},getuserinfo(e){this.$emit("getuserinfo",e)},error(e){this.$emit("error",e)},opensetting(e){this.$emit("opensetting",e)},launchapp(e){this.$emit("launchapp",e)},chooseavatar(e){this.$emit("chooseavatar",e)}}},[["render",function(t,l,a,i,r,n){return e.openBlock(),e.createElementBlock("button",{id:"u-wave-btn",class:e.normalizeClass(["u-btn u-line-1 u-fix-ios-appearance",["u-size-"+a.size,a.plain?"u-btn--"+a.type+"--plain":"",a.loading?"u-loading":"","circle"==a.shape?"u-round-circle":"",a.hairLine?n.showHairLineBorder:"u-btn--bold-border","u-btn--"+a.type,a.disabled?`u-btn--${a.type}--disabled`:""]]),"hover-start-time":Number(a.hoverStartTime),"hover-stay-time":Number(a.hoverStayTime),disabled:a.disabled,"form-type":a.formType,"open-type":a.openType,"app-parameter":a.appParameter,"hover-stop-propagation":a.hoverStopPropagation,"send-message-title":a.sendMessageTitle,"send-message-path":"sendMessagePath",lang:a.lang,"data-name":a.dataName,"session-from":a.sessionFrom,"send-message-img":a.sendMessageImg,"show-message-card":a.showMessageCard,onGetphonenumber:l[0]||(l[0]=(...e)=>n.getphonenumber&&n.getphonenumber(...e)),onGetuserinfo:l[1]||(l[1]=(...e)=>n.getuserinfo&&n.getuserinfo(...e)),onError:l[2]||(l[2]=(...e)=>n.error&&n.error(...e)),onOpensetting:l[3]||(l[3]=(...e)=>n.opensetting&&n.opensetting(...e)),onLaunchapp:l[4]||(l[4]=(...e)=>n.launchapp&&n.launchapp(...e)),onChooseavatar:l[5]||(l[5]=(...e)=>n.chooseavatar&&n.chooseavatar(...e)),style:e.normalizeStyle([a.customStyle,{overflow:a.ripple?"hidden":"visible"}]),onClick:l[6]||(l[6]=e.withModifiers((e=>n.click(e)),["stop"])),"hover-class":n.getHoverClass,loading:a.loading},[e.renderSlot(t.$slots,"default",{},void 0,!0),a.ripple?(e.openBlock(),e.createElementBlock("view",{key:0,class:e.normalizeClass(["u-wave-ripple",[r.waveActive?"u-wave-active":""]]),style:e.normalizeStyle({top:r.rippleTop+"px",left:r.rippleLeft+"px",width:r.fields.targetWidth+"px",height:r.fields.targetWidth+"px","background-color":a.rippleBgColor||"rgba(0, 0, 0, 0.15)"})},null,6)):e.createCommentVNode("",!0)],46,["hover-start-time","hover-stay-time","disabled","form-type","open-type","app-parameter","hover-stop-propagation","send-message-title","lang","data-name","session-from","send-message-img","show-message-card","hover-class","loading"])}],["__scopeId","data-v-942515d8"]]);const me=s({name:"u-mask",emits:["click"],props:{show:{type:Boolean,default:!1},zIndex:{type:[Number,String],default:""},customStyle:{type:Object,default:()=>({})},zoom:{type:Boolean,default:!0},duration:{type:[Number,String],default:300},maskClickAble:{type:Boolean,default:!0},blur:{type:[Number,String],default:0}},data:()=>({zoomStyle:{transform:""},scale:"scale(1.2, 1.2)"}),watch:{show(e){e&&this.zoom?this.zoomStyle.transform="scale(1, 1)":!e&&this.zoom&&(this.zoomStyle.transform=this.scale)}},computed:{maskStyle(){let e={backgroundColor:"rgba(0, 0, 0, 0.6)"};return this.show?e.zIndex=this.zIndex?this.zIndex:this.$u.zIndex.mask:e.zIndex=-1,e.transition=`all ${this.duration/1e3}s ease-in-out`,Object.keys(this.customStyle).length&&(e={...e,...this.customStyle}),e},filterStyle(){let{blur:e}=this,t={};return e&&(t.backdropFilter=`blur(${e}rpx)`),t}},methods:{click(){this.maskClickAble&&this.$emit("click")}}},[["render",function(t,l,a,i,r,n){return e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["u-mask",{"u-mask-zoom":a.zoom,"u-mask-show":a.show}]),"hover-stop-propagation":"",style:e.normalizeStyle([n.maskStyle,r.zoomStyle,n.filterStyle]),onClick:l[0]||(l[0]=(...e)=>n.click&&n.click(...e)),onTouchmove:e.withModifiers((()=>{}),["stop","prevent"])},[e.renderSlot(t.$slots,"default",{},void 0,!0)],38)}],["__scopeId","data-v-005d3602"]]);const ue=s({name:"u-popup",emits:["update:modelValue","input","open","close"],props:{value:{type:Boolean,default:!1},modelValue:{type:Boolean,default:!1},show:{type:Boolean,default:!1},mode:{type:String,default:"left"},mask:{type:Boolean,default:!0},length:{type:[Number,String],default:"auto"},zoom:{type:Boolean,default:!0},safeAreaInsetBottom:{type:Boolean,default:!1},maskCloseAble:{type:Boolean,default:!0},customStyle:{type:Object,default:()=>({})},popup:{type:Boolean,default:!0},borderRadius:{type:[Number,String],default:0},zIndex:{type:[Number,String],default:""},closeable:{type:Boolean,default:!1},closeIcon:{type:String,default:"close"},closeIconPos:{type:String,default:"top-right"},closeIconColor:{type:String,default:"#909399"},closeIconSize:{type:[String,Number],default:"30"},width:{type:String,default:""},height:{type:String,default:""},negativeTop:{type:[String,Number],default:0},maskCustomStyle:{type:Object,default:()=>({})},duration:{type:[String,Number],default:250},blur:{type:[String,Number],default:0}},data:()=>({visibleSync:!1,showDrawer:!1,timer:null,closeFromInner:!1}),computed:{valueCom(){return this.modelValue},style(){let e={};if("left"==this.mode||"right"==this.mode?e={width:this.width?this.getUnitValue(this.width):this.getUnitValue(this.length),height:"100%",transform:`translate3D(${"left"==this.mode?"-100%":"100%"},0px,0px)`}:"top"!=this.mode&&"bottom"!=this.mode||(e={width:"100%",height:this.height?this.getUnitValue(this.height):this.getUnitValue(this.length),transform:`translate3D(0px,${"top"==this.mode?"-100%":"100%"},0px)`}),e.zIndex=this.uZindex,this.borderRadius){switch(this.mode){case"left":e.borderRadius=`0 ${this.borderRadius}rpx ${this.borderRadius}rpx 0`;break;case"top":e.borderRadius=`0 0 ${this.borderRadius}rpx ${this.borderRadius}rpx`;break;case"right":e.borderRadius=`${this.borderRadius}rpx 0 0 ${this.borderRadius}rpx`;break;case"bottom":e.borderRadius=`${this.borderRadius}rpx ${this.borderRadius}rpx 0 0`}e.overflow="hidden"}return this.duration&&(e.transition=`all ${this.duration/1e3}s linear`),e},centerStyle(){let e={};return e.width=this.width?this.getUnitValue(this.width):this.getUnitValue(this.length),e.height=this.height?this.getUnitValue(this.height):"auto",e.zIndex=this.uZindex,e.marginTop=`-${this.$u.addUnit(this.negativeTop)}`,this.borderRadius&&(e.borderRadius=`${this.borderRadius}rpx`,e.overflow="hidden"),e},uZindex(){return this.zIndex?this.zIndex:this.$u.zIndex.popup}},watch:{valueCom:{handler(e){e?this.open():this.closeFromInner||this.close(),this.closeFromInner=!1}}},mounted(){this.valueCom&&this.open()},methods:{getUnitValue:e=>/(%|px|rpx|auto)$/.test(e)?e:e+"rpx",maskClick(){this.close()},close(){this.closeFromInner=!0,this.change("showDrawer","visibleSync",!1)},modeCenterClose(e){"center"==e&&this.maskCloseAble&&this.close()},open(){this.change("visibleSync","showDrawer",!0)},change(e,t,l){1==this.popup&&(this.$emit("input",l),this.$emit("update:modelValue",l)),this[e]=l,l?this.$nextTick((()=>{this[t]=l,this.$emit(l?"open":"close")})):this.timer=setTimeout((()=>{this[t]=l,this.$emit(l?"open":"close")}),this.duration)}}},[["render",function(t,l,i,r,n,o){const c=a(e.resolveDynamicComponent("u-mask"),me),s=a(e.resolveDynamicComponent("u-icon"),se);return n.visibleSync?(e.openBlock(),e.createElementBlock("view",{key:0,style:e.normalizeStyle([i.customStyle,{zIndex:o.uZindex-1}]),class:"u-drawer","hover-stop-propagation":""},[e.createVNode(c,{blur:i.blur,duration:i.duration,"custom-style":i.maskCustomStyle,maskClickAble:i.maskCloseAble,"z-index":o.uZindex-2,show:n.showDrawer&&i.mask,onClick:o.maskClick},null,8,["blur","duration","custom-style","maskClickAble","z-index","show","onClick"]),e.createElementVNode("view",{class:e.normalizeClass(["u-drawer-content",[i.safeAreaInsetBottom?"safe-area-inset-bottom":"","u-drawer-"+i.mode,n.showDrawer?"u-drawer-content-visible":"",i.zoom&&"center"==i.mode?"u-animation-zoom":""]]),onClick:l[3]||(l[3]=e=>o.modeCenterClose(i.mode)),onTouchmove:l[4]||(l[4]=e.withModifiers((()=>{}),["stop","prevent"])),style:e.normalizeStyle([o.style])},["center"==i.mode?(e.openBlock(),e.createElementBlock("view",{key:0,class:"u-mode-center-box",onClick:l[0]||(l[0]=e.withModifiers((()=>{}),["stop","prevent"])),onTouchmove:l[1]||(l[1]=e.withModifiers((()=>{}),["stop","prevent"])),style:e.normalizeStyle([o.centerStyle])},[i.closeable?(e.openBlock(),e.createBlock(s,{key:0,onClick:o.close,class:e.normalizeClass(["u-close",["u-close--"+i.closeIconPos]]),name:i.closeIcon,color:i.closeIconColor,size:i.closeIconSize},null,8,["onClick","class","name","color","size"])):e.createCommentVNode("",!0),e.createElementVNode("scroll-view",{class:"u-drawer__scroll-view","scroll-y":"true"},[e.renderSlot(t.$slots,"default",{},void 0,!0)])],36)):(e.openBlock(),e.createElementBlock("scroll-view",{key:1,class:"u-drawer__scroll-view","scroll-y":"true"},[e.renderSlot(t.$slots,"default",{},void 0,!0)])),e.createElementVNode("view",{onClick:l[2]||(l[2]=(...e)=>o.close&&o.close(...e)),class:e.normalizeClass(["u-close",["u-close--"+i.closeIconPos]])},["center"!=i.mode&&i.closeable?(e.openBlock(),e.createBlock(s,{key:0,name:i.closeIcon,color:i.closeIconColor,size:i.closeIconSize},null,8,["name","color","size"])):e.createCommentVNode("",!0)],2)],38)],4)):e.createCommentVNode("",!0)}],["__scopeId","data-v-98075be7"]]);const ve=s({name:"u-calendar",emits:["update:modelValue","input","change"],props:{value:{type:Boolean,default:!1},modelValue:{type:Boolean,default:!1},safeAreaInsetBottom:{type:Boolean,default:!1},maskCloseAble:{type:Boolean,default:!0},zIndex:{type:[String,Number],default:0},changeYear:{type:Boolean,default:!0},changeMonth:{type:Boolean,default:!0},mode:{type:String,default:"date"},maxYear:{type:[Number,String],default:2050},minYear:{type:[Number,String],default:1950},minDate:{type:[Number,String],default:"1950-01-01"},maxDate:{type:[Number,String],default:""},borderRadius:{type:[String,Number],default:20},monthArrowColor:{type:String,default:"#606266"},yearArrowColor:{type:String,default:"#909399"},color:{type:String,default:"#303133"},activeBgColor:{type:String,default:"#2979ff"},activeColor:{type:String,default:"#ffffff"},rangeBgColor:{type:String,default:"rgba(41,121,255,0.13)"},rangeColor:{type:String,default:"#2979ff"},startText:{type:String,default:"开始"},endText:{type:String,default:"结束"},btnType:{type:String,default:"primary"},isActiveCurrent:{type:Boolean,default:!0},isChange:{type:Boolean,default:!1},closeable:{type:Boolean,default:!0},toolTip:{type:String,default:"选择日期"},blur:{type:[Number,String],default:0},confirmText:{type:String,default:"确定"},toText:{type:String,default:"至"},yearText:{type:String,default:"年"},monthText:{type:String,default:"月"}},data:()=>({popupValue:!1,weekday:1,weekdayArr:[],days:0,daysArr:[],showTitle:"",year:2020,month:0,day:0,startYear:0,startMonth:0,startDay:0,endYear:0,endMonth:0,endDay:0,today:"",activeDate:"",startDate:"",endDate:"",isStart:!0,min:null,max:null,weekDayZh:["日","一","二","三","四","五","六"]}),computed:{valueCom(){return this.modelValue},dataChange(){return`${this.mode}-${this.minDate}-${this.maxDate}`},uZIndex(){return this.zIndex?this.zIndex:this.$u.zIndex.popup}},watch:{dataChange(e){this.init()},valueCom:{immediate:!0,handler(e){this.popupValue=e}}},created(){this.init()},methods:{getColor(e,t){let l=1==t?"":this.color,a=e+1,i=`${this.year}-${this.month}-${a}`,r=new Date(i.replace(/\-/g,"/")).getTime(),n=this.startDate.replace(/\-/g,"/"),o=this.endDate.replace(/\-/g,"/");return this.isActiveCurrent&&this.activeDate==i||this.startDate==i||this.endDate==i?l=1==t?null:this.activeColor:this.endDate&&r>new Date(n).getTime()&&r=new Date(r).getTime()&&o<=new Date(n).getTime()&&(a=!1),a},generateArray:function(e,t){return Array.from(new Array(t+1).keys()).slice(e)},formatNum:function(e){return e<10?"0"+e:e+""},getMonthDay:(e,t)=>new Date(e,t,0).getDate(),getWeekday:(e,t)=>new Date(`${e}/${t}/01 00:00:00`).getDay(),checkRange(e){let t=!1;return(ethis.maxYear)&&(uni.showToast({title:"日期超出范围啦~",icon:"none"}),t=!0),t},changeMonthHandler(e){if(e){let e=this.month+1,t=e>12?this.year+1:this.year;this.checkRange(t)||(this.month=e>12?1:e,this.year=t,this.changeData())}else{let e=this.month-1,t=e<1?this.year-1:this.year;this.checkRange(t)||(this.month=e<1?12:e,this.year=t,this.changeData())}},changeYearHandler(e){let t=e?this.year+1:this.year-1;this.checkRange(t)||(this.year=t,this.changeData())},changeData(){this.days=this.getMonthDay(this.year,this.month),this.daysArr=this.generateArray(1,this.days),this.weekday=this.getWeekday(this.year,this.month),this.weekdayArr=this.generateArray(1,this.weekday),this.showTitle=`${this.year}${this.yearText}${this.month}${this.monthText}`,this.isChange&&"date"==this.mode&&this.btnFix(!0)},dateClick:function(e){if(e+=1,!this.openDisAbled(this.year,this.month,e)){this.day=e;let t=`${this.year}-${this.month}-${e}`;if("date"==this.mode)this.activeDate=t;else{let e=new Date(t.replace(/\-/g,"/")).getTime()"星期"+["日","一","二","三","四","五","六"][(e=new Date(`${e.replace(/\-/g,"/")} 00:00:00`)).getDay()],btnFix(e){if(e||this.close(),"date"==this.mode){let e=this.activeDate.split("-"),t=this.isChange?this.year:Number(e[0]),l=this.isChange?this.month:Number(e[1]),a=this.isChange?this.day:Number(e[2]),i=this.getMonthDay(t,l),r=`${t}-${this.formatNum(l)}-${this.formatNum(a)}`,n=this.getWeekText(r),o=!1;`${t}-${l}-${a}`==this.today&&(o=!0),this.$emit("change",{year:t,month:l,day:a,days:i,result:r,week:n,isToday:o})}else{if(!this.startDate||!this.endDate)return;let e=this.formatNum(this.startMonth),t=this.formatNum(this.startDay),l=`${this.startYear}-${e}-${t}`,a=this.getWeekText(l),i=this.formatNum(this.endMonth),r=this.formatNum(this.endDay),n=`${this.endYear}-${i}-${r}`,o=this.getWeekText(n);this.$emit("change",{startYear:this.startYear,startMonth:this.startMonth,startDay:this.startDay,startDate:l,startWeek:a,endYear:this.endYear,endMonth:this.endMonth,endDay:this.endDay,endDate:n,endWeek:o})}}}},[["render",function(t,l,i,r,n,o){const c=a(e.resolveDynamicComponent("u-icon"),se),s=a(e.resolveDynamicComponent("u-button"),de),d=a(e.resolveDynamicComponent("u-popup"),ue);return e.openBlock(),e.createBlock(d,{blur:i.blur,closeable:"",maskCloseAble:i.maskCloseAble,mode:"bottom",popup:!1,modelValue:n.popupValue,"onUpdate:modelValue":l[5]||(l[5]=e=>n.popupValue=e),length:"auto",safeAreaInsetBottom:i.safeAreaInsetBottom,onClose:o.close,"z-index":o.uZIndex,"border-radius":i.borderRadius},{default:e.withCtx((()=>[e.createElementVNode("view",{class:"u-calendar"},[e.createElementVNode("view",{class:"u-calendar__action u-flex u-row-center"},[e.createElementVNode("view",{class:"u-calendar__action__icon"},[i.changeYear?(e.openBlock(),e.createBlock(c,{key:0,name:"arrow-left-double",color:i.yearArrowColor,onClick:l[0]||(l[0]=e=>o.changeYearHandler(0))},null,8,["color"])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"u-calendar__action__icon"},[i.changeMonth?(e.openBlock(),e.createBlock(c,{key:0,name:"arrow-left",color:i.monthArrowColor,onClick:l[1]||(l[1]=e=>o.changeMonthHandler(0))},null,8,["color"])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"u-calendar__action__text"},e.toDisplayString(n.showTitle),1),e.createElementVNode("view",{class:"u-calendar__action__icon"},[i.changeMonth?(e.openBlock(),e.createBlock(c,{key:0,name:"arrow-right",color:i.monthArrowColor,onClick:l[2]||(l[2]=e=>o.changeMonthHandler(1))},null,8,["color"])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"u-calendar__action__icon"},[i.changeYear?(e.openBlock(),e.createBlock(c,{key:0,name:"arrow-right-double",color:i.yearArrowColor,onClick:l[3]||(l[3]=e=>o.changeYearHandler(1))},null,8,["color"])):e.createCommentVNode("",!0)])]),e.createElementVNode("view",{class:"u-calendar__week-day"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.weekDayZh,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"u-calendar__week-day__text",key:l},e.toDisplayString(t),1)))),128))]),e.createElementVNode("view",{class:"u-calendar__content"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.weekdayArr,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"u-calendar__content__item"})))),128)),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.daysArr,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["u-calendar__content__item",{"u-hover-class":o.openDisAbled(n.year,n.month,l+1),"u-calendar__content--start-date":"range"==i.mode&&n.startDate==`${n.year}-${n.month}-${l+1}`||"date"==i.mode,"u-calendar__content--end-date":"range"==i.mode&&n.endDate==`${n.year}-${n.month}-${l+1}`||"date"==i.mode}]),style:e.normalizeStyle([o.getStyle(l),{"border-radius":"30rpx"}]),key:l,onClick:e=>o.dateClick(l)},[e.createElementVNode("view",{class:"u-calendar__content__item__inner",style:e.normalizeStyle({color:o.getColor(l,2)})},[e.createElementVNode("view",null,e.toDisplayString(l+1),1)],4),"range"==i.mode&&n.startDate==`${n.year}-${n.month}-${l+1}`&&n.startDate!=n.endDate?(e.openBlock(),e.createElementBlock("view",{key:0,class:"u-calendar__content__item__tips",style:e.normalizeStyle({color:i.activeColor})},e.toDisplayString(i.startText),5)):e.createCommentVNode("",!0),"range"==i.mode&&n.endDate==`${n.year}-${n.month}-${l+1}`?(e.openBlock(),e.createElementBlock("view",{key:1,class:"u-calendar__content__item__tips",style:e.normalizeStyle({color:i.activeColor})},e.toDisplayString(i.endText),5)):e.createCommentVNode("",!0)],14,["onClick"])))),128)),e.createElementVNode("view",{class:"u-calendar__content__bg-month"},e.toDisplayString(n.month),1)]),e.createElementVNode("view",{class:"u-calendar__bottom"},[e.createElementVNode("view",{class:"u-calendar__bottom__choose"},[e.createElementVNode("text",null,e.toDisplayString("date"==i.mode?n.activeDate:n.startDate),1),n.endDate?(e.openBlock(),e.createElementBlock("text",{key:0},e.toDisplayString(i.toText)+e.toDisplayString(n.endDate),1)):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"u-calendar__bottom__btn"},[e.createVNode(s,{type:i.btnType,shape:"circle",size:"default",onClick:l[4]||(l[4]=e=>o.btnFix(!1)),disabled:"range"==i.mode&&!n.endDate},{default:e.withCtx((()=>[e.createTextVNode(e.toDisplayString(i.confirmText),1)])),_:1},8,["type","disabled"])])])])])),_:1},8,["blur","maskCloseAble","modelValue","safeAreaInsetBottom","onClose","z-index","border-radius","closeable"])}],["__scopeId","data-v-d354e4bf"]]),pe=s(e.defineComponent({__name:"index",emits:["opendetail"],setup(t,{emit:l}){e.ref("");const i=e.ref(!1),r=e.ref(""),n=e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]),o=l,c=e=>{r.value=e.result},s=()=>{o("opendetail")};return(t,l)=>{const o=a(e.resolveDynamicComponent("u-calendar"),ve);return e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"index-right-height"}),e.createElementVNode("view",{class:"index-right-title"},[e.createElementVNode("view",{class:"index-right-name"}," 请购单号: "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入请购单号"}),e.createElementVNode("view",{class:"index-right-name"}," 请购人: "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入请购人"}),e.createElementVNode("view",{class:"index-right-name"}," 请购日期: "),e.createElementVNode("view",{onClick:l[0]||(l[0]=e.withModifiers((e=>i.value=!0),["stop"]))},[e.createElementVNode("view",{class:"index-right-input",style:e.normalizeStyle([{width:"300rpx",height:"66rpx"},r.value?{}:{color:"#999"}])},e.toDisplayString(r.value?r.value:"请输入请购日期"),5)]),e.createVNode(o,{style:{width:"40%","margin-left":"30%"},"border-radius":"40",modelValue:i.value,"onUpdate:modelValue":l[1]||(l[1]=e=>i.value=e),mode:"date",onChange:c},null,8,["modelValue"]),e.createElementVNode("view",{class:"index-right-button-all"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"index-right-button"},[e.createElementVNode("image",{class:"index-right-button-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"index-right-button-font"},e.toDisplayString(t.name),1)])])))),128))])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"请购单号"),e.createElementVNode("view",{class:"blue-number"},"A0120250301001")]),e.createElementVNode("view",{class:"index-right-button-blue",onClick:s}," 详情 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 请购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.01 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 请购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")])])])])])]))),64))])])])])])}}}),[["__scopeId","data-v-cb386bfb"]]),ge=s({__name:"ball",props:{isShow:{type:Boolean,required:!0}},emits:["clickBall"],setup(t,{emit:l}){const a=l,i=e.ref(1090),r=e.ref(120),n=e.ref(!1);let o=0,c=0,s=0,d=0,m=null,u=0,v=0;function p(e){const t=e.touches[0];o=t.clientX.toFixed(2),c=t.clientY.toFixed(2),s=i.value,d=r.value,m=setTimeout((()=>{n.value=!0}),300)}function g(e){if(!n.value){const t=e.touches[0],l=Math.abs(t.clientX.toFixed(2)-o),a=Math.abs(t.clientY.toFixed(2)-c);(l>5||a>5)&&(clearTimeout(m),n.value=!0)}if(n.value){const t=e.touches[0];let l=s+(t.clientX.toFixed(2)-o),a=d+(t.clientY.toFixed(2)-c);l=Math.max(0,Math.min(l,u-60)),a=Math.max(0,Math.min(a,v-60)),i.value=l,r.value=a}}function w(e){clearTimeout(m),n.value?n.value=!1:a("clickBall")}return e.onMounted((()=>{const e=uni.getSystemInfoSync();u=e.windowWidth,v=e.windowHeight})),(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"floating-ball",style:e.normalizeStyle({left:i.value+"px",top:r.value+"px"}),onTouchstart:p,onTouchmove:g,onTouchend:w,onTouchcancel:w},[e.createElementVNode("image",{class:"floating-ball-img",src:"/static/index/caigouqingdan.png"})],36)),[[e.vShow,t.isShow]])}},[["__scopeId","data-v-5147ae32"]]),we=s(e.defineComponent({__name:"info",emits:["qinggou","churuku"],setup(t,{emit:l}){const a=l,i=e=>{a(e)};return(t,l)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("view",{class:"popup-detail-left"},[e.createElementVNode("view",{class:"popup-detail-left-white"},[e.createElementVNode("image",{class:"popup-detail-left-white-img",src:"/static/index/project3.png"},null,8,["src"])]),e.createElementVNode("view",{class:"popup-detail-left-bottom"},[e.createElementVNode("view",{class:"popup-small-card"},[e.createElementVNode("view",{class:"popup-small-circle"},[e.createElementVNode("image",{class:"popup-small-circle-img",src:"/static/index/saveUp.png"})]),e.createElementVNode("view",{class:"popup-small-number"},"1000"),e.createElementVNode("view",{class:"popup-small-font"},"库存上限")]),e.createElementVNode("view",{class:"popup-small-shu"}),e.createElementVNode("view",{class:"popup-small-card"},[e.createElementVNode("view",{class:"popup-small-circle"},[e.createElementVNode("image",{class:"popup-small-circle-img",src:"/static/index/saveDown.png"})]),e.createElementVNode("view",{class:"popup-small-number"},"10"),e.createElementVNode("view",{class:"popup-small-font"},"库存下限")]),e.createElementVNode("view",{class:"popup-small-shu"}),e.createElementVNode("view",{class:"popup-small-card"},[e.createElementVNode("view",{class:"popup-small-circle"},[e.createElementVNode("image",{class:"popup-small-circle-img",src:"/static/index/saveNumber.png"})]),e.createElementVNode("view",{class:"popup-small-number"},"50"),e.createElementVNode("view",{class:"popup-small-font"},"库存数量")])])]),e.createElementVNode("view",{class:"popup-detail-right"},[e.createElementVNode("view",{class:"popup-detail-title"},[e.createElementVNode("view",{class:"popup-detail-weight"}," 纸尿裤-拉拉裤 "),e.createElementVNode("view",{class:"popup-detail-gray"}," ZHYP044 ")]),e.createElementVNode("view",{class:"popup-weight"}," 物料分类 "),e.createElementVNode("view",{class:"popup-right-father"},[e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 物料类别: "),e.createElementVNode("view",{class:"popup-font-right"}," 生活用品 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 物料类型: "),e.createElementVNode("view",{class:"popup-font-right"}," 照护用品 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 物料类别: "),e.createElementVNode("view",{class:"popup-font-right"}," - ")])]),e.createElementVNode("view",{class:"popup-weight"}," 物料信息 "),e.createElementVNode("view",{class:"popup-right-father"},[e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 物料品牌: "),e.createElementVNode("view",{class:"popup-font-right"}," 洁奴 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 采购单位: "),e.createElementVNode("view",{class:"popup-font-right"}," 片 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 参考单价: "),e.createElementVNode("view",{class:"popup-font-right"}," 1.175 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 采购单价: "),e.createElementVNode("view",{class:"popup-font-right"}," 2 ")]),e.createElementVNode("view",{class:"popup-right-font-contain",style:{width:"100%"}},[e.createElementVNode("view",{class:"popup-font-left"}," 规格型号: "),e.createElementVNode("view",{class:"popup-font-right"}," 800mm*690mm ")]),e.createElementVNode("view",{class:"popup-right-font-contain",style:{width:"100%"}},[e.createElementVNode("view",{class:"popup-font-left"}," 供 应 商 : "),e.createElementVNode("view",{class:"popup-font-right"}," 山东恒发卫生用品有限公司 ")])]),e.createElementVNode("view",{class:"popup-weight"}," 优惠信息 "),e.createElementVNode("view",{class:"popup-right-father"},[e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 医保报销: "),e.createElementVNode("view",{class:"popup-font-right"}," 是 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 机构优惠: "),e.createElementVNode("view",{class:"popup-font-right"}," 否 ")])]),e.createElementVNode("view",{class:"swiper-left-buttons-big"},[e.createElementVNode("view",{class:"swiper-left-button-blue",onClick:l[0]||(l[0]=e=>i("qinggou"))}," 请购 "),e.createElementVNode("view",{class:"swiper-left-button",onClick:l[1]||(l[1]=e=>i("churuku"))}," 出入库 ")])])],64))}}),[["__scopeId","data-v-a77dd54e"]]),he=s(e.defineComponent({__name:"plsbuy",props:{saveIndex:{type:Number,required:!0},changeNumber:{type:Number,required:!0}},emits:["closeIt","openRight","closeRight"],setup(t,{emit:l}){const a=l,i=t;e.watch((()=>i.changeNumber),(()=>{o.value[i.saveIndex].many=i.changeNumber})),e.ref(50);const r=e.ref(0),n=e.ref({name:"长春市永佳利商贸有限公司",many:0,change:0}),o=e.ref([{name:"长春市永佳利商贸有限公司",many:9999,change:0},{name:"长春市永佳利商贸有限公司",many:0,change:0},{name:"长春市永佳利商贸有限公司",many:0,change:0}]),c=()=>{d(),m.value&&(o.value.push(JSON.parse(JSON.stringify(n.value))),r.value=998,e.nextTick((()=>{r.value=999})))},s=()=>{d(),a("closeIt")},d=()=>{a("closeRight")},m=e.ref(!0);return(l,i)=>(e.openBlock(),e.createElementBlock("view",{class:"plsbuy-contain"},[e.createElementVNode("view",{class:"plsbuy-title"},[e.createElementVNode("image",{class:"plsbuy-title-img",src:"/static/index/project3.png"},null,8,["src"]),e.createElementVNode("view",{class:"plsbuy-title-font"},[e.createElementVNode("view",{class:"plsbuy-title-weight"},"纸尿裤-拉拉裤"),e.createElementVNode("view",{class:"plsbuy-title-flex"},[e.createElementVNode("view",{class:"popup-right-font-contain",style:{width:"75%"}},[e.createElementVNode("view",{class:"popup-font-left"}," 规格型号: "),e.createElementVNode("view",{class:"popup-font-right"}," 800mm*690mm ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 采购单位: "),e.createElementVNode("view",{class:"popup-font-right"}," 片 ")])]),e.createElementVNode("view",{class:"plsbuy-title-flex"},[e.createElementVNode("view",{class:"popup-right-font-contain",style:{width:"75%"}},[e.createElementVNode("view",{class:"popup-font-left"}," 库存上限: "),e.createElementVNode("view",{class:"popup-font-right"}," 1000 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 库存下限: "),e.createElementVNode("view",{class:"popup-font-right"}," 10 ")])]),e.createElementVNode("view",{class:"plsbuy-title-flex"},[e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 库存数量: "),e.createElementVNode("view",{class:"popup-font-right"}," 50 ")])])])]),e.createElementVNode("view",{class:"plsbuy-card"},[e.createElementVNode("scroll-view",{"scroll-y":"","scroll-top":r.value,style:{height:"100%",width:"1150rpx"},"show-scrollbar":!0},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.value,((l,i)=>(e.openBlock(),e.createElementBlock("view",{key:i,class:e.normalizeClass(["plsbuy-card-heng",{"slide-out":l.sliding}])},[e.createElementVNode("view",{class:"card-flex"},[e.createElementVNode("image",{class:"plsbuy-card-img",src:"/static/index/subtract.png",onClick:e=>{return t=i,d(),void(m.value&&(m.value=!1,o.value[t].sliding=!0,setTimeout((()=>{o.value.splice(t,1),m.value=!0}),400)));var t}},null,8,["onClick"]),e.createElementVNode("view",{class:"plsbuy-weight"},"供应商:"),e.createElementVNode("view",{class:"plsbuy-font-right"},e.toDisplayString(l.name),1)]),e.createElementVNode("view",{class:"card-flex"},[e.createElementVNode("view",{class:"plsbuy-right-weight"},"采购数量"),e.createElementVNode("view",{class:e.normalizeClass(1===l.change?"plsbuy-jian-target":"plsbuy-jian"),onClick:e=>(e=>{d(),e.many&&e.many--,e.change=1,setTimeout((()=>{e.change=0}),300)})(l)}," -",10,["onClick"]),e.createElementVNode("view",{class:e.normalizeClass(t.saveIndex==i?"plsbuy-number-target":"plsbuy-number"),onClick:e=>((e,t)=>{a("openRight",e,t)})(l.many,i)},e.toDisplayString(l.many),11,["onClick"]),e.createElementVNode("view",{class:e.normalizeClass(2===l.change?"plsbuy-jia-target":"plsbuy-jia"),onClick:e=>(e=>{d(),e.many<9999&&e.many++,e.change=2,setTimeout((()=>{e.change=0}),300)})(l)},"+ ",10,["onClick"])])],2)))),128))],8,["scroll-top"])]),e.createElementVNode("view",{class:"plsbuy-amount"},[e.createElementVNode("view",{class:"plsbuy-amount-font"}," 合计: "),e.createElementVNode("view",{class:"plsbuy-amount-red"}," 100 ")]),e.createElementVNode("view",{class:"plsbuy-bottom"},[e.createElementVNode("view",{class:"plsbuy-bottom-blue",onClick:c}," 新增供应商 "),e.createElementVNode("view",{class:"plsbuy-bottom-blue",onClick:s}," 确认 "),e.createElementVNode("view",{class:"plsbuy-bottom-white",onClick:s}," 取消 ")])]))}}),[["__scopeId","data-v-5d6b5cea"]]),fe=s(e.defineComponent({__name:"calculator",props:{doOnce:{type:Number,required:!0},translateNumber:{type:Number,required:!0}},emits:["right"],setup(t,{emit:l}){const a=l,i=e.ref(-1),r=t;e.watch((()=>r.doOnce),(()=>{c.value=r.translateNumber,o.value=m(c.value)}));const n=[1,2,3,4,5,6,7,8,9,"AC",0,"CE"],o=e.ref("0000"),c=e.ref(0),s=(e,t)=>{return i.value=t,setTimeout((()=>{i.value=-1}),300),"AC"==e?(c.value=0,void(o.value="0000")):"CE"==e?(c.value=Math.trunc(c.value/10),void(o.value=m(c.value))):(l=c.value,void(Math.abs(l).toString().length>3||(c.value?c.value=10*c.value+e:c.value=e,o.value=m(c.value))));var l},d=()=>{a("right",c.value)};function m(e){const t=Math.floor(Math.abs(e));return String(t).padStart(4,"0")}return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"plsbuy-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"请购数量")])]),e.createElementVNode("view",{class:"calculator-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(n,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(i.value==l?"calculator-kuai-target":"calculator-kuai"),onClick:e=>s(t,l)},e.toDisplayString(t),11,["onClick"])]))),64))]),e.createElementVNode("view",{class:"qinggou-font"}," 请购数量 "),e.createElementVNode("view",{class:"stringShow-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"stringShow-kuai"},e.toDisplayString(t),1)])))),128))]),e.createElementVNode("view",{class:"plsbuy-bottom"},[e.createElementVNode("view",{class:"plsbuy-bottom-blue",onClick:d}," 确认 ")])]))}}),[["__scopeId","data-v-72274131"]]),Ne=s(e.defineComponent({__name:"index",props:{isShow:{type:Boolean,required:!0}},setup(t){const l=t,a=e.ref(!0),i=e.ref(null),r=e.ref(null),n=e.ref(null),o=e.ref(null),c=e.ref([{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2}]);e.watch((()=>l.isShow),((e,t)=>{!t&&e&&(a.value=!1,setTimeout((()=>{a.value=!0}),50))}));const s=e.ref(!1),d=e.ref(!1),m=e.ref(!1),u=e.ref(!1),v=e.ref(!1),p=e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]),g=()=>{s.value=!0,d.value=!1,setTimeout((()=>{d.value=!0}),100)},w=()=>{s.value=!1,m.value=!0,u.value=!1,setTimeout((()=>{u.value=!0}),100)},h=()=>{r.value.openDrawer()},f=()=>{o.value.openDrawer()},N=()=>{s.value=!1,n.value.openDrawer()},y=e.ref(-1),E=e.ref(0),V=e.ref(!1),b=e.ref(0),k=(e,t)=>{y.value=t,E.value=e,V.value=!0,b.value++},T=()=>{y.value=-1,E.value=0,V.value=!1},D=e.ref(0),C=e=>{V.value=!1,D.value=e};return(l,S)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.withDirectives(e.createElementVNode("view",{class:"index-content-other",style:e.normalizeStyle(a.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-right-height"}),e.createElementVNode("view",{class:"index-right-title"},[e.createElementVNode("view",{class:"index-right-name"}," 货品名称 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入货品名称"}),e.createElementVNode("view",{class:"index-right-name"}," 货品编码 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入货品编码"}),e.createElementVNode("view",{class:"index-right-name"}," 拼音检索 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入货品拼音"}),e.createElementVNode("view",{class:"index-right-button-all"},[e.createElementVNode("view",{class:"first-bgc"},[e.createElementVNode("image",{class:"bgc-img",src:"/static/index/Warehousing/firstbutton.png"})]),e.createElementVNode("view",{class:"second-bgc"},[e.createElementVNode("image",{class:"bgc-img",src:"/static/index/Warehousing/secondbutton.png"})]),e.createElementVNode("view",{class:e.normalizeClass(v.value?"bgc-white":"third-bgc"),onClick:S[0]||(S[0]=e=>v.value=!v.value)},[e.withDirectives(e.createElementVNode("view",{class:"red-pao"},e.toDisplayString("99+"),512),[[e.vShow,!v.value]]),e.createElementVNode("image",{class:"bgc-img",src:"/static/index/Warehousing/thirdbutton.png"})],2),e.createElementVNode("view",{class:"fourth-bgc",onClick:f},[e.createElementVNode("image",{class:"fourth-bgc-img",src:"/static/index/Warehousing/fourthbutton.png"}),e.createElementVNode("view",{class:"fourth-bgc-font"}," 请购单 ")]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"index-right-button"},[e.createElementVNode("image",{class:"index-right-button-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"index-right-button-font"},e.toDisplayString(t.name),1)])])))),128))])]),e.createElementVNode("view",{class:"swiper-contain"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"98%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"swiper-card",style:e.normalizeStyle(1===t.type?{background:"#00D6A9 url(/static/index/warehouseCard/bgcgreen.png) center/cover"}:2===t.type?{background:"#BD9AF8 url(/static/index/warehouseCard/bgcpouple.png) center/cover"}:{})},[e.createElementVNode("view",{class:"swiper-card-left"},[e.createElementVNode("view",{class:"swiper-card-left-white"},[e.createElementVNode("image",{class:e.normalizeClass(0===t.type?"swiper-card-left-white-img-first":1===t.type?"swiper-card-left-white-img-second":"swiper-card-left-white-img-third"),src:"/static/index/project3.png",onClick:g},null,10,["src"])])]),e.createElementVNode("view",{class:"swiper-card-right"},[e.createElementVNode("view",{class:"swiper-right-title"},[e.createElementVNode("view",{class:"swiper-title-font"},e.toDisplayString(t.name),1),e.createElementVNode("view",{class:"swiper-title-font-button"},e.toDisplayString(0===t.type?"护理类":1===t.type?"医疗类":"行政类"),1)]),e.createElementVNode("view",{class:"swiper-heng"}),e.createElementVNode("view",{class:"swiper-font"}," 规格型号:800mm*690mm "),e.createElementVNode("view",{class:"swiper-double"},[e.createElementVNode("view",{class:"swiper-littlefont"}," 采购单位:片 "),e.withDirectives(e.createElementVNode("view",{class:"swiper-littlefont",style:{"margin-left":"10rpx"}},[e.createTextVNode(" 库存 "),e.createElementVNode("view",{style:{color:"rgb(18,169,51)"}},"↑"),e.createTextVNode(" :1000 ")],512),[[e.vShow,v.value]])]),e.createElementVNode("view",{class:"swiper-double"},[e.createElementVNode("view",{class:"swiper-littlefont"},[e.createTextVNode(" 库存数量: "),e.createElementVNode("view",{class:"blackfont"}," 50 ")]),e.withDirectives(e.createElementVNode("view",{class:"swiper-littlefont",style:{"margin-left":"10rpx"}},[e.createTextVNode(" 库存 "),e.createElementVNode("view",{style:{color:"rgb(248,122,85)"}},"↓"),e.createTextVNode(" :5 ")],512),[[e.vShow,v.value]])]),e.createElementVNode("view",{class:"swiper-left-buttons"},[e.createElementVNode("view",{class:e.normalizeClass(0===t.type?"swiper-left-button-blue":1===t.type?"swiper-left-button-green":"swiper-left-button-pouple"),onClick:w}," 请购 ",2),e.createElementVNode("view",{class:"swiper-left-button",onClick:N}," 出入库 ")])])],4)])))),128))]),e.createElementVNode("view",{class:"bug-bottom"})])])]),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")],4),[[e.vShow,t.isShow]]),e.withDirectives(e.createElementVNode("view",{class:"popup-detail",onClick:S[2]||(S[2]=e=>s.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content",style:e.normalizeStyle({opacity:d.value?1:0}),onClick:S[1]||(S[1]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(we,{onQinggou:w,onChuruku:N})],4)],512),[[e.vShow,s.value&&t.isShow]]),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-plsbuy",onClick:S[6]||(S[6]=e=>m.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content-plsbuy",style:e.normalizeStyle({opacity:u.value?1:0}),onClick:S[4]||(S[4]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(he,{saveIndex:y.value,changeNumber:D.value,onCloseIt:S[3]||(S[3]=e=>m.value=!1),onOpenRight:k,onCloseRight:T},null,8,["saveIndex","changeNumber"])],4),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-content-calculator",style:e.normalizeStyle({opacity:u.value?1:0}),onClick:S[5]||(S[5]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(fe,{doOnce:b.value,translateNumber:E.value,onRight:C},null,8,["doOnce","translateNumber"])],4),[[e.vShow,V.value]])],512),[[e.vShow,m.value&&t.isShow]]),e.createVNode(x,{ref_key:"drawer",ref:r},{default:e.withCtx((()=>[e.createVNode(ne)])),_:1},512),e.createVNode(x,{ref_key:"draweranther",ref:i,widNumber:45,style:{"z-index":"9999"}},{default:e.withCtx((()=>[e.createVNode(oe)])),_:1},512),e.createVNode(x,{ref_key:"goshopdrawer",ref:o},{default:e.withCtx((()=>[e.createVNode(pe,{onOpendetail:S[7]||(S[7]=e=>i.value.openDrawer())})])),_:1},512),e.createVNode(x,{ref_key:"gobackdrawer",ref:n,widNumber:45},{default:e.withCtx((()=>[e.createVNode(ce)])),_:1},512),e.createVNode(ge,{isShow:t.isShow&&!s.value&&!m.value,onClick:h},null,8,["isShow"])],64))}}),[["__scopeId","data-v-912c10f8"]]),ye="/static/index/guan.png",xe=s(e.defineComponent({__name:"index",props:{openType:{type:Number,required:!0}},emits:["closedetail","openDrawer"],setup(t,{emit:l}){const a=e.ref("");e.ref(!1),e.ref("");const i=["已作废","未确认","已确认","未完结","待结账","已结账"];e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const r=l,n=e=>{r("openDrawer",e)};return(l,r)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")]),e.createElementVNode("view",{class:e.normalizeClass(t.openType?"title-button":"title-button-red")},e.toDisplayString(i[t.openType]),3)]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"采购单号:"),e.createElementVNode("view",{class:"",style:{"font-weight":"700"}},"A0120250301001")]),e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"总金额:"),e.createElementVNode("view",{class:""},"100.00")])]),e.createElementVNode("view",{class:"weight-boom"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"物料信息")]),3===t.openType?(e.openBlock(),e.createElementBlock("view",{key:0,class:"draw-flex",style:{"margin-top":"-10rpx"}},[e.createElementVNode("view",{class:"button-first",onClick:r[0]||(r[0]=e=>n(0))}," 入库单 "),e.createElementVNode("view",{class:"button-second",onClick:r[1]||(r[1]=e=>n(1))}," 挂账单 "),e.createElementVNode("view",{class:"button-third",onClick:r[2]||(r[2]=e=>n(2))}," 销账单 ")])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("image",{class:"card-img",src:ye})]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 货品名称: "),e.createElementVNode("view",{class:"title-black"}," 引流袋(医用透明) ")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 采购数量: "),e.createElementVNode("view",{class:"title-black"}," 10 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 货品编码: "),e.createElementVNode("view",{class:"title-black"}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 规格型号: "),e.createElementVNode("view",{class:"title-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单位: "),e.createElementVNode("view",{class:"title-black"}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-black"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-black"}," 10.12 ")])])])])])])]))),64))])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"10rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},e.toDisplayString(t.openType?"备注":"作废原因"),1),t.openType?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"draw-red"},"*"))])]),e.createElementVNode("view",{class:"down-note"},[e.withDirectives(e.createElementVNode("textarea",{class:"down-note-title-input","onUpdate:modelValue":r[3]||(r[3]=e=>a.value=e),maxlength:"300","placeholder-style":"color:#999",placeholder:t.openType?"请输入备注":"不予采购"},null,8,["placeholder"]),[[e.vModelText,a.value]]),e.createElementVNode("text",{class:"char-count"},e.toDisplayString(a.value.length)+"/300",1)])])]))}}),[["__scopeId","data-v-7e25ad7e"]]),Ee=s(e.defineComponent({__name:"index",props:{},emits:["voidIt","closevoid"],setup(t,{emit:l}){const a=e.ref("");e.ref(!1),e.ref("");const i=l;e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")])]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"采购单号:"),e.createElementVNode("view",{class:"",style:{"font-weight":"700"}},"A0120250301001")]),e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"总金额:"),e.createElementVNode("view",{class:"",style:{color:"red"}},"100.00")])]),e.createElementVNode("view",{class:"weight-boom"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"物料信息")])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("image",{class:"card-img",src:ye})]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 货品名称: "),e.createElementVNode("view",{class:"title-black"}," 引流袋(医用透明) ")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 采购数量: "),e.createElementVNode("view",{class:"title-black"}," 10 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 货品编码: "),e.createElementVNode("view",{class:"title-black"}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 规格型号: "),e.createElementVNode("view",{class:"title-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单位: "),e.createElementVNode("view",{class:"title-black"}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-red"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-red"}," 10.12 ")])])])])])])]))),64))])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"作废原因"),e.createElementVNode("view",{class:"draw-red"},"*")])]),e.createElementVNode("view",{class:"down-note"},[e.withDirectives(e.createElementVNode("textarea",{class:"down-note-title-input","onUpdate:modelValue":l[0]||(l[0]=e=>a.value=e),maxlength:"300","placeholder-style":"color:#999",placeholder:"请输入作废原因"},null,512),[[e.vModelText,a.value]]),e.createElementVNode("text",{class:"char-count"},e.toDisplayString(a.value.length)+"/300",1)]),e.createElementVNode("view",{class:"button-card"},[e.createElementVNode("view",{class:"swiper-button-blue",onClick:l[1]||(l[1]=e=>{i("voidIt")})}," 作废 ")])])]))}}),[["__scopeId","data-v-034b4de7"]]),Ve="/static/index/Warehousing/goku.png",be="/static/index/Warehousing/guazhang.png",ke="/static/index/Warehousing/hexiao.png",Te="/static/index/Warehousing/zuo.png",De="/static/index/Warehousing/you.png",Ce=s(e.defineComponent({__name:"index",props:{dantype:{type:Number,required:!0}},emits:["opensuixing","closevoid"],setup(t,{emit:a}){e.ref(""),e.ref(!1),e.ref("");const i=a,r=e.ref(0);e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const n=()=>{i("opensuixing")},o=()=>{uni.previewImage({urls:["/static/index/Warehousing/photo.png"]}),l("log","at component/storeroom/drawer/storage/index.vue:294","????")};return(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:e.normalizeClass(t.dantype?"pouple-font":"green-font")},"采购单号:",2),e.createElementVNode("view",{class:e.normalizeClass(t.dantype?"pouple-font":"green-font"),style:{"font-weight":"700"}},"A0120250301001",2)])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},e.toDisplayString(t.dantype?"挂账单":"入库单"),1)])]),e.createElementVNode("view",{class:"radio-circle-top-father"},[e.createElementVNode("scroll-view",{"scroll-x":"",style:{height:"100%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(r.value?"radio-circle":"radio-circle-target"),onClick:a[0]||(a[0]=e=>r.value=0)},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[1]||(a[1]=e=>r.value=0)},e.toDisplayString(`${t.dantype?"挂账":"入库"}单号:A0120250301001555${t.dantype?"G":"R"}01`),1)]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(1==r.value?"radio-circle-target":"radio-circle"),onClick:a[2]||(a[2]=e=>{r.value=1})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[3]||(a[3]=e=>r.value=1)},e.toDisplayString(`${t.dantype?"挂账":"入库"}单号:A0120250301001555${t.dantype?"G":"R"}02`),1)]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(2==r.value?"radio-circle-target":"radio-circle"),onClick:a[4]||(a[4]=e=>{r.value=2})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[5]||(a[5]=e=>r.value=2)},e.toDisplayString(`${t.dantype?"挂账":"入库"}单号:A0120250301001555${t.dantype?"G":"R"}03`),1)])])])]),e.createElementVNode("view",{class:"ruku-time"},[e.createElementVNode("view",{style:{display:"flex","margin-left":"50rpx"}},[e.createElementVNode("view",{class:"ruku-time-font"},e.toDisplayString((t.dantype?"挂账":"入库")+"时间:"),1),e.createElementVNode("view",{class:"ruku-time-font"}," 2025.03.02 10:10:10 ")]),e.createElementVNode("view",{class:"button-first",onClick:n}," 随行单 ")]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("view",{class:"card-img-bgc"},[e.createElementVNode("image",{class:"card-img",src:ye})])]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 采购数量: "),e.createElementVNode("view",{class:"title-black"}," 10 ")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 总金额: "),e.createElementVNode("view",{class:"title-black"}," 1150 ")])]),e.createElementVNode("view",{class:"card-right-bgc"},[e.createElementVNode("view",{class:"card-boom"},[e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%","margin-left":"30rpx"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 货品编码: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 规格型号: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 采购单位: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%","margin-left":"30rpx"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-black"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-black"}," 10.12 ")])])]),e.createElementVNode("view",{class:"boom-other"},[e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:Ve}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量"),e.createElementVNode("view",{class:"boom-other-weight"},"10")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:be}),e.createElementVNode("view",{class:"boom-other-font"},"挂账数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:ke}),e.createElementVNode("view",{class:"boom-other-font"},"核销数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")])])])])])])])]))),64))])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"30rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"拣货拍照")])]),e.createElementVNode("view",{class:"down-note"},[e.createElementVNode("image",{class:"down-note-img",style:{"margin-left":"40rpx"},src:Te}),e.createElementVNode("scroll-view",{"scroll-x":"",style:{height:"100%",width:"950rpx"},"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex"}},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l,onClick:o},[e.createElementVNode("image",{class:"down-note-photo",src:"/static/index/Warehousing/photo.png"})]))),64))])]),e.createElementVNode("image",{class:"down-note-img",src:De})])])]))}}),[["__scopeId","data-v-4605a6eb"]]),Se=s(e.defineComponent({__name:"index",props:{},emits:["opensuixing","closevoid"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref(""),e.ref(0);const a=e.ref(["https://img-s.msn.cn/tenant/amp/entityid/AA1ECZ6y.img?w=768&h=960&m=6&x=355&y=171&s=47&d=47","https://img-s.msn.cn/tenant/amp/entityid/AA1ECtEb.img?w=768&h=436&m=6&x=280&y=134&s=200&d=200","/static/index/addphoto.png"]);e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const i=e=>{e==a.value.length-1?uni.chooseImage({count:9,sizeType:["original","compressed"],sourceType:["album","camera"],success:e=>{a.value.pop(),a.value=[...a.value,...e.tempFilePaths],a.value.push("/static/index/addphoto.png")}}):uni.previewImage({urls:a.value.slice(0,-1),current:a.value[e]})};return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"入库单")])]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:"green-font"},"采购单号:"),e.createElementVNode("view",{class:"green-font",style:{"font-weight":"700"}},"A0120250301001")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"50rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"随行单")])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%"},"show-scrollbar":!1},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"card-father",onClick:e=>i(l)},[e.createElementVNode("view",{class:"card-white"},[e.createElementVNode("image",{class:"card-white-photo",src:t},null,8,["src"])]),l!==a.value.length-1?(e.openBlock(),e.createElementBlock("view",{key:0,class:"down-title"},[e.createElementVNode("view",{class:"down-title-flex"},[e.createElementVNode("image",{class:"down-title-photo",src:"/static/index/Warehousing/shangchuanpeople.png"}),e.createElementVNode("view",{style:{"margin-left":"10rpx"}},"上传人:"),e.createElementVNode("view",{style:{"font-weight":"700"}},"王法")]),e.createElementVNode("view",{class:"down-title-flex"},[e.createElementVNode("image",{class:"down-title-photo",src:"/static/index/Warehousing/shangchuantime.png"}),e.createElementVNode("view",{style:{"margin-left":"10rpx"}},"上传时间:"),e.createElementVNode("view",{style:{"font-weight":"500"}},"2025.03.01 10:00:00")])])):e.createCommentVNode("",!0)],8,["onClick"])])))),128))])]),e.createElementVNode("view",{class:"button-card"})])]))}}),[["__scopeId","data-v-1773957a"]]),Be=s(e.defineComponent({__name:"index",props:{},emits:["opensuixing","closehexiao"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref("");const a=e.ref(0);return e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]),(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:"green-font"},"采购单号:"),e.createElementVNode("view",{class:"green-font",style:{"font-weight":"700"}},"A0120250301001")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"销账单")])]),e.createElementVNode("view",{class:"radio-circle-top-father"},[e.createElementVNode("scroll-view",{"scroll-x":"",style:{height:"100%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(a.value?"radio-circle":"radio-circle-target"),onClick:l[0]||(l[0]=e=>a.value=0)},null,2),e.createElementVNode("view",{class:"radio-font",onClick:l[1]||(l[1]=e=>a.value=0)},"销账单号:A0120250301001555X01")]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(1==a.value?"radio-circle-target":"radio-circle"),onClick:l[2]||(l[2]=e=>{a.value=1})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:l[3]||(l[3]=e=>a.value=1)},"销账单号:A0120250301001555RX2")]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(2==a.value?"radio-circle-target":"radio-circle"),onClick:l[4]||(l[4]=e=>{a.value=2})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:l[5]||(l[5]=e=>a.value=2)},"销账单号:A0120250301001555X03")])])])]),e.createElementVNode("view",{class:"ruku-time"},[e.createElementVNode("view",{style:{display:"flex","margin-left":"50rpx"}},[e.createElementVNode("view",{class:"ruku-time-font"}," 销账时间: "),e.createElementVNode("view",{class:"ruku-time-font"}," 2025.03.02 10:10:10 ")])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("view",{class:"card-img-bgc"},[e.createElementVNode("image",{class:"card-img",src:ye})])]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 采购数量: "),e.createElementVNode("view",{class:"title-black"}," 10 ")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 总金额: "),e.createElementVNode("view",{class:"title-black"}," 1150 ")])]),e.createElementVNode("view",{class:"card-right-bgc"},[e.createElementVNode("view",{class:"card-boom"},[e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%","margin-left":"30rpx"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 货品编码: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 规格型号: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 采购单位: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%","margin-left":"30rpx"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-black"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-black"}," 10.12 ")])])]),e.createElementVNode("view",{class:"boom-other"},[e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:Ve}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量"),e.createElementVNode("view",{class:"boom-other-weight"},"10")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:be}),e.createElementVNode("view",{class:"boom-other-font"},"挂账数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:ke}),e.createElementVNode("view",{class:"boom-other-font"},"核销数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")])])])])])])])]))),64))])])])])]))}}),[["__scopeId","data-v-ee45895e"]]),ze=s(e.defineComponent({__name:"index",emits:["closedetail","openDrawer"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref("");const a=e.ref(0),i=e.ref([{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2}]);e.onMounted((()=>{c.value=JSON.parse(JSON.stringify(i.value))})),e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const r=l,n=e=>{r("openDrawer",e)},o=e.ref([]),c=e.ref([]),s=()=>{c.value=[],a.value?i.value.forEach((e=>{e.type===a.value-1&&c.value.push(e)})):c.value=JSON.parse(JSON.stringify(i.value))};return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")]),e.createElementVNode("view",{class:"draw-title-money"},[e.createElementVNode("view",{class:"draw-title-mon-left"},"总金额:"),e.createElementVNode("view",{class:"draw-title-mon-right"},"921.50")])]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"采购单号:"),e.createElementVNode("view",{class:"",style:{"font-weight":"700"}},"A0120250301001")]),e.createElementVNode("view",{class:"weight-right"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"button-blue",style:{"margin-left":"80rpx"},onClick:l[0]||(l[0]=e=>n(3))}," 拣货 "),e.createElementVNode("view",{class:"button-blue",onClick:l[1]||(l[1]=e=>n(4))}," 随行单 ")])])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"0rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"物料信息")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-target",style:e.normalizeStyle(0===a.value?{background:"#fff"}:{}),onClick:l[2]||(l[2]=e=>{a.value=0,s()})},[0===a.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"bad-circle-right"})):e.createCommentVNode("",!0),0===a.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"bad-circle-left"})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"kuai-blue"}),e.createElementVNode("view",{class:"kuai-font"},"全部")],4),e.createElementVNode("view",{class:"draw-target",style:e.normalizeStyle(1===a.value?{background:"#fff"}:{}),onClick:l[3]||(l[3]=e=>{a.value=1,s()})},[1===a.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"bad-circle-right"})):e.createCommentVNode("",!0),1===a.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"bad-circle-left"})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"kuai-pouple"}),e.createElementVNode("view",{class:"kuai-font"},"待入库")],4),e.createElementVNode("view",{class:"draw-target",style:e.normalizeStyle(2===a.value?{background:"#fff"}:{}),onClick:l[4]||(l[4]=e=>{a.value=2,s()})},[2===a.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"bad-circle-right"})):e.createCommentVNode("",!0),2===a.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"bad-circle-left"})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"kuai-green"}),e.createElementVNode("view",{class:"kuai-font"},"已入库")],4),e.createElementVNode("view",{class:"draw-target",style:e.normalizeStyle([{"margin-right":"120rpx"},3===a.value?{background:"#fff"}:{}]),onClick:l[5]||(l[5]=e=>{a.value=3,s()})},[3===a.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"bad-circle-right"})):e.createCommentVNode("",!0),3===a.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"bad-circle-left"})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"kuai-orange"}),e.createElementVNode("view",{class:"kuai-font"},"销账")],4)])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>(e=>{o.value.includes(e)?o.value=o.value.filter((t=>t!==e)):o.value.push(e)})(l)},[e.createElementVNode("view",{class:"swiper-card",style:e.normalizeStyle(1===t.type?{background:"#00D6A9 url(/static/index/warehouseCard/bgcgreengreen.png) center/cover"}:2===t.type?{background:"#FF6699 url(/static/index/warehouseCard/bgcorange.png) center/cover"}:{})},[e.createElementVNode("view",{class:"card-button",style:e.normalizeStyle(1===t.type?{background:"linear-gradient(to right, #E2FFFF, #83EBDC, #E2FFFF)"}:2===t.type?{background:"linear-gradient(to right, #FFFFFF , #FFCCC3, #FFE6FF )"}:{})},[e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:Ve}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量"),e.createElementVNode("view",{class:"boom-other-weight"},"10")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:be}),e.createElementVNode("view",{class:"boom-other-font"},"挂账数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:ke}),e.createElementVNode("view",{class:"boom-other-font"},"销账数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")])],4),e.createElementVNode("view",{class:"swiper-card-title"},[o.value.includes(l)?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"swiper-card-img"},[e.createElementVNode("view",{class:"swiper-card-font-font"},"✓")])),o.value.includes(l)?(e.openBlock(),e.createElementBlock("view",{key:1,class:"swiper-card-img-target"},[e.createElementVNode("view",{class:"swiper-card-font-font"},"✓")])):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"swiper-card-title-name"},[e.createElementVNode("view",{class:"swiper-card-font"}," 采购数量: "),e.createElementVNode("view",{class:"swiper-card-weight"}," 10 "),e.createElementVNode("view",{class:"swiper-card-shu"}," | "),e.createElementVNode("view",{class:"swiper-card-font"}," 总金额: "),e.createElementVNode("view",{class:"swiper-card-weight"}," 1150 ")]),e.createElementVNode("view",{class:"swiper-right-title"},[2!==t.type?(e.openBlock(),e.createElementBlock("view",{key:0,class:"swiper-title-font-button"},e.toDisplayString(0===t.type?"待入库":1===t.type?"已入库":""),1)):e.createCommentVNode("",!0),2===t.type?(e.openBlock(),e.createElementBlock("view",{key:1,class:"swiper-title-font-button",style:{"margin-right":"45rpx","margin-left":"5rpx"}}," 销账 ")):e.createCommentVNode("",!0)])]),e.createElementVNode("view",{style:{display:"flex"}},[e.createElementVNode("view",{class:"swiper-card-left"},[e.createElementVNode("view",{class:"swiper-card-left-white"},[e.createElementVNode("image",{class:e.normalizeClass(0===t.type?"swiper-card-left-white-img-first":1===t.type?"swiper-card-left-white-img-second":"swiper-card-left-white-img-third"),src:"/static/index/project3.png"},null,10,["src"])])]),e.createElementVNode("view",{class:"swiper-card-right"},[e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"30rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 物料名称: "),e.createElementVNode("view",{class:"swiper-font-right"}," 胃管(进口) ")]),e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"10rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-font-right"}," CH/FR15,100cm ")]),e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"10rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 物料编码: "),e.createElementVNode("view",{class:"swiper-font-right"}," QXYP016 ")]),e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"10rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 采购单位: "),e.createElementVNode("view",{class:"swiper-font-right"}," 根 ")]),e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"10rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 采购单价: "),e.createElementVNode("view",{class:"swiper-font-right",style:{"margin-right":"20rpx"}}," 115.00 "),e.createElementVNode("view",{class:"swiper-font-left"}," 到货单价: "),e.createElementVNode("view",{class:"swiper-font-right"}," 115.00 ")])])])],4)],8,["onClick"])))),128))])])])])]))}}),[["__scopeId","data-v-72acf113"]]),_e=s(e.defineComponent({__name:"index",props:{backnumber:{type:Number}},emits:["opensuixing","closehexiao","closepickingdrawer","openCal"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref("");const a=l,i=t;e.watch((()=>i.backnumber),(()=>{n.value[o.value].many=i.backnumber})),e.ref(0),e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const r=e.ref(["https://img-s.msn.cn/tenant/amp/entityid/AA1ECZ6y.img?w=768&h=960&m=6&x=355&y=171&s=47&d=47","https://img-s.msn.cn/tenant/amp/entityid/AA1ECtEb.img?w=768&h=436&m=6&x=280&y=134&s=200&d=200","/static/index/addphoto.png"]),n=e.ref([{name:"入库数量",many:9999,change:0},{name:"销账数量",many:0,change:0}]),o=e.ref(0),c=()=>{a("closepickingdrawer")},s=e=>{e==r.value.length-1?uni.chooseImage({count:9,sizeType:["original","compressed"],sourceType:["album","camera"],success:e=>{r.value.pop(),r.value=[...r.value,...e.tempFilePaths],r.value.push("/static/index/addphoto.png")}}):uni.previewImage({urls:r.value.slice(0,-1),current:r.value[e]})};return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"title-title"}," 留置针敷贴(医用透明敷料) "),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"10rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")])]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 货品名称: "),e.createElementVNode("view",{class:"swiper-black"}," 留置针敷贴(医用透明敷料) ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"45%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 货品编码: "),e.createElementVNode("view",{class:"swiper-black"}," FLYP001 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"45%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购单位: "),e.createElementVNode("view",{class:"swiper-black"}," 个 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购单价: "),e.createElementVNode("view",{class:"swiper-black"}," 0.1 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 到货单价: "),e.createElementVNode("view",{class:"swiper-black"}," 0.12 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购金额: "),e.createElementVNode("view",{class:"swiper-black"}," 10.12 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"10rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"入库信息")])]),e.createElementVNode("view",{class:"color-father"},[e.createElementVNode("view",{class:"color-pink",style:{"margin-left":"40rpx"}},[e.createElementVNode("view",{class:"color-weight"}," 10 "),e.createElementVNode("view",{class:"color-font"}," 采购数量 ")]),e.createElementVNode("view",{class:"color-green"},[e.createElementVNode("view",{class:"color-weight"}," 0 "),e.createElementVNode("view",{class:"color-font"}," 入库数量 ")]),e.createElementVNode("view",{class:"color-red"},[e.createElementVNode("view",{class:"color-weight"}," 0 "),e.createElementVNode("view",{class:"color-font"}," 销账数量 ")])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"10rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"拣货入库")])]),e.createElementVNode("view",{class:"swiper-card-once",style:{height:"240rpx"}},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx","flex-direction":"column"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"plsbuy-card-heng"},[e.createElementVNode("view",{class:"card-flex"},[e.createElementVNode("view",{class:"plsbuy-font-right"},e.toDisplayString(t.name),1)]),e.createElementVNode("view",{class:"card-flex"},[e.createElementVNode("view",{class:"plsbuy-right-weight"},e.toDisplayString(l?"销账数量":"入库数量"),1),e.createElementVNode("view",{class:e.normalizeClass(1===t.change?"plsbuy-jian-target":"plsbuy-jian"),onClick:e=>(e=>{e.many&&e.many--,e.change=1,setTimeout((()=>{e.change=0}),300)})(t)}," -",10,["onClick"]),e.createElementVNode("view",{class:"plsbuy-number",onClick:e=>((e,t)=>{o.value=e,a("openCal",t)})(l,t.many)},e.toDisplayString(t.many),9,["onClick"]),e.createElementVNode("view",{class:e.normalizeClass(2===t.change?"plsbuy-jia-target":"plsbuy-jia"),onClick:e=>(e=>{e.many<9999&&e.many++,e.change=2,setTimeout((()=>{e.change=0}),300)})(t)},"+ ",10,["onClick"])])])))),128))])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"拣货拍照")])]),e.createElementVNode("view",{class:"down-note"},[e.createElementVNode("image",{class:"down-note-img",style:{"margin-left":"40rpx"},src:Te}),e.createElementVNode("scroll-view",{"scroll-x":"",style:{height:"100%",width:"950rpx"},"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("image",{class:"down-note-photo",src:t,onClick:e=>s(l)},null,8,["src","onClick"])])))),128))])]),e.createElementVNode("image",{class:"down-note-img",src:De})]),e.createElementVNode("view",{class:"button-card"},[e.createElementVNode("view",{class:"swiper-button-white",onClick:c}," 取消 "),e.createElementVNode("view",{class:"swiper-button-blue",onClick:c}," 确定 ")])])]))}}),[["__scopeId","data-v-ab4efe77"]]),Ie=s(e.defineComponent({__name:"index",props:{doOnce:{type:Number,required:!0},translateNumber:{type:Number,required:!0}},emits:["right","close"],setup(t,{emit:l}){const a=l,i=e.ref(-1),r=t;e.watch((()=>r.doOnce),(()=>{c.value=r.translateNumber,o.value=d(c.value)}));const n=[1,2,3,4,5,6,7,8,9,"AC",0,"CE"],o=e.ref("0000"),c=e.ref(0),s=(e,t)=>{return i.value=t,setTimeout((()=>{i.value=-1}),300),"AC"==e?(c.value=0,void(o.value="0000")):"CE"==e?(c.value=Math.trunc(c.value/10),void(o.value=d(c.value))):(l=c.value,void(Math.abs(l).toString().length>3||(c.value?c.value=10*c.value+e:c.value=e,o.value=d(c.value))));var l};function d(e){const t=Math.floor(Math.abs(e));return String(t).padStart(4,"0")}return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{style:{"margin-left":"80rpx"}},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购数量")])]),e.createElementVNode("view",{class:"calculator-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(n,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(i.value==l?"calculator-kuai-target":"calculator-kuai"),onClick:e=>s(t,l)},e.toDisplayString(t),11,["onClick"])]))),64))]),e.createElementVNode("view",{class:"qinggou-font"}," 采购数量 "),e.createElementVNode("view",{class:"stringShow-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"stringShow-kuai"},e.toDisplayString(t),1)])))),128))])]),e.createElementVNode("view",{class:"button-card"},[e.createElementVNode("view",{class:"swiper-button-white",onClick:l[0]||(l[0]=e=>{a("close")})}," 关闭 "),e.createElementVNode("view",{class:"swiper-button-blue",onClick:l[1]||(l[1]=e=>{a("right",c.value)})}," 确定 ")])])]))}}),[["__scopeId","data-v-e7259b7d"]]),Ue=s(e.defineComponent({__name:"index",props:{savePrice:{type:Number,required:!0},changePrice:{type:Number,required:!0}},emits:["right","close","openCal","closeCal","rightclose"],setup(t,{emit:l}){const a=l;e.ref(-1);const i=t;return(l,r)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title-father"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-font"},"货品名称:"),e.createElementVNode("view",{class:"draw-weight"},"留置针敷贴(医用透明敷料)")])]),e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("image",{class:"card-img",src:ye})]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 货品名称: "),e.createElementVNode("view",{class:"title-black"}," 引流袋(医用透明) ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"300rpx"}},[e.createElementVNode("view",{class:"title-gray"}," 货品编码: "),e.createElementVNode("view",{class:"title-black"}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"300rpx"}},[e.createElementVNode("view",{class:"title-gray"}," 规格型号: "),e.createElementVNode("view",{class:"title-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{}},[e.createElementVNode("view",{class:"title-gray"}," 采购单位: "),e.createElementVNode("view",{class:"title-black"}," 个 ")])])])])])]),e.createElementVNode("view",{class:"contant-mid"},[e.createElementVNode("view",{class:""},"改价前到货单价:"),e.createElementVNode("view",{class:"contant-mid-wight"},e.toDisplayString(t.savePrice),1)]),e.createElementVNode("view",{class:"contant-mid"},[e.createElementVNode("view",{class:""},"改价后到货单价:"),e.createElementVNode("view",{class:"contant-mid-wight-target",onClick:r[0]||(r[0]=e=>{return l=t.changePrice,void a("openCal",l);var l})},e.toDisplayString(t.changePrice),1)]),e.createElementVNode("view",{class:"button-card"},[e.createElementVNode("view",{class:"swiper-button-white",onClick:r[1]||(r[1]=e=>(a("close"),void a("closeCal")))}," 关闭 "),e.createElementVNode("view",{class:"swiper-button-blue",onClick:r[2]||(r[2]=e=>(a("close"),a("closeCal"),void a("rightclose",i.changePrice)))}," 确定 ")])])]))}}),[["__scopeId","data-v-2517b556"]]),Fe=s(e.defineComponent({__name:"index",props:{openType:{type:Number,required:!0},valueBack:{type:Number,required:!0}},emits:["closedetail","openDrawer","openPen"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref("");const a=t,i=[{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1}],r=["已作废","未确认","已确认","未完结","待结账","已结账"];e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const n=l,o=e.ref(0);return e.watch((()=>a.valueBack),(()=>{-1!=a.valueBack&&(i[o.value].price=a.valueBack)}),{immediate:!0}),(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")]),e.createElementVNode("view",{class:e.normalizeClass(t.openType?"title-button":"title-button-red")},e.toDisplayString(r[t.openType]),3)]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"采购单号:"),e.createElementVNode("view",{class:"",style:{"font-weight":"700"}},"A0120250301001")]),e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"总金额:"),e.createElementVNode("view",{class:""},"100.00")])]),e.createElementVNode("view",{class:"weight-boom"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"物料信息")]),e.createElementVNode("view",{class:"draw-flex",style:{"margin-top":"-10rpx"}},[e.createElementVNode("view",{class:"button-blue",onClick:a[0]||(a[0]=e=>{n("openDrawer",4)})}," 随行单 ")])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(i,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-rightbox"},[e.createElementVNode("view",{class:"vertical-line"}),e.createElementVNode("view",{class:"rightbox-other"},[e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:Ve}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量:"),e.createElementVNode("view",{class:"boom-other-weight"},"10")]),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:be}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量:"),e.createElementVNode("view",{class:"boom-other-weight"},"0")]),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:ke}),e.createElementVNode("view",{class:"boom-other-font"},"销账数量:"),e.createElementVNode("view",{class:"boom-other-weight"},"0")])])]),e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("image",{class:"card-img",src:ye})]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 货品名称: "),e.createElementVNode("view",{class:"title-black"},e.toDisplayString(t.name),1)])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 货品编码: "),e.createElementVNode("view",{class:"title-black"}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 规格型号: "),e.createElementVNode("view",{class:"title-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单位: "),e.createElementVNode("view",{class:"title-black"}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-black"},e.toDisplayString(t.price),1),e.createElementVNode("image",{class:"title-img",src:"/static/index/Warehousing/pen.png",onClick:e=>(e=>{o.value=e,n("openPen",i[e].price)})(l)},null,8,["onClick"])]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-black"}," 10.12 ")])])])])])])]))),64))])])])])]))}}),[["__scopeId","data-v-d07b1c84"]]),$e=s(e.defineComponent({__name:"calculatorfly",props:{doOnce:{type:Number,required:!0},translateNumber:{type:[Number,String],required:!0}},emits:["right"],setup(t,{emit:l}){const a=l,i=t,r=e.ref(""),n=e.ref([]),o=e.ref(-1),c=[1,2,3,4,5,6,7,8,9,0,".","CE","AC"];function s(e,t){if(o.value=t,setTimeout((()=>{o.value=-1}),300),"AC"===e)r.value="";else if("CE"===e)r.value=r.value.slice(0,-1);else if("."===e)!r.value.includes(".")&&r.value.length<7&&(r.value=r.value||"0",r.value+=".");else{const t=e.toString();(function(e){const t=r.value+e,l=t.split(".");return!(l[1]&&l[1].length>2)&&t.length<=7})(t)&&(r.value+=t)}m()}function d(){const e=parseFloat(r.value)||0;a("right",e)}function m(){if("0"===r.value)return void(n.value=Array(7).fill(" "));if(!r.value)return void(n.value=Array(7).fill(" "));const e=function(e){let[t,l]=e.split(".");void 0!==l&&(l=l.slice(0,2));t=t.replace(/^0+/,""),""===t&&(t="0");let a=void 0!==l?`${t}.${l}`:t;a.length>7&&(a=a.slice(0,7));return a.padStart(7," ")}(r.value);n.value=e.split("")}return e.watch((()=>i.doOnce),(()=>{r.value=String(i.translateNumber),m()}),{immediate:!0}),(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"plsbuy-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"货品价格")])]),e.createElementVNode("view",{class:"calculator-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(c,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(o.value===l?"calculator-kuai-target":"calculator-kuai"),onClick:e=>s(t,l)},e.toDisplayString(t),11,["onClick"])]))),64))]),e.createElementVNode("view",{class:"qinggou-font"},"货品价格"),e.createElementVNode("view",{class:"stringShow-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"stringShow-kuai"},e.toDisplayString(t),1)])))),128))]),e.createElementVNode("view",{class:"plsbuy-bottom"},[e.createElementVNode("view",{class:"plsbuy-bottom-blue",onClick:d},"确认")])]))}}),[["__scopeId","data-v-86c43bb8"]]),Me=s(e.defineComponent({__name:"orders",props:{isShow:{type:Boolean,required:!0}},setup(t){const l=t,i=e.ref(!0),r=e=>{switch(e){case 0:return"ball-red-big";case 1:return"ball-yellow-big";default:return"ball-green"}},n=e=>{switch(e){case 0:case 1:return"ball-white";case 2:case 3:return"ball-yellow-big";case 4:case 5:return"ball-green"}},o=e=>{switch(e){case 4:return"ball-yellow-big";case 5:return"ball-green";default:return"ball-white"}};e.watch((()=>l.isShow),((e,t)=>{!t&&e&&(i.value=!1,setTimeout((()=>{i.value=!0}),50))}));const c=e.ref(null),s=e.ref(null),d=e.ref(null),m=e.ref(null),u=e.ref(!1),v=e.ref(0),p=e.ref(0),g=e.ref(0),w=e.ref(!1),h=e.ref(-1),f=e.ref(null),N=()=>{f.value.openDrawer()},y=e.ref(-1),E=e.ref(null),V=()=>{E.value.openDrawer()},b=e.ref(0),k=e.ref(null),T=e=>{e?1===e?(d.value.openDrawer(),b.value=1):2===e?(b.value=2,m.value.openDrawer()):3===e?k.value.openDrawer():4===e&&E.value.openDrawer():(d.value.openDrawer(),b.value=0)},D=e.ref(0),C=e.ref(0),S=e.ref(-1),B=e=>{S.value=e},z=e=>{M.value=!1,C.value=e},_=e=>{D.value=e,C.value=e,u.value=!0,X.value=!0},I=e.ref(0),U=e.ref(0),F=e.ref(!1),$=()=>{F.value=!1},M=e.ref(!1),A=e=>{M.value=!0,U.value++,I.value=e},L=e.ref(0),O=e=>{F.value=!1,L.value=e},P=e=>{I.value=e,F.value=!0,X.value=!1,setTimeout((()=>{X.value=!0}),100),U.value++},j=()=>{k.value.closeDrawer()},q=e.ref(null),R=()=>{if(p.value=0,g.value=0,v.value<3?v.value++:v.value=0,v.value){let e=[];switch(v.value){case 1:Q.value.forEach((t=>{1==t.cardType&&e.push(t)})),K.value=e;break;case 2:Q.value.forEach((t=>{t.cardType>2&&e.push(t)})),K.value=e;break;case 3:Q.value.forEach((t=>{0==t.cardType&&e.push(t)})),K.value=e}}else K.value=Q.value},W=()=>{if(v.value=0,g.value=0,p.value<2?p.value++:p.value=0,p.value){let e=[];switch(p.value){case 1:Q.value.forEach((t=>{2!=t.cardType&&3!=t.cardType||e.push(t)})),K.value=e;break;case 2:Q.value.forEach((t=>{t.cardType>3&&e.push(t)})),K.value=e}}else K.value=Q.value},Y=()=>{if(p.value=0,v.value=0,g.value<2?g.value++:g.value=0,g.value){let e=[];switch(g.value){case 1:Q.value.forEach((t=>{4==t.cardType&&e.push(t)})),K.value=e;break;case 2:Q.value.forEach((t=>{5==t.cardType&&e.push(t)})),K.value=e}}else K.value=Q.value},J=e.ref(!1),X=e.ref(!1),Z=e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]),H=e.ref(""),G=e.ref(["已作废","未确认","已确认","未完结","待结账","已结账"]),Q=e.ref(Array.from({length:6},((e,t)=>({cardType:t})))),K=e.ref([]),ee=e=>{switch(e){case 0:return"ball-white";case 1:return"ball-yellow";case 2:return"ball-green";case 3:return"ball-red"}},te=()=>{J.value=!0,X.value=!1,setTimeout((()=>{X.value=!0}),200)},le=()=>{c.value.closeDrawer()},ae=()=>{d.value.closeDrawer()},ie=()=>{s.value.closeDrawer()},re=()=>{m.value.closeDrawer()},ne=e=>{H.value=e.result};return e.onMounted((()=>{K.value=Q.value})),(l,oe)=>{const ce=a(e.resolveDynamicComponent("u-calendar"),ve);return e.openBlock(),e.createElementBlock(e.Fragment,null,[e.withDirectives(e.createElementVNode("view",{class:"index-content-other",style:e.normalizeStyle(i.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-right-height"}),e.createElementVNode("view",{class:"index-right-title"},[e.createElementVNode("view",{class:"ball-bgc",style:{"box-shadow":"2rpx 2rpx 4rpx 0rpx rgba(0, 0, 0, 0.3)"},onClick:R},[e.createElementVNode("view",{class:e.normalizeClass(ee(v.value))}," 采购 ",2)]),e.createElementVNode("view",{class:"ball-bgc",style:{"box-shadow":"2rpx 2rpx 4rpx 0rpx rgba(0, 0, 0, 0.3)"},onClick:W},[e.createElementVNode("view",{class:e.normalizeClass(ee(p.value))}," 拣货 ",2)]),e.createElementVNode("view",{class:"ball-bgc",style:{"box-shadow":"2rpx 2rpx 4rpx 0rpx rgba(0, 0, 0, 0.3)"},onClick:Y},[e.createElementVNode("view",{class:e.normalizeClass(ee(g.value))}," 结账 ",2)]),e.createElementVNode("view",{class:"index-right-name"}," 采购单号 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入采购单号"}),e.createElementVNode("view",{class:"index-right-name"}," 供应商 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入供应商"}),e.createElementVNode("view",{class:"index-right-name"}," 采购日期 "),e.createElementVNode("view",{onClick:oe[0]||(oe[0]=e.withModifiers((e=>w.value=!0),["stop"]))},[e.createElementVNode("view",{class:"index-right-input",style:e.normalizeStyle([{width:"200rpx",height:"66rpx"},H.value?{}:{color:"#999"}])},e.toDisplayString(H.value?H.value:"请输入采购日期"),5)]),e.createVNode(ce,{style:{width:"40%","margin-left":"30%"},"border-radius":"40",modelValue:w.value,"onUpdate:modelValue":oe[1]||(oe[1]=e=>w.value=e),mode:"date",onChange:ne},null,8,["modelValue"]),e.createElementVNode("view",{class:"index-right-button-all"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Z.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:l},[e.createElementVNode("view",{class:"index-right-button"},[e.createElementVNode("image",{class:"index-right-button-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"index-right-button-font"},e.toDisplayString(t.name),1)])])))),128))])]),e.createElementVNode("view",{class:"swiper-contain"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"98%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(K.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-title-contect"},[e.createElementVNode("view",{class:"swiper-states"},[e.createElementVNode("view",{class:e.normalizeClass(t.cardType>1?"swiper-states-heng-one-green":"swiper-states-heng-one")},null,2),e.createElementVNode("view",{class:e.normalizeClass(t.cardType>3?"swiper-states-heng-two-green":"swiper-states-heng-two")},null,2),e.createElementVNode("view",{class:"ball-bgc",style:e.normalizeStyle(0!==t.cardType&&1!==t.cardType?{}:{boxShadow:"8rpx 8rpx 16rpx 0rpx rgba(0, 0, 0, 0.3)",width:"110rpx",height:"110rpx"})},[e.createElementVNode("view",{class:e.normalizeClass(r(t.cardType))}," 采购 ",2)],4),e.createElementVNode("view",{class:"ball-bgc",style:e.normalizeStyle(2!=t.cardType&&3!=t.cardType?{}:{boxShadow:"8rpx 8rpx 16rpx 0rpx rgba(0, 0, 0, 0.3)",width:"110rpx",height:"110rpx"})},[e.createElementVNode("view",{class:e.normalizeClass(n(t.cardType))}," 拣货 ",2)],4),e.createElementVNode("view",{class:"ball-bgc",style:e.normalizeStyle(4!=t.cardType?{}:{boxShadow:"8rpx 8rpx 16rpx 0rpx rgba(0, 0, 0, 0.3)",width:"110rpx",height:"110rpx"})},[e.createElementVNode("view",{class:e.normalizeClass(o(t.cardType))}," 结账 ",2)],4)]),e.createElementVNode("view",{class:e.normalizeClass(t.cardType?"title-button":"title-button-red")},e.toDisplayString(G.value[t.cardType]),3)]),e.createElementVNode("view",{class:"swiper-down"},[e.createElementVNode("view",{class:"swiper-flex"},[e.createElementVNode("view",{class:"swiper-down-title"},"采购单号:"),e.createElementVNode("view",{class:"swiper-down-number"},"A0120250301001555")]),e.createElementVNode("view",{class:"swiper-down-card"},[e.createElementVNode("view",{class:"swiper-down-text"},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 采 购 人 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-down-text"},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 采购日期 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 2025.03.02 ")]),e.createElementVNode("view",{class:"swiper-down-text"},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 联 系 人 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 李月 ")]),e.createElementVNode("view",{class:"swiper-down-text"},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 联系电话 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 13355653333 ")]),e.createElementVNode("view",{class:"swiper-down-text",style:{width:"100%"}},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 供 应 商 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 宽城区珂爱个人卫生用品店 ")])]),e.createElementVNode("view",{class:"swiper-button"},[e.createElementVNode("view",{class:"button-father"},[e.createElementVNode("view",{class:"swiper-button-white",onClick:e=>{return l=t.cardType,h.value=l,void c.value.openDrawer();var l}}," 详情 ",8,["onClick"]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-blue",onClick:e=>(e=>{h.value=e,q.value.openDrawer()})(t.cardType)}," 结账 ",8,["onClick"]),[[e.vShow,4==t.cardType]]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-blue",onClick:N}," 拣货 ",512),[[e.vShow,3==t.cardType||2==t.cardType]]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-white",onClick:e=>(e=>{v.value=0,p.value=0,g.value=0,Q.value[e].cardType--,K.value=Q.value})(l)}," 回退 ",8,["onClick"]),[[e.vShow,t.cardType>=2&&5!==t.cardType]]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-blue",onClick:e=>(e=>{v.value=0,p.value=0,g.value=0,Q.value[e].cardType++,K.value=Q.value})(l)}," 确认 ",8,["onClick"]),[[e.vShow,1==t.cardType]]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-red",onClick:e=>(e=>{y.value=e,s.value.openDrawer()})(l)}," 作废 ",8,["onClick"]),[[e.vShow,1==t.cardType]])])])])])])))),128))])])])]),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")],4),[[e.vShow,t.isShow]]),e.withDirectives(e.createElementVNode("view",{class:"popup-detail",onClick:oe[3]||(oe[3]=e=>J.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content",style:e.normalizeStyle({opacity:X.value?1:0}),onClick:oe[2]||(oe[2]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-detail-left"},[e.createElementVNode("view",{class:"popup-detail-left-white"},[e.createElementVNode("image",{class:"popup-detail-left-white-img",src:"/static/index/project3.png",onClick:te},null,8,["src"])]),e.createElementVNode("view",{class:"popup-detail-left-bottom"},[e.createElementVNode("view",{class:"popup-small-card"})])]),e.createElementVNode("view",{class:"popup-detail-right"})],4)],512),[[e.vShow,J.value&&t.isShow]]),e.createVNode(x,{ref_key:"detaildrawer",ref:c,widNumber:60},{default:e.withCtx((()=>[e.createVNode(xe,{openType:h.value,onClosedetail:le,onOpenDrawer:T},null,8,["openType"])])),_:1},512),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-finish",onClick:oe[8]||(oe[8]=e=>u.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content",style:e.normalizeStyle({opacity:X.value?1:0}),onClick:oe[6]||(oe[6]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(Ue,{changePrice:C.value,savePrice:D.value,onRightclose:B,onClose:oe[4]||(oe[4]=e=>u.value=!1),onOpenCal:A,onCloseCal:oe[5]||(oe[5]=e=>M.value=!1)},null,8,["changePrice","savePrice"])],4),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-content-calculator",style:e.normalizeStyle({opacity:X.value?1:0}),onClick:oe[7]||(oe[7]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode($e,{doOnce:U.value,translateNumber:I.value,onRight:z},null,8,["doOnce","translateNumber"])],4),[[e.vShow,M.value]])],512),[[e.vShow,u.value&&t.isShow]]),e.createVNode(x,{ref_key:"finishAccountdrawer",ref:q,widNumber:60},{default:e.withCtx((()=>[e.createVNode(Fe,{valueBack:S.value,openType:h.value,onClosedetail:le,onOpenDrawer:T,onOpenPen:_},null,8,["valueBack","openType"])])),_:1},512),e.createVNode(x,{ref_key:"storagedrawer",ref:d,widNumber:50,style:{"z-index":"1000"}},{default:e.withCtx((()=>[e.createVNode(Ce,{dantype:b.value,onOpensuixing:V,onClosevoid:ae},null,8,["dantype"])])),_:1},512),e.createVNode(x,{ref_key:"verificationdrawer",ref:m,widNumber:50,style:{"z-index":"1000"}},{default:e.withCtx((()=>[e.createVNode(Be,{onClosehexiao:re})])),_:1},512),e.createVNode(x,{ref_key:"suixingdrawer",ref:E,widNumber:40,style:{"z-index":"1001"}},{default:e.withCtx((()=>[e.createVNode(Se)])),_:1},512),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-cal",onClick:oe[10]||(oe[10]=e=>F.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content",style:e.normalizeStyle({opacity:X.value?1:0}),onClick:oe[9]||(oe[9]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(Ie,{doOnce:U.value,translateNumber:I.value,onClose:$,onRight:O},null,8,["doOnce","translateNumber"])],4)],512),[[e.vShow,F.value&&t.isShow]]),e.createVNode(x,{ref_key:"voiddrawer",ref:s,widNumber:60},{default:e.withCtx((()=>[e.createVNode(Ee,{onVoidIt:oe[11]||(oe[11]=e=>{return t=y.value,v.value=0,p.value=0,g.value=0,Q.value[t].cardType=0,K.value=Q.value,void s.value.closeDrawer();var t}),onClosevoid:ie})])),_:1},512),e.createVNode(x,{ref_key:"pickingGooddrawer",ref:f,widNumber:60,style:{"z-index":"998"}},{default:e.withCtx((()=>[e.createVNode(ze,{onOpenDrawer:T})])),_:1},512),e.createVNode(x,{ref_key:"pickingdrawer",ref:k,canclose:!1,widNumber:50,style:{"z-index":"998"}},{default:e.withCtx((()=>[e.createVNode(_e,{backnumber:L.value,onOpenCal:P,onClosepickingdrawer:j},null,8,["backnumber"])])),_:1},512)],64)}}}),[["__scopeId","data-v-4e891f28"]]),Ae=s(e.defineComponent({__name:"index",setup(t){const l=e.ref(!1),a=e.ref(0);e.ref(!1),e.ref(!1);const i=e.ref([{url:"/static/index/lefticon/index.png",targetUrl:"/static/index/lefticontarget/blueindex.png",name:"首页",pao:0},{url:"/static/index/Warehousing/dingdan.png",targetUrl:"/static/index/Warehousing/dingdanblue.png",name:"订单",pao:0},{url:"/static/index/Warehousing/chuku.png",targetUrl:"/static/index/Warehousing/chukublue.png",name:"出库",pao:5},{url:"/static/index/Warehousing/pandian.png",targetUrl:"/static/index/Warehousing/pandianblue.png",name:"盘点",pao:0},{url:"/static/index/Warehousing/jiankong.png",targetUrl:"/static/index/Warehousing/jiankongblue.png",name:"监控",pao:0},{url:"/static/index/lefticon/back.png",targetUrl:"/static/index/lefticontarget/blueback.png",name:"返回",pao:0}]),r=e=>{5!==e?a.value=e:uni.navigateBack()};return(t,n)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(l.value?"darkbackgroundContainer":"backgroundContainer")},[e.createElementVNode("view",{class:"index-title"},[e.createElementVNode("view",{class:"index-title-left"},[e.createElementVNode("image",{class:"index-title-left-img",src:y}),e.createElementVNode("view",{class:"index-title-left-font"}," 王金福 "),e.createElementVNode("view",{class:"index-title-left-wel"}," 欢迎 "),e.createElementVNode("view",{class:"index-title-left-weight"}," 张春凤 "),e.createElementVNode("view",{class:""}," 登录护理单元操作台 ")]),e.createElementVNode("view",{class:"index-title-right"},[e.createElementVNode("view",{class:"index-title-right-circle"},[e.createElementVNode("image",{class:"index-title-right-circle-img",src:"/static/index/Warehousing/house.png"})]),e.createElementVNode("view",{class:"index-title-right-font"}," 生活用品库 ")])]),e.createElementVNode("view",{class:"index-content"},[e.createElementVNode("view",{class:"index-content-leftMenus"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"blue-circle-pos"},[e.withDirectives(e.createElementVNode("view",{class:"blue-circle"},[e.createElementVNode("image",{class:"blue-circle-size",src:"/static/index/ray.png"},null,8,["src"])],512),[[e.vShow,l===a.value]]),t.pao?(e.openBlock(),e.createElementBlock("view",{key:0,class:"red-pao",onClick:e=>r(l)},e.toDisplayString(t.pao>99?"99+":t.pao),9,["onClick"])):e.createCommentVNode("",!0),e.createElementVNode("image",{class:"left-img",src:l===a.value?t.targetUrl:t.url,onClick:e=>r(l)},null,8,["src","onClick"]),e.createElementVNode("view",{class:e.normalizeClass(l===a.value?"left-img-font-target":"left-img-font"),onClick:e=>r(l)},e.toDisplayString(t.name),11,["onClick"])])))),128))]),e.createVNode(Ne,{isShow:!a.value},null,8,["isShow"]),e.createVNode(Me,{isShow:1===a.value},null,8,["isShow"])])],2))}}),[["__scopeId","data-v-77445644"]]),Le="/static/index/video/videoright/guang.png",Oe="/static/index/bed.png",Pe="/static/index/video/laba.png",je="/static/index/video/video.png",qe="/static/index/video/txt.png",Re="/static/index/cardicons/zhixing.png",We="/static/index/cardicons/zhifa.png",Ye=s(e.defineComponent({__name:"fuwu",props:{isShow:{type:Boolean,required:!0}},emits:["nav"],setup(t,{emit:l}){const a=t,i=e.ref(["清晰度","分屏","画面旋转"]),r=e.ref([{url:"/static/index/video/videotopright/0.png",name:"入住",bgc:"linear-gradient(to right,#008AFF,#01BCFF)"},{url:"/static/index/video/videotopright/1.png",name:"预警",bgc:"linear-gradient(to right,#FF585D ,#FF4F52)"},{url:"/static/index/video/videotopright/2.png",name:"外出",bgc:"linear-gradient(to right,#709EE2 ,#A0BFEC )"},{url:"/static/index/video/videotopright/3.png",name:"空闲",bgc:"linear-gradient(to right,#B7BCD0,#B7BCD0)"}]),n=e.ref([{url:"/static/index/video/kufang/00.png",targeturl:"/static/index/video/kufang/01.png",name:"盘点"},{url:"/static/index/video/kufang/10.png",targeturl:"/static/index/video/kufang/11.png",name:"请领"},{url:"/static/index/video/kufang/20.png",targeturl:"/static/index/video/kufang/21.png",name:"退货"},{url:"/static/index/video/kufang/30.png",targeturl:"/static/index/video/kufang/31.png",name:"采购"},{url:"/static/index/video/kufang/40.png",targeturl:"/static/index/video/kufang/41.png",name:"指令"}]),c=e.ref([{url:"/static/index/video/videotopright/4.png",name:"启用",bgc:"linear-gradient(to right,#008AFF,#01BCFF)"},{url:"/static/index/video/videotopright/5.png",name:"停用",bgc:"linear-gradient(to right,#B7BCD0,#B7BCD0)"}]),s=e.ref([{url:"/static/index/video/videoright/00.png",targeturl:"/static/index/video/videoright/01.png"},{url:"/static/index/video/videoright/10.png",targeturl:"/static/index/video/videoright/11.png"},{url:"/static/index/video/videoright/20.png",targeturl:"/static/index/video/videoright/21.png"},{url:"/static/index/video/videoright/30.png",targeturl:"/static/index/video/videoright/31.png"},{url:"/static/index/video/videoright/40.png",targeturl:"/static/index/video/videoright/41.png"}]),d=e.ref([{cardtype:0,states:0,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:0,states:1,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:0,states:2,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:0,states:3,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:0,states:0,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:0,movestates:0,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:1,movestates:1,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:0,movestates:2,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:0,movestates:3,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:0,movestates:4,buttontarget:[!1,!1,!1,!1,!1]}]),m=e.ref([]),u=e.ref(!0);e.ref("");const v=e.ref(["全部"," 护理单元","配务室","库房"]);e.watch((()=>a.isShow),((e,t)=>{!t&&e&&(u.value=!1,setTimeout((()=>u.value=!0),50),g.value=0,m.value=JSON.parse(JSON.stringify(d.value)))}));const p=e.ref("");o((()=>{p.value=uni.getStorageSync("realname"),m.value=JSON.parse(JSON.stringify(d.value))}));const g=e.ref(0),w=()=>{uni.navigateTo({url:"/pages/NursingNew/index"})},h=()=>{uni.navigateTo({url:"/pages/Warehousing/index"})};return(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(u.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{style:{display:"flex",position:"relative","margin-left":"-30rpx"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(v.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"tab",onClick:e=>(e=>{if(g.value!==e)switch(g.value=e,e){case 0:m.value=JSON.parse(JSON.stringify(d.value));break;case 1:m.value=[],d.value.forEach((e=>{e.cardtype||m.value.push(e)}));break;case 2:m.value=[];break;case 3:m.value=[],d.value.forEach((e=>{1===e.cardtype&&m.value.push(e)}));break;default:return""}})(l)},[e.createElementVNode("view",{style:e.normalizeStyle([g.value===l?{fontWeight:800}:{},{"z-index":"1"}])},e.toDisplayString(t),5),e.withDirectives(e.createElementVNode("view",{class:"tab-heng"},null,512),[[e.vShow,g.value===l]])],8,["onClick"])))),128)),e.createElementVNode("view",{class:"right-title-father"},[e.createElementVNode("view",{style:{"margin-right":"20rpx"}}," 长春市朝阳区久泰开运养老服务有限公司 ")])]),e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"calc(100% - 10rpx)"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"scroll-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[t.cardtype?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"card",style:e.normalizeStyle(1===t.states?{border:"2rpx solid red",boxShadow:"none"}:{})},[e.createElementVNode("view",{class:"card-left"},[e.createElementVNode("view",{class:"card-left-title"},[e.createElementVNode("view",{class:"left-view"},[e.createElementVNode("image",{class:"left-view-img",src:N}),e.createElementVNode("view",null,[e.createElementVNode("view",{class:"top-font-line"},[e.createElementVNode("view",{class:"line-weight"},"王金凤"),e.createElementVNode("view",{class:"line-margin"}," 女 "),e.createElementVNode("view",null," 80岁 "),e.createElementVNode("view",{style:{"margin-left":"20rpx"}}," 2025.01.01 ")]),e.createElementVNode("view",{class:"top-font-line"},[e.createElementVNode("view",{class:"font-gray"}," 省医保 | 重度失能 | 正常缴费 ")])])]),e.createElementVNode("view",{class:"right-spec"}," 护理单元 ")]),e.createElementVNode("view",{class:"bottom-balls"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"one-ball-father"},e.toDisplayString(t),1)))),128))]),e.createElementVNode("view",{class:"topright-ball"},[e.createElementVNode("image",{class:"ball-righttop",src:`/static/index/video/videobottom/${1===t.states?1:0}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"right-balls"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,a)=>{var i,r;return e.openBlock(),e.createElementBlock("view",{key:a,class:"blue-ball-father",onClick:e=>d.value[l].buttontarget[a]=!d.value[l].buttontarget[a]},[e.createElementVNode("image",{class:"blue-ball",src:(null==(i=d.value[l])?void 0:i.buttontarget[a])?t.targeturl:t.url},null,8,["src"]),e.withDirectives(e.createElementVNode("image",{style:{position:"absolute",bottom:"0",left:"50%",transform:"translateX(-50%)",width:"100%",height:"80%"},src:Le},null,512),[[e.vShow,null==(r=d.value[l])?void 0:r.buttontarget[a]]])],8,["onClick"])})),128))]),e.createElementVNode("image",{class:"video-img",src:Oe}),e.createElementVNode("view",{class:"video-bottom"},[e.createElementVNode("view",{class:"blue-button"}," 服务指令 "),e.createElementVNode("view",{class:""}," NUID:2506000001 "),e.createElementVNode("view",{class:"bottom-shu"},"|"),e.createElementVNode("view",{class:""}," 未命名01 ")])]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"split-line-white-sec"}),e.createElementVNode("view",{class:"right-title"},[e.createElementVNode("view",{class:"right-other",style:e.normalizeStyle(`background: ${r.value[t.states].bgc};`)},[e.createElementVNode("image",{class:"other-class",src:r.value[t.states].url},null,8,["src"]),e.createElementVNode("view",{class:"other-font"},e.toDisplayString(r.value[t.states].name),1)],4)]),1!=t.states&&t.states?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,style:{width:"100%",position:"relative"}},[e.createElementVNode("view",{class:"time"},[e.createElementVNode("view",{class:"time-left"},[e.createElementVNode("view",{class:""}," 10:00~10:10 ")])]),e.createElementVNode("view",{style:{width:"100%",display:"flex","align-items":"center","flex-direction":"column",position:"relative"}},[e.createElementVNode("view",{class:"time-right"}," 待执行 "),e.createElementVNode("image",{class:"time-img",src:E,onClick:w}),e.createElementVNode("view",{class:"small-button"},[e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:Pe})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:je})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:qe})])]),e.createElementVNode("view",{class:"time-weight"}," 准备洁具(口腔) ")]),e.createElementVNode("view",{class:"time-people-two",style:{"margin-top":"20rpx"}},[e.createElementVNode("image",{class:"time-people-img",src:Re}),e.createElementVNode("text",{class:"time-people-font"}," 单人执行 ")]),e.createElementVNode("view",{class:"time-people-two"},[e.createElementVNode("image",{class:"time-people-img",src:We}),e.createElementVNode("text",{class:"time-people-font"}," 王金福 / 李贵田 ")])])),2==t.states?(e.openBlock(),e.createElementBlock("view",{key:1,style:{width:"100%",height:"100%",display:"flex","justify-content":"center","align-items":"center","flex-direction":"column"}},[e.createElementVNode("image",{class:"fail-img",src:"/static/index/video/videotopright/goto.png",onClick:w}),e.createElementVNode("view",{class:"fail-text"}," 长者外出 ")])):e.createCommentVNode("",!0),3==t.states?(e.openBlock(),e.createElementBlock("view",{key:2,style:{width:"100%",height:"100%",display:"flex","justify-content":"center","align-items":"center","flex-direction":"column"}},[e.createElementVNode("image",{class:"fail-img-spec",src:"/static/index/video/videotopright/none.png",onClick:w}),e.createElementVNode("view",{class:"fail-text-spec"}," 暂无长者入住 ")])):e.createCommentVNode("",!0)])],4)),t.cardtype?(e.openBlock(),e.createElementBlock("view",{key:1,class:"card"},[e.createElementVNode("view",{class:"card-left"},[e.createElementVNode("view",{class:"card-left-title"},[e.createElementVNode("view",{class:"left-view"},[e.createElementVNode("image",{class:"left-view-img",src:"/static/index/badman.png",style:{width:"70rpx",height:"80rpx"}}),e.createElementVNode("view",{style:{"margin-left":"10rpx",width:"150rpx"}},[e.createElementVNode("view",{style:{"font-size":"35rpx","font-weight":"600","margin-top":"20rpx","margin-left":"10rpx"}}," 欧阳三四")]),e.createElementVNode("view",{style:{display:"flex","align-items":"center",position:"absolute",top:"50%",transform:"translateY(-50%)",right:"0"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,((l,a)=>(e.openBlock(),e.createElementBlock("view",{style:{margin:"0 15rpx",display:"flex","flex-direction":"column","align-items":"center",position:"relative"},key:a},[e.createElementVNode("image",{class:"kufang-img",src:t.movestates===a?l.targeturl:l.url},null,8,["src"]),e.createElementVNode("view",{style:e.normalizeStyle([{"font-size":"20rpx"},t.movestates===a?{color:"#0096ff"}:{}])},e.toDisplayString(l.name),5)])))),128))])])]),e.createElementVNode("view",{class:"bottom-balls"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"one-ball-father"},e.toDisplayString(t),1)))),128))]),e.createElementVNode("view",{class:"topright-ball"},[e.createElementVNode("image",{class:"ball-righttop",src:`/static/index/video/videobottom/${1===t.states?1:0}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"right-balls"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,a)=>{var i,r,n;return e.openBlock(),e.createElementBlock("view",{key:a,class:e.normalizeClass((null==(i=d.value[l])?void 0:i.buttontarget[a])?"blue-ball-father-target":"blue-ball-father"),onClick:e=>d.value[l].buttontarget[a]=!d.value[l].buttontarget[a]},[e.createElementVNode("image",{class:"blue-ball",src:(null==(r=d.value[l])?void 0:r.buttontarget[a])?t.targeturl:t.url},null,8,["src"]),e.withDirectives(e.createElementVNode("image",{style:{position:"absolute",bottom:"0",left:"50%",transform:"translateX(-50%)",width:"100%",height:"80%"},src:Le},null,512),[[e.vShow,null==(n=d.value[l])?void 0:n.buttontarget[a]]])],10,["onClick"])})),128))]),e.createElementVNode("image",{class:"video-img",src:Oe}),e.createElementVNode("view",{class:"video-bottom"},[e.createElementVNode("view",{class:"font-bottom-weight"}," 库房 "),e.createElementVNode("view",{class:"bottom-shu"},"|"),e.createElementVNode("view",{class:""}," NUID:2506000001 "),e.createElementVNode("view",{class:"bottom-shu"},"|"),e.createElementVNode("view",{class:""}," 库房01 ")])]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"split-line-white-sec"}),e.createElementVNode("view",{class:"right-title"},[e.createElementVNode("view",{class:"right-other",style:e.normalizeStyle(`background: ${c.value[t.states].bgc};`)},[e.createElementVNode("image",{class:"other-class",src:c.value[t.states].url},null,8,["src"]),e.createElementVNode("view",{class:"other-font"},e.toDisplayString(c.value[t.states].name),1)],4)]),t.states?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,style:{width:"100%",position:"relative"}},[e.createElementVNode("view",{class:"time"},[e.createElementVNode("view",{class:"time-left"},[e.createElementVNode("view",{class:""}," 10:00~10:10 ")])]),e.createElementVNode("view",{style:{width:"100%",display:"flex","align-items":"center","flex-direction":"column",position:"relative"}},[e.createElementVNode("view",{class:"time-right"}," 待执行 "),e.createElementVNode("image",{class:"time-img",src:E,onClick:h}),e.createElementVNode("view",{class:"small-button"},[e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:Pe})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:je})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:qe})])]),e.createElementVNode("view",{class:"time-weight"}," 准备洁具(口腔) ")]),e.createElementVNode("view",{class:"time-people-two",style:{"margin-top":"20rpx"}},[e.createElementVNode("image",{class:"time-people-img",src:Re}),e.createElementVNode("text",{class:"time-people-font"}," 单人执行 ")]),e.createElementVNode("view",{class:"time-people-two"},[e.createElementVNode("image",{class:"time-people-img",src:We}),e.createElementVNode("text",{class:"time-people-font"}," 王金福 / 李贵田 ")])])),1==t.states?(e.openBlock(),e.createElementBlock("view",{key:1,style:{width:"100%",height:"100%",display:"flex","justify-content":"center","align-items":"center","flex-direction":"column"}},[e.createElementVNode("image",{class:"fail-img",style:{width:"150rpx",height:"180rpx"},src:"/static/index/video/videotopright/stop.png",onClick:h}),e.createElementVNode("view",{class:"fail-text"}," 库房已停用 ")])):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0)])))),128))])])])],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-01c2b33c"]]),Je=s(e.defineComponent({__name:"settings",props:{isShow:{type:Boolean,required:!0}},emits:["jump"],setup(t,{emit:l}){const a=e.ref(null),i=e.ref(!1),r=e.ref(!1),n=e.ref(!1),o=e.ref(!1),s=e.ref(!1),v=l,p=t,g=e.ref(["雷达扫描","扫码添加","手动录入","修改密码","切换机构","检查更新","用户协议","隐私政策"]),w=e.ref(!0);e.ref(""),e.watch((()=>p.isShow),((e,t)=>{!t&&e&&(w.value=!1,setTimeout((()=>w.value=!0),50))}));const h=e.ref(!1),f=e=>{var t;switch(e){case 0:case 1:case 2:v("jump",e);break;case 3:s.value=!0;break;case 4:break;case 5:i.value=!0,null==(t=a.value)||t.check_update();break;case 6:r.value=!0,n.value=!0,h.value=!1,setTimeout((()=>{h.value=!0}),50);break;case 7:r.value=!0,n.value=!1,h.value=!1,setTimeout((()=>{h.value=!0}),50)}},N=()=>{p.isShow&&i.value&&uni.showToast({title:"已经是最新版了",icon:"none",duration:2e3})};return(l,i)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(w.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{style:{"margin-right":"40rpx"}},"长春市朝阳区久泰开运养老服务有限公司")]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value.slice(0,3),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>f(l)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"array-father",style:{margin:"30rpx 0"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value.slice(3,5),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>f(l+3)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l+3}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value.slice(5,8),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>f(l+5)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l+5}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"bottom-button",onClick:i[0]||(i[0]=e=>o.value=!0)}," 注销登录 "),e.createVNode(R,{show:o.value,onClose:i[1]||(i[1]=e=>o.value=!1)},null,8,["show"]),e.createVNode(W,{show:s.value,onClose:i[2]||(i[2]=e=>s.value=!1)},null,8,["show"]),e.createVNode(d,{ref_key:"zyupgrade",ref:a,noticeflag:!0,theme:"blue",h5preview:!1,oldversion:"1.0.0",appstoreflag:!0,autocheckupdate:!0,onShowupdateTips:N},null,512),r.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-any",style:e.normalizeStyle(h.value?{opacity:1}:{opacity:0})},[e.createElementVNode("view",{class:"mask",onClick:i[3]||(i[3]=e=>r.value=!1)}),e.createElementVNode("view",{class:"box-any"},[e.createElementVNode("view",{class:"title-left"},[e.createElementVNode("image",{class:"back-img",src:c,onClick:i[4]||(i[4]=e=>r.value=!1)}),n.value?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"back-font"},"NU护理单元隐私信息保护政策")),n.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"back-font"},"NU护理单元用户服务协议")):e.createCommentVNode("",!0)]),n.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(u,{key:0})),n.value?(e.openBlock(),e.createBlock(m,{key:1})):e.createCommentVNode("",!0)])],4)):e.createCommentVNode("",!0)],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-db2cf42d"]]),Xe=s(e.defineComponent({__name:"leida",props:{isShow:{type:Boolean,required:!0}},emits:["nav"],setup(t,{emit:a}){const i=t,r=e.ref(""),n=e.ref(-1),o=e.ref(!0),c=e.ref(1),s=e.ref(0),d=e.ref(null),m=e.ref([{url:"/static/index/leida/00.png",targetUrl:"/static/index/leida/01.png",target:!1},{url:"/static/index/leida/10.png",targetUrl:"/static/index/leida/11.png",target:!1},{url:"/static/index/leida/20.png",targetUrl:"/static/index/leida/21.png",target:!1},{url:"/static/index/leida/30.png",targetUrl:"/static/index/leida/31.png",target:!1}]),u=e.ref([]),v=e.ref([]);function p(){if(1==c.value){n.value=-1,function(){const t=v.value.length;u.value=[];const l=Array.from({length:t},(()=>Math.random())),a=l.reduce(((e,t)=>e+t),0),i=l.map((e=>e/a*5e3));let r=0;for(let n=0;n{u.value.push(v.value[n]);const t=u.value.length;t>=5&&t%2==1&&(s.value=999,await e.nextTick(),s.value=99999)}),r)}(),c.value=0;const t=setInterval((()=>{c.value+=.01,c.value>=1&&(c.value=1,clearInterval(t))}),50)}}e.watch((()=>i.isShow),((e,t)=>{!t&&e&&(o.value=!1,setTimeout((()=>o.value=!0),50),Q().then((e=>{e.result.records.forEach((e=>{e.menu=JSON.parse(JSON.stringify(m.value)),e.isNew=!0})),v.value=e.result.records,l("log","at component/Initialization/leida.vue:123","????",v.value),p()})))}));return e.onMounted((()=>{})),(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(o.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-content-title"},[e.createElementVNode("view",{class:"shu"}),e.createElementVNode("view",{class:"shu-font"},"长春市朝阳区久泰开运养老服务有限公司")]),e.createElementVNode("view",{class:"leida"},[e.createElementVNode("view",{class:"kutong-father"},[e.createElementVNode("image",{class:"kutong-img",src:"/static/index/leida/leidabgc.png"}),e.createElementVNode("image",{class:e.normalizeClass(["kutong-shan",c.value<1?"spin-anim":"no-anim"]),src:"/static/index/leida/shan.png"},null,2),e.createElementVNode("view",{class:"huan"},[e.createElementVNode("view",{class:e.normalizeClass(["quarter-ring",c.value<1?"spin-anim-spec":"no-anim-spec"])},null,2)])]),e.createElementVNode("view",{class:"jindutiao"},[e.createElementVNode("view",{class:"progress-fill",style:e.normalizeStyle({transform:`scaleX(${c.value})`})},null,4)]),e.createElementVNode("view",{class:"color-font",style:{"margin-top":"80rpx"}},e.toDisplayString(c.value>=1?"扫描完成。":"正在使用雷达区域扫描护理机构,"),1),e.createElementVNode("view",{class:"color-font"},e.toDisplayString(c.value>=1?"":"请稍后..."),1),e.createElementVNode("view",{class:"agagin-button",onClick:p},"重新扫描")]),e.createElementVNode("view",{class:"other"},[e.createElementVNode("scroll-view",{ref_key:"scrollViewRef",ref:d,"scroll-y":"",class:"other-father","scroll-top":s.value},[e.createElementVNode("view",{class:"card-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["card",{"fade-in":t.isNew}]),key:l,onAnimationend:e=>{t.isNew=!1}},[e.createElementVNode("view",{class:"card-title"},[e.createElementVNode("view",{style:{"font-size":"25rpx"}},"NUID:"+e.toDisplayString(t.nuId),1),e.createElementVNode("view",{class:"right-box"},"护理单元")]),e.createElementVNode("view",{class:"card-middle"},[e.createElementVNode("view",{class:"video-box",onClick:a[0]||(a[0]=e=>n.value=-1)},[e.createElementVNode("image",{class:"video-box-img",src:"/static/index/leida/video.png"})]),e.createElementVNode("view",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.menu,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>{t.target=!t.target,n.value=-1}},[e.createElementVNode("view",{class:"small-menu"},[e.createElementVNode("image",{class:"small-img",src:t.target?t.targetUrl:t.url},null,8,["src"])])],8,["onClick"])))),128))])]),e.createElementVNode("view",{class:"card-bottom"},[e.createTextVNode(e.toDisplayString(t.nuName)+" ",1),e.createElementVNode("image",{class:"bottom-img",src:"/static/index/leida/rename.png",onClick:e=>{n.value=l,r.value=t.nuName}},null,8,["onClick"])]),n.value==l?(e.openBlock(),e.createElementBlock("view",{key:0,class:"rename-father"},[e.createElementVNode("view",{class:"rename-title"}," 重命名 "),e.createElementVNode("view",{class:"rename-gray"}," NUID:20241001001 "),e.createElementVNode("view",{class:"rename-input"},[e.createElementVNode("image",{class:"left-img",src:"/static/index/click.png"}),e.withDirectives(e.createElementVNode("input",{class:"uni-input",placeholder:"请重新命名","onUpdate:modelValue":a[1]||(a[1]=e=>r.value=e)},null,512),[[e.vModelText,r.value]]),e.withDirectives(e.createElementVNode("image",{class:"right-img",src:G,onClick:a[2]||(a[2]=e=>r.value="")},null,512),[[e.vShow,r.value]])]),e.createElementVNode("view",{class:"blue-button",onClick:e=>{return t=r.value,a=l,t&&(u.value[a].nuName=t),void(n.value=-1);var t,a}}," 确定 ",8,["onClick"])])):e.createCommentVNode("",!0)],42,["onAnimationend"])))),128))])],8,["scroll-top"])])])],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-08e03fe2"]]),Ze=s(e.defineComponent({__name:"saoma",props:{isShow:{type:Boolean,required:!0}},emits:["nav"],setup(t,{emit:l}){const a=t,i=e.ref(!0);function r(){uni.scanCode({onlyFromCamera:!0,scanType:["qrCode","barCode"],success(e){},fail(e){uni.showToast({title:"扫码失败:"+e.errMsg,icon:"none"})}})}return e.watch((()=>a.isShow),((e,t)=>{!t&&e&&(i.value=!1,setTimeout((()=>i.value=!0),50))})),(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(i.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-content-title"},[e.createElementVNode("view",{class:"shu"}),e.createElementVNode("view",{class:"shu-font"},"长春市朝阳区久泰开运养老服务有限公司")])]),e.createElementVNode("view",{class:"saomiao",onClick:r},[e.createElementVNode("view",{class:"saomiao-son"},[e.createElementVNode("view",{class:"saomiao-son-son"},[e.createElementVNode("view",{class:"saomiao-son-son-img"})])])])],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-3c477a5f"]]),He=s(e.defineComponent({__name:"input",props:{isShow:{type:Boolean,required:!0}},emits:["nav"],setup(t,{emit:l}){const a=t,i=e.ref(!0),r=e.ref("");return e.watch((()=>a.isShow),((e,t)=>{!t&&e&&(i.value=!1,setTimeout((()=>i.value=!0),50))})),(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(i.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-content-title"},[e.createElementVNode("view",{class:"shu"}),e.createElementVNode("view",{class:"shu-font"},"长春市朝阳区久泰开运养老服务有限公司")])]),e.createElementVNode("view",{class:"saomiao"},[e.createElementVNode("view",{class:"big-ball"},[e.createElementVNode("view",{class:"ball"})]),e.createElementVNode("image",{class:"left-img",src:J}),e.withDirectives(e.createElementVNode("input",{class:"saoma-input",password:!1,"onUpdate:modelValue":a[0]||(a[0]=e=>r.value=e),placeholder:"请手动录入NUID"},null,512),[[e.vModelText,r.value]]),e.withDirectives(e.createElementVNode("image",{class:"right-img",src:X,onClick:a[1]||(a[1]=e=>r.value="")},null,512),[[e.vShow,r.value]]),e.createElementVNode("view",{class:"blue-button"}," 确定 ")]),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-5fc7e05c"]]),Ge=s(e.defineComponent({__name:"index",setup(t){const a=e.ref(!1),i=e.ref(0);e.ref(!1),e.ref(!1);const r=e.ref([{url:"/static/index/relindex/index.png",targetUrl:"/static/index/relindex/indexblue.png",name:"首页",pao:0},{url:"/static/index/relindex/fuwu.png",targetUrl:"/static/index/relindex/fuwublue.png",name:"服务考核",pao:0},{url:"/static/index/relindex/jigou.png",targetUrl:"/static/index/relindex/jigoublue.png",name:"机构功能1",pao:0},{url:"/static/index/relindex/jigou.png",targetUrl:"/static/index/relindex/jigoublue.png",name:"机构功能2",pao:0},{url:"/static/index/relindex/shezhi.png",targetUrl:"/static/index/relindex/shezhiblue.png",name:"设置",pao:0},{url:"/static/index/newindex/curve/return_8.png",targetUrl:"/static/index/newindex/curve/return_1.png",name:"返回",pao:0}]);e.ref([{url:"/static/index/topright/title/0.png",name:"切换机构"},{url:"/static/index/topright/title/1.png",name:"修改密码"},{url:"/static/index/topright/title/2.png",name:"注销账号"}]),e.ref([{url:"/static/index/topright/scan/00.png",targetUrl:"/static/index/topright/scan/01.png",name:"雷达扫描"},{url:"/static/index/topright/scan/10.png",targetUrl:"/static/index/topright/scan/11.png",name:"扫码添加"},{url:"/static/index/topright/scan/20.png",targetUrl:"/static/index/topright/scan/21.png",name:"手动录入"}]);const n=e=>{5===e&&uni.navigateBack(),i.value=e},c=e=>{switch(e){case 0:i.value=-2;break;case 1:i.value=-3;break;case 2:i.value=-4}},s=e=>{switch(e){case 0:i.value=-2;break;case 1:i.value=-3;break;case 2:i.value=-4}},d=e.ref("");return o((e=>{l("log","at pages/Initialization/index.vue:135","???",e.menu),e.menu?i.value=e.menu:i.value=0,d.value=uni.getStorageSync("realname")})),(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(a.value?"darkbackgroundContainer":"backgroundContainer")},[e.createElementVNode("view",{class:"index-content"},[e.createElementVNode("view",{class:"index-content-leftMenus"},[e.createElementVNode("view",{class:"index-title-title"},[e.createElementVNode("image",{class:"index-title-left-img",src:y}),e.createElementVNode("view",{class:"index-title-left-font"},e.toDisplayString(d.value),1)]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"blue-circle-pos"},[e.withDirectives(e.createElementVNode("view",{class:"blue-circle"},[e.createElementVNode("image",{class:"blue-circle-size",src:"/static/index/ray.png"},null,8,["src"])],512),[[e.vShow,l===i.value]]),t.pao?(e.openBlock(),e.createElementBlock("view",{key:0,class:"red-pao",onClick:e=>n(l)},e.toDisplayString(t.pao>99?"99+":t.pao),9,["onClick"])):e.createCommentVNode("",!0),e.createElementVNode("image",{class:"left-img",src:l===i.value?t.targetUrl:t.url,onClick:e=>n(l)},null,8,["src","onClick"]),e.createElementVNode("view",{class:e.normalizeClass(l===i.value?"left-img-font-target":"left-img-font"),onClick:e=>n(l)},e.toDisplayString(t.name),11,["onClick"])])))),128))]),e.createVNode(Ye,{isShow:0==i.value},null,8,["isShow"]),e.createVNode(Je,{isShow:4==i.value,onJump:c},null,8,["isShow"]),e.createVNode(Ye,{isShow:-1==i.value,onNav:s},null,8,["isShow"]),e.createVNode(Xe,{isShow:-2==i.value},null,8,["isShow"]),e.createVNode(Ze,{isShow:-3==i.value},null,8,["isShow"]),e.createVNode(He,{isShow:-4==i.value},null,8,["isShow"])])],2))}}),[["__scopeId","data-v-aebf66be"]]);"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self&&self;function Qe(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Ke={exports:{}};Ke.exports=function(e){function t(a){if(l[a])return l[a].exports;var i=l[a]={i:a,l:!1,exports:{}};return e[a].call(i.exports,i,i.exports,t),i.l=!0,i.exports}var l={};return t.m=e,t.c=l,t.d=function(e,l,a){t.o(e,l)||Object.defineProperty(e,l,{configurable:!1,enumerable:!0,get:a})},t.n=function(e){var l=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(l,"a",l),l},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=0)}([function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0});var a,i=l(1),r=(a=i)&&a.__esModule?a:{default:a};t.default=r.default,e.exports=t.default},function(e,t,l){function a(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=a(l(2)),r=a(l(3)),n=a(l(4)),o=a(l(5)),c=a(l(6)),s=a(l(7)),d=a(l(8)),m=a(l(9)),u=a(l(10)),v=a(l(11)),p=a(l(12)),g={lunarInfo:i.default,solarMonth:r.default,gan:n.default,zhi:o.default,animals:c.default,lunarTerm:s.default,lTermInfo:d.default,nStr1:m.default,nStr2:u.default,nStr3:v.default,nStr4:p.default,lYearDays:function(e){var t,l=348;for(t=32768;t>8;t>>=1)l+=g.lunarInfo[e-1900]&t?1:0;return l+g.leapDays(e)},leapMonth:function(e){return 15&g.lunarInfo[e-1900]},leapDays:function(e){return g.leapMonth(e)?65536&g.lunarInfo[e-1900]?30:29:0},monthDays:function(e,t){return t>12||t<1?-1:g.lunarInfo[e-1900]&65536>>t?30:29},solarDays:function(e,t){if(t>12||t<1)return-1;var l=t-1;return 1==l?e%4==0&&e%100!=0||e%400==0?29:28:g.solarMonth[l]},toGanZhi:function(e){return g.gan[e%10]+g.zhi[e%12]},getTerm:function(e,t){if(e<1900||e>2100)return-1;if(t<1||t>24)return-1;var l=g.lTermInfo[e-1900],a=[parseInt("0x"+l.substr(0,5)).toString(),parseInt("0x"+l.substr(5,5)).toString(),parseInt("0x"+l.substr(10,5)).toString(),parseInt("0x"+l.substr(15,5)).toString(),parseInt("0x"+l.substr(20,5)).toString(),parseInt("0x"+l.substr(25,5)).toString()],i=[a[0].substr(0,1),a[0].substr(1,2),a[0].substr(3,1),a[0].substr(4,2),a[1].substr(0,1),a[1].substr(1,2),a[1].substr(3,1),a[1].substr(4,2),a[2].substr(0,1),a[2].substr(1,2),a[2].substr(3,1),a[2].substr(4,2),a[3].substr(0,1),a[3].substr(1,2),a[3].substr(3,1),a[3].substr(4,2),a[4].substr(0,1),a[4].substr(1,2),a[4].substr(3,1),a[4].substr(4,2),a[5].substr(0,1),a[5].substr(1,2),a[5].substr(3,1),a[5].substr(4,2)];return parseInt(i[t-1])},toChinaYear:function(e){var t=parseInt(e/1e3),l=parseInt(e%1e3/100),a=parseInt(e%100/10),i=e%10;return g.nStr4[t]+g.nStr4[l]+g.nStr4[a]+g.nStr4[i]+"年"},toChinaMonth:function(e){return e>12||e<1?-1:g.nStr3[e-1]+"月"},toChinaDay:function(e){var t;switch(e){case 10:t="初十";break;case 20:t="二十";break;case 30:t="三十";break;default:t=g.nStr2[Math.floor(e/10)],t+=g.nStr1[e%10]}return t},getAnimal:function(e){return g.animals[(e-4)%12]},solar2lunar:function(e,t,l){if(e<1900||e>2100)return-1;if(1900==e&&1==t&&l<31)return-1;if(e)var a=new Date(e,parseInt(t)-1,l);else a=new Date;var i,r=0,n=0,o=(e=a.getFullYear(),t=a.getMonth()+1,l=a.getDate(),(Date.UTC(a.getFullYear(),a.getMonth(),a.getDate())-Date.UTC(1900,0,31))/864e5);for(i=1900;i<2101&&o>0;i++)o-=n=g.lYearDays(i);o<0&&(o+=n,i--);var c=new Date,s=!1;c.getFullYear()==e&&c.getMonth()+1==t&&c.getDate()==l&&(s=!0);var d=a.getDay(),m=g.nStr1[d];0==d&&(d=7);var u=i,v=(r=g.leapMonth(i),!1);for(i=1;i<13&&o>0;i++)r>0&&i==r+1&&0==v?(--i,v=!0,n=g.leapDays(u)):n=g.monthDays(u,i),1==v&&i==r+1&&(v=!1),o-=n;0==o&&r>0&&i==r+1&&(v?v=!1:(v=!0,--i)),o<0&&(o+=n,--i);var p=i,w=o+1,h=t-1,f=g.getTerm(e,3),N=g.toGanZhi(e-4),y=new Date(e,1,f).getTime();new Date(e,h,l).getTime()=x&&(V=g.toGanZhi(12*(e-1900)+t+12));var b=!1,k="";x==l&&(b=!0,k=g.lunarTerm[2*t-2]),E==l&&(b=!0,k=g.lunarTerm[2*t-1]);var T=Date.UTC(e,h,1,0,0,0,0)/864e5+25567+10,D=g.toGanZhi(T+l-1);return{lYear:u,lMonth:p,lDay:w,animal:g.getAnimal(u),yearCn:g.toChinaYear(u),monthCn:(v&&r===p?"闰":"")+g.toChinaMonth(p),dayCn:g.toChinaDay(w),cYear:e,cMonth:t,cDay:l,gzYear:N,gzMonth:V,gzDay:D,isToday:s,isLeap:v,nWeek:d,ncWeek:"星期"+m,isTerm:b,term:k}},lunar2solar:function(e,t,l,a){var i=g.leapMonth(e);if(g.leapDays(e),a&&i!=t)return-1;if(2100==e&&12==t&&l>1||1900==e&&1==t&&l<31)return-1;var r=g.monthDays(e,t);if(e<1900||e>2100||l>r)return-1;for(var n=0,o=1900;o0&&(n+=g.leapDays(e),s=!0),n+=g.monthDays(e,o);a&&(n+=r);var d=Date.UTC(1900,1,30,0,0,0),m=new Date(864e5*(n+l-31)+d),u=m.getUTCFullYear(),v=m.getUTCMonth()+1,p=m.getUTCDate();return g.solar2lunar(u,v,p)}};t.default=g,e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=[19416,19168,42352,21717,53856,55632,91476,22176,39632,21970,19168,42422,42192,53840,119381,46400,54944,44450,38320,84343,18800,42160,46261,27216,27968,109396,11104,38256,21234,18800,25958,54432,59984,28309,23248,11104,100067,37600,116951,51536,54432,120998,46416,22176,107956,9680,37584,53938,43344,46423,27808,46416,86869,19872,42416,83315,21168,43432,59728,27296,44710,43856,19296,43748,42352,21088,62051,55632,23383,22176,38608,19925,19152,42192,54484,53840,54616,46400,46752,103846,38320,18864,43380,42160,45690,27216,27968,44870,43872,38256,19189,18800,25776,29859,59984,27480,23232,43872,38613,37600,51552,55636,54432,55888,30034,22176,43959,9680,37584,51893,43344,46240,47780,44368,21977,19360,42416,86390,21168,43312,31060,27296,44368,23378,19296,42726,42208,53856,60005,54576,23200,30371,38608,19195,19152,42192,118966,53840,54560,56645,46496,22224,21938,18864,42359,42160,43600,111189,27936,44448,84835,37744,18936,18800,25776,92326,59984,27424,108228,43744,37600,53987,51552,54615,54432,55888,23893,22176,42704,21972,21200,43448,43344,46240,46758,44368,21920,43940,42416,21168,45683,26928,29495,27296,44368,84821,19296,42352,21732,53600,59752,54560,55968,92838,22224,19168,43476,42192,53584,62034,54560],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=[31,28,31,30,31,30,31,31,30,31,30,31],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["甲","乙","丙","丁","戊","己","庚","辛","壬","癸"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["子","丑","寅","卯","辰","巳","午","未","申","酉","戌","亥"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["鼠","牛","虎","兔","龙","蛇","马","羊","猴","鸡","狗","猪"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["小寒","大寒","立春","雨水","惊蛰","春分","清明","谷雨","立夏","小满","芒种","夏至","小暑","大暑","立秋","处暑","白露","秋分","寒露","霜降","立冬","小雪","大雪","冬至"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c3598082c95f8c965cc920f","97bd0b06bdb0722c965ce1cfcc920f","b027097bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd0b06bdb0722c965ce1cfcc920f","b027097bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd0b06bdb0722c965ce1cfcc920f","b027097bd097c36b0b6fc9274c91aa","9778397bd19801ec9210c965cc920e","97b6b97bd19801ec95f8c965cc920f","97bd09801d98082c95f8e1cfcc920f","97bd097bd097c36b0b6fc9210c8dc2","9778397bd197c36c9210c9274c91aa","97b6b97bd19801ec95f8c965cc920e","97bd09801d98082c95f8e1cfcc920f","97bd097bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c91aa","97b6b97bd19801ec95f8c965cc920e","97bcf97c3598082c95f8e1cfcc920f","97bd097bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c3598082c95f8c965cc920f","97bd097bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c3598082c95f8c965cc920f","97bd097bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd097bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd097bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd097bd07f595b0b6fc920fb0722","9778397bd097c36b0b6fc9210c8dc2","9778397bd19801ec9210c9274c920e","97b6b97bd19801ec95f8c965cc920f","97bd07f5307f595b0b0bc920fb0722","7f0e397bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c920e","97b6b97bd19801ec95f8c965cc920f","97bd07f5307f595b0b0bc920fb0722","7f0e397bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c91aa","97b6b97bd19801ec9210c965cc920e","97bd07f1487f595b0b0bc920fb0722","7f0e397bd097c36b0b6fc9210c8dc2","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf7f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf7f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf7f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf7f1487f531b0b0bb0b6fb0722","7f0e397bd07f595b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c9274c920e","97bcf7f0e47f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9210c91aa","97b6b97bd197c36c9210c9274c920e","97bcf7f0e47f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c920e","97b6b7f0e47f531b0723b0b6fb0722","7f0e37f5307f595b0b0bc920fb0722","7f0e397bd097c36b0b6fc9210c8dc2","9778397bd097c36b0b70c9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e37f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc9210c8dc2","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e27f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0787b0721","7f0e27f0e47f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9210c91aa","97b6b7f0e47f149b0723b0787b0721","7f0e27f0e47f531b0723b0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9210c8dc2","977837f0e37f149b0723b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e37f5307f595b0b0bc920fb0722","7f0e397bd097c35b0b6fc9210c8dc2","977837f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0721","7f0e37f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc9210c8dc2","977837f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","977837f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","977837f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","977837f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","977837f0e37f14998082b0787b06bd","7f07e7f0e47f149b0723b0787b0721","7f0e27f0e47f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","977837f0e37f14998082b0723b06bd","7f07e7f0e37f149b0723b0787b0721","7f0e27f0e47f531b0723b0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","977837f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e37f1487f595b0b0bb0b6fb0722","7f0e37f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e37f1487f531b0b0bb0b6fb0722","7f0e37f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e37f1487f531b0b0bb0b6fb0722","7f0e37f0e37f14898082b072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e37f0e37f14898082b072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e37f0e366aa89801eb072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f149b0723b0787b0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e37f0e366aa89801eb072297c35","7ec967f0e37f14998082b0723b06bd","7f07e7f0e47f149b0723b0787b0721","7f0e27f0e47f531b0723b0b6fb0722","7f0e37f0e366aa89801eb072297c35","7ec967f0e37f14998082b0723b06bd","7f07e7f0e37f14998083b0787b0721","7f0e27f0e47f531b0723b0b6fb0722","7f0e37f0e366aa89801eb072297c35","7ec967f0e37f14898082b0723b02d5","7f07e7f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e36665b66aa89801e9808297c35","665f67f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e36665b66a449801e9808297c35","665f67f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e36665b66a449801e9808297c35","665f67f0e37f14898082b072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e26665b66a449801e9808297c35","665f67f0e37f1489801eb072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["日","一","二","三","四","五","六","七","八","九","十"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["初","十","廿","卅"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["正","二","三","四","五","六","七","八","九","十","冬","腊"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["零","一","二","三","四","五","六","七","八","九","十"],e.exports=t.default}]);const et=Qe(Ke.exports),tt=s({__name:"calendar",setup(t){const a=new Date,i=e.ref(a.getFullYear()),r=e.ref(a.getMonth()),n=e.ref(null),o=["一","二","三","四","五","六","日"],c=e.computed((()=>{const e=[],t=new Date(i.value,r.value,0),l=t.getFullYear(),a=t.getMonth(),n=t.getDate(),o=(c=i.value,s=r.value,(new Date(c,s,1).getDay()+6)%7);var c,s;for(let i=0;i(e.openBlock(),e.createElementBlock("view",{class:"calendar"},[e.createElementVNode("view",{class:"header"},[e.createElementVNode("view",{class:"header-title"},[e.createElementVNode("view",{class:"year-month"},e.toDisplayString(i.value)+"年"+e.toDisplayString(r.value+1)+"月",1),e.createElementVNode("view",{class:"botton-father"},[e.createElementVNode("view",{class:"click-button",onClick:s},"上个月"),e.createElementVNode("view",{class:"click-button",onClick:d},"下个月")])]),e.createElementVNode("view",{class:"weekdays"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(o,((t,l)=>e.createElementVNode("view",{key:l,class:"weekday"},e.toDisplayString(t),1))),64))])]),e.createElementVNode("view",{class:"days"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,(t=>{return e.openBlock(),e.createElementBlock("view",{key:t.key,class:e.normalizeClass(["day-cell",{"prev-month":t.prev,"next-month":t.next,selected:(a=t.key,n.value===a)}]),onClick:e=>function(e){e.prev||(n.value=e.key,l("log","at component/public/calendar.vue:91","Selected date:",e.key))}(t)},[e.createElementVNode("view",{class:"gregorian"},e.toDisplayString(t.dateText),1),t.lunarText?(e.openBlock(),e.createElementBlock("view",{key:0,class:"lunar"},e.toDisplayString(t.lunarText),1)):e.createCommentVNode("",!0)],10,["onClick"]);var a})),128))])]))}},[["__scopeId","data-v-0bf11501"]]),lt=s(e.defineComponent({__name:"index",setup(t){const l=e.ref(!1),a=e.ref(null),i=e=>{uni.navigateBack()};return o((e=>{})),r((()=>{var e;null==(e=a.value)||e.check_update()})),(t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"backgroundContainer"},[e.createElementVNode("view",{class:"assess-title"},[e.createElementVNode("view",{class:"left-icons"},[e.createElementVNode("image",{class:"left-icons-img",src:"/static/index/undericons/doublekuai.png"},null,8,["src"]),e.createElementVNode("view",{class:"right-icons-font"},"服务考核-"),e.createElementVNode("view",{class:"right-icons-text"},"批量考核")]),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(l.value?"right-icons-font-dark":"right-icons-font")},"王金福",2),e.createElementVNode("image",{class:"right-icons-img-icon",src:l.value?"/static/index/undericons/face.png":"/static/index/undericons/facelight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:l.value?"/static/index/undericons/hand.png":"/static/index/undericons/handlight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",onClick:i,src:l.value?"/static/index/undericons/out.png":"/static/index/undericons/outlight.png"},null,8,["src"])])]),e.createElementVNode("view",{class:"assess-another"},[e.createElementVNode("view",{class:"left-contain"},[e.createElementVNode("view",{class:"calendar"},[e.createVNode(tt)])])])]))}}),[["__scopeId","data-v-65a124ce"]]),at=s(e.defineComponent({__name:"index",setup(t){e.ref(!1);const l=e.ref([]),a=e.ref(["全部","日常","周期"]),i=e.ref(0),r=e.ref(0);function n(e){let t=e.detail.scrollTop,l=parseFloat(t.toFixed(2));r.value=l}const c=e=>{if(i.value!==e)return"titlebutton";switch(e){case 0:return"titlebutton-target";case 1:return"titlebutton-target-yellow";case 2:return"titlebutton-target-pouple"}};function s(e){if(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}return[]}const d=e.ref(0),m=e.ref([]);o((e=>{let t=uni.getStorageSync("myArray");l.value=t,l.value[0].children.length<8&&l.value.forEach((e=>{for(;e.children.length<8;)e.children.push({directiveName:""})})),m.value=JSON.parse(JSON.stringify(l.value)),e.currentNumber&&(d.value=745*e.currentNumber)}));const u=e.ref(0),v=e.ref(0),p=e.ref(!1),g=e.ref(!1),w=e.ref(-1),h=e.ref(-1),f=()=>{uni.navigateBack()},N=()=>{let e=[];m.value.forEach(((t,l)=>{e=[],t.children.forEach(((t,l)=>{if(null===t.directiveName||""===t.directiveName||void 0===t.directiveName){m.value.every((e=>""===e.children[l].directiveName))&&e.push(l)}}))}));const t=[...e].sort(((e,t)=>t-e));m.value.forEach((e=>{t.forEach((t=>{e.children.splice(t,1)}))})),m.value[0].children.length<8&&m.value.forEach((e=>{for(;e.children.length<8;)e.children.push({directiveName:""})}))},y=e.ref(0),x=e.ref(null);function E(t,l,a,i){const r=Date.now();null!=x.value&&clearTimeout(x.value),r-y.value<250?(((e,t)=>{uni.navigateBack({delta:1,success:()=>{uni.$emit("where",{index0:e,index1:t})}})})(l,a),y.value=0):(x.value=setTimeout((()=>{((t,l,a,i)=>{t.directiveName&&(w.value=l,h.value=a,uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.dataset.index0==l&&t.dataset.index1==a&&(t.left<500?u.value=Math.floor(t.left)+510:u.value=Math.floor(t.left)-10,t.top<300?v.value=Math.floor(t.top)+250:v.value=Math.floor(t.top),await e.nextTick(),p.value=!0,g.value=!1,setTimeout((()=>{g.value=!0}),100))}))})).exec())})(t,l,a)}),250),y.value=r)}return(t,o)=>{var y,x,V;return e.openBlock(),e.createElementBlock("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"doctorsay-container-title"},[e.createElementVNode("view",{class:"doctorsay-container-left"},[e.createElementVNode("view",{class:"doctorsay-container-left-gun"}),e.createElementVNode("view",{class:"doctorsay-container-left-font"},"时间矩阵")]),e.createElementVNode("view",{class:"doctorsay-container-right"},[e.createElementVNode("view",{class:"titlebutton-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.value,((t,a)=>(e.openBlock(),e.createElementBlock("view",{key:a},[e.createElementVNode("view",{class:e.normalizeClass(c(a)),onClick:e=>(e=>{if(i.value!==e)switch(m.value=[],i.value=e,e){case 0:m.value=JSON.parse(JSON.stringify(l.value));break;case 1:m.value=JSON.parse(JSON.stringify(l.value)),m.value.forEach((e=>{e.children.forEach((e=>{e.directiveName&&"日常"!==e.cycleType&&(e.directiveName="",e.cycleType="",e.startTime="")}))})),N();break;case 2:m.value=JSON.parse(JSON.stringify(l.value)),m.value.forEach((e=>{e.children.forEach((e=>{e.directiveName&&"日常"===e.cycleType&&(e.directiveName="",e.cycleType="",e.startTime="")}))})),N()}})(a)},e.toDisplayString(t),11,["onClick"])])))),128))]),e.createElementVNode("view",{class:"doctorsay-container-right-kuai-cheng"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"日常"),e.createElementVNode("view",{class:"doctorsay-container-right-kuai-zi"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"周期"),e.createElementVNode("view",{class:"doctorsay-container-juzhen",onClick:f}," 返回 ")])]),e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("view",{class:"boom"},[e.createElementVNode("view",{style:e.normalizeStyle({marginTop:`-${2*r.value}rpx`})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(null==(y=m.value[0])?void 0:y.children,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(h.value===l?"boom-son-target":"boom-son")},e.toDisplayString(t.typeName),3),[[e.vShow,t.typeName]])])))),128))],4)]),e.createElementVNode("scroll-view",{style:{height:"100%",width:"100%"},"scroll-left":d.value,"scroll-x":"","show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",width:"5945rpx","box-shadow":"10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1)",background:"linear-gradient(to right, #c4dbf4,#c9c2ef, #c6dcf3)"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time"},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),1)])))),128))]),e.createElementVNode("view",{style:{display:"flex",height:"calc(100% - 80rpx)",width:"5945rpx"}},[e.createElementVNode("scroll-view",{"scroll-y":"","show-scrollbar":!1,onScroll:n},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time-und"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.children,((t,a)=>{return e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:a},[e.createElementVNode("view",{class:e.normalizeClass([w.value===l&&h.value===a?"title-time-border-blue":"","super-card-time-card"]),style:{position:"relative"},onTouchend:e=>E(t,l,a),"data-index0":l,"data-index1":a},[e.createElementVNode("view",{class:e.normalizeClass((i=t,"日常"===i.cycleType?"title-time-border-yellow":i.cycleType?"title-time-border-pouple":"title-time-border")),style:{"font-size":"30rpx",overflow:"hidden"}},[t.startTime?(e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"margin-top":"0rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"25rpx"}},e.toDisplayString(t.startTime+"-"+t.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==t.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(t.cycleType),1)])):e.createCommentVNode("",!0),e.createElementVNode("view",{style:e.normalizeStyle([s(t.directiveName)[1]?{}:{marginTop:"20rpx"},{"font-weight":"700","font-size":"24rpx"}])},e.toDisplayString(s(t.directiveName)[0]),5),s(t.directiveName)[1]?(e.openBlock(),e.createElementBlock("view",{key:1,class:"down-icons",style:e.normalizeStyle("日常"!=t.cycleType?{backgroundColor:"rgb(212,203,255)"}:{})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s(t.directiveName).slice(1),((l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:a},[e.createElementVNode("view",{class:"icon",style:e.normalizeStyle("日常"!=t.cycleType?{backgroundColor:"rgb(123,97,255)"}:{})},e.toDisplayString(s(t.directiveName)[a+1]),5)])))),128))],4)):e.createCommentVNode("",!0)],2)],42,["onTouchend","data-index0","data-index1"])]);var i})),128))])])))),128))])],32)])],8,["scroll-left"])])]),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay",onClick:o[1]||(o[1]=e=>p.value=!1)},[e.createElementVNode("view",{class:"popup-overlay-content",style:e.normalizeStyle({top:2*v.value-350+"rpx",left:2*u.value-780+"rpx",opacity:g.value?1:0,backgroundColor:"日常"===(null==(V=null==(x=l.value[h.value])?void 0:x.children[w.value])?void 0:V.type)?"#fffcf6":"rgb(246, 244, 254)"}),onClick:o[0]||(o[0]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"}," 占个位置 ")]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],4)],512),[[e.vShow,p.value]])])}}}),[["__scopeId","data-v-70d077f4"]]),it=s({__name:"specialDrawer",props:{widNumber:{type:Number,default:17}},setup(t,{expose:l}){const a=e.ref(!1),i=t,r=e.ref(0);e.onMounted((()=>{const e=uni.getSystemInfoSync();r.value=e.screenWidth})),e.ref(0);const n=e.ref(!0),o=e.ref(0),c=e.computed((()=>{const e=`${i.widNumber}%`;if(n.value){return{width:e,transform:`translateX(${o.value}px)`,transition:"none"}}return{width:e}}));function s(e){}function d(e){}function m(){}l({openDrawer:function(){a.value=!0},closeDrawer:function(){a.value=!0}});const u=e.ref(0);return e.computed((()=>({transform:`rotate(${u.value}deg)`,transition:"transform 0.6s ease"}))),(t,l)=>(e.openBlock(),e.createElementBlock("view",null,[e.createElementVNode("view",{class:e.normalizeClass(["drawer",{"drawer-open":a.value}]),style:e.normalizeStyle(c.value)},[e.createElementVNode("view",{class:"drawer-content",onTouchstartPassive:s,onTouchmovePassive:d,onTouchend:m,onTouchcancel:m},[e.renderSlot(t.$slots,"default",{},void 0,!0)],32)],6)]))}},[["__scopeId","data-v-7979ddf3"]]),rt=s(e.defineComponent({__name:"index",props:{changerightbottom:{type:String,default:"标准"}},emits:["clickball"],setup(t,{emit:l}){const a=e.ref([{name:"周期",url:""},{name:"放大",url:"/static/index/getbig.png"},{name:"日常",url:""},{name:"缩小",url:"/static/index/getsmall.png"},{name:"全部",url:""},{name:"标准",url:""}]),i=l;return(l,r)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"button-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.value,((l,a)=>(e.openBlock(),e.createElementBlock("view",{key:a,class:"white-ball",onClick:e=>(e=>{i("clickball",e)})(a)},[l.url?(e.openBlock(),e.createElementBlock("image",{key:0,style:{width:"50%",height:"50%"},src:l.url},null,8,["src"])):(e.openBlock(),e.createElementBlock("view",{key:1},e.toDisplayString(5===a?t.changerightbottom:l.name),1))],8,["onClick"])))),128))])]))}}),[["__scopeId","data-v-a6bada18"]]),nt=s(e.defineComponent({__name:"indexnew",setup(t){e.ref(!1);const l=e.ref([]);e.ref(["全部","日常","周期"]),e.ref(["放大","缩小"]);const a=e.ref(0);uni.getSystemInfoSync().windowWidth;const i=e=>{switch(e){case 0:b(2);break;case 1:v(0);break;case 2:b(1);break;case 3:v(1);break;case 4:b(0);break;case 5:7===d.value?T(!1):T(!0)}};function r(e){if(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}return[]}const n=e.ref(0),c=e.ref(0),s=e.ref([]),d=e.ref(0),m=e.ref(247),u=e.ref(180);e.ref(0),e.ref(0),o((e=>{let t=uni.getStorageSync("myArray");l.value=t,l.value[0].children.length<8&&l.value.forEach((e=>{for(;e.children.length<8;)e.children.push({directiveName:""})})),s.value=JSON.parse(JSON.stringify(l.value)),d.value=7,p()}));const v=e=>{e?d.value<24&&d.value++:d.value>7&&d.value--};function p(){if(g.value>=0&&g.value<=24&&w.value>=0&&w.value<=11){const e=(g.value+.5)*m.value,t=(w.value-.5)*u.value;n.value=e-1110,c.value=t-281.25;const l=24*m.value,a=11*u.value;n.value=Math.max(0,Math.min(n.value,l-2220))/2,c.value=Math.max(0,Math.min(c.value,a-562.5))/2}}const g=e.ref(10),w=e.ref(0);e.watch([g,w],(()=>{p()})),e.watch(d,((e,t)=>{if(t===e);else{switch(e){case 24:m.value=92.5,u.value=107;break;case 23:m.value=96.5,u.value=107;break;case 22:m.value=101,u.value=107;break;case 21:m.value=106,u.value=116;break;case 20:m.value=112,u.value=116;break;case 19:m.value=117,u.value=116;break;case 18:m.value=124,u.value=121;break;case 17:m.value=131,u.value=128;break;case 16:m.value=139,u.value=133;break;case 15:m.value=148,u.value=142;break;case 14:m.value=159,u.value=150;break;case 13:m.value=171,u.value=160;break;case 12:m.value=185,u.value=170;break;case 11:m.value=202,u.value=183;break;case 10:m.value=222,u.value=195;break;case 9:m.value=247,u.value=213;break;case 8:m.value=280,u.value=235;break;case 7:m.value=320,u.value=256}p()}}));const h=e.ref(0),f=e.ref(null);const N=e.ref(0),y=e.ref(0),x=e.ref(!1),E=e.ref(!1);e.ref(null);const V=(e,t)=>{uni.navigateBack({delta:1,success:()=>{uni.$emit("where",{index0:e,index1:t})}})},b=e=>{if(a.value!==e)switch(s.value=[],a.value=e,e){case 0:s.value=JSON.parse(JSON.stringify(l.value));break;case 1:s.value=JSON.parse(JSON.stringify(l.value)),s.value.forEach((e=>{e.children.forEach((e=>{e.directiveName&&"日常"!==e.cycleType&&(e.directiveName="",e.cycleType="",e.startTime="")}))}));break;case 2:s.value=JSON.parse(JSON.stringify(l.value)),s.value.forEach((e=>{e.children.forEach((e=>{e.directiveName&&"日常"===e.cycleType&&(e.directiveName="",e.cycleType="",e.startTime="")}))}))}},k=t=>{switch(x.value=!1,t){case 0:w.value>0&&w.value--;break;case 1:g.value<23&&g.value++;break;case 2:w.value<11&&w.value++;break;case 3:g.value>0&&g.value--;break;case 4:l=s.value[g.value].children[w.value],a=g.value,i=w.value,l.directiveName&&e.nextTick((()=>{uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.dataset.index0==a&&t.dataset.index1==i&&(t.left<500?N.value=Math.floor(t.left)+510:N.value=Math.floor(t.left)-10,t.top<300?y.value=Math.floor(t.top)+250:y.value=Math.floor(t.top),await e.nextTick(),x.value=!0,E.value=!1,setTimeout((()=>{E.value=!0}),100))}))})).exec()}));break;case 5:uni.navigateBack()}var l,a,i};function T(e){d.value=e?7:24}return(t,a)=>{var o,v;const p=e.resolveComponent("arrowkeys");return e.openBlock(),e.createElementBlock("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("scroll-view",{style:{height:"100%",width:"100%"},"scroll-left":n.value,"scroll-x":"","show-scrollbar":!1},[e.createElementVNode("view",{style:e.normalizeStyle([{width:24*m.value+"rpx"},{display:"flex"}])},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time",style:e.normalizeStyle({width:m.value+"rpx"})},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),5)])))),128))],4),e.createElementVNode("view",{style:e.normalizeStyle([{display:"flex",height:"calc(100% - 80rpx)",position:"relative"},{width:24*m.value+"rpx"}])},[e.createElementVNode("view",{class:"xian-bian"}),e.createElementVNode("scroll-view",{"scroll-y":"","show-scrollbar":!1,"scroll-top":c.value},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time-und",style:e.normalizeStyle({width:m.value+"rpx"})},[e.createElementVNode("view",{class:"bottom-bian"}),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.children,((t,a)=>{return e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:a},[e.createElementVNode("view",{style:e.normalizeStyle({height:u.value+"rpx"}),class:"super-card-time-card",onTouchend:e=>function(e,t,l){const a=Date.now();null!=f.value&&clearTimeout(f.value),a-h.value<250?(e.startTime&&V(t,l),h.value=0):(e.directiveName&&(g.value=t,w.value=l),h.value=a)}(t,l,a),"data-index0":l,"data-index1":a},[e.createElementVNode("view",{class:e.normalizeClass((i=t,"日常"===i.cycleType?"title-time-border-yellow":i.cycleType?"title-time-border-pouple":"title-time-border")),style:e.normalizeStyle([d.value>=11&&"日常"!==t.cycleType&&t.startTime?{backgroundColor:"#c5e5ff"}:{},{"font-size":"30rpx",position:"relative"}])},[e.withDirectives(e.createElementVNode("view",{class:"title-time-blue"},null,512),[[e.vShow,g.value==l&&w.value==a]]),t.startTime?(e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"flex-direction":"column",overflow:"hidden"}},[e.withDirectives(e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx",margin:"0 auto"},src:_},null,512),[[e.vShow,t.startTime]]),e.withDirectives(e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(t.startTime+"-"+t.endTime),513),[[e.vShow,d.value<10]]),"日常"!=t.cycleType?e.withDirectives((e.openBlock(),e.createElementBlock("image",{key:0,class:"title-time-button",style:{width:"80rpx",height:"48rpx"},src:te},null,512)),[[e.vShow,d.value<11]]):e.createCommentVNode("",!0),"日常"!=t.cycleType?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font",style:{right:"10rpx",top:"5rpx","font-size":"20rpx"}},e.toDisplayString(t.cycleType),513)),[[e.vShow,d.value<11]]):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0),t.startTime?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font-rel"},e.toDisplayString(r(t.directiveName)[0]),513)),[[e.vShow,d.value<11]]):e.createCommentVNode("",!0)],6)],44,["onTouchend","data-index0","data-index1"])]);var i})),128))],4)])))),128))])],8,["scroll-top"])],4)],8,["scroll-left"])])]),e.createVNode(it,{ref:"gobackdrawer"},{default:e.withCtx((()=>[e.createVNode(rt,{onClickball:i,changerightbottom:7===d.value?"缩略图":"标准"},null,8,["changerightbottom"])])),_:1},512),e.createVNode(p,{onMovecard:k}),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay-content",style:e.normalizeStyle({top:2*y.value-350+"rpx",left:2*N.value-780+"rpx",opacity:E.value?1:0,backgroundColor:"日常"===(null==(v=null==(o=l.value[w.value])?void 0:o.children[g.value])?void 0:v.type)?"#fffcf6":"rgb(246, 244, 254)"}),onClick:a[0]||(a[0]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"}," 占个位置 ")]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],4),[[e.vShow,x.value]])])}}}),[["__scopeId","data-v-7e3cfa67"]]);__definePage("pages/login/login",w),__definePage("pages/denglu",h),__definePage("pages/index/index",f),__definePage("pages/Nursing/index",$),__definePage("pages/watch/index",q),__definePage("pages/watch/settings/settings",Y),__definePage("pages/watch/settings/input",Z),__definePage("pages/watch/settings/saoma",H),__definePage("pages/watch/settings/leida",K),__definePage("pages/NursingNew/index",re),__definePage("pages/Warehousing/index",Ae),__definePage("pages/Initialization/index",Ge),__definePage("pages/assess/index",lt),__definePage("pages/timeMatrix/index",at),__definePage("pages/timeMatrix/indexnew",nt);const ot={onLaunch:function(){l("log","at App.vue:4","App Launch")},onShow:function(){l("log","at App.vue:7","App Show")},onHide:function(){l("log","at App.vue:10","App Hide")}},ct={data:()=>({}),onLoad(){this.$u.getRect=this.$uGetRect},methods:{$uGetRect(e,t){return new Promise((l=>{uni.createSelectorQuery().in(this)[t?"selectAll":"select"](e).boundingClientRect((e=>{t&&Array.isArray(e)&&e.length&&l(e),!t&&e&&l(e)})).exec()}))},getParentData(e=""){this.parent||(this.parent=!1),this.parent=this.$u.$parent.call(this,e),this.parent&&(Object.keys(this.parentData).map((e=>{this.parentData[e]=this.parent[e]})),this.parentData.value=this.parent.modelValue)},preventEvent(e){e&&e.stopPropagation&&e.stopPropagation()}},onReachBottom(){uni.$emit("uOnReachBottom")},beforeUnmount(){if(this.parent&&uni.$u.test.array(this.parent.children)){const e=this.parent.children;e.map(((t,l)=>{t===this&&e.splice(l,1)}))}}};function st(e){if([null,void 0,NaN,!1].includes(e))return e;if("object"!=typeof e&&"function"!=typeof e)return e;var t,l=(t=e,"[object Array]"===Object.prototype.toString.call(t)?[]:{});for(let a in e)e.hasOwnProperty(a)&&(l[a]="object"==typeof e[a]?st(e[a]):e[a]);return l}function dt(e={},t={}){if("object"!=typeof(e=st(e))||"object"!=typeof t)return!1;for(var l in t)t.hasOwnProperty(l)&&(l in e?"object"!=typeof e[l]||"object"!=typeof t[l]?e[l]=t[l]:e[l].concat&&t[l].concat?e[l]=e[l].concat(t[l]):e[l]=dt(e[l],t[l]):e[l]=t[l]);return e}function mt(e){return/^(?:-?\d+|-?\d{1,3}(?:,\d{3})+)?(?:\.\d+)?$/.test(e)}function ut(e){switch(typeof e){case"undefined":return!0;case"string":if(0==e.replace(/(^[ \t\n\r]*)|([ \t\n\r]*$)/g,"").length)return!0;break;case"boolean":if(!e)return!0;break;case"number":if(0===e||isNaN(e))return!0;break;case"object":if(null===e||0===e.length)return!0;for(var t in e)return!1;return!0}return!1}function vt(e){return"[object Object]"===Object.prototype.toString.call(e)}function pt(e){return"function"==typeof e}const gt={email:function(e){return/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/.test(e)},mobile:function(e){return/^1[23456789]\d{9}$/.test(e)},url:function(e){return/http(s)?:\/\/([\w-]+\.)+[\w-]+(\/[\w-.\/?%&=]*)?/.test(e)},date:function(e){return!!e&&(mt(e)&&(e=+e),!/Invalid|NaN/.test(new Date(e).toString()))},dateISO:function(e){return/^\d{4}[\/\-](0?[1-9]|1[012])[\/\-](0?[1-9]|[12][0-9]|3[01])$/.test(e)},number:mt,digits:function(e){return/^\d+$/.test(e)},idCard:function(e){return/^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}([0-9]|X)$/.test(e)},carNo:function(e){const t=/^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}(([0-9]{5}[DF]$)|([DF][A-HJ-NP-Z0-9][0-9]{4}$))/,l=/^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}[A-HJ-NP-Z0-9]{4}[A-HJ-NP-Z0-9挂学警港澳]{1}$/;return 7===e.length?l.test(e):8===e.length&&t.test(e)},amount:function(e){return/^[1-9]\d*(,\d{3})*(\.\d{1,2})?$|^0\.\d{1,2}$/.test(e)},chinese:function(e){return/^[\u4e00-\u9fa5]+$/gi.test(e)},letter:function(e){return/^[a-zA-Z]*$/.test(e)},enOrNum:function(e){return/^[0-9a-zA-Z]*$/g.test(e)},contains:function(e,t){return e.indexOf(t)>=0},range:function(e,t){return e>=t[0]&&e<=t[1]},rangeLength:function(e,t){return e.length>=t[0]&&e.length<=t[1]},empty:ut,isEmpty:ut,jsonString:function(e){if("string"==typeof e)try{var t=JSON.parse(e);return!("object"!=typeof t||!t)}catch(l){return!1}return!1},landline:function(e){return/^\d{3,4}-\d{7,8}(-\d{3,4})?$/.test(e)},object:vt,array:function(e){return"function"==typeof Array.isArray?Array.isArray(e):"[object Array]"===Object.prototype.toString.call(e)},code:function(e,t=6){return new RegExp(`^\\d{${t}}$`).test(e)},func:pt,promise:function(e){return vt(e)&&pt(e.then)&&pt(e.catch)},video:function(e){const t=e.split("?")[0];return new RegExp(/\.(mp4|mpg|mpeg|dat|asf|avi|rm|rmvb|mov|wmv|flv|mkv|m3u8|3gp)$/).test(t)},image:function(e){const t=e.split("?")[0];return new RegExp(/\.(jpeg|jpg|gif|png|svg|webp|jfif|bmp|dpg)$/).test(t)},regExp:function(e){return e&&"[object RegExp]"===Object.prototype.toString.call(e)},string:function(e){return"string"==typeof e}};const wt=new class{setConfig(e){this.config=dt(this.config,e)}request(e={}){if(this.interceptor.request&&"function"==typeof this.interceptor.request){let t=this.interceptor.request(e);if(!1===t)return new Promise((()=>{}));this.options=t}return e.dataType=e.dataType||this.config.dataType,e.responseType=e.responseType||this.config.responseType,e.url=e.url||"",e.params=e.params||{},e.header=Object.assign({},this.config.header,e.header),e.method=e.method||this.config.method,new Promise(((t,l)=>{e.complete=e=>{if(uni.hideLoading(),clearTimeout(this.config.timer),this.config.timer=null,this.config.originalData)if(this.interceptor.response&&"function"==typeof this.interceptor.response){let a=this.interceptor.response(e);!1!==a?t(a):l(e)}else t(e);else if(200==e.statusCode)if(this.interceptor.response&&"function"==typeof this.interceptor.response){let a=this.interceptor.response(e.data);!1!==a?t(a):l(e.data)}else t(e.data);else l(e)},e.url=gt.url(e.url)?e.url:this.config.baseUrl+(0==e.url.indexOf("/")?e.url:"/"+e.url),this.config.showLoading&&!this.config.timer&&(this.config.timer=setTimeout((()=>{uni.showLoading({title:this.config.loadingText,mask:this.config.loadingMask}),this.config.timer=null}),this.config.loadingTime)),uni.request(e)}))}constructor(){this.config={baseUrl:"",header:{},method:"POST",dataType:"json",responseType:"text",showLoading:!0,loadingText:"请求中...",loadingTime:800,timer:null,originalData:!1,loadingMask:!0},this.interceptor={request:null,response:null},this.get=(e,t={},l={})=>this.request({method:"GET",url:e,header:l,data:t}),this.post=(e,t={},l={})=>this.request({url:e,method:"POST",header:l,data:t}),this.put=(e,t={},l={})=>this.request({url:e,method:"PUT",header:l,data:t}),this.delete=(e,t={},l={})=>this.request({url:e,method:"DELETE",header:l,data:t})}};const ht=(new class{constructor(){this.config={type:"navigateTo",url:"",delta:1,params:{},animationType:"pop-in",animationDuration:300,intercept:!1},this.route=this.route.bind(this)}addRootPath(e){return"/"===e[0]?e:`/${e}`}mixinParam(e,t){e=e&&this.addRootPath(e);let l="";return/.*\/.*\?.*=.*/.test(e)?(l=uni.$u.queryParams(t,!1),e+"&"+l):(l=uni.$u.queryParams(t),e+l)}async route(e={},t={}){let l={};if("string"==typeof e?(l.url=this.mixinParam(e,t),l.type="navigateTo"):(l=uni.$u.deepClone(e,this.config),l.url=this.mixinParam(e.url,e.params)),t.intercept&&(this.config.intercept=t.intercept),l.params=t,l=uni.$u.deepMerge(this.config,l),"function"==typeof uni.$u.routeIntercept){await new Promise(((e,t)=>{uni.$u.routeIntercept(l,e)}))&&this.openPage(l)}else this.openPage(l)}openPage(e){const{url:t,type:l,delta:a,animationType:i,animationDuration:r}=e;"navigateTo"!=e.type&&"to"!=e.type||uni.navigateTo({url:t,animationType:i,animationDuration:r}),"redirectTo"!=e.type&&"redirect"!=e.type||uni.redirectTo({url:t}),"switchTab"!=e.type&&"tab"!=e.type||uni.switchTab({url:t}),"reLaunch"!=e.type&&"launch"!=e.type||uni.reLaunch({url:t}),"navigateBack"!=e.type&&"back"!=e.type||uni.navigateBack({delta:a})}}).route;function ft(e=null,t="yyyy-mm-dd"){e||(e=Number(new Date)),10==e.toString().length&&(e*=1e3);let l,a=new Date(e),i={"y+":a.getFullYear().toString(),"m+":(a.getMonth()+1).toString(),"d+":a.getDate().toString(),"h+":a.getHours().toString(),"M+":a.getMinutes().toString(),"s+":a.getSeconds().toString()};for(let r in i)l=new RegExp("("+r+")").exec(t),l&&(t=t.replace(l[1],1==l[1].length?i[r]:i[r].padStart(l[1].length,"0")));return t}function Nt(e,t=!0){if((e=e.toLowerCase())&&/^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/.test(e)){if(4===e.length){let t="#";for(let l=1;l<4;l+=1)t+=e.slice(l,l+1).concat(e.slice(l,l+1));e=t}let l=[];for(let t=1;t<7;t+=2)l.push(parseInt("0x"+e.slice(t,t+2)));return t?`rgb(${l[0]},${l[1]},${l[2]})`:l}if(/^(rgb|RGB)/.test(e)){return e.replace(/(?:\(|\)|rgb|RGB)*/g,"").split(",").map((e=>Number(e)))}return e}function yt(e){let t=e;if(/^(rgb|RGB)/.test(t)){let e=t.replace(/(?:\(|\)|rgb|RGB)*/g,"").split(","),l="#";for(let t=0;t=e)return String(l);let a=e-l.length,i=Math.ceil(a/t.length);for(;i>>=1;)t+=t,1===i&&(t+=t);return t.slice(0,a)+l});const xt={colorGradient:function(e="rgb(0, 0, 0)",t="rgb(255, 255, 255)",l=10){let a=Nt(e,!1),i=a[0],r=a[1],n=a[2],o=Nt(t,!1),c=(o[0]-i)/l,s=(o[1]-r)/l,d=(o[2]-n)/l,m=[];for(let u=0;u=0))if(t.constructor===Array)switch(l){case"indices":for(let l=0;l{i.push(r+"[]="+e)}));break;case"repeat":t.forEach((e=>{i.push(r+"="+e)}));break;case"comma":let e="";t.forEach((t=>{e+=(e?",":"")+t})),i.push(r+"="+e)}else i.push(r+"="+t)}return i.length?a+i.join("&"):""},route:ht,timeFormat:ft,date:ft,timeFrom:function(e=null,t="yyyy-mm-dd"){e||(e=Number(new Date)),10==e.toString().length&&(e*=1e3);let l=+new Date(Number(e)),a=(Number(new Date)-l)/1e3,i="";switch(!0){case a<300:i="刚刚";break;case a>=300&&a<3600:i=parseInt(a/60)+"分钟前";break;case a>=3600&&a<86400:i=parseInt(a/3600)+"小时前";break;case a>=86400&&a<2592e3:i=parseInt(a/86400)+"天前";break;default:i=!1===t?a>=2592e3&&a<31536e3?parseInt(a/2592e3)+"个月前":parseInt(a/31536e3)+"年前":ft(l,t)}return i},colorGradient:xt.colorGradient,colorToRgba:xt.colorToRgba,guid:function(e=32,t=!0,l=null){let a="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".split(""),i=[];if(l=l||a.length,e)for(let r=0;rMath.random()-.5))},wranning:function(e){},get:wt.get,post:wt.post,put:wt.put,delete:wt.delete,hexToRgb:xt.hexToRgb,rgbToHex:xt.rgbToHex,test:gt,random:function(e,t){if(e>=0&&t>0&&t>=e){let l=t-e+1;return Math.floor(Math.random()*l+e)}return 0},deepClone:st,deepMerge:dt,getParent:function(e,t){let l=this.$parent;for(;l;){if(l.$options.name===e){let e={};if(Array.isArray(t))t.map((t=>{e[t]=l[t]?l[t]:""}));else for(let a in t)Array.isArray(t[a])?t[a].length?e[a]=t[a]:e[a]=l[a]:t[a].constructor===Object?Object.keys(t[a]).length?e[a]=t[a]:e[a]=l[a]:e[a]=t[a]||!1===t[a]?t[a]:l[a];return e}l=l.$parent}return{}},$parent:function(e){let t=this.$parent;for(;t;){if(!t.$options||t.$options.name===e)return t;t=t.$parent}return!1},addUnit:function(e="auto",t="rpx"){return e=String(e),gt.number(e)?`${e}${t}`:e},trim:function(e,t="both"){return"both"==t?e.replace(/^\s+|\s+$/g,""):"left"==t?e.replace(/^\s*/,""):"right"==t?e.replace(/(\s*$)/g,""):"all"==t?e.replace(/\s+/g,""):e},type:["primary","success","error","warning","info"],http:wt,toast:function(e,t=1500){uni.showToast({title:e,icon:"none",duration:t})},config:Dt,zIndex:{toast:10090,noNetwork:10080,popup:10075,mask:10070,navbar:980,topTips:975,sticky:970,indexListSticky:965},debounce:function(e,t=500,l=!1){if(null!==Et&&clearTimeout(Et),l){var a=!Et;Et=setTimeout((function(){Et=null}),t),a&&"function"==typeof e&&e()}else Et=setTimeout((function(){"function"==typeof e&&e()}),t)},throttle:function(e,t=500,l=!0,a="default"){Vt[a]||(Vt[a]=null),l?bt[a]||(bt[a]=!0,"function"==typeof e&&e(),Vt[a]=setTimeout((()=>{bt[a]=!1}),t)):bt[a]||(bt[a]=!0,Vt[a]=setTimeout((()=>{bt[a]=!1,"function"==typeof e&&e()}),t))},addStyle:function(e,t="object"){if(gt.empty(e)||"object"==typeof e&&"object"===t||"string"===t&&"string"==typeof e)return e;if("object"===t){const t=(e=kt(e)).split(";"),l={};for(let e=0;e{e.mixin(ct),e.config.globalProperties.$u=Ct}},Bt={__name:"donghua",props:{links:{type:Array,default:()=>[]},width:{type:String,default:"65rpx"},height:{type:String,default:"65rpx"},objectFit:{type:String,default:"aspectFill"},defaultImage:{type:String,default:""},interval:{type:Number,default:80},playing:{type:Boolean,default:!1},showButton:{type:Boolean,default:!1},loop:{type:Boolean,default:!1}},emits:["update:playing"],setup(t,{emit:l}){const a=t,i=e.ref(0),r=e.ref(!1),n=e.ref(!1);let o=null;const c=()=>{r.value=!1,clearInterval(o)};return e.watch((()=>a.playing),(e=>{i.value=0,e?r.value||(r.value=!0,o=setInterval((()=>{a.loop?(i.value=(i.value+1)%a.links.length,n.value=!1):i.valuei.value=0),50))})),e.watch((()=>a.links),(()=>{i.value=0,n.value=!1,r.value&&c()}),{deep:!0}),e.onUnmounted((()=>{c()})),(l,a)=>(e.openBlock(),e.createElementBlock("view",null,[e.createElementVNode("image",{src:n.value?t.defaultImage:t.links[i.value],style:e.normalizeStyle({width:t.width,height:t.height}),mode:t.objectFit,onError:a[0]||(a[0]=e=>n.value=!0),onLoad:a[1]||(a[1]=e=>n.value=!1)},null,44,["src","mode"]),t.showButton?(e.openBlock(),e.createElementBlock("button",{key:0,onClick:a[2]||(a[2]=e=>l.$emit("update:playing",!t.playing))},e.toDisplayString(t.playing?"停止播放":"开始播放"),1)):e.createCommentVNode("",!0)]))}},zt=s(e.defineComponent({__name:"arrowkeys",props:{movebottom:{type:Number,default:30},moveleft:{type:Number,default:10},leftbuttonname:{type:String,default:"返回"},rightbuttonname:{type:String,default:"确定"}},emits:["movecard"],setup(t,{emit:l}){const a=l;let i=null,r=null,n=!1;const o=e.ref(-1);let c=null;function s(){i&&(clearTimeout(i),i=null)}function d(){r&&(clearTimeout(r),r=null),n=!1,c=null}function m(e){d(),s(),o.value=e,a("movecard",e),i=setTimeout((()=>{o.value=-1,i=null}),500)}function u(e){s(),d(),o.value=e,a("movecard",e),c=e,n=!0,r=setTimeout((function e(){n&&null!==c&&(r=setTimeout(e,500))}),500)}function v(){n&&(d(),s(),i=setTimeout((()=>{o.value=-1,i=null}),500))}return e.onBeforeUnmount((()=>{s(),d()})),(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"move-circle",style:e.normalizeStyle({bottom:`${t.movebottom}rpx`,left:`${t.moveleft}rpx`})},[e.createElementVNode("view",{class:e.normalizeClass(5===o.value?"click-box-target":"click-box"),onClick:a[0]||(a[0]=e=>m(5)),onLongpress:a[1]||(a[1]=()=>u(5)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${5===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("span",{style:{"z-index":"1","font-size":"30rpx"},class:e.normalizeClass(5===o.value?"grad-text":"")},e.toDisplayString(t.leftbuttonname),3)],34),e.createElementVNode("view",{class:e.normalizeClass(0===o.value?"click-box-target":"click-box"),onClick:a[2]||(a[2]=e=>m(0)),onLongpress:a[3]||(a[3]=()=>u(0)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${0===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("image",{src:`/static/index/newruler/fangxiang${0===o.value?"target":""}.png`,class:"image-photo"},null,8,["src"])],34),e.createElementVNode("view",{class:e.normalizeClass(4===o.value?"click-box-target":"click-box"),onClick:a[4]||(a[4]=e=>m(4)),onLongpress:a[5]||(a[5]=()=>u(4)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${4===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("span",{style:{"z-index":"1","font-size":"30rpx"},class:e.normalizeClass(4===o.value?"grad-text":"")},e.toDisplayString(t.rightbuttonname),3)],34),e.createElementVNode("view",{class:e.normalizeClass(3===o.value?"click-box-target":"click-box"),onClick:a[6]||(a[6]=e=>m(3)),onLongpress:a[7]||(a[7]=()=>u(3)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${3===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("image",{style:{transform:"rotate(270deg)","transform-origin":"center"},src:`/static/index/newruler/fangxiang${3===o.value?"target":""}.png`,class:"image-photo"},null,8,["src"])],34),e.createElementVNode("view",{class:e.normalizeClass(2===o.value?"click-box-target":"click-box"),onClick:a[8]||(a[8]=e=>m(2)),onLongpress:a[9]||(a[9]=()=>u(2)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${2===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("image",{style:{transform:"rotate(180deg)","transform-origin":"center"},src:`/static/index/newruler/fangxiang${2===o.value?"target":""}.png`,class:"image-photo"},null,8,["src"])],34),e.createElementVNode("view",{class:e.normalizeClass(1===o.value?"click-box-target":"click-box"),onClick:a[10]||(a[10]=e=>m(1)),onLongpress:a[11]||(a[11]=()=>u(1)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${1===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("image",{style:{transform:"rotate(90deg)","transform-origin":"center"},src:`/static/index/newruler/fangxiang${1===o.value?"target":""}.png`,class:"image-photo"},null,8,["src"])],34)],4))}}),[["__scopeId","data-v-4057d511"]]);const{app:_t,Vuex:It,Pinia:Ut}=function(){const t=e.createVueApp(ot);return t.use(St),t.component("donghua",Bt),t.component("arrowkeys",zt),{app:t}}();uni.Vuex=It,uni.Pinia=Ut,_t.provide("__globalStyles",__uniConfig.styles),_t._component.mpType="app",_t._component.render=()=>{},_t.mount("#app")}(Vue);
diff --git a/unpackage/dist/build/app-plus/manifest.json b/unpackage/dist/build/app-plus/manifest.json
index 90020d0..f35ecd4 100644
--- a/unpackage/dist/build/app-plus/manifest.json
+++ b/unpackage/dist/build/app-plus/manifest.json
@@ -7,8 +7,8 @@
"id": "__UNI__FB2D473",
"name": "护理单元",
"version": {
- "name": "1.6.0",
- "code": 160
+ "name": "1.6.1",
+ "code": 161
},
"description": "护理单元",
"developer": {
diff --git a/unpackage/dist/build/app-plus/pages/Initialization/index.css b/unpackage/dist/build/app-plus/pages/Initialization/index.css
index a01d410..15b61e7 100644
--- a/unpackage/dist/build/app-plus/pages/Initialization/index.css
+++ b/unpackage/dist/build/app-plus/pages/Initialization/index.css
@@ -1 +1 @@
-.index-content-other[data-v-01c2b33c]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-down[data-v-01c2b33c]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.index-content-right[data-v-01c2b33c]{height:calc(100% - .9375rem);width:100%;display:flex;flex-direction:column;position:relative}.big-ball[data-v-01c2b33c]{width:6.25rem;height:6.25rem;position:absolute;top:50%;left:-1.71875rem;transform:translateY(-50%);border-radius:50%;background-color:#dbe4f6}.big-ball .ball[data-v-01c2b33c]{width:4.6875rem;height:4.6875rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border-radius:50%;background-color:#cfddf1}.tab[data-v-01c2b33c]{width:6.25rem;height:3.75rem;font-size:1rem;display:flex;justify-content:center;align-items:center;position:relative}.tab .tab-heng[data-v-01c2b33c]{position:absolute;left:50%;bottom:1.09375rem;transform:translate(-50%);width:1.5625rem;height:.375rem;border-radius:.3125rem;background-color:#00b4ff}.scroll-box[data-v-01c2b33c]{display:flex;flex-wrap:wrap}.scroll-box .card[data-v-01c2b33c]{margin-right:.9375rem;margin-bottom:.9375rem;border:.0625rem solid #fff;background-image:url(../../static/index/mountain.png);background-color:rgba(255,255,255,.6);background-position:60% 50%;width:32.65625rem;height:20.3125rem;border-radius:1.5625rem 1.25rem 1.5625rem 1.5625rem;display:flex}.scroll-box .card .card-left[data-v-01c2b33c]{height:100%;width:68%;position:relative}.scroll-box .card .card-left .card-left-title[data-v-01c2b33c]{height:23%;width:100%;padding:0 .625rem;display:flex;justify-content:space-between;align-items:center}.scroll-box .card .card-left .card-left-title .left-view[data-v-01c2b33c]{display:flex;margin-top:.625rem;position:relative;width:100%}.scroll-box .card .card-left .card-left-title .left-view .left-view-img[data-v-01c2b33c]{width:2.65625rem;height:2.65625rem}.scroll-box .card .card-right[data-v-01c2b33c]{height:100%;width:32%;background-color:rgba(244,235,249,.3);border-top-right-radius:1.1875rem;border-bottom-right-radius:1.1875rem;position:relative}.top-font-line[data-v-01c2b33c]{display:flex;align-items:center;font-size:.71875rem}.top-font-line .line-weight[data-v-01c2b33c]{font-size:1.09375rem;font-weight:600;margin-left:.625rem}.top-font-line .line-margin[data-v-01c2b33c]{margin-left:.625rem;margin-right:.625rem}.top-font-line .font-gray[data-v-01c2b33c]{margin-left:.625rem;font-size:.875rem;color:#555}.blue-button[data-v-01c2b33c]{position:absolute;right:.625rem;top:-.09375rem;width:4.0625rem;height:1.5625rem;color:#fff;font-size:.78125rem;background:linear-gradient(to bottom,#00c9ff,#0076ff);border-radius:.46875rem;display:flex;justify-content:center;align-items:center;margin:.625rem .3125rem 0 0}.font-gray-right[data-v-01c2b33c]{margin-top:.3125rem;font-size:.78125rem;color:#858585;margin-right:.25rem}.right-spec[data-v-01c2b33c]{margin-top:2.125rem;font-weight:600;margin-right:.3125rem;width:4.6875rem}.video-img[data-v-01c2b33c]{margin-left:3.4375rem;width:17.8125rem;height:12.5rem;border-radius:.9375rem}.video-bottom[data-v-01c2b33c]{width:100%;overflow:hidden;height:2.65625rem;display:flex;align-items:center;padding-left:3.4375rem;color:#858585;font-size:.75rem;position:relative}.video-bottom .font-bottom-weight[data-v-01c2b33c]{font-size:.875rem;font-weight:600;color:#000}.video-bottom .bottom-shu[data-v-01c2b33c]{margin:0 .46875rem}.bottom-balls[data-v-01c2b33c]{position:absolute;bottom:3.75rem;left:38%;transform:translate(-35%);z-index:999;display:flex}.bottom-balls .one-ball-father[data-v-01c2b33c]{width:3.75rem;height:1.5625rem;display:flex;justify-content:center;align-items:center;border:.0625rem solid #fff;margin:0 .15625rem;color:#fff;font-size:.78125rem;border-radius:.3125rem}.right-balls[data-v-01c2b33c]{position:absolute;left:.78125rem;top:4.375rem;padding-top:.3125rem;z-index:999}.right-balls .blue-ball[data-v-01c2b33c]{width:1.09375rem;height:1.09375rem}.right-balls .blue-ball-father[data-v-01c2b33c]{width:2.1875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;background-color:#dbe8f9;border-radius:.78125rem;margin-right:.625rem;margin-bottom:.5625rem;position:relative;overflow:hidden}.right-balls .blue-ball-father-target[data-v-01c2b33c]{width:2.1875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;background-color:#dbe8f9;border-radius:.78125rem;margin-right:.625rem;margin-bottom:.5625rem;position:relative;overflow:auto}.right-title[data-v-01c2b33c]{position:absolute;right:-1.5625rem;top:.3125rem;width:7.8125rem;height:3.75rem;z-index:1}.right-other[data-v-01c2b33c]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);display:flex;align-items:center;justify-content:center;border-top-left-radius:.9375rem;border-bottom-left-radius:.9375rem;width:4.6875rem;height:1.875rem}.right-other .other-class[data-v-01c2b33c]{width:1.09375rem;height:1.09375rem;margin-right:.15625rem;margin-left:.15625rem}.right-other .other-font[data-v-01c2b33c]{color:#fff}.time[data-v-01c2b33c]{display:flex;margin-top:3.75rem;align-items:center;justify-content:center}.time .time-left[data-v-01c2b33c]{background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent;font-size:1.40625rem;font-weight:600}.time-img[data-v-01c2b33c]{width:7.5rem;height:5.625rem;margin-bottom:.46875rem}.time-weight[data-v-01c2b33c]{font-weight:600;font-size:1rem;margin-top:.78125rem}.time-small[data-v-01c2b33c]{padding:.3125rem .9375rem;font-size:.625rem;color:#666}.time-people-two[data-v-01c2b33c]{display:flex;margin-left:.625rem;align-items:center;margin-bottom:.15625rem}.time-people-two .time-people-img[data-v-01c2b33c]{width:1.25rem;height:1.25rem;margin-right:.3125rem;margin-left:.15625rem}.time-people-two .time-people-font[data-v-01c2b33c]{font-size:.84375rem}.right-time[data-v-01c2b33c]{position:absolute;top:40%;right:0;transform:translateY(-40%)}.right-time .right-laba[data-v-01c2b33c]{width:1.875rem;height:1.875rem;margin-right:.15625rem;border-top-left-radius:.9375rem;border-bottom-left-radius:.9375rem;background-color:#fff;display:flex;justify-content:center;align-items:center;margin-bottom:.3125rem}.fail-img[data-v-01c2b33c]{width:7.8125rem;height:7.8125rem}.fail-img-spec[data-v-01c2b33c]{width:12.5rem;height:10.9375rem;margin-left:-2.1875rem}.fail-text[data-v-01c2b33c]{margin-top:.46875rem;color:#333}.fail-text-spec[data-v-01c2b33c]{margin-top:-3.125rem;color:#333}.kufang-img[data-v-01c2b33c]{width:1.34375rem;height:1.34375rem}.tab-heng[data-v-01c2b33c]{position:absolute;left:50%;bottom:-.46875rem;transform:translate(-50%);width:1.25rem;height:.3125rem;border-radius:.3125rem}.right-title-father[data-v-01c2b33c]{position:absolute;right:.625rem;height:100%;top:0;display:flex;align-items:center}.split-line-white-sec[data-v-01c2b33c]{position:absolute;left:0;top:50%;transform:translateY(-50%);width:.0625rem;height:18.75rem;z-index:999;background:linear-gradient(to top,rgba(0,0,0,0),#fff,rgba(0,0,0,0))}.topright-ball[data-v-01c2b33c]{position:absolute;top:5.3125rem;right:1.5625rem;width:2.34375rem;height:2.34375rem;border-radius:50%;background-color:rgba(255,255,255,.3);z-index:999;display:flex;justify-content:center;align-items:center}.topright-ball .ball-righttop[data-v-01c2b33c]{width:1.40625rem;height:1.40625rem;margin-top:-.3125rem}.small-button[data-v-01c2b33c]{width:70%;height:2.1875rem;display:flex;justify-content:space-between}.small-button .gray-ball[data-v-01c2b33c]{display:flex;justify-content:center;align-items:center;background-color:#d8e1f2;width:1.875rem;height:1.875rem;border-radius:50%}.laba-img[data-v-01c2b33c]{width:.9375rem;height:.9375rem}.time-right[data-v-01c2b33c]{position:absolute;right:.3125rem;top:.15625rem;width:2.8125rem;height:1.09375rem;display:flex;justify-content:center;align-items:center;background-color:#ffd5ac;color:#ff5834;border:.0625rem solid #FF5834;margin-left:.15625rem;border-radius:.3125rem;font-size:.625rem}.neuro-wrapper[data-v-1c53b005]{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;z-index:999;opacity:0;pointer-events:none;transition:opacity .3s ease}.neuro-wrapper.is-active[data-v-1c53b005]{opacity:1;pointer-events:auto}.neuro-mask[data-v-1c53b005]{position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.3)}.neuro-box[data-v-1c53b005]{position:relative;width:18.75rem;height:14.0625rem;border-radius:.9375rem;background-color:#fff;display:flex;flex-direction:column;align-items:center;z-index:1;padding:0 10%}.button[data-v-1c53b005]{width:47%;background-color:#ddf0ff;display:flex;justify-content:center;align-items:center;color:#007cff;border:.03125rem solid #007CFF;font-size:.78125rem;border-radius:.9375rem}.title[data-v-1c53b005]{margin-top:2.1875rem}.card-font[data-v-1c53b005]{margin-top:2.1875rem;width:18.75rem;justify-content:center;display:flex}.button-white[data-v-1c53b005]{width:47%;border:.0625rem solid #c3cacd;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:.78125rem;border-radius:.9375rem}.button-father[data-v-1c53b005]{position:absolute;bottom:1.875rem;left:50%;transform:translate(-50%);width:100%;height:2.1875rem;display:flex;justify-content:space-between;padding:0 1.5625rem}.neuro-wrapper[data-v-8de7e110]{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;z-index:999;opacity:0;pointer-events:none;transition:opacity .3s ease}.neuro-wrapper.is-active[data-v-8de7e110]{opacity:1;pointer-events:auto}.neuro-mask[data-v-8de7e110]{position:absolute;top:0;right:0;bottom:0;left:0;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4)}.neuro-box[data-v-8de7e110]{position:relative;width:23.4375rem;height:21.875rem;border-radius:.9375rem;background-color:#fff;display:flex;flex-direction:column;align-items:center;z-index:1;padding:0 10%}.button[data-v-8de7e110]{width:100%;display:flex;justify-content:center;align-items:center;color:#fff;font-size:.78125rem;border-radius:1.09375rem;margin-left:.625rem;color:#007cff;font-size:.9375rem;background-color:#ddf0ff;border:.03125rem solid #007CFF}.title[data-v-8de7e110]{margin-top:2.1875rem;font-weight:600;font-size:1.09375rem}.card-font[data-v-8de7e110]{margin-top:2.1875rem;width:18.75rem;justify-content:center;display:flex}.button-white[data-v-8de7e110]{width:47%;border:.0625rem solid #c3cacd;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:.78125rem;border-radius:.9375rem}.button-father[data-v-8de7e110]{position:absolute;bottom:2.1875rem;left:50%;transform:translate(-50%);width:100%;height:2.5rem;display:flex;justify-content:center;padding:0 3.4375rem}.password-father[data-v-8de7e110]{margin-top:.9375rem;width:23.4375rem;padding:0 3.75rem;height:2.5rem}.password-father .password[data-v-8de7e110]{width:100%;background-color:rgba(239,240,244,.5);border-radius:.71875rem;height:2.5rem;padding-left:.625rem;font-size:.84375rem}.zy-modal[data-v-cd70e807]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1110;opacity:0;outline:0;text-align:center;transform:scale(1.185);-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:62.5rem;background:rgba(0,0,0,.6);transition:all .3s ease-in-out 0s;pointer-events:none}.zy-modal[data-v-cd70e807]:before{content:"\200b";display:inline-block;height:100%;vertical-align:middle}.zy-modal.show[data-v-cd70e807]{opacity:1;transition-duration:.3s;transform:scale(1);overflow-x:hidden;overflow-y:auto;pointer-events:auto}.zy-dialog[data-v-cd70e807]{position:relative;display:inline-block;vertical-align:middle;margin-left:auto;margin-right:auto;width:21.25rem;max-width:100%;background-color:#f8f8f8;border-radius:.3125rem;overflow:hidden}.zy-modal.bottom-modal[data-v-cd70e807]:before{vertical-align:bottom}.zy-modal.bottom-modal .zy-dialog[data-v-cd70e807]{width:100%;border-radius:0}.zy-modal.bottom-modal[data-v-cd70e807]{margin-bottom:-31.25rem}.zy-modal.bottom-modal.show[data-v-cd70e807]{margin-bottom:0}.zy-modal.drawer-modal[data-v-cd70e807]{transform:scale(1);display:flex}.zy-modal.drawer-modal .zy-dialog[data-v-cd70e807]{height:100%;min-width:6.25rem;border-radius:0;margin:initial;transition-duration:.3s}.zy-modal.drawer-modal.justify-start .zy-dialog[data-v-cd70e807]{transform:translate(-100%)}.zy-modal.drawer-modal.justify-end .zy-dialog[data-v-cd70e807]{transform:translate(100%)}.zy-modal.drawer-modal.show .zy-dialog[data-v-cd70e807]{transform:translate(0)}.zy-modal .zy-dialog>.zy-bar:first-child .action[data-v-cd70e807]{min-width:3.125rem;margin-right:0;min-height:3.125rem}.zy-progress[data-v-cd70e807]{overflow:hidden;height:.875rem;background-color:#ebeef5;display:inline-flex;align-items:center;width:100%}.zy-progress+uni-view[data-v-cd70e807],.zy-progress+uni-text[data-v-cd70e807]{line-height:1}.zy-progress.xs[data-v-cd70e807]{height:.3125rem}.zy-progress.sm[data-v-cd70e807]{height:.625rem}.zy-progress uni-view[data-v-cd70e807]{width:0;height:100%;align-items:center;display:flex;justify-items:flex-end;justify-content:space-around;font-size:.625rem;color:#fff;transition:width .6s ease}.zy-progress uni-text[data-v-cd70e807]{align-items:center;display:flex;font-size:.625rem;color:#333;text-indent:.3125rem}.zy-progress.text-progress[data-v-cd70e807]{padding-right:1.875rem}.zy-progress.striped uni-view[data-v-cd70e807]{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:2.25rem 2.25rem}.zy-progress.active uni-view[data-v-cd70e807]{animation:progress-stripes-cd70e807 2s linear infinite}@keyframes progress-stripes-cd70e807{0%{background-position:2.25rem 0}to{background-position:0 0}}.zy-btn[data-v-cd70e807]{height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.zy-btn[data-v-cd70e807]:after{display:none}.zy-btn[data-v-cd70e807]:not([class*=bg-]){background-color:#f0f0f0}.zy-btn[class*=line][data-v-cd70e807]{background-color:transparent}.zy-btn[class*=line][data-v-cd70e807]:after{content:" ";display:block;width:200%;height:200%;position:absolute;top:0;left:0;border:.03125rem solid currentColor;transform:scale(.5);transform-origin:0 0;box-sizing:border-box;border-radius:.375rem;z-index:1;pointer-events:none}.zy-btn.round[class*=line][data-v-cd70e807]:after{border-radius:31.25rem}.zy-btn[class*=lines][data-v-cd70e807]:after{border:.1875rem solid currentColor}.zy-btn[class*=bg-][data-v-cd70e807]:after{display:none}.zy-btn.sm[data-v-cd70e807]{padding:0 .625rem;font-size:.625rem;height:1.5rem}.zy-btn.lg[data-v-cd70e807]{padding:0 1.25rem;font-size:1rem;height:2.5rem}.zy-btn.cuIcon.sm[data-v-cd70e807]{width:1.5rem;height:1.5rem}.zy-btn.cuIcon[data-v-cd70e807]{width:2rem;height:2rem;border-radius:15.625rem;padding:0}uni-button.cuIcon.lg[data-v-cd70e807]{width:2.5rem;height:2.5rem}.zy-btn.shadow-blur[data-v-cd70e807]:before{top:.125rem;left:.125rem;filter:blur(.1875rem);opacity:.6}.zy-btn.button-hover[data-v-cd70e807]{transform:translate(.03125rem,.03125rem)}.block[data-v-cd70e807]{display:block}.zy-btn.block[data-v-cd70e807]{display:flex}.zy-btn[disabled][data-v-cd70e807]{opacity:.6;color:#fff}.margin-0[data-v-cd70e807]{margin:0}.margin-xs[data-v-cd70e807]{margin:.3125rem}.margin-sm[data-v-cd70e807]{margin:.625rem}.margin[data-v-cd70e807]{margin:.9375rem}.margin-lg[data-v-cd70e807]{margin:1.25rem}.margin-xl[data-v-cd70e807]{margin:1.5625rem}.margin-top-xs[data-v-cd70e807]{margin-top:.3125rem}.margin-top-sm[data-v-cd70e807]{margin-top:.625rem}.margin-top[data-v-cd70e807]{margin-top:.9375rem}.margin-top-lg[data-v-cd70e807]{margin-top:1.25rem}.margin-top-xl[data-v-cd70e807]{margin-top:1.5625rem}.margin-right-xs[data-v-cd70e807]{margin-right:.3125rem}.margin-right-sm[data-v-cd70e807]{margin-right:.625rem}.margin-right[data-v-cd70e807]{margin-right:.9375rem}.margin-right-lg[data-v-cd70e807]{margin-right:1.25rem}.margin-right-xl[data-v-cd70e807]{margin-right:1.5625rem}.margin-bottom-xs[data-v-cd70e807]{margin-bottom:.3125rem}.margin-bottom-sm[data-v-cd70e807]{margin-bottom:.625rem}.margin-bottom[data-v-cd70e807]{margin-bottom:.9375rem}.margin-bottom-lg[data-v-cd70e807]{margin-bottom:1.25rem}.margin-bottom-xl[data-v-cd70e807]{margin-bottom:1.5625rem}.margin-left-xs[data-v-cd70e807]{margin-left:.3125rem}.margin-left-sm[data-v-cd70e807]{margin-left:.625rem}.margin-left[data-v-cd70e807]{margin-left:.9375rem}.margin-left-lg[data-v-cd70e807]{margin-left:1.25rem}.margin-left-xl[data-v-cd70e807]{margin-left:1.5625rem}.margin-lr-xs[data-v-cd70e807]{margin-left:.3125rem;margin-right:.3125rem}.margin-lr-sm[data-v-cd70e807]{margin-left:.625rem;margin-right:.625rem}.margin-lr[data-v-cd70e807]{margin-left:.9375rem;margin-right:.9375rem}.margin-lr-lg[data-v-cd70e807]{margin-left:1.25rem;margin-right:1.25rem}.margin-lr-xl[data-v-cd70e807]{margin-left:1.5625rem;margin-right:1.5625rem}.margin-tb-xs[data-v-cd70e807]{margin-top:.3125rem;margin-bottom:.3125rem}.margin-tb-sm[data-v-cd70e807]{margin-top:.625rem;margin-bottom:.625rem}.margin-tb[data-v-cd70e807]{margin-top:.9375rem;margin-bottom:.9375rem}.margin-tb-lg[data-v-cd70e807]{margin-top:1.25rem;margin-bottom:1.25rem}.margin-tb-xl[data-v-cd70e807]{margin-top:1.5625rem;margin-bottom:1.5625rem}.padding-0[data-v-cd70e807]{padding:0}.padding-xs[data-v-cd70e807]{padding:.3125rem}.padding-sm[data-v-cd70e807]{padding:.625rem}.padding[data-v-cd70e807]{padding:.9375rem}.padding-lg[data-v-cd70e807]{padding:1.25rem}.padding-xl[data-v-cd70e807]{padding:1.5625rem}.padding-top-xs[data-v-cd70e807]{padding-top:.3125rem}.padding-top-sm[data-v-cd70e807]{padding-top:.625rem}.padding-top[data-v-cd70e807]{padding-top:.9375rem}.padding-top-lg[data-v-cd70e807]{padding-top:1.25rem}.padding-top-xl[data-v-cd70e807]{padding-top:1.5625rem}.padding-right-xs[data-v-cd70e807]{padding-right:.3125rem}.padding-right-sm[data-v-cd70e807]{padding-right:.625rem}.padding-right[data-v-cd70e807]{padding-right:.9375rem}.padding-right-lg[data-v-cd70e807]{padding-right:1.25rem}.padding-right-xl[data-v-cd70e807]{padding-right:1.5625rem}.padding-bottom-xs[data-v-cd70e807]{padding-bottom:.3125rem}.padding-bottom-sm[data-v-cd70e807]{padding-bottom:.625rem}.padding-bottom[data-v-cd70e807]{padding-bottom:.9375rem}.padding-bottom-lg[data-v-cd70e807]{padding-bottom:1.25rem}.padding-bottom-xl[data-v-cd70e807]{padding-bottom:1.5625rem}.padding-left-xs[data-v-cd70e807]{padding-left:.3125rem}.padding-left-sm[data-v-cd70e807]{padding-left:.625rem}.padding-left[data-v-cd70e807]{padding-left:.9375rem}.padding-left-lg[data-v-cd70e807]{padding-left:1.25rem}.padding-left-xl[data-v-cd70e807]{padding-left:1.5625rem}.padding-lr-xs[data-v-cd70e807]{padding-left:.3125rem;padding-right:.3125rem}.padding-lr-sm[data-v-cd70e807]{padding-left:.625rem;padding-right:.625rem}.padding-lr[data-v-cd70e807]{padding-left:.9375rem;padding-right:.9375rem}.padding-lr-lg[data-v-cd70e807]{padding-left:1.25rem;padding-right:1.25rem}.padding-lr-xl[data-v-cd70e807]{padding-left:1.5625rem;padding-right:1.5625rem}.padding-tb-xs[data-v-cd70e807]{padding-top:.3125rem;padding-bottom:.3125rem}.padding-tb-sm[data-v-cd70e807]{padding-top:.625rem;padding-bottom:.625rem}.padding-tb[data-v-cd70e807]{padding-top:.9375rem;padding-bottom:.9375rem}.padding-tb-lg[data-v-cd70e807]{padding-top:1.25rem;padding-bottom:1.25rem}.padding-tb-xl[data-v-cd70e807]{padding-top:1.5625rem;padding-bottom:1.5625rem}.zy-bar[data-v-cd70e807]{display:flex;position:relative;align-items:center;min-height:3.125rem;justify-content:space-between}.zy-bar .action[data-v-cd70e807]{display:flex;align-items:center;height:100%;justify-content:center;max-width:100%}.zy-bar .action.border-title[data-v-cd70e807]{position:relative;top:-.3125rem}.zy-bar .action.border-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;bottom:-.5rem;min-width:2rem;height:.1875rem;left:0}.zy-bar .action.sub-title[data-v-cd70e807]{position:relative;top:-.2rem}.zy-bar .action.sub-title uni-text[data-v-cd70e807]{position:relative;z-index:1}.zy-bar .action.sub-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.2rem;border-radius:.1875rem;width:100%;height:.6rem;left:.6rem;opacity:.3;z-index:0}.zy-bar .action.sub-title uni-text[class*=text-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.7rem;left:.5rem;opacity:.2;z-index:0;text-align:right;font-weight:900;font-size:1.125rem}.zy-bar.justify-center .action.border-title uni-text[data-v-cd70e807]:last-child,.zy-bar.justify-center .action.sub-title uni-text[data-v-cd70e807]:last-child{left:0;right:0;margin:auto;text-align:center}.zy-bar .action[data-v-cd70e807]:first-child{margin-left:.9375rem;font-size:.9375rem}.zy-bar .action uni-text.text-cut[data-v-cd70e807]{text-align:left;width:100%}.zy-bar .zy-avatar[data-v-cd70e807]:first-child{margin-left:.625rem}.zy-bar .action:first-child>uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:-.3em;margin-right:.3em}.zy-bar .action[data-v-cd70e807]:last-child{margin-right:.9375rem}.zy-bar .action>uni-text[class*=cuIcon-][data-v-cd70e807],.zy-bar .action>uni-view[class*=cuIcon-][data-v-cd70e807]{font-size:1.125rem}.zy-bar .action>uni-text[class*=cuIcon-]+uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:.5em}.zy-bar .content[data-v-cd70e807]{position:absolute;text-align:center;width:calc(100% - 10.625rem);left:0;right:0;bottom:0;top:0;margin:auto;height:1.875rem;font-size:1rem;line-height:1.875rem;cursor:none;pointer-events:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.zy-bar.ios .content[data-v-cd70e807]{bottom:7px;height:30px;font-size:1rem;line-height:30px}.zy-bar.btn-group[data-v-cd70e807]{justify-content:space-around}.zy-bar.btn-group uni-button[data-v-cd70e807]{padding:.625rem 1rem}.zy-bar.btn-group uni-button[data-v-cd70e807]{flex:1;margin:0 .625rem;max-width:50%}.zy-bar .search-form[data-v-cd70e807]{background-color:#f5f5f5;line-height:2rem;height:2rem;font-size:.75rem;color:#333;flex:1;display:flex;align-items:center;margin:0 .9375rem}.zy-bar .search-form+.action[data-v-cd70e807]{margin-right:.9375rem}.zy-bar .search-form uni-input[data-v-cd70e807]{flex:1;padding-right:.9375rem;height:2rem;line-height:2rem;font-size:.8125rem;background-color:transparent}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]{margin:0 .5em 0 .8em}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]:before{top:0}.zy-bar.fixed[data-v-cd70e807],.nav.fixed[data-v-cd70e807]{position:fixed;width:100%;top:0;z-index:1024;box-shadow:0 .03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.foot[data-v-cd70e807]{position:fixed;width:100%;bottom:0;z-index:1024;box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar[data-v-cd70e807]{padding:0;height:calc(3.125rem + env(safe-area-inset-bottom)/2);padding-bottom:calc(env(safe-area-inset-bottom)/2)}.zy-tabbar-height[data-v-cd70e807]{min-height:3.125rem;height:calc(3.125rem + env(safe-area-inset-bottom)/2)}.zy-bar.tabbar.shadow[data-v-cd70e807]{box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar .action[data-v-cd70e807]{font-size:.6875rem;position:relative;flex:1;text-align:center;padding:0;display:block;height:auto;line-height:1;margin:0;background-color:inherit;overflow:initial}.zy-bar.tabbar.shop .action[data-v-cd70e807]{width:4.375rem;flex:initial}.zy-bar.tabbar .action.add-action[data-v-cd70e807]{position:relative;z-index:2;padding-top:1.5625rem}.zy-bar.tabbar .action.add-action [class*=cuIcon-][data-v-cd70e807]{position:absolute;width:2.1875rem;z-index:2;height:2.1875rem;border-radius:50%;line-height:2.1875rem;font-size:1.5625rem;top:-1.09375rem;left:0;right:0;margin:auto;padding:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:after{content:"";position:absolute;width:3.125rem;height:3.125rem;top:-1.5625rem;left:0;right:0;margin:auto;box-shadow:0 -.09375rem .25rem rgba(0,0,0,.08);border-radius:1.5625rem;background-color:inherit;z-index:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:before{content:"";position:absolute;width:3.125rem;height:.9375rem;bottom:.9375rem;left:0;right:0;margin:auto;background-color:inherit;z-index:1}.zy-bar.tabbar .btn-group[data-v-cd70e807]{flex:1;display:flex;justify-content:space-around;align-items:center;padding:0 .3125rem}.zy-bar.tabbar uni-button.action[data-v-cd70e807]:after{border:0}.zy-bar.tabbar .action [class*=cuIcon-][data-v-cd70e807]{width:3.125rem;position:relative;display:block;height:auto;margin:0 auto .3125rem;text-align:center;font-size:1.25rem}.zy-bar.tabbar .action .cuIcon-zy-image[data-v-cd70e807]{margin:0 auto}.zy-bar.tabbar .action .cuIcon-zy-image uni-image[data-v-cd70e807]{width:1.5625rem;height:1.5625rem;display:inline-block}.zy-bar.tabbar .submit[data-v-cd70e807]{align-items:center;display:flex;justify-content:center;text-align:center;position:relative;flex:2;align-self:stretch}.zy-bar.tabbar .submit[data-v-cd70e807]:last-child{flex:2.6}.zy-bar.tabbar .submit+.submit[data-v-cd70e807]{flex:2}.zy-bar.tabbar.border .action[data-v-cd70e807]:before{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;transform:scale(.5);transform-origin:0 0;border-right:.03125rem solid rgba(0,0,0,.1);z-index:3}.zy-bar.tabbar.border .action[data-v-cd70e807]:last-child:before{display:none}.zy-bar.input[data-v-cd70e807]{padding-right:.625rem;background-color:#fff}.zy-bar.input uni-input[data-v-cd70e807]{overflow:initial;line-height:2rem;height:2rem;min-height:2rem;flex:1;font-size:.9375rem;margin:0 .625rem}.zy-bar.input .action[data-v-cd70e807]{margin-left:.625rem}.zy-bar.input .action [class*=cuIcon-][data-v-cd70e807]{font-size:1.5rem}.zy-bar.input uni-input+.action[data-v-cd70e807]{margin-right:.625rem;margin-left:0}.zy-bar.input .action:first-child [class*=cuIcon-][data-v-cd70e807]{margin-left:0}.zy-custom[data-v-cd70e807]{display:block;position:relative}.zy-custom .zy-bar .content[data-v-cd70e807]{width:calc(100% - 13.75rem)}.zy-custom .zy-bar .content uni-image[data-v-cd70e807]{height:1.875rem;width:7.5rem}.zy-custom .zy-bar[data-v-cd70e807]{min-height:0px;box-shadow:0 0;z-index:9999}.zy-custom .zy-bar .border-custom[data-v-cd70e807]{position:relative;background:rgba(0,0,0,.15);border-radius:31.25rem;height:30px}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:after{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;border-radius:inherit;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:.03125rem solid #ffffff;opacity:.5}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:before{content:" ";width:.03125rem;height:110%;position:absolute;top:22.5%;left:0;right:0;margin:auto;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;opacity:.6;background-color:#fff}.zy-custom .zy-bar .border-custom uni-text[data-v-cd70e807]{display:block;flex:1;margin:auto!important;text-align:center;font-size:1.0625rem}.flex[data-v-cd70e807]{display:flex}.basis-xs[data-v-cd70e807]{flex-basis:20%}.basis-sm[data-v-cd70e807]{flex-basis:40%}.basis-df[data-v-cd70e807]{flex-basis:50%}.basis-lg[data-v-cd70e807]{flex-basis:60%}.basis-xl[data-v-cd70e807]{flex-basis:80%}.flex-sub[data-v-cd70e807]{flex:1}.flex-twice[data-v-cd70e807]{flex:2}.flex-treble[data-v-cd70e807]{flex:3}.flex-direction[data-v-cd70e807]{flex-direction:column}.flex-wrap[data-v-cd70e807]{flex-wrap:wrap}.align-start[data-v-cd70e807]{align-items:flex-start}.align-end[data-v-cd70e807]{align-items:flex-end}.align-center[data-v-cd70e807]{align-items:center}.self-start[data-v-cd70e807]{align-self:flex-start}.self-center[data-v-cd70e807]{align-self:flex-center}.self-end[data-v-cd70e807]{align-self:flex-end}.self-stretch[data-v-cd70e807]{align-self:stretch}.align-stretch[data-v-cd70e807]{align-items:stretch}.justify-start[data-v-cd70e807]{justify-content:flex-start}.justify-end[data-v-cd70e807]{justify-content:flex-end}.justify-center[data-v-cd70e807]{justify-content:center}.justify-between[data-v-cd70e807]{justify-content:space-between}.justify-around[data-v-cd70e807]{justify-content:space-around}.line-red[data-v-cd70e807]:after,.lines-red[data-v-cd70e807]:after{border-color:#e54d42}.line-orange[data-v-cd70e807]:after,.lines-orange[data-v-cd70e807]:after{border-color:#f37b1d}.line-yellow[data-v-cd70e807]:after,.lines-yellow[data-v-cd70e807]:after{border-color:#fbbd08}.line-olive[data-v-cd70e807]:after,.lines-olive[data-v-cd70e807]:after{border-color:#8dc63f}.line-green[data-v-cd70e807]:after,.lines-green[data-v-cd70e807]:after{border-color:#39b54a}.line-cyan[data-v-cd70e807]:after,.lines-cyan[data-v-cd70e807]:after{border-color:#1cbbb4}.line-blue[data-v-cd70e807]:after,.lines-blue[data-v-cd70e807]:after{border-color:#0081ff}.line-purple[data-v-cd70e807]:after,.lines-purple[data-v-cd70e807]:after{border-color:#6739b6}.line-mauve[data-v-cd70e807]:after,.lines-mauve[data-v-cd70e807]:after{border-color:#9c26b0}.line-pink[data-v-cd70e807]:after,.lines-pink[data-v-cd70e807]:after{border-color:#e03997}.line-brown[data-v-cd70e807]:after,.lines-brown[data-v-cd70e807]:after{border-color:#a5673f}.line-grey[data-v-cd70e807]:after,.lines-grey[data-v-cd70e807]:after{border-color:#8799a3}.line-gray[data-v-cd70e807]:after,.lines-gray[data-v-cd70e807]:after{border-color:#aaa}.line-black[data-v-cd70e807]:after,.lines-black[data-v-cd70e807]:after{border-color:#333}.line-white[data-v-cd70e807]:after,.lines-white[data-v-cd70e807]:after{border-color:#fff}.bg-red[data-v-cd70e807]{background-color:#e54d42;color:#fff}.bg-orange[data-v-cd70e807]{background-color:#f37b1d;color:#fff}.bg-yellow[data-v-cd70e807]{background-color:#fbbd08;color:#333}.bg-olive[data-v-cd70e807]{background-color:#8dc63f;color:#fff}.bg-green[data-v-cd70e807]{background-color:#39b54a;color:#fff}.bg-cyan[data-v-cd70e807]{background-color:#1cbbb4;color:#fff}.bg-blue[data-v-cd70e807]{background-color:#0081ff;color:#fff}.bg-purple[data-v-cd70e807]{background-color:#6739b6;color:#fff}.bg-mauve[data-v-cd70e807]{background-color:#9c26b0;color:#fff}.bg-pink[data-v-cd70e807]{background-color:#e03997;color:#fff}.bg-brown[data-v-cd70e807]{background-color:#a5673f;color:#fff}.bg-grey[data-v-cd70e807]{background-color:#8799a3;color:#fff}.bg-gray[data-v-cd70e807]{background-color:#f0f0f0;color:#333}.bg-black[data-v-cd70e807]{background-color:#333;color:#fff}.bg-white[data-v-cd70e807]{background-color:#fff;color:#666}.bg-shadeTop[data-v-cd70e807]{background-image:linear-gradient(#000,rgba(0,0,0,.01));color:#fff}.bg-shadeBottom[data-v-cd70e807]{background-image:linear-gradient(rgba(0,0,0,.01),#000);color:#fff}.bg-red.light[data-v-cd70e807]{color:#e54d42;background-color:#fadbd9}.bg-orange.light[data-v-cd70e807]{color:#f37b1d;background-color:#fde6d2}.bg-yellow.light[data-v-cd70e807]{color:#fbbd08;background-color:rgba(254,242,206,.824)}.bg-olive.light[data-v-cd70e807]{color:#8dc63f;background-color:#e8f4d9}.bg-green.light[data-v-cd70e807]{color:#39b54a;background-color:#d7f0db}.bg-cyan.light[data-v-cd70e807]{color:#1cbbb4;background-color:#d2f1f0}.bg-blue.light[data-v-cd70e807]{color:#0081ff;background-color:#cce6ff}.bg-purple.light[data-v-cd70e807]{color:#6739b6;background-color:#e1d7f0}.bg-mauve.light[data-v-cd70e807]{color:#9c26b0;background-color:#ebd4ef}.bg-pink.light[data-v-cd70e807]{color:#e03997;background-color:#f9d7ea}.bg-brown.light[data-v-cd70e807]{color:#a5673f;background-color:#ede1d9}.bg-grey.light[data-v-cd70e807]{color:#8799a3;background-color:#e7ebed}.bg-gradual-red[data-v-cd70e807]{background-image:linear-gradient(45deg,#f43f3b,#ec008c);color:#fff}.bg-gradual-orange[data-v-cd70e807]{background-image:linear-gradient(45deg,#ff9700,#ed1c24);color:#fff}.bg-gradual-green[data-v-cd70e807]{background-image:linear-gradient(45deg,#39b54a,#8dc63f);color:#fff}.bg-gradual-purple[data-v-cd70e807]{background-image:linear-gradient(45deg,#9000ff,#5e00ff);color:#fff}.bg-gradual-pink[data-v-cd70e807]{background-image:linear-gradient(45deg,#ec008c,#6739b6);color:#fff}.bg-gradual-blue[data-v-cd70e807]{background-image:linear-gradient(45deg,#0081ff,#1cbbb4);color:#fff}.shadow[class*=-red][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.shadow[class*=-orange][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.shadow[class*=-yellow][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.shadow[class*=-olive][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.shadow[class*=-green][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.shadow[class*=-cyan][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.shadow[class*=-blue][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.shadow[class*=-purple][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.shadow[class*=-mauve][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.shadow[class*=-pink][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.shadow[class*=-brown][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.shadow[class*=-grey][data-v-cd70e807],.shadow[class*=-gray][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.shadow[class*=-black][data-v-cd70e807],.shadow[class*=-white][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.text-shadow[class*=-red][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.text-shadow[class*=-orange][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.text-shadow[class*=-yellow][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.text-shadow[class*=-olive][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.text-shadow[class*=-green][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.text-shadow[class*=-cyan][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.text-shadow[class*=-blue][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.text-shadow[class*=-purple][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.text-shadow[class*=-mauve][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.text-shadow[class*=-pink][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.text-shadow[class*=-brown][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.text-shadow[class*=-grey][data-v-cd70e807],.text-shadow[class*=-gray][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.text-shadow[class*=-black][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.bg-img[data-v-cd70e807]{background-size:cover;background-position:center;background-repeat:no-repeat}.bg-mask[data-v-cd70e807]{background-color:#333;position:relative}.bg-mask[data-v-cd70e807]:after{content:"";border-radius:inherit;width:100%;height:100%;display:block;background-color:rgba(0,0,0,.4);position:absolute;left:0;right:0;bottom:0;top:0}.bg-mask uni-view[data-v-cd70e807],.bg-mask uni-cover-view[data-v-cd70e807]{z-index:5;position:relative}.bg-video[data-v-cd70e807]{position:relative}.bg-video uni-video[data-v-cd70e807]{display:block;height:100%;width:100%;object-fit:cover;position:absolute;top:0;z-index:0;pointer-events:none}.text-xs[data-v-cd70e807]{font-size:.625rem}.text-sm[data-v-cd70e807]{font-size:.75rem}.text-df[data-v-cd70e807]{font-size:.875rem}.text-lg[data-v-cd70e807]{font-size:1rem}.text-xl[data-v-cd70e807]{font-size:1.125rem}.text-xxl[data-v-cd70e807]{font-size:1.375rem}.text-sl[data-v-cd70e807]{font-size:2.5rem}.text-xsl[data-v-cd70e807]{font-size:3.75rem}.text-Abc[data-v-cd70e807]{text-transform:Capitalize}.text-ABC[data-v-cd70e807]{text-transform:Uppercase}.text-abc[data-v-cd70e807]{text-transform:Lowercase}.text-price[data-v-cd70e807]:before{content:"\a5";font-size:80%;margin-right:.125rem}.text-cut[data-v-cd70e807]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.text-bold[data-v-cd70e807]{font-weight:700}.text-center[data-v-cd70e807]{text-align:center}.text-content[data-v-cd70e807]{line-height:1.6}.text-left[data-v-cd70e807]{text-align:left}.text-right[data-v-cd70e807]{text-align:right}.text-red[data-v-cd70e807],.line-red[data-v-cd70e807],.lines-red[data-v-cd70e807]{color:#e54d42}.text-orange[data-v-cd70e807],.line-orange[data-v-cd70e807],.lines-orange[data-v-cd70e807]{color:#f37b1d}.text-yellow[data-v-cd70e807],.line-yellow[data-v-cd70e807],.lines-yellow[data-v-cd70e807]{color:#fbbd08}.text-olive[data-v-cd70e807],.line-olive[data-v-cd70e807],.lines-olive[data-v-cd70e807]{color:#8dc63f}.text-green[data-v-cd70e807],.line-green[data-v-cd70e807],.lines-green[data-v-cd70e807]{color:#39b54a}.text-cyan[data-v-cd70e807],.line-cyan[data-v-cd70e807],.lines-cyan[data-v-cd70e807]{color:#1cbbb4}.text-blue[data-v-cd70e807],.line-blue[data-v-cd70e807],.lines-blue[data-v-cd70e807]{color:#0081ff}.text-purple[data-v-cd70e807],.line-purple[data-v-cd70e807],.lines-purple[data-v-cd70e807]{color:#6739b6}.text-mauve[data-v-cd70e807],.line-mauve[data-v-cd70e807],.lines-mauve[data-v-cd70e807]{color:#9c26b0}.text-pink[data-v-cd70e807],.line-pink[data-v-cd70e807],.lines-pink[data-v-cd70e807]{color:#e03997}.text-brown[data-v-cd70e807],.line-brown[data-v-cd70e807],.lines-brown[data-v-cd70e807]{color:#a5673f}.text-grey[data-v-cd70e807],.line-grey[data-v-cd70e807],.lines-grey[data-v-cd70e807]{color:#8799a3}.text-gray[data-v-cd70e807],.line-gray[data-v-cd70e807],.lines-gray[data-v-cd70e807]{color:#aaa}.text-black[data-v-cd70e807],.line-black[data-v-cd70e807],.lines-black[data-v-cd70e807]{color:#333}.text-white[data-v-cd70e807],.line-white[data-v-cd70e807],.lines-white[data-v-cd70e807]{color:#fff}.zy-upgrade-topbg-green[data-v-cd70e807]{background-image:url(../../assets/green.20d5f80a.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-red[data-v-cd70e807]{background-image:url(../../assets/red.8267d3cf.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-pink[data-v-cd70e807]{background-image:url(../../assets/pink.78f243a3.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-yellow[data-v-cd70e807]{background-image:url(../../assets/yellow.4438648c.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-blue[data-v-cd70e807]{background-size:100% 100%;background-repeat:no-repeat}.zy-upgrade-title[data-v-cd70e807]{font-size:1.09375rem;font-weight:600}.all[data-v-8b11c490]{margin-top:1.40625rem}.all .all-content[data-v-8b11c490]{width:100%;height:40.625rem}.all[data-v-842c1160]{margin-top:1.40625rem}.all .all-content[data-v-842c1160]{width:100%;height:40.625rem}.index-content-other[data-v-db2cf42d]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-right[data-v-db2cf42d]{width:100%;border-radius:1.5625rem;display:flex;justify-content:flex-end;height:3.75rem;align-items:center}.item[data-v-db2cf42d]{display:flex;align-items:center;justify-content:space-between;width:100%;height:4.0625rem}.item .left-item[data-v-db2cf42d]{display:flex;align-items:center;margin-left:.625rem}.item .left-item .left-icon[data-v-db2cf42d]{margin:0 .625rem;width:1.25rem;height:1.25rem}.item .right-item[data-v-db2cf42d]{display:flex;align-items:center;margin-right:1.5625rem}.item .right-item .right-icon[data-v-db2cf42d]{width:.46875rem;height:.9375rem}.array-father[data-v-db2cf42d]{background-color:rgba(255,255,255,.6);width:98.2%;border-radius:.9375rem}.bottom-button[data-v-db2cf42d]{margin-top:.9375rem;background-color:rgba(255,255,255,.6);width:98.2%;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:.9375rem;height:3.125rem;color:#0174d3}.popup-any[data-v-db2cf42d]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:999;opacity:0;transition:opacity .5s ease;background-color:rgba(0,0,0,.3)}.mask[data-v-db2cf42d]{position:absolute;top:0;right:0;bottom:0;left:0}.box-any[data-v-db2cf42d]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:31.25rem;height:46.875rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;padding:2.03125rem 1.25rem}.title-left[data-v-db2cf42d]{display:flex;align-items:center}.title-left .back-img[data-v-db2cf42d]{width:1.875rem;height:1.875rem;margin-right:.9375rem}.title-left .back-font[data-v-db2cf42d]{font-size:1.09375rem;font-weight:600}.index-content-other[data-v-08e03fe2]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-down[data-v-08e03fe2]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.index-content-right[data-v-08e03fe2]{height:calc(100% - .9375rem);width:calc(100% - 1.875rem);background-color:rgba(255,255,255,.8);background-image:url(../../static/index/leida/bgc.png);background-position:30% 70%;border-radius:1.5625rem;display:flex;position:relative}.leida[data-v-08e03fe2]{margin-top:.9375rem;height:100%;width:35%;display:flex;justify-content:center;align-items:center;flex-direction:column;position:relative}.kutong-father[data-v-08e03fe2]{width:9.375rem;height:14.0625rem;position:relative}.kutong-img[data-v-08e03fe2]{position:absolute;top:0;left:0;width:9.375rem;height:9.375rem}.kutong-shan[data-v-08e03fe2]{position:absolute;top:0;left:0;width:4.6875rem;height:6.4375rem;transform-origin:100% 73%}.spin-anim[data-v-08e03fe2]{animation:spin-08e03fe2 2s linear infinite;animation-play-state:running}.no-anim[data-v-08e03fe2]{animation:spin-08e03fe2 2s linear infinite;animation-play-state:paused}.spin-anim-spec[data-v-08e03fe2]{animation:spinx-08e03fe2 2s linear infinite;animation-play-state:running}.no-anim-spec[data-v-08e03fe2]{animation:spinx-08e03fe2 2s linear infinite;animation-play-state:paused}.huan[data-v-08e03fe2]{position:absolute;top:-2.03125rem;left:-2.03125rem;width:13.4375rem;height:13.4375rem;border:.625rem solid #cedcf5;border-radius:50%}.quarter-ring[data-v-08e03fe2]{position:absolute;top:-5%;left:-5%;width:110%;height:110%;box-sizing:border-box;border:.625rem solid transparent;border-top-color:#03a9ff;border-radius:50%;transform:rotate(0);transform-origin:center center}.jindutiao[data-v-08e03fe2]{width:12.5rem;border-radius:.625rem;height:.625rem;background-color:#a6c9fa;overflow:hidden}.progress-fill[data-v-08e03fe2]{width:100%;height:100%;background:linear-gradient(to bottom,#00c9ff,#0076ff);transform-origin:left center;will-change:transform;transition:transform .05s linear}.color-font[data-v-08e03fe2]{color:#415273;margin-top:.625rem;height:.625rem}.agagin-button[data-v-08e03fe2]{width:7.5rem;height:2.8125rem;margin-top:2.5rem;border-radius:1.09375rem;background:linear-gradient(to bottom,#00c9ff,#0076ff);display:flex;justify-content:center;align-items:center;color:#fff}.other[data-v-08e03fe2]{width:50%;height:100%}.other-father[data-v-08e03fe2]{margin-top:4.6875rem;height:calc(100% - 4.6875rem);width:100%}.card-father[data-v-08e03fe2]{width:100%;display:flex;flex-wrap:wrap}.card[data-v-08e03fe2]{width:45%;margin-left:3%;height:16.5625rem;box-shadow:.0625rem .125rem .25rem .0625rem rgba(0,0,0,.3);background-color:#fff;border-radius:.9375rem;margin-bottom:1.09375rem;padding:0 .78125rem;position:relative}.card .rename-father[data-v-08e03fe2]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:17.1875rem;height:10.9375rem;border-radius:.9375rem;box-shadow:.0625rem .125rem .25rem .0625rem rgba(0,0,0,.3);background-color:#fff;display:flex;flex-direction:column;align-items:center;padding:0 .9375rem}.card .rename-father .rename-title[data-v-08e03fe2]{width:100%;height:2.5rem;border-bottom:.0625rem solid #f5f5f5;display:flex;justify-content:center;align-items:center}.card .rename-father .rename-gray[data-v-08e03fe2]{width:100%;height:2.5rem;display:flex;color:#a7a7a7;align-items:center}.card .rename-father .rename-input[data-v-08e03fe2]{width:100%;height:2.5rem;display:flex;background-color:#f5f6fa;border-radius:.625rem;color:#a7a7a7;align-items:center;padding:0 .625rem;position:relative}.card .rename-father .rename-input .uni-input[data-v-08e03fe2]{font-size:.78125rem}.card .rename-father .rename-input .left-img[data-v-08e03fe2]{width:1.5625rem;height:1.5625rem;margin-right:.46875rem}.card .rename-father .rename-input .right-img[data-v-08e03fe2]{position:absolute;right:.9375rem;top:50%;transform:translateY(-50%);width:.9375rem;height:.9375rem}.card-title[data-v-08e03fe2]{width:100%;height:4.0625rem;display:flex;align-items:center;justify-content:space-between}.card-middle[data-v-08e03fe2]{width:100%;height:10rem;display:flex;justify-content:space-between}.video-box[data-v-08e03fe2]{width:82%;height:10rem;background-color:#e5ecfa;display:flex;justify-content:center;align-items:center;border-radius:.625rem}.video-box-img[data-v-08e03fe2]{width:2.5rem;height:2.5rem}@keyframes spin-08e03fe2{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes spinx-08e03fe2{0%{transform:rotate(-70deg)}to{transform:rotate(290deg)}}@keyframes fadeIn-08e03fe2{0%{opacity:0;transform:translateY(.3125rem)}to{opacity:1;transform:translateY(0)}}.fade-in[data-v-08e03fe2]{animation:fadeIn-08e03fe2 .4s ease-out forwards}.index-content-title[data-v-08e03fe2]{position:absolute;top:1.875rem;left:1.875rem;display:flex;align-items:center}.index-content-title .shu[data-v-08e03fe2]{width:.625rem;height:1.5625rem;background:linear-gradient(to right,#0052c2,#00b4ff);border-radius:.625rem;margin-right:.9375rem}.index-content-title .shu-font[data-v-08e03fe2]{color:#415273;font-size:1.09375rem}.right-box[data-v-08e03fe2]{background:#00abff;width:5rem;height:2.03125rem;border-radius:.625rem;display:flex;justify-content:center;align-items:center;color:#fff}.small-menu[data-v-08e03fe2]{width:2.34375rem;height:2.28125rem;border-radius:.625rem;background-color:#e7ecfa;display:flex;justify-content:center;align-items:center;margin-bottom:.3125rem}.small-menu .small-img[data-v-08e03fe2]{height:1.5625rem;width:1.5625rem}.card-bottom[data-v-08e03fe2]{margin-top:.53125rem;margin-left:.3125rem;display:flex}.card-bottom .bottom-img[data-v-08e03fe2]{width:1.1875rem;height:1.1875rem;margin-left:.9375rem}.blue-button[data-v-08e03fe2]{margin-top:.625rem;width:5.625rem;height:2.1875rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;background:linear-gradient(to bottom,#00c9ff,#0076ff)}.index-content-other[data-v-3c477a5f]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-down[data-v-3c477a5f]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.index-content-right[data-v-3c477a5f]{height:calc(100% - .9375rem);width:calc(100% - 1.875rem);background-color:rgba(255,255,255,.8);background-image:url(../../static/index/leida/bgc.png);background-position:30% 70%;border-radius:1.5625rem;display:flex;position:relative}.index-content-right .index-content-title[data-v-3c477a5f]{position:absolute;top:1.875rem;left:1.875rem;display:flex;align-items:center}.index-content-right .index-content-title .shu[data-v-3c477a5f]{width:.625rem;height:1.5625rem;background:linear-gradient(to right,#0052c2,#00b4ff);border-radius:.625rem;margin-right:.9375rem}.index-content-right .index-content-title .shu-font[data-v-3c477a5f]{color:#415273;font-size:1.09375rem}.saomiao[data-v-3c477a5f]{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);width:12.5rem;height:12.5rem;background-image:url(../../static/index/leida/fourjiao.png);background-repeat:no-repeat;background-attachment:fixed;background-size:cover}.saomiao[data-v-3c477a5f]:before{content:"";position:absolute;top:0;left:0;width:100%;animation:scanMove-3c477a5f 1.3s ease-in-out infinite;z-index:1001;height:2.5rem;background:linear-gradient(to bottom,rgba(5,170,254,.6),rgba(5,170,254,.1),transparent);will-change:transform}.saomiao .saomiao-son[data-v-3c477a5f]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:11.25rem;height:11.25rem;border-radius:1.5625rem;background-color:#dae4f8}.saomiao .saomiao-son .saomiao-son-son[data-v-3c477a5f]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:10rem;height:10rem;border-radius:1.5625rem;background-color:#d0e0f6}.saomiao .saomiao-son .saomiao-son-son .saomiao-son-son-img[data-v-3c477a5f]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:7.8125rem;height:7.8125rem;border-radius:.9375rem;background-image:url(../../static/index/leida/QR.png);background-repeat:no-repeat;background-attachment:fixed;background-size:cover}@keyframes scanMove-3c477a5f{0%{top:10%}to{top:80%}}.index-content-other[data-v-5fc7e05c]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-down[data-v-5fc7e05c]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.index-content-right[data-v-5fc7e05c]{height:calc(100% - .9375rem);width:calc(100% - 1.875rem);background-color:rgba(255,255,255,.8);background-image:url(../../static/index/leida/bgc.png);background-position:30% 70%;border-radius:1.5625rem;display:flex;position:relative}.index-content-right .index-content-title[data-v-5fc7e05c]{position:absolute;top:1.875rem;left:1.875rem;display:flex;align-items:center}.index-content-right .index-content-title .shu[data-v-5fc7e05c]{width:.625rem;height:1.5625rem;background:linear-gradient(to right,#0052c2,#00b4ff);border-radius:.625rem;margin-right:.9375rem}.index-content-right .index-content-title .shu-font[data-v-5fc7e05c]{color:#415273;font-size:1.09375rem}.saomiao[data-v-5fc7e05c]{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);display:flex}.saomiao .saoma-input[data-v-5fc7e05c]{background-color:#fff;width:17.1875rem;height:2.8125rem;border-radius:.9375rem;padding-left:3.125rem;z-index:1}.saomiao .left-img[data-v-5fc7e05c]{width:1.5625rem;height:1.5625rem;position:absolute;top:50%;left:.9375rem;transform:translateY(-50%);z-index:2}.saomiao .right-img[data-v-5fc7e05c]{width:1.5625rem;height:1.5625rem;position:absolute;top:50%;right:6.875rem;transform:translateY(-50%);z-index:2}.blue-button[data-v-5fc7e05c]{margin-left:.9375rem;width:5.3125rem;height:2.8125rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:.9375rem;background:linear-gradient(to bottom,#00c9ff,#0076ff)}.big-ball[data-v-5fc7e05c]{width:6.25rem;height:6.25rem;position:absolute;top:50%;left:-1.71875rem;transform:translateY(-50%);border-radius:50%;background-color:#dbe4f6}.big-ball .ball[data-v-5fc7e05c]{width:4.6875rem;height:4.6875rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border-radius:50%;background-color:#cfddf1}.backgroundContainer[data-v-aebf66be]{display:flex;flex-direction:column;position:relative;width:100%;height:100vh;background-image:url(../../static/index/lightbgcnew.png);background-size:cover;background-position:center center;overflow:hidden}.darkbackgroundContainer[data-v-aebf66be]{display:flex;flex-direction:column;position:relative;width:100%;height:100vh;background-image:url(../../static/index/background.png);background-size:cover;background-position:center center;overflow:hidden}.index-title[data-v-aebf66be]{display:flex;width:calc(100% - 3.4375rem);height:4.0625rem;justify-content:space-between;margin:.625rem 1.5625rem 0 1.875rem}.index-title .index-title-left[data-v-aebf66be]{display:flex;height:100%;align-items:center;margin-top:.625rem}.index-title .index-title-left .index-title-left-wel[data-v-aebf66be]{margin-left:1.25rem}.index-title .index-title-left .index-title-left-weight[data-v-aebf66be]{font-weight:700;margin:0 .3125rem}.index-title .index-title-right[data-v-aebf66be]{display:flex;height:100%;align-items:center;margin-top:.625rem;margin-right:.3125rem}.index-title .index-title-right .top-card[data-v-aebf66be]{width:5.625rem;height:1.71875rem;border-radius:.9375rem;background-color:#e2e7ff;display:flex;align-items:center;margin-right:.625rem}.index-title .index-title-right .top-card .top-card-img[data-v-aebf66be]{width:1.09375rem;height:1.09375rem;margin-right:.15625rem;margin-left:.625rem}.index-title .index-title-right .top-card .top-card-font[data-v-aebf66be]{font-size:.78125rem}.index-content[data-v-aebf66be]{width:100%;height:calc(100vh - 4.6875rem);display:flex;margin-top:1.71875rem}.index-content .index-content-leftMenus[data-v-aebf66be]{height:100%;width:5.3125rem;display:flex;align-items:center;flex-direction:column;margin-top:.625rem;position:relative}.index-content .index-content-leftMenus .left-img[data-v-aebf66be]{width:2.8125rem;height:2.8125rem;z-index:100}.index-content .index-content-leftMenus .left-img-font[data-v-aebf66be]{margin-top:.3125rem;color:#fff;font-size:.78125rem}.index-content .index-content-leftMenus .left-img-font-target[data-v-aebf66be]{margin-top:.3125rem;color:#0174d3;font-size:.78125rem}.index-content .index-content-leftMenus .blue-circle-pos[data-v-aebf66be]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;height:25rem}.index-content .index-content-leftMenus .blue-circle-pos .blue-circle[data-v-aebf66be]{position:absolute;top:-1.5625rem;left:-2.125rem}.index-content .index-content-leftMenus .blue-circle-pos .blue-circle .blue-circle-size[data-v-aebf66be]{width:5.3125rem;height:7.8125rem}.red-pao[data-v-aebf66be]{position:absolute;top:1.25rem;left:1.875rem;padding:.09375rem .3125rem;background-color:#ff4c4e;color:#fff;font-size:.625rem;border-radius:.625rem;z-index:101}.ball-bgc[data-v-aebf66be]{width:1.8125rem;height:1.8125rem;border-radius:50%;background-color:#e2e7ff;display:flex;align-items:center;justify-content:center;margin-right:.78125rem}.ball-bgc .ball-img[data-v-aebf66be]{width:1.1875rem;height:1.1875rem}.index-title-title[data-v-aebf66be]{height:6.25rem}.index-title-left-img[data-v-aebf66be]{width:2.34375rem;height:2.34375rem}
+.index-content-other[data-v-01c2b33c]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-down[data-v-01c2b33c]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.index-content-right[data-v-01c2b33c]{height:calc(100% - .9375rem);width:100%;display:flex;flex-direction:column;position:relative}.big-ball[data-v-01c2b33c]{width:6.25rem;height:6.25rem;position:absolute;top:50%;left:-1.71875rem;transform:translateY(-50%);border-radius:50%;background-color:#dbe4f6}.big-ball .ball[data-v-01c2b33c]{width:4.6875rem;height:4.6875rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border-radius:50%;background-color:#cfddf1}.tab[data-v-01c2b33c]{width:6.25rem;height:3.75rem;font-size:1rem;display:flex;justify-content:center;align-items:center;position:relative}.tab .tab-heng[data-v-01c2b33c]{position:absolute;left:50%;bottom:1.09375rem;transform:translate(-50%);width:1.5625rem;height:.375rem;border-radius:.3125rem;background-color:#00b4ff}.scroll-box[data-v-01c2b33c]{display:flex;flex-wrap:wrap}.scroll-box .card[data-v-01c2b33c]{margin-right:.9375rem;margin-bottom:.9375rem;border:.0625rem solid #fff;background-image:url(../../static/index/mountain.png);background-color:rgba(255,255,255,.6);background-position:60% 50%;width:32.65625rem;height:20.3125rem;border-radius:1.5625rem 1.25rem 1.5625rem 1.5625rem;display:flex}.scroll-box .card .card-left[data-v-01c2b33c]{height:100%;width:68%;position:relative}.scroll-box .card .card-left .card-left-title[data-v-01c2b33c]{height:23%;width:100%;padding:0 .625rem;display:flex;justify-content:space-between;align-items:center}.scroll-box .card .card-left .card-left-title .left-view[data-v-01c2b33c]{display:flex;margin-top:.625rem;position:relative;width:100%}.scroll-box .card .card-left .card-left-title .left-view .left-view-img[data-v-01c2b33c]{width:2.65625rem;height:2.65625rem}.scroll-box .card .card-right[data-v-01c2b33c]{height:100%;width:32%;background-color:rgba(244,235,249,.3);border-top-right-radius:1.1875rem;border-bottom-right-radius:1.1875rem;position:relative}.top-font-line[data-v-01c2b33c]{display:flex;align-items:center;font-size:.71875rem}.top-font-line .line-weight[data-v-01c2b33c]{font-size:1.09375rem;font-weight:600;margin-left:.625rem}.top-font-line .line-margin[data-v-01c2b33c]{margin-left:.625rem;margin-right:.625rem}.top-font-line .font-gray[data-v-01c2b33c]{margin-left:.625rem;font-size:.875rem;color:#555}.blue-button[data-v-01c2b33c]{position:absolute;right:.625rem;top:-.09375rem;width:4.0625rem;height:1.5625rem;color:#fff;font-size:.78125rem;background:linear-gradient(to bottom,#00c9ff,#0076ff);border-radius:.46875rem;display:flex;justify-content:center;align-items:center;margin:.625rem .3125rem 0 0}.font-gray-right[data-v-01c2b33c]{margin-top:.3125rem;font-size:.78125rem;color:#858585;margin-right:.25rem}.right-spec[data-v-01c2b33c]{margin-top:2.125rem;font-weight:600;margin-right:.3125rem;width:4.6875rem}.video-img[data-v-01c2b33c]{margin-left:3.4375rem;width:17.8125rem;height:12.5rem;border-radius:.9375rem}.video-bottom[data-v-01c2b33c]{width:100%;overflow:hidden;height:2.65625rem;display:flex;align-items:center;padding-left:3.4375rem;color:#858585;font-size:.75rem;position:relative}.video-bottom .font-bottom-weight[data-v-01c2b33c]{font-size:.875rem;font-weight:600;color:#000}.video-bottom .bottom-shu[data-v-01c2b33c]{margin:0 .46875rem}.bottom-balls[data-v-01c2b33c]{position:absolute;bottom:3.75rem;left:38%;transform:translate(-35%);z-index:999;display:flex}.bottom-balls .one-ball-father[data-v-01c2b33c]{width:3.75rem;height:1.5625rem;display:flex;justify-content:center;align-items:center;border:.0625rem solid #fff;margin:0 .15625rem;color:#fff;font-size:.78125rem;border-radius:.3125rem}.right-balls[data-v-01c2b33c]{position:absolute;left:.78125rem;top:4.375rem;padding-top:.3125rem;z-index:999}.right-balls .blue-ball[data-v-01c2b33c]{width:1.09375rem;height:1.09375rem}.right-balls .blue-ball-father[data-v-01c2b33c]{width:2.1875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;background-color:#dbe8f9;border-radius:.78125rem;margin-right:.625rem;margin-bottom:.5625rem;position:relative;overflow:hidden}.right-balls .blue-ball-father-target[data-v-01c2b33c]{width:2.1875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;background-color:#dbe8f9;border-radius:.78125rem;margin-right:.625rem;margin-bottom:.5625rem;position:relative;overflow:auto}.right-title[data-v-01c2b33c]{position:absolute;right:-1.5625rem;top:.3125rem;width:7.8125rem;height:3.75rem;z-index:1}.right-other[data-v-01c2b33c]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);display:flex;align-items:center;justify-content:center;border-top-left-radius:.9375rem;border-bottom-left-radius:.9375rem;width:4.6875rem;height:1.875rem}.right-other .other-class[data-v-01c2b33c]{width:1.09375rem;height:1.09375rem;margin-right:.15625rem;margin-left:.15625rem}.right-other .other-font[data-v-01c2b33c]{color:#fff}.time[data-v-01c2b33c]{display:flex;margin-top:3.75rem;align-items:center;justify-content:center}.time .time-left[data-v-01c2b33c]{background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent;font-size:1.40625rem;font-weight:600}.time-img[data-v-01c2b33c]{width:7.5rem;height:5.625rem;margin-bottom:.46875rem}.time-weight[data-v-01c2b33c]{font-weight:600;font-size:1rem;margin-top:.78125rem}.time-small[data-v-01c2b33c]{padding:.3125rem .9375rem;font-size:.625rem;color:#666}.time-people-two[data-v-01c2b33c]{display:flex;margin-left:.625rem;align-items:center;margin-bottom:.15625rem}.time-people-two .time-people-img[data-v-01c2b33c]{width:1.25rem;height:1.25rem;margin-right:.3125rem;margin-left:.15625rem}.time-people-two .time-people-font[data-v-01c2b33c]{font-size:.84375rem}.right-time[data-v-01c2b33c]{position:absolute;top:40%;right:0;transform:translateY(-40%)}.right-time .right-laba[data-v-01c2b33c]{width:1.875rem;height:1.875rem;margin-right:.15625rem;border-top-left-radius:.9375rem;border-bottom-left-radius:.9375rem;background-color:#fff;display:flex;justify-content:center;align-items:center;margin-bottom:.3125rem}.fail-img[data-v-01c2b33c]{width:7.8125rem;height:7.8125rem}.fail-img-spec[data-v-01c2b33c]{width:12.5rem;height:10.9375rem;margin-left:-2.1875rem}.fail-text[data-v-01c2b33c]{margin-top:.46875rem;color:#333}.fail-text-spec[data-v-01c2b33c]{margin-top:-3.125rem;color:#333}.kufang-img[data-v-01c2b33c]{width:1.34375rem;height:1.34375rem}.tab-heng[data-v-01c2b33c]{position:absolute;left:50%;bottom:-.46875rem;transform:translate(-50%);width:1.25rem;height:.3125rem;border-radius:.3125rem}.right-title-father[data-v-01c2b33c]{position:absolute;right:.625rem;height:100%;top:0;display:flex;align-items:center}.split-line-white-sec[data-v-01c2b33c]{position:absolute;left:0;top:50%;transform:translateY(-50%);width:.0625rem;height:18.75rem;z-index:999;background:linear-gradient(to top,rgba(0,0,0,0),#fff,rgba(0,0,0,0))}.topright-ball[data-v-01c2b33c]{position:absolute;top:5.3125rem;right:1.5625rem;width:2.34375rem;height:2.34375rem;border-radius:50%;background-color:rgba(255,255,255,.3);z-index:999;display:flex;justify-content:center;align-items:center}.topright-ball .ball-righttop[data-v-01c2b33c]{width:1.40625rem;height:1.40625rem;margin-top:-.3125rem}.small-button[data-v-01c2b33c]{width:70%;height:2.1875rem;display:flex;justify-content:space-between}.small-button .gray-ball[data-v-01c2b33c]{display:flex;justify-content:center;align-items:center;background-color:#d8e1f2;width:1.875rem;height:1.875rem;border-radius:50%}.laba-img[data-v-01c2b33c]{width:.9375rem;height:.9375rem}.time-right[data-v-01c2b33c]{position:absolute;right:.3125rem;top:.15625rem;width:2.8125rem;height:1.09375rem;display:flex;justify-content:center;align-items:center;background-color:#ffd5ac;color:#ff5834;border:.0625rem solid #FF5834;margin-left:.15625rem;border-radius:.3125rem;font-size:.625rem}.neuro-wrapper[data-v-9117e9d1]{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;z-index:999;opacity:0;pointer-events:none;transition:opacity .3s ease}.neuro-wrapper.is-active[data-v-9117e9d1]{opacity:1;pointer-events:auto}.neuro-mask[data-v-9117e9d1]{position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.3)}.neuro-box[data-v-9117e9d1]{position:relative;width:18.75rem;height:14.0625rem;border-radius:.9375rem;background-color:#fff;display:flex;flex-direction:column;align-items:center;z-index:1;padding:0 10%}.button[data-v-9117e9d1]{width:47%;background-color:#ddf0ff;display:flex;justify-content:center;align-items:center;color:#007cff;border:.03125rem solid #007CFF;font-size:.78125rem;border-radius:.9375rem}.title[data-v-9117e9d1]{margin-top:2.1875rem}.card-font[data-v-9117e9d1]{margin-top:2.1875rem;width:18.75rem;justify-content:center;display:flex}.button-white[data-v-9117e9d1]{width:47%;border:.0625rem solid #c3cacd;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:.78125rem;border-radius:.9375rem}.button-father[data-v-9117e9d1]{position:absolute;bottom:1.875rem;left:50%;transform:translate(-50%);width:100%;height:2.1875rem;display:flex;justify-content:space-between;padding:0 1.5625rem}.neuro-wrapper[data-v-8de7e110]{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;z-index:999;opacity:0;pointer-events:none;transition:opacity .3s ease}.neuro-wrapper.is-active[data-v-8de7e110]{opacity:1;pointer-events:auto}.neuro-mask[data-v-8de7e110]{position:absolute;top:0;right:0;bottom:0;left:0;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4)}.neuro-box[data-v-8de7e110]{position:relative;width:23.4375rem;height:21.875rem;border-radius:.9375rem;background-color:#fff;display:flex;flex-direction:column;align-items:center;z-index:1;padding:0 10%}.button[data-v-8de7e110]{width:100%;display:flex;justify-content:center;align-items:center;color:#fff;font-size:.78125rem;border-radius:1.09375rem;margin-left:.625rem;color:#007cff;font-size:.9375rem;background-color:#ddf0ff;border:.03125rem solid #007CFF}.title[data-v-8de7e110]{margin-top:2.1875rem;font-weight:600;font-size:1.09375rem}.card-font[data-v-8de7e110]{margin-top:2.1875rem;width:18.75rem;justify-content:center;display:flex}.button-white[data-v-8de7e110]{width:47%;border:.0625rem solid #c3cacd;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:.78125rem;border-radius:.9375rem}.button-father[data-v-8de7e110]{position:absolute;bottom:2.1875rem;left:50%;transform:translate(-50%);width:100%;height:2.5rem;display:flex;justify-content:center;padding:0 3.4375rem}.password-father[data-v-8de7e110]{margin-top:.9375rem;width:23.4375rem;padding:0 3.75rem;height:2.5rem}.password-father .password[data-v-8de7e110]{width:100%;background-color:rgba(239,240,244,.5);border-radius:.71875rem;height:2.5rem;padding-left:.625rem;font-size:.84375rem}.zy-modal[data-v-cd70e807]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1110;opacity:0;outline:0;text-align:center;transform:scale(1.185);-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:62.5rem;background:rgba(0,0,0,.6);transition:all .3s ease-in-out 0s;pointer-events:none}.zy-modal[data-v-cd70e807]:before{content:"\200b";display:inline-block;height:100%;vertical-align:middle}.zy-modal.show[data-v-cd70e807]{opacity:1;transition-duration:.3s;transform:scale(1);overflow-x:hidden;overflow-y:auto;pointer-events:auto}.zy-dialog[data-v-cd70e807]{position:relative;display:inline-block;vertical-align:middle;margin-left:auto;margin-right:auto;width:21.25rem;max-width:100%;background-color:#f8f8f8;border-radius:.3125rem;overflow:hidden}.zy-modal.bottom-modal[data-v-cd70e807]:before{vertical-align:bottom}.zy-modal.bottom-modal .zy-dialog[data-v-cd70e807]{width:100%;border-radius:0}.zy-modal.bottom-modal[data-v-cd70e807]{margin-bottom:-31.25rem}.zy-modal.bottom-modal.show[data-v-cd70e807]{margin-bottom:0}.zy-modal.drawer-modal[data-v-cd70e807]{transform:scale(1);display:flex}.zy-modal.drawer-modal .zy-dialog[data-v-cd70e807]{height:100%;min-width:6.25rem;border-radius:0;margin:initial;transition-duration:.3s}.zy-modal.drawer-modal.justify-start .zy-dialog[data-v-cd70e807]{transform:translate(-100%)}.zy-modal.drawer-modal.justify-end .zy-dialog[data-v-cd70e807]{transform:translate(100%)}.zy-modal.drawer-modal.show .zy-dialog[data-v-cd70e807]{transform:translate(0)}.zy-modal .zy-dialog>.zy-bar:first-child .action[data-v-cd70e807]{min-width:3.125rem;margin-right:0;min-height:3.125rem}.zy-progress[data-v-cd70e807]{overflow:hidden;height:.875rem;background-color:#ebeef5;display:inline-flex;align-items:center;width:100%}.zy-progress+uni-view[data-v-cd70e807],.zy-progress+uni-text[data-v-cd70e807]{line-height:1}.zy-progress.xs[data-v-cd70e807]{height:.3125rem}.zy-progress.sm[data-v-cd70e807]{height:.625rem}.zy-progress uni-view[data-v-cd70e807]{width:0;height:100%;align-items:center;display:flex;justify-items:flex-end;justify-content:space-around;font-size:.625rem;color:#fff;transition:width .6s ease}.zy-progress uni-text[data-v-cd70e807]{align-items:center;display:flex;font-size:.625rem;color:#333;text-indent:.3125rem}.zy-progress.text-progress[data-v-cd70e807]{padding-right:1.875rem}.zy-progress.striped uni-view[data-v-cd70e807]{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:2.25rem 2.25rem}.zy-progress.active uni-view[data-v-cd70e807]{animation:progress-stripes-cd70e807 2s linear infinite}@keyframes progress-stripes-cd70e807{0%{background-position:2.25rem 0}to{background-position:0 0}}.zy-btn[data-v-cd70e807]{height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.zy-btn[data-v-cd70e807]:after{display:none}.zy-btn[data-v-cd70e807]:not([class*=bg-]){background-color:#f0f0f0}.zy-btn[class*=line][data-v-cd70e807]{background-color:transparent}.zy-btn[class*=line][data-v-cd70e807]:after{content:" ";display:block;width:200%;height:200%;position:absolute;top:0;left:0;border:.03125rem solid currentColor;transform:scale(.5);transform-origin:0 0;box-sizing:border-box;border-radius:.375rem;z-index:1;pointer-events:none}.zy-btn.round[class*=line][data-v-cd70e807]:after{border-radius:31.25rem}.zy-btn[class*=lines][data-v-cd70e807]:after{border:.1875rem solid currentColor}.zy-btn[class*=bg-][data-v-cd70e807]:after{display:none}.zy-btn.sm[data-v-cd70e807]{padding:0 .625rem;font-size:.625rem;height:1.5rem}.zy-btn.lg[data-v-cd70e807]{padding:0 1.25rem;font-size:1rem;height:2.5rem}.zy-btn.cuIcon.sm[data-v-cd70e807]{width:1.5rem;height:1.5rem}.zy-btn.cuIcon[data-v-cd70e807]{width:2rem;height:2rem;border-radius:15.625rem;padding:0}uni-button.cuIcon.lg[data-v-cd70e807]{width:2.5rem;height:2.5rem}.zy-btn.shadow-blur[data-v-cd70e807]:before{top:.125rem;left:.125rem;filter:blur(.1875rem);opacity:.6}.zy-btn.button-hover[data-v-cd70e807]{transform:translate(.03125rem,.03125rem)}.block[data-v-cd70e807]{display:block}.zy-btn.block[data-v-cd70e807]{display:flex}.zy-btn[disabled][data-v-cd70e807]{opacity:.6;color:#fff}.margin-0[data-v-cd70e807]{margin:0}.margin-xs[data-v-cd70e807]{margin:.3125rem}.margin-sm[data-v-cd70e807]{margin:.625rem}.margin[data-v-cd70e807]{margin:.9375rem}.margin-lg[data-v-cd70e807]{margin:1.25rem}.margin-xl[data-v-cd70e807]{margin:1.5625rem}.margin-top-xs[data-v-cd70e807]{margin-top:.3125rem}.margin-top-sm[data-v-cd70e807]{margin-top:.625rem}.margin-top[data-v-cd70e807]{margin-top:.9375rem}.margin-top-lg[data-v-cd70e807]{margin-top:1.25rem}.margin-top-xl[data-v-cd70e807]{margin-top:1.5625rem}.margin-right-xs[data-v-cd70e807]{margin-right:.3125rem}.margin-right-sm[data-v-cd70e807]{margin-right:.625rem}.margin-right[data-v-cd70e807]{margin-right:.9375rem}.margin-right-lg[data-v-cd70e807]{margin-right:1.25rem}.margin-right-xl[data-v-cd70e807]{margin-right:1.5625rem}.margin-bottom-xs[data-v-cd70e807]{margin-bottom:.3125rem}.margin-bottom-sm[data-v-cd70e807]{margin-bottom:.625rem}.margin-bottom[data-v-cd70e807]{margin-bottom:.9375rem}.margin-bottom-lg[data-v-cd70e807]{margin-bottom:1.25rem}.margin-bottom-xl[data-v-cd70e807]{margin-bottom:1.5625rem}.margin-left-xs[data-v-cd70e807]{margin-left:.3125rem}.margin-left-sm[data-v-cd70e807]{margin-left:.625rem}.margin-left[data-v-cd70e807]{margin-left:.9375rem}.margin-left-lg[data-v-cd70e807]{margin-left:1.25rem}.margin-left-xl[data-v-cd70e807]{margin-left:1.5625rem}.margin-lr-xs[data-v-cd70e807]{margin-left:.3125rem;margin-right:.3125rem}.margin-lr-sm[data-v-cd70e807]{margin-left:.625rem;margin-right:.625rem}.margin-lr[data-v-cd70e807]{margin-left:.9375rem;margin-right:.9375rem}.margin-lr-lg[data-v-cd70e807]{margin-left:1.25rem;margin-right:1.25rem}.margin-lr-xl[data-v-cd70e807]{margin-left:1.5625rem;margin-right:1.5625rem}.margin-tb-xs[data-v-cd70e807]{margin-top:.3125rem;margin-bottom:.3125rem}.margin-tb-sm[data-v-cd70e807]{margin-top:.625rem;margin-bottom:.625rem}.margin-tb[data-v-cd70e807]{margin-top:.9375rem;margin-bottom:.9375rem}.margin-tb-lg[data-v-cd70e807]{margin-top:1.25rem;margin-bottom:1.25rem}.margin-tb-xl[data-v-cd70e807]{margin-top:1.5625rem;margin-bottom:1.5625rem}.padding-0[data-v-cd70e807]{padding:0}.padding-xs[data-v-cd70e807]{padding:.3125rem}.padding-sm[data-v-cd70e807]{padding:.625rem}.padding[data-v-cd70e807]{padding:.9375rem}.padding-lg[data-v-cd70e807]{padding:1.25rem}.padding-xl[data-v-cd70e807]{padding:1.5625rem}.padding-top-xs[data-v-cd70e807]{padding-top:.3125rem}.padding-top-sm[data-v-cd70e807]{padding-top:.625rem}.padding-top[data-v-cd70e807]{padding-top:.9375rem}.padding-top-lg[data-v-cd70e807]{padding-top:1.25rem}.padding-top-xl[data-v-cd70e807]{padding-top:1.5625rem}.padding-right-xs[data-v-cd70e807]{padding-right:.3125rem}.padding-right-sm[data-v-cd70e807]{padding-right:.625rem}.padding-right[data-v-cd70e807]{padding-right:.9375rem}.padding-right-lg[data-v-cd70e807]{padding-right:1.25rem}.padding-right-xl[data-v-cd70e807]{padding-right:1.5625rem}.padding-bottom-xs[data-v-cd70e807]{padding-bottom:.3125rem}.padding-bottom-sm[data-v-cd70e807]{padding-bottom:.625rem}.padding-bottom[data-v-cd70e807]{padding-bottom:.9375rem}.padding-bottom-lg[data-v-cd70e807]{padding-bottom:1.25rem}.padding-bottom-xl[data-v-cd70e807]{padding-bottom:1.5625rem}.padding-left-xs[data-v-cd70e807]{padding-left:.3125rem}.padding-left-sm[data-v-cd70e807]{padding-left:.625rem}.padding-left[data-v-cd70e807]{padding-left:.9375rem}.padding-left-lg[data-v-cd70e807]{padding-left:1.25rem}.padding-left-xl[data-v-cd70e807]{padding-left:1.5625rem}.padding-lr-xs[data-v-cd70e807]{padding-left:.3125rem;padding-right:.3125rem}.padding-lr-sm[data-v-cd70e807]{padding-left:.625rem;padding-right:.625rem}.padding-lr[data-v-cd70e807]{padding-left:.9375rem;padding-right:.9375rem}.padding-lr-lg[data-v-cd70e807]{padding-left:1.25rem;padding-right:1.25rem}.padding-lr-xl[data-v-cd70e807]{padding-left:1.5625rem;padding-right:1.5625rem}.padding-tb-xs[data-v-cd70e807]{padding-top:.3125rem;padding-bottom:.3125rem}.padding-tb-sm[data-v-cd70e807]{padding-top:.625rem;padding-bottom:.625rem}.padding-tb[data-v-cd70e807]{padding-top:.9375rem;padding-bottom:.9375rem}.padding-tb-lg[data-v-cd70e807]{padding-top:1.25rem;padding-bottom:1.25rem}.padding-tb-xl[data-v-cd70e807]{padding-top:1.5625rem;padding-bottom:1.5625rem}.zy-bar[data-v-cd70e807]{display:flex;position:relative;align-items:center;min-height:3.125rem;justify-content:space-between}.zy-bar .action[data-v-cd70e807]{display:flex;align-items:center;height:100%;justify-content:center;max-width:100%}.zy-bar .action.border-title[data-v-cd70e807]{position:relative;top:-.3125rem}.zy-bar .action.border-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;bottom:-.5rem;min-width:2rem;height:.1875rem;left:0}.zy-bar .action.sub-title[data-v-cd70e807]{position:relative;top:-.2rem}.zy-bar .action.sub-title uni-text[data-v-cd70e807]{position:relative;z-index:1}.zy-bar .action.sub-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.2rem;border-radius:.1875rem;width:100%;height:.6rem;left:.6rem;opacity:.3;z-index:0}.zy-bar .action.sub-title uni-text[class*=text-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.7rem;left:.5rem;opacity:.2;z-index:0;text-align:right;font-weight:900;font-size:1.125rem}.zy-bar.justify-center .action.border-title uni-text[data-v-cd70e807]:last-child,.zy-bar.justify-center .action.sub-title uni-text[data-v-cd70e807]:last-child{left:0;right:0;margin:auto;text-align:center}.zy-bar .action[data-v-cd70e807]:first-child{margin-left:.9375rem;font-size:.9375rem}.zy-bar .action uni-text.text-cut[data-v-cd70e807]{text-align:left;width:100%}.zy-bar .zy-avatar[data-v-cd70e807]:first-child{margin-left:.625rem}.zy-bar .action:first-child>uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:-.3em;margin-right:.3em}.zy-bar .action[data-v-cd70e807]:last-child{margin-right:.9375rem}.zy-bar .action>uni-text[class*=cuIcon-][data-v-cd70e807],.zy-bar .action>uni-view[class*=cuIcon-][data-v-cd70e807]{font-size:1.125rem}.zy-bar .action>uni-text[class*=cuIcon-]+uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:.5em}.zy-bar .content[data-v-cd70e807]{position:absolute;text-align:center;width:calc(100% - 10.625rem);left:0;right:0;bottom:0;top:0;margin:auto;height:1.875rem;font-size:1rem;line-height:1.875rem;cursor:none;pointer-events:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.zy-bar.ios .content[data-v-cd70e807]{bottom:7px;height:30px;font-size:1rem;line-height:30px}.zy-bar.btn-group[data-v-cd70e807]{justify-content:space-around}.zy-bar.btn-group uni-button[data-v-cd70e807]{padding:.625rem 1rem}.zy-bar.btn-group uni-button[data-v-cd70e807]{flex:1;margin:0 .625rem;max-width:50%}.zy-bar .search-form[data-v-cd70e807]{background-color:#f5f5f5;line-height:2rem;height:2rem;font-size:.75rem;color:#333;flex:1;display:flex;align-items:center;margin:0 .9375rem}.zy-bar .search-form+.action[data-v-cd70e807]{margin-right:.9375rem}.zy-bar .search-form uni-input[data-v-cd70e807]{flex:1;padding-right:.9375rem;height:2rem;line-height:2rem;font-size:.8125rem;background-color:transparent}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]{margin:0 .5em 0 .8em}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]:before{top:0}.zy-bar.fixed[data-v-cd70e807],.nav.fixed[data-v-cd70e807]{position:fixed;width:100%;top:0;z-index:1024;box-shadow:0 .03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.foot[data-v-cd70e807]{position:fixed;width:100%;bottom:0;z-index:1024;box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar[data-v-cd70e807]{padding:0;height:calc(3.125rem + env(safe-area-inset-bottom)/2);padding-bottom:calc(env(safe-area-inset-bottom)/2)}.zy-tabbar-height[data-v-cd70e807]{min-height:3.125rem;height:calc(3.125rem + env(safe-area-inset-bottom)/2)}.zy-bar.tabbar.shadow[data-v-cd70e807]{box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar .action[data-v-cd70e807]{font-size:.6875rem;position:relative;flex:1;text-align:center;padding:0;display:block;height:auto;line-height:1;margin:0;background-color:inherit;overflow:initial}.zy-bar.tabbar.shop .action[data-v-cd70e807]{width:4.375rem;flex:initial}.zy-bar.tabbar .action.add-action[data-v-cd70e807]{position:relative;z-index:2;padding-top:1.5625rem}.zy-bar.tabbar .action.add-action [class*=cuIcon-][data-v-cd70e807]{position:absolute;width:2.1875rem;z-index:2;height:2.1875rem;border-radius:50%;line-height:2.1875rem;font-size:1.5625rem;top:-1.09375rem;left:0;right:0;margin:auto;padding:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:after{content:"";position:absolute;width:3.125rem;height:3.125rem;top:-1.5625rem;left:0;right:0;margin:auto;box-shadow:0 -.09375rem .25rem rgba(0,0,0,.08);border-radius:1.5625rem;background-color:inherit;z-index:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:before{content:"";position:absolute;width:3.125rem;height:.9375rem;bottom:.9375rem;left:0;right:0;margin:auto;background-color:inherit;z-index:1}.zy-bar.tabbar .btn-group[data-v-cd70e807]{flex:1;display:flex;justify-content:space-around;align-items:center;padding:0 .3125rem}.zy-bar.tabbar uni-button.action[data-v-cd70e807]:after{border:0}.zy-bar.tabbar .action [class*=cuIcon-][data-v-cd70e807]{width:3.125rem;position:relative;display:block;height:auto;margin:0 auto .3125rem;text-align:center;font-size:1.25rem}.zy-bar.tabbar .action .cuIcon-zy-image[data-v-cd70e807]{margin:0 auto}.zy-bar.tabbar .action .cuIcon-zy-image uni-image[data-v-cd70e807]{width:1.5625rem;height:1.5625rem;display:inline-block}.zy-bar.tabbar .submit[data-v-cd70e807]{align-items:center;display:flex;justify-content:center;text-align:center;position:relative;flex:2;align-self:stretch}.zy-bar.tabbar .submit[data-v-cd70e807]:last-child{flex:2.6}.zy-bar.tabbar .submit+.submit[data-v-cd70e807]{flex:2}.zy-bar.tabbar.border .action[data-v-cd70e807]:before{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;transform:scale(.5);transform-origin:0 0;border-right:.03125rem solid rgba(0,0,0,.1);z-index:3}.zy-bar.tabbar.border .action[data-v-cd70e807]:last-child:before{display:none}.zy-bar.input[data-v-cd70e807]{padding-right:.625rem;background-color:#fff}.zy-bar.input uni-input[data-v-cd70e807]{overflow:initial;line-height:2rem;height:2rem;min-height:2rem;flex:1;font-size:.9375rem;margin:0 .625rem}.zy-bar.input .action[data-v-cd70e807]{margin-left:.625rem}.zy-bar.input .action [class*=cuIcon-][data-v-cd70e807]{font-size:1.5rem}.zy-bar.input uni-input+.action[data-v-cd70e807]{margin-right:.625rem;margin-left:0}.zy-bar.input .action:first-child [class*=cuIcon-][data-v-cd70e807]{margin-left:0}.zy-custom[data-v-cd70e807]{display:block;position:relative}.zy-custom .zy-bar .content[data-v-cd70e807]{width:calc(100% - 13.75rem)}.zy-custom .zy-bar .content uni-image[data-v-cd70e807]{height:1.875rem;width:7.5rem}.zy-custom .zy-bar[data-v-cd70e807]{min-height:0px;box-shadow:0 0;z-index:9999}.zy-custom .zy-bar .border-custom[data-v-cd70e807]{position:relative;background:rgba(0,0,0,.15);border-radius:31.25rem;height:30px}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:after{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;border-radius:inherit;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:.03125rem solid #ffffff;opacity:.5}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:before{content:" ";width:.03125rem;height:110%;position:absolute;top:22.5%;left:0;right:0;margin:auto;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;opacity:.6;background-color:#fff}.zy-custom .zy-bar .border-custom uni-text[data-v-cd70e807]{display:block;flex:1;margin:auto!important;text-align:center;font-size:1.0625rem}.flex[data-v-cd70e807]{display:flex}.basis-xs[data-v-cd70e807]{flex-basis:20%}.basis-sm[data-v-cd70e807]{flex-basis:40%}.basis-df[data-v-cd70e807]{flex-basis:50%}.basis-lg[data-v-cd70e807]{flex-basis:60%}.basis-xl[data-v-cd70e807]{flex-basis:80%}.flex-sub[data-v-cd70e807]{flex:1}.flex-twice[data-v-cd70e807]{flex:2}.flex-treble[data-v-cd70e807]{flex:3}.flex-direction[data-v-cd70e807]{flex-direction:column}.flex-wrap[data-v-cd70e807]{flex-wrap:wrap}.align-start[data-v-cd70e807]{align-items:flex-start}.align-end[data-v-cd70e807]{align-items:flex-end}.align-center[data-v-cd70e807]{align-items:center}.self-start[data-v-cd70e807]{align-self:flex-start}.self-center[data-v-cd70e807]{align-self:flex-center}.self-end[data-v-cd70e807]{align-self:flex-end}.self-stretch[data-v-cd70e807]{align-self:stretch}.align-stretch[data-v-cd70e807]{align-items:stretch}.justify-start[data-v-cd70e807]{justify-content:flex-start}.justify-end[data-v-cd70e807]{justify-content:flex-end}.justify-center[data-v-cd70e807]{justify-content:center}.justify-between[data-v-cd70e807]{justify-content:space-between}.justify-around[data-v-cd70e807]{justify-content:space-around}.line-red[data-v-cd70e807]:after,.lines-red[data-v-cd70e807]:after{border-color:#e54d42}.line-orange[data-v-cd70e807]:after,.lines-orange[data-v-cd70e807]:after{border-color:#f37b1d}.line-yellow[data-v-cd70e807]:after,.lines-yellow[data-v-cd70e807]:after{border-color:#fbbd08}.line-olive[data-v-cd70e807]:after,.lines-olive[data-v-cd70e807]:after{border-color:#8dc63f}.line-green[data-v-cd70e807]:after,.lines-green[data-v-cd70e807]:after{border-color:#39b54a}.line-cyan[data-v-cd70e807]:after,.lines-cyan[data-v-cd70e807]:after{border-color:#1cbbb4}.line-blue[data-v-cd70e807]:after,.lines-blue[data-v-cd70e807]:after{border-color:#0081ff}.line-purple[data-v-cd70e807]:after,.lines-purple[data-v-cd70e807]:after{border-color:#6739b6}.line-mauve[data-v-cd70e807]:after,.lines-mauve[data-v-cd70e807]:after{border-color:#9c26b0}.line-pink[data-v-cd70e807]:after,.lines-pink[data-v-cd70e807]:after{border-color:#e03997}.line-brown[data-v-cd70e807]:after,.lines-brown[data-v-cd70e807]:after{border-color:#a5673f}.line-grey[data-v-cd70e807]:after,.lines-grey[data-v-cd70e807]:after{border-color:#8799a3}.line-gray[data-v-cd70e807]:after,.lines-gray[data-v-cd70e807]:after{border-color:#aaa}.line-black[data-v-cd70e807]:after,.lines-black[data-v-cd70e807]:after{border-color:#333}.line-white[data-v-cd70e807]:after,.lines-white[data-v-cd70e807]:after{border-color:#fff}.bg-red[data-v-cd70e807]{background-color:#e54d42;color:#fff}.bg-orange[data-v-cd70e807]{background-color:#f37b1d;color:#fff}.bg-yellow[data-v-cd70e807]{background-color:#fbbd08;color:#333}.bg-olive[data-v-cd70e807]{background-color:#8dc63f;color:#fff}.bg-green[data-v-cd70e807]{background-color:#39b54a;color:#fff}.bg-cyan[data-v-cd70e807]{background-color:#1cbbb4;color:#fff}.bg-blue[data-v-cd70e807]{background-color:#0081ff;color:#fff}.bg-purple[data-v-cd70e807]{background-color:#6739b6;color:#fff}.bg-mauve[data-v-cd70e807]{background-color:#9c26b0;color:#fff}.bg-pink[data-v-cd70e807]{background-color:#e03997;color:#fff}.bg-brown[data-v-cd70e807]{background-color:#a5673f;color:#fff}.bg-grey[data-v-cd70e807]{background-color:#8799a3;color:#fff}.bg-gray[data-v-cd70e807]{background-color:#f0f0f0;color:#333}.bg-black[data-v-cd70e807]{background-color:#333;color:#fff}.bg-white[data-v-cd70e807]{background-color:#fff;color:#666}.bg-shadeTop[data-v-cd70e807]{background-image:linear-gradient(#000,rgba(0,0,0,.01));color:#fff}.bg-shadeBottom[data-v-cd70e807]{background-image:linear-gradient(rgba(0,0,0,.01),#000);color:#fff}.bg-red.light[data-v-cd70e807]{color:#e54d42;background-color:#fadbd9}.bg-orange.light[data-v-cd70e807]{color:#f37b1d;background-color:#fde6d2}.bg-yellow.light[data-v-cd70e807]{color:#fbbd08;background-color:rgba(254,242,206,.824)}.bg-olive.light[data-v-cd70e807]{color:#8dc63f;background-color:#e8f4d9}.bg-green.light[data-v-cd70e807]{color:#39b54a;background-color:#d7f0db}.bg-cyan.light[data-v-cd70e807]{color:#1cbbb4;background-color:#d2f1f0}.bg-blue.light[data-v-cd70e807]{color:#0081ff;background-color:#cce6ff}.bg-purple.light[data-v-cd70e807]{color:#6739b6;background-color:#e1d7f0}.bg-mauve.light[data-v-cd70e807]{color:#9c26b0;background-color:#ebd4ef}.bg-pink.light[data-v-cd70e807]{color:#e03997;background-color:#f9d7ea}.bg-brown.light[data-v-cd70e807]{color:#a5673f;background-color:#ede1d9}.bg-grey.light[data-v-cd70e807]{color:#8799a3;background-color:#e7ebed}.bg-gradual-red[data-v-cd70e807]{background-image:linear-gradient(45deg,#f43f3b,#ec008c);color:#fff}.bg-gradual-orange[data-v-cd70e807]{background-image:linear-gradient(45deg,#ff9700,#ed1c24);color:#fff}.bg-gradual-green[data-v-cd70e807]{background-image:linear-gradient(45deg,#39b54a,#8dc63f);color:#fff}.bg-gradual-purple[data-v-cd70e807]{background-image:linear-gradient(45deg,#9000ff,#5e00ff);color:#fff}.bg-gradual-pink[data-v-cd70e807]{background-image:linear-gradient(45deg,#ec008c,#6739b6);color:#fff}.bg-gradual-blue[data-v-cd70e807]{background-image:linear-gradient(45deg,#0081ff,#1cbbb4);color:#fff}.shadow[class*=-red][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.shadow[class*=-orange][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.shadow[class*=-yellow][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.shadow[class*=-olive][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.shadow[class*=-green][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.shadow[class*=-cyan][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.shadow[class*=-blue][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.shadow[class*=-purple][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.shadow[class*=-mauve][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.shadow[class*=-pink][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.shadow[class*=-brown][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.shadow[class*=-grey][data-v-cd70e807],.shadow[class*=-gray][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.shadow[class*=-black][data-v-cd70e807],.shadow[class*=-white][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.text-shadow[class*=-red][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.text-shadow[class*=-orange][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.text-shadow[class*=-yellow][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.text-shadow[class*=-olive][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.text-shadow[class*=-green][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.text-shadow[class*=-cyan][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.text-shadow[class*=-blue][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.text-shadow[class*=-purple][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.text-shadow[class*=-mauve][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.text-shadow[class*=-pink][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.text-shadow[class*=-brown][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.text-shadow[class*=-grey][data-v-cd70e807],.text-shadow[class*=-gray][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.text-shadow[class*=-black][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.bg-img[data-v-cd70e807]{background-size:cover;background-position:center;background-repeat:no-repeat}.bg-mask[data-v-cd70e807]{background-color:#333;position:relative}.bg-mask[data-v-cd70e807]:after{content:"";border-radius:inherit;width:100%;height:100%;display:block;background-color:rgba(0,0,0,.4);position:absolute;left:0;right:0;bottom:0;top:0}.bg-mask uni-view[data-v-cd70e807],.bg-mask uni-cover-view[data-v-cd70e807]{z-index:5;position:relative}.bg-video[data-v-cd70e807]{position:relative}.bg-video uni-video[data-v-cd70e807]{display:block;height:100%;width:100%;object-fit:cover;position:absolute;top:0;z-index:0;pointer-events:none}.text-xs[data-v-cd70e807]{font-size:.625rem}.text-sm[data-v-cd70e807]{font-size:.75rem}.text-df[data-v-cd70e807]{font-size:.875rem}.text-lg[data-v-cd70e807]{font-size:1rem}.text-xl[data-v-cd70e807]{font-size:1.125rem}.text-xxl[data-v-cd70e807]{font-size:1.375rem}.text-sl[data-v-cd70e807]{font-size:2.5rem}.text-xsl[data-v-cd70e807]{font-size:3.75rem}.text-Abc[data-v-cd70e807]{text-transform:Capitalize}.text-ABC[data-v-cd70e807]{text-transform:Uppercase}.text-abc[data-v-cd70e807]{text-transform:Lowercase}.text-price[data-v-cd70e807]:before{content:"\a5";font-size:80%;margin-right:.125rem}.text-cut[data-v-cd70e807]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.text-bold[data-v-cd70e807]{font-weight:700}.text-center[data-v-cd70e807]{text-align:center}.text-content[data-v-cd70e807]{line-height:1.6}.text-left[data-v-cd70e807]{text-align:left}.text-right[data-v-cd70e807]{text-align:right}.text-red[data-v-cd70e807],.line-red[data-v-cd70e807],.lines-red[data-v-cd70e807]{color:#e54d42}.text-orange[data-v-cd70e807],.line-orange[data-v-cd70e807],.lines-orange[data-v-cd70e807]{color:#f37b1d}.text-yellow[data-v-cd70e807],.line-yellow[data-v-cd70e807],.lines-yellow[data-v-cd70e807]{color:#fbbd08}.text-olive[data-v-cd70e807],.line-olive[data-v-cd70e807],.lines-olive[data-v-cd70e807]{color:#8dc63f}.text-green[data-v-cd70e807],.line-green[data-v-cd70e807],.lines-green[data-v-cd70e807]{color:#39b54a}.text-cyan[data-v-cd70e807],.line-cyan[data-v-cd70e807],.lines-cyan[data-v-cd70e807]{color:#1cbbb4}.text-blue[data-v-cd70e807],.line-blue[data-v-cd70e807],.lines-blue[data-v-cd70e807]{color:#0081ff}.text-purple[data-v-cd70e807],.line-purple[data-v-cd70e807],.lines-purple[data-v-cd70e807]{color:#6739b6}.text-mauve[data-v-cd70e807],.line-mauve[data-v-cd70e807],.lines-mauve[data-v-cd70e807]{color:#9c26b0}.text-pink[data-v-cd70e807],.line-pink[data-v-cd70e807],.lines-pink[data-v-cd70e807]{color:#e03997}.text-brown[data-v-cd70e807],.line-brown[data-v-cd70e807],.lines-brown[data-v-cd70e807]{color:#a5673f}.text-grey[data-v-cd70e807],.line-grey[data-v-cd70e807],.lines-grey[data-v-cd70e807]{color:#8799a3}.text-gray[data-v-cd70e807],.line-gray[data-v-cd70e807],.lines-gray[data-v-cd70e807]{color:#aaa}.text-black[data-v-cd70e807],.line-black[data-v-cd70e807],.lines-black[data-v-cd70e807]{color:#333}.text-white[data-v-cd70e807],.line-white[data-v-cd70e807],.lines-white[data-v-cd70e807]{color:#fff}.zy-upgrade-topbg-green[data-v-cd70e807]{background-image:url(../../assets/green.20d5f80a.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-red[data-v-cd70e807]{background-image:url(../../assets/red.8267d3cf.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-pink[data-v-cd70e807]{background-image:url(../../assets/pink.78f243a3.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-yellow[data-v-cd70e807]{background-image:url(../../assets/yellow.4438648c.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-blue[data-v-cd70e807]{background-size:100% 100%;background-repeat:no-repeat}.zy-upgrade-title[data-v-cd70e807]{font-size:1.09375rem;font-weight:600}.all[data-v-8b11c490]{margin-top:1.40625rem}.all .all-content[data-v-8b11c490]{width:100%;height:40.625rem}.all[data-v-842c1160]{margin-top:1.40625rem}.all .all-content[data-v-842c1160]{width:100%;height:40.625rem}.index-content-other[data-v-db2cf42d]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-right[data-v-db2cf42d]{width:100%;border-radius:1.5625rem;display:flex;justify-content:flex-end;height:3.75rem;align-items:center}.item[data-v-db2cf42d]{display:flex;align-items:center;justify-content:space-between;width:100%;height:4.0625rem}.item .left-item[data-v-db2cf42d]{display:flex;align-items:center;margin-left:.625rem}.item .left-item .left-icon[data-v-db2cf42d]{margin:0 .625rem;width:1.25rem;height:1.25rem}.item .right-item[data-v-db2cf42d]{display:flex;align-items:center;margin-right:1.5625rem}.item .right-item .right-icon[data-v-db2cf42d]{width:.46875rem;height:.9375rem}.array-father[data-v-db2cf42d]{background-color:rgba(255,255,255,.6);width:98.2%;border-radius:.9375rem}.bottom-button[data-v-db2cf42d]{margin-top:.9375rem;background-color:rgba(255,255,255,.6);width:98.2%;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:.9375rem;height:3.125rem;color:#0174d3}.popup-any[data-v-db2cf42d]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:999;opacity:0;transition:opacity .5s ease;background-color:rgba(0,0,0,.3)}.mask[data-v-db2cf42d]{position:absolute;top:0;right:0;bottom:0;left:0}.box-any[data-v-db2cf42d]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:31.25rem;height:46.875rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;padding:2.03125rem 1.25rem}.title-left[data-v-db2cf42d]{display:flex;align-items:center}.title-left .back-img[data-v-db2cf42d]{width:1.875rem;height:1.875rem;margin-right:.9375rem}.title-left .back-font[data-v-db2cf42d]{font-size:1.09375rem;font-weight:600}.index-content-other[data-v-08e03fe2]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-down[data-v-08e03fe2]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.index-content-right[data-v-08e03fe2]{height:calc(100% - .9375rem);width:calc(100% - 1.875rem);background-color:rgba(255,255,255,.8);background-image:url(../../static/index/leida/bgc.png);background-position:30% 70%;border-radius:1.5625rem;display:flex;position:relative}.leida[data-v-08e03fe2]{margin-top:.9375rem;height:100%;width:35%;display:flex;justify-content:center;align-items:center;flex-direction:column;position:relative}.kutong-father[data-v-08e03fe2]{width:9.375rem;height:14.0625rem;position:relative}.kutong-img[data-v-08e03fe2]{position:absolute;top:0;left:0;width:9.375rem;height:9.375rem}.kutong-shan[data-v-08e03fe2]{position:absolute;top:0;left:0;width:4.6875rem;height:6.4375rem;transform-origin:100% 73%}.spin-anim[data-v-08e03fe2]{animation:spin-08e03fe2 2s linear infinite;animation-play-state:running}.no-anim[data-v-08e03fe2]{animation:spin-08e03fe2 2s linear infinite;animation-play-state:paused}.spin-anim-spec[data-v-08e03fe2]{animation:spinx-08e03fe2 2s linear infinite;animation-play-state:running}.no-anim-spec[data-v-08e03fe2]{animation:spinx-08e03fe2 2s linear infinite;animation-play-state:paused}.huan[data-v-08e03fe2]{position:absolute;top:-2.03125rem;left:-2.03125rem;width:13.4375rem;height:13.4375rem;border:.625rem solid #cedcf5;border-radius:50%}.quarter-ring[data-v-08e03fe2]{position:absolute;top:-5%;left:-5%;width:110%;height:110%;box-sizing:border-box;border:.625rem solid transparent;border-top-color:#03a9ff;border-radius:50%;transform:rotate(0);transform-origin:center center}.jindutiao[data-v-08e03fe2]{width:12.5rem;border-radius:.625rem;height:.625rem;background-color:#a6c9fa;overflow:hidden}.progress-fill[data-v-08e03fe2]{width:100%;height:100%;background:linear-gradient(to bottom,#00c9ff,#0076ff);transform-origin:left center;will-change:transform;transition:transform .05s linear}.color-font[data-v-08e03fe2]{color:#415273;margin-top:.625rem;height:.625rem}.agagin-button[data-v-08e03fe2]{width:7.5rem;height:2.8125rem;margin-top:2.5rem;border-radius:1.09375rem;background:linear-gradient(to bottom,#00c9ff,#0076ff);display:flex;justify-content:center;align-items:center;color:#fff}.other[data-v-08e03fe2]{width:50%;height:100%}.other-father[data-v-08e03fe2]{margin-top:4.6875rem;height:calc(100% - 4.6875rem);width:100%}.card-father[data-v-08e03fe2]{width:100%;display:flex;flex-wrap:wrap}.card[data-v-08e03fe2]{width:45%;margin-left:3%;height:16.5625rem;box-shadow:.0625rem .125rem .25rem .0625rem rgba(0,0,0,.3);background-color:#fff;border-radius:.9375rem;margin-bottom:1.09375rem;padding:0 .78125rem;position:relative}.card .rename-father[data-v-08e03fe2]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:17.1875rem;height:10.9375rem;border-radius:.9375rem;box-shadow:.0625rem .125rem .25rem .0625rem rgba(0,0,0,.3);background-color:#fff;display:flex;flex-direction:column;align-items:center;padding:0 .9375rem}.card .rename-father .rename-title[data-v-08e03fe2]{width:100%;height:2.5rem;border-bottom:.0625rem solid #f5f5f5;display:flex;justify-content:center;align-items:center}.card .rename-father .rename-gray[data-v-08e03fe2]{width:100%;height:2.5rem;display:flex;color:#a7a7a7;align-items:center}.card .rename-father .rename-input[data-v-08e03fe2]{width:100%;height:2.5rem;display:flex;background-color:#f5f6fa;border-radius:.625rem;color:#a7a7a7;align-items:center;padding:0 .625rem;position:relative}.card .rename-father .rename-input .uni-input[data-v-08e03fe2]{font-size:.78125rem}.card .rename-father .rename-input .left-img[data-v-08e03fe2]{width:1.5625rem;height:1.5625rem;margin-right:.46875rem}.card .rename-father .rename-input .right-img[data-v-08e03fe2]{position:absolute;right:.9375rem;top:50%;transform:translateY(-50%);width:.9375rem;height:.9375rem}.card-title[data-v-08e03fe2]{width:100%;height:4.0625rem;display:flex;align-items:center;justify-content:space-between}.card-middle[data-v-08e03fe2]{width:100%;height:10rem;display:flex;justify-content:space-between}.video-box[data-v-08e03fe2]{width:82%;height:10rem;background-color:#e5ecfa;display:flex;justify-content:center;align-items:center;border-radius:.625rem}.video-box-img[data-v-08e03fe2]{width:2.5rem;height:2.5rem}@keyframes spin-08e03fe2{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes spinx-08e03fe2{0%{transform:rotate(-70deg)}to{transform:rotate(290deg)}}@keyframes fadeIn-08e03fe2{0%{opacity:0;transform:translateY(.3125rem)}to{opacity:1;transform:translateY(0)}}.fade-in[data-v-08e03fe2]{animation:fadeIn-08e03fe2 .4s ease-out forwards}.index-content-title[data-v-08e03fe2]{position:absolute;top:1.875rem;left:1.875rem;display:flex;align-items:center}.index-content-title .shu[data-v-08e03fe2]{width:.625rem;height:1.5625rem;background:linear-gradient(to right,#0052c2,#00b4ff);border-radius:.625rem;margin-right:.9375rem}.index-content-title .shu-font[data-v-08e03fe2]{color:#415273;font-size:1.09375rem}.right-box[data-v-08e03fe2]{background:#00abff;width:5rem;height:2.03125rem;border-radius:.625rem;display:flex;justify-content:center;align-items:center;color:#fff}.small-menu[data-v-08e03fe2]{width:2.34375rem;height:2.28125rem;border-radius:.625rem;background-color:#e7ecfa;display:flex;justify-content:center;align-items:center;margin-bottom:.3125rem}.small-menu .small-img[data-v-08e03fe2]{height:1.5625rem;width:1.5625rem}.card-bottom[data-v-08e03fe2]{margin-top:.53125rem;margin-left:.3125rem;display:flex}.card-bottom .bottom-img[data-v-08e03fe2]{width:1.1875rem;height:1.1875rem;margin-left:.9375rem}.blue-button[data-v-08e03fe2]{margin-top:.625rem;width:5.625rem;height:2.1875rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;background:linear-gradient(to bottom,#00c9ff,#0076ff)}.index-content-other[data-v-3c477a5f]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-down[data-v-3c477a5f]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.index-content-right[data-v-3c477a5f]{height:calc(100% - .9375rem);width:calc(100% - 1.875rem);background-color:rgba(255,255,255,.8);background-image:url(../../static/index/leida/bgc.png);background-position:30% 70%;border-radius:1.5625rem;display:flex;position:relative}.index-content-right .index-content-title[data-v-3c477a5f]{position:absolute;top:1.875rem;left:1.875rem;display:flex;align-items:center}.index-content-right .index-content-title .shu[data-v-3c477a5f]{width:.625rem;height:1.5625rem;background:linear-gradient(to right,#0052c2,#00b4ff);border-radius:.625rem;margin-right:.9375rem}.index-content-right .index-content-title .shu-font[data-v-3c477a5f]{color:#415273;font-size:1.09375rem}.saomiao[data-v-3c477a5f]{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);width:12.5rem;height:12.5rem;background-image:url(../../static/index/leida/fourjiao.png);background-repeat:no-repeat;background-attachment:fixed;background-size:cover}.saomiao[data-v-3c477a5f]:before{content:"";position:absolute;top:0;left:0;width:100%;animation:scanMove-3c477a5f 1.3s ease-in-out infinite;z-index:1001;height:2.5rem;background:linear-gradient(to bottom,rgba(5,170,254,.6),rgba(5,170,254,.1),transparent);will-change:transform}.saomiao .saomiao-son[data-v-3c477a5f]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:11.25rem;height:11.25rem;border-radius:1.5625rem;background-color:#dae4f8}.saomiao .saomiao-son .saomiao-son-son[data-v-3c477a5f]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:10rem;height:10rem;border-radius:1.5625rem;background-color:#d0e0f6}.saomiao .saomiao-son .saomiao-son-son .saomiao-son-son-img[data-v-3c477a5f]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:7.8125rem;height:7.8125rem;border-radius:.9375rem;background-image:url(../../static/index/leida/QR.png);background-repeat:no-repeat;background-attachment:fixed;background-size:cover}@keyframes scanMove-3c477a5f{0%{top:10%}to{top:80%}}.index-content-other[data-v-5fc7e05c]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-down[data-v-5fc7e05c]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.index-content-right[data-v-5fc7e05c]{height:calc(100% - .9375rem);width:calc(100% - 1.875rem);background-color:rgba(255,255,255,.8);background-image:url(../../static/index/leida/bgc.png);background-position:30% 70%;border-radius:1.5625rem;display:flex;position:relative}.index-content-right .index-content-title[data-v-5fc7e05c]{position:absolute;top:1.875rem;left:1.875rem;display:flex;align-items:center}.index-content-right .index-content-title .shu[data-v-5fc7e05c]{width:.625rem;height:1.5625rem;background:linear-gradient(to right,#0052c2,#00b4ff);border-radius:.625rem;margin-right:.9375rem}.index-content-right .index-content-title .shu-font[data-v-5fc7e05c]{color:#415273;font-size:1.09375rem}.saomiao[data-v-5fc7e05c]{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);display:flex}.saomiao .saoma-input[data-v-5fc7e05c]{background-color:#fff;width:17.1875rem;height:2.8125rem;border-radius:.9375rem;padding-left:3.125rem;z-index:1}.saomiao .left-img[data-v-5fc7e05c]{width:1.5625rem;height:1.5625rem;position:absolute;top:50%;left:.9375rem;transform:translateY(-50%);z-index:2}.saomiao .right-img[data-v-5fc7e05c]{width:1.5625rem;height:1.5625rem;position:absolute;top:50%;right:6.875rem;transform:translateY(-50%);z-index:2}.blue-button[data-v-5fc7e05c]{margin-left:.9375rem;width:5.3125rem;height:2.8125rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:.9375rem;background:linear-gradient(to bottom,#00c9ff,#0076ff)}.big-ball[data-v-5fc7e05c]{width:6.25rem;height:6.25rem;position:absolute;top:50%;left:-1.71875rem;transform:translateY(-50%);border-radius:50%;background-color:#dbe4f6}.big-ball .ball[data-v-5fc7e05c]{width:4.6875rem;height:4.6875rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border-radius:50%;background-color:#cfddf1}.backgroundContainer[data-v-aebf66be]{display:flex;flex-direction:column;position:relative;width:100%;height:100vh;background-image:url(../../static/index/lightbgcnew.png);background-size:cover;background-position:center center;overflow:hidden}.darkbackgroundContainer[data-v-aebf66be]{display:flex;flex-direction:column;position:relative;width:100%;height:100vh;background-image:url(../../static/index/background.png);background-size:cover;background-position:center center;overflow:hidden}.index-title[data-v-aebf66be]{display:flex;width:calc(100% - 3.4375rem);height:4.0625rem;justify-content:space-between;margin:.625rem 1.5625rem 0 1.875rem}.index-title .index-title-left[data-v-aebf66be]{display:flex;height:100%;align-items:center;margin-top:.625rem}.index-title .index-title-left .index-title-left-wel[data-v-aebf66be]{margin-left:1.25rem}.index-title .index-title-left .index-title-left-weight[data-v-aebf66be]{font-weight:700;margin:0 .3125rem}.index-title .index-title-right[data-v-aebf66be]{display:flex;height:100%;align-items:center;margin-top:.625rem;margin-right:.3125rem}.index-title .index-title-right .top-card[data-v-aebf66be]{width:5.625rem;height:1.71875rem;border-radius:.9375rem;background-color:#e2e7ff;display:flex;align-items:center;margin-right:.625rem}.index-title .index-title-right .top-card .top-card-img[data-v-aebf66be]{width:1.09375rem;height:1.09375rem;margin-right:.15625rem;margin-left:.625rem}.index-title .index-title-right .top-card .top-card-font[data-v-aebf66be]{font-size:.78125rem}.index-content[data-v-aebf66be]{width:100%;height:calc(100vh - 4.6875rem);display:flex;margin-top:1.71875rem}.index-content .index-content-leftMenus[data-v-aebf66be]{height:100%;width:5.3125rem;display:flex;align-items:center;flex-direction:column;margin-top:.625rem;position:relative}.index-content .index-content-leftMenus .left-img[data-v-aebf66be]{width:2.8125rem;height:2.8125rem;z-index:100}.index-content .index-content-leftMenus .left-img-font[data-v-aebf66be]{margin-top:.3125rem;color:#fff;font-size:.78125rem}.index-content .index-content-leftMenus .left-img-font-target[data-v-aebf66be]{margin-top:.3125rem;color:#0174d3;font-size:.78125rem}.index-content .index-content-leftMenus .blue-circle-pos[data-v-aebf66be]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;height:25rem}.index-content .index-content-leftMenus .blue-circle-pos .blue-circle[data-v-aebf66be]{position:absolute;top:-1.5625rem;left:-2.125rem}.index-content .index-content-leftMenus .blue-circle-pos .blue-circle .blue-circle-size[data-v-aebf66be]{width:5.3125rem;height:7.8125rem}.red-pao[data-v-aebf66be]{position:absolute;top:1.25rem;left:1.875rem;padding:.09375rem .3125rem;background-color:#ff4c4e;color:#fff;font-size:.625rem;border-radius:.625rem;z-index:101}.ball-bgc[data-v-aebf66be]{width:1.8125rem;height:1.8125rem;border-radius:50%;background-color:#e2e7ff;display:flex;align-items:center;justify-content:center;margin-right:.78125rem}.ball-bgc .ball-img[data-v-aebf66be]{width:1.1875rem;height:1.1875rem}.index-title-title[data-v-aebf66be]{height:6.25rem}.index-title-left-img[data-v-aebf66be]{width:2.34375rem;height:2.34375rem}
diff --git a/unpackage/dist/build/app-plus/pages/Nursing/index.css b/unpackage/dist/build/app-plus/pages/Nursing/index.css
index 7b31370..0d08afe 100644
--- a/unpackage/dist/build/app-plus/pages/Nursing/index.css
+++ b/unpackage/dist/build/app-plus/pages/Nursing/index.css
@@ -1 +1 @@
-.overlay[data-v-8cdafce2]{position:fixed;top:0;left:0;width:100%;height:100vh;background:rgba(0,0,0,.5);z-index:999;will-change:opacity;transition:opacity .3s ease;opacity:0;display:block}.overlay-show[data-v-8cdafce2]{opacity:1}.drawer[data-v-8cdafce2]{position:fixed;top:0;right:0;height:100vh;background:#fff;z-index:1000;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;transform:translate(100%);transition:transform .4s ease;will-change:transform}.drawer-open[data-v-8cdafce2]{transform:translate(0)}.drawer-content[data-v-8cdafce2]{position:relative;width:100%;height:100%}.drawer-content-circle[data-v-8cdafce2]{position:absolute;top:calc(50% - 1.71875rem);left:-1.25rem;width:3.125rem;height:3.4375rem;border-radius:50%;z-index:-1;background:linear-gradient(to bottom,#dfecfa,#c9dbee);display:flex;align-items:center;-webkit-clip-path:inset(0 60% 0 0);clip-path:inset(0 60% 0 0)}.drawer-img[data-v-8cdafce2]{width:.78125rem;height:.78125rem;margin-left:.3125rem;transform:rotate(180deg)}.draw-all[data-v-6070efba]{width:100%;height:100%;display:flex;flex-direction:column;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;overflow:hidden}.draw-all .draw-title[data-v-6070efba]{width:100%;height:4.375rem;display:flex}.draw-all .draw-title .draw-title-gun[data-v-6070efba]{margin-top:2.1875rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.5625rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.draw-all .draw-title .draw-title-font[data-v-6070efba]{margin-top:2.125rem;font-size:1.25rem;font-weight:700}.draw-all .draw-contain[data-v-6070efba]{width:100%;height:calc(100vh - 4.375rem)}.draw-all .draw-contain .draw-contain-jindu[data-v-6070efba]{width:100%;height:7.8125rem;display:flex;justify-content:center;align-items:center}.downitems-father[data-v-6070efba]{width:100%;height:calc(100% - 6.40625rem);display:flex}.downitems-father .downitems-left[data-v-6070efba]{height:100%;width:17.1875rem}.downitems-father .downitems-left .downitems-left-mar[data-v-6070efba]{margin-left:2.03125rem}.downitems-father .downitems-left .downitems-left-mar .downitems-left-img[data-v-6070efba]{width:13.125rem;height:9.375rem;margin-top:2.5rem}.downitems-father .downitems-left .downitems-left-father[data-v-6070efba]{display:flex;margin-top:.625rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-img[data-v-6070efba]{width:1.1875rem;height:1.1875rem;margin:.1875rem .40625rem 0 .625rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-img-laba[data-v-6070efba]{width:1.1875rem;height:1.1875rem;margin-top:.1875rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-font[data-v-6070efba]{font-size:1.25rem;width:9.375rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-font-laba[data-v-6070efba]{font-size:1.25rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-font-small[data-v-6070efba]{font-size:1.09375rem;width:12.5rem}.downitems-father .downitems-left .downitems-kuai[data-v-6070efba]{margin-left:1.15625rem;background-color:rgba(236,240,251,.4);border-radius:.625rem;width:10.9375rem;height:7.1875rem;margin-top:.9375rem;display:flex;justify-content:center;align-items:center}.downitems-father .downitems-left .downitems-kuai .downitems-kuai-img[data-v-6070efba]{width:3.75rem;height:3.75rem}.downitems-father .downitems-left .downitems-says[data-v-6070efba]{color:#6f7fa3;font-size:1.09375rem;margin-left:4.4375rem;margin-top:.625rem}.downitems-father .downitems-right[data-v-6070efba]{height:100%;width:20.3125rem}.downitems-father .downitems-right .downitems-all[data-v-6070efba]{margin-left:1.875rem}.downitems-father .downitems-right .downitems-all .downitems-all-font[data-v-6070efba]{margin-top:.9375rem;font-size:1.25rem}.downitems-father .downitems-center[data-v-6070efba]{height:100%;width:18.75rem;position:relative}.downitems-father .downitems-center .downitems-button[data-v-6070efba]{position:absolute;left:30%;bottom:2.5rem;background:linear-gradient(to right,#00c9ff,#0076ff);width:8.4375rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1.25rem}.downitems-center-title[data-v-6070efba]{width:100%;display:flex}.downitems-center-title .downitems-center-title-gun[data-v-6070efba]{margin-top:1.5625rem;margin-left:0;margin-right:.5625rem;width:.40625rem;height:1.5625rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.downitems-center-title .downitems-center-title-font[data-v-6070efba]{margin-top:1.5625rem;font-size:1.25rem;font-weight:700}.downitems-center-title .downitems-center-says[data-v-6070efba]{display:flex;margin-top:1.5625rem;margin-left:5.625rem;text-align:right;color:#6f7fa3;font-size:1.125rem}.downitems-center-title .downitems-center-father[data-v-6070efba]{display:flex;justify-content:center;align-items:center;width:1.5625rem;height:1.5625rem;border-radius:50%;background-color:#bac5de;margin-right:.3125rem;margin-top:0}.downitems-center-title .downitems-center-father .downitems-center-says-maike[data-v-6070efba]{width:1.25rem;height:1.25rem}.downitems-shu[data-v-6070efba]{width:2.1875rem;height:100%;margin-top:.125rem}.downitems-textarea[data-v-6070efba]{margin-top:.625rem}.custom-textarea[data-v-6070efba]{color:#6f7fa3;background-color:rgba(255,255,255,.3);width:17.8125rem;height:7.5rem;border-radius:.625rem;font-size:1.25rem;padding-left:.9375rem;padding-top:.625rem}.radio-circle-top-father[data-v-6070efba]{margin-left:.9375rem}.radio-circle-top-father .radio-circle-top[data-v-6070efba]{margin-top:.9375rem;display:flex}.radio-circle[data-v-6070efba],.radio-circle-target[data-v-6070efba]{position:relative;margin-top:.0625rem;width:1.25rem;height:1.25rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-circle-target[data-v-6070efba]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.9375rem;height:.9375rem;background-color:#02abfe;border-radius:50%}.radio-font[data-v-6070efba]{margin-left:.46875rem;margin-right:1.875rem;font-size:1.125rem}.downitems-card-all[data-v-6070efba]{width:100%;display:flex;flex-wrap:wrap;margin-top:.625rem}.downitems-card-all .downitems-card-one[data-v-6070efba]{width:8.4375rem;height:4.6875rem;margin-right:.625rem;margin-bottom:.9375rem;border-radius:.625rem;background-color:#f3f8fd;border:.03125rem solid #52668C;box-shadow:0 .125rem .125rem rgba(0,0,0,.2);display:flex;justify-content:center;align-items:center}.downitems-card-all .downitems-card-one-target[data-v-6070efba]{width:8.4375rem;height:4.6875rem;margin-right:.625rem;margin-bottom:.9375rem;border-radius:.625rem;background:linear-gradient(to bottom,#b8e5ff,#f7d0ef);border:.03125rem solid #fff;box-shadow:0 .125rem .125rem rgba(0,0,0,.2);display:flex;justify-content:center;align-items:center}.downitems-card-all .downitems-card[data-v-6070efba]{display:flex;justify-content:center;align-items:center}.downitems-card-all .downitems-card .downitems-card-font[data-v-6070efba]{font-weight:700;margin-left:.3125rem;margin-right:.3125rem;font-size:1.25rem}.downitems-card-all .downitems-card .downitems-card-father[data-v-6070efba]{width:2.8125rem;height:2.8125rem;border-radius:1.5625rem;border:.03125rem solid #94B0C3;background-color:#fff;display:flex;justify-content:center;overflow:hidden}.downitems-card-all .downitems-card .downitems-card-father .downitems-card-img[data-v-6070efba]{width:2.5rem;height:2.5rem;margin-top:.3125rem}.container[data-v-6070efba]{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100vh}.modal[data-v-6070efba]{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center}.modal-content[data-v-6070efba]{width:80vw;height:80vh;background:#fff;border-radius:8px;overflow:hidden}.right-container[data-v-6d6a66c6]{width:calc(100% - 7.34375rem);height:100vh;transition:opacity 1s ease}.right-container .right-container-sec[data-v-6d6a66c6]{width:100%;display:flex;position:relative}.right-container .right-container-sec .right-container-left-font-spec[data-v-6d6a66c6]{position:absolute;top:5.625rem;left:18.125rem;width:3.125rem;height:1.25rem;font-size:.78125rem;border-radius:.15625rem;color:#fff;z-index:10;background-color:#34c678;display:flex;justify-content:center;align-items:center}.right-container .right-container-sec .right-container-fir-left-carousel[data-v-6d6a66c6]{position:absolute;right:7.65625rem;top:.53125rem}.right-container .right-container-sec .right-container-fir-left-carousel .carousel[data-v-6d6a66c6]{position:relative;width:.9375rem;height:2.5rem}.right-container .right-container-sec .right-container-fir-left-carousel .carousel .dots[data-v-6d6a66c6]{position:absolute;top:50%;right:.3125rem;transform:translateY(-50%);display:flex;flex-direction:column;gap:.21875rem}.right-container .right-container-sec .right-container-fir-left-carousel .carousel .dots .dot[data-v-6d6a66c6]{width:.3125rem;height:.3125rem;border-radius:50%;background-color:#657494;cursor:pointer;transition:background-color .3s ease}.right-container .right-container-sec .right-container-fir-left-carousel .carousel .dots .dot-dark[data-v-6d6a66c6]{width:.3125rem;height:.3125rem;border-radius:50%;background-color:#fff;cursor:pointer;transition:background-color .3s ease}.right-container .right-container-sec .right-container-fir-left-carousel .carousel .dots .dot.active[data-v-6d6a66c6]{background-color:#01a0fe}.right-container .right-container-sec .right-container-right-father-dark[data-v-6d6a66c6]{height:19.6875rem;border-radius:1.5625rem;background-color:#16304c;border:.0625rem solid transparent;background:url(../../static/index/cardbgc/bgcdark.png) padding-box,linear-gradient(45deg,#9bc4f8,#285399,#9bc4f8,#285399,#9bc4f8) border-box;background-clip:padding-box,border-box;background-color:rgba(12,25,47,.1);position:relative;display:flex;flex-direction:column;box-shadow:0 .25rem .5rem rgba(105,129,178,.8);overflow:hidden}.right-container .right-container-sec .right-container-right-father-dark .uni-margin-wrap[data-v-6d6a66c6]{margin-top:6.25rem;width:37.5rem}.right-container .right-container-sec .right-container-right-father-dark .uni-margin-wrap .swiper[data-v-6d6a66c6]{height:28.125rem}.right-container .right-container-sec .right-container-right-father-dark .uni-margin-wrap .swiper .swiper-item-flex[data-v-6d6a66c6]{display:flex}.right-container .right-container-sec .right-container-right-father-dark .uni-margin-wrap .swiper .swiper-item[data-v-6d6a66c6]{display:block;height:9.375rem;line-height:9.375rem;text-align:center}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next[data-v-6d6a66c6]{height:100%;width:21.875rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-people[data-v-6d6a66c6]{display:flex;margin-bottom:.625rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-people .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.15625rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-people .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:2.8125rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-people .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:2.8125rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-font[data-v-6d6a66c6]{font-size:2.03125rem;margin-top:1.5625rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-font-dark[data-v-6d6a66c6]{font-size:2.03125rem;margin-top:1.5625rem;margin-bottom:.3125rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;font-weight:700}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-text[data-v-6d6a66c6]{margin-left:.3125rem;font-size:2.1875rem;font-weight:700;width:25rem;margin-bottom:1.5625rem;line-height:2.1875rem;position:relative}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-text .time-text-img[data-v-6d6a66c6]{position:absolute;top:0;left:9.375rem;width:2.5rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father[data-v-6d6a66c6]{width:100%;height:17.5rem;display:flex;justify-content:center;align-items:center}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-left[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-top:-4.6875rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark[data-v-6d6a66c6]{margin-left:1.5625rem;margin-top:1.875rem;width:23.84375rem;height:13.4375rem;border-radius:1.25rem;position:relative;display:flex;box-shadow:.0625rem 0 0 .0625rem;background-color:#16304c;border:.0625rem solid #fff}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-line[data-v-6d6a66c6]{width:1px;height:6.25rem;background:linear-gradient(to top,rgba(0,0,0,0),gray,rgba(0,0,0,0));margin-left:-.625rem;margin-right:.9375rem;margin-top:3.125rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:14.0625rem;position:relative}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-type[data-v-6d6a66c6]{position:absolute;top:0;left:-.78125rem;width:7.8125rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-font[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#414f6e}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-font-dark[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#fff}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-img[data-v-6d6a66c6]{width:7.1875rem;height:6.25rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-font[data-v-6d6a66c6]{font-size:1.09375rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-font-dark[data-v-6d6a66c6]{font-size:1.09375rem;color:#fff;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card[data-v-6d6a66c6]{margin-left:1.5625rem;margin-top:1.875rem;width:23.84375rem;height:13.4375rem;border-radius:1.25rem;position:relative;display:flex;border:.03125rem solid black;box-shadow:0 .25rem .5rem rgba(0,0,0,.3)}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-line[data-v-6d6a66c6]{width:1px;height:6.25rem;background:linear-gradient(to top,rgba(0,0,0,0),gray,rgba(0,0,0,0));margin-left:-.625rem;margin-right:.9375rem;margin-top:3.125rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:14.0625rem;position:relative}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-card-type[data-v-6d6a66c6]{position:absolute;top:0;left:-.78125rem;width:7.8125rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-card-font[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#414f6e}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-img[data-v-6d6a66c6]{width:7.1875rem;height:6.25rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-font[data-v-6d6a66c6]{font-size:1.09375rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-font-dark[data-v-6d6a66c6]{font-size:1.5625rem;color:#fff;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-right[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-top:-4.6875rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-title[data-v-6d6a66c6]{width:100%;height:5.3125rem;position:relative}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-title .right-container-right-text[data-v-6d6a66c6]{line-height:4.0625rem;font-size:1.25rem;font-weight:600;margin-left:1.875rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-title .right-container-right-text-dark[data-v-6d6a66c6]{line-height:4.0625rem;font-size:1.25rem;font-weight:600;margin-left:1.875rem;color:#fff}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-title .right-container-right-img[data-v-6d6a66c6]{position:absolute;top:1.875rem;right:1.5625rem;width:1.5625rem;height:.46875rem}.right-container .right-container-sec .right-container-right-father[data-v-6d6a66c6]{width:100%;height:19.6875rem;border-radius:1.5625rem;border:.0625rem solid #fff;background-image:url(../../static/index/mountain.png);background-color:rgba(200,216,238,.8);background-position:60% 50%;position:relative;display:flex;flex-direction:column;box-shadow:0 .25rem .5rem rgba(105,129,178,.8);overflow:hidden}.right-container .right-container-sec .right-container-right-father .uni-margin-wrap[data-v-6d6a66c6]{margin-top:6.25rem;width:37.5rem}.right-container .right-container-sec .right-container-right-father .uni-margin-wrap .swiper[data-v-6d6a66c6]{height:28.125rem}.right-container .right-container-sec .right-container-right-father .uni-margin-wrap .swiper .swiper-item-flex[data-v-6d6a66c6]{display:flex}.right-container .right-container-sec .right-container-right-father .uni-margin-wrap .swiper .swiper-item[data-v-6d6a66c6]{display:block;height:9.375rem;line-height:9.375rem;text-align:center}.right-container .right-container-sec .right-container-right-father .time-tra-next[data-v-6d6a66c6]{height:100%;width:21.875rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-people[data-v-6d6a66c6]{display:flex;margin-bottom:.625rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-people .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.15625rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-people .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:2.8125rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-people .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:2.8125rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-font[data-v-6d6a66c6]{font-size:2.03125rem;margin-top:1.5625rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-font-dark[data-v-6d6a66c6]{font-size:2.03125rem;margin-top:1.5625rem;margin-bottom:.3125rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;font-weight:700}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-text[data-v-6d6a66c6]{margin-left:.3125rem;font-size:2.1875rem;font-weight:700;width:25rem;margin-bottom:1.5625rem;line-height:2.1875rem;position:relative}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-text .time-text-img[data-v-6d6a66c6]{position:absolute;top:0;left:9.375rem;width:2.5rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father[data-v-6d6a66c6]{width:100%;height:17.5rem;display:flex;justify-content:center;align-items:center}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-left[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-top:-4.6875rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark[data-v-6d6a66c6]{margin-left:1.5625rem;margin-top:1.875rem;width:23.84375rem;height:13.4375rem;border-radius:1.25rem;position:relative;display:flex;box-shadow:.0625rem 0 0 .0625rem;background-color:#16304c;border:.0625rem solid #fff}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-line[data-v-6d6a66c6]{width:1px;height:6.25rem;background:linear-gradient(to top,rgba(0,0,0,0),gray,rgba(0,0,0,0));margin-left:-.625rem;margin-right:.9375rem;margin-top:3.125rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:14.0625rem;position:relative}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-type[data-v-6d6a66c6]{position:absolute;top:0;left:-.78125rem;width:7.8125rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-font[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#414f6e}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-font-dark[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#fff}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-img[data-v-6d6a66c6]{width:7.1875rem;height:6.25rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-font[data-v-6d6a66c6]{font-size:1.09375rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-font-dark[data-v-6d6a66c6]{font-size:1.09375rem;color:#fff;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card[data-v-6d6a66c6]{margin-left:1.5625rem;margin-top:1.875rem;width:23.84375rem;height:13.4375rem;border-radius:1.25rem;position:relative;display:flex;border:.03125rem solid black;box-shadow:0 .25rem .5rem rgba(0,0,0,.3)}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-line[data-v-6d6a66c6]{width:1px;height:6.25rem;background:linear-gradient(to top,rgba(0,0,0,0),gray,rgba(0,0,0,0));margin-left:-.625rem;margin-right:.9375rem;margin-top:3.125rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:14.0625rem;position:relative}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-card-type[data-v-6d6a66c6]{position:absolute;top:0;left:-.78125rem;width:7.8125rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-card-font[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#414f6e}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-img[data-v-6d6a66c6]{width:7.1875rem;height:6.25rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-font[data-v-6d6a66c6]{font-size:1.09375rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-font-dark[data-v-6d6a66c6]{font-size:1.5625rem;color:#fff;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-right[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-top:-4.6875rem}.right-container .right-container-sec .right-container-right-father .right-container-right-title[data-v-6d6a66c6]{width:100%;height:5.3125rem;position:relative}.right-container .right-container-sec .right-container-right-father .right-container-right-title .right-container-right-text[data-v-6d6a66c6]{line-height:4.0625rem;font-size:1.25rem;font-weight:600;margin-left:1.875rem}.right-container .right-container-sec .right-container-right-father .right-container-right-title .right-container-right-text-dark[data-v-6d6a66c6]{line-height:4.0625rem;font-size:1.25rem;font-weight:600;margin-left:1.875rem;color:#fff}.right-container .right-container-sec .right-container-right-father .right-container-right-title .right-container-right-img[data-v-6d6a66c6]{position:absolute;top:1.875rem;right:1.5625rem;width:1.5625rem;height:.46875rem}.right-container .right-container-sec .right-container-left[data-v-6d6a66c6]{height:19.6875rem;border-radius:1.5625rem;border:.03125rem solid #fff;position:relative;display:flex;justify-content:center;align-items:center;background-color:rgba(255,255,255,.5);background-image:url(../../static/index/mountain.png);background-position:70% 45%;overflow:hidden;box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-sec .right-container-left-dark[data-v-6d6a66c6]{height:19.6875rem;border-radius:1.5625rem;background-color:#16304c;border:.0625rem solid transparent;background:url(../../static/index/cardbgc/bgcdark.png) padding-box,linear-gradient(45deg,#9bc4f8,#285399,#9bc4f8,#285399,#9bc4f8) border-box;background-clip:padding-box,border-box;background-color:rgba(12,25,47,.1);position:relative;display:flex;justify-content:center;align-items:center;overflow:hidden;box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-sec .uni-margin-wrap[data-v-6d6a66c6]{width:31.25rem}.right-container .right-container-sec .uni-margin-wrap .swiper[data-v-6d6a66c6]{height:21.875rem}.right-container .right-container-sec .uni-margin-wrap .swiper .swiper-item-flex[data-v-6d6a66c6]{display:flex;position:relative}.right-container .right-container-sec .uni-margin-wrap .swiper .swiper-item[data-v-6d6a66c6]{display:block;height:7.8125rem;line-height:9.375rem;text-align:center}.right-container .right-container-sec .right-container-fir-left-card-main-right[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-right:.3125rem;z-index:11}.right-container .right-container-sec .right-huli-fir[data-v-6d6a66c6]{width:7.8125rem;height:100%;margin-top:0;display:flex;justify-content:center;align-items:center;flex-direction:column}.right-container .right-container-sec .right-huli-fir .right-huli-view[data-v-6d6a66c6]{margin-left:.25rem;height:23.4375rem;overflow:auto;display:flex;justify-content:center;align-items:center;flex-direction:column;box-sizing:border-box}.right-container .right-container-sec .right-huli-fir .right-huli-view .right-huli-view-dis[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:100%;height:5.3125rem}.right-container .right-container-sec .right-huli-fir .right-huli-view .right-huli-view-dis .right-huli-img[data-v-6d6a66c6]{width:2.5rem;height:2.5rem}.right-container .right-container-sec .right-huli-fir .right-huli-view .right-huli-view-dis .right-huli-text[data-v-6d6a66c6]{width:100%;height:.3125rem;font-size:1.09375rem;text-align:center;margin-bottom:.15625rem}.right-container .right-container-sec .right-huli-fir .right-huli-view .right-huli-view-dis .right-huli-text-dark[data-v-6d6a66c6]{width:100%;height:.3125rem;font-size:1.09375rem;text-align:center;margin-bottom:.15625rem;color:#fff}.right-container .right-container-sec .right-huli-fir .right-huli-shang[data-v-6d6a66c6]{margin-top:1.25rem;width:.9375rem;height:.9375rem}.right-container .right-container-sec .right-huli-fir .right-huli-xia[data-v-6d6a66c6]{margin-bottom:1.25rem;width:.9375rem;height:.9375rem}.right-container .right-container-sec .right-container-photo[data-v-6d6a66c6]{display:flex;flex-direction:column;justify-content:center;align-items:center;margin-left:1.5625rem}.right-container .right-container-sec .right-container-photo .right-container-photo-img[data-v-6d6a66c6]{width:9.6875rem;height:10.9375rem;margin-bottom:.3125rem}.right-container .right-container-sec .right-container-photo .right-container-photo-text[data-v-6d6a66c6]{font-size:.9375rem;color:#324160}.right-container .right-container-sec .right-container-photo .right-container-photo-text-dark[data-v-6d6a66c6]{font-size:.9375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .right-container-fir-left-card-main-left[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-left:.9375rem}.right-container .right-container-sec .right-container-left-type[data-v-6d6a66c6]{position:absolute;top:1.3125rem;left:-.46875rem;width:7.34375rem;height:2.28125rem;z-index:10}.right-container .right-container-sec .right-container-left-font[data-v-6d6a66c6]{position:absolute;top:1.59375rem;left:1.5625rem;font-size:1.125rem;color:#fff;z-index:10}.right-container .right-container-sec .time-tra-thi[data-v-6d6a66c6]{margin-left:2.5rem;margin-top:2.1875rem;height:100%;width:17.1875rem;position:relative}.right-container .right-container-sec .time-tra-thi .time-text[data-v-6d6a66c6]{margin-left:.3125rem;font-size:1.09375rem;width:14.0625rem;margin-bottom:1.25rem;line-height:1.25rem}.right-container .right-container-sec .time-tra-thi .time-text-dark[data-v-6d6a66c6]{margin-left:.3125rem;color:#cdd6ea;font-size:1.09375rem;width:14.0625rem;margin-bottom:1.25rem;line-height:1.25rem}.right-container .right-container-sec .time-tra-thi .time-tra-thi-zhixing[data-v-6d6a66c6]{position:absolute;top:2.34375rem;left:14.0625rem}.right-container .right-container-sec .time-tra-thi .time-tra-thi-zhixing-font[data-v-6d6a66c6]{position:absolute;top:1.875rem;left:.3125rem;width:3.125rem;height:1.25rem;font-size:.78125rem;border-radius:.15625rem;color:#fff;z-index:10;background-color:#f37b5b;display:flex;justify-content:center;align-items:center}.right-container .right-container-sec .time-tra-thi .time-people-two[data-v-6d6a66c6]{display:flex;margin-top:1.25rem;margin-bottom:1.25rem}.right-container .right-container-sec .time-tra-thi .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.3125rem}.right-container .right-container-sec .time-tra-thi .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:.625rem}.right-container .right-container-sec .time-tra-thi .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:.625rem}.right-container .right-container-sec .time-tra-thi .time-people-thi[data-v-6d6a66c6]{display:flex}.right-container .right-container-sec .time-tra-thi .time-people-thi .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.15625rem;margin-left:.15625rem}.right-container .right-container-sec .time-tra-thi .time-people-thi .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:.625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.right-container .right-container-sec .time-tra-thi .time-people-thi .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:.625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.right-container .right-container-sec .time-tra-thi .time-button-view[data-v-6d6a66c6]{display:flex;margin-left:0;transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-thi .time-button-view .time-button-start[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to bottom,#af8ed7,#4d3e9b);border-left:.0625rem solid #fff;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem;margin-right:.78125rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-thi .time-button-view .time-button-end[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-thi .time-button-view .time-button-end-dark[data-v-6d6a66c6]{width:7.1875rem;height:2.5rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(0,0,0,.3);background:linear-gradient(to top,#6b87ba,#fff);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-thi .time-font[data-v-6d6a66c6]{font-size:2.1875rem;margin-top:3.75rem;margin-bottom:1.25rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .time-tra-thi .time-font-dark[data-v-6d6a66c6]{font-size:2.1875rem;margin-top:3.75rem;margin-bottom:1.25rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;font-weight:700}.right-container .right-container-sec .time-tra-thi .time-text-img[data-v-6d6a66c6]{position:absolute;top:0;left:9.375rem;width:2.5rem;height:2.5rem}.right-container .right-container-sec .time-tra-sec[data-v-6d6a66c6]{margin-left:2.5rem;margin-top:3.4375rem;height:100%;width:15.625rem;overflow:hidden}.right-container .right-container-sec .time-tra-sec .time-people-thi[data-v-6d6a66c6]{display:flex;margin-bottom:.46875rem}.right-container .right-container-sec .time-tra-sec .time-people-thi .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.15625rem;margin-left:.15625rem}.right-container .right-container-sec .time-tra-sec .time-people-thi .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:.625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.right-container .right-container-sec .time-tra-sec .time-people-thi .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:.625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.right-container .right-container-sec .time-tra-sec .time-button-view[data-v-6d6a66c6]{display:flex;margin-top:.9375rem;margin-left:0}.right-container .right-container-sec .time-tra-sec .time-button-view .time-button-start[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to top,#0da0b1,#04d3af);border-left:.0625rem solid #fff;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem;margin-right:.78125rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-sec .time-button-view .time-button-end[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-sec .time-button-view .time-button-end-dark[data-v-6d6a66c6]{width:7.1875rem;height:2.5rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(0,0,0,.3);background:linear-gradient(to top,#6b87ba,#fff);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-sec .time-font[data-v-6d6a66c6]{font-size:2.34375rem;margin-top:.9375rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .time-tra-sec .time-font-dark[data-v-6d6a66c6]{font-size:2.34375rem;margin-top:.9375rem;margin-bottom:.3125rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;font-weight:700}.right-container .right-container-sec .time-tra-sec .time-text-img[data-v-6d6a66c6]{position:absolute;top:0;left:9.375rem;width:2.5rem;height:2.5rem}.right-container .time-people-sec[data-v-6d6a66c6]{display:flex;margin-bottom:.3125rem}.right-container .time-people-sec .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.3125rem;margin-left:.15625rem;transition:all .4s ease-in-out}.right-container .time-people-sec .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:2.8125rem;transition:all .4s ease-in-out}.right-container .time-people-sec .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:2.8125rem;transition:all .4s ease-in-out}.right-container .right-container-fir[data-v-6d6a66c6]{width:100%;height:18.125rem;display:flex}.right-container .right-container-fir .right-container-fir-left-nav[data-v-6d6a66c6]{width:63%;height:17.125rem;position:relative;box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel[data-v-6d6a66c6]{position:absolute;left:29.0625rem;margin-top:.3125rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel[data-v-6d6a66c6]{position:relative;width:4.6875rem;height:3.125rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel .dots[data-v-6d6a66c6]{position:absolute;top:50%;right:.3125rem;transform:translateY(-50%);display:flex;flex-direction:column;gap:.21875rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel .dots .dot[data-v-6d6a66c6]{width:.3125rem;height:.3125rem;border-radius:50%;background-color:#657494;cursor:pointer;transition:background-color .3s ease}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel .dots .dot-dark[data-v-6d6a66c6]{width:.3125rem;height:.3125rem;border-radius:50%;background-color:#fff;cursor:pointer;transition:background-color .3s ease}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel .dots .dot.active[data-v-6d6a66c6]{background-color:#01a0fe}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card[data-v-6d6a66c6]{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:1.5625rem;border:.03125rem solid #fff;background-color:rgba(99,115,157,.1);background-image:url(../../static/index/mountain.png);background-position:60% 50%}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-dark[data-v-6d6a66c6]{position:absolute;top:0;left:0;width:100%;height:100%;border:.0625rem solid transparent;border-radius:1.5625rem;background:url(../../static/index/cardbgc/bgcdark.png) padding-box,linear-gradient(45deg,#9bc4f8,#285399,#9bc4f8,#285399,#9bc4f8) border-box;background-clip:padding-box,border-box;background-color:rgba(12,25,47,.1)}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;width:100%;height:100%}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .split-line-white-right-left[data-v-6d6a66c6]{width:.0625rem;height:25rem;background:linear-gradient(to top,rgba(0,0,0,0),#fff,rgba(0,0,0,0));margin-right:.625rem;position:relative}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .split-line-white-right-left .split-line-white-img[data-v-6d6a66c6]{position:absolute;top:0;left:-9.375rem;height:25rem;width:9.375rem;z-index:-1}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .uni-margin-wrap-fir[data-v-6d6a66c6]{width:100%}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .uni-margin-wrap-fir .swiper[data-v-6d6a66c6]{height:14.6875rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .uni-margin-wrap-fir .swiper .swiper-item-flex[data-v-6d6a66c6]{display:flex;margin-top:.9375rem;z-index:10}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .uni-margin-wrap-fir .swiper .swiper-item[data-v-6d6a66c6]{display:block;height:6.25rem;line-height:9.375rem;text-align:center}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-main-right[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-right:.78125rem;z-index:1}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir[data-v-6d6a66c6]{margin-top:1.25rem;margin-left:.9375rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-two[data-v-6d6a66c6]{display:flex}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-button-view[data-v-6d6a66c6]{display:flex;margin-top:.3125rem;margin-left:0}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-button-view .time-button-start[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to top,#047adb,#0ea7dd);border-left:.0625rem solid #fff;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem;margin-right:.78125rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-button-view .time-button-end[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-button-view .time-button-end-dark[data-v-6d6a66c6]{width:7.1875rem;height:2.5rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(0,0,0,.3);background:linear-gradient(to top,#6b87ba,#fff);transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-fir[data-v-6d6a66c6]{display:flex;margin-right:.625rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-fir .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.3125rem;margin-left:.15625rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-fir .time-people-font[data-v-6d6a66c6]{font-size:.9375rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-fir .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-font[data-v-6d6a66c6]{font-size:2.1875rem;margin-bottom:.9375rem;background:linear-gradient(to top,#334160,#687898);-webkit-background-clip:text;color:transparent;font-weight:700;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-font-dark[data-v-6d6a66c6]{font-size:2.1875rem;margin-bottom:.9375rem;background:linear-gradient(to right,#ebf4ff,#adc4e0);-webkit-background-clip:text;color:transparent;font-weight:700;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-text[data-v-6d6a66c6]{margin-left:.3125rem;font-size:1.09375rem;width:16.5625rem;margin-bottom:1.25rem;line-height:1.25rem;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-text-dark[data-v-6d6a66c6]{margin-left:.3125rem;color:#cdd6ea;font-size:1.09375rem;width:16.5625rem;margin-bottom:1.25rem;line-height:1.25rem;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;position:relative;margin-left:1.5625rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-zhixing[data-v-6d6a66c6]{position:absolute;top:.3125rem;left:27.1875rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-zhixing-font[data-v-6d6a66c6]{position:absolute;top:1.875rem;left:.3125rem;width:3.125rem;height:1.25rem;font-size:.78125rem;border-radius:.15625rem;color:#fff;z-index:10;background-color:#f37b5b;display:flex;justify-content:center;align-items:center}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-font[data-v-6d6a66c6]{font-size:1.0625rem;font-weight:350;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-font-dark[data-v-6d6a66c6]{font-size:1.0625rem;font-weight:350;transition:all .4s ease-in-out;color:#fff}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-laba-video[data-v-6d6a66c6]{width:100%;display:flex;justify-content:center;align-items:center;margin-top:.3125rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-laba-video .right-container-fir-left-card-main-laba[data-v-6d6a66c6]{width:1.40625rem;height:1.40625rem;margin-right:.15625rem;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-laba-video .right-container-fir-left-card-main-video[data-v-6d6a66c6]{width:1.40625rem;height:1.40625rem;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-img[data-v-6d6a66c6]{width:11.25rem;height:8.4375rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-main-left-up[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-right:0;margin-left:.625rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-hulilei[data-v-6d6a66c6]{position:absolute;top:1.3125rem;left:-.3125rem;width:6.875rem;height:2.28125rem;z-index:10}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-hulilei-font[data-v-6d6a66c6]{position:absolute;top:1.59375rem;left:1.40625rem;font-size:1.125rem;color:#fff;z-index:10}.right-container .right-container-fir .right-container-fir-right[data-v-6d6a66c6]{margin-left:2%;margin-right:2%;width:21.875rem;height:17.125rem;border-radius:1.5625rem;border:.03125rem solid #fff;background:url(../../static/index/rightbgi.png);background-size:cover;background-color:rgba(99,115,157,.1);box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-fir .right-container-fir-right-dark[data-v-6d6a66c6]{margin-left:2%;margin-right:2%;width:21.875rem;height:17.125rem;border-radius:1.5625rem;border:.03125rem solid #fff;background-color:#16304c;border:.0625rem solid transparent;background:url(../../static/index/cardbgc/bgcdark.png) padding-box,linear-gradient(45deg,#9bc4f8,#285399,#9bc4f8,#285399,#9bc4f8) border-box;background-clip:padding-box,border-box;background-color:rgba(12,25,47,.1);box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-fir .right-container-card[data-v-6d6a66c6]{margin-top:.78125rem;margin-left:1.25rem;position:relative}.right-container .right-container-fir .right-container-card .right-container-card-right[data-v-6d6a66c6]{position:absolute;right:0;top:0;width:3.75rem;height:10.9375rem;display:flex;align-items:center;justify-content:center;flex-direction:column;margin-bottom:.625rem;margin-right:.625rem}.right-container .right-container-fir .right-container-card .right-container-card-right .right-container-card-right-img[data-v-6d6a66c6]{width:1.875rem;height:1.875rem;margin-top:.3125rem}.right-container .right-container-fir .right-container-card .right-container-button[data-v-6d6a66c6]{display:flex;margin-left:-.625rem;margin-top:.71875rem}.right-container .right-container-fir .right-container-card .right-container-button .right-container-button-any[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:4.6875rem;position:relative}.right-container .right-container-fir .right-container-card .right-container-button .right-container-button-any .right-container-button-ray[data-v-6d6a66c6]{position:absolute;top:-.78125rem;left:0;width:4.9375rem;height:4.6875rem}.right-container .right-container-fir .right-container-card .right-container-button .right-container-button-any .right-container-button-text[data-v-6d6a66c6]{font-size:.78125rem;color:#313d56}.right-container .right-container-fir .right-container-card .right-container-button .right-container-button-img[data-v-6d6a66c6]{width:2.5rem;height:2.5rem}.right-container .right-container-fir .right-container-card .right-container-fenge[data-v-6d6a66c6]{width:100%;height:.0625rem;background:linear-gradient(to right,rgba(255,255,255,0),#fff,rgba(255,255,255,0))}.right-container .right-container-fir .right-container-card .right-container-tem[data-v-6d6a66c6]{display:flex;margin-top:.625rem;margin-bottom:.625rem}.right-container .right-container-fir .right-container-card .right-container-tem .right-container-tem-text[data-v-6d6a66c6]{font-size:1.5625rem;margin-right:2.1875rem}.right-container .right-container-fir .right-container-card .right-container-tem .right-container-tem-text-dark[data-v-6d6a66c6]{font-size:1.5625rem;margin-right:2.1875rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-fir .right-container-card .right-container-tem .right-container-tem-img[data-v-6d6a66c6]{width:2.03125rem;height:2.03125rem}.right-container .right-container-fir .right-container-card .right-container-title[data-v-6d6a66c6]{font-size:3.75rem;font-weight:500;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent;margin:0}.right-container .right-container-fir .right-container-card .right-container-title-dark[data-v-6d6a66c6]{font-size:3.75rem;display:block;margin:0;font-weight:500;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-fir .right-container-card .right-container-date[data-v-6d6a66c6]{font-size:1.09375rem;display:block;margin:0;margin-left:.5625rem;margin-bottom:.3125rem}.right-container .right-container-fir .right-container-card .right-container-date-dark[data-v-6d6a66c6]{font-size:1.09375rem;color:#7080a1;display:block;margin:0;margin-left:.5625rem;margin-bottom:.3125rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-fir .right-container-card .right-container-day[data-v-6d6a66c6]{font-size:1.09375rem;font-weight:600;margin-left:.5625rem}.right-container .right-container-fir .right-container-card .right-container-day-dark[data-v-6d6a66c6]{font-size:1.09375rem;font-weight:600;margin-left:.5625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-title-nav[data-v-6d6a66c6]{margin-top:2.34375rem;margin-bottom:.625rem;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-no[data-v-6d6a66c6]{font-size:1.09375rem;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-no-dark[data-v-6d6a66c6]{font-size:1.09375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-class[data-v-6d6a66c6]{font-size:1.09375rem;font-weight:800;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-class-dark[data-v-6d6a66c6]{font-size:1.09375rem;font-weight:800;margin-left:.625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-title-nav .right-container-title-class-anhei-button[data-v-6d6a66c6]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.9375rem;width:6.25rem;height:1.5625rem;background-color:#000;border:.0625rem solid}.right-container .right-container-title-nav .right-container-title-class-anhei-button .right-container-title-class-anhei[data-v-6d6a66c6]{font-size:.625rem;font-weight:800;color:#fff}.split-line[data-v-6d6a66c6]{margin-left:.625rem;margin-top:3.75rem;width:.0625rem;height:4.6875rem;background:linear-gradient(to top,rgba(0,0,0,0),#92a7c5,rgba(0,0,0,0))}.split-line-white-sec[data-v-6d6a66c6]{width:.0625rem;height:25rem;background:linear-gradient(to top,rgba(0,0,0,0),#fff,rgba(0,0,0,0));position:relative}.split-line-white-sec .split-line-white-img[data-v-6d6a66c6]{position:absolute;top:0;left:-9.375rem;height:25rem;width:9.375rem;pointer-events:none}.card-upfaguang[data-v-6d6a66c6]{position:absolute;top:8.28125rem;left:1.5625rem;height:18.75rem;width:15.625rem;transition:all .4s ease-in-out}.card-upfaguang-down[data-v-6d6a66c6]{position:absolute;top:19.375rem;left:26.875rem;height:18.75rem;width:15.625rem}.right-huli-sec[data-v-6d6a66c6]{margin-left:.21875rem;width:7.1875rem;height:100%;display:flex;justify-content:center;align-items:center;flex-direction:column;transition:all .4s ease-in-out}.right-huli-sec .right-huli-view[data-v-6d6a66c6]{width:100%;overflow:auto;display:flex;justify-content:center;align-items:flex-start;flex-direction:column;height:14.0625rem}.right-huli-sec .right-huli-view .right-huli-view-dis[data-v-6d6a66c6]{height:4.375rem;display:flex;justify-content:center;align-items:center;flex-direction:column;width:100%;transition:all .4s ease-in-out}.right-huli-sec .right-huli-view .right-huli-view-dis .right-huli-img[data-v-6d6a66c6]{width:2.8125rem;height:2.8125rem}.right-huli-sec .right-huli-view .right-huli-view-dis .right-huli-text[data-v-6d6a66c6]{width:100%;height:.46875rem;text-align:center;font-size:1.09375rem}.right-huli-sec .right-huli-view .right-huli-view-dis .right-huli-text-dark[data-v-6d6a66c6]{width:100%;height:.46875rem;text-align:center;font-size:1.09375rem;color:#fff;margin-top:.3125rem}.right-huli-sec .right-huli-shang[data-v-6d6a66c6],.right-huli-sec .right-huli-xia[data-v-6d6a66c6]{width:.9375rem;height:.625rem}.right-container-fir-left-card-flex[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;width:100%;height:100%;margin-left:.625rem}.right-container-fir-left-card-flex-sec[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;width:100%;height:100%;position:relative}.right-container-fir-left-card-flex-sec .right-container-fir-left-card-flex-sec-img[data-v-6d6a66c6]{position:absolute;top:1.3125rem;left:-.3125rem;width:6.875rem;height:2.28125rem;z-index:10}.right-container-fir-left-card-flex-sec .right-container-fir-left-card-flex-sec-font[data-v-6d6a66c6]{position:absolute;top:1.59375rem;left:1.40625rem;font-size:1.125rem;color:#fff;z-index:10}.right-container-fir-left-card-flex-sec .right-container-fir-left-card-flex-sec-imgright-fir[data-v-6d6a66c6]{position:absolute;width:3.125rem;height:1.5625rem;top:1.59375rem;left:20.3125rem;z-index:10}.right-container-fir-left-card-flex-sec .right-container-fir-left-card-flex-sec-imgright-sec[data-v-6d6a66c6]{position:absolute;width:3.125rem;height:1.5625rem;top:1.59375rem;left:20.9375rem;z-index:10}.savehundred[data-v-6d6a66c6]{width:100%;height:100%}.mt[data-v-6d6a66c6]{margin-top:1.5625rem}.progress-bar-container[data-v-6d6a66c6]{margin-top:.9375rem;width:60%;height:.625rem;background-color:#aab9d6;border-radius:15px;overflow:hidden}.progress-bar[data-v-6d6a66c6]{height:100%;background:linear-gradient(to top,#047adb,#0ea7dd);border-radius:15px 0 0 15px;transition:width .3s ease}.under-father[data-v-6d6a66c6]{position:fixed;bottom:0;display:flex;align-items:center;width:100%;height:4.6875rem}.under-father .under-father-view[data-v-6d6a66c6]{margin-left:.3125rem;margin-right:4.6875rem;position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column}.under-father .under-father-view .under-father-light[data-v-6d6a66c6]{position:absolute;bottom:-.625rem;left:-2.8125rem;width:9.375rem;height:6.25rem}.under-father .under-father-view .under-father-img[data-v-6d6a66c6]{width:2.5rem;height:2.5rem;margin-left:-.09375rem}.under-father .under-father-view .under-father-img-font[data-v-6d6a66c6]{font-size:.9375rem}.under-father .under-father-view .under-father-img-font-dark[data-v-6d6a66c6]{font-size:.9375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-icons[data-v-6d6a66c6]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.right-icons .right-icons-font[data-v-6d6a66c6]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-icons .right-icons-font-dark[data-v-6d6a66c6]{color:#fff;margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-icons .right-icons-img[data-v-6d6a66c6]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-1.25rem}.right-icons .right-icons-img-icon[data-v-6d6a66c6]{width:1.875rem;height:2.5rem;margin-top:-.3125rem;margin-left:.25rem}.swiper-item-flex .time-tra-thi-photo[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;width:9.375rem;flex-direction:column;transition:all .4s ease-in-out;margin-left:.625rem}.swiper-item-flex .time-tra-thi-photo .time-tra-thi-photo-img[data-v-6d6a66c6]{width:10.3125rem;height:10.3125rem;margin-top:-3.125rem;margin-left:-1.5625rem;transition:all .4s ease-in-out}.swiper-item-flex .time-tra-thi-photo .time-tra-thi-photo-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:1.5625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;transition:all .4s ease-in-out}.swiper-item-flex .time-tra-thi-photo .time-tra-thi-photo-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:1.5625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;transition:all .4s ease-in-out}.down-icons[data-v-6d6a66c6]{margin-top:.3125rem;width:100%;height:1.875rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-6d6a66c6]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.right-container-big[data-v-6d6a66c6]{transform:scale(1.562);transition:transform .5s ease;transform-origin:left top;background-color:#dce6fe;border-radius:.9375rem}.right-container-small[data-v-6d6a66c6]{transform:scale(1);transition:transform .5s ease;transform-origin:left top;background-color:#dce6fe;border-radius:1.5625rem;z-index:998}.right-container-right-big[data-v-6d6a66c6]{transform:scale(1.923);margin-left:2%;width:41%;transition:transform .5s ease;transform-origin:right bottom;background-color:#dce6fe;border-radius:.90625rem}.right-container-right-small[data-v-6d6a66c6]{transform:scale(1);margin-left:2%;width:41%;transition:transform .5s ease;transform-origin:right bottom;background-color:#dce6fe;border-radius:1.5625rem}.right-container-left-big[data-v-6d6a66c6]{transform:scale(1.781);width:55%;transition:transform .5s ease;transform-origin:left bottom;background-color:#b7c8f3;border-radius:.90625rem}.right-container-left-small[data-v-6d6a66c6]{transform:scale(1);width:55%;transition:transform .5s ease;transform-origin:left bottom;background-color:#b7c8f3;border-radius:1.5625rem}.super-card[data-v-81c0d68b]{display:flex;justify-content:center;width:100%;height:calc(100% - 12.5rem)}.super-card .scroll-x[data-v-81c0d68b]{height:100%;width:100%}.super-card .super-card-container[data-v-81c0d68b]{background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;overflow:hidden;width:51.5625rem;height:28.75rem;border-radius:.625rem;border:.0625rem solid #fff;box-shadow:.3125rem .3125rem 20px rgba(0,0,0,.1);position:relative}.super-card .super-card-time[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;height:2.5rem;width:3.125rem;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;font-weight:700;z-index:-1}.super-card .super-card-time-und[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;width:3.125rem;flex-direction:column;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1}.super-card .super-card-time-card[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;height:6.53125rem;width:100%;transition:all .8s;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.right-container[data-v-81c0d68b]{width:calc(100% - 7.34375rem);height:100vh;transition:opacity 1s ease;position:relative}.right-container .move-font[data-v-81c0d68b]{position:absolute;font-size:1.09375rem;font-weight:700}.right-container .doctorsay-container-view[data-v-81c0d68b]{width:100%;height:38.125rem;display:flex}.right-container .doctorsay-container-view .doctorsay-container-items[data-v-81c0d68b]{width:9.6875rem;height:38.125rem;margin-left:.9375rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up[data-v-81c0d68b]{display:flex;flex-wrap:wrap}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up .doctorsay-container-card[data-v-81c0d68b]{display:flex;flex-direction:column;justify-content:center;align-items:center;background-color:#ddeafa;width:4.0625rem;height:4.0625rem;margin:0 .5625rem .46875rem 0;border-radius:.9375rem;border:.0625rem solid #ddeafa;box-shadow:5px 5px 10px rgba(105,129,178,.2)}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up .doctorsay-container-card .doctorsay-container-card-img[data-v-81c0d68b]{width:2.34375rem;height:2.34375rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up .doctorsay-container-card .doctorsay-container-card-font[data-v-81c0d68b]{font-size:.9375rem;margin-top:-.3125rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up .doctorsay-container-card .doctorsay-container-card-font-dark[data-v-81c0d68b]{font-size:.9375rem;color:#fff;margin-top:-.3125rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down[data-v-81c0d68b]{background-color:#ddeafa;-webkit-backdrop-filter:blur(.25rem);backdrop-filter:blur(.25rem);width:9.0625rem;height:28.125rem;border-radius:.9375rem;margin-top:0;box-shadow:5px 5px 10px rgba(105,129,178,.8)}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-scroll[data-v-81c0d68b]{height:24.0625rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-top[data-v-81c0d68b]{height:2.5rem;display:flex;margin-bottom:.625rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-top .doctorsay-top-gun[data-v-81c0d68b]{margin-top:1.15625rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-top .doctorsay-top-font[data-v-81c0d68b]{font-size:1.0625rem;font-weight:700;margin-top:1.0625rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;height:2.8125rem;position:relative}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button .doctorsay-container-text-target[data-v-81c0d68b]{color:#016ad1;background-color:#c9e8ff;border-radius:.78125rem;border:.0625rem solid #fff;width:9.375rem;height:3.125rem;display:flex;justify-content:center;align-items:center;text-align:center;font-size:1.40625rem;transition:all .4s ease-in-out;box-shadow:5px 5px 10px rgba(105,129,178,.2);z-index:20;font-weight:700}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button .doctorsay-container-text[data-v-81c0d68b]{background-color:#f3f6fc;border:.0625rem solid #fff;border-radius:.78125rem;width:7.8125rem;height:2.34375rem;display:flex;justify-content:center;align-items:center;text-align:center;transition:all .4s ease-in-out;font-weight:500;font-size:.9375rem;box-shadow:5px 5px 10px rgba(105,129,178,.2)}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button .doctorsay-container-button-gun[data-v-81c0d68b]{position:absolute;top:.59375rem;left:.03125rem;width:.3125rem;height:1.5625rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button .doctorsay-container-button-uplight[data-v-81c0d68b]{position:absolute;top:1.25rem;left:.625rem;width:7.8125rem;height:1.5625rem;z-index:21;transition:all .4s ease-in-out}.right-container .doctorsay-container-view .doctorsay-container-container[data-v-81c0d68b]{border:.0625rem solid #fff;width:53.9375rem;height:41.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.3);-webkit-backdrop-filter:blur(.625rem);backdrop-filter:blur(.625rem);background-blend-mode:screen;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);overflow:hidden}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end[data-v-81c0d68b]{width:100%;display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father[data-v-81c0d68b]{height:100%;display:flex;flex-direction:column;width:100%}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items-all[data-v-81c0d68b]{width:calc(100% - 2.65625rem);height:6.25rem;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items[data-v-81c0d68b]{display:flex;width:calc(100% - 2.65625rem);height:6.25rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father[data-v-81c0d68b]{margin-right:.625rem;width:4.6875rem;height:4.6875rem;display:flex;justify-content:center;align-items:center;flex-direction:column;position:relative;background:linear-gradient(to bottom right,#fff,#dcdcf9,#dbdcf8);border-radius:.9375rem;border:.0625rem solid #fff;box-shadow:.3125rem .3125rem .625rem rgba(105,129,178,.2);transition:all 1.5s ease-in-out}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-father-close-father[data-v-81c0d68b]{width:1.25rem;height:1.25rem;border-radius:50%;display:flex;background-color:#0184db;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;color:#fff}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father[data-v-81c0d68b]{width:3.125rem;height:3.125rem;border-radius:50%;display:flex;justify-content:center;align-items:center}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father .super-end-items-img[data-v-81c0d68b]{width:2.65625rem;height:2.65625rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father-active[data-v-81c0d68b]{width:3.125rem;height:3.125rem;border-radius:50%;display:flex;justify-content:center;align-items:center;animation:shake-81c0d68b .5s infinite}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father-active .super-end-items-img[data-v-81c0d68b]{width:2.65625rem;height:2.65625rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-font[data-v-81c0d68b]{margin-top:-.3125rem;font-size:.78125rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-font-father[data-v-81c0d68b]{display:flex;margin-top:.625rem;margin-bottom:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-font-father .super-end-font-gun[data-v-81c0d68b]{margin-left:1.25rem;margin-right:.625rem;margin-top:.15625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-font-father .super-end-font-font[data-v-81c0d68b]{font-size:1.1875rem;font-weight:700}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title[data-v-81c0d68b]{width:100%;height:3.28125rem;display:flex;align-items:center;justify-content:space-between}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right[data-v-81c0d68b]{height:100%;display:flex;align-items:center;width:12.5rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-juzhen[data-v-81c0d68b]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father[data-v-81c0d68b]{display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button-target[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;background-color:#3fa9f5;color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;background-color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-cheng[data-v-81c0d68b]{background-color:#ffdba1;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-zi[data-v-81c0d68b]{background-color:#7b61ff;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-kuai-font[data-v-81c0d68b]{font-size:1rem;margin-left:.3125rem;margin-right:.78125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left[data-v-81c0d68b]{display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-share[data-v-81c0d68b]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-left:.625rem;margin-top:-.09375rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-gun[data-v-81c0d68b]{margin-top:.21875rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-font[data-v-81c0d68b]{font-size:1.1875rem;font-weight:700}.right-container .right-container-title-nav[data-v-81c0d68b]{margin-top:2.34375rem;margin-bottom:.625rem;margin-left:.625rem}.right-container .right-container-title-nav .right-icons[data-v-81c0d68b]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-font[data-v-81c0d68b]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-font-dark[data-v-81c0d68b]{color:#fff;margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-img[data-v-81c0d68b]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-img-icon[data-v-81c0d68b]{width:1.875rem;height:2.5rem;margin-top:-.3125rem;margin-left:.25rem}.right-container .right-container-title-nav .right-container-title-no[data-v-81c0d68b]{font-size:1.09375rem;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-no-dark[data-v-81c0d68b]{font-size:1.09375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-class[data-v-81c0d68b]{font-size:1.09375rem;font-weight:800;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-class-dark[data-v-81c0d68b]{font-size:1.09375rem;font-weight:800;margin-left:.625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-title-nav .right-container-title-class-anhei-button-wrong[data-v-81c0d68b]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.46875rem;width:6.25rem;height:1.5625rem;background-color:#fff}.right-container .right-container-title-nav .right-container-title-class-anhei-button-wrong .right-container-title-class-anhei[data-v-81c0d68b]{font-size:.9375rem;font-weight:800}.right-container .right-container-title-nav .right-container-title-class-anhei-button[data-v-81c0d68b]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.625rem;width:6.25rem;height:1.5625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff)}.right-container .right-container-title-nav .right-container-title-class-anhei-button .right-container-title-class-anhei[data-v-81c0d68b]{font-size:.9375rem;font-weight:800;color:#fff}.title-time-delete[data-v-81c0d68b]{width:1.71875rem;height:1.71875rem;border-radius:50%;display:flex;background-color:#fff;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;background-color:#02abfe;color:#fff;z-index:999;font-size:1.5625rem}.title-time-blue[data-v-81c0d68b]{position:absolute;top:0;left:0;z-index:10}.title-time-blue .title-time-blue-img[data-v-81c0d68b]{height:6.53125rem;width:8.59375rem}.title-time[data-v-81c0d68b]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-81c0d68b]{font-size:1rem;margin-left:1.25rem;margin-top:.375rem}.title-time .title-time-button[data-v-81c0d68b]{position:absolute;top:-.125rem;right:-.125rem;width:2.03125rem;height:1.875rem}.title-time .title-time-zhejiao[data-v-81c0d68b]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.title-time .title-time-font[data-v-81c0d68b]{position:absolute;top:.21875rem;right:.15625rem;font-size:.625rem;color:#fff}.popup-delete[data-v-81c0d68b]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-delete .popup-delete-content[data-v-81c0d68b]{position:absolute;right:16.09375rem;display:flex;flex-direction:column;align-items:center;width:25rem;height:15.625rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.7);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-delete .popup-delete-content .popup-delete-img[data-v-81c0d68b]{width:7.8125rem;height:7.1875rem;margin-top:1.25rem;margin-bottom:.625rem}.popup-delete .popup-delete-content .popup-delete-text[data-v-81c0d68b]{font-size:.9375rem;color:#42474e}.popup-delete .popup-delete-content .popup-delete-button[data-v-81c0d68b]{display:flex;justify-content:space-around;height:2.8125rem;margin-top:.9375rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-left[data-v-81c0d68b]{background-color:#02abfe;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-right[data-v-81c0d68b]{background-color:#ced9e8;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;margin-right:.625rem}.popup-overlay[data-v-81c0d68b]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;z-index:999}.popup-overlay .popup-overlay-content[data-v-81c0d68b]{position:absolute;display:flex;align-items:center;width:25rem;height:12.1875rem;background-color:#fff;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-overlay .popup-overlay-content .popup-overlay-content-left[data-v-81c0d68b]{height:100%;width:10.9375rem;display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-img[data-v-81c0d68b]{width:8.75rem;height:5.625rem;margin-top:-.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-font[data-v-81c0d68b]{font-size:.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right[data-v-81c0d68b]{height:100%;width:14.0625rem;position:relative}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-font[data-v-81c0d68b]{font-size:1.5625rem;margin-top:3.125rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-text[data-v-81c0d68b]{margin-left:.3125rem;font-size:.9375rem;width:11.875rem;margin-bottom:1.5625rem;line-height:1.09375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richang[data-v-81c0d68b]{background-color:#ffc363;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richangnot[data-v-81c0d68b]{background-color:#7b61ff;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem;color:#fff}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-crush[data-v-81c0d68b]{position:absolute;top:.625rem;right:.625rem;width:2.1875rem;height:2.1875rem;animation:shake-81c0d68b .5s 3}.popup-song[data-v-81c0d68b]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-song .popup-song-contain[data-v-81c0d68b]{position:absolute;right:17.8125rem;width:40.5rem;background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.7);border:.0625rem solid #fff;background-blend-mode:screen;border-radius:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-song .popup-song-contain .shu-container-left[data-v-81c0d68b]{display:flex;margin-top:2.1875rem;margin-bottom:.625rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-gun[data-v-81c0d68b]{margin-top:.15625rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-font[data-v-81c0d68b]{font-size:1.09375rem;font-weight:700}.popup-song-father[data-v-81c0d68b]{position:relative}.popup-song-father .shu-up-img[data-v-81c0d68b]{position:absolute;top:-2.1875rem;left:9.53125rem;width:21.875rem;height:2.5rem}.popup-song-father .shu-up-font[data-v-81c0d68b]{position:absolute;top:-1.5625rem;left:12.1875rem;display:flex;color:#ff5a00}.popup-song-father .arrayindex[data-v-81c0d68b]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem}.popup-song-father .arrayindex .arrayindex-one[data-v-81c0d68b]{width:12.03125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .arrayindex .arrayindex-one-target[data-v-81c0d68b]{width:12.03125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.ri-img[data-v-81c0d68b]{position:absolute;top:-.125rem;right:-.125rem;width:1.875rem;height:1.875rem}.time-father[data-v-81c0d68b]{display:flex;width:100%;flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem}.time-father .time-one[data-v-81c0d68b]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-target[data-v-81c0d68b]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-hui[data-v-81c0d68b]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#c2c9d3;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.button-father[data-v-81c0d68b]{height:6.25rem;width:calc(100%-2.5rem);display:flex;justify-content:center;align-items:center;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem;border-top:.03125rem solid #e6e6e6}.button-father .button-father-right[data-v-81c0d68b]{background:linear-gradient(to right,#00c9ff,#0076ff);width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.button-father .button-father-wrong[data-v-81c0d68b]{background-color:#c2c9d3;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center}.month-father[data-v-81c0d68b]{display:flex;width:calc(100% - 1.875rem);flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem;margin-top:.625rem}.month-father .month-one[data-v-81c0d68b]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.month-father .month-one-target[data-v-81c0d68b]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father[data-v-81c0d68b]{display:flex;width:100%;flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem;margin-top:.625rem}.week-father .week-one[data-v-81c0d68b]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father .week-one-target[data-v-81c0d68b]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.radio-father[data-v-81c0d68b]{display:flex;width:100%;flex-wrap:wrap;margin-left:2.34375rem;margin-right:.9375rem}.radio-father .radio-circle[data-v-81c0d68b]{margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid black;background-color:transparent}.radio-father .radio-circle-target[data-v-81c0d68b]{position:relative;margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-father .radio-circle-target[data-v-81c0d68b]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.625rem;height:.625rem;background-color:#02abfe;border-radius:50%}.radio-father .radio-font[data-v-81c0d68b]{margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.title-time-border[data-v-81c0d68b]{margin-top:.125rem;margin-left:.125rem;width:calc(100% - .25rem);height:calc(100% - .25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column}.title-time-border-red[data-v-81c0d68b]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,red,red) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,red,red) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom right / .25rem 1.875rem no-repeat}.title-time-border-big[data-v-81c0d68b],.title-time-border-big-top[data-v-81c0d68b]{transform:scale(1.5);transform-origin:top;border-top:0 solid #fff;transition:transform .5s ease-out,opacity .5s ease-out;z-index:999;display:flex;justify-content:center;align-items:center;height:6.53125rem;width:100%;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.title-time-border-blue[data-v-81c0d68b]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,#0184db,#0184db) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,#0184db,#0184db) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom right / .25rem 1.875rem no-repeat}.title-time-border-yellow[data-v-81c0d68b]{margin:.3125rem;border:.0625rem solid #d0d8e0;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-yellow-active-transparent[data-v-81c0d68b]{margin:.3125rem;border:.125rem dashed #ff8a00;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .8125rem);height:calc(100% - .8125rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-yellow-active[data-v-81c0d68b]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-81c0d68b .8s infinite;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-pouple-active-transparent[data-v-81c0d68b]{margin:.3125rem;border:.125rem dashed #7B61FF;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .8125rem);height:calc(100% - .8125rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.title-time-border-pouple[data-v-81c0d68b]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.title-time-border-pouple-active[data-v-81c0d68b]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-81c0d68b 1s infinite;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.down-icons[data-v-81c0d68b]{margin-top:.3125rem;width:100%;height:1.875rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-81c0d68b]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}@keyframes shake-81c0d68b{0%{transform:rotate(-10deg)}25%{transform:rotate(10deg)}50%{transform:rotate(-10deg)}75%{transform:rotate(10deg)}to{transform:rotate(-10deg)}}@keyframes shakesmall-81c0d68b{0%{transform:rotate(-2deg)}25%{transform:rotate(2deg)}50%{transform:rotate(-2deg)}75%{transform:rotate(2deg)}to{transform:rotate(-2deg)}}.boom[data-v-81c0d68b]{position:absolute;top:2.5rem;left:0;width:1.3125rem;height:26.25rem;display:flex;flex-direction:column;align-items:center;overflow:hidden;z-index:10}.boom .boom-son[data-v-81c0d68b]{height:6.5625rem;width:100%;font-size:.9375rem;letter-spacing:.15625rem;-webkit-writing-mode:vertical-rl;writing-mode:vertical-rl;text-align:center;z-index:10;background:linear-gradient(to bottom,#ffe2b2,#e3deff);border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.boom .boom-son-target[data-v-81c0d68b]{height:6.5625rem;width:100%;font-size:.9375rem;letter-spacing:.15625rem;-webkit-writing-mode:vertical-rl;writing-mode:vertical-rl;text-align:center;z-index:10;background:linear-gradient(to bottom,#ff8a00,#eceaff);border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.popup-share[data-v-81c0d68b]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-share .popup-share-content[data-v-81c0d68b]{position:absolute;right:16.09375rem;display:flex;flex-direction:column;width:25rem;height:11.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.7);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-share .popup-share-content .popup-share-title[data-v-81c0d68b]{margin:.9375rem;font-size:1.25rem;position:relative}.popup-share .popup-share-content .popup-share-title .popup-share-img[data-v-81c0d68b]{position:absolute;top:0;right:0;width:6.25rem;height:6.25rem}.popup-share .popup-share-content .popup-share-upcontent[data-v-81c0d68b]{margin:0 .9375rem;display:flex;justify-content:space-between}.popup-share .popup-share-content .popup-share-upcontent .popup-share-font[data-v-81c0d68b]{font-size:1.09375rem;color:gray}.popup-share .popup-share-content .popup-share-gray[data-v-81c0d68b]{background-color:#d3d3d3;width:calc(100% - 1.875rem);height:.0625rem;margin:3.4375rem .9375rem 0}.popup-share .popup-share-content .popup-share-downcontent[data-v-81c0d68b]{display:flex;justify-content:space-between;align-items:center;height:100%;margin:0 .9375rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-img[data-v-81c0d68b]{width:2.1875rem;height:2.1875rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-font[data-v-81c0d68b]{font-size:.84375rem;margin-left:.625rem}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-left[data-v-81c0d68b]{display:flex;align-items:center}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-button[data-v-81c0d68b]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.46875rem .9375rem;border-radius:.625rem;font-size:1rem}.move-circle[data-v-3df4b966]{position:absolute;bottom:0;left:0;width:10.9375rem;height:10.9375rem;display:flex;justify-content:center;align-items:center;z-index:99;touch-action:none}.move-circle .click-box-top[data-v-3df4b966]{position:absolute;top:.625rem;left:2.1875rem;width:6.875rem;height:2.5rem}.move-circle .click-box-bottom[data-v-3df4b966]{position:absolute;bottom:.625rem;left:2.1875rem;width:6.875rem;height:2.5rem}.move-circle .click-box-left[data-v-3df4b966]{position:absolute;bottom:3.125rem;left:0;width:2.8125rem;height:4.6875rem}.move-circle .click-box-right[data-v-3df4b966]{position:absolute;bottom:3.125rem;right:0;width:2.8125rem;height:4.6875rem}.move-circle .click-box-center[data-v-3df4b966]{position:absolute;bottom:4.0625rem;right:4.0625rem;width:2.8125rem;height:2.8125rem}.move-circle-all[data-v-3df4b966]{width:10.9375rem;height:10.9375rem}.light-shadow[data-v-3df4b966]{position:absolute;width:1.25rem;height:1.25rem;background-color:transparent;border:1.875rem solid #3da6ff;border-radius:50%;pointer-events:none;opacity:1}.ripple-loop[data-v-3df4b966]{animation:rippleLoop-3df4b966 1.2s ease-out infinite}.ripple-once[data-v-3df4b966]{animation:rippleLoop-3df4b966 1.2s ease-out forwards}@keyframes rippleLoop-3df4b966{0%{transform:translate(-50%,-50%) scale(.5);opacity:.6}to{transform:translate(-50%,-50%) scale(2.5);opacity:0}}.light-circle[data-v-3df4b966]{position:relative;width:150px;height:150px;border-radius:50%;background:#111;overflow:visible}.circle[data-v-3df4b966]{position:relative;width:150px;height:150px;border-radius:50%;background:#222;margin:50px}.pulse-circle[data-v-3df4b966]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border-radius:50%;background:radial-gradient(circle,#03a4ff 0%,transparent 70%);animation:pulse-3df4b966 3s forwards}@keyframes pulse-3df4b966{0%{width:0;height:0;opacity:.8}50%{width:10.9375rem;height:10.9375rem;opacity:.4}to{width:0;height:0;opacity:0}}.super-card[data-v-bd7a2b2a]{display:flex;width:100%;height:calc(100% - 12.5rem)}.super-card .scroll-x[data-v-bd7a2b2a]{height:100%;width:100%}.super-card .right-cards[data-v-bd7a2b2a]{width:14.53125rem;height:37.1875rem;border:.0625rem solid #fff;border-top-right-radius:.625rem;border-bottom-right-radius:.625rem}.super-card .right-cards .scroll-box[data-v-bd7a2b2a]{width:100%;height:9.0625rem}.super-card .right-cards .scroll-box .right-box[data-v-bd7a2b2a]{height:10.9375rem;display:flex;flex-direction:column;flex-wrap:wrap;align-content:flex-start}.super-card .right-cards .scroll-box .right-box .right-box-item[data-v-bd7a2b2a]{margin:.3125rem 0 0 .3125rem;width:3.75rem;height:4rem;border-radius:.625rem;background-color:#fff;position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-img[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-font[data-v-bd7a2b2a]{font-size:.625rem;margin-top:-.3125rem}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-items[data-v-bd7a2b2a]{display:flex;justify-content:space-around;align-items:center}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-items .right-box-items-button[data-v-bd7a2b2a]{width:.78125rem;height:.78125rem;margin:0 .09375rem}.super-card .right-cards .scroll-box .right-box .title-time-button[data-v-bd7a2b2a]{position:absolute;top:0;right:0;width:1.71875rem;height:1.40625rem}.super-card .right-cards .scroll-box .right-box .title-time-font[data-v-bd7a2b2a]{position:absolute;top:.15625rem;right:.09375rem;font-size:.53125rem;color:#fff}.super-card .time-father[data-v-bd7a2b2a]{border-radius:.625rem;height:97%;width:95%;margin-top:6%;margin-left:6%;background-color:rgba(255,255,255,.3)}.super-card .time-father .time-button[data-v-bd7a2b2a]{width:4.375rem;height:1.875rem;margin-top:.9375rem;margin-left:.9375rem;border-radius:.625rem;background-color:#369fef;border:.15625rem solid #369fef;display:flex}.super-card .time-father .time-button .time-button-month[data-v-bd7a2b2a]{width:50%;height:100%;color:#fff;display:flex;justify-content:center;align-items:center}.super-card .time-father .time-button .time-button-month-target[data-v-bd7a2b2a]{width:50%;height:100%;background-color:#fff;color:#369fef;display:flex;justify-content:center;align-items:center;border-bottom-left-radius:.46875rem;border-top-left-radius:.46875rem}.super-card .time-father .time-button .time-button-week-target[data-v-bd7a2b2a]{width:50%;height:100%;display:flex;justify-content:center;align-items:center;color:#fff}.super-card .time-father .time-button .time-button-week[data-v-bd7a2b2a]{width:50%;height:100%;color:#369fef;display:flex;justify-content:center;align-items:center;background-color:#fff;border-bottom-right-radius:.46875rem;border-top-right-radius:.46875rem}.super-card .under-button[data-v-bd7a2b2a]{width:13.75rem;height:2.96875rem;margin-left:.3125rem;margin-top:.3125rem;border-radius:.625rem;background-color:#e5e9f9;display:flex;align-items:center;position:relative}.super-card .under-button .under-button-black[data-v-bd7a2b2a]{transition:all 1s;position:absolute;width:9.375rem;height:3.125rem;border-radius:.625rem;padding-left:.3125rem;background-color:#4d4d4d;top:-3.125rem;left:0;color:#fff;display:flex;justify-content:center;align-items:center}.super-card .under-button .under-button-black .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;bottom:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-top:.625rem solid #4d4d4d}.super-card .under-button .white-circle-click-father[data-v-bd7a2b2a]{position:relative;margin-left:.625rem;color:#fff;margin-top:.3125rem}.super-card .under-button .white-circle-click-father .white-circle-click[data-v-bd7a2b2a]{width:4.6875rem;height:2.1875rem}.super-card .under-button .white-circle-click-father .white-circle-font[data-v-bd7a2b2a]{position:absolute;top:.46875rem;left:1.875rem}.super-card .under-button .white-circle[data-v-bd7a2b2a]{width:2.1875rem;height:2.1875rem;border-radius:50%;margin-left:.3125rem;background-color:#fff;display:flex;justify-content:center;align-items:center}.super-card .under-button .white-circle .white-circle-img[data-v-bd7a2b2a]{width:1.25rem;height:1.25rem}.super-card .middle-box[data-v-bd7a2b2a]{width:100%;height:24.375rem;display:flex;overflow:hidden}.super-card .middle-box .middle-left-box[data-v-bd7a2b2a]{margin-left:.3125rem;width:10.625rem;height:24.4375rem;border-radius:.625rem;background-color:#e5e9f9;display:flex}.super-card .middle-box .middle-left-box .first-contant[data-v-bd7a2b2a]{height:100%;width:6.5625rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item[data-v-bd7a2b2a]{margin:.3125rem 0 0 .3125rem;width:5.9375rem;height:4rem;border-radius:.625rem;background-color:rgba(255,255,255,.3);position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column;box-shadow:.03125rem .03125rem .0625rem .03125rem rgba(0,0,0,.1);overflow:hidden}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-img[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-button[data-v-bd7a2b2a]{position:absolute;top:-.09375rem;right:-.09375rem;width:1.5625rem;height:1.40625rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-font[data-v-bd7a2b2a]{font-size:.71875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-zhejiao[data-v-bd7a2b2a]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-font[data-v-bd7a2b2a]{position:absolute;top:.09375rem;right:.15625rem;font-size:.625rem;color:#fff}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-items[data-v-bd7a2b2a]{display:flex;justify-content:space-around;align-items:center}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-items .right-box-items-button[data-v-bd7a2b2a]{width:.78125rem;height:.78125rem;margin:0 .09375rem}.super-card .middle-box .middle-left-box .second-contant[data-v-bd7a2b2a]{height:100%;width:4.375rem}.super-card .middle-box .middle-left-box .second-contant .downList-box-target[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;background-color:#fff;width:3.125rem;height:3.125rem;border-radius:.625rem;margin-left:.625rem;margin-top:.625rem;flex-direction:column;box-shadow:.0625rem .0625rem .125rem .0625rem rgba(54,159,239,.1);border:.0625rem solid #369fef}.super-card .middle-box .middle-left-box .second-contant .downList-box-target .downList-box-img[data-v-bd7a2b2a]{height:1.5625rem;width:1.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box-target .downList-box-text[data-v-bd7a2b2a]{font-size:.625rem;color:#369fef}.super-card .middle-box .middle-left-box .second-contant .downList-box[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;background-color:rgba(255,255,255,.3);width:3.125rem;height:3.125rem;border-radius:.625rem;margin-left:.625rem;margin-top:.625rem;flex-direction:column;box-shadow:.0625rem .0625rem .125rem .0625rem rgba(0,0,0,.1)}.super-card .middle-box .middle-left-box .second-contant .downList-box .downList-box-img[data-v-bd7a2b2a]{height:1.5625rem;width:1.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box .downList-box-text[data-v-bd7a2b2a]{font-size:.625rem}.super-card .middle-box .middle-right-box[data-v-bd7a2b2a]{height:24.375rem;width:2.8125rem}.super-card .middle-box .middle-right-box .doctorsay-container-card[data-v-bd7a2b2a]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;background-color:#e5e9f9;width:2.8125rem;height:3.8125rem;border-radius:.625rem;border:.0625rem solid #ddeafa;box-shadow:5px 5px 10px rgba(105,129,178,.2);margin:0 .5625rem .3125rem .3125rem}.super-card .middle-box .middle-right-box .doctorsay-container-card .doctorsay-container-card-img[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem}.super-card .middle-box .middle-right-box .doctorsay-container-card .doctorsay-container-card-font[data-v-bd7a2b2a]{font-size:.78125rem;margin-top:0}.super-card .middle-box .middle-right-box .doctorsay-container-card-target[data-v-bd7a2b2a]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;background:linear-gradient(to left,#fff,#e5e9f9);width:3.59375rem;height:3.8125rem;border-top-right-radius:.625rem;border-bottom-right-radius:.625rem;margin:0 .5625rem .3125rem -.46875rem}.super-card .middle-box .middle-right-box .doctorsay-container-card-target .doctorsay-container-card-img[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem;margin-left:.78125rem}.super-card .middle-box .middle-right-box .doctorsay-container-card-target .doctorsay-container-card-font-dark[data-v-bd7a2b2a]{font-size:.78125rem;color:#369fef;margin-left:.78125rem;margin-top:0}.super-card .super-card-container[data-v-bd7a2b2a]{background:url(../../static/index/whitemountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;overflow:hidden;margin-left:3.75rem;width:43.90625rem;height:37.1875rem;border:.0625rem solid #fff;border-left:0;box-shadow:.3125rem .3125rem 20px rgba(0,0,0,.1);position:relative}.super-card .super-card-time[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;height:2.5rem;width:6.28125rem;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;font-weight:700;z-index:-1}.super-card .super-card-time-und[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;width:6.28125rem;flex-direction:column;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1}.super-card .super-card-time-und .title-time-img[data-v-bd7a2b2a]{width:2.03125rem;height:2.03125rem;margin-top:-.15625rem}.super-card .super-card-time-und .title-time-font-rel[data-v-bd7a2b2a]{font-size:.78125rem;margin-bottom:.15625rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.super-card .super-card-time-und .title-time-items[data-v-bd7a2b2a]{display:flex;justify-content:space-around;align-items:center}.super-card .super-card-time-und .title-time-items .right-box-items-button[data-v-bd7a2b2a]{width:1.09375rem;height:1.09375rem;margin:0 .15625rem}.super-card .super-card-time-card[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;height:5.21875rem;width:100%;transition:all .8s;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.right-container[data-v-bd7a2b2a]{width:calc(100% - 7.34375rem);height:100vh;transition:opacity 1s ease;position:relative}.right-container .joystick[data-v-bd7a2b2a]{position:absolute;bottom:6.25rem;left:.625rem;width:9.375rem;height:9.375rem;z-index:9999}.right-container .outer-circle[data-v-bd7a2b2a]{width:100%;height:100%;border-radius:50%;background-color:rgba(127,127,127,.1);position:relative}.right-container .inner-circle[data-v-bd7a2b2a]{width:3.75rem;height:3.75rem;border-radius:50%;background-color:rgba(127,127,127,.3);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.right-container .doctorsay-container-view[data-v-bd7a2b2a]{width:100%;height:38.125rem;display:flex}.right-container .doctorsay-container-view .doctorsay-container-container[data-v-bd7a2b2a]{border:.0625rem solid #fff;width:64.0625rem;height:41.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.3);-webkit-backdrop-filter:blur(.625rem);backdrop-filter:blur(.625rem);background-blend-mode:screen;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);overflow:hidden}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title[data-v-bd7a2b2a]{width:100%;height:3.28125rem;display:flex;align-items:center;justify-content:space-between}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right[data-v-bd7a2b2a]{height:100%;display:flex;align-items:center;margin-right:1.5625rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-juzhen[data-v-bd7a2b2a]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-right:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father[data-v-bd7a2b2a]{display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button-target[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;background-color:#3fa9f5;color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;background-color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-cheng[data-v-bd7a2b2a]{background-color:#ffdba1;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-zi[data-v-bd7a2b2a]{background-color:#7b61ff;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-kuai-font[data-v-bd7a2b2a]{font-size:1rem;margin-left:.3125rem;margin-right:.78125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left[data-v-bd7a2b2a]{display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-share[data-v-bd7a2b2a]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-left:.625rem;margin-top:-.09375rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-gun[data-v-bd7a2b2a]{margin-top:.21875rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-font[data-v-bd7a2b2a]{font-size:1.1875rem;font-weight:700}.right-container .right-container-title-nav[data-v-bd7a2b2a]{margin-top:2.34375rem;margin-bottom:.625rem;margin-left:.625rem}.right-container .right-container-title-nav .right-icons[data-v-bd7a2b2a]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-font[data-v-bd7a2b2a]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-font-dark[data-v-bd7a2b2a]{color:#fff;margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-img[data-v-bd7a2b2a]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-img-icon[data-v-bd7a2b2a]{width:1.875rem;height:2.5rem;margin-top:-.3125rem;margin-left:.25rem}.right-container .right-container-title-nav .right-container-title-no[data-v-bd7a2b2a]{font-size:1.09375rem;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-no-dark[data-v-bd7a2b2a]{font-size:1.09375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-class[data-v-bd7a2b2a]{font-size:1.09375rem;font-weight:800;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-class-dark[data-v-bd7a2b2a]{font-size:1.09375rem;font-weight:800;margin-left:.625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-title-nav .right-container-title-class-anhei-button-wrong[data-v-bd7a2b2a]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.46875rem;width:6.25rem;height:1.5625rem;background-color:#fff}.right-container .right-container-title-nav .right-container-title-class-anhei-button-wrong .right-container-title-class-anhei[data-v-bd7a2b2a]{font-size:.9375rem;font-weight:800}.right-container .right-container-title-nav .right-container-title-class-anhei-button[data-v-bd7a2b2a]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.625rem;width:6.25rem;height:1.5625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff)}.right-container .right-container-title-nav .right-container-title-class-anhei-button .right-container-title-class-anhei[data-v-bd7a2b2a]{font-size:.9375rem;font-weight:800;color:#fff}.title-time-delete[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem;border-radius:50%;display:flex;background-color:#fff;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;background-color:#02abfe;color:#fff;z-index:999;font-size:1.5625rem}.title-time-blue[data-v-bd7a2b2a]{position:absolute;top:0;left:0;z-index:10}.title-time-blue .title-time-blue-img[data-v-bd7a2b2a]{height:5.21875rem;width:6.25rem}.time-button-black-spe[data-v-bd7a2b2a]{transition:all 1s;position:absolute;width:7.8125rem;height:3.125rem;padding-left:.3125rem;border-radius:.625rem;background-color:#4d4d4d;bottom:-3.125rem;left:-2.5rem;color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-black-spe .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;top:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-bottom:.625rem solid #4d4d4d}.time-button-black[data-v-bd7a2b2a]{transition:all 1s;position:absolute;width:7.8125rem;height:3.125rem;padding-left:.3125rem;border-radius:.625rem;background-color:#4d4d4d;top:-3.125rem;left:-2.5rem;color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-black .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;bottom:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-top:.625rem solid #4d4d4d}.time-button-orange-spe[data-v-bd7a2b2a]{transition:all 1s;position:absolute;width:7.8125rem;height:3.125rem;padding-left:.3125rem;border-radius:.625rem;background-color:#ff8a00;bottom:-3.125rem;left:-2.5rem;color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-orange-spe .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;top:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-bottom:.625rem solid #ff8a00}.time-button-orange[data-v-bd7a2b2a]{transition:all 1s;position:absolute;padding-left:.3125rem;width:7.8125rem;height:3.125rem;border-radius:.625rem;background-color:#ff8a00;top:-2.8125rem;left:-2.5rem;color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-orange .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;bottom:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-top:.625rem solid #ff8a00}.title-time[data-v-bd7a2b2a]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-bd7a2b2a]{font-size:1rem;margin-left:.3125rem;margin-top:.375rem}.title-time .title-time-button[data-v-bd7a2b2a]{position:absolute;top:-.1875rem;right:-.125rem;width:1.71875rem;height:1.25rem}.title-time .title-time-zhejiao[data-v-bd7a2b2a]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.title-time .title-time-font[data-v-bd7a2b2a]{position:absolute;top:0;right:.15625rem;font-size:.4375rem;color:#fff}.popup-say[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-say .popup-say-content[data-v-bd7a2b2a]{position:absolute;right:3.28125rem;bottom:6.25rem;display:flex;flex-direction:column;width:14.0625rem;height:18.75rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-say .popup-say-content .tags-father[data-v-bd7a2b2a]{display:flex;margin-left:1.25rem;margin-top:.46875rem;align-items:center;width:5.625rem}.popup-say .popup-say-content .tags-father .tags-img[data-v-bd7a2b2a]{width:1.5625rem;height:1.5625rem;margin-right:.3125rem}.popup-say .popup-say-content .popup-say-content-flex[data-v-bd7a2b2a]{display:flex;margin-top:.21875rem;margin-bottom:.3125rem}.popup-say .popup-say-content .popup-say-content-flex .popup-say-content-gun[data-v-bd7a2b2a]{margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-say .popup-say-content .popup-say-content-flex .popup-say-content-font[data-v-bd7a2b2a]{font-size:.9375rem;font-weight:700}.popup-say .popup-say-content .popup-say-three[data-v-bd7a2b2a]{position:absolute;left:5.40625rem;bottom:-1.28125rem;width:0;height:0;border-left:.9375rem solid transparent;border-right:.9375rem solid transparent;border-top:1.25rem solid #d2ecff}.popup-delete[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-delete .popup-delete-content[data-v-bd7a2b2a]{position:absolute;right:23.4375rem;display:flex;flex-direction:column;align-items:center;width:25rem;height:15.625rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-delete .popup-delete-content .popup-delete-img[data-v-bd7a2b2a]{width:7.8125rem;height:7.1875rem;margin-top:1.25rem;margin-bottom:.625rem}.popup-delete .popup-delete-content .popup-delete-text[data-v-bd7a2b2a]{font-size:.9375rem;color:#42474e}.popup-delete .popup-delete-content .popup-delete-button[data-v-bd7a2b2a]{display:flex;justify-content:space-around;height:2.8125rem;margin-top:.9375rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-left[data-v-bd7a2b2a]{background-color:#02abfe;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff;margin:0 .3125rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-right[data-v-bd7a2b2a]{background-color:#ced9e8;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;margin:0 .3125rem}.popup-overlay[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;z-index:999}.popup-overlay .popup-overlay-content[data-v-bd7a2b2a]{position:absolute;display:flex;align-items:center;width:25rem;height:12.1875rem;background-color:#fff;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-overlay .popup-overlay-content .popup-overlay-content-left[data-v-bd7a2b2a]{height:100%;width:10.9375rem;display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-img[data-v-bd7a2b2a]{width:8.75rem;height:5.625rem;margin-top:-.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-font[data-v-bd7a2b2a]{font-size:.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right[data-v-bd7a2b2a]{height:100%;width:14.0625rem;position:relative}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-font[data-v-bd7a2b2a]{font-size:1.5625rem;margin-top:3.125rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-text[data-v-bd7a2b2a]{margin-left:.3125rem;font-size:.9375rem;width:11.875rem;margin-bottom:1.5625rem;line-height:1.09375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richang[data-v-bd7a2b2a]{background-color:#ffc363;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richangnot[data-v-bd7a2b2a]{background-color:#7b61ff;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem;color:#fff}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-crush[data-v-bd7a2b2a]{position:absolute;top:.625rem;right:.625rem;width:2.1875rem;height:2.1875rem;animation:shake-bd7a2b2a .5s 3}.popup-song[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-song .popup-song-contain[data-v-bd7a2b2a]{position:absolute;right:14.0625rem;width:40.5rem;background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.7);border:.0625rem solid #fff;background-blend-mode:screen;border-radius:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-song .popup-song-contain .shu-container-left[data-v-bd7a2b2a]{display:flex;margin-top:2.1875rem;margin-bottom:.625rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-gun[data-v-bd7a2b2a]{margin-top:.15625rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-font[data-v-bd7a2b2a]{font-size:1.09375rem;font-weight:700}.popup-song-father[data-v-bd7a2b2a]{position:relative}.popup-song-father .shu-up-img[data-v-bd7a2b2a]{position:absolute;top:-2.1875rem;left:9.53125rem;width:21.875rem;height:2.5rem}.popup-song-father .shu-up-font[data-v-bd7a2b2a]{position:absolute;top:-1.5625rem;left:12.1875rem;display:flex;color:#ff5a00}.popup-song-father .arrayindex[data-v-bd7a2b2a]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem;margin-bottom:1.875rem}.popup-song-father .arrayindex .arrayindex-one[data-v-bd7a2b2a]{width:8.90625rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .arrayindex .arrayindex-one-target[data-v-bd7a2b2a]{width:8.90625rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .secondarrayindex[data-v-bd7a2b2a]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem;margin-bottom:1.875rem}.popup-song-father .secondarrayindex .arrayindex-one[data-v-bd7a2b2a]{width:11.875rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .secondarrayindex .arrayindex-one-target[data-v-bd7a2b2a]{width:11.875rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.ri-img[data-v-bd7a2b2a]{position:absolute;top:-.125rem;right:-.125rem;width:1.875rem;height:1.875rem}.time-father[data-v-bd7a2b2a]{display:flex;width:100%;flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem}.time-father .time-one[data-v-bd7a2b2a]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-target[data-v-bd7a2b2a]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-hui[data-v-bd7a2b2a]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#c2c9d3;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.items-card[data-v-bd7a2b2a]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center}.items-card-target[data-v-bd7a2b2a]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center;color:#369fef;background:linear-gradient(to right,rgba(54,159,239,0),rgba(54,159,239,.5),rgba(54,159,239,0))}.button-father[data-v-bd7a2b2a]{height:6.25rem;width:calc(100%-2.5rem);display:flex;justify-content:center;align-items:center;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem;border-top:.03125rem solid #e6e6e6}.button-father .button-father-right[data-v-bd7a2b2a]{background:linear-gradient(to right,#00c9ff,#0076ff);width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.button-father .button-father-wrong[data-v-bd7a2b2a]{background-color:#c2c9d3;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center}.month-father[data-v-bd7a2b2a]{display:flex;width:calc(100% - 1.875rem);flex-wrap:wrap;margin:.625rem .9375rem .9375rem}.month-father .month-one[data-v-bd7a2b2a]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.month-father .month-one-target[data-v-bd7a2b2a]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father[data-v-bd7a2b2a]{display:flex;width:100%;flex-wrap:wrap;margin:.625rem .9375rem .9375rem}.week-father .week-one[data-v-bd7a2b2a]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father .week-one-target[data-v-bd7a2b2a]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.radio-father[data-v-bd7a2b2a]{display:flex;width:100%;flex-wrap:wrap;margin-left:2.34375rem;margin-right:.9375rem}.radio-father .radio-circle[data-v-bd7a2b2a]{margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid black;background-color:transparent}.radio-father .radio-circle-target[data-v-bd7a2b2a]{position:relative;margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-father .radio-circle-target[data-v-bd7a2b2a]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.625rem;height:.625rem;background-color:#02abfe;border-radius:50%}.radio-father .radio-font[data-v-bd7a2b2a]{margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.radio-father .radio-font-target[data-v-bd7a2b2a]{color:#02abfe;margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.title-time-border[data-v-bd7a2b2a]{margin-top:.125rem;margin-left:.125rem;width:calc(100% - .25rem);height:calc(100% - .25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column}.title-time-border-red[data-v-bd7a2b2a]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,red,red) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,red,red) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom right / .25rem 1.875rem no-repeat}.title-time-border-big[data-v-bd7a2b2a],.title-time-border-big-top[data-v-bd7a2b2a]{transform:scale(1.3);transform-origin:top;border-top:0 solid #fff;transition:transform .5s ease-out,opacity .5s ease-out;z-index:999;display:flex;justify-content:center;align-items:center;height:5.21875rem;width:100%;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.title-time-border-blue[data-v-bd7a2b2a]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,#0184db,#0184db) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,#0184db,#0184db) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom right / .25rem 1.875rem no-repeat}.title-time-border-yellow[data-v-bd7a2b2a]{margin:.3125rem;border:.0625rem solid #d0d8e0;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-yellow-active-transparent[data-v-bd7a2b2a]{margin:.3125rem;border:.125rem dashed #ff8a00;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .8125rem);height:calc(100% - .8125rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-yellow-active[data-v-bd7a2b2a]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-bd7a2b2a .8s infinite;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-pouple-active-transparent[data-v-bd7a2b2a]{margin:.3125rem;border:.125rem dashed #7B61FF;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .8125rem);height:calc(100% - .8125rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.title-time-border-pouple[data-v-bd7a2b2a]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.title-time-border-pouple-active[data-v-bd7a2b2a]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-bd7a2b2a 1s infinite;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.down-icons[data-v-bd7a2b2a]{margin-top:.53125rem;width:100%;height:1.875rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-bd7a2b2a]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.super-end-items-img-father[data-v-bd7a2b2a]{width:1.875rem;height:1.875rem;border-radius:50%;display:flex;justify-content:center;align-items:center}.super-end-items-img-father-active[data-v-bd7a2b2a]{width:1.875rem;height:1.875rem;border-radius:50%;display:flex;justify-content:center;align-items:center;animation:shake-bd7a2b2a .5s infinite}@keyframes shake-bd7a2b2a{0%{transform:rotate(-10deg)}25%{transform:rotate(10deg)}50%{transform:rotate(-10deg)}75%{transform:rotate(10deg)}to{transform:rotate(-10deg)}}.super-end-items-father-close-father[data-v-bd7a2b2a]{width:1.25rem;height:1.25rem;border-radius:50%;display:flex;background-color:#0184db;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;color:#fff}@keyframes shakesmall-bd7a2b2a{0%{transform:rotate(-2deg)}25%{transform:rotate(2deg)}50%{transform:rotate(-2deg)}75%{transform:rotate(2deg)}to{transform:rotate(-2deg)}}.boom-title[data-v-bd7a2b2a]{position:absolute;top:3.28125rem;left:1.875rem;width:1.875rem;height:2.5rem;background-color:#c4dbf4;border-left:.0625rem #fff solid;border-top:.0625rem #fff solid;border-top-left-radius:.625rem;background:linear-gradient(to top right,transparent calc(50% - 1px),#0184db calc(50% - 1px),#0184db calc(50% + 1px),transparent calc(50% + 1px))}.boom-title .boom-title-left[data-v-bd7a2b2a]{position:absolute;top:1.25rem;left:.1875rem;font-size:.78125rem;font-weight:700}.boom-title .boom-title-right[data-v-bd7a2b2a]{position:absolute;top:.15625rem;left:.9375rem;font-size:.78125rem;font-weight:700}.boom-father[data-v-bd7a2b2a]{position:absolute;top:5.8125rem;left:1.875rem;width:1.875rem;height:34.6875rem;background:linear-gradient(to bottom,#c4dbf4,#c9c2ef,#c6dcf3);border-bottom:.0625rem solid #fff;border-left:.0625rem solid #fff;border-bottom-left-radius:.625rem}.scroll-bottom-bgc[data-v-bd7a2b2a]{width:43.75rem;height:8.4375rem;margin-top:0;margin-left:4.0625rem;background:url(../../static/index/keyimg/bgc.png) center / contain;background-repeat:no-repeat}.boom[data-v-bd7a2b2a]{height:26.5625rem;display:flex;flex-direction:column;overflow:hidden;z-index:10}.boom .boom-son[data-v-bd7a2b2a]{height:5.21875rem;width:1.875rem;font-size:.9375rem;display:flex;justify-content:center;align-items:center;text-align:center;z-index:10;font-weight:700;border-top:.03125rem solid transparent;border-bottom:.03125rem solid transparent;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1}.boom .boom-son-target[data-v-bd7a2b2a]{height:5.21875rem;width:1.875rem;font-size:.9375rem;display:flex;justify-content:center;align-items:center;text-align:center;z-index:10;font-weight:700;border-top:.03125rem solid transparent;border-bottom:.03125rem solid transparent;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;background:linear-gradient(to bottom,#ff8a00,#eceaff)}.popup-share[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-share .popup-share-content[data-v-bd7a2b2a]{position:absolute;right:16.09375rem;display:flex;flex-direction:column;width:25rem;height:11.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.7);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-share .popup-share-content .popup-share-title[data-v-bd7a2b2a]{margin:.9375rem;font-size:1.25rem;position:relative}.popup-share .popup-share-content .popup-share-title .popup-share-img[data-v-bd7a2b2a]{position:absolute;top:0;right:0;width:6.25rem;height:6.25rem}.popup-share .popup-share-content .popup-share-upcontent[data-v-bd7a2b2a]{margin:0 .9375rem;display:flex;justify-content:space-between}.popup-share .popup-share-content .popup-share-upcontent .popup-share-font[data-v-bd7a2b2a]{font-size:1.09375rem;color:gray}.popup-share .popup-share-content .popup-share-gray[data-v-bd7a2b2a]{background-color:#d3d3d3;width:calc(100% - 1.875rem);height:.0625rem;margin:3.4375rem .9375rem 0}.popup-share .popup-share-content .popup-share-downcontent[data-v-bd7a2b2a]{display:flex;justify-content:space-between;align-items:center;height:100%;margin:0 .9375rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-img[data-v-bd7a2b2a]{width:2.1875rem;height:2.1875rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-font[data-v-bd7a2b2a]{font-size:.84375rem;margin-left:.625rem}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-left[data-v-bd7a2b2a]{display:flex;align-items:center}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-button[data-v-bd7a2b2a]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.46875rem .9375rem;border-radius:.625rem;font-size:1rem}.backgroundContainer[data-v-ee189f8b]{display:flex;position:relative;width:100%;height:100vh;background-image:url(../../static/index/lightbgcnew.png);background-size:cover;background-position:center center;overflow:hidden;z-index:12}.darkbackgroundContainer[data-v-ee189f8b]{display:flex;position:relative;width:100%;height:100vh;background-image:url(../../static/index/background.png);background-size:cover;background-position:center center;overflow:hidden;z-index:11}.move-font[data-v-ee189f8b]{position:absolute;z-index:10;pointer-events:none;background-color:#c9e8ff;border-radius:.625rem;border:.0625rem solid #fff;width:6.875rem;height:3.125rem;display:flex;justify-content:center;align-items:center;text-align:center;font-size:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);will-change:transform}.left-container[data-v-ee189f8b]{width:7.34375rem;height:100%}.left-container .blue-circle-pos[data-v-ee189f8b]{position:relative}.left-container .blue-circle-pos .blue-circle[data-v-ee189f8b]{position:absolute;top:-1.5625rem;left:-2.125rem}.left-container .blue-circle-pos .blue-circle .blue-circle-size[data-v-ee189f8b]{width:5.3125rem;height:7.8125rem}.left-container .left-head[data-v-ee189f8b]{display:flex;justify-content:center;align-items:center;flex-direction:column}.left-container .left-head .left-head-img[data-v-ee189f8b]{width:4.6875rem;height:4.6875rem;margin-top:1.875rem}.left-container .left-head .left-head-font[data-v-ee189f8b]{font-weight:700;font-size:1.25rem}.left-container .left-head .left-head-font-dark[data-v-ee189f8b]{font-weight:700;font-size:1.25rem;background:linear-gradient(to right,#ebf4ff,#adc4e0);-webkit-background-clip:text;color:transparent}.left-container .left-img-container[data-v-ee189f8b]{display:flex;justify-content:center;align-items:center;flex-direction:column}.left-container .left-img-container .left-img[data-v-ee189f8b]{width:2.90625rem;height:2.90625rem;margin:1.5625rem 0;z-index:100}.title-time-border-yellow[data-v-ee189f8b]{width:7.96875rem;height:5.90625rem;margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#fff1db,#ffe2b2);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;position:absolute;z-index:10}.title-time-border-pouple[data-v-ee189f8b]{width:7.96875rem;height:5.90625rem;margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;position:absolute;z-index:10}.title-time[data-v-ee189f8b]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-ee189f8b]{font-size:1rem;margin-left:.84375rem;margin-top:.375rem}.title-time .title-time-button[data-v-ee189f8b]{position:absolute;top:-.15625rem;right:0;width:2.1875rem;height:2.1875rem}.title-time .title-time-font[data-v-ee189f8b]{position:absolute;top:.21875rem;right:.15625rem;font-size:.71875rem;color:#fff}.down-icons[data-v-ee189f8b]{margin-top:.625rem;width:100%;height:1.5625rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-ee189f8b]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}
+.overlay[data-v-8cdafce2]{position:fixed;top:0;left:0;width:100%;height:100vh;background:rgba(0,0,0,.5);z-index:999;will-change:opacity;transition:opacity .3s ease;opacity:0;display:block}.overlay-show[data-v-8cdafce2]{opacity:1}.drawer[data-v-8cdafce2]{position:fixed;top:0;right:0;height:100vh;background:#fff;z-index:1000;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;transform:translate(100%);transition:transform .4s ease;will-change:transform}.drawer-open[data-v-8cdafce2]{transform:translate(0)}.drawer-content[data-v-8cdafce2]{position:relative;width:100%;height:100%}.drawer-content-circle[data-v-8cdafce2]{position:absolute;top:calc(50% - 1.71875rem);left:-1.25rem;width:3.125rem;height:3.4375rem;border-radius:50%;z-index:-1;background:linear-gradient(to bottom,#dfecfa,#c9dbee);display:flex;align-items:center;-webkit-clip-path:inset(0 60% 0 0);clip-path:inset(0 60% 0 0)}.drawer-img[data-v-8cdafce2]{width:.78125rem;height:.78125rem;margin-left:.3125rem;transform:rotate(180deg)}.draw-all[data-v-6070efba]{width:100%;height:100%;display:flex;flex-direction:column;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;overflow:hidden}.draw-all .draw-title[data-v-6070efba]{width:100%;height:4.375rem;display:flex}.draw-all .draw-title .draw-title-gun[data-v-6070efba]{margin-top:2.1875rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.5625rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.draw-all .draw-title .draw-title-font[data-v-6070efba]{margin-top:2.125rem;font-size:1.25rem;font-weight:700}.draw-all .draw-contain[data-v-6070efba]{width:100%;height:calc(100vh - 4.375rem)}.draw-all .draw-contain .draw-contain-jindu[data-v-6070efba]{width:100%;height:7.8125rem;display:flex;justify-content:center;align-items:center}.downitems-father[data-v-6070efba]{width:100%;height:calc(100% - 6.40625rem);display:flex}.downitems-father .downitems-left[data-v-6070efba]{height:100%;width:17.1875rem}.downitems-father .downitems-left .downitems-left-mar[data-v-6070efba]{margin-left:2.03125rem}.downitems-father .downitems-left .downitems-left-mar .downitems-left-img[data-v-6070efba]{width:13.125rem;height:9.375rem;margin-top:2.5rem}.downitems-father .downitems-left .downitems-left-father[data-v-6070efba]{display:flex;margin-top:.625rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-img[data-v-6070efba]{width:1.1875rem;height:1.1875rem;margin:.1875rem .40625rem 0 .625rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-img-laba[data-v-6070efba]{width:1.1875rem;height:1.1875rem;margin-top:.1875rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-font[data-v-6070efba]{font-size:1.25rem;width:9.375rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-font-laba[data-v-6070efba]{font-size:1.25rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-font-small[data-v-6070efba]{font-size:1.09375rem;width:12.5rem}.downitems-father .downitems-left .downitems-kuai[data-v-6070efba]{margin-left:1.15625rem;background-color:rgba(236,240,251,.4);border-radius:.625rem;width:10.9375rem;height:7.1875rem;margin-top:.9375rem;display:flex;justify-content:center;align-items:center}.downitems-father .downitems-left .downitems-kuai .downitems-kuai-img[data-v-6070efba]{width:3.75rem;height:3.75rem}.downitems-father .downitems-left .downitems-says[data-v-6070efba]{color:#6f7fa3;font-size:1.09375rem;margin-left:4.4375rem;margin-top:.625rem}.downitems-father .downitems-right[data-v-6070efba]{height:100%;width:20.3125rem}.downitems-father .downitems-right .downitems-all[data-v-6070efba]{margin-left:1.875rem}.downitems-father .downitems-right .downitems-all .downitems-all-font[data-v-6070efba]{margin-top:.9375rem;font-size:1.25rem}.downitems-father .downitems-center[data-v-6070efba]{height:100%;width:18.75rem;position:relative}.downitems-father .downitems-center .downitems-button[data-v-6070efba]{position:absolute;left:30%;bottom:2.5rem;background:linear-gradient(to right,#00c9ff,#0076ff);width:8.4375rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1.25rem}.downitems-center-title[data-v-6070efba]{width:100%;display:flex}.downitems-center-title .downitems-center-title-gun[data-v-6070efba]{margin-top:1.5625rem;margin-left:0;margin-right:.5625rem;width:.40625rem;height:1.5625rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.downitems-center-title .downitems-center-title-font[data-v-6070efba]{margin-top:1.5625rem;font-size:1.25rem;font-weight:700}.downitems-center-title .downitems-center-says[data-v-6070efba]{display:flex;margin-top:1.5625rem;margin-left:5.625rem;text-align:right;color:#6f7fa3;font-size:1.125rem}.downitems-center-title .downitems-center-father[data-v-6070efba]{display:flex;justify-content:center;align-items:center;width:1.5625rem;height:1.5625rem;border-radius:50%;background-color:#bac5de;margin-right:.3125rem;margin-top:0}.downitems-center-title .downitems-center-father .downitems-center-says-maike[data-v-6070efba]{width:1.25rem;height:1.25rem}.downitems-shu[data-v-6070efba]{width:2.1875rem;height:100%;margin-top:.125rem}.downitems-textarea[data-v-6070efba]{margin-top:.625rem}.custom-textarea[data-v-6070efba]{color:#6f7fa3;background-color:rgba(255,255,255,.3);width:17.8125rem;height:7.5rem;border-radius:.625rem;font-size:1.25rem;padding-left:.9375rem;padding-top:.625rem}.radio-circle-top-father[data-v-6070efba]{margin-left:.9375rem}.radio-circle-top-father .radio-circle-top[data-v-6070efba]{margin-top:.9375rem;display:flex}.radio-circle[data-v-6070efba],.radio-circle-target[data-v-6070efba]{position:relative;margin-top:.0625rem;width:1.25rem;height:1.25rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-circle-target[data-v-6070efba]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.9375rem;height:.9375rem;background-color:#02abfe;border-radius:50%}.radio-font[data-v-6070efba]{margin-left:.46875rem;margin-right:1.875rem;font-size:1.125rem}.downitems-card-all[data-v-6070efba]{width:100%;display:flex;flex-wrap:wrap;margin-top:.625rem}.downitems-card-all .downitems-card-one[data-v-6070efba]{width:8.4375rem;height:4.6875rem;margin-right:.625rem;margin-bottom:.9375rem;border-radius:.625rem;background-color:#f3f8fd;border:.03125rem solid #52668C;box-shadow:0 .125rem .125rem rgba(0,0,0,.2);display:flex;justify-content:center;align-items:center}.downitems-card-all .downitems-card-one-target[data-v-6070efba]{width:8.4375rem;height:4.6875rem;margin-right:.625rem;margin-bottom:.9375rem;border-radius:.625rem;background:linear-gradient(to bottom,#b8e5ff,#f7d0ef);border:.03125rem solid #fff;box-shadow:0 .125rem .125rem rgba(0,0,0,.2);display:flex;justify-content:center;align-items:center}.downitems-card-all .downitems-card[data-v-6070efba]{display:flex;justify-content:center;align-items:center}.downitems-card-all .downitems-card .downitems-card-font[data-v-6070efba]{font-weight:700;margin-left:.3125rem;margin-right:.3125rem;font-size:1.25rem}.downitems-card-all .downitems-card .downitems-card-father[data-v-6070efba]{width:2.8125rem;height:2.8125rem;border-radius:1.5625rem;border:.03125rem solid #94B0C3;background-color:#fff;display:flex;justify-content:center;overflow:hidden}.downitems-card-all .downitems-card .downitems-card-father .downitems-card-img[data-v-6070efba]{width:2.5rem;height:2.5rem;margin-top:.3125rem}.container[data-v-6070efba]{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100vh}.modal[data-v-6070efba]{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center}.modal-content[data-v-6070efba]{width:80vw;height:80vh;background:#fff;border-radius:8px;overflow:hidden}.right-container[data-v-6d6a66c6]{width:calc(100% - 7.34375rem);height:100vh;transition:opacity 1s ease}.right-container .right-container-sec[data-v-6d6a66c6]{width:100%;display:flex;position:relative}.right-container .right-container-sec .right-container-left-font-spec[data-v-6d6a66c6]{position:absolute;top:5.625rem;left:18.125rem;width:3.125rem;height:1.25rem;font-size:.78125rem;border-radius:.15625rem;color:#fff;z-index:10;background-color:#34c678;display:flex;justify-content:center;align-items:center}.right-container .right-container-sec .right-container-fir-left-carousel[data-v-6d6a66c6]{position:absolute;right:7.65625rem;top:.53125rem}.right-container .right-container-sec .right-container-fir-left-carousel .carousel[data-v-6d6a66c6]{position:relative;width:.9375rem;height:2.5rem}.right-container .right-container-sec .right-container-fir-left-carousel .carousel .dots[data-v-6d6a66c6]{position:absolute;top:50%;right:.3125rem;transform:translateY(-50%);display:flex;flex-direction:column;gap:.21875rem}.right-container .right-container-sec .right-container-fir-left-carousel .carousel .dots .dot[data-v-6d6a66c6]{width:.3125rem;height:.3125rem;border-radius:50%;background-color:#657494;cursor:pointer;transition:background-color .3s ease}.right-container .right-container-sec .right-container-fir-left-carousel .carousel .dots .dot-dark[data-v-6d6a66c6]{width:.3125rem;height:.3125rem;border-radius:50%;background-color:#fff;cursor:pointer;transition:background-color .3s ease}.right-container .right-container-sec .right-container-fir-left-carousel .carousel .dots .dot.active[data-v-6d6a66c6]{background-color:#01a0fe}.right-container .right-container-sec .right-container-right-father-dark[data-v-6d6a66c6]{height:19.6875rem;border-radius:1.5625rem;background-color:#16304c;border:.0625rem solid transparent;background:url(../../static/index/cardbgc/bgcdark.png) padding-box,linear-gradient(45deg,#9bc4f8,#285399,#9bc4f8,#285399,#9bc4f8) border-box;background-clip:padding-box,border-box;background-color:rgba(12,25,47,.1);position:relative;display:flex;flex-direction:column;box-shadow:0 .25rem .5rem rgba(105,129,178,.8);overflow:hidden}.right-container .right-container-sec .right-container-right-father-dark .uni-margin-wrap[data-v-6d6a66c6]{margin-top:6.25rem;width:37.5rem}.right-container .right-container-sec .right-container-right-father-dark .uni-margin-wrap .swiper[data-v-6d6a66c6]{height:28.125rem}.right-container .right-container-sec .right-container-right-father-dark .uni-margin-wrap .swiper .swiper-item-flex[data-v-6d6a66c6]{display:flex}.right-container .right-container-sec .right-container-right-father-dark .uni-margin-wrap .swiper .swiper-item[data-v-6d6a66c6]{display:block;height:9.375rem;line-height:9.375rem;text-align:center}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next[data-v-6d6a66c6]{height:100%;width:21.875rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-people[data-v-6d6a66c6]{display:flex;margin-bottom:.625rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-people .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.15625rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-people .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:2.8125rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-people .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:2.8125rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-font[data-v-6d6a66c6]{font-size:2.03125rem;margin-top:1.5625rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-font-dark[data-v-6d6a66c6]{font-size:2.03125rem;margin-top:1.5625rem;margin-bottom:.3125rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;font-weight:700}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-text[data-v-6d6a66c6]{margin-left:.3125rem;font-size:2.1875rem;font-weight:700;width:25rem;margin-bottom:1.5625rem;line-height:2.1875rem;position:relative}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-text .time-text-img[data-v-6d6a66c6]{position:absolute;top:0;left:9.375rem;width:2.5rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father[data-v-6d6a66c6]{width:100%;height:17.5rem;display:flex;justify-content:center;align-items:center}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-left[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-top:-4.6875rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark[data-v-6d6a66c6]{margin-left:1.5625rem;margin-top:1.875rem;width:23.84375rem;height:13.4375rem;border-radius:1.25rem;position:relative;display:flex;box-shadow:.0625rem 0 0 .0625rem;background-color:#16304c;border:.0625rem solid #fff}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-line[data-v-6d6a66c6]{width:1px;height:6.25rem;background:linear-gradient(to top,rgba(0,0,0,0),gray,rgba(0,0,0,0));margin-left:-.625rem;margin-right:.9375rem;margin-top:3.125rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:14.0625rem;position:relative}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-type[data-v-6d6a66c6]{position:absolute;top:0;left:-.78125rem;width:7.8125rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-font[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#414f6e}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-font-dark[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#fff}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-img[data-v-6d6a66c6]{width:7.1875rem;height:6.25rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-font[data-v-6d6a66c6]{font-size:1.09375rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-font-dark[data-v-6d6a66c6]{font-size:1.09375rem;color:#fff;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card[data-v-6d6a66c6]{margin-left:1.5625rem;margin-top:1.875rem;width:23.84375rem;height:13.4375rem;border-radius:1.25rem;position:relative;display:flex;border:.03125rem solid black;box-shadow:0 .25rem .5rem rgba(0,0,0,.3)}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-line[data-v-6d6a66c6]{width:1px;height:6.25rem;background:linear-gradient(to top,rgba(0,0,0,0),gray,rgba(0,0,0,0));margin-left:-.625rem;margin-right:.9375rem;margin-top:3.125rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:14.0625rem;position:relative}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-card-type[data-v-6d6a66c6]{position:absolute;top:0;left:-.78125rem;width:7.8125rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-card-font[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#414f6e}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-img[data-v-6d6a66c6]{width:7.1875rem;height:6.25rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-font[data-v-6d6a66c6]{font-size:1.09375rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-font-dark[data-v-6d6a66c6]{font-size:1.5625rem;color:#fff;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-right[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-top:-4.6875rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-title[data-v-6d6a66c6]{width:100%;height:5.3125rem;position:relative}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-title .right-container-right-text[data-v-6d6a66c6]{line-height:4.0625rem;font-size:1.25rem;font-weight:600;margin-left:1.875rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-title .right-container-right-text-dark[data-v-6d6a66c6]{line-height:4.0625rem;font-size:1.25rem;font-weight:600;margin-left:1.875rem;color:#fff}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-title .right-container-right-img[data-v-6d6a66c6]{position:absolute;top:1.875rem;right:1.5625rem;width:1.5625rem;height:.46875rem}.right-container .right-container-sec .right-container-right-father[data-v-6d6a66c6]{width:100%;height:19.6875rem;border-radius:1.5625rem;border:.0625rem solid #fff;background-image:url(../../static/index/mountain.png);background-color:rgba(200,216,238,.8);background-position:60% 50%;position:relative;display:flex;flex-direction:column;box-shadow:0 .25rem .5rem rgba(105,129,178,.8);overflow:hidden}.right-container .right-container-sec .right-container-right-father .uni-margin-wrap[data-v-6d6a66c6]{margin-top:6.25rem;width:37.5rem}.right-container .right-container-sec .right-container-right-father .uni-margin-wrap .swiper[data-v-6d6a66c6]{height:28.125rem}.right-container .right-container-sec .right-container-right-father .uni-margin-wrap .swiper .swiper-item-flex[data-v-6d6a66c6]{display:flex}.right-container .right-container-sec .right-container-right-father .uni-margin-wrap .swiper .swiper-item[data-v-6d6a66c6]{display:block;height:9.375rem;line-height:9.375rem;text-align:center}.right-container .right-container-sec .right-container-right-father .time-tra-next[data-v-6d6a66c6]{height:100%;width:21.875rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-people[data-v-6d6a66c6]{display:flex;margin-bottom:.625rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-people .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.15625rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-people .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:2.8125rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-people .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:2.8125rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-font[data-v-6d6a66c6]{font-size:2.03125rem;margin-top:1.5625rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-font-dark[data-v-6d6a66c6]{font-size:2.03125rem;margin-top:1.5625rem;margin-bottom:.3125rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;font-weight:700}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-text[data-v-6d6a66c6]{margin-left:.3125rem;font-size:2.1875rem;font-weight:700;width:25rem;margin-bottom:1.5625rem;line-height:2.1875rem;position:relative}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-text .time-text-img[data-v-6d6a66c6]{position:absolute;top:0;left:9.375rem;width:2.5rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father[data-v-6d6a66c6]{width:100%;height:17.5rem;display:flex;justify-content:center;align-items:center}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-left[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-top:-4.6875rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark[data-v-6d6a66c6]{margin-left:1.5625rem;margin-top:1.875rem;width:23.84375rem;height:13.4375rem;border-radius:1.25rem;position:relative;display:flex;box-shadow:.0625rem 0 0 .0625rem;background-color:#16304c;border:.0625rem solid #fff}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-line[data-v-6d6a66c6]{width:1px;height:6.25rem;background:linear-gradient(to top,rgba(0,0,0,0),gray,rgba(0,0,0,0));margin-left:-.625rem;margin-right:.9375rem;margin-top:3.125rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:14.0625rem;position:relative}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-type[data-v-6d6a66c6]{position:absolute;top:0;left:-.78125rem;width:7.8125rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-font[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#414f6e}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-font-dark[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#fff}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-img[data-v-6d6a66c6]{width:7.1875rem;height:6.25rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-font[data-v-6d6a66c6]{font-size:1.09375rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-font-dark[data-v-6d6a66c6]{font-size:1.09375rem;color:#fff;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card[data-v-6d6a66c6]{margin-left:1.5625rem;margin-top:1.875rem;width:23.84375rem;height:13.4375rem;border-radius:1.25rem;position:relative;display:flex;border:.03125rem solid black;box-shadow:0 .25rem .5rem rgba(0,0,0,.3)}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-line[data-v-6d6a66c6]{width:1px;height:6.25rem;background:linear-gradient(to top,rgba(0,0,0,0),gray,rgba(0,0,0,0));margin-left:-.625rem;margin-right:.9375rem;margin-top:3.125rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:14.0625rem;position:relative}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-card-type[data-v-6d6a66c6]{position:absolute;top:0;left:-.78125rem;width:7.8125rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-card-font[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#414f6e}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-img[data-v-6d6a66c6]{width:7.1875rem;height:6.25rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-font[data-v-6d6a66c6]{font-size:1.09375rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-font-dark[data-v-6d6a66c6]{font-size:1.5625rem;color:#fff;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-right[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-top:-4.6875rem}.right-container .right-container-sec .right-container-right-father .right-container-right-title[data-v-6d6a66c6]{width:100%;height:5.3125rem;position:relative}.right-container .right-container-sec .right-container-right-father .right-container-right-title .right-container-right-text[data-v-6d6a66c6]{line-height:4.0625rem;font-size:1.25rem;font-weight:600;margin-left:1.875rem}.right-container .right-container-sec .right-container-right-father .right-container-right-title .right-container-right-text-dark[data-v-6d6a66c6]{line-height:4.0625rem;font-size:1.25rem;font-weight:600;margin-left:1.875rem;color:#fff}.right-container .right-container-sec .right-container-right-father .right-container-right-title .right-container-right-img[data-v-6d6a66c6]{position:absolute;top:1.875rem;right:1.5625rem;width:1.5625rem;height:.46875rem}.right-container .right-container-sec .right-container-left[data-v-6d6a66c6]{height:19.6875rem;border-radius:1.5625rem;border:.03125rem solid #fff;position:relative;display:flex;justify-content:center;align-items:center;background-color:rgba(255,255,255,.5);background-image:url(../../static/index/mountain.png);background-position:70% 45%;overflow:hidden;box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-sec .right-container-left-dark[data-v-6d6a66c6]{height:19.6875rem;border-radius:1.5625rem;background-color:#16304c;border:.0625rem solid transparent;background:url(../../static/index/cardbgc/bgcdark.png) padding-box,linear-gradient(45deg,#9bc4f8,#285399,#9bc4f8,#285399,#9bc4f8) border-box;background-clip:padding-box,border-box;background-color:rgba(12,25,47,.1);position:relative;display:flex;justify-content:center;align-items:center;overflow:hidden;box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-sec .uni-margin-wrap[data-v-6d6a66c6]{width:31.25rem}.right-container .right-container-sec .uni-margin-wrap .swiper[data-v-6d6a66c6]{height:21.875rem}.right-container .right-container-sec .uni-margin-wrap .swiper .swiper-item-flex[data-v-6d6a66c6]{display:flex;position:relative}.right-container .right-container-sec .uni-margin-wrap .swiper .swiper-item[data-v-6d6a66c6]{display:block;height:7.8125rem;line-height:9.375rem;text-align:center}.right-container .right-container-sec .right-container-fir-left-card-main-right[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-right:.3125rem;z-index:11}.right-container .right-container-sec .right-huli-fir[data-v-6d6a66c6]{width:7.8125rem;height:100%;margin-top:0;display:flex;justify-content:center;align-items:center;flex-direction:column}.right-container .right-container-sec .right-huli-fir .right-huli-view[data-v-6d6a66c6]{margin-left:.25rem;height:23.4375rem;overflow:auto;display:flex;justify-content:center;align-items:center;flex-direction:column;box-sizing:border-box}.right-container .right-container-sec .right-huli-fir .right-huli-view .right-huli-view-dis[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:100%;height:5.3125rem}.right-container .right-container-sec .right-huli-fir .right-huli-view .right-huli-view-dis .right-huli-img[data-v-6d6a66c6]{width:2.5rem;height:2.5rem}.right-container .right-container-sec .right-huli-fir .right-huli-view .right-huli-view-dis .right-huli-text[data-v-6d6a66c6]{width:100%;height:.3125rem;font-size:1.09375rem;text-align:center;margin-bottom:.15625rem}.right-container .right-container-sec .right-huli-fir .right-huli-view .right-huli-view-dis .right-huli-text-dark[data-v-6d6a66c6]{width:100%;height:.3125rem;font-size:1.09375rem;text-align:center;margin-bottom:.15625rem;color:#fff}.right-container .right-container-sec .right-huli-fir .right-huli-shang[data-v-6d6a66c6]{margin-top:1.25rem;width:.9375rem;height:.9375rem}.right-container .right-container-sec .right-huli-fir .right-huli-xia[data-v-6d6a66c6]{margin-bottom:1.25rem;width:.9375rem;height:.9375rem}.right-container .right-container-sec .right-container-photo[data-v-6d6a66c6]{display:flex;flex-direction:column;justify-content:center;align-items:center;margin-left:1.5625rem}.right-container .right-container-sec .right-container-photo .right-container-photo-img[data-v-6d6a66c6]{width:9.6875rem;height:10.9375rem;margin-bottom:.3125rem}.right-container .right-container-sec .right-container-photo .right-container-photo-text[data-v-6d6a66c6]{font-size:.9375rem;color:#324160}.right-container .right-container-sec .right-container-photo .right-container-photo-text-dark[data-v-6d6a66c6]{font-size:.9375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .right-container-fir-left-card-main-left[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-left:.9375rem}.right-container .right-container-sec .right-container-left-type[data-v-6d6a66c6]{position:absolute;top:1.3125rem;left:-.46875rem;width:7.34375rem;height:2.28125rem;z-index:10}.right-container .right-container-sec .right-container-left-font[data-v-6d6a66c6]{position:absolute;top:1.59375rem;left:1.5625rem;font-size:1.125rem;color:#fff;z-index:10}.right-container .right-container-sec .time-tra-thi[data-v-6d6a66c6]{margin-left:2.5rem;margin-top:2.1875rem;height:100%;width:17.1875rem;position:relative}.right-container .right-container-sec .time-tra-thi .time-text[data-v-6d6a66c6]{margin-left:.3125rem;font-size:1.09375rem;width:14.0625rem;margin-bottom:1.25rem;line-height:1.25rem}.right-container .right-container-sec .time-tra-thi .time-text-dark[data-v-6d6a66c6]{margin-left:.3125rem;color:#cdd6ea;font-size:1.09375rem;width:14.0625rem;margin-bottom:1.25rem;line-height:1.25rem}.right-container .right-container-sec .time-tra-thi .time-tra-thi-zhixing[data-v-6d6a66c6]{position:absolute;top:2.34375rem;left:14.0625rem}.right-container .right-container-sec .time-tra-thi .time-tra-thi-zhixing-font[data-v-6d6a66c6]{position:absolute;top:1.875rem;left:.3125rem;width:3.125rem;height:1.25rem;font-size:.78125rem;border-radius:.15625rem;color:#fff;z-index:10;background-color:#f37b5b;display:flex;justify-content:center;align-items:center}.right-container .right-container-sec .time-tra-thi .time-people-two[data-v-6d6a66c6]{display:flex;margin-top:1.25rem;margin-bottom:1.25rem}.right-container .right-container-sec .time-tra-thi .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.3125rem}.right-container .right-container-sec .time-tra-thi .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:.625rem}.right-container .right-container-sec .time-tra-thi .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:.625rem}.right-container .right-container-sec .time-tra-thi .time-people-thi[data-v-6d6a66c6]{display:flex}.right-container .right-container-sec .time-tra-thi .time-people-thi .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.15625rem;margin-left:.15625rem}.right-container .right-container-sec .time-tra-thi .time-people-thi .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:.625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.right-container .right-container-sec .time-tra-thi .time-people-thi .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:.625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.right-container .right-container-sec .time-tra-thi .time-button-view[data-v-6d6a66c6]{display:flex;margin-left:0;transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-thi .time-button-view .time-button-start[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to bottom,#af8ed7,#4d3e9b);border-left:.0625rem solid #fff;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem;margin-right:.78125rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-thi .time-button-view .time-button-end[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-thi .time-button-view .time-button-end-dark[data-v-6d6a66c6]{width:7.1875rem;height:2.5rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(0,0,0,.3);background:linear-gradient(to top,#6b87ba,#fff);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-thi .time-font[data-v-6d6a66c6]{font-size:2.1875rem;margin-top:3.75rem;margin-bottom:1.25rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .time-tra-thi .time-font-dark[data-v-6d6a66c6]{font-size:2.1875rem;margin-top:3.75rem;margin-bottom:1.25rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;font-weight:700}.right-container .right-container-sec .time-tra-thi .time-text-img[data-v-6d6a66c6]{position:absolute;top:0;left:9.375rem;width:2.5rem;height:2.5rem}.right-container .right-container-sec .time-tra-sec[data-v-6d6a66c6]{margin-left:2.5rem;margin-top:3.4375rem;height:100%;width:15.625rem;overflow:hidden}.right-container .right-container-sec .time-tra-sec .time-people-thi[data-v-6d6a66c6]{display:flex;margin-bottom:.46875rem}.right-container .right-container-sec .time-tra-sec .time-people-thi .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.15625rem;margin-left:.15625rem}.right-container .right-container-sec .time-tra-sec .time-people-thi .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:.625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.right-container .right-container-sec .time-tra-sec .time-people-thi .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:.625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.right-container .right-container-sec .time-tra-sec .time-button-view[data-v-6d6a66c6]{display:flex;margin-top:.9375rem;margin-left:0}.right-container .right-container-sec .time-tra-sec .time-button-view .time-button-start[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to top,#0da0b1,#04d3af);border-left:.0625rem solid #fff;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem;margin-right:.78125rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-sec .time-button-view .time-button-end[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-sec .time-button-view .time-button-end-dark[data-v-6d6a66c6]{width:7.1875rem;height:2.5rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(0,0,0,.3);background:linear-gradient(to top,#6b87ba,#fff);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-sec .time-font[data-v-6d6a66c6]{font-size:2.34375rem;margin-top:.9375rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .time-tra-sec .time-font-dark[data-v-6d6a66c6]{font-size:2.34375rem;margin-top:.9375rem;margin-bottom:.3125rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;font-weight:700}.right-container .right-container-sec .time-tra-sec .time-text-img[data-v-6d6a66c6]{position:absolute;top:0;left:9.375rem;width:2.5rem;height:2.5rem}.right-container .time-people-sec[data-v-6d6a66c6]{display:flex;margin-bottom:.3125rem}.right-container .time-people-sec .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.3125rem;margin-left:.15625rem;transition:all .4s ease-in-out}.right-container .time-people-sec .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:2.8125rem;transition:all .4s ease-in-out}.right-container .time-people-sec .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:2.8125rem;transition:all .4s ease-in-out}.right-container .right-container-fir[data-v-6d6a66c6]{width:100%;height:18.125rem;display:flex}.right-container .right-container-fir .right-container-fir-left-nav[data-v-6d6a66c6]{width:63%;height:17.125rem;position:relative;box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel[data-v-6d6a66c6]{position:absolute;left:29.0625rem;margin-top:.3125rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel[data-v-6d6a66c6]{position:relative;width:4.6875rem;height:3.125rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel .dots[data-v-6d6a66c6]{position:absolute;top:50%;right:.3125rem;transform:translateY(-50%);display:flex;flex-direction:column;gap:.21875rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel .dots .dot[data-v-6d6a66c6]{width:.3125rem;height:.3125rem;border-radius:50%;background-color:#657494;cursor:pointer;transition:background-color .3s ease}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel .dots .dot-dark[data-v-6d6a66c6]{width:.3125rem;height:.3125rem;border-radius:50%;background-color:#fff;cursor:pointer;transition:background-color .3s ease}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel .dots .dot.active[data-v-6d6a66c6]{background-color:#01a0fe}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card[data-v-6d6a66c6]{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:1.5625rem;border:.03125rem solid #fff;background-color:rgba(99,115,157,.1);background-image:url(../../static/index/mountain.png);background-position:60% 50%}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-dark[data-v-6d6a66c6]{position:absolute;top:0;left:0;width:100%;height:100%;border:.0625rem solid transparent;border-radius:1.5625rem;background:url(../../static/index/cardbgc/bgcdark.png) padding-box,linear-gradient(45deg,#9bc4f8,#285399,#9bc4f8,#285399,#9bc4f8) border-box;background-clip:padding-box,border-box;background-color:rgba(12,25,47,.1)}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;width:100%;height:100%}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .split-line-white-right-left[data-v-6d6a66c6]{width:.0625rem;height:25rem;background:linear-gradient(to top,rgba(0,0,0,0),#fff,rgba(0,0,0,0));margin-right:.625rem;position:relative}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .split-line-white-right-left .split-line-white-img[data-v-6d6a66c6]{position:absolute;top:0;left:-9.375rem;height:25rem;width:9.375rem;z-index:-1}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .uni-margin-wrap-fir[data-v-6d6a66c6]{width:100%}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .uni-margin-wrap-fir .swiper[data-v-6d6a66c6]{height:14.6875rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .uni-margin-wrap-fir .swiper .swiper-item-flex[data-v-6d6a66c6]{display:flex;margin-top:.9375rem;z-index:10}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .uni-margin-wrap-fir .swiper .swiper-item[data-v-6d6a66c6]{display:block;height:6.25rem;line-height:9.375rem;text-align:center}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-main-right[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-right:.78125rem;z-index:1}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir[data-v-6d6a66c6]{margin-top:1.25rem;margin-left:.9375rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-two[data-v-6d6a66c6]{display:flex}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-button-view[data-v-6d6a66c6]{display:flex;margin-top:.3125rem;margin-left:0}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-button-view .time-button-start[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to top,#047adb,#0ea7dd);border-left:.0625rem solid #fff;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem;margin-right:.78125rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-button-view .time-button-end[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-button-view .time-button-end-dark[data-v-6d6a66c6]{width:7.1875rem;height:2.5rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(0,0,0,.3);background:linear-gradient(to top,#6b87ba,#fff);transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-fir[data-v-6d6a66c6]{display:flex;margin-right:.625rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-fir .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.3125rem;margin-left:.15625rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-fir .time-people-font[data-v-6d6a66c6]{font-size:.9375rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-fir .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-font[data-v-6d6a66c6]{font-size:2.1875rem;margin-bottom:.9375rem;background:linear-gradient(to top,#334160,#687898);-webkit-background-clip:text;color:transparent;font-weight:700;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-font-dark[data-v-6d6a66c6]{font-size:2.1875rem;margin-bottom:.9375rem;background:linear-gradient(to right,#ebf4ff,#adc4e0);-webkit-background-clip:text;color:transparent;font-weight:700;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-text[data-v-6d6a66c6]{margin-left:.3125rem;font-size:1.09375rem;width:16.5625rem;margin-bottom:1.25rem;line-height:1.25rem;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-text-dark[data-v-6d6a66c6]{margin-left:.3125rem;color:#cdd6ea;font-size:1.09375rem;width:16.5625rem;margin-bottom:1.25rem;line-height:1.25rem;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;position:relative;margin-left:1.5625rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-zhixing[data-v-6d6a66c6]{position:absolute;top:.3125rem;left:27.1875rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-zhixing-font[data-v-6d6a66c6]{position:absolute;top:1.875rem;left:.3125rem;width:3.125rem;height:1.25rem;font-size:.78125rem;border-radius:.15625rem;color:#fff;z-index:10;background-color:#f37b5b;display:flex;justify-content:center;align-items:center}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-font[data-v-6d6a66c6]{font-size:1.0625rem;font-weight:350;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-font-dark[data-v-6d6a66c6]{font-size:1.0625rem;font-weight:350;transition:all .4s ease-in-out;color:#fff}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-laba-video[data-v-6d6a66c6]{width:100%;display:flex;justify-content:center;align-items:center;margin-top:.3125rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-laba-video .right-container-fir-left-card-main-laba[data-v-6d6a66c6]{width:1.40625rem;height:1.40625rem;margin-right:.15625rem;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-laba-video .right-container-fir-left-card-main-video[data-v-6d6a66c6]{width:1.40625rem;height:1.40625rem;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-img[data-v-6d6a66c6]{width:11.25rem;height:8.4375rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-main-left-up[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-right:0;margin-left:.625rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-hulilei[data-v-6d6a66c6]{position:absolute;top:1.3125rem;left:-.3125rem;width:6.875rem;height:2.28125rem;z-index:10}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-hulilei-font[data-v-6d6a66c6]{position:absolute;top:1.59375rem;left:1.40625rem;font-size:1.125rem;color:#fff;z-index:10}.right-container .right-container-fir .right-container-fir-right[data-v-6d6a66c6]{margin-left:2%;margin-right:2%;width:21.875rem;height:17.125rem;border-radius:1.5625rem;border:.03125rem solid #fff;background:url(../../static/index/rightbgi.png);background-size:cover;background-color:rgba(99,115,157,.1);box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-fir .right-container-fir-right-dark[data-v-6d6a66c6]{margin-left:2%;margin-right:2%;width:21.875rem;height:17.125rem;border-radius:1.5625rem;border:.03125rem solid #fff;background-color:#16304c;border:.0625rem solid transparent;background:url(../../static/index/cardbgc/bgcdark.png) padding-box,linear-gradient(45deg,#9bc4f8,#285399,#9bc4f8,#285399,#9bc4f8) border-box;background-clip:padding-box,border-box;background-color:rgba(12,25,47,.1);box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-fir .right-container-card[data-v-6d6a66c6]{margin-top:.78125rem;margin-left:1.25rem;position:relative}.right-container .right-container-fir .right-container-card .right-container-card-right[data-v-6d6a66c6]{position:absolute;right:0;top:0;width:3.75rem;height:10.9375rem;display:flex;align-items:center;justify-content:center;flex-direction:column;margin-bottom:.625rem;margin-right:.625rem}.right-container .right-container-fir .right-container-card .right-container-card-right .right-container-card-right-img[data-v-6d6a66c6]{width:1.875rem;height:1.875rem;margin-top:.3125rem}.right-container .right-container-fir .right-container-card .right-container-button[data-v-6d6a66c6]{display:flex;margin-left:-.625rem;margin-top:.71875rem}.right-container .right-container-fir .right-container-card .right-container-button .right-container-button-any[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:4.6875rem;position:relative}.right-container .right-container-fir .right-container-card .right-container-button .right-container-button-any .right-container-button-ray[data-v-6d6a66c6]{position:absolute;top:-.78125rem;left:0;width:4.9375rem;height:4.6875rem}.right-container .right-container-fir .right-container-card .right-container-button .right-container-button-any .right-container-button-text[data-v-6d6a66c6]{font-size:.78125rem;color:#313d56}.right-container .right-container-fir .right-container-card .right-container-button .right-container-button-img[data-v-6d6a66c6]{width:2.5rem;height:2.5rem}.right-container .right-container-fir .right-container-card .right-container-fenge[data-v-6d6a66c6]{width:100%;height:.0625rem;background:linear-gradient(to right,rgba(255,255,255,0),#fff,rgba(255,255,255,0))}.right-container .right-container-fir .right-container-card .right-container-tem[data-v-6d6a66c6]{display:flex;margin-top:.625rem;margin-bottom:.625rem}.right-container .right-container-fir .right-container-card .right-container-tem .right-container-tem-text[data-v-6d6a66c6]{font-size:1.5625rem;margin-right:2.1875rem}.right-container .right-container-fir .right-container-card .right-container-tem .right-container-tem-text-dark[data-v-6d6a66c6]{font-size:1.5625rem;margin-right:2.1875rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-fir .right-container-card .right-container-tem .right-container-tem-img[data-v-6d6a66c6]{width:2.03125rem;height:2.03125rem}.right-container .right-container-fir .right-container-card .right-container-title[data-v-6d6a66c6]{font-size:3.75rem;font-weight:500;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent;margin:0}.right-container .right-container-fir .right-container-card .right-container-title-dark[data-v-6d6a66c6]{font-size:3.75rem;display:block;margin:0;font-weight:500;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-fir .right-container-card .right-container-date[data-v-6d6a66c6]{font-size:1.09375rem;display:block;margin:0;margin-left:.5625rem;margin-bottom:.3125rem}.right-container .right-container-fir .right-container-card .right-container-date-dark[data-v-6d6a66c6]{font-size:1.09375rem;color:#7080a1;display:block;margin:0;margin-left:.5625rem;margin-bottom:.3125rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-fir .right-container-card .right-container-day[data-v-6d6a66c6]{font-size:1.09375rem;font-weight:600;margin-left:.5625rem}.right-container .right-container-fir .right-container-card .right-container-day-dark[data-v-6d6a66c6]{font-size:1.09375rem;font-weight:600;margin-left:.5625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-title-nav[data-v-6d6a66c6]{margin-top:2.34375rem;margin-bottom:.625rem;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-no[data-v-6d6a66c6]{font-size:1.09375rem;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-no-dark[data-v-6d6a66c6]{font-size:1.09375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-class[data-v-6d6a66c6]{font-size:1.09375rem;font-weight:800;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-class-dark[data-v-6d6a66c6]{font-size:1.09375rem;font-weight:800;margin-left:.625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-title-nav .right-container-title-class-anhei-button[data-v-6d6a66c6]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.9375rem;width:6.25rem;height:1.5625rem;background-color:#000;border:.0625rem solid}.right-container .right-container-title-nav .right-container-title-class-anhei-button .right-container-title-class-anhei[data-v-6d6a66c6]{font-size:.625rem;font-weight:800;color:#fff}.split-line[data-v-6d6a66c6]{margin-left:.625rem;margin-top:3.75rem;width:.0625rem;height:4.6875rem;background:linear-gradient(to top,rgba(0,0,0,0),#92a7c5,rgba(0,0,0,0))}.split-line-white-sec[data-v-6d6a66c6]{width:.0625rem;height:25rem;background:linear-gradient(to top,rgba(0,0,0,0),#fff,rgba(0,0,0,0));position:relative}.split-line-white-sec .split-line-white-img[data-v-6d6a66c6]{position:absolute;top:0;left:-9.375rem;height:25rem;width:9.375rem;pointer-events:none}.card-upfaguang[data-v-6d6a66c6]{position:absolute;top:8.28125rem;left:1.5625rem;height:18.75rem;width:15.625rem;transition:all .4s ease-in-out}.card-upfaguang-down[data-v-6d6a66c6]{position:absolute;top:19.375rem;left:26.875rem;height:18.75rem;width:15.625rem}.right-huli-sec[data-v-6d6a66c6]{margin-left:.21875rem;width:7.1875rem;height:100%;display:flex;justify-content:center;align-items:center;flex-direction:column;transition:all .4s ease-in-out}.right-huli-sec .right-huli-view[data-v-6d6a66c6]{width:100%;overflow:auto;display:flex;justify-content:center;align-items:flex-start;flex-direction:column;height:14.0625rem}.right-huli-sec .right-huli-view .right-huli-view-dis[data-v-6d6a66c6]{height:4.375rem;display:flex;justify-content:center;align-items:center;flex-direction:column;width:100%;transition:all .4s ease-in-out}.right-huli-sec .right-huli-view .right-huli-view-dis .right-huli-img[data-v-6d6a66c6]{width:2.8125rem;height:2.8125rem}.right-huli-sec .right-huli-view .right-huli-view-dis .right-huli-text[data-v-6d6a66c6]{width:100%;height:.46875rem;text-align:center;font-size:1.09375rem}.right-huli-sec .right-huli-view .right-huli-view-dis .right-huli-text-dark[data-v-6d6a66c6]{width:100%;height:.46875rem;text-align:center;font-size:1.09375rem;color:#fff;margin-top:.3125rem}.right-huli-sec .right-huli-shang[data-v-6d6a66c6],.right-huli-sec .right-huli-xia[data-v-6d6a66c6]{width:.9375rem;height:.625rem}.right-container-fir-left-card-flex[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;width:100%;height:100%;margin-left:.625rem}.right-container-fir-left-card-flex-sec[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;width:100%;height:100%;position:relative}.right-container-fir-left-card-flex-sec .right-container-fir-left-card-flex-sec-img[data-v-6d6a66c6]{position:absolute;top:1.3125rem;left:-.3125rem;width:6.875rem;height:2.28125rem;z-index:10}.right-container-fir-left-card-flex-sec .right-container-fir-left-card-flex-sec-font[data-v-6d6a66c6]{position:absolute;top:1.59375rem;left:1.40625rem;font-size:1.125rem;color:#fff;z-index:10}.right-container-fir-left-card-flex-sec .right-container-fir-left-card-flex-sec-imgright-fir[data-v-6d6a66c6]{position:absolute;width:3.125rem;height:1.5625rem;top:1.59375rem;left:20.3125rem;z-index:10}.right-container-fir-left-card-flex-sec .right-container-fir-left-card-flex-sec-imgright-sec[data-v-6d6a66c6]{position:absolute;width:3.125rem;height:1.5625rem;top:1.59375rem;left:20.9375rem;z-index:10}.savehundred[data-v-6d6a66c6]{width:100%;height:100%}.mt[data-v-6d6a66c6]{margin-top:1.5625rem}.progress-bar-container[data-v-6d6a66c6]{margin-top:.9375rem;width:60%;height:.625rem;background-color:#aab9d6;border-radius:15px;overflow:hidden}.progress-bar[data-v-6d6a66c6]{height:100%;background:linear-gradient(to top,#047adb,#0ea7dd);border-radius:15px 0 0 15px;transition:width .3s ease}.under-father[data-v-6d6a66c6]{position:fixed;bottom:0;display:flex;align-items:center;width:100%;height:4.6875rem}.under-father .under-father-view[data-v-6d6a66c6]{margin-left:.3125rem;margin-right:4.6875rem;position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column}.under-father .under-father-view .under-father-light[data-v-6d6a66c6]{position:absolute;bottom:-.625rem;left:-2.8125rem;width:9.375rem;height:6.25rem}.under-father .under-father-view .under-father-img[data-v-6d6a66c6]{width:2.5rem;height:2.5rem;margin-left:-.09375rem}.under-father .under-father-view .under-father-img-font[data-v-6d6a66c6]{font-size:.9375rem}.under-father .under-father-view .under-father-img-font-dark[data-v-6d6a66c6]{font-size:.9375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-icons[data-v-6d6a66c6]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.right-icons .right-icons-font[data-v-6d6a66c6]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-icons .right-icons-font-dark[data-v-6d6a66c6]{color:#fff;margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-icons .right-icons-img[data-v-6d6a66c6]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-1.25rem}.right-icons .right-icons-img-icon[data-v-6d6a66c6]{width:1.875rem;height:2.5rem;margin-top:-.3125rem;margin-left:.25rem}.swiper-item-flex .time-tra-thi-photo[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;width:9.375rem;flex-direction:column;transition:all .4s ease-in-out;margin-left:.625rem}.swiper-item-flex .time-tra-thi-photo .time-tra-thi-photo-img[data-v-6d6a66c6]{width:10.3125rem;height:10.3125rem;margin-top:-3.125rem;margin-left:-1.5625rem;transition:all .4s ease-in-out}.swiper-item-flex .time-tra-thi-photo .time-tra-thi-photo-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:1.5625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;transition:all .4s ease-in-out}.swiper-item-flex .time-tra-thi-photo .time-tra-thi-photo-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:1.5625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;transition:all .4s ease-in-out}.down-icons[data-v-6d6a66c6]{margin-top:.3125rem;width:100%;height:1.875rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-6d6a66c6]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.right-container-big[data-v-6d6a66c6]{transform:scale(1.562);transition:transform .5s ease;transform-origin:left top;background-color:#dce6fe;border-radius:.9375rem}.right-container-small[data-v-6d6a66c6]{transform:scale(1);transition:transform .5s ease;transform-origin:left top;background-color:#dce6fe;border-radius:1.5625rem;z-index:998}.right-container-right-big[data-v-6d6a66c6]{transform:scale(1.923);margin-left:2%;width:41%;transition:transform .5s ease;transform-origin:right bottom;background-color:#dce6fe;border-radius:.90625rem}.right-container-right-small[data-v-6d6a66c6]{transform:scale(1);margin-left:2%;width:41%;transition:transform .5s ease;transform-origin:right bottom;background-color:#dce6fe;border-radius:1.5625rem}.right-container-left-big[data-v-6d6a66c6]{transform:scale(1.781);width:55%;transition:transform .5s ease;transform-origin:left bottom;background-color:#b7c8f3;border-radius:.90625rem}.right-container-left-small[data-v-6d6a66c6]{transform:scale(1);width:55%;transition:transform .5s ease;transform-origin:left bottom;background-color:#b7c8f3;border-radius:1.5625rem}.super-card[data-v-81c0d68b]{display:flex;justify-content:center;width:100%;height:calc(100% - 12.5rem)}.super-card .scroll-x[data-v-81c0d68b]{height:100%;width:100%}.super-card .super-card-container[data-v-81c0d68b]{background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;overflow:hidden;width:51.5625rem;height:28.75rem;border-radius:.625rem;border:.0625rem solid #fff;box-shadow:.3125rem .3125rem 20px rgba(0,0,0,.1);position:relative}.super-card .super-card-time[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;height:2.5rem;width:3.125rem;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;font-weight:700;z-index:-1}.super-card .super-card-time-und[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;width:3.125rem;flex-direction:column;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1}.super-card .super-card-time-card[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;height:6.53125rem;width:100%;transition:all .8s;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.right-container[data-v-81c0d68b]{width:calc(100% - 7.34375rem);height:100vh;transition:opacity 1s ease;position:relative}.right-container .move-font[data-v-81c0d68b]{position:absolute;font-size:1.09375rem;font-weight:700}.right-container .doctorsay-container-view[data-v-81c0d68b]{width:100%;height:38.125rem;display:flex}.right-container .doctorsay-container-view .doctorsay-container-items[data-v-81c0d68b]{width:9.6875rem;height:38.125rem;margin-left:.9375rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up[data-v-81c0d68b]{display:flex;flex-wrap:wrap}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up .doctorsay-container-card[data-v-81c0d68b]{display:flex;flex-direction:column;justify-content:center;align-items:center;background-color:#ddeafa;width:4.0625rem;height:4.0625rem;margin:0 .5625rem .46875rem 0;border-radius:.9375rem;border:.0625rem solid #ddeafa;box-shadow:5px 5px 10px rgba(105,129,178,.2)}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up .doctorsay-container-card .doctorsay-container-card-img[data-v-81c0d68b]{width:2.34375rem;height:2.34375rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up .doctorsay-container-card .doctorsay-container-card-font[data-v-81c0d68b]{font-size:.9375rem;margin-top:-.3125rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up .doctorsay-container-card .doctorsay-container-card-font-dark[data-v-81c0d68b]{font-size:.9375rem;color:#fff;margin-top:-.3125rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down[data-v-81c0d68b]{background-color:#ddeafa;-webkit-backdrop-filter:blur(.25rem);backdrop-filter:blur(.25rem);width:9.0625rem;height:28.125rem;border-radius:.9375rem;margin-top:0;box-shadow:5px 5px 10px rgba(105,129,178,.8)}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-scroll[data-v-81c0d68b]{height:24.0625rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-top[data-v-81c0d68b]{height:2.5rem;display:flex;margin-bottom:.625rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-top .doctorsay-top-gun[data-v-81c0d68b]{margin-top:1.15625rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-top .doctorsay-top-font[data-v-81c0d68b]{font-size:1.0625rem;font-weight:700;margin-top:1.0625rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;height:2.8125rem;position:relative}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button .doctorsay-container-text-target[data-v-81c0d68b]{color:#016ad1;background-color:#c9e8ff;border-radius:.78125rem;border:.0625rem solid #fff;width:9.375rem;height:3.125rem;display:flex;justify-content:center;align-items:center;text-align:center;font-size:1.40625rem;transition:all .4s ease-in-out;box-shadow:5px 5px 10px rgba(105,129,178,.2);z-index:20;font-weight:700}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button .doctorsay-container-text[data-v-81c0d68b]{background-color:#f3f6fc;border:.0625rem solid #fff;border-radius:.78125rem;width:7.8125rem;height:2.34375rem;display:flex;justify-content:center;align-items:center;text-align:center;transition:all .4s ease-in-out;font-weight:500;font-size:.9375rem;box-shadow:5px 5px 10px rgba(105,129,178,.2)}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button .doctorsay-container-button-gun[data-v-81c0d68b]{position:absolute;top:.59375rem;left:.03125rem;width:.3125rem;height:1.5625rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button .doctorsay-container-button-uplight[data-v-81c0d68b]{position:absolute;top:1.25rem;left:.625rem;width:7.8125rem;height:1.5625rem;z-index:21;transition:all .4s ease-in-out}.right-container .doctorsay-container-view .doctorsay-container-container[data-v-81c0d68b]{border:.0625rem solid #fff;width:53.9375rem;height:41.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.3);-webkit-backdrop-filter:blur(.625rem);backdrop-filter:blur(.625rem);background-blend-mode:screen;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);overflow:hidden}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end[data-v-81c0d68b]{width:100%;display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father[data-v-81c0d68b]{height:100%;display:flex;flex-direction:column;width:100%}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items-all[data-v-81c0d68b]{width:calc(100% - 2.65625rem);height:6.25rem;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items[data-v-81c0d68b]{display:flex;width:calc(100% - 2.65625rem);height:6.25rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father[data-v-81c0d68b]{margin-right:.625rem;width:4.6875rem;height:4.6875rem;display:flex;justify-content:center;align-items:center;flex-direction:column;position:relative;background:linear-gradient(to bottom right,#fff,#dcdcf9,#dbdcf8);border-radius:.9375rem;border:.0625rem solid #fff;box-shadow:.3125rem .3125rem .625rem rgba(105,129,178,.2);transition:all 1.5s ease-in-out}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-father-close-father[data-v-81c0d68b]{width:1.25rem;height:1.25rem;border-radius:50%;display:flex;background-color:#0184db;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;color:#fff}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father[data-v-81c0d68b]{width:3.125rem;height:3.125rem;border-radius:50%;display:flex;justify-content:center;align-items:center}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father .super-end-items-img[data-v-81c0d68b]{width:2.65625rem;height:2.65625rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father-active[data-v-81c0d68b]{width:3.125rem;height:3.125rem;border-radius:50%;display:flex;justify-content:center;align-items:center;animation:shake-81c0d68b .5s infinite}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father-active .super-end-items-img[data-v-81c0d68b]{width:2.65625rem;height:2.65625rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-font[data-v-81c0d68b]{margin-top:-.3125rem;font-size:.78125rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-font-father[data-v-81c0d68b]{display:flex;margin-top:.625rem;margin-bottom:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-font-father .super-end-font-gun[data-v-81c0d68b]{margin-left:1.25rem;margin-right:.625rem;margin-top:.15625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-font-father .super-end-font-font[data-v-81c0d68b]{font-size:1.1875rem;font-weight:700}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title[data-v-81c0d68b]{width:100%;height:3.28125rem;display:flex;align-items:center;justify-content:space-between}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right[data-v-81c0d68b]{height:100%;display:flex;align-items:center;width:12.5rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-juzhen[data-v-81c0d68b]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father[data-v-81c0d68b]{display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button-target[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;background-color:#3fa9f5;color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;background-color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-cheng[data-v-81c0d68b]{background-color:#ffdba1;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-zi[data-v-81c0d68b]{background-color:#7b61ff;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-kuai-font[data-v-81c0d68b]{font-size:1rem;margin-left:.3125rem;margin-right:.78125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left[data-v-81c0d68b]{display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-share[data-v-81c0d68b]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-left:.625rem;margin-top:-.09375rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-gun[data-v-81c0d68b]{margin-top:.21875rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-font[data-v-81c0d68b]{font-size:1.1875rem;font-weight:700}.right-container .right-container-title-nav[data-v-81c0d68b]{margin-top:2.34375rem;margin-bottom:.625rem;margin-left:.625rem}.right-container .right-container-title-nav .right-icons[data-v-81c0d68b]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-font[data-v-81c0d68b]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-font-dark[data-v-81c0d68b]{color:#fff;margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-img[data-v-81c0d68b]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-img-icon[data-v-81c0d68b]{width:1.875rem;height:2.5rem;margin-top:-.3125rem;margin-left:.25rem}.right-container .right-container-title-nav .right-container-title-no[data-v-81c0d68b]{font-size:1.09375rem;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-no-dark[data-v-81c0d68b]{font-size:1.09375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-class[data-v-81c0d68b]{font-size:1.09375rem;font-weight:800;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-class-dark[data-v-81c0d68b]{font-size:1.09375rem;font-weight:800;margin-left:.625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-title-nav .right-container-title-class-anhei-button-wrong[data-v-81c0d68b]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.46875rem;width:6.25rem;height:1.5625rem;background-color:#fff}.right-container .right-container-title-nav .right-container-title-class-anhei-button-wrong .right-container-title-class-anhei[data-v-81c0d68b]{font-size:.9375rem;font-weight:800}.right-container .right-container-title-nav .right-container-title-class-anhei-button[data-v-81c0d68b]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.625rem;width:6.25rem;height:1.5625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff)}.right-container .right-container-title-nav .right-container-title-class-anhei-button .right-container-title-class-anhei[data-v-81c0d68b]{font-size:.9375rem;font-weight:800;color:#fff}.title-time-delete[data-v-81c0d68b]{width:1.71875rem;height:1.71875rem;border-radius:50%;display:flex;background-color:#fff;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;background-color:#02abfe;color:#fff;z-index:999;font-size:1.5625rem}.title-time-blue[data-v-81c0d68b]{position:absolute;top:0;left:0;z-index:10}.title-time-blue .title-time-blue-img[data-v-81c0d68b]{height:6.53125rem;width:8.59375rem}.title-time[data-v-81c0d68b]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-81c0d68b]{font-size:1rem;margin-left:1.25rem;margin-top:.375rem}.title-time .title-time-button[data-v-81c0d68b]{position:absolute;top:-.125rem;right:-.125rem;width:2.03125rem;height:1.875rem}.title-time .title-time-zhejiao[data-v-81c0d68b]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.title-time .title-time-font[data-v-81c0d68b]{position:absolute;top:.21875rem;right:.15625rem;font-size:.625rem;color:#fff}.popup-delete[data-v-81c0d68b]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-delete .popup-delete-content[data-v-81c0d68b]{position:absolute;right:16.09375rem;display:flex;flex-direction:column;align-items:center;width:25rem;height:15.625rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.7);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-delete .popup-delete-content .popup-delete-img[data-v-81c0d68b]{width:7.8125rem;height:7.1875rem;margin-top:1.25rem;margin-bottom:.625rem}.popup-delete .popup-delete-content .popup-delete-text[data-v-81c0d68b]{font-size:.9375rem;color:#42474e}.popup-delete .popup-delete-content .popup-delete-button[data-v-81c0d68b]{display:flex;justify-content:space-around;height:2.8125rem;margin-top:.9375rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-left[data-v-81c0d68b]{background-color:#02abfe;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-right[data-v-81c0d68b]{background-color:#ced9e8;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;margin-right:.625rem}.popup-overlay[data-v-81c0d68b]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;z-index:999}.popup-overlay .popup-overlay-content[data-v-81c0d68b]{position:absolute;display:flex;align-items:center;width:25rem;height:12.1875rem;background-color:#fff;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-overlay .popup-overlay-content .popup-overlay-content-left[data-v-81c0d68b]{height:100%;width:10.9375rem;display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-img[data-v-81c0d68b]{width:8.75rem;height:5.625rem;margin-top:-.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-font[data-v-81c0d68b]{font-size:.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right[data-v-81c0d68b]{height:100%;width:14.0625rem;position:relative}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-font[data-v-81c0d68b]{font-size:1.5625rem;margin-top:3.125rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-text[data-v-81c0d68b]{margin-left:.3125rem;font-size:.9375rem;width:11.875rem;margin-bottom:1.5625rem;line-height:1.09375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richang[data-v-81c0d68b]{background-color:#ffc363;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richangnot[data-v-81c0d68b]{background-color:#7b61ff;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem;color:#fff}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-crush[data-v-81c0d68b]{position:absolute;top:.625rem;right:.625rem;width:2.1875rem;height:2.1875rem;animation:shake-81c0d68b .5s 3}.popup-song[data-v-81c0d68b]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-song .popup-song-contain[data-v-81c0d68b]{position:absolute;right:17.8125rem;width:40.5rem;background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.7);border:.0625rem solid #fff;background-blend-mode:screen;border-radius:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-song .popup-song-contain .shu-container-left[data-v-81c0d68b]{display:flex;margin-top:2.1875rem;margin-bottom:.625rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-gun[data-v-81c0d68b]{margin-top:.15625rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-font[data-v-81c0d68b]{font-size:1.09375rem;font-weight:700}.popup-song-father[data-v-81c0d68b]{position:relative}.popup-song-father .shu-up-img[data-v-81c0d68b]{position:absolute;top:-2.1875rem;left:9.53125rem;width:21.875rem;height:2.5rem}.popup-song-father .shu-up-font[data-v-81c0d68b]{position:absolute;top:-1.5625rem;left:12.1875rem;display:flex;color:#ff5a00}.popup-song-father .arrayindex[data-v-81c0d68b]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem}.popup-song-father .arrayindex .arrayindex-one[data-v-81c0d68b]{width:12.03125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .arrayindex .arrayindex-one-target[data-v-81c0d68b]{width:12.03125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.ri-img[data-v-81c0d68b]{position:absolute;top:-.125rem;right:-.125rem;width:1.875rem;height:1.875rem}.time-father[data-v-81c0d68b]{display:flex;width:100%;flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem}.time-father .time-one[data-v-81c0d68b]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-target[data-v-81c0d68b]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-hui[data-v-81c0d68b]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#c2c9d3;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.button-father[data-v-81c0d68b]{height:6.25rem;width:calc(100%-2.5rem);display:flex;justify-content:center;align-items:center;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem;border-top:.03125rem solid #e6e6e6}.button-father .button-father-right[data-v-81c0d68b]{background:linear-gradient(to right,#00c9ff,#0076ff);width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.button-father .button-father-wrong[data-v-81c0d68b]{background-color:#c2c9d3;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center}.month-father[data-v-81c0d68b]{display:flex;width:calc(100% - 1.875rem);flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem;margin-top:.625rem}.month-father .month-one[data-v-81c0d68b]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.month-father .month-one-target[data-v-81c0d68b]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father[data-v-81c0d68b]{display:flex;width:100%;flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem;margin-top:.625rem}.week-father .week-one[data-v-81c0d68b]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father .week-one-target[data-v-81c0d68b]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.radio-father[data-v-81c0d68b]{display:flex;width:100%;flex-wrap:wrap;margin-left:2.34375rem;margin-right:.9375rem}.radio-father .radio-circle[data-v-81c0d68b]{margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid black;background-color:transparent}.radio-father .radio-circle-target[data-v-81c0d68b]{position:relative;margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-father .radio-circle-target[data-v-81c0d68b]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.625rem;height:.625rem;background-color:#02abfe;border-radius:50%}.radio-father .radio-font[data-v-81c0d68b]{margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.title-time-border[data-v-81c0d68b]{margin-top:.125rem;margin-left:.125rem;width:calc(100% - .25rem);height:calc(100% - .25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column}.title-time-border-red[data-v-81c0d68b]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,red,red) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,red,red) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom right / .25rem 1.875rem no-repeat}.title-time-border-big[data-v-81c0d68b],.title-time-border-big-top[data-v-81c0d68b]{transform:scale(1.5);transform-origin:top;border-top:0 solid #fff;transition:transform .5s ease-out,opacity .5s ease-out;z-index:999;display:flex;justify-content:center;align-items:center;height:6.53125rem;width:100%;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.title-time-border-blue[data-v-81c0d68b]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,#0184db,#0184db) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,#0184db,#0184db) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom right / .25rem 1.875rem no-repeat}.title-time-border-yellow[data-v-81c0d68b]{margin:.3125rem;border:.0625rem solid #d0d8e0;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-yellow-active-transparent[data-v-81c0d68b]{margin:.3125rem;border:.125rem dashed #ff8a00;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .8125rem);height:calc(100% - .8125rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-yellow-active[data-v-81c0d68b]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-81c0d68b .8s infinite;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-pouple-active-transparent[data-v-81c0d68b]{margin:.3125rem;border:.125rem dashed #7B61FF;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .8125rem);height:calc(100% - .8125rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.title-time-border-pouple[data-v-81c0d68b]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.title-time-border-pouple-active[data-v-81c0d68b]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-81c0d68b 1s infinite;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.down-icons[data-v-81c0d68b]{margin-top:.3125rem;width:100%;height:1.875rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-81c0d68b]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}@keyframes shake-81c0d68b{0%{transform:rotate(-10deg)}25%{transform:rotate(10deg)}50%{transform:rotate(-10deg)}75%{transform:rotate(10deg)}to{transform:rotate(-10deg)}}@keyframes shakesmall-81c0d68b{0%{transform:rotate(-2deg)}25%{transform:rotate(2deg)}50%{transform:rotate(-2deg)}75%{transform:rotate(2deg)}to{transform:rotate(-2deg)}}.boom[data-v-81c0d68b]{position:absolute;top:2.5rem;left:0;width:1.3125rem;height:26.25rem;display:flex;flex-direction:column;align-items:center;overflow:hidden;z-index:10}.boom .boom-son[data-v-81c0d68b]{height:6.5625rem;width:100%;font-size:.9375rem;letter-spacing:.15625rem;-webkit-writing-mode:vertical-rl;writing-mode:vertical-rl;text-align:center;z-index:10;background:linear-gradient(to bottom,#ffe2b2,#e3deff);border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.boom .boom-son-target[data-v-81c0d68b]{height:6.5625rem;width:100%;font-size:.9375rem;letter-spacing:.15625rem;-webkit-writing-mode:vertical-rl;writing-mode:vertical-rl;text-align:center;z-index:10;background:linear-gradient(to bottom,#ff8a00,#eceaff);border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.popup-share[data-v-81c0d68b]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-share .popup-share-content[data-v-81c0d68b]{position:absolute;right:16.09375rem;display:flex;flex-direction:column;width:25rem;height:11.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.7);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-share .popup-share-content .popup-share-title[data-v-81c0d68b]{margin:.9375rem;font-size:1.25rem;position:relative}.popup-share .popup-share-content .popup-share-title .popup-share-img[data-v-81c0d68b]{position:absolute;top:0;right:0;width:6.25rem;height:6.25rem}.popup-share .popup-share-content .popup-share-upcontent[data-v-81c0d68b]{margin:0 .9375rem;display:flex;justify-content:space-between}.popup-share .popup-share-content .popup-share-upcontent .popup-share-font[data-v-81c0d68b]{font-size:1.09375rem;color:gray}.popup-share .popup-share-content .popup-share-gray[data-v-81c0d68b]{background-color:#d3d3d3;width:calc(100% - 1.875rem);height:.0625rem;margin:3.4375rem .9375rem 0}.popup-share .popup-share-content .popup-share-downcontent[data-v-81c0d68b]{display:flex;justify-content:space-between;align-items:center;height:100%;margin:0 .9375rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-img[data-v-81c0d68b]{width:2.1875rem;height:2.1875rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-font[data-v-81c0d68b]{font-size:.84375rem;margin-left:.625rem}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-left[data-v-81c0d68b]{display:flex;align-items:center}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-button[data-v-81c0d68b]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.46875rem .9375rem;border-radius:.625rem;font-size:1rem}.move-circle[data-v-a880c760]{position:absolute;bottom:0;right:0;width:10.9375rem;height:10.9375rem;display:flex;justify-content:center;align-items:center;z-index:99;touch-action:none}.move-circle .click-box-top[data-v-a880c760]{position:absolute;top:.625rem;right:2.1875rem;width:6.875rem;height:2.5rem}.move-circle .click-box-bottom[data-v-a880c760]{position:absolute;bottom:.625rem;right:2.1875rem;width:6.875rem;height:2.5rem}.move-circle .click-box-right[data-v-a880c760]{position:absolute;bottom:3.125rem;right:0;width:2.8125rem;height:4.6875rem}.move-circle .click-box-left[data-v-a880c760]{position:absolute;bottom:3.125rem;left:0;width:2.8125rem;height:4.6875rem}.move-circle .click-box-center[data-v-a880c760]{position:absolute;bottom:4.0625rem;right:4.0625rem;width:2.8125rem;height:2.8125rem}.move-circle-all[data-v-a880c760]{width:10.9375rem;height:10.9375rem}.light-shadow[data-v-a880c760]{position:absolute;width:1.25rem;height:1.25rem;background-color:transparent;border:1.875rem solid #3da6ff;border-radius:50%;pointer-events:none;opacity:1}.ripple-loop[data-v-a880c760]{animation:rippleLoop-a880c760 1.2s ease-out infinite}.ripple-once[data-v-a880c760]{animation:rippleLoop-a880c760 1.2s ease-out forwards}@keyframes rippleLoop-a880c760{0%{transform:translate(-50%,-50%) scale(.5);opacity:.6}to{transform:translate(-50%,-50%) scale(2.5);opacity:0}}.light-circle[data-v-a880c760]{position:relative;width:150px;height:150px;border-radius:50%;background:#111;overflow:visible}.circle[data-v-a880c760]{position:relative;width:150px;height:150px;border-radius:50%;background:#222;margin:50px}.pulse-circle[data-v-a880c760]{position:absolute;top:50%;right:50%;transform:translate(-50%,-50%);border-radius:50%;background:radial-gradient(circle,#03a4ff 0%,transparent 70%);animation:pulse-a880c760 3s forwards}@keyframes pulse-a880c760{0%{width:0;height:0;opacity:.8}50%{width:10.9375rem;height:10.9375rem;opacity:.4}to{width:0;height:0;opacity:0}}.super-card[data-v-bd7a2b2a]{display:flex;width:100%;height:calc(100% - 12.5rem)}.super-card .scroll-x[data-v-bd7a2b2a]{height:100%;width:100%}.super-card .right-cards[data-v-bd7a2b2a]{width:14.53125rem;height:37.1875rem;border:.0625rem solid #fff;border-top-right-radius:.625rem;border-bottom-right-radius:.625rem}.super-card .right-cards .scroll-box[data-v-bd7a2b2a]{width:100%;height:9.0625rem}.super-card .right-cards .scroll-box .right-box[data-v-bd7a2b2a]{height:10.9375rem;display:flex;flex-direction:column;flex-wrap:wrap;align-content:flex-start}.super-card .right-cards .scroll-box .right-box .right-box-item[data-v-bd7a2b2a]{margin:.3125rem 0 0 .3125rem;width:3.75rem;height:4rem;border-radius:.625rem;background-color:#fff;position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-img[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-font[data-v-bd7a2b2a]{font-size:.625rem;margin-top:-.3125rem}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-items[data-v-bd7a2b2a]{display:flex;justify-content:space-around;align-items:center}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-items .right-box-items-button[data-v-bd7a2b2a]{width:.78125rem;height:.78125rem;margin:0 .09375rem}.super-card .right-cards .scroll-box .right-box .title-time-button[data-v-bd7a2b2a]{position:absolute;top:0;right:0;width:1.71875rem;height:1.40625rem}.super-card .right-cards .scroll-box .right-box .title-time-font[data-v-bd7a2b2a]{position:absolute;top:.15625rem;right:.09375rem;font-size:.53125rem;color:#fff}.super-card .time-father[data-v-bd7a2b2a]{border-radius:.625rem;height:97%;width:95%;margin-top:6%;margin-left:6%;background-color:rgba(255,255,255,.3)}.super-card .time-father .time-button[data-v-bd7a2b2a]{width:4.375rem;height:1.875rem;margin-top:.9375rem;margin-left:.9375rem;border-radius:.625rem;background-color:#369fef;border:.15625rem solid #369fef;display:flex}.super-card .time-father .time-button .time-button-month[data-v-bd7a2b2a]{width:50%;height:100%;color:#fff;display:flex;justify-content:center;align-items:center}.super-card .time-father .time-button .time-button-month-target[data-v-bd7a2b2a]{width:50%;height:100%;background-color:#fff;color:#369fef;display:flex;justify-content:center;align-items:center;border-bottom-left-radius:.46875rem;border-top-left-radius:.46875rem}.super-card .time-father .time-button .time-button-week-target[data-v-bd7a2b2a]{width:50%;height:100%;display:flex;justify-content:center;align-items:center;color:#fff}.super-card .time-father .time-button .time-button-week[data-v-bd7a2b2a]{width:50%;height:100%;color:#369fef;display:flex;justify-content:center;align-items:center;background-color:#fff;border-bottom-right-radius:.46875rem;border-top-right-radius:.46875rem}.super-card .under-button[data-v-bd7a2b2a]{width:13.75rem;height:2.96875rem;margin-left:.3125rem;margin-top:.3125rem;border-radius:.625rem;background-color:#e5e9f9;display:flex;align-items:center;position:relative}.super-card .under-button .under-button-black[data-v-bd7a2b2a]{transition:all 1s;position:absolute;width:9.375rem;height:3.125rem;border-radius:.625rem;padding-left:.3125rem;background-color:#4d4d4d;top:-3.125rem;left:0;color:#fff;display:flex;justify-content:center;align-items:center}.super-card .under-button .under-button-black .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;bottom:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-top:.625rem solid #4d4d4d}.super-card .under-button .white-circle-click-father[data-v-bd7a2b2a]{position:relative;margin-left:.625rem;color:#fff;margin-top:.3125rem}.super-card .under-button .white-circle-click-father .white-circle-click[data-v-bd7a2b2a]{width:4.6875rem;height:2.1875rem}.super-card .under-button .white-circle-click-father .white-circle-font[data-v-bd7a2b2a]{position:absolute;top:.46875rem;left:1.875rem}.super-card .under-button .white-circle[data-v-bd7a2b2a]{width:2.1875rem;height:2.1875rem;border-radius:50%;margin-left:.3125rem;background-color:#fff;display:flex;justify-content:center;align-items:center}.super-card .under-button .white-circle .white-circle-img[data-v-bd7a2b2a]{width:1.25rem;height:1.25rem}.super-card .middle-box[data-v-bd7a2b2a]{width:100%;height:24.375rem;display:flex;overflow:hidden}.super-card .middle-box .middle-left-box[data-v-bd7a2b2a]{margin-left:.3125rem;width:10.625rem;height:24.4375rem;border-radius:.625rem;background-color:#e5e9f9;display:flex}.super-card .middle-box .middle-left-box .first-contant[data-v-bd7a2b2a]{height:100%;width:6.5625rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item[data-v-bd7a2b2a]{margin:.3125rem 0 0 .3125rem;width:5.9375rem;height:4rem;border-radius:.625rem;background-color:rgba(255,255,255,.3);position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column;box-shadow:.03125rem .03125rem .0625rem .03125rem rgba(0,0,0,.1);overflow:hidden}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-img[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-button[data-v-bd7a2b2a]{position:absolute;top:-.09375rem;right:-.09375rem;width:1.5625rem;height:1.40625rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-font[data-v-bd7a2b2a]{font-size:.71875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-zhejiao[data-v-bd7a2b2a]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-font[data-v-bd7a2b2a]{position:absolute;top:.09375rem;right:.15625rem;font-size:.625rem;color:#fff}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-items[data-v-bd7a2b2a]{display:flex;justify-content:space-around;align-items:center}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-items .right-box-items-button[data-v-bd7a2b2a]{width:.78125rem;height:.78125rem;margin:0 .09375rem}.super-card .middle-box .middle-left-box .second-contant[data-v-bd7a2b2a]{height:100%;width:4.375rem}.super-card .middle-box .middle-left-box .second-contant .downList-box-target[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;background-color:#fff;width:3.125rem;height:3.125rem;border-radius:.625rem;margin-left:.625rem;margin-top:.625rem;flex-direction:column;box-shadow:.0625rem .0625rem .125rem .0625rem rgba(54,159,239,.1);border:.0625rem solid #369fef}.super-card .middle-box .middle-left-box .second-contant .downList-box-target .downList-box-img[data-v-bd7a2b2a]{height:1.5625rem;width:1.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box-target .downList-box-text[data-v-bd7a2b2a]{font-size:.625rem;color:#369fef}.super-card .middle-box .middle-left-box .second-contant .downList-box[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;background-color:rgba(255,255,255,.3);width:3.125rem;height:3.125rem;border-radius:.625rem;margin-left:.625rem;margin-top:.625rem;flex-direction:column;box-shadow:.0625rem .0625rem .125rem .0625rem rgba(0,0,0,.1)}.super-card .middle-box .middle-left-box .second-contant .downList-box .downList-box-img[data-v-bd7a2b2a]{height:1.5625rem;width:1.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box .downList-box-text[data-v-bd7a2b2a]{font-size:.625rem}.super-card .middle-box .middle-right-box[data-v-bd7a2b2a]{height:24.375rem;width:2.8125rem}.super-card .middle-box .middle-right-box .doctorsay-container-card[data-v-bd7a2b2a]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;background-color:#e5e9f9;width:2.8125rem;height:3.8125rem;border-radius:.625rem;border:.0625rem solid #ddeafa;box-shadow:5px 5px 10px rgba(105,129,178,.2);margin:0 .5625rem .3125rem .3125rem}.super-card .middle-box .middle-right-box .doctorsay-container-card .doctorsay-container-card-img[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem}.super-card .middle-box .middle-right-box .doctorsay-container-card .doctorsay-container-card-font[data-v-bd7a2b2a]{font-size:.78125rem;margin-top:0}.super-card .middle-box .middle-right-box .doctorsay-container-card-target[data-v-bd7a2b2a]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;background:linear-gradient(to left,#fff,#e5e9f9);width:3.59375rem;height:3.8125rem;border-top-right-radius:.625rem;border-bottom-right-radius:.625rem;margin:0 .5625rem .3125rem -.46875rem}.super-card .middle-box .middle-right-box .doctorsay-container-card-target .doctorsay-container-card-img[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem;margin-left:.78125rem}.super-card .middle-box .middle-right-box .doctorsay-container-card-target .doctorsay-container-card-font-dark[data-v-bd7a2b2a]{font-size:.78125rem;color:#369fef;margin-left:.78125rem;margin-top:0}.super-card .super-card-container[data-v-bd7a2b2a]{background:url(../../static/index/whitemountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;overflow:hidden;margin-left:3.75rem;width:43.90625rem;height:37.1875rem;border:.0625rem solid #fff;border-left:0;box-shadow:.3125rem .3125rem 20px rgba(0,0,0,.1);position:relative}.super-card .super-card-time[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;height:2.5rem;width:6.28125rem;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;font-weight:700;z-index:-1}.super-card .super-card-time-und[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;width:6.28125rem;flex-direction:column;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1}.super-card .super-card-time-und .title-time-img[data-v-bd7a2b2a]{width:2.03125rem;height:2.03125rem;margin-top:-.15625rem}.super-card .super-card-time-und .title-time-font-rel[data-v-bd7a2b2a]{font-size:.78125rem;margin-bottom:.15625rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.super-card .super-card-time-und .title-time-items[data-v-bd7a2b2a]{display:flex;justify-content:space-around;align-items:center}.super-card .super-card-time-und .title-time-items .right-box-items-button[data-v-bd7a2b2a]{width:1.09375rem;height:1.09375rem;margin:0 .15625rem}.super-card .super-card-time-card[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;height:5.21875rem;width:100%;transition:all .8s;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.right-container[data-v-bd7a2b2a]{width:calc(100% - 7.34375rem);height:100vh;transition:opacity 1s ease;position:relative}.right-container .joystick[data-v-bd7a2b2a]{position:absolute;bottom:6.25rem;left:.625rem;width:9.375rem;height:9.375rem;z-index:9999}.right-container .outer-circle[data-v-bd7a2b2a]{width:100%;height:100%;border-radius:50%;background-color:rgba(127,127,127,.1);position:relative}.right-container .inner-circle[data-v-bd7a2b2a]{width:3.75rem;height:3.75rem;border-radius:50%;background-color:rgba(127,127,127,.3);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.right-container .doctorsay-container-view[data-v-bd7a2b2a]{width:100%;height:38.125rem;display:flex}.right-container .doctorsay-container-view .doctorsay-container-container[data-v-bd7a2b2a]{border:.0625rem solid #fff;width:64.0625rem;height:41.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.3);-webkit-backdrop-filter:blur(.625rem);backdrop-filter:blur(.625rem);background-blend-mode:screen;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);overflow:hidden}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title[data-v-bd7a2b2a]{width:100%;height:3.28125rem;display:flex;align-items:center;justify-content:space-between}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right[data-v-bd7a2b2a]{height:100%;display:flex;align-items:center;margin-right:1.5625rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-juzhen[data-v-bd7a2b2a]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-right:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father[data-v-bd7a2b2a]{display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button-target[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;background-color:#3fa9f5;color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;background-color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-cheng[data-v-bd7a2b2a]{background-color:#ffdba1;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-zi[data-v-bd7a2b2a]{background-color:#7b61ff;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-kuai-font[data-v-bd7a2b2a]{font-size:1rem;margin-left:.3125rem;margin-right:.78125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left[data-v-bd7a2b2a]{display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-share[data-v-bd7a2b2a]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-left:.625rem;margin-top:-.09375rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-gun[data-v-bd7a2b2a]{margin-top:.21875rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-font[data-v-bd7a2b2a]{font-size:1.1875rem;font-weight:700}.right-container .right-container-title-nav[data-v-bd7a2b2a]{margin-top:2.34375rem;margin-bottom:.625rem;margin-left:.625rem}.right-container .right-container-title-nav .right-icons[data-v-bd7a2b2a]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-font[data-v-bd7a2b2a]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-font-dark[data-v-bd7a2b2a]{color:#fff;margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-img[data-v-bd7a2b2a]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-img-icon[data-v-bd7a2b2a]{width:1.875rem;height:2.5rem;margin-top:-.3125rem;margin-left:.25rem}.right-container .right-container-title-nav .right-container-title-no[data-v-bd7a2b2a]{font-size:1.09375rem;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-no-dark[data-v-bd7a2b2a]{font-size:1.09375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-class[data-v-bd7a2b2a]{font-size:1.09375rem;font-weight:800;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-class-dark[data-v-bd7a2b2a]{font-size:1.09375rem;font-weight:800;margin-left:.625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-title-nav .right-container-title-class-anhei-button-wrong[data-v-bd7a2b2a]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.46875rem;width:6.25rem;height:1.5625rem;background-color:#fff}.right-container .right-container-title-nav .right-container-title-class-anhei-button-wrong .right-container-title-class-anhei[data-v-bd7a2b2a]{font-size:.9375rem;font-weight:800}.right-container .right-container-title-nav .right-container-title-class-anhei-button[data-v-bd7a2b2a]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.625rem;width:6.25rem;height:1.5625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff)}.right-container .right-container-title-nav .right-container-title-class-anhei-button .right-container-title-class-anhei[data-v-bd7a2b2a]{font-size:.9375rem;font-weight:800;color:#fff}.title-time-delete[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem;border-radius:50%;display:flex;background-color:#fff;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;background-color:#02abfe;color:#fff;z-index:999;font-size:1.5625rem}.title-time-blue[data-v-bd7a2b2a]{position:absolute;top:0;left:0;z-index:10}.title-time-blue .title-time-blue-img[data-v-bd7a2b2a]{height:5.21875rem;width:6.25rem}.time-button-black-spe[data-v-bd7a2b2a]{transition:all 1s;position:absolute;width:7.8125rem;height:3.125rem;padding-left:.3125rem;border-radius:.625rem;background-color:#4d4d4d;bottom:-3.125rem;left:-2.5rem;color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-black-spe .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;top:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-bottom:.625rem solid #4d4d4d}.time-button-black[data-v-bd7a2b2a]{transition:all 1s;position:absolute;width:7.8125rem;height:3.125rem;padding-left:.3125rem;border-radius:.625rem;background-color:#4d4d4d;top:-3.125rem;left:-2.5rem;color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-black .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;bottom:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-top:.625rem solid #4d4d4d}.time-button-orange-spe[data-v-bd7a2b2a]{transition:all 1s;position:absolute;width:7.8125rem;height:3.125rem;padding-left:.3125rem;border-radius:.625rem;background-color:#ff8a00;bottom:-3.125rem;left:-2.5rem;color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-orange-spe .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;top:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-bottom:.625rem solid #ff8a00}.time-button-orange[data-v-bd7a2b2a]{transition:all 1s;position:absolute;padding-left:.3125rem;width:7.8125rem;height:3.125rem;border-radius:.625rem;background-color:#ff8a00;top:-2.8125rem;left:-2.5rem;color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-orange .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;bottom:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-top:.625rem solid #ff8a00}.title-time[data-v-bd7a2b2a]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-bd7a2b2a]{font-size:1rem;margin-left:.3125rem;margin-top:.375rem}.title-time .title-time-button[data-v-bd7a2b2a]{position:absolute;top:-.1875rem;right:-.125rem;width:1.71875rem;height:1.25rem}.title-time .title-time-zhejiao[data-v-bd7a2b2a]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.title-time .title-time-font[data-v-bd7a2b2a]{position:absolute;top:0;right:.15625rem;font-size:.4375rem;color:#fff}.popup-say[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-say .popup-say-content[data-v-bd7a2b2a]{position:absolute;right:3.28125rem;bottom:6.25rem;display:flex;flex-direction:column;width:14.0625rem;height:18.75rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-say .popup-say-content .tags-father[data-v-bd7a2b2a]{display:flex;margin-left:1.25rem;margin-top:.46875rem;align-items:center;width:5.625rem}.popup-say .popup-say-content .tags-father .tags-img[data-v-bd7a2b2a]{width:1.5625rem;height:1.5625rem;margin-right:.3125rem}.popup-say .popup-say-content .popup-say-content-flex[data-v-bd7a2b2a]{display:flex;margin-top:.21875rem;margin-bottom:.3125rem}.popup-say .popup-say-content .popup-say-content-flex .popup-say-content-gun[data-v-bd7a2b2a]{margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-say .popup-say-content .popup-say-content-flex .popup-say-content-font[data-v-bd7a2b2a]{font-size:.9375rem;font-weight:700}.popup-say .popup-say-content .popup-say-three[data-v-bd7a2b2a]{position:absolute;left:5.40625rem;bottom:-1.28125rem;width:0;height:0;border-left:.9375rem solid transparent;border-right:.9375rem solid transparent;border-top:1.25rem solid #d2ecff}.popup-delete[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-delete .popup-delete-content[data-v-bd7a2b2a]{position:absolute;right:23.4375rem;display:flex;flex-direction:column;align-items:center;width:25rem;height:15.625rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-delete .popup-delete-content .popup-delete-img[data-v-bd7a2b2a]{width:7.8125rem;height:7.1875rem;margin-top:1.25rem;margin-bottom:.625rem}.popup-delete .popup-delete-content .popup-delete-text[data-v-bd7a2b2a]{font-size:.9375rem;color:#42474e}.popup-delete .popup-delete-content .popup-delete-button[data-v-bd7a2b2a]{display:flex;justify-content:space-around;height:2.8125rem;margin-top:.9375rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-left[data-v-bd7a2b2a]{background-color:#02abfe;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff;margin:0 .3125rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-right[data-v-bd7a2b2a]{background-color:#ced9e8;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;margin:0 .3125rem}.popup-overlay[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;z-index:999}.popup-overlay .popup-overlay-content[data-v-bd7a2b2a]{position:absolute;display:flex;align-items:center;width:25rem;height:12.1875rem;background-color:#fff;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-overlay .popup-overlay-content .popup-overlay-content-left[data-v-bd7a2b2a]{height:100%;width:10.9375rem;display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-img[data-v-bd7a2b2a]{width:8.75rem;height:5.625rem;margin-top:-.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-font[data-v-bd7a2b2a]{font-size:.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right[data-v-bd7a2b2a]{height:100%;width:14.0625rem;position:relative}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-font[data-v-bd7a2b2a]{font-size:1.5625rem;margin-top:3.125rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-text[data-v-bd7a2b2a]{margin-left:.3125rem;font-size:.9375rem;width:11.875rem;margin-bottom:1.5625rem;line-height:1.09375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richang[data-v-bd7a2b2a]{background-color:#ffc363;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richangnot[data-v-bd7a2b2a]{background-color:#7b61ff;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem;color:#fff}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-crush[data-v-bd7a2b2a]{position:absolute;top:.625rem;right:.625rem;width:2.1875rem;height:2.1875rem;animation:shake-bd7a2b2a .5s 3}.popup-song[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-song .popup-song-contain[data-v-bd7a2b2a]{position:absolute;right:14.0625rem;width:40.5rem;background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.7);border:.0625rem solid #fff;background-blend-mode:screen;border-radius:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-song .popup-song-contain .shu-container-left[data-v-bd7a2b2a]{display:flex;margin-top:2.1875rem;margin-bottom:.625rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-gun[data-v-bd7a2b2a]{margin-top:.15625rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-font[data-v-bd7a2b2a]{font-size:1.09375rem;font-weight:700}.popup-song-father[data-v-bd7a2b2a]{position:relative}.popup-song-father .shu-up-img[data-v-bd7a2b2a]{position:absolute;top:-2.1875rem;left:9.53125rem;width:21.875rem;height:2.5rem}.popup-song-father .shu-up-font[data-v-bd7a2b2a]{position:absolute;top:-1.5625rem;left:12.1875rem;display:flex;color:#ff5a00}.popup-song-father .arrayindex[data-v-bd7a2b2a]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem;margin-bottom:1.875rem}.popup-song-father .arrayindex .arrayindex-one[data-v-bd7a2b2a]{width:8.90625rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .arrayindex .arrayindex-one-target[data-v-bd7a2b2a]{width:8.90625rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .secondarrayindex[data-v-bd7a2b2a]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem;margin-bottom:1.875rem}.popup-song-father .secondarrayindex .arrayindex-one[data-v-bd7a2b2a]{width:11.875rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .secondarrayindex .arrayindex-one-target[data-v-bd7a2b2a]{width:11.875rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.ri-img[data-v-bd7a2b2a]{position:absolute;top:-.125rem;right:-.125rem;width:1.875rem;height:1.875rem}.time-father[data-v-bd7a2b2a]{display:flex;width:100%;flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem}.time-father .time-one[data-v-bd7a2b2a]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-target[data-v-bd7a2b2a]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-hui[data-v-bd7a2b2a]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#c2c9d3;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.items-card[data-v-bd7a2b2a]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center}.items-card-target[data-v-bd7a2b2a]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center;color:#369fef;background:linear-gradient(to right,rgba(54,159,239,0),rgba(54,159,239,.5),rgba(54,159,239,0))}.button-father[data-v-bd7a2b2a]{height:6.25rem;width:calc(100%-2.5rem);display:flex;justify-content:center;align-items:center;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem;border-top:.03125rem solid #e6e6e6}.button-father .button-father-right[data-v-bd7a2b2a]{background:linear-gradient(to right,#00c9ff,#0076ff);width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.button-father .button-father-wrong[data-v-bd7a2b2a]{background-color:#c2c9d3;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center}.month-father[data-v-bd7a2b2a]{display:flex;width:calc(100% - 1.875rem);flex-wrap:wrap;margin:.625rem .9375rem .9375rem}.month-father .month-one[data-v-bd7a2b2a]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.month-father .month-one-target[data-v-bd7a2b2a]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father[data-v-bd7a2b2a]{display:flex;width:100%;flex-wrap:wrap;margin:.625rem .9375rem .9375rem}.week-father .week-one[data-v-bd7a2b2a]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father .week-one-target[data-v-bd7a2b2a]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.radio-father[data-v-bd7a2b2a]{display:flex;width:100%;flex-wrap:wrap;margin-left:2.34375rem;margin-right:.9375rem}.radio-father .radio-circle[data-v-bd7a2b2a]{margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid black;background-color:transparent}.radio-father .radio-circle-target[data-v-bd7a2b2a]{position:relative;margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-father .radio-circle-target[data-v-bd7a2b2a]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.625rem;height:.625rem;background-color:#02abfe;border-radius:50%}.radio-father .radio-font[data-v-bd7a2b2a]{margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.radio-father .radio-font-target[data-v-bd7a2b2a]{color:#02abfe;margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.title-time-border[data-v-bd7a2b2a]{margin-top:.125rem;margin-left:.125rem;width:calc(100% - .25rem);height:calc(100% - .25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column}.title-time-border-red[data-v-bd7a2b2a]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,red,red) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,red,red) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom right / .25rem 1.875rem no-repeat}.title-time-border-big[data-v-bd7a2b2a],.title-time-border-big-top[data-v-bd7a2b2a]{transform:scale(1.3);transform-origin:top;border-top:0 solid #fff;transition:transform .5s ease-out,opacity .5s ease-out;z-index:999;display:flex;justify-content:center;align-items:center;height:5.21875rem;width:100%;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.title-time-border-blue[data-v-bd7a2b2a]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,#0184db,#0184db) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,#0184db,#0184db) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom right / .25rem 1.875rem no-repeat}.title-time-border-yellow[data-v-bd7a2b2a]{margin:.3125rem;border:.0625rem solid #d0d8e0;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-yellow-active-transparent[data-v-bd7a2b2a]{margin:.3125rem;border:.125rem dashed #ff8a00;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .8125rem);height:calc(100% - .8125rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-yellow-active[data-v-bd7a2b2a]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-bd7a2b2a .8s infinite;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-pouple-active-transparent[data-v-bd7a2b2a]{margin:.3125rem;border:.125rem dashed #7B61FF;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .8125rem);height:calc(100% - .8125rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.title-time-border-pouple[data-v-bd7a2b2a]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.title-time-border-pouple-active[data-v-bd7a2b2a]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-bd7a2b2a 1s infinite;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.down-icons[data-v-bd7a2b2a]{margin-top:.53125rem;width:100%;height:1.875rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-bd7a2b2a]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.super-end-items-img-father[data-v-bd7a2b2a]{width:1.875rem;height:1.875rem;border-radius:50%;display:flex;justify-content:center;align-items:center}.super-end-items-img-father-active[data-v-bd7a2b2a]{width:1.875rem;height:1.875rem;border-radius:50%;display:flex;justify-content:center;align-items:center;animation:shake-bd7a2b2a .5s infinite}@keyframes shake-bd7a2b2a{0%{transform:rotate(-10deg)}25%{transform:rotate(10deg)}50%{transform:rotate(-10deg)}75%{transform:rotate(10deg)}to{transform:rotate(-10deg)}}.super-end-items-father-close-father[data-v-bd7a2b2a]{width:1.25rem;height:1.25rem;border-radius:50%;display:flex;background-color:#0184db;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;color:#fff}@keyframes shakesmall-bd7a2b2a{0%{transform:rotate(-2deg)}25%{transform:rotate(2deg)}50%{transform:rotate(-2deg)}75%{transform:rotate(2deg)}to{transform:rotate(-2deg)}}.boom-title[data-v-bd7a2b2a]{position:absolute;top:3.28125rem;left:1.875rem;width:1.875rem;height:2.5rem;background-color:#c4dbf4;border-left:.0625rem #fff solid;border-top:.0625rem #fff solid;border-top-left-radius:.625rem;background:linear-gradient(to top right,transparent calc(50% - 1px),#0184db calc(50% - 1px),#0184db calc(50% + 1px),transparent calc(50% + 1px))}.boom-title .boom-title-left[data-v-bd7a2b2a]{position:absolute;top:1.25rem;left:.1875rem;font-size:.78125rem;font-weight:700}.boom-title .boom-title-right[data-v-bd7a2b2a]{position:absolute;top:.15625rem;left:.9375rem;font-size:.78125rem;font-weight:700}.boom-father[data-v-bd7a2b2a]{position:absolute;top:5.8125rem;left:1.875rem;width:1.875rem;height:34.6875rem;background:linear-gradient(to bottom,#c4dbf4,#c9c2ef,#c6dcf3);border-bottom:.0625rem solid #fff;border-left:.0625rem solid #fff;border-bottom-left-radius:.625rem}.scroll-bottom-bgc[data-v-bd7a2b2a]{width:43.75rem;height:8.4375rem;margin-top:0;margin-left:4.0625rem;background:url(../../static/index/keyimg/bgc.png) center / contain;background-repeat:no-repeat}.boom[data-v-bd7a2b2a]{height:26.5625rem;display:flex;flex-direction:column;overflow:hidden;z-index:10}.boom .boom-son[data-v-bd7a2b2a]{height:5.21875rem;width:1.875rem;font-size:.9375rem;display:flex;justify-content:center;align-items:center;text-align:center;z-index:10;font-weight:700;border-top:.03125rem solid transparent;border-bottom:.03125rem solid transparent;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1}.boom .boom-son-target[data-v-bd7a2b2a]{height:5.21875rem;width:1.875rem;font-size:.9375rem;display:flex;justify-content:center;align-items:center;text-align:center;z-index:10;font-weight:700;border-top:.03125rem solid transparent;border-bottom:.03125rem solid transparent;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;background:linear-gradient(to bottom,#ff8a00,#eceaff)}.popup-share[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-share .popup-share-content[data-v-bd7a2b2a]{position:absolute;right:16.09375rem;display:flex;flex-direction:column;width:25rem;height:11.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.7);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-share .popup-share-content .popup-share-title[data-v-bd7a2b2a]{margin:.9375rem;font-size:1.25rem;position:relative}.popup-share .popup-share-content .popup-share-title .popup-share-img[data-v-bd7a2b2a]{position:absolute;top:0;right:0;width:6.25rem;height:6.25rem}.popup-share .popup-share-content .popup-share-upcontent[data-v-bd7a2b2a]{margin:0 .9375rem;display:flex;justify-content:space-between}.popup-share .popup-share-content .popup-share-upcontent .popup-share-font[data-v-bd7a2b2a]{font-size:1.09375rem;color:gray}.popup-share .popup-share-content .popup-share-gray[data-v-bd7a2b2a]{background-color:#d3d3d3;width:calc(100% - 1.875rem);height:.0625rem;margin:3.4375rem .9375rem 0}.popup-share .popup-share-content .popup-share-downcontent[data-v-bd7a2b2a]{display:flex;justify-content:space-between;align-items:center;height:100%;margin:0 .9375rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-img[data-v-bd7a2b2a]{width:2.1875rem;height:2.1875rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-font[data-v-bd7a2b2a]{font-size:.84375rem;margin-left:.625rem}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-left[data-v-bd7a2b2a]{display:flex;align-items:center}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-button[data-v-bd7a2b2a]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.46875rem .9375rem;border-radius:.625rem;font-size:1rem}.backgroundContainer[data-v-ee189f8b]{display:flex;position:relative;width:100%;height:100vh;background-image:url(../../static/index/lightbgcnew.png);background-size:cover;background-position:center center;overflow:hidden;z-index:12}.darkbackgroundContainer[data-v-ee189f8b]{display:flex;position:relative;width:100%;height:100vh;background-image:url(../../static/index/background.png);background-size:cover;background-position:center center;overflow:hidden;z-index:11}.move-font[data-v-ee189f8b]{position:absolute;z-index:10;pointer-events:none;background-color:#c9e8ff;border-radius:.625rem;border:.0625rem solid #fff;width:6.875rem;height:3.125rem;display:flex;justify-content:center;align-items:center;text-align:center;font-size:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);will-change:transform}.left-container[data-v-ee189f8b]{width:7.34375rem;height:100%}.left-container .blue-circle-pos[data-v-ee189f8b]{position:relative}.left-container .blue-circle-pos .blue-circle[data-v-ee189f8b]{position:absolute;top:-1.5625rem;left:-2.125rem}.left-container .blue-circle-pos .blue-circle .blue-circle-size[data-v-ee189f8b]{width:5.3125rem;height:7.8125rem}.left-container .left-head[data-v-ee189f8b]{display:flex;justify-content:center;align-items:center;flex-direction:column}.left-container .left-head .left-head-img[data-v-ee189f8b]{width:4.6875rem;height:4.6875rem;margin-top:1.875rem}.left-container .left-head .left-head-font[data-v-ee189f8b]{font-weight:700;font-size:1.25rem}.left-container .left-head .left-head-font-dark[data-v-ee189f8b]{font-weight:700;font-size:1.25rem;background:linear-gradient(to right,#ebf4ff,#adc4e0);-webkit-background-clip:text;color:transparent}.left-container .left-img-container[data-v-ee189f8b]{display:flex;justify-content:center;align-items:center;flex-direction:column}.left-container .left-img-container .left-img[data-v-ee189f8b]{width:2.90625rem;height:2.90625rem;margin:1.5625rem 0;z-index:100}.title-time-border-yellow[data-v-ee189f8b]{width:7.96875rem;height:5.90625rem;margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#fff1db,#ffe2b2);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;position:absolute;z-index:10}.title-time-border-pouple[data-v-ee189f8b]{width:7.96875rem;height:5.90625rem;margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;position:absolute;z-index:10}.title-time[data-v-ee189f8b]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-ee189f8b]{font-size:1rem;margin-left:.84375rem;margin-top:.375rem}.title-time .title-time-button[data-v-ee189f8b]{position:absolute;top:-.15625rem;right:0;width:2.1875rem;height:2.1875rem}.title-time .title-time-font[data-v-ee189f8b]{position:absolute;top:.21875rem;right:.15625rem;font-size:.71875rem;color:#fff}.down-icons[data-v-ee189f8b]{margin-top:.625rem;width:100%;height:1.5625rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-ee189f8b]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}
diff --git a/unpackage/dist/build/app-plus/pages/NursingNew/index.css b/unpackage/dist/build/app-plus/pages/NursingNew/index.css
index 68f7437..1e3677d 100644
--- a/unpackage/dist/build/app-plus/pages/NursingNew/index.css
+++ b/unpackage/dist/build/app-plus/pages/NursingNew/index.css
@@ -1 +1 @@
-.index-content-other[data-v-9c8806b6]{width:calc(100% - 12.71875rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-other .abs-time[data-v-9c8806b6]{position:absolute;right:.625rem;top:4.6875rem}.index-content-other .abs-time .big-time[data-v-9c8806b6]{font-size:2.8125rem;font-weight:600;width:100%;justify-content:center}.right-container-title-nav[data-v-9c8806b6]{margin-top:1.875rem;display:flex;align-items:center;height:1.875rem;position:relative;font-size:.875rem}.right-container-title-nav .new-weight[data-v-9c8806b6]{margin-left:.9375rem;font-weight:600}.right-container-title-nav .right-icons[data-v-9c8806b6]{position:absolute;right:.9375rem;top:0;display:flex;align-items:center;height:1.875rem}.right-container-title-nav .right-icons-img[data-v-9c8806b6]{width:1.875rem;height:1.875rem;margin-left:.625rem;margin-right:.625rem}.scroll-vi[data-v-9c8806b6]{height:3.75rem;width:95%;margin-left:.625rem;margin-top:.625rem;position:relative;margin-bottom:2.5rem}.scroll-vi .menu[data-v-9c8806b6]{margin-top:.46875rem;flex:0 0 auto;height:2.8125rem;width:7.5rem;border-radius:1.5625rem;margin-right:.625rem;background-color:#fff;display:flex;justify-content:center;align-items:center;padding-top:.28125rem}.scroll-vi .menu .menu-img[data-v-9c8806b6]{width:1.71875rem;height:1.71875rem;margin-right:.46875rem}.scroll-vi .menu .menu-font[data-v-9c8806b6]{margin-top:.5625rem;font-size:.78125rem}.date[data-v-9c8806b6]{display:flex;justify-content:space-around;margin-top:.3125rem}.right-container-tem[data-v-9c8806b6]{display:flex}.right-container-tem .right-container-tem-text[data-v-9c8806b6]{font-size:.9375rem;margin-right:.625rem}.right-container-tem .right-container-tem-img[data-v-9c8806b6]{width:1.1875rem;height:1.1875rem}.photo-father[data-v-9c8806b6]{width:100%;height:34.375rem;display:flex;flex-direction:column;align-items:center;position:relative;margin-top:0}.juzhong[data-v-9c8806b6]{position:absolute;top:0%;left:50%;transform:translate(-50%,-10%)}.weight-time[data-v-9c8806b6]{font-weight:800;font-size:3.125rem;margin-bottom:0;position:relative;margin-left:-1.5625rem}.big-img[data-v-9c8806b6]{width:31.25rem;height:21.875rem}.server-name[data-v-9c8806b6]{font-size:1.40625rem;margin-right:.3125rem;font-weight:600}.server-bgc[data-v-9c8806b6]{width:5rem;height:1.5625rem;display:flex;justify-content:center;align-items:center;position:relative}.bgc-img[data-v-9c8806b6]{width:100%;height:100%;position:absolute;top:0;left:0}.bgc-font[data-v-9c8806b6]{color:#fff;z-index:1}.down-img[data-v-9c8806b6]{width:1.09375rem;height:1.09375rem}.states-father[data-v-9c8806b6]{display:flex;margin:0 .625rem}.icon-img[data-v-9c8806b6]{width:1.71875rem;height:1.71875rem}.start-button[data-v-9c8806b6]{width:100%;height:100%;background:linear-gradient(to bottom,#009def,#0076ff);display:flex;justify-content:center;align-items:center;border-radius:1.25rem;color:#fff;font-size:.9375rem}.end-button[data-v-9c8806b6]{width:100%;height:100%;background:linear-gradient(to bottom,#fff,#c8d0d9);display:flex;justify-content:center;align-items:center;border-radius:1.25rem;font-size:.9375rem}.pao-father[data-v-9c8806b6]{position:absolute;top:.78125rem;right:-3.4375rem;font-size:.6875rem;width:3.125rem;height:1.5625rem;display:flex;justify-content:center;align-items:center;color:#fff}.pao-father .pao-img[data-v-9c8806b6]{position:absolute;top:0;left:0;width:100%;height:100%}.left-menu[data-v-9c8806b6]{position:absolute;top:50%;left:4.6875rem;transform:translateY(-50%)}.zoom[data-v-9c8806b6]{transform:scale(1.2);transform-origin:bottom left;transition:transform 1s ease}.left-ball[data-v-9c8806b6]{width:3.125rem;height:3.125rem;border-radius:50%;display:flex;justify-content:center;align-items:center;background-color:#fff}.left-ball .left-menu-img[data-v-9c8806b6]{width:1.5625rem;height:1.5625rem}.right-menu[data-v-9c8806b6]{position:absolute;top:50%;right:4.6875rem;transform:translateY(-50%);display:flex;flex-direction:column;align-items:center;width:4.375rem}.right-menu .top-img[data-v-9c8806b6]{width:4.375rem;height:3.4375rem;padding:0 1.5625rem}.right-menu .right-scroll[data-v-9c8806b6]{width:100%;height:23.4375rem}.right-menu .white-circle[data-v-9c8806b6]{height:6.25rem;border-radius:1.875rem;background-color:#fff;display:flex;justify-content:center;align-items:center;flex-direction:column;text-align:center}.right-menu .white-circle .right-menu-img[data-v-9c8806b6]{width:2.5rem;height:2.5rem}.right-menu .white-circle .right-menu-name[data-v-9c8806b6]{width:2.5rem}.zhezhao-top[data-v-9c8806b6]{position:absolute;top:3.28125rem;left:0%;width:120%;height:3.75rem;background:linear-gradient(to bottom,#eff0f4,rgba(239,240,244,0));z-index:4}.zhezhao-bottom[data-v-9c8806b6]{position:absolute;bottom:3.28125rem;left:0%;width:120%;height:3.75rem;background:linear-gradient(to top,#eff0f4,rgba(239,240,244,0));z-index:4}.zhezhao-left[data-v-9c8806b6]{position:absolute;top:0;left:0%;height:100%;width:3.75rem;background:linear-gradient(to right,#eff0f4,rgba(239,240,244,0));z-index:4}.zhezhao-right[data-v-9c8806b6]{position:absolute;top:0;right:0%;height:100%;width:3.75rem;background:linear-gradient(to left,#eff0f4,rgba(239,240,244,0));z-index:4}.zerotarget[data-v-9c8806b6]{--color: #99C9FD;--thick: 2px;--radius: 1.5625rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-9c8806b6 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}.firsttarget[data-v-9c8806b6]{--color: #99C9FD;--thick: 2px;--radius: 50%;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-9c8806b6 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}.secondtarget[data-v-9c8806b6]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-9c8806b6 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}.thirdtarget[data-v-9c8806b6]{--color: #99C9FD;--thick: 2px;--radius: 1.25rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-9c8806b6 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}@keyframes scalePulse-9c8806b6{0%{transform:scale(1)}25%{transform:scale(.94)}65%{transform:scale(1.08)}to{transform:scale(1)}}.super-card[data-v-42a31c2e]{display:flex;width:100%}.super-card .scroll-x[data-v-42a31c2e]{height:100%;width:100%}.super-card .right-cards[data-v-42a31c2e]{width:16.25rem;height:40rem}.super-card .right-cards .scroll-box[data-v-42a31c2e]{width:100%;height:9.6875rem;margin-top:.3125rem}.super-card .right-cards .scroll-box .right-box[data-v-42a31c2e]{height:10rem;display:flex;flex-direction:column;flex-wrap:wrap;align-content:flex-start}.super-card .right-cards .scroll-box .right-box .right-box-item[data-v-42a31c2e]{margin:.625rem 0 0 .625rem;width:4.6875rem;height:3.75rem;border-radius:.625rem;background-color:#fff;position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-img[data-v-42a31c2e]{width:1.875rem;height:1.875rem}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-font[data-v-42a31c2e]{font-size:.78125rem}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-items[data-v-42a31c2e]{display:flex;justify-content:space-around;align-items:center}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-items .right-box-items-button[data-v-42a31c2e]{width:.78125rem;height:.78125rem;margin:0 .09375rem}.super-card .right-cards .scroll-box .right-box .title-time-button[data-v-42a31c2e]{position:absolute;top:0;right:0;width:1.71875rem;height:1.40625rem}.super-card .right-cards .scroll-box .right-box .title-time-font[data-v-42a31c2e]{position:absolute;top:.15625rem;right:.09375rem;font-size:.53125rem;color:#fff}.super-card .time-father[data-v-42a31c2e]{border-radius:.625rem;height:97%;width:95%;margin-top:6%;margin-left:6%;background-color:rgba(255,255,255,.3)}.super-card .time-father .time-button[data-v-42a31c2e]{width:4.375rem;height:1.875rem;margin-top:.9375rem;margin-left:.9375rem;border-radius:.625rem;background-color:#369fef;border:.15625rem solid #369fef;display:flex}.super-card .time-father .time-button .time-button-month[data-v-42a31c2e]{width:50%;height:100%;color:#fff;display:flex;justify-content:center;align-items:center}.super-card .time-father .time-button .time-button-month-target[data-v-42a31c2e]{width:50%;height:100%;background-color:#fff;color:#369fef;display:flex;justify-content:center;align-items:center;border-bottom-left-radius:.46875rem;border-top-left-radius:.46875rem}.super-card .time-father .time-button .time-button-week-target[data-v-42a31c2e]{width:50%;height:100%;display:flex;justify-content:center;align-items:center;color:#fff}.super-card .time-father .time-button .time-button-week[data-v-42a31c2e]{width:50%;height:100%;color:#369fef;display:flex;justify-content:center;align-items:center;background-color:#fff;border-bottom-right-radius:.46875rem;border-top-right-radius:.46875rem}.super-card .under-button[data-v-42a31c2e]{width:16.25rem;height:2.96875rem;margin-left:.625rem;margin-top:.625rem;border-radius:.625rem;display:flex;align-items:center;position:relative}.super-card .under-button .under-button-black[data-v-42a31c2e]{transition:all 1s;position:absolute;width:9.375rem;height:3.125rem;border-radius:.625rem;padding-left:.3125rem;background-color:#4d4d4d;top:-3.125rem;left:4.6875rem;color:#fff;display:flex;justify-content:center;align-items:center}.super-card .under-button .under-button-black .under-button-three[data-v-42a31c2e]{position:absolute;right:.40625rem;bottom:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-top:.625rem solid #4d4d4d}.super-card .under-button .other-father[data-v-42a31c2e]{width:100%;height:100%;background-color:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center}.super-card .under-button .white-circle-click-father-spec[data-v-42a31c2e]{position:absolute;top:-5rem;right:.46875rem;overflow:hidden;margin-left:.3125rem;height:4.0625rem;width:4.0625rem;border-radius:50%;--color: #99C9FD;--thick: 2px;--radius: 50%;border:var(--thick) dashed var(--color);border-radius:var(--radius);background:repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / 100% var(--thick) no-repeat,repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) bottom left / 100% var(--thick) no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / var(--thick) 100% no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top right / var(--thick) 100% no-repeat}.super-card .under-button .white-circle-click-father[data-v-42a31c2e]{position:relative;overflow:hidden;margin-left:.3125rem;height:2.34375rem;width:4.6875rem;border-radius:1.25rem;background:linear-gradient(to bottom,#e7f4ff,#c5e5ff);border:.0625rem solid #9AD1FF;color:#007cff;display:flex;justify-content:center;align-items:center;-webkit-tap-highlight-color:transparent}.super-card .under-button .white-circle-click-father .label[data-v-42a31c2e]{position:relative;z-index:2}.super-card .under-button .white-circle-click-father[data-v-42a31c2e]:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:none;background:linear-gradient(to bottom,#bfe9ff,#4aa8ff);opacity:0}.super-card .under-button .white-circle-click-father.anim[data-v-42a31c2e]:before{animation:coverFade-42a31c2e 1s ease-in-out forwards}@keyframes coverFade-42a31c2e{0%{opacity:0}20%{opacity:1}80%{opacity:1}to{opacity:0}}.super-card .under-button .white-circle[data-v-42a31c2e]{width:2.1875rem;height:2.1875rem;border-radius:50%;margin-left:.46875rem;background-color:#fff;display:flex;justify-content:center;align-items:center;z-index:99}.super-card .under-button .white-circle .white-circle-img[data-v-42a31c2e]{width:1.25rem;height:1.25rem}.super-card .middle-box[data-v-42a31c2e]{width:100%;height:25rem;display:flex;overflow:hidden}.super-card .middle-box .middle-left-box[data-v-42a31c2e]{margin-left:0;width:10.625rem;height:25rem;border-radius:.625rem;display:flex}.super-card .middle-box .middle-left-box .first-contant[data-v-42a31c2e]{height:100%;width:4.6875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item[data-v-42a31c2e]{margin:.3125rem 0 0 .625rem;width:4.0625rem;height:3.75rem;border-radius:.625rem;background-color:rgba(255,255,255,.3);position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-img[data-v-42a31c2e]{width:1.875rem;height:1.875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-button[data-v-42a31c2e]{position:absolute;top:-.09375rem;right:-.09375rem;width:1.875rem;height:.9375rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-button-font[data-v-42a31c2e]{color:#fff;position:absolute;top:.0625rem;right:.25rem;font-size:.59375rem;z-index:999}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-font[data-v-42a31c2e]{font-size:.71875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-zhejiao[data-v-42a31c2e]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-font[data-v-42a31c2e]{position:absolute;top:.09375rem;right:.15625rem;font-size:.625rem;color:#fff;z-index:999}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-items[data-v-42a31c2e]{display:flex;justify-content:space-around;align-items:center}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-items .right-box-items-button[data-v-42a31c2e]{width:.78125rem;height:.78125rem;margin:0 .09375rem}.super-card .middle-box .middle-left-box .second-contant[data-v-42a31c2e]{height:100%;width:6.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box-target[data-v-42a31c2e]{display:flex;justify-content:center;align-items:center;background-color:#fff;margin-left:.78125rem;width:5rem;height:3.75rem;border-radius:.625rem;margin-top:.3125rem;flex-direction:column;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.super-card .middle-box .middle-left-box .second-contant .downList-box-target .downList-box-img[data-v-42a31c2e]{height:1.5625rem;width:1.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box-target .downList-box-text[data-v-42a31c2e]{font-size:.6875rem;color:#369fef}.super-card .middle-box .middle-left-box .second-contant .downList-box[data-v-42a31c2e]{display:flex;justify-content:center;align-items:center;margin-left:.78125rem;border-radius:.625rem;background-color:rgba(255,255,255,.5);width:5rem;height:3.75rem;margin-top:.3125rem;flex-direction:column;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.super-card .middle-box .middle-left-box .second-contant .downList-box .downList-box-img[data-v-42a31c2e]{height:1.5625rem;width:1.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box .downList-box-text[data-v-42a31c2e]{font-size:.625rem}.super-card .middle-box .middle-right-box[data-v-42a31c2e]{height:24.375rem;width:2.8125rem}.super-card .middle-box .middle-right-box .doctorsay-container-card[data-v-42a31c2e]{position:relative;display:flex;justify-content:center;align-items:center;background-color:#fff;width:5rem;height:2.8125rem;border-radius:1.25rem;margin-left:.3125rem;margin-top:.9375rem}.super-card .middle-box .middle-right-box .doctorsay-container-card .doctorsay-container-card-img[data-v-42a31c2e]{width:1.71875rem;height:1.71875rem}.super-card .middle-box .middle-right-box .doctorsay-container-card .doctorsay-container-card-font[data-v-42a31c2e]{font-size:.78125rem;margin-top:.625rem}.super-card .middle-box .middle-right-box .doctorsay-container-card-target[data-v-42a31c2e]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;background:linear-gradient(to left,#fff,#e5e9f9);width:3.59375rem;height:3.8125rem;border-top-right-radius:.625rem;border-bottom-right-radius:.625rem;margin:0 .5625rem .3125rem -.46875rem}.super-card .middle-box .middle-right-box .doctorsay-container-card-target .doctorsay-container-card-img[data-v-42a31c2e]{width:1.71875rem;height:1.71875rem;margin-left:.78125rem}.super-card .super-card-container[data-v-42a31c2e]{background-blend-mode:screen;isolation:isolate;overflow:hidden;margin-left:1.875rem;width:40.625rem;height:42.1875rem;border-left:0;position:relative}.super-card .super-card-time[data-v-42a31c2e]{display:flex;justify-content:center;align-items:center;height:2.5rem;width:8.09375rem;border-bottom:.03125rem solid transparent;border-image:repeating-linear-gradient(90deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1;z-index:-1;font-size:.78125rem;color:#a9acb1}.super-card .super-card-time-und[data-v-42a31c2e]{display:flex;justify-content:center;align-items:center;width:8.09375rem;flex-direction:column;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1}.super-card .super-card-time-und .title-time-img[data-v-42a31c2e]{width:2.03125rem;height:2.03125rem;margin-top:-.15625rem}.super-card .super-card-time-und .title-time-font-rel[data-v-42a31c2e]{font-size:.78125rem;margin-bottom:.15625rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.super-card .super-card-time-und .title-time-items[data-v-42a31c2e]{display:flex;justify-content:space-around;align-items:center}.super-card .super-card-time-und .title-time-items .right-box-items-button[data-v-42a31c2e]{width:1.09375rem;height:1.09375rem;margin:0 .15625rem}.super-card .super-card-time-card[data-v-42a31c2e]{display:flex;justify-content:center;align-items:center;height:7.8125rem;width:100%;transition:all .8s;border-image:repeating-linear-gradient(90deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.right-container[data-v-42a31c2e]{width:calc(100% - 12.8125rem);height:100vh;transition:opacity 1s ease;position:relative}.right-container .joystick[data-v-42a31c2e]{position:absolute;bottom:6.25rem;left:.625rem;width:9.375rem;height:9.375rem;z-index:9999}.right-container .outer-circle[data-v-42a31c2e]{width:100%;height:100%;border-radius:50%;background-color:rgba(127,127,127,.1);position:relative}.right-container .inner-circle[data-v-42a31c2e]{width:3.75rem;height:3.75rem;border-radius:50%;background-color:rgba(127,127,127,.3);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.right-container .doctorsay-container-view[data-v-42a31c2e]{width:100%;height:42.1875rem;display:flex;margin-top:.9375rem}.right-container .doctorsay-container-view .doctorsay-container-container[data-v-42a31c2e]{width:100%;overflow:hidden}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title[data-v-42a31c2e]{width:100%;height:3.28125rem;display:flex;align-items:center;justify-content:space-between}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left[data-v-42a31c2e]{display:flex}.right-container .right-container-title-nav[data-v-42a31c2e]{margin-bottom:.625rem}.right-container .right-container-title-nav .right-icons[data-v-42a31c2e]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-font[data-v-42a31c2e]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-img[data-v-42a31c2e]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-img-icon[data-v-42a31c2e]{width:1.875rem;height:2.5rem;margin-top:-.3125rem;margin-left:.25rem}.right-container .right-container-title-nav .right-container-title-class[data-v-42a31c2e]{font-size:1.09375rem;font-weight:800;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-class-dark[data-v-42a31c2e]{font-size:1.09375rem;font-weight:800;margin-left:.625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.title-time-delete[data-v-42a31c2e]{width:1.71875rem;height:1.71875rem;border-radius:50%;display:flex;background-color:#fff;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;background-color:#02abfe;color:#fff;z-index:999;font-size:1.5625rem}.title-time-blue[data-v-42a31c2e]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:90%;height:88%;z-index:10;--color: #99C9FD;--thick: 2px;--radius: 16px;border:var(--thick) dashed var(--color);border-radius:var(--radius);background:repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / 100% var(--thick) no-repeat,repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) bottom left / 100% var(--thick) no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / var(--thick) 100% no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top right / var(--thick) 100% no-repeat}.time-button-black-spe[data-v-42a31c2e]{transition:all 1s;position:absolute;width:11.25rem;height:3.125rem;padding:0 .625rem;border-radius:.625rem;border-top-right-radius:0;border:.0625rem solid #e8e9eb;color:#545569;bottom:-3.125rem;left:-6.875rem;background-color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-black[data-v-42a31c2e]{transition:all 1s;position:absolute;width:11.25rem;height:3.125rem;padding:0 .625rem;border-radius:.625rem;border-bottom-right-radius:0;background-color:#fff;top:-3.125rem;left:-6.875rem;border:.0625rem solid #e8e9eb;color:#545569;display:flex;justify-content:center;align-items:center;z-index:999;box-shadow:0 2px 6px rgba(0,131,250,.2)}.time-button-orange-spe[data-v-42a31c2e]{transition:all 1s;position:absolute;width:8.75rem;height:3.125rem;padding:0 .625rem;border-radius:.625rem;border-top-right-radius:0;border:.0625rem solid #e8e9eb;background-color:#fff;color:#545569;bottom:-3.125rem;left:-4.0625rem;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-orange[data-v-42a31c2e]{transition:all 1s;position:absolute;width:8.75rem;height:3.125rem;border-radius:.625rem;padding:0 .625rem;border:.0625rem solid #e8e9eb;border-bottom-right-radius:0;background-color:#fff;top:-2.8125rem;left:-4.0625rem;color:#545569;display:flex;justify-content:center;align-items:center;z-index:999}.title-time[data-v-42a31c2e]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-42a31c2e]{font-size:1rem;margin:0 auto;font-weight:600}.title-time .title-time-button[data-v-42a31c2e]{position:absolute;top:-.1875rem;right:-.125rem;width:1.71875rem;height:1.25rem}.title-time .title-time-zhejiao[data-v-42a31c2e]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.title-time .title-time-font[data-v-42a31c2e]{position:absolute;top:0;right:.15625rem;font-size:.4375rem;color:#fff}.popup-say[data-v-42a31c2e]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4);z-index:999}.popup-say .popup-say-content[data-v-42a31c2e]{position:absolute;right:2.03125rem;bottom:5.3125rem;display:flex;flex-direction:column;width:14.0625rem;background-color:#fff;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-say .popup-say-content .popup-say-content-flex[data-v-42a31c2e]{display:flex;margin-top:.21875rem;margin-bottom:.3125rem}.popup-say .popup-say-content .popup-say-content-flex .popup-say-content-gun[data-v-42a31c2e]{margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-say .popup-say-content .popup-say-content-flex .popup-say-content-font[data-v-42a31c2e]{font-size:.9375rem;font-weight:700}.popup-say .popup-say-content .popup-say-three[data-v-42a31c2e]{position:absolute;left:5.40625rem;bottom:-1.21875rem;width:0;height:0;border-left:.9375rem solid transparent;border-right:.9375rem solid transparent;border-top:1.25rem solid #fff}.popup-delete[data-v-42a31c2e]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-delete .popup-delete-content[data-v-42a31c2e]{position:absolute;right:23.4375rem;display:flex;flex-direction:column;align-items:center;width:25rem;height:15.625rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-delete .popup-delete-content .popup-delete-img[data-v-42a31c2e]{width:7.8125rem;height:7.1875rem;margin-top:1.25rem;margin-bottom:.625rem}.popup-delete .popup-delete-content .popup-delete-text[data-v-42a31c2e]{font-size:.9375rem;color:#42474e}.popup-delete .popup-delete-content .popup-delete-button[data-v-42a31c2e]{display:flex;justify-content:space-around;height:2.8125rem;margin-top:.9375rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-left[data-v-42a31c2e]{background-color:#02abfe;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff;margin:0 .3125rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-right[data-v-42a31c2e]{background-color:#ced9e8;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;margin:0 .3125rem}.popup-overlay[data-v-42a31c2e]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;z-index:98}.popup-overlay .popup-overlay-content[data-v-42a31c2e]{position:absolute;display:flex;align-items:center;width:25rem;height:12.1875rem;background-color:#fff;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-overlay .popup-overlay-content .popup-overlay-content-left[data-v-42a31c2e]{height:100%;width:10.9375rem;display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-img[data-v-42a31c2e]{width:8.75rem;height:7.5rem;margin-top:0}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-font[data-v-42a31c2e]{font-size:.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right[data-v-42a31c2e]{height:100%;width:14.0625rem;position:relative}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-font[data-v-42a31c2e]{font-size:1.875rem;margin-top:2.5rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-text[data-v-42a31c2e]{margin-left:.3125rem;font-size:1rem;width:12.5rem;margin-bottom:1.5625rem;line-height:1.09375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richang[data-v-42a31c2e]{background-color:#ffc363;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richangnot[data-v-42a31c2e]{background-color:#7b61ff;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem;color:#fff}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-crush[data-v-42a31c2e]{position:absolute;top:.625rem;right:.625rem;width:2.1875rem;height:2.1875rem;animation:shake-42a31c2e .5s 3}.popup-song[data-v-42a31c2e]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-song .popup-song-contain[data-v-42a31c2e]{position:absolute;right:14.0625rem;width:40.5rem;background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.7);border:.0625rem solid #fff;background-blend-mode:screen;border-radius:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-song .popup-song-contain .shu-container-left[data-v-42a31c2e]{display:flex;margin-top:2.1875rem;margin-bottom:.625rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-gun[data-v-42a31c2e]{margin-top:.15625rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-font[data-v-42a31c2e]{font-size:1.09375rem;font-weight:700}.popup-song-father[data-v-42a31c2e]{position:relative}.popup-song-father .shu-up-img[data-v-42a31c2e]{position:absolute;top:-2.1875rem;left:9.53125rem;width:21.875rem;height:2.5rem}.popup-song-father .shu-up-font[data-v-42a31c2e]{position:absolute;top:-1.5625rem;left:12.1875rem;display:flex;color:#ff5a00}.popup-song-father .arrayindex[data-v-42a31c2e]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem;margin-bottom:1.875rem}.popup-song-father .arrayindex .arrayindex-one[data-v-42a31c2e]{width:8.90625rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .arrayindex .arrayindex-one-target[data-v-42a31c2e]{width:8.90625rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .secondarrayindex[data-v-42a31c2e]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem;margin-bottom:1.875rem}.popup-song-father .secondarrayindex .arrayindex-one[data-v-42a31c2e]{width:11.875rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .secondarrayindex .arrayindex-one-target[data-v-42a31c2e]{width:11.875rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.ri-img[data-v-42a31c2e]{position:absolute;top:-.125rem;right:-.125rem;width:1.875rem;height:1.875rem}.time-father[data-v-42a31c2e]{display:flex;width:100%;flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem}.time-father .time-one[data-v-42a31c2e]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-target[data-v-42a31c2e]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-hui[data-v-42a31c2e]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#c2c9d3;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.items-card[data-v-42a31c2e]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center}.items-card-target[data-v-42a31c2e]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center;color:#369fef;background:linear-gradient(to right,rgba(54,159,239,0),rgba(54,159,239,.5),rgba(54,159,239,0))}.button-father[data-v-42a31c2e]{height:6.25rem;width:calc(100%-2.5rem);display:flex;justify-content:center;align-items:center;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem;border-top:.03125rem solid #e6e6e6}.button-father .button-father-right[data-v-42a31c2e]{background:linear-gradient(to right,#00c9ff,#0076ff);width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.button-father .button-father-wrong[data-v-42a31c2e]{background-color:#c2c9d3;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center}.month-father[data-v-42a31c2e]{display:flex;width:calc(100% - 1.875rem);flex-wrap:wrap;margin:.625rem .9375rem .9375rem}.month-father .month-one[data-v-42a31c2e]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.month-father .month-one-target[data-v-42a31c2e]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father[data-v-42a31c2e]{display:flex;width:100%;flex-wrap:wrap;margin:.625rem .9375rem .9375rem}.week-father .week-one[data-v-42a31c2e]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father .week-one-target[data-v-42a31c2e]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.radio-father[data-v-42a31c2e]{display:flex;width:100%;flex-wrap:wrap;margin-left:2.34375rem;margin-right:.9375rem}.radio-father .radio-circle[data-v-42a31c2e]{margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid black;background-color:transparent}.radio-father .radio-circle-target[data-v-42a31c2e]{position:relative;margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-father .radio-circle-target[data-v-42a31c2e]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.625rem;height:.625rem;background-color:#02abfe;border-radius:50%}.radio-father .radio-font[data-v-42a31c2e]{margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.radio-father .radio-font-target[data-v-42a31c2e]{color:#02abfe;margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.title-time-border[data-v-42a31c2e]{margin-top:.125rem;margin-left:.125rem;width:calc(100% - .25rem);height:calc(100% - .25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column}.title-time-border-red[data-v-42a31c2e]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,red,red) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,red,red) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom right / .25rem 1.875rem no-repeat}.title-time-border-big[data-v-42a31c2e],.title-time-border-big-top[data-v-42a31c2e]{transform:scale(1.3);transform-origin:top;border-top:0 solid #fff;transition:transform .5s ease-out,opacity .5s ease-out;z-index:999;display:flex;justify-content:center;align-items:center;height:7.8125rem;width:100%;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.title-time-border-blue[data-v-42a31c2e]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,#0184db,#0184db) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,#0184db,#0184db) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom right / .25rem 1.875rem no-repeat}.title-time-border-yellow[data-v-42a31c2e]{margin:.3125rem;border:.0625rem solid transparent;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;background-color:#fff;flex-direction:column}.title-time-border-yellow-active-transparent[data-v-42a31c2e]{margin:.3125rem;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;background-color:#fff}.title-time-border-yellow-active[data-v-42a31c2e]{margin:.3125rem;border:.03125rem solid #dae8fa;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-42a31c2e .8s infinite;background-color:#fff}.title-time-border-pouple-active-transparent[data-v-42a31c2e]{margin:.3125rem;border:.125rem dashed #7B61FF;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;background-color:#fff}.title-time-border-pouple[data-v-42a31c2e]{margin:.3125rem;border:.03125rem solid #dae8fa;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;background-color:#fff}.title-time-border-pouple-active[data-v-42a31c2e]{margin:.3125rem;border:.03125rem solid #dae8fa;background-color:#fff;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-42a31c2e 1s infinite}.down-icons[data-v-42a31c2e]{margin-top:.53125rem;width:100%;height:1.875rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-42a31c2e]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.super-end-items-img-father[data-v-42a31c2e]{border-radius:50%;display:flex;justify-content:center;align-items:center;text-align:center;flex-direction:column}.super-end-items-img-father-active[data-v-42a31c2e]{text-align:center;border-radius:50%;display:flex;justify-content:center;align-items:center;flex-direction:column;animation:shake-42a31c2e .5s infinite}@keyframes shake-42a31c2e{0%{transform:rotate(-10deg)}25%{transform:rotate(10deg)}50%{transform:rotate(-10deg)}75%{transform:rotate(10deg)}to{transform:rotate(-10deg)}}.super-end-items-father-close-father[data-v-42a31c2e]{width:1.25rem;height:1.25rem;border-radius:50%;display:flex;background-color:#0184db;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;color:#fff}@keyframes shakesmall-42a31c2e{0%{transform:rotate(-2deg)}25%{transform:rotate(2deg)}50%{transform:rotate(-2deg)}75%{transform:rotate(2deg)}to{transform:rotate(-2deg)}}.boom-father[data-v-42a31c2e]{position:absolute;top:6.875rem;left:.96875rem;width:1.875rem;height:37.8125rem;margin-top:.3125rem}.doctorsay-container-card-font-dark[data-v-42a31c2e]{font-size:.78125rem;color:#369fef;margin-top:.625rem}.boom[data-v-42a31c2e]{height:39.6875rem;display:flex;flex-direction:column;overflow:hidden;z-index:0}.boom .boom-son[data-v-42a31c2e]{height:7.8125rem;width:1.875rem;font-size:.9375rem;display:flex;justify-content:center;align-items:center;text-align:center;z-index:10;font-size:.78125rem;color:#a9acb1}.boom .boom-son .boom-text[data-v-42a31c2e]{width:1.25rem;height:1.25rem;border:.03125rem solid #A9ACB1;border-radius:50%;display:flex;justify-content:center;align-items:center;z-index:1;background-color:#eff0f4}.boom .boom-son-target[data-v-42a31c2e]{height:7.8125rem;width:1.875rem;font-size:.9375rem;display:flex;justify-content:center;align-items:center;text-align:center;z-index:10;font-weight:700;font-size:.78125rem;color:#a9acb1;background:linear-gradient(to bottom,#ff8a00,#eceaff)}.popup-share[data-v-42a31c2e]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4);z-index:999}.popup-share .share-other[data-v-42a31c2e]{z-index:1;width:100%;height:100%}.popup-share .share-title[data-v-42a31c2e]{padding-left:1.5625rem;height:4.6875rem;display:flex;align-items:center}.popup-share .share-others[data-v-42a31c2e]{display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-share .share-others .other-img[data-v-42a31c2e]{width:4.6875rem;height:4.6875rem;margin-left:3.125rem}.popup-share .popup-share-content[data-v-42a31c2e]{position:absolute;display:flex;flex-direction:column;width:25rem;height:14.0625rem;background-color:#fff;border-radius:.9375rem;transition:opacity .4s ease}.popup-share .popup-share-content .popup-share-title[data-v-42a31c2e]{margin:.9375rem;font-size:1.25rem;position:relative}.popup-share .popup-share-content .popup-share-title .popup-share-img[data-v-42a31c2e]{position:absolute;top:0;right:0;width:6.25rem;height:6.25rem}.popup-share .popup-share-content .popup-share-upcontent[data-v-42a31c2e]{margin:0 .9375rem;display:flex;justify-content:space-between}.popup-share .popup-share-content .popup-share-upcontent .popup-share-font[data-v-42a31c2e]{font-size:1.09375rem;color:gray}.popup-share .popup-share-content .popup-share-gray[data-v-42a31c2e]{background-color:#d3d3d3;width:calc(100% - 1.875rem);height:.0625rem;margin:3.4375rem .9375rem 0}.popup-share .popup-share-content .popup-share-downcontent[data-v-42a31c2e]{display:flex;justify-content:space-between;align-items:center;height:100%;margin:0 .9375rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-img[data-v-42a31c2e]{width:2.1875rem;height:2.1875rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-font[data-v-42a31c2e]{font-size:.84375rem;margin-left:.625rem}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-left[data-v-42a31c2e]{display:flex;align-items:center}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-button[data-v-42a31c2e]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.46875rem .9375rem;border-radius:.625rem;font-size:1rem}.tags-father[data-v-42a31c2e]{display:flex;flex-direction:column;justify-content:center;margin:.3125rem .4375rem .3125rem .9375rem;align-items:center;width:3.125rem;height:3.4375rem}.tags-father .tags-font[data-v-42a31c2e]{font-size:.625rem}.tags-img[data-v-42a31c2e]{width:1.5625rem;height:1.5625rem;margin-bottom:.3125rem}.right-container-title-nav[data-v-42a31c2e]{margin-top:1.875rem;display:flex;align-items:center;height:1.875rem;position:relative;font-size:.875rem}.right-container-title-nav .new-weight[data-v-42a31c2e]{margin-left:.9375rem;font-weight:600}.right-container-title-nav .right-icons[data-v-42a31c2e]{position:absolute;right:0;top:0;display:flex;align-items:center;margin-top:.3125rem}.right-container-title-nav .doctorsay-container-share[data-v-42a31c2e]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-left:.3125rem}.right-container-title-nav .doctorsay-container-juzhen[data-v-42a31c2e]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin:0 .625rem}.balck-icon[data-v-42a31c2e]{width:1.5625rem;height:1.5625rem;margin-top:.3125rem;margin-right:.625rem;border-radius:50%}.white-button[data-v-42a31c2e]{width:5rem;height:2.1875rem;border-radius:1.25rem;background-color:#e6e7eb;margin-left:.625rem;margin-top:.3125rem;display:flex;justify-content:center;align-items:center}.white-button .white-img[data-v-42a31c2e]{width:1.09375rem;height:1.09375rem;margin-right:.3125rem}.left-top[data-v-42a31c2e]{border-top-left-radius:0!important}.right-top[data-v-42a31c2e]{border-top-right-radius:0!important}.left-bottom[data-v-42a31c2e]{border-bottom-left-radius:0!important}.right-bottom[data-v-42a31c2e]{border-bottom-right-radius:0!important}.mark[data-v-42a31c2e]{font-size:.90625rem;position:relative}.marknone[data-v-42a31c2e]{font-size:.90625rem;color:#999;display:flex;margin-top:.15625rem}.tri-down[data-v-42a31c2e]{width:0;height:0;border-left:.3125rem solid transparent;border-right:.3125rem solid transparent;border-top:.54125rem solid #999;margin:0 0 0 .46875rem}.mark-bgc[data-v-42a31c2e]{position:absolute;top:1.5625rem;left:0;width:14.0625rem;background-color:#fff;z-index:999;border-radius:.9375rem;padding-bottom:.9375rem;transition:opacity .3s ease}.blue-button[data-v-42a31c2e]{margin-top:1.875rem;width:4.6875rem;height:2.1875rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#007cff;font-size:.9375rem;background:linear-gradient(to bottom,#e7f4ff,#c5e5ff);border:.0625rem solid #9AD1FF}.zerotarget[data-v-42a31c2e]{--color: #99C9FD;--thick: 2px;--radius: 1.5625rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}.firsttarget[data-v-42a31c2e]{--color: #99C9FD;--thick: 2px;--radius: 1.5625rem;--outline-offset: .3125rem;border-radius:var(--radius);animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0;z-index:999}.secondtarget[data-v-42a31c2e]{--color: #99C9FD;--thick: 2px;--radius: .3125rem;--outline-offset: 0;border-radius:var(--radius);animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0;z-index:999}.xian-bian[data-v-42a31c2e]{height:100%;position:absolute;top:0;left:0;z-index:999;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1}.menus-father[data-v-8ad00f91]{margin-top:1.5625rem;width:100%}.menus-father .menu[data-v-8ad00f91]{height:3.4375rem;width:8.75rem;border-radius:1.875rem;display:flex;justify-content:center;align-items:center;margin:1.40625rem 0 1.40625rem .9375rem}.backgroundContainer[data-v-8ad00f91]{display:flex;position:relative;width:100%;height:100vh;background-color:#eff0f4;overflow:hidden;z-index:12}.darkbackgroundContainer[data-v-8ad00f91]{display:flex;position:relative;width:100%;height:100vh;background-image:url(../../static/index/background.png);background-size:cover;background-position:center center;overflow:hidden;z-index:11}.move-font[data-v-8ad00f91]{position:absolute;z-index:10;pointer-events:none;background-color:#c9e8ff;border-radius:.625rem;border:.0625rem solid #fff;width:6.875rem;height:3.125rem;display:flex;justify-content:center;align-items:center;text-align:center;font-size:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);will-change:transform}.left-container[data-v-8ad00f91]{width:13.125rem;height:100%}.left-container .blue-circle-pos[data-v-8ad00f91]{position:relative}.left-container .blue-circle-pos .blue-circle[data-v-8ad00f91]{position:absolute;top:-1.5625rem;left:-2.125rem}.left-container .blue-circle-pos .blue-circle .blue-circle-size[data-v-8ad00f91]{width:5.3125rem;height:7.8125rem}.left-container .left-head[data-v-8ad00f91]{display:flex;justify-content:center;align-items:center;flex-direction:column}.left-container .left-head .left-head-img[data-v-8ad00f91]{width:3.75rem;height:3.75rem;margin-top:2.5rem}.left-container .left-head .left-head-font[data-v-8ad00f91]{font-weight:700;font-size:1rem}.left-container .left-head .left-head-font-dark[data-v-8ad00f91]{font-weight:700;font-size:1.25rem;background:linear-gradient(to right,#ebf4ff,#adc4e0);-webkit-background-clip:text;color:transparent}.left-container .left-img-container[data-v-8ad00f91]{display:flex;justify-content:center;align-items:center;flex-direction:column}.left-container .left-img-container .left-img[data-v-8ad00f91]{width:2.90625rem;height:2.90625rem;margin:1.5625rem 0;z-index:100}.title-time-border-yellow[data-v-8ad00f91]{width:7.96875rem;height:5.90625rem;margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#fff1db,#ffe2b2);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;position:absolute;z-index:10}.title-time-border-pouple[data-v-8ad00f91]{width:7.96875rem;height:5.90625rem;margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;position:absolute;z-index:10}.title-time[data-v-8ad00f91]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-8ad00f91]{font-size:1rem;margin-left:.84375rem;margin-top:.375rem}.title-time .title-time-button[data-v-8ad00f91]{position:absolute;top:-.15625rem;right:0;width:2.1875rem;height:2.1875rem}.title-time .title-time-font[data-v-8ad00f91]{position:absolute;top:.21875rem;right:.15625rem;font-size:.71875rem;color:#fff}.down-icons[data-v-8ad00f91]{margin-top:.625rem;width:100%;height:1.5625rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-8ad00f91]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.target[data-v-8ad00f91]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-8ad00f91 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}@keyframes scalePulse-8ad00f91{0%{transform:scale(1)}25%{transform:scale(.94)}65%{transform:scale(1.08)}to{transform:scale(1)}}
+.index-content-other[data-v-9c8806b6]{width:calc(100% - 12.71875rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-other .abs-time[data-v-9c8806b6]{position:absolute;right:.625rem;top:4.6875rem}.index-content-other .abs-time .big-time[data-v-9c8806b6]{font-size:2.8125rem;font-weight:600;width:100%;justify-content:center}.right-container-title-nav[data-v-9c8806b6]{margin-top:1.875rem;display:flex;align-items:center;height:1.875rem;position:relative;font-size:.875rem}.right-container-title-nav .new-weight[data-v-9c8806b6]{margin-left:.9375rem;font-weight:600}.right-container-title-nav .right-icons[data-v-9c8806b6]{position:absolute;right:.9375rem;top:0;display:flex;align-items:center;height:1.875rem}.right-container-title-nav .right-icons-img[data-v-9c8806b6]{width:1.875rem;height:1.875rem;margin-left:.625rem;margin-right:.625rem}.scroll-vi[data-v-9c8806b6]{height:3.75rem;width:95%;margin-left:.625rem;margin-top:.625rem;position:relative;margin-bottom:2.5rem}.scroll-vi .menu[data-v-9c8806b6]{margin-top:.46875rem;flex:0 0 auto;height:2.8125rem;width:7.5rem;border-radius:1.5625rem;margin-right:.625rem;background-color:#fff;display:flex;justify-content:center;align-items:center;padding-top:.28125rem}.scroll-vi .menu .menu-img[data-v-9c8806b6]{width:1.71875rem;height:1.71875rem;margin-right:.46875rem}.scroll-vi .menu .menu-font[data-v-9c8806b6]{margin-top:.5625rem;font-size:.78125rem}.date[data-v-9c8806b6]{display:flex;justify-content:space-around;margin-top:.3125rem}.right-container-tem[data-v-9c8806b6]{display:flex}.right-container-tem .right-container-tem-text[data-v-9c8806b6]{font-size:.9375rem;margin-right:.625rem}.right-container-tem .right-container-tem-img[data-v-9c8806b6]{width:1.1875rem;height:1.1875rem}.photo-father[data-v-9c8806b6]{width:100%;height:34.375rem;display:flex;flex-direction:column;align-items:center;position:relative;margin-top:0}.juzhong[data-v-9c8806b6]{position:absolute;top:0%;left:50%;transform:translate(-50%,-10%)}.weight-time[data-v-9c8806b6]{font-weight:800;font-size:3.125rem;margin-bottom:0;position:relative;margin-left:-1.5625rem}.big-img[data-v-9c8806b6]{width:31.25rem;height:21.875rem}.server-name[data-v-9c8806b6]{font-size:1.40625rem;margin-right:.3125rem;font-weight:600}.server-bgc[data-v-9c8806b6]{width:5rem;height:1.5625rem;display:flex;justify-content:center;align-items:center;position:relative}.bgc-img[data-v-9c8806b6]{width:100%;height:100%;position:absolute;top:0;left:0}.bgc-font[data-v-9c8806b6]{color:#fff;z-index:1}.down-img[data-v-9c8806b6]{width:1.09375rem;height:1.09375rem}.states-father[data-v-9c8806b6]{display:flex;margin:0 .625rem}.icon-img[data-v-9c8806b6]{width:1.71875rem;height:1.71875rem}.start-button[data-v-9c8806b6]{width:100%;height:100%;background:linear-gradient(to bottom,#009def,#0076ff);display:flex;justify-content:center;align-items:center;border-radius:1.25rem;color:#fff;font-size:.9375rem}.end-button[data-v-9c8806b6]{width:100%;height:100%;background:linear-gradient(to bottom,#fff,#c8d0d9);display:flex;justify-content:center;align-items:center;border-radius:1.25rem;font-size:.9375rem}.pao-father[data-v-9c8806b6]{position:absolute;top:.78125rem;right:-3.4375rem;font-size:.6875rem;width:3.125rem;height:1.5625rem;display:flex;justify-content:center;align-items:center;color:#fff}.pao-father .pao-img[data-v-9c8806b6]{position:absolute;top:0;left:0;width:100%;height:100%}.left-menu[data-v-9c8806b6]{position:absolute;top:50%;left:4.6875rem;transform:translateY(-50%)}.zoom[data-v-9c8806b6]{transform:scale(1.2);transform-origin:bottom left;transition:transform 1s ease}.left-ball[data-v-9c8806b6]{width:3.125rem;height:3.125rem;border-radius:50%;display:flex;justify-content:center;align-items:center;background-color:#fff}.left-ball .left-menu-img[data-v-9c8806b6]{width:1.5625rem;height:1.5625rem}.right-menu[data-v-9c8806b6]{position:absolute;top:50%;right:4.6875rem;transform:translateY(-50%);display:flex;flex-direction:column;align-items:center;width:4.375rem}.right-menu .top-img[data-v-9c8806b6]{width:4.375rem;height:3.4375rem;padding:0 1.5625rem}.right-menu .right-scroll[data-v-9c8806b6]{width:100%;height:23.4375rem}.right-menu .white-circle[data-v-9c8806b6]{height:6.25rem;border-radius:1.875rem;background-color:#fff;display:flex;justify-content:center;align-items:center;flex-direction:column;text-align:center}.right-menu .white-circle .right-menu-img[data-v-9c8806b6]{width:2.5rem;height:2.5rem}.right-menu .white-circle .right-menu-name[data-v-9c8806b6]{width:2.5rem}.zhezhao-top[data-v-9c8806b6]{position:absolute;top:3.28125rem;left:0%;width:120%;height:3.75rem;background:linear-gradient(to bottom,#eff0f4,rgba(239,240,244,0));z-index:4}.zhezhao-bottom[data-v-9c8806b6]{position:absolute;bottom:3.28125rem;left:0%;width:120%;height:3.75rem;background:linear-gradient(to top,#eff0f4,rgba(239,240,244,0));z-index:4}.zhezhao-left[data-v-9c8806b6]{position:absolute;top:0;left:0%;height:100%;width:3.75rem;background:linear-gradient(to right,#eff0f4,rgba(239,240,244,0));z-index:4}.zhezhao-right[data-v-9c8806b6]{position:absolute;top:0;right:0%;height:100%;width:3.75rem;background:linear-gradient(to left,#eff0f4,rgba(239,240,244,0));z-index:4}.zerotarget[data-v-9c8806b6]{--color: #99C9FD;--thick: 2px;--radius: 1.5625rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-9c8806b6 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}.firsttarget[data-v-9c8806b6]{--color: #99C9FD;--thick: 2px;--radius: 50%;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-9c8806b6 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}.secondtarget[data-v-9c8806b6]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-9c8806b6 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}.thirdtarget[data-v-9c8806b6]{--color: #99C9FD;--thick: 2px;--radius: 1.25rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-9c8806b6 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}@keyframes scalePulse-9c8806b6{0%{transform:scale(1)}25%{transform:scale(.94)}65%{transform:scale(1.08)}to{transform:scale(1)}}.super-card[data-v-08249c72]{display:flex;width:100%}.super-card .scroll-x[data-v-08249c72]{height:100%;width:100%}.super-card .right-cards[data-v-08249c72]{width:16.25rem;height:40rem}.super-card .right-cards .scroll-box[data-v-08249c72]{width:100%;height:9.6875rem;margin-top:.3125rem}.super-card .right-cards .scroll-box .right-box[data-v-08249c72]{height:10rem;display:flex;flex-direction:column;flex-wrap:wrap;align-content:flex-start}.super-card .right-cards .scroll-box .right-box .right-box-item[data-v-08249c72]{margin:.625rem 0 0 .625rem;width:4.6875rem;height:3.75rem;border-radius:.625rem;background-color:#fff;position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-img[data-v-08249c72]{width:1.875rem;height:1.875rem}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-font[data-v-08249c72]{font-size:.78125rem}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-items[data-v-08249c72]{display:flex;justify-content:space-around;align-items:center}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-items .right-box-items-button[data-v-08249c72]{width:.78125rem;height:.78125rem;margin:0 .09375rem}.super-card .right-cards .scroll-box .right-box .title-time-button[data-v-08249c72]{position:absolute;top:0;right:0;width:1.71875rem;height:1.40625rem}.super-card .right-cards .scroll-box .right-box .title-time-font[data-v-08249c72]{position:absolute;top:.15625rem;right:.09375rem;font-size:.53125rem;color:#fff}.super-card .time-father[data-v-08249c72]{border-radius:.625rem;height:97%;width:95%;margin-top:6%;margin-left:6%;background-color:rgba(255,255,255,.3)}.super-card .time-father .time-button[data-v-08249c72]{width:4.375rem;height:1.875rem;margin-top:.9375rem;margin-left:.9375rem;border-radius:.625rem;background-color:#369fef;border:.15625rem solid #369fef;display:flex}.super-card .time-father .time-button .time-button-month[data-v-08249c72]{width:50%;height:100%;color:#fff;display:flex;justify-content:center;align-items:center}.super-card .time-father .time-button .time-button-month-target[data-v-08249c72]{width:50%;height:100%;background-color:#fff;color:#369fef;display:flex;justify-content:center;align-items:center;border-bottom-left-radius:.46875rem;border-top-left-radius:.46875rem}.super-card .time-father .time-button .time-button-week-target[data-v-08249c72]{width:50%;height:100%;display:flex;justify-content:center;align-items:center;color:#fff}.super-card .time-father .time-button .time-button-week[data-v-08249c72]{width:50%;height:100%;color:#369fef;display:flex;justify-content:center;align-items:center;background-color:#fff;border-bottom-right-radius:.46875rem;border-top-right-radius:.46875rem}.super-card .under-button[data-v-08249c72]{width:16.25rem;height:2.96875rem;margin-left:.625rem;margin-top:.625rem;border-radius:.625rem;display:flex;align-items:center;position:relative}.super-card .under-button .under-button-black[data-v-08249c72]{transition:all 1s;position:absolute;width:9.375rem;height:3.125rem;border-radius:.625rem;padding-left:.3125rem;background-color:#4d4d4d;top:-3.125rem;left:4.6875rem;color:#fff;display:flex;justify-content:center;align-items:center}.super-card .under-button .under-button-black .under-button-three[data-v-08249c72]{position:absolute;right:.40625rem;bottom:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-top:.625rem solid #4d4d4d}.super-card .under-button .other-father[data-v-08249c72]{width:100%;height:100%;background-color:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center}.super-card .under-button .white-circle-click-father-spec[data-v-08249c72]{position:absolute;top:-5rem;right:.46875rem;overflow:hidden;margin-left:.3125rem;height:4.0625rem;width:4.0625rem;border-radius:50%;--color: #99C9FD;--thick: 2px;--radius: 50%;border:var(--thick) dashed var(--color);border-radius:var(--radius);background:repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / 100% var(--thick) no-repeat,repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) bottom left / 100% var(--thick) no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / var(--thick) 100% no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top right / var(--thick) 100% no-repeat}.super-card .under-button .white-circle-click-father[data-v-08249c72]{position:relative;overflow:hidden;margin-left:.3125rem;height:2.34375rem;width:4.6875rem;border-radius:1.25rem;background:linear-gradient(to bottom,#e7f4ff,#c5e5ff);border:.0625rem solid #9AD1FF;color:#007cff;display:flex;justify-content:center;align-items:center;-webkit-tap-highlight-color:transparent}.super-card .under-button .white-circle-click-father .label[data-v-08249c72]{position:relative;z-index:2}.super-card .under-button .white-circle-click-father[data-v-08249c72]:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:none;background:linear-gradient(to bottom,#bfe9ff,#4aa8ff);opacity:0}.super-card .under-button .white-circle-click-father.anim[data-v-08249c72]:before{animation:coverFade-08249c72 1s ease-in-out forwards}@keyframes coverFade-08249c72{0%{opacity:0}20%{opacity:1}80%{opacity:1}to{opacity:0}}.super-card .under-button .white-circle[data-v-08249c72]{width:2.1875rem;height:2.1875rem;border-radius:50%;margin-left:.46875rem;background-color:#fff;display:flex;justify-content:center;align-items:center;z-index:99}.super-card .under-button .white-circle .white-circle-img[data-v-08249c72]{width:1.25rem;height:1.25rem}.super-card .middle-box[data-v-08249c72]{width:100%;height:25rem;display:flex;overflow:hidden}.super-card .middle-box .middle-left-box[data-v-08249c72]{margin-left:0;width:10.625rem;height:25rem;border-radius:.625rem;display:flex}.super-card .middle-box .middle-left-box .first-contant[data-v-08249c72]{height:100%;width:4.6875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item[data-v-08249c72]{margin:.3125rem 0 0 .625rem;width:4.0625rem;height:3.75rem;border-radius:.625rem;background-color:rgba(255,255,255,.3);position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-img[data-v-08249c72]{width:1.875rem;height:1.875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-button[data-v-08249c72]{position:absolute;top:-.09375rem;right:-.09375rem;width:1.875rem;height:.9375rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-button-font[data-v-08249c72]{color:#fff;position:absolute;top:.0625rem;right:.25rem;font-size:.59375rem;z-index:999}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-font[data-v-08249c72]{font-size:.71875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-zhejiao[data-v-08249c72]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-font[data-v-08249c72]{position:absolute;top:.09375rem;right:.15625rem;font-size:.625rem;color:#fff;z-index:999}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-items[data-v-08249c72]{display:flex;justify-content:space-around;align-items:center}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-items .right-box-items-button[data-v-08249c72]{width:.78125rem;height:.78125rem;margin:0 .09375rem}.super-card .middle-box .middle-left-box .second-contant[data-v-08249c72]{height:100%;width:6.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box-target[data-v-08249c72]{display:flex;justify-content:center;align-items:center;background-color:#fff;margin-left:.78125rem;width:5rem;height:3.75rem;border-radius:.625rem;margin-top:.3125rem;flex-direction:column;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.super-card .middle-box .middle-left-box .second-contant .downList-box-target .downList-box-img[data-v-08249c72]{height:1.5625rem;width:1.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box-target .downList-box-text[data-v-08249c72]{font-size:.6875rem;color:#369fef}.super-card .middle-box .middle-left-box .second-contant .downList-box[data-v-08249c72]{display:flex;justify-content:center;align-items:center;margin-left:.78125rem;border-radius:.625rem;background-color:rgba(255,255,255,.5);width:5rem;height:3.75rem;margin-top:.3125rem;flex-direction:column;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.super-card .middle-box .middle-left-box .second-contant .downList-box .downList-box-img[data-v-08249c72]{height:1.5625rem;width:1.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box .downList-box-text[data-v-08249c72]{font-size:.625rem}.super-card .middle-box .middle-right-box[data-v-08249c72]{height:24.375rem;width:2.8125rem}.super-card .middle-box .middle-right-box .doctorsay-container-card[data-v-08249c72]{position:relative;display:flex;justify-content:center;align-items:center;background-color:#fff;width:5rem;height:2.8125rem;border-radius:1.25rem;margin-left:.3125rem;margin-top:.9375rem}.super-card .middle-box .middle-right-box .doctorsay-container-card .doctorsay-container-card-img[data-v-08249c72]{width:1.71875rem;height:1.71875rem}.super-card .middle-box .middle-right-box .doctorsay-container-card .doctorsay-container-card-font[data-v-08249c72]{font-size:.78125rem;margin-top:.625rem}.super-card .middle-box .middle-right-box .doctorsay-container-card-target[data-v-08249c72]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;background:linear-gradient(to left,#fff,#e5e9f9);width:3.59375rem;height:3.8125rem;border-top-right-radius:.625rem;border-bottom-right-radius:.625rem;margin:0 .5625rem .3125rem -.46875rem}.super-card .middle-box .middle-right-box .doctorsay-container-card-target .doctorsay-container-card-img[data-v-08249c72]{width:1.71875rem;height:1.71875rem;margin-left:.78125rem}.super-card .super-card-container[data-v-08249c72]{background-blend-mode:screen;isolation:isolate;overflow:hidden;margin-left:1.875rem;width:40.625rem;height:42.1875rem;border-left:0;position:relative}.super-card .super-card-time[data-v-08249c72]{display:flex;justify-content:center;align-items:center;height:2.5rem;width:8.09375rem;border-bottom:.03125rem solid transparent;border-image:repeating-linear-gradient(90deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1;z-index:-1;font-size:.78125rem;color:#a9acb1}.super-card .super-card-time-und[data-v-08249c72]{display:flex;justify-content:center;align-items:center;width:8.09375rem;flex-direction:column;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1}.super-card .super-card-time-und .title-time-img[data-v-08249c72]{width:2.03125rem;height:2.03125rem;margin-top:-.15625rem}.super-card .super-card-time-und .title-time-font-rel[data-v-08249c72]{font-size:.78125rem;margin-bottom:.15625rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.super-card .super-card-time-und .title-time-items[data-v-08249c72]{display:flex;justify-content:space-around;align-items:center}.super-card .super-card-time-und .title-time-items .right-box-items-button[data-v-08249c72]{width:1.09375rem;height:1.09375rem;margin:0 .15625rem}.super-card .super-card-time-card[data-v-08249c72]{display:flex;justify-content:center;align-items:center;height:7.8125rem;width:100%;transition:all .8s;border-image:repeating-linear-gradient(90deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.right-container[data-v-08249c72]{width:calc(100% - 12.8125rem);height:100vh;transition:opacity 1s ease;position:relative}.right-container .joystick[data-v-08249c72]{position:absolute;bottom:6.25rem;left:.625rem;width:9.375rem;height:9.375rem;z-index:9999}.right-container .outer-circle[data-v-08249c72]{width:100%;height:100%;border-radius:50%;background-color:rgba(127,127,127,.1);position:relative}.right-container .inner-circle[data-v-08249c72]{width:3.75rem;height:3.75rem;border-radius:50%;background-color:rgba(127,127,127,.3);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.right-container .doctorsay-container-view[data-v-08249c72]{width:100%;height:42.1875rem;display:flex;margin-top:.9375rem}.right-container .doctorsay-container-view .doctorsay-container-container[data-v-08249c72]{width:100%;overflow:hidden}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title[data-v-08249c72]{width:100%;height:3.28125rem;display:flex;align-items:center;justify-content:space-between}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left[data-v-08249c72]{display:flex}.right-container .right-container-title-nav[data-v-08249c72]{margin-bottom:.625rem}.right-container .right-container-title-nav .right-icons[data-v-08249c72]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-font[data-v-08249c72]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-img[data-v-08249c72]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-img-icon[data-v-08249c72]{width:1.875rem;height:2.5rem;margin-top:-.3125rem;margin-left:.25rem}.right-container .right-container-title-nav .right-container-title-class[data-v-08249c72]{font-size:1.09375rem;font-weight:800;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-class-dark[data-v-08249c72]{font-size:1.09375rem;font-weight:800;margin-left:.625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.title-time-delete[data-v-08249c72]{width:1.71875rem;height:1.71875rem;border-radius:50%;display:flex;background-color:#fff;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;background-color:#02abfe;color:#fff;z-index:999;font-size:1.5625rem}.title-time-blue[data-v-08249c72]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:90%;height:88%;z-index:10;--color: #99C9FD;--thick: 2px;--radius: 16px;border:var(--thick) dashed var(--color);border-radius:var(--radius);background:repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / 100% var(--thick) no-repeat,repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) bottom left / 100% var(--thick) no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / var(--thick) 100% no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top right / var(--thick) 100% no-repeat}.time-button-black-spe[data-v-08249c72]{transition:all 1s;position:absolute;width:11.25rem;height:3.125rem;padding:0 .625rem;border-radius:.625rem;border-top-right-radius:0;border:.0625rem solid #e8e9eb;color:#545569;bottom:-3.125rem;left:-6.875rem;background-color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-black[data-v-08249c72]{transition:all 1s;position:absolute;width:11.25rem;height:3.125rem;padding:0 .625rem;border-radius:.625rem;border-bottom-right-radius:0;background-color:#fff;top:-3.125rem;left:-6.875rem;border:.0625rem solid #e8e9eb;color:#545569;display:flex;justify-content:center;align-items:center;z-index:999;box-shadow:0 2px 6px rgba(0,131,250,.2)}.time-button-orange-spe[data-v-08249c72]{transition:all 1s;position:absolute;width:8.75rem;height:3.125rem;padding:0 .625rem;border-radius:.625rem;border-top-right-radius:0;border:.0625rem solid #e8e9eb;background-color:#fff;color:#545569;bottom:-3.125rem;left:-4.0625rem;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-orange[data-v-08249c72]{transition:all 1s;position:absolute;width:8.75rem;height:3.125rem;border-radius:.625rem;padding:0 .625rem;border:.0625rem solid #e8e9eb;border-bottom-right-radius:0;background-color:#fff;top:-2.8125rem;left:-4.0625rem;color:#545569;display:flex;justify-content:center;align-items:center;z-index:999}.title-time[data-v-08249c72]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-08249c72]{font-size:1rem;margin:0 auto;font-weight:600}.title-time .title-time-button[data-v-08249c72]{position:absolute;top:-.1875rem;right:-.125rem;width:1.71875rem;height:1.25rem}.title-time .title-time-zhejiao[data-v-08249c72]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.title-time .title-time-font[data-v-08249c72]{position:absolute;top:0;right:.15625rem;font-size:.4375rem;color:#fff}.popup-say[data-v-08249c72]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4);z-index:999}.popup-say .popup-say-content[data-v-08249c72]{position:absolute;right:2.03125rem;bottom:5.3125rem;display:flex;flex-direction:column;width:14.0625rem;background-color:#fff;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-say .popup-say-content .popup-say-content-flex[data-v-08249c72]{display:flex;margin-top:.21875rem;margin-bottom:.3125rem}.popup-say .popup-say-content .popup-say-content-flex .popup-say-content-gun[data-v-08249c72]{margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-say .popup-say-content .popup-say-content-flex .popup-say-content-font[data-v-08249c72]{font-size:.9375rem;font-weight:700}.popup-say .popup-say-content .popup-say-three[data-v-08249c72]{position:absolute;left:5.40625rem;bottom:-1.21875rem;width:0;height:0;border-left:.9375rem solid transparent;border-right:.9375rem solid transparent;border-top:1.25rem solid #fff}.popup-delete[data-v-08249c72]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-delete .popup-delete-content[data-v-08249c72]{position:absolute;right:23.4375rem;display:flex;flex-direction:column;align-items:center;width:25rem;height:15.625rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-delete .popup-delete-content .popup-delete-img[data-v-08249c72]{width:7.8125rem;height:7.1875rem;margin-top:1.25rem;margin-bottom:.625rem}.popup-delete .popup-delete-content .popup-delete-text[data-v-08249c72]{font-size:.9375rem;color:#42474e}.popup-delete .popup-delete-content .popup-delete-button[data-v-08249c72]{display:flex;justify-content:space-around;height:2.8125rem;margin-top:.9375rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-left[data-v-08249c72]{background-color:#02abfe;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff;margin:0 .3125rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-right[data-v-08249c72]{background-color:#ced9e8;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;margin:0 .3125rem}.popup-overlay[data-v-08249c72]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;z-index:98}.popup-overlay .popup-overlay-content[data-v-08249c72]{position:absolute;display:flex;align-items:center;width:25rem;height:12.1875rem;background-color:#fff;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-overlay .popup-overlay-content .popup-overlay-content-left[data-v-08249c72]{height:100%;width:10.9375rem;display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-img[data-v-08249c72]{width:8.75rem;height:7.5rem;margin-top:0}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-font[data-v-08249c72]{font-size:.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right[data-v-08249c72]{height:100%;width:14.0625rem;position:relative}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-font[data-v-08249c72]{font-size:1.875rem;margin-top:2.5rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-text[data-v-08249c72]{margin-left:.3125rem;font-size:1rem;width:12.5rem;margin-bottom:1.5625rem;line-height:1.09375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richang[data-v-08249c72]{background-color:#ffc363;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richangnot[data-v-08249c72]{background-color:#7b61ff;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem;color:#fff}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-crush[data-v-08249c72]{position:absolute;top:.625rem;right:.625rem;width:2.1875rem;height:2.1875rem;animation:shake-08249c72 .5s 3}.popup-song[data-v-08249c72]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-song .popup-song-contain[data-v-08249c72]{position:absolute;right:14.0625rem;width:40.5rem;background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.7);border:.0625rem solid #fff;background-blend-mode:screen;border-radius:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-song .popup-song-contain .shu-container-left[data-v-08249c72]{display:flex;margin-top:2.1875rem;margin-bottom:.625rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-gun[data-v-08249c72]{margin-top:.15625rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-font[data-v-08249c72]{font-size:1.09375rem;font-weight:700}.popup-song-father[data-v-08249c72]{position:relative}.popup-song-father .shu-up-img[data-v-08249c72]{position:absolute;top:-2.1875rem;left:9.53125rem;width:21.875rem;height:2.5rem}.popup-song-father .shu-up-font[data-v-08249c72]{position:absolute;top:-1.5625rem;left:12.1875rem;display:flex;color:#ff5a00}.popup-song-father .arrayindex[data-v-08249c72]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem;margin-bottom:1.875rem}.popup-song-father .arrayindex .arrayindex-one[data-v-08249c72]{width:8.90625rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .arrayindex .arrayindex-one-target[data-v-08249c72]{width:8.90625rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .secondarrayindex[data-v-08249c72]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem;margin-bottom:1.875rem}.popup-song-father .secondarrayindex .arrayindex-one[data-v-08249c72]{width:11.875rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .secondarrayindex .arrayindex-one-target[data-v-08249c72]{width:11.875rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.ri-img[data-v-08249c72]{position:absolute;top:-.125rem;right:-.125rem;width:1.875rem;height:1.875rem}.time-father[data-v-08249c72]{display:flex;width:100%;flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem}.time-father .time-one[data-v-08249c72]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-target[data-v-08249c72]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-hui[data-v-08249c72]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#c2c9d3;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.items-card[data-v-08249c72]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center}.items-card-target[data-v-08249c72]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center;color:#369fef;background:linear-gradient(to right,rgba(54,159,239,0),rgba(54,159,239,.5),rgba(54,159,239,0))}.button-father[data-v-08249c72]{height:6.25rem;width:calc(100%-2.5rem);display:flex;justify-content:center;align-items:center;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem;border-top:.03125rem solid #e6e6e6}.button-father .button-father-right[data-v-08249c72]{background:linear-gradient(to right,#00c9ff,#0076ff);width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.button-father .button-father-wrong[data-v-08249c72]{background-color:#c2c9d3;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center}.month-father[data-v-08249c72]{display:flex;width:calc(100% - 1.875rem);flex-wrap:wrap;margin:.625rem .9375rem .9375rem}.month-father .month-one[data-v-08249c72]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.month-father .month-one-target[data-v-08249c72]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father[data-v-08249c72]{display:flex;width:100%;flex-wrap:wrap;margin:.625rem .9375rem .9375rem}.week-father .week-one[data-v-08249c72]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father .week-one-target[data-v-08249c72]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.radio-father[data-v-08249c72]{display:flex;width:100%;flex-wrap:wrap;margin-left:2.34375rem;margin-right:.9375rem}.radio-father .radio-circle[data-v-08249c72]{margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid black;background-color:transparent}.radio-father .radio-circle-target[data-v-08249c72]{position:relative;margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-father .radio-circle-target[data-v-08249c72]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.625rem;height:.625rem;background-color:#02abfe;border-radius:50%}.radio-father .radio-font[data-v-08249c72]{margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.radio-father .radio-font-target[data-v-08249c72]{color:#02abfe;margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.title-time-border[data-v-08249c72]{margin-top:.125rem;margin-left:.125rem;width:calc(100% - .25rem);height:calc(100% - .25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column}.title-time-border-red[data-v-08249c72]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,red,red) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,red,red) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom right / .25rem 1.875rem no-repeat}.title-time-border-big[data-v-08249c72],.title-time-border-big-top[data-v-08249c72]{transform:scale(1.3);transform-origin:top;border-top:0 solid #fff;transition:transform .5s ease-out,opacity .5s ease-out;z-index:999;display:flex;justify-content:center;align-items:center;height:7.8125rem;width:100%;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.title-time-border-blue[data-v-08249c72]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,#0184db,#0184db) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,#0184db,#0184db) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom right / .25rem 1.875rem no-repeat}.title-time-border-yellow[data-v-08249c72]{margin:.3125rem;border:.0625rem solid transparent;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;background-color:#fff;flex-direction:column}.title-time-border-yellow-active-transparent[data-v-08249c72]{margin:.3125rem;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;background-color:#fff}.title-time-border-yellow-active[data-v-08249c72]{margin:.3125rem;border:.03125rem solid #dae8fa;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-08249c72 .8s infinite;background-color:#fff}.title-time-border-pouple-active-transparent[data-v-08249c72]{margin:.3125rem;border:.125rem dashed #7B61FF;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;background-color:#fff}.title-time-border-pouple[data-v-08249c72]{margin:.3125rem;border:.03125rem solid #dae8fa;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;background-color:#fff}.title-time-border-pouple-active[data-v-08249c72]{margin:.3125rem;border:.03125rem solid #dae8fa;background-color:#fff;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-08249c72 1s infinite}.down-icons[data-v-08249c72]{margin-top:.53125rem;width:100%;height:1.875rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-08249c72]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.super-end-items-img-father[data-v-08249c72]{border-radius:50%;display:flex;justify-content:center;align-items:center;text-align:center;flex-direction:column}.super-end-items-img-father-active[data-v-08249c72]{text-align:center;border-radius:50%;display:flex;justify-content:center;align-items:center;flex-direction:column;animation:shake-08249c72 .5s infinite}@keyframes shake-08249c72{0%{transform:rotate(-10deg)}25%{transform:rotate(10deg)}50%{transform:rotate(-10deg)}75%{transform:rotate(10deg)}to{transform:rotate(-10deg)}}.super-end-items-father-close-father[data-v-08249c72]{width:1.25rem;height:1.25rem;border-radius:50%;display:flex;background-color:#0184db;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;color:#fff}@keyframes shakesmall-08249c72{0%{transform:rotate(-2deg)}25%{transform:rotate(2deg)}50%{transform:rotate(-2deg)}75%{transform:rotate(2deg)}to{transform:rotate(-2deg)}}.boom-father[data-v-08249c72]{position:absolute;top:6.875rem;left:.96875rem;width:1.875rem;height:37.8125rem;margin-top:.3125rem}.doctorsay-container-card-font-dark[data-v-08249c72]{font-size:.78125rem;color:#369fef;margin-top:.625rem}.boom[data-v-08249c72]{height:39.6875rem;display:flex;flex-direction:column;overflow:hidden;z-index:0}.boom .boom-son[data-v-08249c72]{height:7.8125rem;width:1.875rem;font-size:.9375rem;display:flex;justify-content:center;align-items:center;text-align:center;z-index:10;font-size:.78125rem;color:#a9acb1}.boom .boom-son .boom-text[data-v-08249c72]{width:1.25rem;height:1.25rem;border:.03125rem solid #A9ACB1;border-radius:50%;display:flex;justify-content:center;align-items:center;z-index:1;background-color:#eff0f4}.boom .boom-son-target[data-v-08249c72]{height:7.8125rem;width:1.875rem;font-size:.9375rem;display:flex;justify-content:center;align-items:center;text-align:center;z-index:10;font-weight:700;font-size:.78125rem;color:#a9acb1;background:linear-gradient(to bottom,#ff8a00,#eceaff)}.popup-share[data-v-08249c72]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4);z-index:999}.popup-share .share-other[data-v-08249c72]{z-index:1;width:100%;height:100%}.popup-share .share-title[data-v-08249c72]{padding-left:1.5625rem;height:4.6875rem;display:flex;align-items:center}.popup-share .share-others[data-v-08249c72]{display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-share .share-others .other-img[data-v-08249c72]{width:4.6875rem;height:4.6875rem;margin-left:3.125rem}.popup-share .popup-share-content[data-v-08249c72]{position:absolute;display:flex;flex-direction:column;width:25rem;height:14.0625rem;background-color:#fff;border-radius:.9375rem;transition:opacity .4s ease}.popup-share .popup-share-content .popup-share-title[data-v-08249c72]{margin:.9375rem;font-size:1.25rem;position:relative}.popup-share .popup-share-content .popup-share-title .popup-share-img[data-v-08249c72]{position:absolute;top:0;right:0;width:6.25rem;height:6.25rem}.popup-share .popup-share-content .popup-share-upcontent[data-v-08249c72]{margin:0 .9375rem;display:flex;justify-content:space-between}.popup-share .popup-share-content .popup-share-upcontent .popup-share-font[data-v-08249c72]{font-size:1.09375rem;color:gray}.popup-share .popup-share-content .popup-share-gray[data-v-08249c72]{background-color:#d3d3d3;width:calc(100% - 1.875rem);height:.0625rem;margin:3.4375rem .9375rem 0}.popup-share .popup-share-content .popup-share-downcontent[data-v-08249c72]{display:flex;justify-content:space-between;align-items:center;height:100%;margin:0 .9375rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-img[data-v-08249c72]{width:2.1875rem;height:2.1875rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-font[data-v-08249c72]{font-size:.84375rem;margin-left:.625rem}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-left[data-v-08249c72]{display:flex;align-items:center}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-button[data-v-08249c72]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.46875rem .9375rem;border-radius:.625rem;font-size:1rem}.tags-father[data-v-08249c72]{display:flex;flex-direction:column;justify-content:center;margin:.3125rem .4375rem .3125rem .9375rem;align-items:center;width:3.125rem;height:3.4375rem}.tags-father .tags-font[data-v-08249c72]{font-size:.625rem}.tags-img[data-v-08249c72]{width:1.5625rem;height:1.5625rem;margin-bottom:.3125rem}.right-container-title-nav[data-v-08249c72]{margin-top:1.875rem;display:flex;align-items:center;height:1.875rem;position:relative;font-size:.875rem}.right-container-title-nav .new-weight[data-v-08249c72]{margin-left:.9375rem;font-weight:600}.right-container-title-nav .right-icons[data-v-08249c72]{position:absolute;right:0;top:0;display:flex;align-items:center;margin-top:.3125rem}.right-container-title-nav .doctorsay-container-share[data-v-08249c72]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-left:.3125rem}.right-container-title-nav .doctorsay-container-juzhen[data-v-08249c72]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin:0 .625rem}.balck-icon[data-v-08249c72]{width:1.5625rem;height:1.5625rem;margin-top:.3125rem;margin-right:.625rem;border-radius:50%}.white-button[data-v-08249c72]{width:5rem;height:2.1875rem;border-radius:1.25rem;background-color:#e6e7eb;margin-left:.625rem;margin-top:.3125rem;display:flex;justify-content:center;align-items:center}.white-button .white-img[data-v-08249c72]{width:1.09375rem;height:1.09375rem;margin-right:.3125rem}.left-top[data-v-08249c72]{border-top-left-radius:0!important}.right-top[data-v-08249c72]{border-top-right-radius:0!important}.left-bottom[data-v-08249c72]{border-bottom-left-radius:0!important}.right-bottom[data-v-08249c72]{border-bottom-right-radius:0!important}.mark[data-v-08249c72]{font-size:.90625rem;position:relative}.marknone[data-v-08249c72]{font-size:.90625rem;color:#999;display:flex;margin-top:.15625rem}.tri-down[data-v-08249c72]{width:0;height:0;border-left:.3125rem solid transparent;border-right:.3125rem solid transparent;border-top:.54125rem solid #999;margin:0 0 0 .46875rem}.mark-bgc[data-v-08249c72]{position:absolute;top:1.5625rem;left:0;width:14.0625rem;background-color:#fff;z-index:999;border-radius:.9375rem;padding-bottom:.9375rem;transition:opacity .3s ease}.blue-button[data-v-08249c72]{margin-top:1.875rem;width:4.6875rem;height:2.1875rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#007cff;font-size:.9375rem;background:linear-gradient(to bottom,#e7f4ff,#c5e5ff);border:.0625rem solid #9AD1FF}.zerotarget[data-v-08249c72]{--color: #99C9FD;--thick: 2px;--radius: 1.5625rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}.firsttarget[data-v-08249c72]{--color: #99C9FD;--thick: 2px;--radius: 1.5625rem;--outline-offset: .3125rem;border-radius:var(--radius);animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0;z-index:999}.secondtarget[data-v-08249c72]{--color: #99C9FD;--thick: 2px;--radius: .3125rem;--outline-offset: 0;border-radius:var(--radius);animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0;z-index:999}.xian-bian[data-v-08249c72]{height:100%;position:absolute;top:0;left:0;z-index:999;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1}.menus-father[data-v-8ad00f91]{margin-top:1.5625rem;width:100%}.menus-father .menu[data-v-8ad00f91]{height:3.4375rem;width:8.75rem;border-radius:1.875rem;display:flex;justify-content:center;align-items:center;margin:1.40625rem 0 1.40625rem .9375rem}.backgroundContainer[data-v-8ad00f91]{display:flex;position:relative;width:100%;height:100vh;background-color:#eff0f4;overflow:hidden;z-index:12}.darkbackgroundContainer[data-v-8ad00f91]{display:flex;position:relative;width:100%;height:100vh;background-image:url(../../static/index/background.png);background-size:cover;background-position:center center;overflow:hidden;z-index:11}.move-font[data-v-8ad00f91]{position:absolute;z-index:10;pointer-events:none;background-color:#c9e8ff;border-radius:.625rem;border:.0625rem solid #fff;width:6.875rem;height:3.125rem;display:flex;justify-content:center;align-items:center;text-align:center;font-size:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);will-change:transform}.left-container[data-v-8ad00f91]{width:13.125rem;height:100%}.left-container .blue-circle-pos[data-v-8ad00f91]{position:relative}.left-container .blue-circle-pos .blue-circle[data-v-8ad00f91]{position:absolute;top:-1.5625rem;left:-2.125rem}.left-container .blue-circle-pos .blue-circle .blue-circle-size[data-v-8ad00f91]{width:5.3125rem;height:7.8125rem}.left-container .left-head[data-v-8ad00f91]{display:flex;justify-content:center;align-items:center;flex-direction:column}.left-container .left-head .left-head-img[data-v-8ad00f91]{width:3.75rem;height:3.75rem;margin-top:2.5rem}.left-container .left-head .left-head-font[data-v-8ad00f91]{font-weight:700;font-size:1rem}.left-container .left-head .left-head-font-dark[data-v-8ad00f91]{font-weight:700;font-size:1.25rem;background:linear-gradient(to right,#ebf4ff,#adc4e0);-webkit-background-clip:text;color:transparent}.left-container .left-img-container[data-v-8ad00f91]{display:flex;justify-content:center;align-items:center;flex-direction:column}.left-container .left-img-container .left-img[data-v-8ad00f91]{width:2.90625rem;height:2.90625rem;margin:1.5625rem 0;z-index:100}.title-time-border-yellow[data-v-8ad00f91]{width:7.96875rem;height:5.90625rem;margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#fff1db,#ffe2b2);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;position:absolute;z-index:10}.title-time-border-pouple[data-v-8ad00f91]{width:7.96875rem;height:5.90625rem;margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;position:absolute;z-index:10}.title-time[data-v-8ad00f91]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-8ad00f91]{font-size:1rem;margin-left:.84375rem;margin-top:.375rem}.title-time .title-time-button[data-v-8ad00f91]{position:absolute;top:-.15625rem;right:0;width:2.1875rem;height:2.1875rem}.title-time .title-time-font[data-v-8ad00f91]{position:absolute;top:.21875rem;right:.15625rem;font-size:.71875rem;color:#fff}.down-icons[data-v-8ad00f91]{margin-top:.625rem;width:100%;height:1.5625rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-8ad00f91]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.target[data-v-8ad00f91]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-8ad00f91 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}@keyframes scalePulse-8ad00f91{0%{transform:scale(1)}25%{transform:scale(.94)}65%{transform:scale(1.08)}to{transform:scale(1)}}
diff --git a/unpackage/dist/build/app-plus/pages/camera.js b/unpackage/dist/build/app-plus/pages/camera.js
index 5224c96..f1f58bb 100644
--- a/unpackage/dist/build/app-plus/pages/camera.js
+++ b/unpackage/dist/build/app-plus/pages/camera.js
@@ -29,4 +29,4 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
};
-(()=>{var $=Object.create;var p=Object.defineProperty;var _=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var R=Object.getPrototypeOf,T=Object.prototype.hasOwnProperty;var S=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var w=(e,t,o,s)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of k(t))!T.call(e,i)&&i!==o&&p(e,i,{get:()=>t[i],enumerable:!(s=_(t,i))||s.enumerable});return e};var m=(e,t,o)=>(o=e!=null?$(R(e)):{},w(t||!e||!e.__esModule?p(o,"default",{value:e,enumerable:!0}):o,e));var u=S((O,d)=>{d.exports=Vue});var b=m(u());function h(e){return weex.requireModule(e)}function n(e,t,...o){uni.__log__?uni.__log__(e,t,...o):console[e].apply(console,[...o,t])}var r=m(u());var f=(e,t)=>{let o=e.__vccOpts||e;for(let[s,i]of t)o[s]=i;return o};var v={"center-column":{"":{width:600,height:450,borderRadius:30,overflow:"hidden"}}},q={data(){return{phoneNumber:"1234567890",isAlarming:!1,isRecording:!1,isTalking:!1,_pendingRequests:{snapshot:[],record:[],talk:[]}}},onLoad(){let e=h&&h("globalEvent");e&&e.addEventListener&&e.addEventListener("myEvent",t=>{n("log","at pages/camera.nvue:39","myEvent",t)}),uni.$on("monitor:doSnapshot",this.doSnapshot),uni.$on("monitor:startRecord",this.doStartRecord),uni.$on("monitor:stopRecord",this.doStopRecord),uni.$on("monitor:openTalk",this.doOpenTalk),uni.$on("monitor:stopTalk",this.doStopTalk),uni.$on("monitor:switchDisplay",t=>this.switchDisplay(t)),uni.$on("monitor:startAlarm",this.startAlarm),uni.$on("monitor:stopAlarm",this.stopAlarm),uni.$on("monitor:flipImage",t=>this.flipImage(t)),uni.$on("monitor:resumeOrPause",this.resumeOrPause),uni.$on("monitor:changeQuality",this.changeQuality),uni.$on("monitor:toggleVolume",this.toggleVolume),uni.$on("monitor:test",this.test)},onUnload(){uni.$off("monitor:doSnapshot",this.doSnapshot),uni.$off("monitor:startRecord",this.doStartRecord),uni.$off("monitor:stopRecord",this.doStopRecord),uni.$off("monitor:openTalk",this.doOpenTalk),uni.$off("monitor:stopTalk",this.doStopTalk),uni.$off("monitor:switchDisplay",e=>this.switchDisplay(e)),uni.$off("monitor:startAlarm",this.startAlarm),uni.$off("monitor:stopAlarm",this.stopAlarm),uni.$off("monitor:flipImage",e=>this.flipImage(e)),uni.$off("monitor:resumeOrPause",this.resumeOrPause),uni.$off("monitor:changeQuality",this.changeQuality),uni.$off("monitor:toggleVolume",this.toggleVolume),uni.$off("monitor:test",this.test)},methods:{handleTelEvent(e){n("log","at pages/camera.nvue:79","Tel event detail:",e.detail)},switchDisplay(e){n("log","at pages/camera.nvue:84","zzzzz",e),this.$refs.monitor&&this.$refs.monitor.switchDisplayModeFragment(e)},startAlarm(){this.isAlarming=!0,this.$refs.monitor.startOrStopManualAlarm(this.isAlarming,e=>{n("log","at pages/camera.nvue:91","startAlarm callback:",e)})},stopAlarm(){this.isAlarming=!1,this.$refs.monitor.startOrStopManualAlarm(this.isAlarming,e=>{n("log","at pages/camera.nvue:97","stopAlarm callback:",e)})},flipImage(e){this.$refs.monitor.changeImageSwitch(e,t=>{n("log","at pages/camera.nvue:103","flipImage callback:",t)})},resumeOrPause(){this.$refs.monitor.resumeOrPause&&this.$refs.monitor.resumeOrPause()},changeQuality(){this.$refs.monitor.changeQuality&&this.$refs.monitor.changeQuality()},toggleVolume(){this.$refs.monitor.toggleVolume&&this.$refs.monitor.toggleVolume()},test(){this.$refs.monitor&&this.$refs.monitor.test&&this.$refs.monitor.test()},doSnapshot(e={}){if(!this.$refs.monitor||!this.$refs.monitor.snapShot){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 snapShot()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"snapShot_not_supported"});return}e.reqId&&this._pendingRequests.snapshot.push(e.reqId);try{this.$refs.monitor.snapShot(t=>{n("log","at pages/camera.nvue:143","snapShot callback:",t),this._handleSnapshotResultFromNative(t,e.reqId)}),uni.showToast({title:"\u6B63\u5728\u622A\u5C4F...",icon:"none",duration:800})}catch(t){n("error","at pages/camera.nvue:148","snapShot \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"snapShot \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"snapShot_call_failed",detail:String(t)})}},doStartRecord(e={}){if(!this.$refs.monitor||!this.$refs.monitor.startRecord){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 startRecord()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"startRecord_not_supported"});return}try{this.$refs.monitor.startRecord(t=>{n("log","at pages/camera.nvue:168","startRecord callback:",t),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!0,res:t})}),this.isRecording=!0,uni.showToast({title:"\u5F55\u5C4F\u5DF2\u5F00\u59CB",icon:"none"})}catch(t){n("error","at pages/camera.nvue:177","startRecord \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"startRecord \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"startRecord_call_failed",detail:String(t)})}},doStopRecord(e={}){if(!this.$refs.monitor||!this.$refs.monitor.stopRecord){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 stopRecord()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"stopRecord_not_supported"});return}e.reqId&&this._pendingRequests.record.push(e.reqId);try{this.$refs.monitor.stopRecord(t=>{n("log","at pages/camera.nvue:203","stopRecord callback:",t),this._handleRecordResultFromNative(t,e.reqId)})}catch(t){n("error","at pages/camera.nvue:208","stopRecord \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"stopRecord \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"stopRecord_call_failed",detail:String(t)})}},doOpenTalk(e={}){if(!this.$refs.monitor||!this.$refs.monitor.openTalk){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 openTalk()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"openTalk_not_supported"});return}e.reqId&&this._pendingRequests.talk.push(e.reqId);try{this.$refs.monitor.openTalk(t=>{n("log","at pages/camera.nvue:232","openTalk callback:",t),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!0,res:t})}),this.isTalking=!0,uni.showToast({title:"\u5C1D\u8BD5\u5EFA\u7ACB\u5BF9\u8BB2\u8FDE\u63A5...",icon:"none"})}catch(t){n("error","at pages/camera.nvue:241","openTalk \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"openTalk \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"openTalk_call_failed",detail:String(t)})}},doStopTalk(e={}){if(!this.$refs.monitor||!this.$refs.monitor.stopTalk){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 stopTalk()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"stopTalk_not_supported"});return}try{this.$refs.monitor.stopTalk(t=>{n("log","at pages/camera.nvue:261","stopTalk callback:",t),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!0,res:t})}),this.isTalking=!1}catch(t){n("error","at pages/camera.nvue:268","stopTalk \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"stopTalk \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"stopTalk_call_failed",detail:String(t)})}},handleSnapShotEvent(e){let t=e&&e.detail?e.detail:e;n("log","at pages/camera.nvue:281","onSnapShot event:",t),this._handleSnapshotResultFromNative(t)},handleRecordEvent(e){let t=e&&e.detail?e.detail:e;n("log","at pages/camera.nvue:289","onRecord event:",t),this._handleRecordResultFromNative(t)},handleTalkEvent(e){let t=e&&e.detail?e.detail:e;n("log","at pages/camera.nvue:296","onTalkStatus event:",t);let o=t&&t.talkStatus,s=t&&t.tips;if(uni.$emit("monitor:talk:status",t),this._pendingRequests.talk&&this._pendingRequests.talk.length)for(;this._pendingRequests.talk.length;){let i=this._pendingRequests.talk.shift();uni.$emit(`monitor:response:${i}`,{ok:!0,payload:t})}switch((o||"").toLowerCase()){case"loading":uni.showToast({title:s||"\u5BF9\u8BB2\u8FDE\u63A5\u4E2D...",icon:"none"}),this.isTalking=!0;break;case"playing":uni.showToast({title:s||"\u5BF9\u8BB2\u5DF2\u8FDE\u63A5",icon:"none"}),this.isTalking=!0;break;case"stopped":uni.showToast({title:s||"\u5BF9\u8BB2\u5DF2\u505C\u6B62",icon:"none"}),this.isTalking=!1;break;case"failed":uni.showToast({title:s||"\u5BF9\u8BB2\u5931\u8D25",icon:"none"}),this.isTalking=!1;break;default:uni.showToast({title:s||"\u5BF9\u8BB2\u72B6\u6001: "+(o||"unknown"),icon:"none"});break}},_handleSnapshotResultFromNative(e,t=null){if(!e){uni.showToast({title:"\u622A\u56FE\u6CA1\u6709\u8FD4\u56DE\u6570\u636E",icon:"none"}),t&&uni.$emit(`monitor:response:${t}`,{ok:!1,error:"no_data"});return}let o=e;if(e.detail&&(o=e.detail),n("log","at pages/camera.nvue:349","snapshot payload normalized:",o),t&&uni.$emit(`monitor:response:${t}`,{ok:!!o.snapShotResult,payload:o}),!t&&this._pendingRequests.snapshot&&this._pendingRequests.snapshot.length)for(;this._pendingRequests.snapshot.length;){let s=this._pendingRequests.snapshot.shift();uni.$emit(`monitor:response:${s}`,{ok:!!o.snapShotResult,payload:o})}if(uni.$emit("monitor:snapshot:done",o),o.snapShotResult===!0||o.snapShotResult==="true"){let s=o.snapShotUrl||o.snapShotPath||o.url;uni.showToast({title:"\u622A\u56FE\u6210\u529F",icon:"success",duration:1200}),s&&uni.previewImage({urls:[s]})}else{let s=o.snapShotErrorCode||o.error||"unknown";uni.showToast({title:"\u622A\u56FE\u5931\u8D25: "+s,icon:"none",duration:2e3}),n("warn","at pages/camera.nvue:376","snapshot failed reason:",s,o)}},_handleRecordResultFromNative(e,t=null){if(!e){uni.showToast({title:"\u5F55\u5C4F\u6CA1\u6709\u8FD4\u56DE\u6570\u636E",icon:"none"}),this.isRecording=!1,t&&uni.$emit(`monitor:response:${t}`,{ok:!1,error:"no_data"});return}let o=e;if(e.detail&&(o=e.detail),n("log","at pages/camera.nvue:392","record payload normalized:",o),t&&uni.$emit(`monitor:response:${t}`,{ok:!!(o.recordUrl||o.snapShotResult),payload:o}),!t&&this._pendingRequests.record&&this._pendingRequests.record.length)for(;this._pendingRequests.record.length;){let s=this._pendingRequests.record.shift();uni.$emit(`monitor:response:${s}`,{ok:!!(o.recordUrl||o.snapShotResult),payload:o})}uni.$emit("monitor:record:done",o),o.recordUrl?(uni.showToast({title:"\u5F55\u5C4F\u5B8C\u6210",icon:"success",duration:1400}),this.isRecording=!1,n("log","at pages/camera.nvue:413","\u5F55\u5C4F\u5730\u5740\uFF1A",o.recordUrl)):o.recordFailedReason?(uni.showToast({title:"\u5F55\u5C4F\u5931\u8D25: "+o.recordFailedReason,icon:"none",duration:2e3}),this.isRecording=!1,n("warn","at pages/camera.nvue:417","record failed reason:",o.recordFailedReason)):(o.snapShotResult===!0&&uni.showToast({title:"\u5F55\u5C4F\u64CD\u4F5C\u5DF2\u5B8C\u6210\uFF08\u8FD4\u56DE\u672A\u77E5\uFF09",icon:"none"}),this.isRecording=!1)}}};function I(e,t,o,s,i,a){let g=(0,r.resolveComponent)("MonitorView");return(0,r.openBlock)(),(0,r.createElementBlock)("scroll-view",{scrollY:!0,showScrollbar:!0,enableBackToTop:!0,bubble:"true",style:{flexDirection:"column"}},[(0,r.createElementVNode)("div",{class:"center-column"},[(0,r.createVNode)(g,{ref:"monitor",init:"5",style:{width:"600px",height:"450px"},onOnTel:a.handleTelEvent,onOnSnapShot:a.handleSnapShotEvent,onOnRecord:a.handleRecordEvent,onOnTalkStatus:a.handleTalkEvent},null,8,["onOnTel","onOnSnapShot","onOnRecord","onOnTalkStatus"])])])}var l=f(q,[["render",I],["styles",[v]]]);var c=plus.webview.currentWebview();if(c){let e=parseInt(c.id),t="pages/camera",o={};try{o=JSON.parse(c.__query__)}catch(i){}l.mpType="page";let s=Vue.createPageApp(l,{$store:getApp({allowDefault:!0}).$store,__pageId:e,__pagePath:t,__pageQuery:o});s.provide("__globalStyles",Vue.useCssStyles([...__uniConfig.styles,...l.styles||[]])),s.mount("#root")}})();
+(()=>{var f=Object.create;var h=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var $=Object.getOwnPropertyNames;var _=Object.getPrototypeOf,k=Object.prototype.hasOwnProperty;var T=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var R=(e,t,o,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of $(t))!k.call(e,i)&&i!==o&&h(e,i,{get:()=>t[i],enumerable:!(n=g(t,i))||n.enumerable});return e};var S=(e,t,o)=>(o=e!=null?f(_(e)):{},R(t||!e||!e.__esModule?h(o,"default",{value:e,enumerable:!0}):o,e));var p=T((O,c)=>{c.exports=Vue});var r=S(p());function m(e){return weex.requireModule(e)}function s(e,t,...o){uni.__log__?uni.__log__(e,t,...o):console[e].apply(console,[...o,t])}var w={"center-column":{"":{width:630,height:510,overflow:"hidden"}}},v=(e,t)=>{let o=e.__vccOpts||e;for(let[n,i]of t)o[n]=i;return o},q={data(){return{phoneNumber:"1234567890",isAlarming:!1,isRecording:!1,isTalking:!1,_pendingRequests:{snapshot:[],record:[],talk:[]},suo:!0}},onLoad(){let e=m&&m("globalEvent");e&&e.addEventListener&&e.addEventListener("myEvent",t=>{s("log","at pages/camera.nvue:40",t),t.recordUrl&&uni.showToast({title:"\u5F55\u5C4F\u6210\u529F",icon:"success",duration:1500}),t.snapShotUrl&&uni.showToast({title:"\u622A\u5C4F\u6210\u529F",icon:"success",duration:1500}),this.suo&&t.onVolumeChange&&(t.onVolumeChange&&this.toggleVolume(),this.suo=!1)}),uni.$on("monitor:doSnapshot",this.doSnapshot),uni.$on("monitor:startRecord",this.doStartRecord),uni.$on("monitor:stopRecord",this.doStopRecord),uni.$on("monitor:openTalk",this.doOpenTalk),uni.$on("monitor:stopTalk",this.doStopTalk),uni.$on("monitor:switchDisplay",t=>this.switchDisplay(t)),uni.$on("monitor:startAlarm",this.startAlarm),uni.$on("monitor:stopAlarm",this.stopAlarm),uni.$on("monitor:flipImage",t=>this.flipImage(t)),uni.$on("monitor:resumeOrPause",this.resumeOrPause),uni.$on("monitor:changeQuality",this.changeQuality),uni.$on("monitor:toggleVolume",this.toggleVolume),uni.$on("monitor:test",this.test)},onUnload(){uni.$off("monitor:doSnapshot",this.doSnapshot),uni.$off("monitor:startRecord",this.doStartRecord),uni.$off("monitor:stopRecord",this.doStopRecord),uni.$off("monitor:openTalk",this.doOpenTalk),uni.$off("monitor:stopTalk",this.doStopTalk),uni.$off("monitor:switchDisplay",e=>this.switchDisplay(e)),uni.$off("monitor:startAlarm",this.startAlarm),uni.$off("monitor:stopAlarm",this.stopAlarm),uni.$off("monitor:flipImage",e=>this.flipImage(e)),uni.$off("monitor:resumeOrPause",this.resumeOrPause),uni.$off("monitor:changeQuality",this.changeQuality),uni.$off("monitor:toggleVolume",this.toggleVolume),uni.$off("monitor:test",this.test)},methods:{handleTelEvent(e){s("log","at pages/camera.nvue:102","Tel event detail:",e.detail)},switchDisplay(e){s("log","at pages/camera.nvue:107","zzzzz",e),this.$refs.monitor&&this.$refs.monitor.switchDisplayModeFragment(e)},startAlarm(){this.isAlarming=!0,this.$refs.monitor.startOrStopManualAlarm(this.isAlarming,e=>{s("log","at pages/camera.nvue:114","startAlarm callback:",e)})},stopAlarm(){this.isAlarming=!1,this.$refs.monitor.startOrStopManualAlarm(this.isAlarming,e=>{s("log","at pages/camera.nvue:120","stopAlarm callback:",e)})},flipImage(e){this.$refs.monitor.changeImageSwitch(e,t=>{s("log","at pages/camera.nvue:126","flipImage callback:",t)})},resumeOrPause(){this.$refs.monitor.resumeOrPause&&this.$refs.monitor.resumeOrPause()},changeQuality(){this.$refs.monitor.changeQuality&&this.$refs.monitor.changeQuality()},toggleVolume(){this.$refs.monitor.toggleVolume&&this.$refs.monitor.toggleVolume()},test(){this.$refs.monitor&&this.$refs.monitor.test&&this.$refs.monitor.test()},doSnapshot(e={}){if(!this.$refs.monitor||!this.$refs.monitor.snapShot){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 snapShot()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"snapShot_not_supported"});return}e.reqId&&this._pendingRequests.snapshot.push(e.reqId);try{this.$refs.monitor.snapShot(t=>{s("log","at pages/camera.nvue:166","snapShot callback:",t),this._handleSnapshotResultFromNative(t,e.reqId)}),uni.showToast({title:"\u6B63\u5728\u622A\u5C4F...",icon:"none",duration:800})}catch(t){s("error","at pages/camera.nvue:171","snapShot \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"snapShot \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"snapShot_call_failed",detail:String(t)})}},doStartRecord(e={}){if(!this.$refs.monitor||!this.$refs.monitor.startRecord){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 startRecord()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"startRecord_not_supported"});return}try{this.$refs.monitor.startRecord(t=>{s("log","at pages/camera.nvue:191","startRecord callback:",t),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!0,res:t})}),this.isRecording=!0,uni.showToast({title:"\u5F55\u5C4F\u5DF2\u5F00\u59CB",icon:"none"})}catch(t){s("error","at pages/camera.nvue:200","startRecord \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"startRecord \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"startRecord_call_failed",detail:String(t)})}},doStopRecord(e={}){if(!this.$refs.monitor||!this.$refs.monitor.stopRecord){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 stopRecord()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"stopRecord_not_supported"});return}e.reqId&&this._pendingRequests.record.push(e.reqId);try{this.$refs.monitor.stopRecord(t=>{s("log","at pages/camera.nvue:226","stopRecord callback:",t),this._handleRecordResultFromNative(t,e.reqId)})}catch(t){s("error","at pages/camera.nvue:231","stopRecord \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"stopRecord \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"stopRecord_call_failed",detail:String(t)})}},doOpenTalk(e={}){if(!this.$refs.monitor||!this.$refs.monitor.openTalk){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 openTalk()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"openTalk_not_supported"});return}e.reqId&&this._pendingRequests.talk.push(e.reqId);try{this.$refs.monitor.openTalk(t=>{s("log","at pages/camera.nvue:255","openTalk callback:",t),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!0,res:t})}),this.isTalking=!0,uni.showToast({title:"\u5C1D\u8BD5\u5EFA\u7ACB\u5BF9\u8BB2\u8FDE\u63A5...",icon:"none"})}catch(t){s("error","at pages/camera.nvue:264","openTalk \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"openTalk \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"openTalk_call_failed",detail:String(t)})}},doStopTalk(e={}){if(!this.$refs.monitor||!this.$refs.monitor.stopTalk){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 stopTalk()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"stopTalk_not_supported"});return}try{this.$refs.monitor.stopTalk(t=>{s("log","at pages/camera.nvue:284","stopTalk callback:",t),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!0,res:t})}),this.isTalking=!1}catch(t){s("error","at pages/camera.nvue:291","stopTalk \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"stopTalk \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"stopTalk_call_failed",detail:String(t)})}},handleSnapShotEvent(e){let t=e&&e.detail?e.detail:e;s("log","at pages/camera.nvue:304","onSnapShot event:",t),this._handleSnapshotResultFromNative(t)},handleRecordEvent(e){let t=e&&e.detail?e.detail:e;s("log","at pages/camera.nvue:312","onRecord event:",t),this._handleRecordResultFromNative(t)},handleTalkEvent(e){let t=e&&e.detail?e.detail:e;s("log","at pages/camera.nvue:319","onTalkStatus event:",t);let o=t&&t.talkStatus,n=t&&t.tips;if(uni.$emit("monitor:talk:status",t),this._pendingRequests.talk&&this._pendingRequests.talk.length)for(;this._pendingRequests.talk.length;){let i=this._pendingRequests.talk.shift();uni.$emit(`monitor:response:${i}`,{ok:!0,payload:t})}switch((o||"").toLowerCase()){case"loading":uni.showToast({title:n||"\u5BF9\u8BB2\u8FDE\u63A5\u4E2D...",icon:"none"}),this.isTalking=!0;break;case"playing":uni.showToast({title:n||"\u5BF9\u8BB2\u5DF2\u8FDE\u63A5",icon:"none"}),this.isTalking=!0;break;case"stopped":uni.showToast({title:n||"\u5BF9\u8BB2\u5DF2\u505C\u6B62",icon:"none"}),this.isTalking=!1;break;case"failed":uni.showToast({title:n||"\u5BF9\u8BB2\u5931\u8D25",icon:"none"}),this.isTalking=!1;break;default:uni.showToast({title:n||"\u5BF9\u8BB2\u72B6\u6001: "+(o||"unknown"),icon:"none"});break}},_handleSnapshotResultFromNative(e,t=null){if(!e){uni.showToast({title:"\u622A\u56FE\u6CA1\u6709\u8FD4\u56DE\u6570\u636E",icon:"none"}),t&&uni.$emit(`monitor:response:${t}`,{ok:!1,error:"no_data"});return}let o=e;if(e.detail&&(o=e.detail),s("log","at pages/camera.nvue:372","snapshot payload normalized:",o),t&&uni.$emit(`monitor:response:${t}`,{ok:!!o.snapShotResult,payload:o}),!t&&this._pendingRequests.snapshot&&this._pendingRequests.snapshot.length)for(;this._pendingRequests.snapshot.length;){let n=this._pendingRequests.snapshot.shift();uni.$emit(`monitor:response:${n}`,{ok:!!o.snapShotResult,payload:o})}if(uni.$emit("monitor:snapshot:done",o),o.snapShotResult===!0||o.snapShotResult==="true"){let n=o.snapShotUrl||o.snapShotPath||o.url;uni.showToast({title:"\u622A\u56FE\u6210\u529F",icon:"success",duration:1200}),n&&uni.previewImage({urls:[n]})}else{let n=o.snapShotErrorCode||o.error||"unknown";uni.showToast({title:"\u622A\u56FE\u5931\u8D25: "+n,icon:"none",duration:2e3}),s("warn","at pages/camera.nvue:399","snapshot failed reason:",n,o)}},_handleRecordResultFromNative(e,t=null){if(!e){uni.showToast({title:"\u5F55\u5C4F\u6CA1\u6709\u8FD4\u56DE\u6570\u636E",icon:"none"}),this.isRecording=!1,t&&uni.$emit(`monitor:response:${t}`,{ok:!1,error:"no_data"});return}let o=e;if(e.detail&&(o=e.detail),s("log","at pages/camera.nvue:415","record payload normalized:",o),t&&uni.$emit(`monitor:response:${t}`,{ok:!!(o.recordUrl||o.snapShotResult),payload:o}),!t&&this._pendingRequests.record&&this._pendingRequests.record.length)for(;this._pendingRequests.record.length;){let n=this._pendingRequests.record.shift();uni.$emit(`monitor:response:${n}`,{ok:!!(o.recordUrl||o.snapShotResult),payload:o})}uni.$emit("monitor:record:done",o),o.recordUrl?(uni.showToast({title:"\u5F55\u5C4F\u5B8C\u6210",icon:"success",duration:1400}),this.isRecording=!1,s("log","at pages/camera.nvue:436","\u5F55\u5C4F\u5730\u5740\uFF1A",o.recordUrl)):o.recordFailedReason?(uni.showToast({title:"\u5F55\u5C4F\u5931\u8D25: "+o.recordFailedReason,icon:"none",duration:2e3}),this.isRecording=!1,s("warn","at pages/camera.nvue:440","record failed reason:",o.recordFailedReason)):(o.snapShotResult===!0&&uni.showToast({title:"\u5F55\u5C4F\u64CD\u4F5C\u5DF2\u5B8C\u6210\uFF08\u8FD4\u56DE\u672A\u77E5\uFF09",icon:"none"}),this.isRecording=!1)}}};function I(e,t,o,n,i,a){let d=(0,r.resolveComponent)("MonitorView");return(0,r.openBlock)(),(0,r.createElementBlock)("scroll-view",{scrollY:!0,showScrollbar:!0,enableBackToTop:!0,bubble:"true",style:{flexDirection:"column"}},[(0,r.createElementVNode)("div",{class:"center-column"},[(0,r.createVNode)(d,{ref:"monitor",init:"5",style:{width:"630px",height:"510px"},onOnTel:a.handleTelEvent,onOnSnapShot:a.handleSnapShotEvent,onOnRecord:a.handleRecordEvent,onOnTalkStatus:a.handleTalkEvent},null,8,["onOnTel","onOnSnapShot","onOnRecord","onOnTalkStatus"])])])}var l=v(q,[["render",I],["styles",[w]]]);var u=plus.webview.currentWebview();if(u){let e=parseInt(u.id),t="pages/camera",o={};try{o=JSON.parse(u.__query__)}catch(i){}l.mpType="page";let n=Vue.createPageApp(l,{$store:getApp({allowDefault:!0}).$store,__pageId:e,__pagePath:t,__pageQuery:o});n.provide("__globalStyles",Vue.useCssStyles([...__uniConfig.styles,...l.styles||[]])),n.mount("#root")}})();
diff --git a/unpackage/dist/build/app-plus/pages/ceshianzhuo.js b/unpackage/dist/build/app-plus/pages/ceshianzhuo.js
deleted file mode 100644
index b82c469..0000000
--- a/unpackage/dist/build/app-plus/pages/ceshianzhuo.js
+++ /dev/null
@@ -1,32 +0,0 @@
-"use weex:vue";
-
-if (typeof Promise !== 'undefined' && !Promise.prototype.finally) {
- Promise.prototype.finally = function(callback) {
- const promise = this.constructor
- return this.then(
- value => promise.resolve(callback()).then(() => value),
- reason => promise.resolve(callback()).then(() => {
- throw reason
- })
- )
- }
-};
-
-if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
- const global = uni.requireGlobal()
- ArrayBuffer = global.ArrayBuffer
- Int8Array = global.Int8Array
- Uint8Array = global.Uint8Array
- Uint8ClampedArray = global.Uint8ClampedArray
- Int16Array = global.Int16Array
- Uint16Array = global.Uint16Array
- Int32Array = global.Int32Array
- Uint32Array = global.Uint32Array
- Float32Array = global.Float32Array
- Float64Array = global.Float64Array
- BigInt64Array = global.BigInt64Array
- BigUint64Array = global.BigUint64Array
-};
-
-
-(()=>{var w=Object.create;var f=Object.defineProperty;var v=Object.getOwnPropertyDescriptor;var _=Object.getOwnPropertyNames;var R=Object.getPrototypeOf,S=Object.prototype.hasOwnProperty;var y=(t,o)=>()=>(o||t((o={exports:{}}).exports,o),o.exports);var C=(t,o,a,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let r of _(o))!S.call(t,r)&&r!==a&&f(t,r,{get:()=>o[r],enumerable:!(l=v(o,r))||l.enumerable});return t};var g=(t,o,a)=>(a=t!=null?w(R(t)):{},C(o||!t||!t.__esModule?f(a,"default",{value:t,enumerable:!0}):a,t));var d=y((E,m)=>{m.exports=Vue});var $=g(d());function h(t){return weex.requireModule(t)}function s(t,o,...a){uni.__log__?uni.__log__(t,o,...a):console[t].apply(console,[...a,o])}var e=g(d());var k=(t,o)=>{let a=t.__vccOpts||t;for(let[l,r]of o)a[l]=r;return a};var z={"center-column":{"":{display:"flex",flexDirection:"column",alignItems:"center"}},"button-group":{"":{display:"flex",flexDirection:"row",flexWrap:"wrap",justifyContent:"center",marginTop:40,width:620}},button:{"":{marginTop:6,marginRight:6,marginBottom:6,marginLeft:6,paddingTop:8,paddingRight:12,paddingBottom:8,paddingLeft:12,minWidth:"120px",height:44,borderRadius:6,borderWidth:1,borderStyle:"solid",borderColor:"#dddddd",backgroundColor:"#ffffff"}}},x={data(){return{phoneNumber:"1234567890",isAlarming:!1,isRecording:!1,isTalking:!1}},onLoad(){let t=h&&h("globalEvent");t&&t.addEventListener&&t.addEventListener("myEvent",o=>{s("log","at pages/ceshianzhuo.nvue:73","myEvent",o)})},methods:{handleTelEvent(t){s("log","at pages/ceshianzhuo.nvue:80","Tel event detail:",t.detail)},switchDisplay(t){this.$refs.monitor&&this.$refs.monitor.switchDisplayModeFragment(t)},startAlarm(){this.isAlarming=!0,this.$refs.monitor.startOrStopManualAlarm(this.isAlarming,t=>{s("log","at pages/ceshianzhuo.nvue:91","startAlarm callback:",t)})},stopAlarm(){this.isAlarming=!1,this.$refs.monitor.startOrStopManualAlarm(this.isAlarming,t=>{s("log","at pages/ceshianzhuo.nvue:97","stopAlarm callback:",t)})},flipImage(t){this.$refs.monitor.changeImageSwitch(t,o=>{s("log","at pages/ceshianzhuo.nvue:103","flipImage callback:",o)})},resumeOrPause(){this.$refs.monitor.resumeOrPause&&this.$refs.monitor.resumeOrPause()},changeQuality(){this.$refs.monitor.changeQuality&&this.$refs.monitor.changeQuality()},test(){this.$refs.monitor&&this.$refs.monitor.test&&this.$refs.monitor.test()},doSnapshot(){if(!this.$refs.monitor||!this.$refs.monitor.snapShot){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 snapShot()",icon:"none"});return}try{this.$refs.monitor.snapShot(t=>{s("log","at pages/ceshianzhuo.nvue:134","snapShot callback:",t),this._handleSnapshotResultFromNative(t)}),uni.showToast({title:"\u6B63\u5728\u622A\u5C4F...",icon:"none",duration:800})}catch(t){s("error","at pages/ceshianzhuo.nvue:143","snapShot \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"snapShot \u8C03\u7528\u5931\u8D25",icon:"none"})}},doStartRecord(){if(!this.$refs.monitor||!this.$refs.monitor.startRecord){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 startRecord()",icon:"none"});return}try{this.$refs.monitor.startRecord(t=>{s("log","at pages/ceshianzhuo.nvue:163","startRecord callback:",t)}),this.isRecording=!0,uni.showToast({title:"\u5F55\u5C4F\u5DF2\u5F00\u59CB",icon:"none"})}catch(t){s("error","at pages/ceshianzhuo.nvue:171","startRecord \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"startRecord \u8C03\u7528\u5931\u8D25",icon:"none"})}},doStopRecord(){if(!this.$refs.monitor||!this.$refs.monitor.stopRecord){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 stopRecord()",icon:"none"});return}try{this.$refs.monitor.stopRecord(t=>{s("log","at pages/ceshianzhuo.nvue:191","stopRecord callback:",t),this._handleRecordResultFromNative(t)})}catch(t){s("error","at pages/ceshianzhuo.nvue:196","stopRecord \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"stopRecord \u8C03\u7528\u5931\u8D25",icon:"none"})}},doOpenTalk(){if(!this.$refs.monitor||!this.$refs.monitor.openTalk){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 openTalk()",icon:"none"});return}try{this.$refs.monitor.openTalk(t=>{s("log","at pages/ceshianzhuo.nvue:215","openTalk callback:",t)}),this.isTalking=!0,uni.showToast({title:"\u5C1D\u8BD5\u5EFA\u7ACB\u5BF9\u8BB2\u8FDE\u63A5...",icon:"none"})}catch(t){s("error","at pages/ceshianzhuo.nvue:225","openTalk \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"openTalk \u8C03\u7528\u5931\u8D25",icon:"none"})}},doStopTalk(){if(!this.$refs.monitor||!this.$refs.monitor.stopTalk){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 stopTalk()",icon:"none"});return}try{this.$refs.monitor.stopTalk(t=>{s("log","at pages/ceshianzhuo.nvue:244","stopTalk callback:",t)}),this.isTalking=!1}catch(t){s("error","at pages/ceshianzhuo.nvue:250","stopTalk \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"stopTalk \u8C03\u7528\u5931\u8D25",icon:"none"})}},handleSnapShotEvent(t){s("log","at pages/ceshianzhuo.nvue:263","onSnapShot event:",t&&t.detail?t.detail:t),this._handleSnapshotResultFromNative(t&&t.detail?t.detail:t)},handleRecordEvent(t){s("log","at pages/ceshianzhuo.nvue:270","onRecord event:",t&&t.detail?t.detail:t),this._handleRecordResultFromNative(t&&t.detail?t.detail:t)},handleTalkEvent(t){let o=t&&t.detail?t.detail:t;s("log","at pages/ceshianzhuo.nvue:278","onTalkStatus event:",o);let a=o&&o.talkStatus,l=o&&o.tips;switch((a||"").toLowerCase()){case"loading":uni.showToast({title:l||"\u5BF9\u8BB2\u8FDE\u63A5\u4E2D...",icon:"none"}),this.isTalking=!0;break;case"playing":uni.showToast({title:l||"\u5BF9\u8BB2\u5DF2\u8FDE\u63A5",icon:"none"}),this.isTalking=!0;break;case"stopped":uni.showToast({title:l||"\u5BF9\u8BB2\u5DF2\u505C\u6B62",icon:"none"}),this.isTalking=!1;break;case"failed":uni.showToast({title:l||"\u5BF9\u8BB2\u5931\u8D25",icon:"none"}),this.isTalking=!1;break;default:uni.showToast({title:l||"\u5BF9\u8BB2\u72B6\u6001: "+(a||"unknown"),icon:"none"});break}},_handleSnapshotResultFromNative(t){if(!t){uni.showToast({title:"\u622A\u56FE\u6CA1\u6709\u8FD4\u56DE\u6570\u636E",icon:"none"});return}let o=t;if(t.detail&&(o=t.detail),s("log","at pages/ceshianzhuo.nvue:337","snapshot payload normalized:",o),o.snapShotResult===!0||o.snapShotResult==="true"){let a=o.snapShotUrl||o.snapShotPath||o.url;uni.showToast({title:"\u622A\u56FE\u6210\u529F",icon:"success",duration:1200}),s("log","at pages/ceshianzhuo.nvue:345","\u622A\u56FE\u5730\u5740\uFF1A",a),a&&uni.previewImage({urls:[a]})}else{let a=o.snapShotErrorCode||o.error||"unknown";uni.showToast({title:"\u622A\u56FE\u5931\u8D25: "+a,icon:"none",duration:2e3}),s("warn","at pages/ceshianzhuo.nvue:360","snapshot failed reason:",a,o)}},_handleRecordResultFromNative(t){if(!t){uni.showToast({title:"\u5F55\u5C4F\u6CA1\u6709\u8FD4\u56DE\u6570\u636E",icon:"none"}),this.isRecording=!1;return}let o=t;t.detail&&(o=t.detail),s("log","at pages/ceshianzhuo.nvue:377","record payload normalized:",o),o.recordUrl?(uni.showToast({title:"\u5F55\u5C4F\u5B8C\u6210",icon:"success",duration:1400}),s("log","at pages/ceshianzhuo.nvue:386","\u5F55\u5C4F\u5730\u5740\uFF1A",o.recordUrl),this.isRecording=!1):o.recordFailedReason?(uni.showToast({title:"\u5F55\u5C4F\u5931\u8D25: "+o.recordFailedReason,icon:"none",duration:2e3}),s("warn","at pages/ceshianzhuo.nvue:395","record failed reason:",o.recordFailedReason),this.isRecording=!1):(o.snapShotResult===!0&&uni.showToast({title:"\u5F55\u5C4F\u64CD\u4F5C\u5DF2\u5B8C\u6210\uFF08\u8FD4\u56DE\u672A\u77E5\uFF09",icon:"none"}),this.isRecording=!1)}}};function A(t,o,a,l,r,n){let T=(0,e.resolveComponent)("MonitorView"),b=(0,e.resolveComponent)("MonitorControlView"),i=(0,e.resolveComponent)("button");return(0,e.openBlock)(),(0,e.createElementBlock)("scroll-view",{scrollY:!0,showScrollbar:!0,enableBackToTop:!0,bubble:"true",style:{flexDirection:"column"}},[(0,e.createElementVNode)("div",{class:"center-column"},[(0,e.createVNode)(T,{ref:"monitor",init:"5",style:{width:"300px",height:"200px","margin-top":"20px"},onOnTel:n.handleTelEvent,onOnSnapShot:n.handleSnapShotEvent,onOnRecord:n.handleRecordEvent,onOnTalkStatus:n.handleTalkEvent},null,8,["onOnTel","onOnSnapShot","onOnRecord","onOnTalkStatus"]),(0,e.createElementVNode)("view",{style:{display:"flex","flex-direction":"row","align-items":"flex-start"}},[(0,e.createVNode)(b,{ref:"control",init:"5",style:{width:"300px",height:"300px","margin-top":"20px"}},null,512),(0,e.createElementVNode)("div",{class:"button-group"},[(0,e.createVNode)(i,{class:"button",onClick:o[0]||(o[0]=u=>n.switchDisplay(0))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u539F\u56FE")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:o[1]||(o[1]=u=>n.switchDisplay(1))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u56DB\u5206\u5C4F")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:o[2]||(o[2]=u=>n.switchDisplay(2))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("180\xB0\u5168\u666F")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:o[3]||(o[3]=u=>n.switchDisplay(3))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("360\xB0\u5168\u666F")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:o[4]||(o[4]=u=>n.switchDisplay(4))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u73AF\u72B6\u5168\u666F")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:n.startAlarm},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u5F00\u542F\u624B\u52A8\u62A5\u8B66")]),_:1},8,["onClick"]),(0,e.createVNode)(i,{class:"button",onClick:n.stopAlarm},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u505C\u6B62\u624B\u52A8\u62A5\u8B66")]),_:1},8,["onClick"]),(0,e.createVNode)(i,{class:"button",onClick:o[5]||(o[5]=u=>n.flipImage(0))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u5DE6\u53F3\u7FFB\u8F6C")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:o[6]||(o[6]=u=>n.flipImage(1))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u4E0A\u4E0B\u7FFB\u8F6C")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:o[7]||(o[7]=u=>n.flipImage(2))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u4E2D\u5FC3\u7FFB\u8F6C")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:o[8]||(o[8]=u=>n.flipImage(3))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u987A\u65F6\u948890\xB0")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:o[9]||(o[9]=u=>n.flipImage(4))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u9006\u65F6\u948890\xB0")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:o[10]||(o[10]=u=>n.flipImage(5))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u9006\u65F6\u9488180\xB0")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:o[11]||(o[11]=u=>n.flipImage(6))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u4E0D\u7FFB\u8F6C")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:n.resumeOrPause},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u6682\u505C/\u7EE7\u7EED")]),_:1},8,["onClick"]),(0,e.createVNode)(i,{class:"button",onClick:n.changeQuality},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u5207\u6362\u6E05\u6670\u5EA6")]),_:1},8,["onClick"]),(0,e.createVNode)(i,{class:"button",onClick:n.doSnapshot},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u622A\u56FE")]),_:1},8,["onClick"]),(0,e.createVNode)(i,{class:"button",disabled:r.isRecording,onClick:n.doStartRecord},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)(" \u5F00\u59CB\u5F55\u5C4F ")]),_:1},8,["disabled","onClick"]),(0,e.createVNode)(i,{class:"button",disabled:!r.isRecording,onClick:n.doStopRecord},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)(" \u7ED3\u675F\u5F55\u5C4F ")]),_:1},8,["disabled","onClick"]),(0,e.createVNode)(i,{class:"button",disabled:r.isTalking,onClick:n.doOpenTalk},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)(" \u5F00\u59CB\u5BF9\u8BB2 ")]),_:1},8,["disabled","onClick"]),(0,e.createVNode)(i,{class:"button",disabled:!r.isTalking,onClick:n.doStopTalk},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)(" \u7ED3\u675F\u5BF9\u8BB2 ")]),_:1},8,["disabled","onClick"]),(0,e.createVNode)(i,{class:"button",onClick:n.test},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("test")]),_:1},8,["onClick"])])])])])}var c=k(x,[["render",A],["styles",[z]]]);var p=plus.webview.currentWebview();if(p){let t=parseInt(p.id),o="pages/ceshianzhuo",a={};try{a=JSON.parse(p.__query__)}catch(r){}c.mpType="page";let l=Vue.createPageApp(c,{$store:getApp({allowDefault:!0}).$store,__pageId:t,__pagePath:o,__pageQuery:a});l.provide("__globalStyles",Vue.useCssStyles([...__uniConfig.styles,...c.styles||[]])),l.mount("#root")}})();
diff --git a/unpackage/dist/build/app-plus/pages/login/login.css b/unpackage/dist/build/app-plus/pages/login/login.css
index 8586538..1b1d1c0 100644
--- a/unpackage/dist/build/app-plus/pages/login/login.css
+++ b/unpackage/dist/build/app-plus/pages/login/login.css
@@ -1 +1 @@
-.zy-modal[data-v-cd70e807]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1110;opacity:0;outline:0;text-align:center;transform:scale(1.185);-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:62.5rem;background:rgba(0,0,0,.6);transition:all .3s ease-in-out 0s;pointer-events:none}.zy-modal[data-v-cd70e807]:before{content:"\200b";display:inline-block;height:100%;vertical-align:middle}.zy-modal.show[data-v-cd70e807]{opacity:1;transition-duration:.3s;transform:scale(1);overflow-x:hidden;overflow-y:auto;pointer-events:auto}.zy-dialog[data-v-cd70e807]{position:relative;display:inline-block;vertical-align:middle;margin-left:auto;margin-right:auto;width:21.25rem;max-width:100%;background-color:#f8f8f8;border-radius:.3125rem;overflow:hidden}.zy-modal.bottom-modal[data-v-cd70e807]:before{vertical-align:bottom}.zy-modal.bottom-modal .zy-dialog[data-v-cd70e807]{width:100%;border-radius:0}.zy-modal.bottom-modal[data-v-cd70e807]{margin-bottom:-31.25rem}.zy-modal.bottom-modal.show[data-v-cd70e807]{margin-bottom:0}.zy-modal.drawer-modal[data-v-cd70e807]{transform:scale(1);display:flex}.zy-modal.drawer-modal .zy-dialog[data-v-cd70e807]{height:100%;min-width:6.25rem;border-radius:0;margin:initial;transition-duration:.3s}.zy-modal.drawer-modal.justify-start .zy-dialog[data-v-cd70e807]{transform:translate(-100%)}.zy-modal.drawer-modal.justify-end .zy-dialog[data-v-cd70e807]{transform:translate(100%)}.zy-modal.drawer-modal.show .zy-dialog[data-v-cd70e807]{transform:translate(0)}.zy-modal .zy-dialog>.zy-bar:first-child .action[data-v-cd70e807]{min-width:3.125rem;margin-right:0;min-height:3.125rem}.zy-progress[data-v-cd70e807]{overflow:hidden;height:.875rem;background-color:#ebeef5;display:inline-flex;align-items:center;width:100%}.zy-progress+uni-view[data-v-cd70e807],.zy-progress+uni-text[data-v-cd70e807]{line-height:1}.zy-progress.xs[data-v-cd70e807]{height:.3125rem}.zy-progress.sm[data-v-cd70e807]{height:.625rem}.zy-progress uni-view[data-v-cd70e807]{width:0;height:100%;align-items:center;display:flex;justify-items:flex-end;justify-content:space-around;font-size:.625rem;color:#fff;transition:width .6s ease}.zy-progress uni-text[data-v-cd70e807]{align-items:center;display:flex;font-size:.625rem;color:#333;text-indent:.3125rem}.zy-progress.text-progress[data-v-cd70e807]{padding-right:1.875rem}.zy-progress.striped uni-view[data-v-cd70e807]{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:2.25rem 2.25rem}.zy-progress.active uni-view[data-v-cd70e807]{animation:progress-stripes-cd70e807 2s linear infinite}@keyframes progress-stripes-cd70e807{0%{background-position:2.25rem 0}to{background-position:0 0}}.zy-btn[data-v-cd70e807]{height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.zy-btn[data-v-cd70e807]:after{display:none}.zy-btn[data-v-cd70e807]:not([class*=bg-]){background-color:#f0f0f0}.zy-btn[class*=line][data-v-cd70e807]{background-color:transparent}.zy-btn[class*=line][data-v-cd70e807]:after{content:" ";display:block;width:200%;height:200%;position:absolute;top:0;left:0;border:.03125rem solid currentColor;transform:scale(.5);transform-origin:0 0;box-sizing:border-box;border-radius:.375rem;z-index:1;pointer-events:none}.zy-btn.round[class*=line][data-v-cd70e807]:after{border-radius:31.25rem}.zy-btn[class*=lines][data-v-cd70e807]:after{border:.1875rem solid currentColor}.zy-btn[class*=bg-][data-v-cd70e807]:after{display:none}.zy-btn.sm[data-v-cd70e807]{padding:0 .625rem;font-size:.625rem;height:1.5rem}.zy-btn.lg[data-v-cd70e807]{padding:0 1.25rem;font-size:1rem;height:2.5rem}.zy-btn.cuIcon.sm[data-v-cd70e807]{width:1.5rem;height:1.5rem}.zy-btn.cuIcon[data-v-cd70e807]{width:2rem;height:2rem;border-radius:15.625rem;padding:0}uni-button.cuIcon.lg[data-v-cd70e807]{width:2.5rem;height:2.5rem}.zy-btn.shadow-blur[data-v-cd70e807]:before{top:.125rem;left:.125rem;filter:blur(.1875rem);opacity:.6}.zy-btn.button-hover[data-v-cd70e807]{transform:translate(.03125rem,.03125rem)}.block[data-v-cd70e807]{display:block}.zy-btn.block[data-v-cd70e807]{display:flex}.zy-btn[disabled][data-v-cd70e807]{opacity:.6;color:#fff}.margin-0[data-v-cd70e807]{margin:0}.margin-xs[data-v-cd70e807]{margin:.3125rem}.margin-sm[data-v-cd70e807]{margin:.625rem}.margin[data-v-cd70e807]{margin:.9375rem}.margin-lg[data-v-cd70e807]{margin:1.25rem}.margin-xl[data-v-cd70e807]{margin:1.5625rem}.margin-top-xs[data-v-cd70e807]{margin-top:.3125rem}.margin-top-sm[data-v-cd70e807]{margin-top:.625rem}.margin-top[data-v-cd70e807]{margin-top:.9375rem}.margin-top-lg[data-v-cd70e807]{margin-top:1.25rem}.margin-top-xl[data-v-cd70e807]{margin-top:1.5625rem}.margin-right-xs[data-v-cd70e807]{margin-right:.3125rem}.margin-right-sm[data-v-cd70e807]{margin-right:.625rem}.margin-right[data-v-cd70e807]{margin-right:.9375rem}.margin-right-lg[data-v-cd70e807]{margin-right:1.25rem}.margin-right-xl[data-v-cd70e807]{margin-right:1.5625rem}.margin-bottom-xs[data-v-cd70e807]{margin-bottom:.3125rem}.margin-bottom-sm[data-v-cd70e807]{margin-bottom:.625rem}.margin-bottom[data-v-cd70e807]{margin-bottom:.9375rem}.margin-bottom-lg[data-v-cd70e807]{margin-bottom:1.25rem}.margin-bottom-xl[data-v-cd70e807]{margin-bottom:1.5625rem}.margin-left-xs[data-v-cd70e807]{margin-left:.3125rem}.margin-left-sm[data-v-cd70e807]{margin-left:.625rem}.margin-left[data-v-cd70e807]{margin-left:.9375rem}.margin-left-lg[data-v-cd70e807]{margin-left:1.25rem}.margin-left-xl[data-v-cd70e807]{margin-left:1.5625rem}.margin-lr-xs[data-v-cd70e807]{margin-left:.3125rem;margin-right:.3125rem}.margin-lr-sm[data-v-cd70e807]{margin-left:.625rem;margin-right:.625rem}.margin-lr[data-v-cd70e807]{margin-left:.9375rem;margin-right:.9375rem}.margin-lr-lg[data-v-cd70e807]{margin-left:1.25rem;margin-right:1.25rem}.margin-lr-xl[data-v-cd70e807]{margin-left:1.5625rem;margin-right:1.5625rem}.margin-tb-xs[data-v-cd70e807]{margin-top:.3125rem;margin-bottom:.3125rem}.margin-tb-sm[data-v-cd70e807]{margin-top:.625rem;margin-bottom:.625rem}.margin-tb[data-v-cd70e807]{margin-top:.9375rem;margin-bottom:.9375rem}.margin-tb-lg[data-v-cd70e807]{margin-top:1.25rem;margin-bottom:1.25rem}.margin-tb-xl[data-v-cd70e807]{margin-top:1.5625rem;margin-bottom:1.5625rem}.padding-0[data-v-cd70e807]{padding:0}.padding-xs[data-v-cd70e807]{padding:.3125rem}.padding-sm[data-v-cd70e807]{padding:.625rem}.padding[data-v-cd70e807]{padding:.9375rem}.padding-lg[data-v-cd70e807]{padding:1.25rem}.padding-xl[data-v-cd70e807]{padding:1.5625rem}.padding-top-xs[data-v-cd70e807]{padding-top:.3125rem}.padding-top-sm[data-v-cd70e807]{padding-top:.625rem}.padding-top[data-v-cd70e807]{padding-top:.9375rem}.padding-top-lg[data-v-cd70e807]{padding-top:1.25rem}.padding-top-xl[data-v-cd70e807]{padding-top:1.5625rem}.padding-right-xs[data-v-cd70e807]{padding-right:.3125rem}.padding-right-sm[data-v-cd70e807]{padding-right:.625rem}.padding-right[data-v-cd70e807]{padding-right:.9375rem}.padding-right-lg[data-v-cd70e807]{padding-right:1.25rem}.padding-right-xl[data-v-cd70e807]{padding-right:1.5625rem}.padding-bottom-xs[data-v-cd70e807]{padding-bottom:.3125rem}.padding-bottom-sm[data-v-cd70e807]{padding-bottom:.625rem}.padding-bottom[data-v-cd70e807]{padding-bottom:.9375rem}.padding-bottom-lg[data-v-cd70e807]{padding-bottom:1.25rem}.padding-bottom-xl[data-v-cd70e807]{padding-bottom:1.5625rem}.padding-left-xs[data-v-cd70e807]{padding-left:.3125rem}.padding-left-sm[data-v-cd70e807]{padding-left:.625rem}.padding-left[data-v-cd70e807]{padding-left:.9375rem}.padding-left-lg[data-v-cd70e807]{padding-left:1.25rem}.padding-left-xl[data-v-cd70e807]{padding-left:1.5625rem}.padding-lr-xs[data-v-cd70e807]{padding-left:.3125rem;padding-right:.3125rem}.padding-lr-sm[data-v-cd70e807]{padding-left:.625rem;padding-right:.625rem}.padding-lr[data-v-cd70e807]{padding-left:.9375rem;padding-right:.9375rem}.padding-lr-lg[data-v-cd70e807]{padding-left:1.25rem;padding-right:1.25rem}.padding-lr-xl[data-v-cd70e807]{padding-left:1.5625rem;padding-right:1.5625rem}.padding-tb-xs[data-v-cd70e807]{padding-top:.3125rem;padding-bottom:.3125rem}.padding-tb-sm[data-v-cd70e807]{padding-top:.625rem;padding-bottom:.625rem}.padding-tb[data-v-cd70e807]{padding-top:.9375rem;padding-bottom:.9375rem}.padding-tb-lg[data-v-cd70e807]{padding-top:1.25rem;padding-bottom:1.25rem}.padding-tb-xl[data-v-cd70e807]{padding-top:1.5625rem;padding-bottom:1.5625rem}.zy-bar[data-v-cd70e807]{display:flex;position:relative;align-items:center;min-height:3.125rem;justify-content:space-between}.zy-bar .action[data-v-cd70e807]{display:flex;align-items:center;height:100%;justify-content:center;max-width:100%}.zy-bar .action.border-title[data-v-cd70e807]{position:relative;top:-.3125rem}.zy-bar .action.border-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;bottom:-.5rem;min-width:2rem;height:.1875rem;left:0}.zy-bar .action.sub-title[data-v-cd70e807]{position:relative;top:-.2rem}.zy-bar .action.sub-title uni-text[data-v-cd70e807]{position:relative;z-index:1}.zy-bar .action.sub-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.2rem;border-radius:.1875rem;width:100%;height:.6rem;left:.6rem;opacity:.3;z-index:0}.zy-bar .action.sub-title uni-text[class*=text-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.7rem;left:.5rem;opacity:.2;z-index:0;text-align:right;font-weight:900;font-size:1.125rem}.zy-bar.justify-center .action.border-title uni-text[data-v-cd70e807]:last-child,.zy-bar.justify-center .action.sub-title uni-text[data-v-cd70e807]:last-child{left:0;right:0;margin:auto;text-align:center}.zy-bar .action[data-v-cd70e807]:first-child{margin-left:.9375rem;font-size:.9375rem}.zy-bar .action uni-text.text-cut[data-v-cd70e807]{text-align:left;width:100%}.zy-bar .zy-avatar[data-v-cd70e807]:first-child{margin-left:.625rem}.zy-bar .action:first-child>uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:-.3em;margin-right:.3em}.zy-bar .action[data-v-cd70e807]:last-child{margin-right:.9375rem}.zy-bar .action>uni-text[class*=cuIcon-][data-v-cd70e807],.zy-bar .action>uni-view[class*=cuIcon-][data-v-cd70e807]{font-size:1.125rem}.zy-bar .action>uni-text[class*=cuIcon-]+uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:.5em}.zy-bar .content[data-v-cd70e807]{position:absolute;text-align:center;width:calc(100% - 10.625rem);left:0;right:0;bottom:0;top:0;margin:auto;height:1.875rem;font-size:1rem;line-height:1.875rem;cursor:none;pointer-events:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.zy-bar.ios .content[data-v-cd70e807]{bottom:7px;height:30px;font-size:1rem;line-height:30px}.zy-bar.btn-group[data-v-cd70e807]{justify-content:space-around}.zy-bar.btn-group uni-button[data-v-cd70e807]{padding:.625rem 1rem}.zy-bar.btn-group uni-button[data-v-cd70e807]{flex:1;margin:0 .625rem;max-width:50%}.zy-bar .search-form[data-v-cd70e807]{background-color:#f5f5f5;line-height:2rem;height:2rem;font-size:.75rem;color:#333;flex:1;display:flex;align-items:center;margin:0 .9375rem}.zy-bar .search-form+.action[data-v-cd70e807]{margin-right:.9375rem}.zy-bar .search-form uni-input[data-v-cd70e807]{flex:1;padding-right:.9375rem;height:2rem;line-height:2rem;font-size:.8125rem;background-color:transparent}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]{margin:0 .5em 0 .8em}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]:before{top:0}.zy-bar.fixed[data-v-cd70e807],.nav.fixed[data-v-cd70e807]{position:fixed;width:100%;top:0;z-index:1024;box-shadow:0 .03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.foot[data-v-cd70e807]{position:fixed;width:100%;bottom:0;z-index:1024;box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar[data-v-cd70e807]{padding:0;height:calc(3.125rem + env(safe-area-inset-bottom)/2);padding-bottom:calc(env(safe-area-inset-bottom)/2)}.zy-tabbar-height[data-v-cd70e807]{min-height:3.125rem;height:calc(3.125rem + env(safe-area-inset-bottom)/2)}.zy-bar.tabbar.shadow[data-v-cd70e807]{box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar .action[data-v-cd70e807]{font-size:.6875rem;position:relative;flex:1;text-align:center;padding:0;display:block;height:auto;line-height:1;margin:0;background-color:inherit;overflow:initial}.zy-bar.tabbar.shop .action[data-v-cd70e807]{width:4.375rem;flex:initial}.zy-bar.tabbar .action.add-action[data-v-cd70e807]{position:relative;z-index:2;padding-top:1.5625rem}.zy-bar.tabbar .action.add-action [class*=cuIcon-][data-v-cd70e807]{position:absolute;width:2.1875rem;z-index:2;height:2.1875rem;border-radius:50%;line-height:2.1875rem;font-size:1.5625rem;top:-1.09375rem;left:0;right:0;margin:auto;padding:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:after{content:"";position:absolute;width:3.125rem;height:3.125rem;top:-1.5625rem;left:0;right:0;margin:auto;box-shadow:0 -.09375rem .25rem rgba(0,0,0,.08);border-radius:1.5625rem;background-color:inherit;z-index:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:before{content:"";position:absolute;width:3.125rem;height:.9375rem;bottom:.9375rem;left:0;right:0;margin:auto;background-color:inherit;z-index:1}.zy-bar.tabbar .btn-group[data-v-cd70e807]{flex:1;display:flex;justify-content:space-around;align-items:center;padding:0 .3125rem}.zy-bar.tabbar uni-button.action[data-v-cd70e807]:after{border:0}.zy-bar.tabbar .action [class*=cuIcon-][data-v-cd70e807]{width:3.125rem;position:relative;display:block;height:auto;margin:0 auto .3125rem;text-align:center;font-size:1.25rem}.zy-bar.tabbar .action .cuIcon-zy-image[data-v-cd70e807]{margin:0 auto}.zy-bar.tabbar .action .cuIcon-zy-image uni-image[data-v-cd70e807]{width:1.5625rem;height:1.5625rem;display:inline-block}.zy-bar.tabbar .submit[data-v-cd70e807]{align-items:center;display:flex;justify-content:center;text-align:center;position:relative;flex:2;align-self:stretch}.zy-bar.tabbar .submit[data-v-cd70e807]:last-child{flex:2.6}.zy-bar.tabbar .submit+.submit[data-v-cd70e807]{flex:2}.zy-bar.tabbar.border .action[data-v-cd70e807]:before{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;transform:scale(.5);transform-origin:0 0;border-right:.03125rem solid rgba(0,0,0,.1);z-index:3}.zy-bar.tabbar.border .action[data-v-cd70e807]:last-child:before{display:none}.zy-bar.input[data-v-cd70e807]{padding-right:.625rem;background-color:#fff}.zy-bar.input uni-input[data-v-cd70e807]{overflow:initial;line-height:2rem;height:2rem;min-height:2rem;flex:1;font-size:.9375rem;margin:0 .625rem}.zy-bar.input .action[data-v-cd70e807]{margin-left:.625rem}.zy-bar.input .action [class*=cuIcon-][data-v-cd70e807]{font-size:1.5rem}.zy-bar.input uni-input+.action[data-v-cd70e807]{margin-right:.625rem;margin-left:0}.zy-bar.input .action:first-child [class*=cuIcon-][data-v-cd70e807]{margin-left:0}.zy-custom[data-v-cd70e807]{display:block;position:relative}.zy-custom .zy-bar .content[data-v-cd70e807]{width:calc(100% - 13.75rem)}.zy-custom .zy-bar .content uni-image[data-v-cd70e807]{height:1.875rem;width:7.5rem}.zy-custom .zy-bar[data-v-cd70e807]{min-height:0px;box-shadow:0 0;z-index:9999}.zy-custom .zy-bar .border-custom[data-v-cd70e807]{position:relative;background:rgba(0,0,0,.15);border-radius:31.25rem;height:30px}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:after{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;border-radius:inherit;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:.03125rem solid #ffffff;opacity:.5}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:before{content:" ";width:.03125rem;height:110%;position:absolute;top:22.5%;left:0;right:0;margin:auto;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;opacity:.6;background-color:#fff}.zy-custom .zy-bar .border-custom uni-text[data-v-cd70e807]{display:block;flex:1;margin:auto!important;text-align:center;font-size:1.0625rem}.flex[data-v-cd70e807]{display:flex}.basis-xs[data-v-cd70e807]{flex-basis:20%}.basis-sm[data-v-cd70e807]{flex-basis:40%}.basis-df[data-v-cd70e807]{flex-basis:50%}.basis-lg[data-v-cd70e807]{flex-basis:60%}.basis-xl[data-v-cd70e807]{flex-basis:80%}.flex-sub[data-v-cd70e807]{flex:1}.flex-twice[data-v-cd70e807]{flex:2}.flex-treble[data-v-cd70e807]{flex:3}.flex-direction[data-v-cd70e807]{flex-direction:column}.flex-wrap[data-v-cd70e807]{flex-wrap:wrap}.align-start[data-v-cd70e807]{align-items:flex-start}.align-end[data-v-cd70e807]{align-items:flex-end}.align-center[data-v-cd70e807]{align-items:center}.self-start[data-v-cd70e807]{align-self:flex-start}.self-center[data-v-cd70e807]{align-self:flex-center}.self-end[data-v-cd70e807]{align-self:flex-end}.self-stretch[data-v-cd70e807]{align-self:stretch}.align-stretch[data-v-cd70e807]{align-items:stretch}.justify-start[data-v-cd70e807]{justify-content:flex-start}.justify-end[data-v-cd70e807]{justify-content:flex-end}.justify-center[data-v-cd70e807]{justify-content:center}.justify-between[data-v-cd70e807]{justify-content:space-between}.justify-around[data-v-cd70e807]{justify-content:space-around}.line-red[data-v-cd70e807]:after,.lines-red[data-v-cd70e807]:after{border-color:#e54d42}.line-orange[data-v-cd70e807]:after,.lines-orange[data-v-cd70e807]:after{border-color:#f37b1d}.line-yellow[data-v-cd70e807]:after,.lines-yellow[data-v-cd70e807]:after{border-color:#fbbd08}.line-olive[data-v-cd70e807]:after,.lines-olive[data-v-cd70e807]:after{border-color:#8dc63f}.line-green[data-v-cd70e807]:after,.lines-green[data-v-cd70e807]:after{border-color:#39b54a}.line-cyan[data-v-cd70e807]:after,.lines-cyan[data-v-cd70e807]:after{border-color:#1cbbb4}.line-blue[data-v-cd70e807]:after,.lines-blue[data-v-cd70e807]:after{border-color:#0081ff}.line-purple[data-v-cd70e807]:after,.lines-purple[data-v-cd70e807]:after{border-color:#6739b6}.line-mauve[data-v-cd70e807]:after,.lines-mauve[data-v-cd70e807]:after{border-color:#9c26b0}.line-pink[data-v-cd70e807]:after,.lines-pink[data-v-cd70e807]:after{border-color:#e03997}.line-brown[data-v-cd70e807]:after,.lines-brown[data-v-cd70e807]:after{border-color:#a5673f}.line-grey[data-v-cd70e807]:after,.lines-grey[data-v-cd70e807]:after{border-color:#8799a3}.line-gray[data-v-cd70e807]:after,.lines-gray[data-v-cd70e807]:after{border-color:#aaa}.line-black[data-v-cd70e807]:after,.lines-black[data-v-cd70e807]:after{border-color:#333}.line-white[data-v-cd70e807]:after,.lines-white[data-v-cd70e807]:after{border-color:#fff}.bg-red[data-v-cd70e807]{background-color:#e54d42;color:#fff}.bg-orange[data-v-cd70e807]{background-color:#f37b1d;color:#fff}.bg-yellow[data-v-cd70e807]{background-color:#fbbd08;color:#333}.bg-olive[data-v-cd70e807]{background-color:#8dc63f;color:#fff}.bg-green[data-v-cd70e807]{background-color:#39b54a;color:#fff}.bg-cyan[data-v-cd70e807]{background-color:#1cbbb4;color:#fff}.bg-blue[data-v-cd70e807]{background-color:#0081ff;color:#fff}.bg-purple[data-v-cd70e807]{background-color:#6739b6;color:#fff}.bg-mauve[data-v-cd70e807]{background-color:#9c26b0;color:#fff}.bg-pink[data-v-cd70e807]{background-color:#e03997;color:#fff}.bg-brown[data-v-cd70e807]{background-color:#a5673f;color:#fff}.bg-grey[data-v-cd70e807]{background-color:#8799a3;color:#fff}.bg-gray[data-v-cd70e807]{background-color:#f0f0f0;color:#333}.bg-black[data-v-cd70e807]{background-color:#333;color:#fff}.bg-white[data-v-cd70e807]{background-color:#fff;color:#666}.bg-shadeTop[data-v-cd70e807]{background-image:linear-gradient(#000,rgba(0,0,0,.01));color:#fff}.bg-shadeBottom[data-v-cd70e807]{background-image:linear-gradient(rgba(0,0,0,.01),#000);color:#fff}.bg-red.light[data-v-cd70e807]{color:#e54d42;background-color:#fadbd9}.bg-orange.light[data-v-cd70e807]{color:#f37b1d;background-color:#fde6d2}.bg-yellow.light[data-v-cd70e807]{color:#fbbd08;background-color:rgba(254,242,206,.824)}.bg-olive.light[data-v-cd70e807]{color:#8dc63f;background-color:#e8f4d9}.bg-green.light[data-v-cd70e807]{color:#39b54a;background-color:#d7f0db}.bg-cyan.light[data-v-cd70e807]{color:#1cbbb4;background-color:#d2f1f0}.bg-blue.light[data-v-cd70e807]{color:#0081ff;background-color:#cce6ff}.bg-purple.light[data-v-cd70e807]{color:#6739b6;background-color:#e1d7f0}.bg-mauve.light[data-v-cd70e807]{color:#9c26b0;background-color:#ebd4ef}.bg-pink.light[data-v-cd70e807]{color:#e03997;background-color:#f9d7ea}.bg-brown.light[data-v-cd70e807]{color:#a5673f;background-color:#ede1d9}.bg-grey.light[data-v-cd70e807]{color:#8799a3;background-color:#e7ebed}.bg-gradual-red[data-v-cd70e807]{background-image:linear-gradient(45deg,#f43f3b,#ec008c);color:#fff}.bg-gradual-orange[data-v-cd70e807]{background-image:linear-gradient(45deg,#ff9700,#ed1c24);color:#fff}.bg-gradual-green[data-v-cd70e807]{background-image:linear-gradient(45deg,#39b54a,#8dc63f);color:#fff}.bg-gradual-purple[data-v-cd70e807]{background-image:linear-gradient(45deg,#9000ff,#5e00ff);color:#fff}.bg-gradual-pink[data-v-cd70e807]{background-image:linear-gradient(45deg,#ec008c,#6739b6);color:#fff}.bg-gradual-blue[data-v-cd70e807]{background-image:linear-gradient(45deg,#0081ff,#1cbbb4);color:#fff}.shadow[class*=-red][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.shadow[class*=-orange][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.shadow[class*=-yellow][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.shadow[class*=-olive][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.shadow[class*=-green][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.shadow[class*=-cyan][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.shadow[class*=-blue][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.shadow[class*=-purple][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.shadow[class*=-mauve][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.shadow[class*=-pink][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.shadow[class*=-brown][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.shadow[class*=-grey][data-v-cd70e807],.shadow[class*=-gray][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.shadow[class*=-black][data-v-cd70e807],.shadow[class*=-white][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.text-shadow[class*=-red][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.text-shadow[class*=-orange][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.text-shadow[class*=-yellow][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.text-shadow[class*=-olive][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.text-shadow[class*=-green][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.text-shadow[class*=-cyan][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.text-shadow[class*=-blue][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.text-shadow[class*=-purple][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.text-shadow[class*=-mauve][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.text-shadow[class*=-pink][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.text-shadow[class*=-brown][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.text-shadow[class*=-grey][data-v-cd70e807],.text-shadow[class*=-gray][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.text-shadow[class*=-black][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.bg-img[data-v-cd70e807]{background-size:cover;background-position:center;background-repeat:no-repeat}.bg-mask[data-v-cd70e807]{background-color:#333;position:relative}.bg-mask[data-v-cd70e807]:after{content:"";border-radius:inherit;width:100%;height:100%;display:block;background-color:rgba(0,0,0,.4);position:absolute;left:0;right:0;bottom:0;top:0}.bg-mask uni-view[data-v-cd70e807],.bg-mask uni-cover-view[data-v-cd70e807]{z-index:5;position:relative}.bg-video[data-v-cd70e807]{position:relative}.bg-video uni-video[data-v-cd70e807]{display:block;height:100%;width:100%;object-fit:cover;position:absolute;top:0;z-index:0;pointer-events:none}.text-xs[data-v-cd70e807]{font-size:.625rem}.text-sm[data-v-cd70e807]{font-size:.75rem}.text-df[data-v-cd70e807]{font-size:.875rem}.text-lg[data-v-cd70e807]{font-size:1rem}.text-xl[data-v-cd70e807]{font-size:1.125rem}.text-xxl[data-v-cd70e807]{font-size:1.375rem}.text-sl[data-v-cd70e807]{font-size:2.5rem}.text-xsl[data-v-cd70e807]{font-size:3.75rem}.text-Abc[data-v-cd70e807]{text-transform:Capitalize}.text-ABC[data-v-cd70e807]{text-transform:Uppercase}.text-abc[data-v-cd70e807]{text-transform:Lowercase}.text-price[data-v-cd70e807]:before{content:"\a5";font-size:80%;margin-right:.125rem}.text-cut[data-v-cd70e807]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.text-bold[data-v-cd70e807]{font-weight:700}.text-center[data-v-cd70e807]{text-align:center}.text-content[data-v-cd70e807]{line-height:1.6}.text-left[data-v-cd70e807]{text-align:left}.text-right[data-v-cd70e807]{text-align:right}.text-red[data-v-cd70e807],.line-red[data-v-cd70e807],.lines-red[data-v-cd70e807]{color:#e54d42}.text-orange[data-v-cd70e807],.line-orange[data-v-cd70e807],.lines-orange[data-v-cd70e807]{color:#f37b1d}.text-yellow[data-v-cd70e807],.line-yellow[data-v-cd70e807],.lines-yellow[data-v-cd70e807]{color:#fbbd08}.text-olive[data-v-cd70e807],.line-olive[data-v-cd70e807],.lines-olive[data-v-cd70e807]{color:#8dc63f}.text-green[data-v-cd70e807],.line-green[data-v-cd70e807],.lines-green[data-v-cd70e807]{color:#39b54a}.text-cyan[data-v-cd70e807],.line-cyan[data-v-cd70e807],.lines-cyan[data-v-cd70e807]{color:#1cbbb4}.text-blue[data-v-cd70e807],.line-blue[data-v-cd70e807],.lines-blue[data-v-cd70e807]{color:#0081ff}.text-purple[data-v-cd70e807],.line-purple[data-v-cd70e807],.lines-purple[data-v-cd70e807]{color:#6739b6}.text-mauve[data-v-cd70e807],.line-mauve[data-v-cd70e807],.lines-mauve[data-v-cd70e807]{color:#9c26b0}.text-pink[data-v-cd70e807],.line-pink[data-v-cd70e807],.lines-pink[data-v-cd70e807]{color:#e03997}.text-brown[data-v-cd70e807],.line-brown[data-v-cd70e807],.lines-brown[data-v-cd70e807]{color:#a5673f}.text-grey[data-v-cd70e807],.line-grey[data-v-cd70e807],.lines-grey[data-v-cd70e807]{color:#8799a3}.text-gray[data-v-cd70e807],.line-gray[data-v-cd70e807],.lines-gray[data-v-cd70e807]{color:#aaa}.text-black[data-v-cd70e807],.line-black[data-v-cd70e807],.lines-black[data-v-cd70e807]{color:#333}.text-white[data-v-cd70e807],.line-white[data-v-cd70e807],.lines-white[data-v-cd70e807]{color:#fff}.zy-upgrade-topbg-green[data-v-cd70e807]{background-image:url(../../assets/green.20d5f80a.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-red[data-v-cd70e807]{background-image:url(../../assets/red.8267d3cf.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-pink[data-v-cd70e807]{background-image:url(../../assets/pink.78f243a3.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-yellow[data-v-cd70e807]{background-image:url(../../assets/yellow.4438648c.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-blue[data-v-cd70e807]{background-size:100% 100%;background-repeat:no-repeat}.zy-upgrade-title[data-v-cd70e807]{font-size:1.09375rem;font-weight:600}.all[data-v-8b11c490]{margin-top:1.40625rem}.all .all-content[data-v-8b11c490]{width:100%;height:40.625rem}.all[data-v-842c1160]{margin-top:1.40625rem}.all .all-content[data-v-842c1160]{width:100%;height:40.625rem}.captcha-container[data-v-ca7ea5fb]{-webkit-user-select:none;user-select:none;background-color:#fff;width:18.75rem;height:21.875rem;margin:0 auto;border-radius:.9375rem;overflow:hidden;padding:0 .9375rem}.captcha-image[data-v-ca7ea5fb]{position:relative;overflow:hidden}.bg-image[data-v-ca7ea5fb]{position:relative;z-index:1;display:block;width:100%;height:100%}.overlay[data-v-ca7ea5fb]{position:absolute;top:0;left:0;width:100%;height:100%;z-index:100;pointer-events:none}.hole[data-v-ca7ea5fb],.piece[data-v-ca7ea5fb]{position:absolute;z-index:101;box-shadow:0 0 .1875rem rgba(0,0,0,.4)}.hole[data-v-ca7ea5fb]{background-color:rgba(0,0,0,.3)}.piece[data-v-ca7ea5fb]{background-repeat:no-repeat;background-size:cover;cursor:grab}.slider-bar[data-v-ca7ea5fb]{position:relative;height:3.125rem;margin-top:0;background:#f5f6fc;width:16.875rem;display:flex;justify-content:center;align-items:center}.slider-bar .slider-bar-font[data-v-ca7ea5fb]{color:#a9a9ab;font-size:.875rem}.slider-button[data-v-ca7ea5fb]{position:absolute;top:0;left:0;width:3.125rem;height:3.125rem;background:#fff;box-shadow:0 0 .625rem rgba(0,0,0,.2);-webkit-user-select:none;user-select:none;border-radius:.3125rem;border:.09375rem solid #8bdaca;display:flex;justify-content:center;align-items:center}.font-title[data-v-ca7ea5fb]{width:100%;display:flex;justify-content:center;align-items:center;height:3.125rem;font-size:1.09375rem;font-weight:700}.backgroundContainer[data-v-b090754f]{display:flex;position:relative;width:100%;height:100vh;background-color:#eff0f4;overflow:hidden;justify-content:center;align-items:center;flex-direction:column}.backgroundContainer .title-img[data-v-b090754f]{width:4.6875rem;height:6.25rem;margin-bottom:4.0625rem}.backgroundContainer .input-father[data-v-b090754f]{height:2.8125rem;width:17.1875rem;background-color:#fff;border-radius:.9375rem;margin-bottom:.625rem;display:flex;align-items:center;position:relative}.backgroundContainer .input-father .input-code[data-v-b090754f]{position:absolute;top:0;right:.625rem;width:4.6875rem;height:2.8125rem}.backgroundContainer .input-father-blue[data-v-b090754f]{margin-top:3.125rem;height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.backgroundContainer .input-father-gray[data-v-b090754f]{margin-top:3.125rem;height:2.8125rem;width:17.1875rem;background:#949aa3;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.under-container-title[data-v-b090754f]{display:flex;margin-top:2.5rem;align-items:center;font-size:.78125rem;font-weight:500}.under-container-title .radio-circle-blue[data-v-b090754f]{color:#0083ff;margin-top:.09375rem}.under-container-title .radio-circle-font[data-v-b090754f]{color:#5a607f;margin-top:.09375rem}.under-container-title .radio-circle[data-v-b090754f],.under-container-title .radio-circle-target[data-v-b090754f]{position:relative;margin-top:.0625rem;width:1.25rem;height:1.25rem;border-radius:50%;border:.0625rem solid #C0C5D9;background-color:transparent}.under-container-title .radio-circle-target[data-v-b090754f]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.9375rem;height:.9375rem;background-color:#00c9ff;border-radius:50%}.add[data-v-b090754f]{margin-left:1.5625rem;font-size:1rem}.shu[data-v-b090754f]{background-color:#d2d5d7;width:.0625rem;height:1.09375rem;margin:0 .625rem}.password[data-v-b090754f]{font-size:.84375rem;margin-left:.9375rem;width:100%;height:3.125rem}.popup-wrapper[data-v-b090754f]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:2;opacity:0;animation:fadeIn-b090754f .5s ease forwards}.popup-any[data-v-b090754f]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:999;opacity:0;animation:fadeIn-b090754f .5s ease forwards}@keyframes fadeIn-b090754f{0%{opacity:0}to{opacity:1}}.mask[data-v-b090754f]{position:absolute;top:0;right:0;bottom:0;left:0}.box-any[data-v-b090754f]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:31.25rem;height:46.875rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;padding:2.03125rem 1.25rem}.box-small[data-v-b090754f]{position:absolute;bottom:.625rem;left:50%;transform:translate(-50%);width:25rem;height:10.9375rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;align-items:center;padding:0 2.03125rem}.box-small .box-title[data-v-b090754f]{font-size:1.09375rem;margin:1.875rem 0}.box-small .font-father[data-v-b090754f]{line-height:1.5625rem}.box-small .text-blue[data-v-b090754f]{color:#0083ff}.box-change[data-v-b090754f]{position:absolute;top:60%;left:50%;transform:translate(-50%,-60%);width:25rem;height:21.875rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;align-items:center;padding:0 2.03125rem}.box-change .box-title[data-v-b090754f]{font-size:1.09375rem;margin:1.875rem 0;font-weight:600}.box-change .input-father[data-v-b090754f]{height:2.8125rem;width:17.1875rem;background-color:#f7f7fb;border-radius:.9375rem;margin-bottom:1.25rem;display:flex;align-items:center}.box[data-v-b090754f]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:25rem;height:34.375rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;align-items:center;padding:0 2.03125rem}.box .box-title[data-v-b090754f]{font-size:1.09375rem;margin:1.875rem 0}.box .font-father[data-v-b090754f]{line-height:1.5625rem}.box .text-blue[data-v-b090754f]{color:#0083ff}.box .gray-box-bgc[data-v-b090754f]{width:100%;height:7.8125rem;border:.0625rem solid #CFD5E4;background-color:#f2f4f7;color:#777;border-radius:.625rem;padding:.625rem}.blue-button[data-v-b090754f]{width:100%;height:2.8125rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;margin-top:1.5625rem;border-radius:.78125rem;font-size:1.09375rem;letter-spacing:.15625rem}.white-button[data-v-b090754f]{width:100%;height:2.8125rem;display:flex;justify-content:center;align-items:center;margin-top:.3125rem;border-radius:.78125rem;font-size:1.09375rem}.title-left[data-v-b090754f]{display:flex;align-items:center}.title-left .back-img[data-v-b090754f]{width:1.875rem;height:1.875rem;margin-right:.9375rem}.title-left .back-font[data-v-b090754f]{font-size:1.09375rem;font-weight:600}.bg-mask[data-v-b090754f]{position:fixed;top:0;left:0;width:100vw;height:100vh;background:rgba(0,0,0,.3);-webkit-backdrop-filter:blur(.15625rem);backdrop-filter:blur(.15625rem);z-index:998;display:flex;justify-content:center;align-items:center}
+.zy-modal[data-v-cd70e807]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1110;opacity:0;outline:0;text-align:center;transform:scale(1.185);-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:62.5rem;background:rgba(0,0,0,.6);transition:all .3s ease-in-out 0s;pointer-events:none}.zy-modal[data-v-cd70e807]:before{content:"\200b";display:inline-block;height:100%;vertical-align:middle}.zy-modal.show[data-v-cd70e807]{opacity:1;transition-duration:.3s;transform:scale(1);overflow-x:hidden;overflow-y:auto;pointer-events:auto}.zy-dialog[data-v-cd70e807]{position:relative;display:inline-block;vertical-align:middle;margin-left:auto;margin-right:auto;width:21.25rem;max-width:100%;background-color:#f8f8f8;border-radius:.3125rem;overflow:hidden}.zy-modal.bottom-modal[data-v-cd70e807]:before{vertical-align:bottom}.zy-modal.bottom-modal .zy-dialog[data-v-cd70e807]{width:100%;border-radius:0}.zy-modal.bottom-modal[data-v-cd70e807]{margin-bottom:-31.25rem}.zy-modal.bottom-modal.show[data-v-cd70e807]{margin-bottom:0}.zy-modal.drawer-modal[data-v-cd70e807]{transform:scale(1);display:flex}.zy-modal.drawer-modal .zy-dialog[data-v-cd70e807]{height:100%;min-width:6.25rem;border-radius:0;margin:initial;transition-duration:.3s}.zy-modal.drawer-modal.justify-start .zy-dialog[data-v-cd70e807]{transform:translate(-100%)}.zy-modal.drawer-modal.justify-end .zy-dialog[data-v-cd70e807]{transform:translate(100%)}.zy-modal.drawer-modal.show .zy-dialog[data-v-cd70e807]{transform:translate(0)}.zy-modal .zy-dialog>.zy-bar:first-child .action[data-v-cd70e807]{min-width:3.125rem;margin-right:0;min-height:3.125rem}.zy-progress[data-v-cd70e807]{overflow:hidden;height:.875rem;background-color:#ebeef5;display:inline-flex;align-items:center;width:100%}.zy-progress+uni-view[data-v-cd70e807],.zy-progress+uni-text[data-v-cd70e807]{line-height:1}.zy-progress.xs[data-v-cd70e807]{height:.3125rem}.zy-progress.sm[data-v-cd70e807]{height:.625rem}.zy-progress uni-view[data-v-cd70e807]{width:0;height:100%;align-items:center;display:flex;justify-items:flex-end;justify-content:space-around;font-size:.625rem;color:#fff;transition:width .6s ease}.zy-progress uni-text[data-v-cd70e807]{align-items:center;display:flex;font-size:.625rem;color:#333;text-indent:.3125rem}.zy-progress.text-progress[data-v-cd70e807]{padding-right:1.875rem}.zy-progress.striped uni-view[data-v-cd70e807]{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:2.25rem 2.25rem}.zy-progress.active uni-view[data-v-cd70e807]{animation:progress-stripes-cd70e807 2s linear infinite}@keyframes progress-stripes-cd70e807{0%{background-position:2.25rem 0}to{background-position:0 0}}.zy-btn[data-v-cd70e807]{height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.zy-btn[data-v-cd70e807]:after{display:none}.zy-btn[data-v-cd70e807]:not([class*=bg-]){background-color:#f0f0f0}.zy-btn[class*=line][data-v-cd70e807]{background-color:transparent}.zy-btn[class*=line][data-v-cd70e807]:after{content:" ";display:block;width:200%;height:200%;position:absolute;top:0;left:0;border:.03125rem solid currentColor;transform:scale(.5);transform-origin:0 0;box-sizing:border-box;border-radius:.375rem;z-index:1;pointer-events:none}.zy-btn.round[class*=line][data-v-cd70e807]:after{border-radius:31.25rem}.zy-btn[class*=lines][data-v-cd70e807]:after{border:.1875rem solid currentColor}.zy-btn[class*=bg-][data-v-cd70e807]:after{display:none}.zy-btn.sm[data-v-cd70e807]{padding:0 .625rem;font-size:.625rem;height:1.5rem}.zy-btn.lg[data-v-cd70e807]{padding:0 1.25rem;font-size:1rem;height:2.5rem}.zy-btn.cuIcon.sm[data-v-cd70e807]{width:1.5rem;height:1.5rem}.zy-btn.cuIcon[data-v-cd70e807]{width:2rem;height:2rem;border-radius:15.625rem;padding:0}uni-button.cuIcon.lg[data-v-cd70e807]{width:2.5rem;height:2.5rem}.zy-btn.shadow-blur[data-v-cd70e807]:before{top:.125rem;left:.125rem;filter:blur(.1875rem);opacity:.6}.zy-btn.button-hover[data-v-cd70e807]{transform:translate(.03125rem,.03125rem)}.block[data-v-cd70e807]{display:block}.zy-btn.block[data-v-cd70e807]{display:flex}.zy-btn[disabled][data-v-cd70e807]{opacity:.6;color:#fff}.margin-0[data-v-cd70e807]{margin:0}.margin-xs[data-v-cd70e807]{margin:.3125rem}.margin-sm[data-v-cd70e807]{margin:.625rem}.margin[data-v-cd70e807]{margin:.9375rem}.margin-lg[data-v-cd70e807]{margin:1.25rem}.margin-xl[data-v-cd70e807]{margin:1.5625rem}.margin-top-xs[data-v-cd70e807]{margin-top:.3125rem}.margin-top-sm[data-v-cd70e807]{margin-top:.625rem}.margin-top[data-v-cd70e807]{margin-top:.9375rem}.margin-top-lg[data-v-cd70e807]{margin-top:1.25rem}.margin-top-xl[data-v-cd70e807]{margin-top:1.5625rem}.margin-right-xs[data-v-cd70e807]{margin-right:.3125rem}.margin-right-sm[data-v-cd70e807]{margin-right:.625rem}.margin-right[data-v-cd70e807]{margin-right:.9375rem}.margin-right-lg[data-v-cd70e807]{margin-right:1.25rem}.margin-right-xl[data-v-cd70e807]{margin-right:1.5625rem}.margin-bottom-xs[data-v-cd70e807]{margin-bottom:.3125rem}.margin-bottom-sm[data-v-cd70e807]{margin-bottom:.625rem}.margin-bottom[data-v-cd70e807]{margin-bottom:.9375rem}.margin-bottom-lg[data-v-cd70e807]{margin-bottom:1.25rem}.margin-bottom-xl[data-v-cd70e807]{margin-bottom:1.5625rem}.margin-left-xs[data-v-cd70e807]{margin-left:.3125rem}.margin-left-sm[data-v-cd70e807]{margin-left:.625rem}.margin-left[data-v-cd70e807]{margin-left:.9375rem}.margin-left-lg[data-v-cd70e807]{margin-left:1.25rem}.margin-left-xl[data-v-cd70e807]{margin-left:1.5625rem}.margin-lr-xs[data-v-cd70e807]{margin-left:.3125rem;margin-right:.3125rem}.margin-lr-sm[data-v-cd70e807]{margin-left:.625rem;margin-right:.625rem}.margin-lr[data-v-cd70e807]{margin-left:.9375rem;margin-right:.9375rem}.margin-lr-lg[data-v-cd70e807]{margin-left:1.25rem;margin-right:1.25rem}.margin-lr-xl[data-v-cd70e807]{margin-left:1.5625rem;margin-right:1.5625rem}.margin-tb-xs[data-v-cd70e807]{margin-top:.3125rem;margin-bottom:.3125rem}.margin-tb-sm[data-v-cd70e807]{margin-top:.625rem;margin-bottom:.625rem}.margin-tb[data-v-cd70e807]{margin-top:.9375rem;margin-bottom:.9375rem}.margin-tb-lg[data-v-cd70e807]{margin-top:1.25rem;margin-bottom:1.25rem}.margin-tb-xl[data-v-cd70e807]{margin-top:1.5625rem;margin-bottom:1.5625rem}.padding-0[data-v-cd70e807]{padding:0}.padding-xs[data-v-cd70e807]{padding:.3125rem}.padding-sm[data-v-cd70e807]{padding:.625rem}.padding[data-v-cd70e807]{padding:.9375rem}.padding-lg[data-v-cd70e807]{padding:1.25rem}.padding-xl[data-v-cd70e807]{padding:1.5625rem}.padding-top-xs[data-v-cd70e807]{padding-top:.3125rem}.padding-top-sm[data-v-cd70e807]{padding-top:.625rem}.padding-top[data-v-cd70e807]{padding-top:.9375rem}.padding-top-lg[data-v-cd70e807]{padding-top:1.25rem}.padding-top-xl[data-v-cd70e807]{padding-top:1.5625rem}.padding-right-xs[data-v-cd70e807]{padding-right:.3125rem}.padding-right-sm[data-v-cd70e807]{padding-right:.625rem}.padding-right[data-v-cd70e807]{padding-right:.9375rem}.padding-right-lg[data-v-cd70e807]{padding-right:1.25rem}.padding-right-xl[data-v-cd70e807]{padding-right:1.5625rem}.padding-bottom-xs[data-v-cd70e807]{padding-bottom:.3125rem}.padding-bottom-sm[data-v-cd70e807]{padding-bottom:.625rem}.padding-bottom[data-v-cd70e807]{padding-bottom:.9375rem}.padding-bottom-lg[data-v-cd70e807]{padding-bottom:1.25rem}.padding-bottom-xl[data-v-cd70e807]{padding-bottom:1.5625rem}.padding-left-xs[data-v-cd70e807]{padding-left:.3125rem}.padding-left-sm[data-v-cd70e807]{padding-left:.625rem}.padding-left[data-v-cd70e807]{padding-left:.9375rem}.padding-left-lg[data-v-cd70e807]{padding-left:1.25rem}.padding-left-xl[data-v-cd70e807]{padding-left:1.5625rem}.padding-lr-xs[data-v-cd70e807]{padding-left:.3125rem;padding-right:.3125rem}.padding-lr-sm[data-v-cd70e807]{padding-left:.625rem;padding-right:.625rem}.padding-lr[data-v-cd70e807]{padding-left:.9375rem;padding-right:.9375rem}.padding-lr-lg[data-v-cd70e807]{padding-left:1.25rem;padding-right:1.25rem}.padding-lr-xl[data-v-cd70e807]{padding-left:1.5625rem;padding-right:1.5625rem}.padding-tb-xs[data-v-cd70e807]{padding-top:.3125rem;padding-bottom:.3125rem}.padding-tb-sm[data-v-cd70e807]{padding-top:.625rem;padding-bottom:.625rem}.padding-tb[data-v-cd70e807]{padding-top:.9375rem;padding-bottom:.9375rem}.padding-tb-lg[data-v-cd70e807]{padding-top:1.25rem;padding-bottom:1.25rem}.padding-tb-xl[data-v-cd70e807]{padding-top:1.5625rem;padding-bottom:1.5625rem}.zy-bar[data-v-cd70e807]{display:flex;position:relative;align-items:center;min-height:3.125rem;justify-content:space-between}.zy-bar .action[data-v-cd70e807]{display:flex;align-items:center;height:100%;justify-content:center;max-width:100%}.zy-bar .action.border-title[data-v-cd70e807]{position:relative;top:-.3125rem}.zy-bar .action.border-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;bottom:-.5rem;min-width:2rem;height:.1875rem;left:0}.zy-bar .action.sub-title[data-v-cd70e807]{position:relative;top:-.2rem}.zy-bar .action.sub-title uni-text[data-v-cd70e807]{position:relative;z-index:1}.zy-bar .action.sub-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.2rem;border-radius:.1875rem;width:100%;height:.6rem;left:.6rem;opacity:.3;z-index:0}.zy-bar .action.sub-title uni-text[class*=text-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.7rem;left:.5rem;opacity:.2;z-index:0;text-align:right;font-weight:900;font-size:1.125rem}.zy-bar.justify-center .action.border-title uni-text[data-v-cd70e807]:last-child,.zy-bar.justify-center .action.sub-title uni-text[data-v-cd70e807]:last-child{left:0;right:0;margin:auto;text-align:center}.zy-bar .action[data-v-cd70e807]:first-child{margin-left:.9375rem;font-size:.9375rem}.zy-bar .action uni-text.text-cut[data-v-cd70e807]{text-align:left;width:100%}.zy-bar .zy-avatar[data-v-cd70e807]:first-child{margin-left:.625rem}.zy-bar .action:first-child>uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:-.3em;margin-right:.3em}.zy-bar .action[data-v-cd70e807]:last-child{margin-right:.9375rem}.zy-bar .action>uni-text[class*=cuIcon-][data-v-cd70e807],.zy-bar .action>uni-view[class*=cuIcon-][data-v-cd70e807]{font-size:1.125rem}.zy-bar .action>uni-text[class*=cuIcon-]+uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:.5em}.zy-bar .content[data-v-cd70e807]{position:absolute;text-align:center;width:calc(100% - 10.625rem);left:0;right:0;bottom:0;top:0;margin:auto;height:1.875rem;font-size:1rem;line-height:1.875rem;cursor:none;pointer-events:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.zy-bar.ios .content[data-v-cd70e807]{bottom:7px;height:30px;font-size:1rem;line-height:30px}.zy-bar.btn-group[data-v-cd70e807]{justify-content:space-around}.zy-bar.btn-group uni-button[data-v-cd70e807]{padding:.625rem 1rem}.zy-bar.btn-group uni-button[data-v-cd70e807]{flex:1;margin:0 .625rem;max-width:50%}.zy-bar .search-form[data-v-cd70e807]{background-color:#f5f5f5;line-height:2rem;height:2rem;font-size:.75rem;color:#333;flex:1;display:flex;align-items:center;margin:0 .9375rem}.zy-bar .search-form+.action[data-v-cd70e807]{margin-right:.9375rem}.zy-bar .search-form uni-input[data-v-cd70e807]{flex:1;padding-right:.9375rem;height:2rem;line-height:2rem;font-size:.8125rem;background-color:transparent}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]{margin:0 .5em 0 .8em}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]:before{top:0}.zy-bar.fixed[data-v-cd70e807],.nav.fixed[data-v-cd70e807]{position:fixed;width:100%;top:0;z-index:1024;box-shadow:0 .03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.foot[data-v-cd70e807]{position:fixed;width:100%;bottom:0;z-index:1024;box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar[data-v-cd70e807]{padding:0;height:calc(3.125rem + env(safe-area-inset-bottom)/2);padding-bottom:calc(env(safe-area-inset-bottom)/2)}.zy-tabbar-height[data-v-cd70e807]{min-height:3.125rem;height:calc(3.125rem + env(safe-area-inset-bottom)/2)}.zy-bar.tabbar.shadow[data-v-cd70e807]{box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar .action[data-v-cd70e807]{font-size:.6875rem;position:relative;flex:1;text-align:center;padding:0;display:block;height:auto;line-height:1;margin:0;background-color:inherit;overflow:initial}.zy-bar.tabbar.shop .action[data-v-cd70e807]{width:4.375rem;flex:initial}.zy-bar.tabbar .action.add-action[data-v-cd70e807]{position:relative;z-index:2;padding-top:1.5625rem}.zy-bar.tabbar .action.add-action [class*=cuIcon-][data-v-cd70e807]{position:absolute;width:2.1875rem;z-index:2;height:2.1875rem;border-radius:50%;line-height:2.1875rem;font-size:1.5625rem;top:-1.09375rem;left:0;right:0;margin:auto;padding:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:after{content:"";position:absolute;width:3.125rem;height:3.125rem;top:-1.5625rem;left:0;right:0;margin:auto;box-shadow:0 -.09375rem .25rem rgba(0,0,0,.08);border-radius:1.5625rem;background-color:inherit;z-index:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:before{content:"";position:absolute;width:3.125rem;height:.9375rem;bottom:.9375rem;left:0;right:0;margin:auto;background-color:inherit;z-index:1}.zy-bar.tabbar .btn-group[data-v-cd70e807]{flex:1;display:flex;justify-content:space-around;align-items:center;padding:0 .3125rem}.zy-bar.tabbar uni-button.action[data-v-cd70e807]:after{border:0}.zy-bar.tabbar .action [class*=cuIcon-][data-v-cd70e807]{width:3.125rem;position:relative;display:block;height:auto;margin:0 auto .3125rem;text-align:center;font-size:1.25rem}.zy-bar.tabbar .action .cuIcon-zy-image[data-v-cd70e807]{margin:0 auto}.zy-bar.tabbar .action .cuIcon-zy-image uni-image[data-v-cd70e807]{width:1.5625rem;height:1.5625rem;display:inline-block}.zy-bar.tabbar .submit[data-v-cd70e807]{align-items:center;display:flex;justify-content:center;text-align:center;position:relative;flex:2;align-self:stretch}.zy-bar.tabbar .submit[data-v-cd70e807]:last-child{flex:2.6}.zy-bar.tabbar .submit+.submit[data-v-cd70e807]{flex:2}.zy-bar.tabbar.border .action[data-v-cd70e807]:before{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;transform:scale(.5);transform-origin:0 0;border-right:.03125rem solid rgba(0,0,0,.1);z-index:3}.zy-bar.tabbar.border .action[data-v-cd70e807]:last-child:before{display:none}.zy-bar.input[data-v-cd70e807]{padding-right:.625rem;background-color:#fff}.zy-bar.input uni-input[data-v-cd70e807]{overflow:initial;line-height:2rem;height:2rem;min-height:2rem;flex:1;font-size:.9375rem;margin:0 .625rem}.zy-bar.input .action[data-v-cd70e807]{margin-left:.625rem}.zy-bar.input .action [class*=cuIcon-][data-v-cd70e807]{font-size:1.5rem}.zy-bar.input uni-input+.action[data-v-cd70e807]{margin-right:.625rem;margin-left:0}.zy-bar.input .action:first-child [class*=cuIcon-][data-v-cd70e807]{margin-left:0}.zy-custom[data-v-cd70e807]{display:block;position:relative}.zy-custom .zy-bar .content[data-v-cd70e807]{width:calc(100% - 13.75rem)}.zy-custom .zy-bar .content uni-image[data-v-cd70e807]{height:1.875rem;width:7.5rem}.zy-custom .zy-bar[data-v-cd70e807]{min-height:0px;box-shadow:0 0;z-index:9999}.zy-custom .zy-bar .border-custom[data-v-cd70e807]{position:relative;background:rgba(0,0,0,.15);border-radius:31.25rem;height:30px}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:after{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;border-radius:inherit;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:.03125rem solid #ffffff;opacity:.5}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:before{content:" ";width:.03125rem;height:110%;position:absolute;top:22.5%;left:0;right:0;margin:auto;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;opacity:.6;background-color:#fff}.zy-custom .zy-bar .border-custom uni-text[data-v-cd70e807]{display:block;flex:1;margin:auto!important;text-align:center;font-size:1.0625rem}.flex[data-v-cd70e807]{display:flex}.basis-xs[data-v-cd70e807]{flex-basis:20%}.basis-sm[data-v-cd70e807]{flex-basis:40%}.basis-df[data-v-cd70e807]{flex-basis:50%}.basis-lg[data-v-cd70e807]{flex-basis:60%}.basis-xl[data-v-cd70e807]{flex-basis:80%}.flex-sub[data-v-cd70e807]{flex:1}.flex-twice[data-v-cd70e807]{flex:2}.flex-treble[data-v-cd70e807]{flex:3}.flex-direction[data-v-cd70e807]{flex-direction:column}.flex-wrap[data-v-cd70e807]{flex-wrap:wrap}.align-start[data-v-cd70e807]{align-items:flex-start}.align-end[data-v-cd70e807]{align-items:flex-end}.align-center[data-v-cd70e807]{align-items:center}.self-start[data-v-cd70e807]{align-self:flex-start}.self-center[data-v-cd70e807]{align-self:flex-center}.self-end[data-v-cd70e807]{align-self:flex-end}.self-stretch[data-v-cd70e807]{align-self:stretch}.align-stretch[data-v-cd70e807]{align-items:stretch}.justify-start[data-v-cd70e807]{justify-content:flex-start}.justify-end[data-v-cd70e807]{justify-content:flex-end}.justify-center[data-v-cd70e807]{justify-content:center}.justify-between[data-v-cd70e807]{justify-content:space-between}.justify-around[data-v-cd70e807]{justify-content:space-around}.line-red[data-v-cd70e807]:after,.lines-red[data-v-cd70e807]:after{border-color:#e54d42}.line-orange[data-v-cd70e807]:after,.lines-orange[data-v-cd70e807]:after{border-color:#f37b1d}.line-yellow[data-v-cd70e807]:after,.lines-yellow[data-v-cd70e807]:after{border-color:#fbbd08}.line-olive[data-v-cd70e807]:after,.lines-olive[data-v-cd70e807]:after{border-color:#8dc63f}.line-green[data-v-cd70e807]:after,.lines-green[data-v-cd70e807]:after{border-color:#39b54a}.line-cyan[data-v-cd70e807]:after,.lines-cyan[data-v-cd70e807]:after{border-color:#1cbbb4}.line-blue[data-v-cd70e807]:after,.lines-blue[data-v-cd70e807]:after{border-color:#0081ff}.line-purple[data-v-cd70e807]:after,.lines-purple[data-v-cd70e807]:after{border-color:#6739b6}.line-mauve[data-v-cd70e807]:after,.lines-mauve[data-v-cd70e807]:after{border-color:#9c26b0}.line-pink[data-v-cd70e807]:after,.lines-pink[data-v-cd70e807]:after{border-color:#e03997}.line-brown[data-v-cd70e807]:after,.lines-brown[data-v-cd70e807]:after{border-color:#a5673f}.line-grey[data-v-cd70e807]:after,.lines-grey[data-v-cd70e807]:after{border-color:#8799a3}.line-gray[data-v-cd70e807]:after,.lines-gray[data-v-cd70e807]:after{border-color:#aaa}.line-black[data-v-cd70e807]:after,.lines-black[data-v-cd70e807]:after{border-color:#333}.line-white[data-v-cd70e807]:after,.lines-white[data-v-cd70e807]:after{border-color:#fff}.bg-red[data-v-cd70e807]{background-color:#e54d42;color:#fff}.bg-orange[data-v-cd70e807]{background-color:#f37b1d;color:#fff}.bg-yellow[data-v-cd70e807]{background-color:#fbbd08;color:#333}.bg-olive[data-v-cd70e807]{background-color:#8dc63f;color:#fff}.bg-green[data-v-cd70e807]{background-color:#39b54a;color:#fff}.bg-cyan[data-v-cd70e807]{background-color:#1cbbb4;color:#fff}.bg-blue[data-v-cd70e807]{background-color:#0081ff;color:#fff}.bg-purple[data-v-cd70e807]{background-color:#6739b6;color:#fff}.bg-mauve[data-v-cd70e807]{background-color:#9c26b0;color:#fff}.bg-pink[data-v-cd70e807]{background-color:#e03997;color:#fff}.bg-brown[data-v-cd70e807]{background-color:#a5673f;color:#fff}.bg-grey[data-v-cd70e807]{background-color:#8799a3;color:#fff}.bg-gray[data-v-cd70e807]{background-color:#f0f0f0;color:#333}.bg-black[data-v-cd70e807]{background-color:#333;color:#fff}.bg-white[data-v-cd70e807]{background-color:#fff;color:#666}.bg-shadeTop[data-v-cd70e807]{background-image:linear-gradient(#000,rgba(0,0,0,.01));color:#fff}.bg-shadeBottom[data-v-cd70e807]{background-image:linear-gradient(rgba(0,0,0,.01),#000);color:#fff}.bg-red.light[data-v-cd70e807]{color:#e54d42;background-color:#fadbd9}.bg-orange.light[data-v-cd70e807]{color:#f37b1d;background-color:#fde6d2}.bg-yellow.light[data-v-cd70e807]{color:#fbbd08;background-color:rgba(254,242,206,.824)}.bg-olive.light[data-v-cd70e807]{color:#8dc63f;background-color:#e8f4d9}.bg-green.light[data-v-cd70e807]{color:#39b54a;background-color:#d7f0db}.bg-cyan.light[data-v-cd70e807]{color:#1cbbb4;background-color:#d2f1f0}.bg-blue.light[data-v-cd70e807]{color:#0081ff;background-color:#cce6ff}.bg-purple.light[data-v-cd70e807]{color:#6739b6;background-color:#e1d7f0}.bg-mauve.light[data-v-cd70e807]{color:#9c26b0;background-color:#ebd4ef}.bg-pink.light[data-v-cd70e807]{color:#e03997;background-color:#f9d7ea}.bg-brown.light[data-v-cd70e807]{color:#a5673f;background-color:#ede1d9}.bg-grey.light[data-v-cd70e807]{color:#8799a3;background-color:#e7ebed}.bg-gradual-red[data-v-cd70e807]{background-image:linear-gradient(45deg,#f43f3b,#ec008c);color:#fff}.bg-gradual-orange[data-v-cd70e807]{background-image:linear-gradient(45deg,#ff9700,#ed1c24);color:#fff}.bg-gradual-green[data-v-cd70e807]{background-image:linear-gradient(45deg,#39b54a,#8dc63f);color:#fff}.bg-gradual-purple[data-v-cd70e807]{background-image:linear-gradient(45deg,#9000ff,#5e00ff);color:#fff}.bg-gradual-pink[data-v-cd70e807]{background-image:linear-gradient(45deg,#ec008c,#6739b6);color:#fff}.bg-gradual-blue[data-v-cd70e807]{background-image:linear-gradient(45deg,#0081ff,#1cbbb4);color:#fff}.shadow[class*=-red][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.shadow[class*=-orange][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.shadow[class*=-yellow][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.shadow[class*=-olive][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.shadow[class*=-green][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.shadow[class*=-cyan][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.shadow[class*=-blue][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.shadow[class*=-purple][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.shadow[class*=-mauve][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.shadow[class*=-pink][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.shadow[class*=-brown][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.shadow[class*=-grey][data-v-cd70e807],.shadow[class*=-gray][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.shadow[class*=-black][data-v-cd70e807],.shadow[class*=-white][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.text-shadow[class*=-red][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.text-shadow[class*=-orange][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.text-shadow[class*=-yellow][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.text-shadow[class*=-olive][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.text-shadow[class*=-green][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.text-shadow[class*=-cyan][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.text-shadow[class*=-blue][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.text-shadow[class*=-purple][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.text-shadow[class*=-mauve][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.text-shadow[class*=-pink][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.text-shadow[class*=-brown][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.text-shadow[class*=-grey][data-v-cd70e807],.text-shadow[class*=-gray][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.text-shadow[class*=-black][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.bg-img[data-v-cd70e807]{background-size:cover;background-position:center;background-repeat:no-repeat}.bg-mask[data-v-cd70e807]{background-color:#333;position:relative}.bg-mask[data-v-cd70e807]:after{content:"";border-radius:inherit;width:100%;height:100%;display:block;background-color:rgba(0,0,0,.4);position:absolute;left:0;right:0;bottom:0;top:0}.bg-mask uni-view[data-v-cd70e807],.bg-mask uni-cover-view[data-v-cd70e807]{z-index:5;position:relative}.bg-video[data-v-cd70e807]{position:relative}.bg-video uni-video[data-v-cd70e807]{display:block;height:100%;width:100%;object-fit:cover;position:absolute;top:0;z-index:0;pointer-events:none}.text-xs[data-v-cd70e807]{font-size:.625rem}.text-sm[data-v-cd70e807]{font-size:.75rem}.text-df[data-v-cd70e807]{font-size:.875rem}.text-lg[data-v-cd70e807]{font-size:1rem}.text-xl[data-v-cd70e807]{font-size:1.125rem}.text-xxl[data-v-cd70e807]{font-size:1.375rem}.text-sl[data-v-cd70e807]{font-size:2.5rem}.text-xsl[data-v-cd70e807]{font-size:3.75rem}.text-Abc[data-v-cd70e807]{text-transform:Capitalize}.text-ABC[data-v-cd70e807]{text-transform:Uppercase}.text-abc[data-v-cd70e807]{text-transform:Lowercase}.text-price[data-v-cd70e807]:before{content:"\a5";font-size:80%;margin-right:.125rem}.text-cut[data-v-cd70e807]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.text-bold[data-v-cd70e807]{font-weight:700}.text-center[data-v-cd70e807]{text-align:center}.text-content[data-v-cd70e807]{line-height:1.6}.text-left[data-v-cd70e807]{text-align:left}.text-right[data-v-cd70e807]{text-align:right}.text-red[data-v-cd70e807],.line-red[data-v-cd70e807],.lines-red[data-v-cd70e807]{color:#e54d42}.text-orange[data-v-cd70e807],.line-orange[data-v-cd70e807],.lines-orange[data-v-cd70e807]{color:#f37b1d}.text-yellow[data-v-cd70e807],.line-yellow[data-v-cd70e807],.lines-yellow[data-v-cd70e807]{color:#fbbd08}.text-olive[data-v-cd70e807],.line-olive[data-v-cd70e807],.lines-olive[data-v-cd70e807]{color:#8dc63f}.text-green[data-v-cd70e807],.line-green[data-v-cd70e807],.lines-green[data-v-cd70e807]{color:#39b54a}.text-cyan[data-v-cd70e807],.line-cyan[data-v-cd70e807],.lines-cyan[data-v-cd70e807]{color:#1cbbb4}.text-blue[data-v-cd70e807],.line-blue[data-v-cd70e807],.lines-blue[data-v-cd70e807]{color:#0081ff}.text-purple[data-v-cd70e807],.line-purple[data-v-cd70e807],.lines-purple[data-v-cd70e807]{color:#6739b6}.text-mauve[data-v-cd70e807],.line-mauve[data-v-cd70e807],.lines-mauve[data-v-cd70e807]{color:#9c26b0}.text-pink[data-v-cd70e807],.line-pink[data-v-cd70e807],.lines-pink[data-v-cd70e807]{color:#e03997}.text-brown[data-v-cd70e807],.line-brown[data-v-cd70e807],.lines-brown[data-v-cd70e807]{color:#a5673f}.text-grey[data-v-cd70e807],.line-grey[data-v-cd70e807],.lines-grey[data-v-cd70e807]{color:#8799a3}.text-gray[data-v-cd70e807],.line-gray[data-v-cd70e807],.lines-gray[data-v-cd70e807]{color:#aaa}.text-black[data-v-cd70e807],.line-black[data-v-cd70e807],.lines-black[data-v-cd70e807]{color:#333}.text-white[data-v-cd70e807],.line-white[data-v-cd70e807],.lines-white[data-v-cd70e807]{color:#fff}.zy-upgrade-topbg-green[data-v-cd70e807]{background-image:url(../../assets/green.20d5f80a.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-red[data-v-cd70e807]{background-image:url(../../assets/red.8267d3cf.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-pink[data-v-cd70e807]{background-image:url(../../assets/pink.78f243a3.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-yellow[data-v-cd70e807]{background-image:url(../../assets/yellow.4438648c.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-blue[data-v-cd70e807]{background-size:100% 100%;background-repeat:no-repeat}.zy-upgrade-title[data-v-cd70e807]{font-size:1.09375rem;font-weight:600}.all[data-v-8b11c490]{margin-top:1.40625rem}.all .all-content[data-v-8b11c490]{width:100%;height:40.625rem}.all[data-v-842c1160]{margin-top:1.40625rem}.all .all-content[data-v-842c1160]{width:100%;height:40.625rem}.captcha-container[data-v-ca7ea5fb]{-webkit-user-select:none;user-select:none;background-color:#fff;width:18.75rem;height:21.875rem;margin:0 auto;border-radius:.9375rem;overflow:hidden;padding:0 .9375rem}.captcha-image[data-v-ca7ea5fb]{position:relative;overflow:hidden}.bg-image[data-v-ca7ea5fb]{position:relative;z-index:1;display:block;width:100%;height:100%}.overlay[data-v-ca7ea5fb]{position:absolute;top:0;left:0;width:100%;height:100%;z-index:100;pointer-events:none}.hole[data-v-ca7ea5fb],.piece[data-v-ca7ea5fb]{position:absolute;z-index:101;box-shadow:0 0 .1875rem rgba(0,0,0,.4)}.hole[data-v-ca7ea5fb]{background-color:rgba(0,0,0,.3)}.piece[data-v-ca7ea5fb]{background-repeat:no-repeat;background-size:cover;cursor:grab}.slider-bar[data-v-ca7ea5fb]{position:relative;height:3.125rem;margin-top:0;background:#f5f6fc;width:16.875rem;display:flex;justify-content:center;align-items:center}.slider-bar .slider-bar-font[data-v-ca7ea5fb]{color:#a9a9ab;font-size:.875rem}.slider-button[data-v-ca7ea5fb]{position:absolute;top:0;left:0;width:3.125rem;height:3.125rem;background:#fff;box-shadow:0 0 .625rem rgba(0,0,0,.2);-webkit-user-select:none;user-select:none;border-radius:.3125rem;border:.09375rem solid #8bdaca;display:flex;justify-content:center;align-items:center}.font-title[data-v-ca7ea5fb]{width:100%;display:flex;justify-content:center;align-items:center;height:3.125rem;font-size:1.09375rem;font-weight:700}.backgroundContainer[data-v-e979d453]{display:flex;position:relative;width:100%;height:100vh;background-color:#eff0f4;overflow:hidden;justify-content:center;align-items:center;flex-direction:column}.backgroundContainer .title-img[data-v-e979d453]{width:4.6875rem;height:6.25rem;margin-bottom:4.0625rem}.backgroundContainer .input-father[data-v-e979d453]{height:2.8125rem;width:17.1875rem;background-color:#fff;border-radius:.9375rem;margin-bottom:.625rem;display:flex;align-items:center;position:relative}.backgroundContainer .input-father .input-code[data-v-e979d453]{position:absolute;top:0;right:.625rem;width:4.6875rem;height:2.8125rem}.backgroundContainer .input-father-blue[data-v-e979d453]{margin-top:3.125rem;height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.backgroundContainer .input-father-gray[data-v-e979d453]{margin-top:3.125rem;height:2.8125rem;width:17.1875rem;background:#949aa3;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.under-container-title[data-v-e979d453]{display:flex;margin-top:2.5rem;align-items:center;font-size:.78125rem;font-weight:500}.under-container-title .radio-circle-blue[data-v-e979d453]{color:#0083ff;margin-top:.09375rem}.under-container-title .radio-circle-font[data-v-e979d453]{color:#5a607f;margin-top:.09375rem}.under-container-title .radio-circle[data-v-e979d453],.under-container-title .radio-circle-target[data-v-e979d453]{position:relative;margin-top:.0625rem;width:1.25rem;height:1.25rem;border-radius:50%;border:.0625rem solid #C0C5D9;background-color:transparent}.under-container-title .radio-circle-target[data-v-e979d453]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.9375rem;height:.9375rem;background-color:#00c9ff;border-radius:50%}.add[data-v-e979d453]{margin-left:1.5625rem;font-size:1rem}.shu[data-v-e979d453]{background-color:#d2d5d7;width:.0625rem;height:1.09375rem;margin:0 .625rem}.password[data-v-e979d453]{font-size:.84375rem;margin-left:.9375rem;width:100%;height:3.125rem}.popup-wrapper[data-v-e979d453]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:2;opacity:0;animation:fadeIn-e979d453 .5s ease forwards}.popup-any[data-v-e979d453]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:999;opacity:0;animation:fadeIn-e979d453 .5s ease forwards}@keyframes fadeIn-e979d453{0%{opacity:0}to{opacity:1}}.mask[data-v-e979d453]{position:absolute;top:0;right:0;bottom:0;left:0}.box-any[data-v-e979d453]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:31.25rem;height:46.875rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;padding:2.03125rem 1.25rem}.box-small[data-v-e979d453]{position:absolute;bottom:.625rem;left:50%;transform:translate(-50%);width:25rem;height:10.9375rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;align-items:center;padding:0 2.03125rem}.box-small .box-title[data-v-e979d453]{font-size:1.09375rem;margin:1.875rem 0}.box-small .font-father[data-v-e979d453]{line-height:1.5625rem}.box-small .text-blue[data-v-e979d453]{color:#0083ff}.box-change[data-v-e979d453]{position:absolute;top:60%;left:50%;transform:translate(-50%,-60%);width:25rem;height:21.875rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;align-items:center;padding:0 2.03125rem}.box-change .box-title[data-v-e979d453]{font-size:1.09375rem;margin:1.875rem 0;font-weight:600}.box-change .input-father[data-v-e979d453]{height:2.8125rem;width:17.1875rem;background-color:#f7f7fb;border-radius:.9375rem;margin-bottom:1.25rem;display:flex;align-items:center}.box[data-v-e979d453]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:25rem;height:34.375rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;align-items:center;padding:0 2.03125rem}.box .box-title[data-v-e979d453]{font-size:1.09375rem;margin:1.875rem 0}.box .font-father[data-v-e979d453]{line-height:1.5625rem}.box .text-blue[data-v-e979d453]{color:#0083ff}.box .gray-box-bgc[data-v-e979d453]{width:100%;height:7.8125rem;border:.0625rem solid #CFD5E4;background-color:#f2f4f7;color:#777;border-radius:.625rem;padding:.625rem}.blue-button[data-v-e979d453]{width:100%;height:2.8125rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;margin-top:1.5625rem;border-radius:.78125rem;font-size:1.09375rem;letter-spacing:.15625rem}.white-button[data-v-e979d453]{width:100%;height:2.8125rem;display:flex;justify-content:center;align-items:center;margin-top:.3125rem;border-radius:.78125rem;font-size:1.09375rem}.title-left[data-v-e979d453]{display:flex;align-items:center}.title-left .back-img[data-v-e979d453]{width:1.875rem;height:1.875rem;margin-right:.9375rem}.title-left .back-font[data-v-e979d453]{font-size:1.09375rem;font-weight:600}.bg-mask[data-v-e979d453]{position:fixed;top:0;left:0;width:100vw;height:100vh;background:rgba(0,0,0,.3);-webkit-backdrop-filter:blur(.15625rem);backdrop-filter:blur(.15625rem);z-index:998;display:flex;justify-content:center;align-items:center}
diff --git a/unpackage/dist/build/app-plus/pages/option.js b/unpackage/dist/build/app-plus/pages/option.js
deleted file mode 100644
index f41cfa1..0000000
--- a/unpackage/dist/build/app-plus/pages/option.js
+++ /dev/null
@@ -1,32 +0,0 @@
-"use weex:vue";
-
-if (typeof Promise !== 'undefined' && !Promise.prototype.finally) {
- Promise.prototype.finally = function(callback) {
- const promise = this.constructor
- return this.then(
- value => promise.resolve(callback()).then(() => value),
- reason => promise.resolve(callback()).then(() => {
- throw reason
- })
- )
- }
-};
-
-if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
- const global = uni.requireGlobal()
- ArrayBuffer = global.ArrayBuffer
- Int8Array = global.Int8Array
- Uint8Array = global.Uint8Array
- Uint8ClampedArray = global.Uint8ClampedArray
- Int16Array = global.Int16Array
- Uint16Array = global.Uint16Array
- Int32Array = global.Int32Array
- Uint32Array = global.Uint32Array
- Float32Array = global.Float32Array
- Float64Array = global.Float64Array
- BigInt64Array = global.BigInt64Array
- BigUint64Array = global.BigUint64Array
-};
-
-
-(()=>{var d=Object.create;var c=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var y=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,w=Object.prototype.hasOwnProperty;var v=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var b=(e,t,o,s)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of y(t))!w.call(e,n)&&n!==o&&c(e,n,{get:()=>t[n],enumerable:!(s=f(t,n))||s.enumerable});return e};var h=(e,t,o)=>(o=e!=null?d(g(e)):{},b(t||!e||!e.__esModule?c(o,"default",{value:e,enumerable:!0}):o,e));var i=v((S,a)=>{a.exports=Vue});var r=h(i());var u=(e,t)=>{let o=e.__vccOpts||e;for(let[s,n]of t)o[s]=n;return o};var x={"center-column":{"":{width:170,height:170,borderRadius:80}}},V={data(){return{}},onLoad(){},methods:{}};function C(e,t,o,s,n,$){let _=(0,r.resolveComponent)("MonitorControlView");return(0,r.openBlock)(),(0,r.createElementBlock)("scroll-view",{scrollY:!0,showScrollbar:!0,enableBackToTop:!0,bubble:"true",style:{flexDirection:"column"}},[(0,r.createElementVNode)("div",{class:"center-column",onClick:t[0]||(t[0]=(...m)=>e.jumptonve&&e.jumptonve(...m))},[(0,r.createVNode)(_,{ref:"monitor",init:"5",style:{width:"170px",height:"170px"}},null,512)])])}var p=u(V,[["render",C],["styles",[x]]]);var l=plus.webview.currentWebview();if(l){let e=parseInt(l.id),t="pages/option",o={};try{o=JSON.parse(l.__query__)}catch(n){}p.mpType="page";let s=Vue.createPageApp(p,{$store:getApp({allowDefault:!0}).$store,__pageId:e,__pagePath:t,__pageQuery:o});s.provide("__globalStyles",Vue.useCssStyles([...__uniConfig.styles,...p.styles||[]])),s.mount("#root")}})();
diff --git a/unpackage/dist/build/app-plus/pages/watch/index.css b/unpackage/dist/build/app-plus/pages/watch/index.css
index 469a6ef..164c973 100644
--- a/unpackage/dist/build/app-plus/pages/watch/index.css
+++ b/unpackage/dist/build/app-plus/pages/watch/index.css
@@ -1 +1 @@
-.drawer[data-v-363bab7d]{position:fixed;bottom:0;right:0;height:85vh;background:#eff0f4;z-index:1000;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;transform:translate(100%);transition:transform .4s ease}.drawer-open[data-v-363bab7d]{transform:translate(0)}.drawer-content[data-v-363bab7d]{position:relative;width:100%;height:100%}.drawer-content-circle[data-v-363bab7d]{position:absolute;bottom:7.5rem;left:-1.875rem;width:4.6875rem;height:5rem;border-radius:50%;z-index:-1;background:linear-gradient(to right,#fff 0,#eff0f4 1.875rem,#eff0f4);display:flex;align-items:center;-webkit-clip-path:inset(0 60% 0 0);clip-path:inset(0 60% 0 0)}.drawer-img[data-v-363bab7d]{width:.625rem;height:.625rem;margin-left:.78125rem}.target[data-v-363bab7d]{--color: #99C9FD;--thick: 2px;--radius: 4.6875rem;--outline-offset: .15625rem;border-radius:var(--radius);background-color:#ddf0ff;animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);z-index:1}.pulse[data-v-363bab7d]{--scale: 1.2;--dur: .8s;animation:pulse-363bab7d var(--dur) ease-in-out infinite;transform-origin:center center;will-change:transform}@keyframes pulse-363bab7d{0%{transform:scale(1)}50%{transform:scale(var(--scale))}to{transform:scale(1)}}.draw-all[data-v-d630a1ae]{width:100%;height:100%;background-color:#eff0f4;overflow:hidden;position:relative}.carmera[data-v-d630a1ae]{position:absolute;right:0;bottom:7.8125rem;height:18.75rem;width:6.25rem;z-index:1}.roll[data-v-d630a1ae]{position:absolute;right:0;bottom:0;height:40.625rem;width:20.3125rem}.compass-container[data-v-d630a1ae]{width:380px;height:380px;border-radius:50%;position:absolute;right:-65%;transform:translateY(-60%);bottom:8.4375rem;margin:auto;touch-action:none;z-index:9999}.compass-item[data-v-d630a1ae]{position:absolute;top:50%;left:50%;width:100px;height:100px;margin:-50px 0 0 -50px;display:flex;align-items:center;justify-content:center}.item-label[data-v-d630a1ae]{font-size:.78125rem;width:4.0625rem;height:4.0625rem;border-radius:50%;display:flex;justify-content:center;align-items:center;background:linear-gradient(to bottom,#e6e7ed,#f4f5f7);border:.0625rem solid #fff;position:relative}.item-label-target[data-v-d630a1ae]{font-size:.78125rem;width:4.0625rem;height:4.0625rem;border-radius:50%;display:flex;justify-content:center;align-items:center;background:linear-gradient(to bottom,#e6e7ed,#f4f5f7);position:relative}.item-label-second[data-v-d630a1ae]{font-size:.78125rem;width:4.0625rem;height:4.0625rem;border-radius:50%;display:flex;justify-content:center;align-items:center;position:relative}.all-size[data-v-d630a1ae]{width:100%;height:100%}.targetimge[data-v-d630a1ae]{width:4.6875rem;height:4.0625rem;position:absolute;right:0;top:0;z-index:1;transition:opacity .8s ease}.compass-container.second[data-v-d630a1ae]{width:480px;height:480px;border-radius:50%;position:absolute;right:-75%;transform:translateY(-70%);bottom:5.375rem;margin:auto;touch-action:none;z-index:1}.gesture-mask[data-v-d630a1ae]{position:fixed;left:0;top:0;right:0;bottom:0;z-index:9999;background:transparent}.pulse[data-v-d630a1ae]{--scale: 1.5;--dur: 1.1s;animation:pulse-d630a1ae var(--dur) ease-in-out infinite;transform-origin:center center;will-change:transform}@keyframes pulse-d630a1ae{0%{transform:scale(1)}50%{transform:scale(var(--scale))}to{transform:scale(1)}}.targetbutton[data-v-d630a1ae]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: -.3125rem;border-radius:var(--radius);animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:1}.view[data-v-ea21c8e9]{background-color:#eff0f4;width:100%;height:100vh;display:flex}.view .view-left[data-v-ea21c8e9]{height:100%;width:23%}.view .view-left .title-father[data-v-ea21c8e9]{padding-top:3.75rem;padding-bottom:1.5625rem;padding-left:1.875rem;display:flex}.view .view-left .title-father .title-img[data-v-ea21c8e9]{width:1.71875rem;height:1.71875rem;margin-right:.625rem}.view .view-left .title-father .title-font[data-v-ea21c8e9]{font-size:1.25rem;font-weight:800}.view .view-left .menus-father[data-v-ea21c8e9]{width:100%;height:25rem}.view .view-left .menus-father .menu[data-v-ea21c8e9]{margin:1.40625rem 0 1.40625rem .9375rem;height:3.4375rem;width:9.375rem;border-radius:1.875rem;overflow:hidden;display:flex;align-items:center}.view .view-left .menus-father .menu .menu-img[data-v-ea21c8e9]{width:2.03125rem;height:2.03125rem;margin-left:.78125rem;display:flex;justify-content:center;align-items:center;border-radius:50%}.view .view-right[data-v-ea21c8e9]{height:100%;width:90%;position:relative}.view .view-right .right-container-title-nav[data-v-ea21c8e9]{margin-top:1.875rem;display:flex;align-items:center;height:1.875rem;position:relative;font-size:.875rem}.view .view-right .right-container-title-nav .right-icons-img[data-v-ea21c8e9]{width:1.875rem;height:1.875rem;margin-left:.625rem;margin-right:.625rem}.view .view-right .scroll-vi[data-v-ea21c8e9]{height:3.125rem;width:100%;margin-left:0;margin-top:3.125rem;position:relative;display:flex}.view .view-right .scroll-vi .menu[data-v-ea21c8e9]{flex:0 0 auto;height:2.8125rem;width:7.5rem;border-radius:1.5625rem;margin-left:.625rem;background-color:#fff;display:flex;justify-content:center;align-items:center;padding-top:.28125rem}.view .view-right .scroll-vi .menu .menu-img[data-v-ea21c8e9]{width:1.71875rem;height:1.71875rem;margin-right:.46875rem}.view .view-right .scroll-vi .menu .menu-font[data-v-ea21c8e9]{margin-top:.5625rem;font-size:.78125rem}.right-container-tem[data-v-ea21c8e9]{display:flex}.right-container-tem .right-container-tem-text[data-v-ea21c8e9]{font-size:1rem;margin-right:.625rem}.right-container-tem .right-container-tem-img[data-v-ea21c8e9]{width:1.1875rem;height:1.1875rem}.new-weight[data-v-ea21c8e9]{margin:1.25rem .9375rem 0;font-size:1rem}.big-bgc[data-v-ea21c8e9]{margin-top:.9375rem;width:39.0625rem;height:28.53125rem;border-radius:1.5625rem;overflow:hidden;display:flex;justify-content:center;align-items:center;position:relative}.small-bgc[data-v-ea21c8e9]{width:9.3125rem;height:6.875rem;border-radius:.78125rem;overflow:hidden;display:flex;justify-content:center;align-items:center;position:relative}.card-father[data-v-ea21c8e9]{margin-right:.625rem}.card-father .up-title[data-v-ea21c8e9]{display:flex;justify-content:space-between;align-items:center;margin:.3125rem 0 .3125rem .625rem;font-size:.9375rem}@keyframes glowFlash-ea21c8e9{0%,to{box-shadow:0 0 .125rem #f1d7da,0 0 .25rem #f1d7da,0 0 .375rem #f1d7da}50%{box-shadow:0 0 .3125rem #f1d7da,0 0 .625rem #f1d7da,0 0 .9375rem #f1d7da}}.right-right[data-v-ea21c8e9]{position:absolute;right:-.625rem;top:7.1875rem;height:calc(100% - 7.8125rem);width:20.3125rem}.right-right .red-kuang[data-v-ea21c8e9]{margin-top:0;margin-left:1.5625rem;width:17.1875rem;height:5.9375rem;border-radius:1.5625rem;position:relative;display:flex;align-items:center;background-color:rgba(226,227,231,.5)}.right-right .red-kuang .blue-bgc[data-v-ea21c8e9]{width:4.375rem;height:1.875rem;display:flex;justify-content:center;align-items:center;z-index:1;font-size:.8125rem;background-color:rgba(248,249,250,.5);color:#017de9;border-radius:.625rem;margin-left:.3125rem}.right-right .red-kuang .font-weight[data-v-ea21c8e9]{font-size:1rem;font-weight:600}.right-right .red-kuang .font-small[data-v-ea21c8e9]{font-size:.9375rem}.states-father[data-v-ea21c8e9]{display:flex;margin-top:.9375rem;margin-left:1.5625rem;width:100%}.states-father .states[data-v-ea21c8e9]{width:5.3125rem;margin-right:.46875rem;height:2.5rem;border-radius:1.875rem;background-color:rgba(226,227,231,.5);display:flex;justify-content:center;align-items:center}.states-father .phone-number[data-v-ea21c8e9]{width:100%;height:2.5rem;display:flex;align-items:center;position:relative}.big-view[data-v-ea21c8e9]{margin-left:1.5625rem;margin-top:.9375rem;width:17.1875rem;height:19.53125rem;border-radius:1.5625rem;background-color:rgba(226,227,231,.5);position:relative;display:flex;flex-direction:column;align-items:center;overflow:hidden}.big-view .font-weight[data-v-ea21c8e9]{font-size:1.5625rem;margin-top:1.40625rem;font-weight:600}.big-view .pao[data-v-ea21c8e9]{position:absolute;right:1.25rem;top:.625rem;width:2.65625rem;height:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.small-button[data-v-ea21c8e9]{margin-top:.625rem;height:2.1875rem;display:flex}.small-button .gray-ball[data-v-ea21c8e9]{display:flex;justify-content:center;align-items:center;background-color:#f8f9fa;width:1.875rem;height:1.875rem;border-radius:50%;margin:0 .3125rem}.small-button .gray-ball .laba-img[data-v-ea21c8e9]{width:1.09375rem;height:1.09375rem}.right-bottom[data-v-ea21c8e9]{margin-left:1.5625rem;margin-top:.9375rem;width:17.1875rem;height:7.5rem;border-radius:1.5625rem;background-color:rgba(226,227,231,.5);position:relative}.right-bottom .bottom-img[data-v-ea21c8e9]{width:1.875rem;height:1.875rem;margin-bottom:.9375rem}.right-bottom .people-card[data-v-ea21c8e9]{width:7.65625rem;height:3.125rem;border-radius:.78125rem;background-color:rgba(248,249,250,.5);margin-left:.625rem;display:flex;justify-content:center;align-items:center}.right-father[data-v-ea21c8e9]{width:20.3125rem;position:absolute;right:0;top:0;display:flex;justify-content:center;align-items:center}.right-icons[data-v-ea21c8e9]{position:absolute;right:.9375rem;top:.9375rem;display:flex;align-items:center;height:1.875rem}.warning[data-v-ea21c8e9]{animation:glowFlash-ea21c8e9 1.2s infinite ease-in-out;border:.03125rem solid #ff5757;background-color:rgba(239,240,244,.5)}.zoom[data-v-ea21c8e9]{transform:scale(1.2);transform-origin:bottom left;transition:transform 1s ease}.juzhong[data-v-ea21c8e9]{position:absolute;top:0%;left:50%;transform:translate(-50%)}.zhezhao-left[data-v-ea21c8e9]{position:absolute;top:0;left:0%;height:100%;width:3.75rem;background:linear-gradient(to right,#eff0f4,rgba(239,240,244,0));z-index:4;pointer-events:none}.zhezhao-right[data-v-ea21c8e9]{position:absolute;top:0;right:34%;height:100%;width:3.75rem;background:linear-gradient(to left,#eff0f4,rgba(239,240,244,0));z-index:4;pointer-events:none}.zhezhao-top[data-v-ea21c8e9]{position:absolute;top:6.875rem;left:0%;width:10.9375rem;height:3.75rem;background:linear-gradient(to bottom,#eff0f4,rgba(239,240,244,0));z-index:4;pointer-events:none}.zhezhao-bottom[data-v-ea21c8e9]{position:absolute;bottom:14.0625rem;left:0%;width:10.9375rem;height:3.75rem;background:linear-gradient(to top,#eff0f4,rgba(239,240,244,0));z-index:4;pointer-events:none}.bgc-image[data-v-ea21c8e9]{width:15.625rem;height:6.25rem;position:absolute;top:-1.5625rem;left:0}.font-phone[data-v-ea21c8e9]{font-size:1.09375rem;font-weight:600;margin-left:.9375rem}.phone-ball[data-v-ea21c8e9]{width:1.5625rem;height:1.5625rem;position:absolute;top:50%;transform:translateY(-50%);right:4.0625rem}.target[data-v-ea21c8e9]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: 0;border-radius:var(--radius);background-color:#ddf0ff;animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:1}.targetbutton[data-v-ea21c8e9]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: .3125rem;border-radius:var(--radius);animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:1}
+.move-circle[data-v-a880c760]{position:absolute;bottom:0;right:0;width:10.9375rem;height:10.9375rem;display:flex;justify-content:center;align-items:center;z-index:99;touch-action:none}.move-circle .click-box-top[data-v-a880c760]{position:absolute;top:.625rem;right:2.1875rem;width:6.875rem;height:2.5rem}.move-circle .click-box-bottom[data-v-a880c760]{position:absolute;bottom:.625rem;right:2.1875rem;width:6.875rem;height:2.5rem}.move-circle .click-box-right[data-v-a880c760]{position:absolute;bottom:3.125rem;right:0;width:2.8125rem;height:4.6875rem}.move-circle .click-box-left[data-v-a880c760]{position:absolute;bottom:3.125rem;left:0;width:2.8125rem;height:4.6875rem}.move-circle .click-box-center[data-v-a880c760]{position:absolute;bottom:4.0625rem;right:4.0625rem;width:2.8125rem;height:2.8125rem}.move-circle-all[data-v-a880c760]{width:10.9375rem;height:10.9375rem}.light-shadow[data-v-a880c760]{position:absolute;width:1.25rem;height:1.25rem;background-color:transparent;border:1.875rem solid #3da6ff;border-radius:50%;pointer-events:none;opacity:1}.ripple-loop[data-v-a880c760]{animation:rippleLoop-a880c760 1.2s ease-out infinite}.ripple-once[data-v-a880c760]{animation:rippleLoop-a880c760 1.2s ease-out forwards}@keyframes rippleLoop-a880c760{0%{transform:translate(-50%,-50%) scale(.5);opacity:.6}to{transform:translate(-50%,-50%) scale(2.5);opacity:0}}.light-circle[data-v-a880c760]{position:relative;width:150px;height:150px;border-radius:50%;background:#111;overflow:visible}.circle[data-v-a880c760]{position:relative;width:150px;height:150px;border-radius:50%;background:#222;margin:50px}.pulse-circle[data-v-a880c760]{position:absolute;top:50%;right:50%;transform:translate(-50%,-50%);border-radius:50%;background:radial-gradient(circle,#03a4ff 0%,transparent 70%);animation:pulse-a880c760 3s forwards}@keyframes pulse-a880c760{0%{width:0;height:0;opacity:.8}50%{width:10.9375rem;height:10.9375rem;opacity:.4}to{width:0;height:0;opacity:0}}.view[data-v-bd9aba2f]{background-color:#eff0f4;width:100%;height:100vh;display:flex}.view .view-left[data-v-bd9aba2f]{height:100%;width:23%}.view .view-left .title-father[data-v-bd9aba2f]{padding-top:3.75rem;padding-bottom:1.5625rem;padding-left:1.875rem;display:flex}.view .view-left .title-father .title-img[data-v-bd9aba2f]{width:1.71875rem;height:1.71875rem;margin-right:.625rem}.view .view-left .title-father .title-font[data-v-bd9aba2f]{font-size:1.25rem;font-weight:800}.view .view-left .menus-father[data-v-bd9aba2f]{width:100%;height:25rem}.view .view-left .menus-father .menu[data-v-bd9aba2f]{margin:1.40625rem 0 1.40625rem .9375rem;height:3.4375rem;width:9.375rem;border-radius:1.875rem;overflow:hidden;display:flex;align-items:center}.view .view-left .menus-father .menu .menu-img[data-v-bd9aba2f]{width:2.03125rem;height:2.03125rem;margin-left:.78125rem;display:flex;justify-content:center;align-items:center;border-radius:50%}.view .view-right[data-v-bd9aba2f]{height:100%;width:90%;position:relative}.view .view-right .right-container-title-nav[data-v-bd9aba2f]{margin-top:1.875rem;display:flex;align-items:center;height:1.875rem;position:relative;font-size:.875rem}.view .view-right .right-container-title-nav .right-icons-img[data-v-bd9aba2f]{width:1.875rem;height:1.875rem;margin-left:.625rem;margin-right:.625rem}.view .view-right .scroll-vi[data-v-bd9aba2f]{height:3.125rem;width:100%;margin-left:0;margin-top:3.125rem;position:relative;display:flex}.view .view-right .scroll-vi .menu[data-v-bd9aba2f]{flex:0 0 auto;height:2.8125rem;width:7.5rem;border-radius:1.5625rem;margin-left:.625rem;background-color:#fff;display:flex;justify-content:center;align-items:center;padding-top:.28125rem}.view .view-right .scroll-vi .menu .menu-img[data-v-bd9aba2f]{width:1.71875rem;height:1.71875rem;margin-right:.46875rem}.view .view-right .scroll-vi .menu .menu-font[data-v-bd9aba2f]{margin-top:.5625rem;font-size:.78125rem}.right-container-tem[data-v-bd9aba2f]{display:flex}.right-container-tem .right-container-tem-text[data-v-bd9aba2f]{font-size:1rem;margin-right:.625rem}.right-container-tem .right-container-tem-img[data-v-bd9aba2f]{width:1.1875rem;height:1.1875rem}.new-weight[data-v-bd9aba2f]{margin:1.25rem .9375rem 0;font-size:1rem}.big-bgc[data-v-bd9aba2f]{margin-top:.625rem;width:39.0625rem;height:28.53125rem;border-radius:1.5625rem;overflow:hidden;display:flex;justify-content:center;align-items:center;position:relative}.small-bgc[data-v-bd9aba2f]{width:9.3125rem;height:6.875rem;border-radius:.78125rem;overflow:hidden;display:flex;justify-content:center;align-items:center;position:relative}.card-father[data-v-bd9aba2f]{margin-right:.625rem}.card-father .up-title[data-v-bd9aba2f]{display:flex;justify-content:space-between;align-items:center;margin:.3125rem 0 .3125rem .625rem;font-size:.9375rem}@keyframes glowFlash-bd9aba2f{0%,to{box-shadow:0 0 .125rem #f1d7da,0 0 .25rem #f1d7da,0 0 .375rem #f1d7da}50%{box-shadow:0 0 .3125rem #f1d7da,0 0 .625rem #f1d7da,0 0 .9375rem #f1d7da}}.right-right[data-v-bd9aba2f]{position:absolute;right:-.625rem;top:7.1875rem;height:calc(100% - 7.8125rem);width:20.3125rem}.right-right .red-kuang[data-v-bd9aba2f]{margin-top:0;margin-left:2.8125rem;width:15.9375rem;height:3.75rem;border-radius:1.5625rem;position:relative;display:flex;align-items:center;background-color:rgba(226,227,231,.5)}.right-right .red-kuang .blue-bgc[data-v-bd9aba2f]{width:3.75rem;height:1.5625rem;display:flex;justify-content:center;align-items:center;z-index:1;font-size:.71875rem;background-color:rgba(248,249,250,.5);color:#017de9;border-radius:.625rem;margin-left:.9375rem}.right-right .red-kuang .font-weight[data-v-bd9aba2f]{font-size:.9375rem;font-weight:600}.right-right .red-kuang .font-small[data-v-bd9aba2f]{font-size:.78125rem}.states-father[data-v-bd9aba2f]{display:flex;margin-top:.625rem;margin-left:2.8125rem;width:100%}.states-father .states[data-v-bd9aba2f]{width:4.90625rem;margin-right:.46875rem;height:1.875rem;border-radius:1.875rem;background-color:rgba(226,227,231,.5);display:flex;justify-content:center;align-items:center}.states-father .phone-number[data-v-bd9aba2f]{width:100%;height:2.5rem;display:flex;align-items:center;position:relative}.bottom-view[data-v-bd9aba2f]{margin-left:2.8125rem;margin-top:.625rem;width:15.9375rem;height:21.5625rem;border-radius:1.5625rem;background-color:rgba(226,227,231,.5);position:relative;display:flex;flex-wrap:wrap;overflow:hidden;align-items:flex-start;align-content:flex-start}.bottom-view .button-father[data-v-bd9aba2f]{margin-top:.625rem;margin-bottom:0;margin-left:1.40625rem;text-align:center}.bottom-view .button-father .bottom-button[data-v-bd9aba2f]{background-color:#f2f2f4;display:flex;justify-content:center;align-items:center;width:3.4375rem;height:3.4375rem;border:.03125rem solid #CDD3DD;border-radius:1.09375rem;margin-bottom:.15625rem}.big-view[data-v-bd9aba2f]{margin-left:2.8125rem;margin-top:.625rem;width:15.9375rem;height:10.625rem;border-radius:1.5625rem;background-color:rgba(226,227,231,.5);position:relative;display:flex;flex-direction:column;align-items:center;overflow:hidden}.big-view .font-weight[data-v-bd9aba2f]{font-size:1.25rem;margin-top:.9375rem;font-weight:600}.big-view .pao[data-v-bd9aba2f]{position:absolute;right:1.25rem;top:.625rem;width:2.65625rem;height:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.small-button[data-v-bd9aba2f]{margin-top:.3125rem;height:2.1875rem;display:flex}.small-button .gray-ball[data-v-bd9aba2f]{display:flex;justify-content:center;align-items:center;background-color:#f8f9fa;width:1.875rem;height:1.875rem;border-radius:50%;margin:0 .3125rem}.small-button .gray-ball .laba-img[data-v-bd9aba2f]{width:1.09375rem;height:1.09375rem}.right-bottom[data-v-bd9aba2f]{margin-left:1.5625rem;margin-top:.9375rem;width:17.1875rem;height:7.5rem;border-radius:1.5625rem;background-color:rgba(226,227,231,.5);position:relative}.right-bottom .bottom-img[data-v-bd9aba2f]{width:1.875rem;height:1.875rem;margin-bottom:.9375rem}.right-bottom .people-card[data-v-bd9aba2f]{width:7.65625rem;height:3.125rem;border-radius:.78125rem;background-color:rgba(248,249,250,.5);margin-left:.625rem;display:flex;justify-content:center;align-items:center}.right-father[data-v-bd9aba2f]{width:20.3125rem;position:absolute;right:0;top:0;display:flex;justify-content:center;align-items:center}.right-icons[data-v-bd9aba2f]{position:absolute;right:.9375rem;top:.9375rem;display:flex;align-items:center;height:1.875rem}.warning[data-v-bd9aba2f]{animation:glowFlash-bd9aba2f 1.2s infinite ease-in-out;border:.03125rem solid #ff5757;background-color:rgba(239,240,244,.5)}.zoom[data-v-bd9aba2f]{transform:scale(1.2);transform-origin:bottom left;transition:transform 1s ease}.juzhong[data-v-bd9aba2f]{position:absolute;top:0%;left:50%;transform:translate(-50%)}.zhezhao-left[data-v-bd9aba2f]{position:absolute;top:0;left:0%;height:100%;width:3.75rem;background:linear-gradient(to right,#eff0f4,rgba(239,240,244,0));z-index:4;pointer-events:none}.zhezhao-right[data-v-bd9aba2f]{position:absolute;top:0;right:34%;height:100%;width:3.75rem;background:linear-gradient(to left,#eff0f4,rgba(239,240,244,0));z-index:4;pointer-events:none}.zhezhao-top[data-v-bd9aba2f]{position:absolute;top:6.875rem;left:0%;width:10.9375rem;height:3.75rem;background:linear-gradient(to bottom,#eff0f4,rgba(239,240,244,0));z-index:4;pointer-events:none}.zhezhao-bottom[data-v-bd9aba2f]{position:absolute;bottom:14.0625rem;left:0%;width:10.9375rem;height:3.75rem;background:linear-gradient(to top,#eff0f4,rgba(239,240,244,0));z-index:4;pointer-events:none}.bgc-image[data-v-bd9aba2f]{width:15.625rem;height:6.25rem;position:absolute;top:-1.5625rem;left:0}.font-phone[data-v-bd9aba2f]{font-size:1.09375rem;font-weight:600;margin-left:.9375rem}.phone-ball[data-v-bd9aba2f]{width:1.5625rem;height:1.5625rem;position:absolute;top:50%;transform:translateY(-50%);right:4.0625rem}.target[data-v-bd9aba2f]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: 0;border-radius:var(--radius);background-color:#ddf0ff;animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:1}.targetbutton[data-v-bd9aba2f]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: .3125rem;border-radius:var(--radius);animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:1}.picture[data-v-bd9aba2f]{display:flex;margin-top:4.6875rem}.picture .picture-card[data-v-bd9aba2f]{display:flex;flex-direction:column;justify-content:center;align-items:center;margin-left:.625rem;margin-right:.3125rem;width:6.25rem}.picture .picture-card .bgc-card[data-v-bd9aba2f]{width:100%;height:4.0625rem;background-color:#eaeaec;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;margin-bottom:.3125rem}.jump-white[data-v-bd9aba2f]{position:absolute;bottom:.625rem;left:1.5625rem;width:9.375rem;height:12.5rem;background-color:#fff;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1)}.jump-item[data-v-bd9aba2f]{margin:.3125rem;height:1.875rem;justify-content:center;width:93%;display:flex;border-radius:.625rem;align-items:center}
diff --git a/unpackage/dist/build/app-plus/pages/watch/settings/settings.css b/unpackage/dist/build/app-plus/pages/watch/settings/settings.css
index 11c1827..864fc5d 100644
--- a/unpackage/dist/build/app-plus/pages/watch/settings/settings.css
+++ b/unpackage/dist/build/app-plus/pages/watch/settings/settings.css
@@ -1 +1 @@
-.neuro-wrapper[data-v-1c53b005]{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;z-index:999;opacity:0;pointer-events:none;transition:opacity .3s ease}.neuro-wrapper.is-active[data-v-1c53b005]{opacity:1;pointer-events:auto}.neuro-mask[data-v-1c53b005]{position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.3)}.neuro-box[data-v-1c53b005]{position:relative;width:18.75rem;height:14.0625rem;border-radius:.9375rem;background-color:#fff;display:flex;flex-direction:column;align-items:center;z-index:1;padding:0 10%}.button[data-v-1c53b005]{width:47%;background-color:#ddf0ff;display:flex;justify-content:center;align-items:center;color:#007cff;border:.03125rem solid #007CFF;font-size:.78125rem;border-radius:.9375rem}.title[data-v-1c53b005]{margin-top:2.1875rem}.card-font[data-v-1c53b005]{margin-top:2.1875rem;width:18.75rem;justify-content:center;display:flex}.button-white[data-v-1c53b005]{width:47%;border:.0625rem solid #c3cacd;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:.78125rem;border-radius:.9375rem}.button-father[data-v-1c53b005]{position:absolute;bottom:1.875rem;left:50%;transform:translate(-50%);width:100%;height:2.1875rem;display:flex;justify-content:space-between;padding:0 1.5625rem}.neuro-wrapper[data-v-8de7e110]{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;z-index:999;opacity:0;pointer-events:none;transition:opacity .3s ease}.neuro-wrapper.is-active[data-v-8de7e110]{opacity:1;pointer-events:auto}.neuro-mask[data-v-8de7e110]{position:absolute;top:0;right:0;bottom:0;left:0;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4)}.neuro-box[data-v-8de7e110]{position:relative;width:23.4375rem;height:21.875rem;border-radius:.9375rem;background-color:#fff;display:flex;flex-direction:column;align-items:center;z-index:1;padding:0 10%}.button[data-v-8de7e110]{width:100%;display:flex;justify-content:center;align-items:center;color:#fff;font-size:.78125rem;border-radius:1.09375rem;margin-left:.625rem;color:#007cff;font-size:.9375rem;background-color:#ddf0ff;border:.03125rem solid #007CFF}.title[data-v-8de7e110]{margin-top:2.1875rem;font-weight:600;font-size:1.09375rem}.card-font[data-v-8de7e110]{margin-top:2.1875rem;width:18.75rem;justify-content:center;display:flex}.button-white[data-v-8de7e110]{width:47%;border:.0625rem solid #c3cacd;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:.78125rem;border-radius:.9375rem}.button-father[data-v-8de7e110]{position:absolute;bottom:2.1875rem;left:50%;transform:translate(-50%);width:100%;height:2.5rem;display:flex;justify-content:center;padding:0 3.4375rem}.password-father[data-v-8de7e110]{margin-top:.9375rem;width:23.4375rem;padding:0 3.75rem;height:2.5rem}.password-father .password[data-v-8de7e110]{width:100%;background-color:rgba(239,240,244,.5);border-radius:.71875rem;height:2.5rem;padding-left:.625rem;font-size:.84375rem}.zy-modal[data-v-cd70e807]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1110;opacity:0;outline:0;text-align:center;transform:scale(1.185);-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:62.5rem;background:rgba(0,0,0,.6);transition:all .3s ease-in-out 0s;pointer-events:none}.zy-modal[data-v-cd70e807]:before{content:"\200b";display:inline-block;height:100%;vertical-align:middle}.zy-modal.show[data-v-cd70e807]{opacity:1;transition-duration:.3s;transform:scale(1);overflow-x:hidden;overflow-y:auto;pointer-events:auto}.zy-dialog[data-v-cd70e807]{position:relative;display:inline-block;vertical-align:middle;margin-left:auto;margin-right:auto;width:21.25rem;max-width:100%;background-color:#f8f8f8;border-radius:.3125rem;overflow:hidden}.zy-modal.bottom-modal[data-v-cd70e807]:before{vertical-align:bottom}.zy-modal.bottom-modal .zy-dialog[data-v-cd70e807]{width:100%;border-radius:0}.zy-modal.bottom-modal[data-v-cd70e807]{margin-bottom:-31.25rem}.zy-modal.bottom-modal.show[data-v-cd70e807]{margin-bottom:0}.zy-modal.drawer-modal[data-v-cd70e807]{transform:scale(1);display:flex}.zy-modal.drawer-modal .zy-dialog[data-v-cd70e807]{height:100%;min-width:6.25rem;border-radius:0;margin:initial;transition-duration:.3s}.zy-modal.drawer-modal.justify-start .zy-dialog[data-v-cd70e807]{transform:translate(-100%)}.zy-modal.drawer-modal.justify-end .zy-dialog[data-v-cd70e807]{transform:translate(100%)}.zy-modal.drawer-modal.show .zy-dialog[data-v-cd70e807]{transform:translate(0)}.zy-modal .zy-dialog>.zy-bar:first-child .action[data-v-cd70e807]{min-width:3.125rem;margin-right:0;min-height:3.125rem}.zy-progress[data-v-cd70e807]{overflow:hidden;height:.875rem;background-color:#ebeef5;display:inline-flex;align-items:center;width:100%}.zy-progress+uni-view[data-v-cd70e807],.zy-progress+uni-text[data-v-cd70e807]{line-height:1}.zy-progress.xs[data-v-cd70e807]{height:.3125rem}.zy-progress.sm[data-v-cd70e807]{height:.625rem}.zy-progress uni-view[data-v-cd70e807]{width:0;height:100%;align-items:center;display:flex;justify-items:flex-end;justify-content:space-around;font-size:.625rem;color:#fff;transition:width .6s ease}.zy-progress uni-text[data-v-cd70e807]{align-items:center;display:flex;font-size:.625rem;color:#333;text-indent:.3125rem}.zy-progress.text-progress[data-v-cd70e807]{padding-right:1.875rem}.zy-progress.striped uni-view[data-v-cd70e807]{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:2.25rem 2.25rem}.zy-progress.active uni-view[data-v-cd70e807]{animation:progress-stripes-cd70e807 2s linear infinite}@keyframes progress-stripes-cd70e807{0%{background-position:2.25rem 0}to{background-position:0 0}}.zy-btn[data-v-cd70e807]{height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.zy-btn[data-v-cd70e807]:after{display:none}.zy-btn[data-v-cd70e807]:not([class*=bg-]){background-color:#f0f0f0}.zy-btn[class*=line][data-v-cd70e807]{background-color:transparent}.zy-btn[class*=line][data-v-cd70e807]:after{content:" ";display:block;width:200%;height:200%;position:absolute;top:0;left:0;border:.03125rem solid currentColor;transform:scale(.5);transform-origin:0 0;box-sizing:border-box;border-radius:.375rem;z-index:1;pointer-events:none}.zy-btn.round[class*=line][data-v-cd70e807]:after{border-radius:31.25rem}.zy-btn[class*=lines][data-v-cd70e807]:after{border:.1875rem solid currentColor}.zy-btn[class*=bg-][data-v-cd70e807]:after{display:none}.zy-btn.sm[data-v-cd70e807]{padding:0 .625rem;font-size:.625rem;height:1.5rem}.zy-btn.lg[data-v-cd70e807]{padding:0 1.25rem;font-size:1rem;height:2.5rem}.zy-btn.cuIcon.sm[data-v-cd70e807]{width:1.5rem;height:1.5rem}.zy-btn.cuIcon[data-v-cd70e807]{width:2rem;height:2rem;border-radius:15.625rem;padding:0}uni-button.cuIcon.lg[data-v-cd70e807]{width:2.5rem;height:2.5rem}.zy-btn.shadow-blur[data-v-cd70e807]:before{top:.125rem;left:.125rem;filter:blur(.1875rem);opacity:.6}.zy-btn.button-hover[data-v-cd70e807]{transform:translate(.03125rem,.03125rem)}.block[data-v-cd70e807]{display:block}.zy-btn.block[data-v-cd70e807]{display:flex}.zy-btn[disabled][data-v-cd70e807]{opacity:.6;color:#fff}.margin-0[data-v-cd70e807]{margin:0}.margin-xs[data-v-cd70e807]{margin:.3125rem}.margin-sm[data-v-cd70e807]{margin:.625rem}.margin[data-v-cd70e807]{margin:.9375rem}.margin-lg[data-v-cd70e807]{margin:1.25rem}.margin-xl[data-v-cd70e807]{margin:1.5625rem}.margin-top-xs[data-v-cd70e807]{margin-top:.3125rem}.margin-top-sm[data-v-cd70e807]{margin-top:.625rem}.margin-top[data-v-cd70e807]{margin-top:.9375rem}.margin-top-lg[data-v-cd70e807]{margin-top:1.25rem}.margin-top-xl[data-v-cd70e807]{margin-top:1.5625rem}.margin-right-xs[data-v-cd70e807]{margin-right:.3125rem}.margin-right-sm[data-v-cd70e807]{margin-right:.625rem}.margin-right[data-v-cd70e807]{margin-right:.9375rem}.margin-right-lg[data-v-cd70e807]{margin-right:1.25rem}.margin-right-xl[data-v-cd70e807]{margin-right:1.5625rem}.margin-bottom-xs[data-v-cd70e807]{margin-bottom:.3125rem}.margin-bottom-sm[data-v-cd70e807]{margin-bottom:.625rem}.margin-bottom[data-v-cd70e807]{margin-bottom:.9375rem}.margin-bottom-lg[data-v-cd70e807]{margin-bottom:1.25rem}.margin-bottom-xl[data-v-cd70e807]{margin-bottom:1.5625rem}.margin-left-xs[data-v-cd70e807]{margin-left:.3125rem}.margin-left-sm[data-v-cd70e807]{margin-left:.625rem}.margin-left[data-v-cd70e807]{margin-left:.9375rem}.margin-left-lg[data-v-cd70e807]{margin-left:1.25rem}.margin-left-xl[data-v-cd70e807]{margin-left:1.5625rem}.margin-lr-xs[data-v-cd70e807]{margin-left:.3125rem;margin-right:.3125rem}.margin-lr-sm[data-v-cd70e807]{margin-left:.625rem;margin-right:.625rem}.margin-lr[data-v-cd70e807]{margin-left:.9375rem;margin-right:.9375rem}.margin-lr-lg[data-v-cd70e807]{margin-left:1.25rem;margin-right:1.25rem}.margin-lr-xl[data-v-cd70e807]{margin-left:1.5625rem;margin-right:1.5625rem}.margin-tb-xs[data-v-cd70e807]{margin-top:.3125rem;margin-bottom:.3125rem}.margin-tb-sm[data-v-cd70e807]{margin-top:.625rem;margin-bottom:.625rem}.margin-tb[data-v-cd70e807]{margin-top:.9375rem;margin-bottom:.9375rem}.margin-tb-lg[data-v-cd70e807]{margin-top:1.25rem;margin-bottom:1.25rem}.margin-tb-xl[data-v-cd70e807]{margin-top:1.5625rem;margin-bottom:1.5625rem}.padding-0[data-v-cd70e807]{padding:0}.padding-xs[data-v-cd70e807]{padding:.3125rem}.padding-sm[data-v-cd70e807]{padding:.625rem}.padding[data-v-cd70e807]{padding:.9375rem}.padding-lg[data-v-cd70e807]{padding:1.25rem}.padding-xl[data-v-cd70e807]{padding:1.5625rem}.padding-top-xs[data-v-cd70e807]{padding-top:.3125rem}.padding-top-sm[data-v-cd70e807]{padding-top:.625rem}.padding-top[data-v-cd70e807]{padding-top:.9375rem}.padding-top-lg[data-v-cd70e807]{padding-top:1.25rem}.padding-top-xl[data-v-cd70e807]{padding-top:1.5625rem}.padding-right-xs[data-v-cd70e807]{padding-right:.3125rem}.padding-right-sm[data-v-cd70e807]{padding-right:.625rem}.padding-right[data-v-cd70e807]{padding-right:.9375rem}.padding-right-lg[data-v-cd70e807]{padding-right:1.25rem}.padding-right-xl[data-v-cd70e807]{padding-right:1.5625rem}.padding-bottom-xs[data-v-cd70e807]{padding-bottom:.3125rem}.padding-bottom-sm[data-v-cd70e807]{padding-bottom:.625rem}.padding-bottom[data-v-cd70e807]{padding-bottom:.9375rem}.padding-bottom-lg[data-v-cd70e807]{padding-bottom:1.25rem}.padding-bottom-xl[data-v-cd70e807]{padding-bottom:1.5625rem}.padding-left-xs[data-v-cd70e807]{padding-left:.3125rem}.padding-left-sm[data-v-cd70e807]{padding-left:.625rem}.padding-left[data-v-cd70e807]{padding-left:.9375rem}.padding-left-lg[data-v-cd70e807]{padding-left:1.25rem}.padding-left-xl[data-v-cd70e807]{padding-left:1.5625rem}.padding-lr-xs[data-v-cd70e807]{padding-left:.3125rem;padding-right:.3125rem}.padding-lr-sm[data-v-cd70e807]{padding-left:.625rem;padding-right:.625rem}.padding-lr[data-v-cd70e807]{padding-left:.9375rem;padding-right:.9375rem}.padding-lr-lg[data-v-cd70e807]{padding-left:1.25rem;padding-right:1.25rem}.padding-lr-xl[data-v-cd70e807]{padding-left:1.5625rem;padding-right:1.5625rem}.padding-tb-xs[data-v-cd70e807]{padding-top:.3125rem;padding-bottom:.3125rem}.padding-tb-sm[data-v-cd70e807]{padding-top:.625rem;padding-bottom:.625rem}.padding-tb[data-v-cd70e807]{padding-top:.9375rem;padding-bottom:.9375rem}.padding-tb-lg[data-v-cd70e807]{padding-top:1.25rem;padding-bottom:1.25rem}.padding-tb-xl[data-v-cd70e807]{padding-top:1.5625rem;padding-bottom:1.5625rem}.zy-bar[data-v-cd70e807]{display:flex;position:relative;align-items:center;min-height:3.125rem;justify-content:space-between}.zy-bar .action[data-v-cd70e807]{display:flex;align-items:center;height:100%;justify-content:center;max-width:100%}.zy-bar .action.border-title[data-v-cd70e807]{position:relative;top:-.3125rem}.zy-bar .action.border-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;bottom:-.5rem;min-width:2rem;height:.1875rem;left:0}.zy-bar .action.sub-title[data-v-cd70e807]{position:relative;top:-.2rem}.zy-bar .action.sub-title uni-text[data-v-cd70e807]{position:relative;z-index:1}.zy-bar .action.sub-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.2rem;border-radius:.1875rem;width:100%;height:.6rem;left:.6rem;opacity:.3;z-index:0}.zy-bar .action.sub-title uni-text[class*=text-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.7rem;left:.5rem;opacity:.2;z-index:0;text-align:right;font-weight:900;font-size:1.125rem}.zy-bar.justify-center .action.border-title uni-text[data-v-cd70e807]:last-child,.zy-bar.justify-center .action.sub-title uni-text[data-v-cd70e807]:last-child{left:0;right:0;margin:auto;text-align:center}.zy-bar .action[data-v-cd70e807]:first-child{margin-left:.9375rem;font-size:.9375rem}.zy-bar .action uni-text.text-cut[data-v-cd70e807]{text-align:left;width:100%}.zy-bar .zy-avatar[data-v-cd70e807]:first-child{margin-left:.625rem}.zy-bar .action:first-child>uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:-.3em;margin-right:.3em}.zy-bar .action[data-v-cd70e807]:last-child{margin-right:.9375rem}.zy-bar .action>uni-text[class*=cuIcon-][data-v-cd70e807],.zy-bar .action>uni-view[class*=cuIcon-][data-v-cd70e807]{font-size:1.125rem}.zy-bar .action>uni-text[class*=cuIcon-]+uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:.5em}.zy-bar .content[data-v-cd70e807]{position:absolute;text-align:center;width:calc(100% - 10.625rem);left:0;right:0;bottom:0;top:0;margin:auto;height:1.875rem;font-size:1rem;line-height:1.875rem;cursor:none;pointer-events:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.zy-bar.ios .content[data-v-cd70e807]{bottom:7px;height:30px;font-size:1rem;line-height:30px}.zy-bar.btn-group[data-v-cd70e807]{justify-content:space-around}.zy-bar.btn-group uni-button[data-v-cd70e807]{padding:.625rem 1rem}.zy-bar.btn-group uni-button[data-v-cd70e807]{flex:1;margin:0 .625rem;max-width:50%}.zy-bar .search-form[data-v-cd70e807]{background-color:#f5f5f5;line-height:2rem;height:2rem;font-size:.75rem;color:#333;flex:1;display:flex;align-items:center;margin:0 .9375rem}.zy-bar .search-form+.action[data-v-cd70e807]{margin-right:.9375rem}.zy-bar .search-form uni-input[data-v-cd70e807]{flex:1;padding-right:.9375rem;height:2rem;line-height:2rem;font-size:.8125rem;background-color:transparent}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]{margin:0 .5em 0 .8em}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]:before{top:0}.zy-bar.fixed[data-v-cd70e807],.nav.fixed[data-v-cd70e807]{position:fixed;width:100%;top:0;z-index:1024;box-shadow:0 .03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.foot[data-v-cd70e807]{position:fixed;width:100%;bottom:0;z-index:1024;box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar[data-v-cd70e807]{padding:0;height:calc(3.125rem + env(safe-area-inset-bottom)/2);padding-bottom:calc(env(safe-area-inset-bottom)/2)}.zy-tabbar-height[data-v-cd70e807]{min-height:3.125rem;height:calc(3.125rem + env(safe-area-inset-bottom)/2)}.zy-bar.tabbar.shadow[data-v-cd70e807]{box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar .action[data-v-cd70e807]{font-size:.6875rem;position:relative;flex:1;text-align:center;padding:0;display:block;height:auto;line-height:1;margin:0;background-color:inherit;overflow:initial}.zy-bar.tabbar.shop .action[data-v-cd70e807]{width:4.375rem;flex:initial}.zy-bar.tabbar .action.add-action[data-v-cd70e807]{position:relative;z-index:2;padding-top:1.5625rem}.zy-bar.tabbar .action.add-action [class*=cuIcon-][data-v-cd70e807]{position:absolute;width:2.1875rem;z-index:2;height:2.1875rem;border-radius:50%;line-height:2.1875rem;font-size:1.5625rem;top:-1.09375rem;left:0;right:0;margin:auto;padding:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:after{content:"";position:absolute;width:3.125rem;height:3.125rem;top:-1.5625rem;left:0;right:0;margin:auto;box-shadow:0 -.09375rem .25rem rgba(0,0,0,.08);border-radius:1.5625rem;background-color:inherit;z-index:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:before{content:"";position:absolute;width:3.125rem;height:.9375rem;bottom:.9375rem;left:0;right:0;margin:auto;background-color:inherit;z-index:1}.zy-bar.tabbar .btn-group[data-v-cd70e807]{flex:1;display:flex;justify-content:space-around;align-items:center;padding:0 .3125rem}.zy-bar.tabbar uni-button.action[data-v-cd70e807]:after{border:0}.zy-bar.tabbar .action [class*=cuIcon-][data-v-cd70e807]{width:3.125rem;position:relative;display:block;height:auto;margin:0 auto .3125rem;text-align:center;font-size:1.25rem}.zy-bar.tabbar .action .cuIcon-zy-image[data-v-cd70e807]{margin:0 auto}.zy-bar.tabbar .action .cuIcon-zy-image uni-image[data-v-cd70e807]{width:1.5625rem;height:1.5625rem;display:inline-block}.zy-bar.tabbar .submit[data-v-cd70e807]{align-items:center;display:flex;justify-content:center;text-align:center;position:relative;flex:2;align-self:stretch}.zy-bar.tabbar .submit[data-v-cd70e807]:last-child{flex:2.6}.zy-bar.tabbar .submit+.submit[data-v-cd70e807]{flex:2}.zy-bar.tabbar.border .action[data-v-cd70e807]:before{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;transform:scale(.5);transform-origin:0 0;border-right:.03125rem solid rgba(0,0,0,.1);z-index:3}.zy-bar.tabbar.border .action[data-v-cd70e807]:last-child:before{display:none}.zy-bar.input[data-v-cd70e807]{padding-right:.625rem;background-color:#fff}.zy-bar.input uni-input[data-v-cd70e807]{overflow:initial;line-height:2rem;height:2rem;min-height:2rem;flex:1;font-size:.9375rem;margin:0 .625rem}.zy-bar.input .action[data-v-cd70e807]{margin-left:.625rem}.zy-bar.input .action [class*=cuIcon-][data-v-cd70e807]{font-size:1.5rem}.zy-bar.input uni-input+.action[data-v-cd70e807]{margin-right:.625rem;margin-left:0}.zy-bar.input .action:first-child [class*=cuIcon-][data-v-cd70e807]{margin-left:0}.zy-custom[data-v-cd70e807]{display:block;position:relative}.zy-custom .zy-bar .content[data-v-cd70e807]{width:calc(100% - 13.75rem)}.zy-custom .zy-bar .content uni-image[data-v-cd70e807]{height:1.875rem;width:7.5rem}.zy-custom .zy-bar[data-v-cd70e807]{min-height:0px;box-shadow:0 0;z-index:9999}.zy-custom .zy-bar .border-custom[data-v-cd70e807]{position:relative;background:rgba(0,0,0,.15);border-radius:31.25rem;height:30px}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:after{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;border-radius:inherit;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:.03125rem solid #ffffff;opacity:.5}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:before{content:" ";width:.03125rem;height:110%;position:absolute;top:22.5%;left:0;right:0;margin:auto;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;opacity:.6;background-color:#fff}.zy-custom .zy-bar .border-custom uni-text[data-v-cd70e807]{display:block;flex:1;margin:auto!important;text-align:center;font-size:1.0625rem}.flex[data-v-cd70e807]{display:flex}.basis-xs[data-v-cd70e807]{flex-basis:20%}.basis-sm[data-v-cd70e807]{flex-basis:40%}.basis-df[data-v-cd70e807]{flex-basis:50%}.basis-lg[data-v-cd70e807]{flex-basis:60%}.basis-xl[data-v-cd70e807]{flex-basis:80%}.flex-sub[data-v-cd70e807]{flex:1}.flex-twice[data-v-cd70e807]{flex:2}.flex-treble[data-v-cd70e807]{flex:3}.flex-direction[data-v-cd70e807]{flex-direction:column}.flex-wrap[data-v-cd70e807]{flex-wrap:wrap}.align-start[data-v-cd70e807]{align-items:flex-start}.align-end[data-v-cd70e807]{align-items:flex-end}.align-center[data-v-cd70e807]{align-items:center}.self-start[data-v-cd70e807]{align-self:flex-start}.self-center[data-v-cd70e807]{align-self:flex-center}.self-end[data-v-cd70e807]{align-self:flex-end}.self-stretch[data-v-cd70e807]{align-self:stretch}.align-stretch[data-v-cd70e807]{align-items:stretch}.justify-start[data-v-cd70e807]{justify-content:flex-start}.justify-end[data-v-cd70e807]{justify-content:flex-end}.justify-center[data-v-cd70e807]{justify-content:center}.justify-between[data-v-cd70e807]{justify-content:space-between}.justify-around[data-v-cd70e807]{justify-content:space-around}.line-red[data-v-cd70e807]:after,.lines-red[data-v-cd70e807]:after{border-color:#e54d42}.line-orange[data-v-cd70e807]:after,.lines-orange[data-v-cd70e807]:after{border-color:#f37b1d}.line-yellow[data-v-cd70e807]:after,.lines-yellow[data-v-cd70e807]:after{border-color:#fbbd08}.line-olive[data-v-cd70e807]:after,.lines-olive[data-v-cd70e807]:after{border-color:#8dc63f}.line-green[data-v-cd70e807]:after,.lines-green[data-v-cd70e807]:after{border-color:#39b54a}.line-cyan[data-v-cd70e807]:after,.lines-cyan[data-v-cd70e807]:after{border-color:#1cbbb4}.line-blue[data-v-cd70e807]:after,.lines-blue[data-v-cd70e807]:after{border-color:#0081ff}.line-purple[data-v-cd70e807]:after,.lines-purple[data-v-cd70e807]:after{border-color:#6739b6}.line-mauve[data-v-cd70e807]:after,.lines-mauve[data-v-cd70e807]:after{border-color:#9c26b0}.line-pink[data-v-cd70e807]:after,.lines-pink[data-v-cd70e807]:after{border-color:#e03997}.line-brown[data-v-cd70e807]:after,.lines-brown[data-v-cd70e807]:after{border-color:#a5673f}.line-grey[data-v-cd70e807]:after,.lines-grey[data-v-cd70e807]:after{border-color:#8799a3}.line-gray[data-v-cd70e807]:after,.lines-gray[data-v-cd70e807]:after{border-color:#aaa}.line-black[data-v-cd70e807]:after,.lines-black[data-v-cd70e807]:after{border-color:#333}.line-white[data-v-cd70e807]:after,.lines-white[data-v-cd70e807]:after{border-color:#fff}.bg-red[data-v-cd70e807]{background-color:#e54d42;color:#fff}.bg-orange[data-v-cd70e807]{background-color:#f37b1d;color:#fff}.bg-yellow[data-v-cd70e807]{background-color:#fbbd08;color:#333}.bg-olive[data-v-cd70e807]{background-color:#8dc63f;color:#fff}.bg-green[data-v-cd70e807]{background-color:#39b54a;color:#fff}.bg-cyan[data-v-cd70e807]{background-color:#1cbbb4;color:#fff}.bg-blue[data-v-cd70e807]{background-color:#0081ff;color:#fff}.bg-purple[data-v-cd70e807]{background-color:#6739b6;color:#fff}.bg-mauve[data-v-cd70e807]{background-color:#9c26b0;color:#fff}.bg-pink[data-v-cd70e807]{background-color:#e03997;color:#fff}.bg-brown[data-v-cd70e807]{background-color:#a5673f;color:#fff}.bg-grey[data-v-cd70e807]{background-color:#8799a3;color:#fff}.bg-gray[data-v-cd70e807]{background-color:#f0f0f0;color:#333}.bg-black[data-v-cd70e807]{background-color:#333;color:#fff}.bg-white[data-v-cd70e807]{background-color:#fff;color:#666}.bg-shadeTop[data-v-cd70e807]{background-image:linear-gradient(#000,rgba(0,0,0,.01));color:#fff}.bg-shadeBottom[data-v-cd70e807]{background-image:linear-gradient(rgba(0,0,0,.01),#000);color:#fff}.bg-red.light[data-v-cd70e807]{color:#e54d42;background-color:#fadbd9}.bg-orange.light[data-v-cd70e807]{color:#f37b1d;background-color:#fde6d2}.bg-yellow.light[data-v-cd70e807]{color:#fbbd08;background-color:rgba(254,242,206,.824)}.bg-olive.light[data-v-cd70e807]{color:#8dc63f;background-color:#e8f4d9}.bg-green.light[data-v-cd70e807]{color:#39b54a;background-color:#d7f0db}.bg-cyan.light[data-v-cd70e807]{color:#1cbbb4;background-color:#d2f1f0}.bg-blue.light[data-v-cd70e807]{color:#0081ff;background-color:#cce6ff}.bg-purple.light[data-v-cd70e807]{color:#6739b6;background-color:#e1d7f0}.bg-mauve.light[data-v-cd70e807]{color:#9c26b0;background-color:#ebd4ef}.bg-pink.light[data-v-cd70e807]{color:#e03997;background-color:#f9d7ea}.bg-brown.light[data-v-cd70e807]{color:#a5673f;background-color:#ede1d9}.bg-grey.light[data-v-cd70e807]{color:#8799a3;background-color:#e7ebed}.bg-gradual-red[data-v-cd70e807]{background-image:linear-gradient(45deg,#f43f3b,#ec008c);color:#fff}.bg-gradual-orange[data-v-cd70e807]{background-image:linear-gradient(45deg,#ff9700,#ed1c24);color:#fff}.bg-gradual-green[data-v-cd70e807]{background-image:linear-gradient(45deg,#39b54a,#8dc63f);color:#fff}.bg-gradual-purple[data-v-cd70e807]{background-image:linear-gradient(45deg,#9000ff,#5e00ff);color:#fff}.bg-gradual-pink[data-v-cd70e807]{background-image:linear-gradient(45deg,#ec008c,#6739b6);color:#fff}.bg-gradual-blue[data-v-cd70e807]{background-image:linear-gradient(45deg,#0081ff,#1cbbb4);color:#fff}.shadow[class*=-red][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.shadow[class*=-orange][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.shadow[class*=-yellow][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.shadow[class*=-olive][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.shadow[class*=-green][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.shadow[class*=-cyan][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.shadow[class*=-blue][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.shadow[class*=-purple][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.shadow[class*=-mauve][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.shadow[class*=-pink][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.shadow[class*=-brown][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.shadow[class*=-grey][data-v-cd70e807],.shadow[class*=-gray][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.shadow[class*=-black][data-v-cd70e807],.shadow[class*=-white][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.text-shadow[class*=-red][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.text-shadow[class*=-orange][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.text-shadow[class*=-yellow][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.text-shadow[class*=-olive][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.text-shadow[class*=-green][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.text-shadow[class*=-cyan][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.text-shadow[class*=-blue][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.text-shadow[class*=-purple][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.text-shadow[class*=-mauve][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.text-shadow[class*=-pink][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.text-shadow[class*=-brown][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.text-shadow[class*=-grey][data-v-cd70e807],.text-shadow[class*=-gray][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.text-shadow[class*=-black][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.bg-img[data-v-cd70e807]{background-size:cover;background-position:center;background-repeat:no-repeat}.bg-mask[data-v-cd70e807]{background-color:#333;position:relative}.bg-mask[data-v-cd70e807]:after{content:"";border-radius:inherit;width:100%;height:100%;display:block;background-color:rgba(0,0,0,.4);position:absolute;left:0;right:0;bottom:0;top:0}.bg-mask uni-view[data-v-cd70e807],.bg-mask uni-cover-view[data-v-cd70e807]{z-index:5;position:relative}.bg-video[data-v-cd70e807]{position:relative}.bg-video uni-video[data-v-cd70e807]{display:block;height:100%;width:100%;object-fit:cover;position:absolute;top:0;z-index:0;pointer-events:none}.text-xs[data-v-cd70e807]{font-size:.625rem}.text-sm[data-v-cd70e807]{font-size:.75rem}.text-df[data-v-cd70e807]{font-size:.875rem}.text-lg[data-v-cd70e807]{font-size:1rem}.text-xl[data-v-cd70e807]{font-size:1.125rem}.text-xxl[data-v-cd70e807]{font-size:1.375rem}.text-sl[data-v-cd70e807]{font-size:2.5rem}.text-xsl[data-v-cd70e807]{font-size:3.75rem}.text-Abc[data-v-cd70e807]{text-transform:Capitalize}.text-ABC[data-v-cd70e807]{text-transform:Uppercase}.text-abc[data-v-cd70e807]{text-transform:Lowercase}.text-price[data-v-cd70e807]:before{content:"\a5";font-size:80%;margin-right:.125rem}.text-cut[data-v-cd70e807]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.text-bold[data-v-cd70e807]{font-weight:700}.text-center[data-v-cd70e807]{text-align:center}.text-content[data-v-cd70e807]{line-height:1.6}.text-left[data-v-cd70e807]{text-align:left}.text-right[data-v-cd70e807]{text-align:right}.text-red[data-v-cd70e807],.line-red[data-v-cd70e807],.lines-red[data-v-cd70e807]{color:#e54d42}.text-orange[data-v-cd70e807],.line-orange[data-v-cd70e807],.lines-orange[data-v-cd70e807]{color:#f37b1d}.text-yellow[data-v-cd70e807],.line-yellow[data-v-cd70e807],.lines-yellow[data-v-cd70e807]{color:#fbbd08}.text-olive[data-v-cd70e807],.line-olive[data-v-cd70e807],.lines-olive[data-v-cd70e807]{color:#8dc63f}.text-green[data-v-cd70e807],.line-green[data-v-cd70e807],.lines-green[data-v-cd70e807]{color:#39b54a}.text-cyan[data-v-cd70e807],.line-cyan[data-v-cd70e807],.lines-cyan[data-v-cd70e807]{color:#1cbbb4}.text-blue[data-v-cd70e807],.line-blue[data-v-cd70e807],.lines-blue[data-v-cd70e807]{color:#0081ff}.text-purple[data-v-cd70e807],.line-purple[data-v-cd70e807],.lines-purple[data-v-cd70e807]{color:#6739b6}.text-mauve[data-v-cd70e807],.line-mauve[data-v-cd70e807],.lines-mauve[data-v-cd70e807]{color:#9c26b0}.text-pink[data-v-cd70e807],.line-pink[data-v-cd70e807],.lines-pink[data-v-cd70e807]{color:#e03997}.text-brown[data-v-cd70e807],.line-brown[data-v-cd70e807],.lines-brown[data-v-cd70e807]{color:#a5673f}.text-grey[data-v-cd70e807],.line-grey[data-v-cd70e807],.lines-grey[data-v-cd70e807]{color:#8799a3}.text-gray[data-v-cd70e807],.line-gray[data-v-cd70e807],.lines-gray[data-v-cd70e807]{color:#aaa}.text-black[data-v-cd70e807],.line-black[data-v-cd70e807],.lines-black[data-v-cd70e807]{color:#333}.text-white[data-v-cd70e807],.line-white[data-v-cd70e807],.lines-white[data-v-cd70e807]{color:#fff}.zy-upgrade-topbg-green[data-v-cd70e807]{background-image:url(../../../assets/green.20d5f80a.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-red[data-v-cd70e807]{background-image:url(../../../assets/red.8267d3cf.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-pink[data-v-cd70e807]{background-image:url(../../../assets/pink.78f243a3.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-yellow[data-v-cd70e807]{background-image:url(../../../assets/yellow.4438648c.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-blue[data-v-cd70e807]{background-size:100% 100%;background-repeat:no-repeat}.zy-upgrade-title[data-v-cd70e807]{font-size:1.09375rem;font-weight:600}.all[data-v-8b11c490]{margin-top:1.40625rem}.all .all-content[data-v-8b11c490]{width:100%;height:40.625rem}.all[data-v-842c1160]{margin-top:1.40625rem}.all .all-content[data-v-842c1160]{width:100%;height:40.625rem}.index-content-other[data-v-ccb4084b]{width:100%;height:100%;transition:opacity 1s ease;position:relative;background-color:#eff0f4}.index-content-right[data-v-ccb4084b]{width:100%;border-radius:1.5625rem;display:flex;align-items:center;padding-top:3.125rem;font-size:1rem}.item[data-v-ccb4084b]{display:flex;align-items:center;justify-content:space-between;width:100%;height:4.0625rem}.item .left-item[data-v-ccb4084b]{display:flex;align-items:center;margin-left:.625rem}.item .left-item .left-icon[data-v-ccb4084b]{margin:0 .625rem;width:1.25rem;height:1.25rem}.item .right-item[data-v-ccb4084b]{display:flex;align-items:center;margin-right:1.5625rem}.item .right-item .right-icon[data-v-ccb4084b]{width:.46875rem;height:.9375rem}.array-father[data-v-ccb4084b]{background-color:rgba(255,255,255,.6);width:76%;margin-left:12%;border-radius:.9375rem;margin-top:.9375rem}.bottom-button[data-v-ccb4084b]{margin-top:.9375rem;background-color:rgba(255,255,255,.6);width:76%;margin-left:12%;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:.9375rem;height:3.125rem;color:#0174d3}.popup-any[data-v-ccb4084b]{position:fixed;top:0;right:0;bottom:0;left:0;opacity:0;transition:opacity .5s ease;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4);z-index:999}.mask[data-v-ccb4084b]{position:absolute;top:0;right:0;bottom:0;left:0}.box-any[data-v-ccb4084b]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:31.25rem;height:46.875rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;padding:2.03125rem 1.875rem}.title-left[data-v-ccb4084b]{display:flex;align-items:center;justify-content:center}.title-left .back-img[data-v-ccb4084b]{width:1.875rem;height:1.875rem;margin-right:.9375rem}.title-left .back-font[data-v-ccb4084b]{font-size:1.09375rem;font-weight:600}.back-img[data-v-ccb4084b]{width:.9375rem;height:.9375rem;margin-left:3.125rem;margin-right:.625rem}.text-center[data-v-ccb4084b]{margin-top:1.25rem;width:100%;display:flex;justify-content:center}
+.neuro-wrapper[data-v-9117e9d1]{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;z-index:999;opacity:0;pointer-events:none;transition:opacity .3s ease}.neuro-wrapper.is-active[data-v-9117e9d1]{opacity:1;pointer-events:auto}.neuro-mask[data-v-9117e9d1]{position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.3)}.neuro-box[data-v-9117e9d1]{position:relative;width:18.75rem;height:14.0625rem;border-radius:.9375rem;background-color:#fff;display:flex;flex-direction:column;align-items:center;z-index:1;padding:0 10%}.button[data-v-9117e9d1]{width:47%;background-color:#ddf0ff;display:flex;justify-content:center;align-items:center;color:#007cff;border:.03125rem solid #007CFF;font-size:.78125rem;border-radius:.9375rem}.title[data-v-9117e9d1]{margin-top:2.1875rem}.card-font[data-v-9117e9d1]{margin-top:2.1875rem;width:18.75rem;justify-content:center;display:flex}.button-white[data-v-9117e9d1]{width:47%;border:.0625rem solid #c3cacd;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:.78125rem;border-radius:.9375rem}.button-father[data-v-9117e9d1]{position:absolute;bottom:1.875rem;left:50%;transform:translate(-50%);width:100%;height:2.1875rem;display:flex;justify-content:space-between;padding:0 1.5625rem}.neuro-wrapper[data-v-8de7e110]{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;z-index:999;opacity:0;pointer-events:none;transition:opacity .3s ease}.neuro-wrapper.is-active[data-v-8de7e110]{opacity:1;pointer-events:auto}.neuro-mask[data-v-8de7e110]{position:absolute;top:0;right:0;bottom:0;left:0;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4)}.neuro-box[data-v-8de7e110]{position:relative;width:23.4375rem;height:21.875rem;border-radius:.9375rem;background-color:#fff;display:flex;flex-direction:column;align-items:center;z-index:1;padding:0 10%}.button[data-v-8de7e110]{width:100%;display:flex;justify-content:center;align-items:center;color:#fff;font-size:.78125rem;border-radius:1.09375rem;margin-left:.625rem;color:#007cff;font-size:.9375rem;background-color:#ddf0ff;border:.03125rem solid #007CFF}.title[data-v-8de7e110]{margin-top:2.1875rem;font-weight:600;font-size:1.09375rem}.card-font[data-v-8de7e110]{margin-top:2.1875rem;width:18.75rem;justify-content:center;display:flex}.button-white[data-v-8de7e110]{width:47%;border:.0625rem solid #c3cacd;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:.78125rem;border-radius:.9375rem}.button-father[data-v-8de7e110]{position:absolute;bottom:2.1875rem;left:50%;transform:translate(-50%);width:100%;height:2.5rem;display:flex;justify-content:center;padding:0 3.4375rem}.password-father[data-v-8de7e110]{margin-top:.9375rem;width:23.4375rem;padding:0 3.75rem;height:2.5rem}.password-father .password[data-v-8de7e110]{width:100%;background-color:rgba(239,240,244,.5);border-radius:.71875rem;height:2.5rem;padding-left:.625rem;font-size:.84375rem}.zy-modal[data-v-cd70e807]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1110;opacity:0;outline:0;text-align:center;transform:scale(1.185);-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:62.5rem;background:rgba(0,0,0,.6);transition:all .3s ease-in-out 0s;pointer-events:none}.zy-modal[data-v-cd70e807]:before{content:"\200b";display:inline-block;height:100%;vertical-align:middle}.zy-modal.show[data-v-cd70e807]{opacity:1;transition-duration:.3s;transform:scale(1);overflow-x:hidden;overflow-y:auto;pointer-events:auto}.zy-dialog[data-v-cd70e807]{position:relative;display:inline-block;vertical-align:middle;margin-left:auto;margin-right:auto;width:21.25rem;max-width:100%;background-color:#f8f8f8;border-radius:.3125rem;overflow:hidden}.zy-modal.bottom-modal[data-v-cd70e807]:before{vertical-align:bottom}.zy-modal.bottom-modal .zy-dialog[data-v-cd70e807]{width:100%;border-radius:0}.zy-modal.bottom-modal[data-v-cd70e807]{margin-bottom:-31.25rem}.zy-modal.bottom-modal.show[data-v-cd70e807]{margin-bottom:0}.zy-modal.drawer-modal[data-v-cd70e807]{transform:scale(1);display:flex}.zy-modal.drawer-modal .zy-dialog[data-v-cd70e807]{height:100%;min-width:6.25rem;border-radius:0;margin:initial;transition-duration:.3s}.zy-modal.drawer-modal.justify-start .zy-dialog[data-v-cd70e807]{transform:translate(-100%)}.zy-modal.drawer-modal.justify-end .zy-dialog[data-v-cd70e807]{transform:translate(100%)}.zy-modal.drawer-modal.show .zy-dialog[data-v-cd70e807]{transform:translate(0)}.zy-modal .zy-dialog>.zy-bar:first-child .action[data-v-cd70e807]{min-width:3.125rem;margin-right:0;min-height:3.125rem}.zy-progress[data-v-cd70e807]{overflow:hidden;height:.875rem;background-color:#ebeef5;display:inline-flex;align-items:center;width:100%}.zy-progress+uni-view[data-v-cd70e807],.zy-progress+uni-text[data-v-cd70e807]{line-height:1}.zy-progress.xs[data-v-cd70e807]{height:.3125rem}.zy-progress.sm[data-v-cd70e807]{height:.625rem}.zy-progress uni-view[data-v-cd70e807]{width:0;height:100%;align-items:center;display:flex;justify-items:flex-end;justify-content:space-around;font-size:.625rem;color:#fff;transition:width .6s ease}.zy-progress uni-text[data-v-cd70e807]{align-items:center;display:flex;font-size:.625rem;color:#333;text-indent:.3125rem}.zy-progress.text-progress[data-v-cd70e807]{padding-right:1.875rem}.zy-progress.striped uni-view[data-v-cd70e807]{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:2.25rem 2.25rem}.zy-progress.active uni-view[data-v-cd70e807]{animation:progress-stripes-cd70e807 2s linear infinite}@keyframes progress-stripes-cd70e807{0%{background-position:2.25rem 0}to{background-position:0 0}}.zy-btn[data-v-cd70e807]{height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.zy-btn[data-v-cd70e807]:after{display:none}.zy-btn[data-v-cd70e807]:not([class*=bg-]){background-color:#f0f0f0}.zy-btn[class*=line][data-v-cd70e807]{background-color:transparent}.zy-btn[class*=line][data-v-cd70e807]:after{content:" ";display:block;width:200%;height:200%;position:absolute;top:0;left:0;border:.03125rem solid currentColor;transform:scale(.5);transform-origin:0 0;box-sizing:border-box;border-radius:.375rem;z-index:1;pointer-events:none}.zy-btn.round[class*=line][data-v-cd70e807]:after{border-radius:31.25rem}.zy-btn[class*=lines][data-v-cd70e807]:after{border:.1875rem solid currentColor}.zy-btn[class*=bg-][data-v-cd70e807]:after{display:none}.zy-btn.sm[data-v-cd70e807]{padding:0 .625rem;font-size:.625rem;height:1.5rem}.zy-btn.lg[data-v-cd70e807]{padding:0 1.25rem;font-size:1rem;height:2.5rem}.zy-btn.cuIcon.sm[data-v-cd70e807]{width:1.5rem;height:1.5rem}.zy-btn.cuIcon[data-v-cd70e807]{width:2rem;height:2rem;border-radius:15.625rem;padding:0}uni-button.cuIcon.lg[data-v-cd70e807]{width:2.5rem;height:2.5rem}.zy-btn.shadow-blur[data-v-cd70e807]:before{top:.125rem;left:.125rem;filter:blur(.1875rem);opacity:.6}.zy-btn.button-hover[data-v-cd70e807]{transform:translate(.03125rem,.03125rem)}.block[data-v-cd70e807]{display:block}.zy-btn.block[data-v-cd70e807]{display:flex}.zy-btn[disabled][data-v-cd70e807]{opacity:.6;color:#fff}.margin-0[data-v-cd70e807]{margin:0}.margin-xs[data-v-cd70e807]{margin:.3125rem}.margin-sm[data-v-cd70e807]{margin:.625rem}.margin[data-v-cd70e807]{margin:.9375rem}.margin-lg[data-v-cd70e807]{margin:1.25rem}.margin-xl[data-v-cd70e807]{margin:1.5625rem}.margin-top-xs[data-v-cd70e807]{margin-top:.3125rem}.margin-top-sm[data-v-cd70e807]{margin-top:.625rem}.margin-top[data-v-cd70e807]{margin-top:.9375rem}.margin-top-lg[data-v-cd70e807]{margin-top:1.25rem}.margin-top-xl[data-v-cd70e807]{margin-top:1.5625rem}.margin-right-xs[data-v-cd70e807]{margin-right:.3125rem}.margin-right-sm[data-v-cd70e807]{margin-right:.625rem}.margin-right[data-v-cd70e807]{margin-right:.9375rem}.margin-right-lg[data-v-cd70e807]{margin-right:1.25rem}.margin-right-xl[data-v-cd70e807]{margin-right:1.5625rem}.margin-bottom-xs[data-v-cd70e807]{margin-bottom:.3125rem}.margin-bottom-sm[data-v-cd70e807]{margin-bottom:.625rem}.margin-bottom[data-v-cd70e807]{margin-bottom:.9375rem}.margin-bottom-lg[data-v-cd70e807]{margin-bottom:1.25rem}.margin-bottom-xl[data-v-cd70e807]{margin-bottom:1.5625rem}.margin-left-xs[data-v-cd70e807]{margin-left:.3125rem}.margin-left-sm[data-v-cd70e807]{margin-left:.625rem}.margin-left[data-v-cd70e807]{margin-left:.9375rem}.margin-left-lg[data-v-cd70e807]{margin-left:1.25rem}.margin-left-xl[data-v-cd70e807]{margin-left:1.5625rem}.margin-lr-xs[data-v-cd70e807]{margin-left:.3125rem;margin-right:.3125rem}.margin-lr-sm[data-v-cd70e807]{margin-left:.625rem;margin-right:.625rem}.margin-lr[data-v-cd70e807]{margin-left:.9375rem;margin-right:.9375rem}.margin-lr-lg[data-v-cd70e807]{margin-left:1.25rem;margin-right:1.25rem}.margin-lr-xl[data-v-cd70e807]{margin-left:1.5625rem;margin-right:1.5625rem}.margin-tb-xs[data-v-cd70e807]{margin-top:.3125rem;margin-bottom:.3125rem}.margin-tb-sm[data-v-cd70e807]{margin-top:.625rem;margin-bottom:.625rem}.margin-tb[data-v-cd70e807]{margin-top:.9375rem;margin-bottom:.9375rem}.margin-tb-lg[data-v-cd70e807]{margin-top:1.25rem;margin-bottom:1.25rem}.margin-tb-xl[data-v-cd70e807]{margin-top:1.5625rem;margin-bottom:1.5625rem}.padding-0[data-v-cd70e807]{padding:0}.padding-xs[data-v-cd70e807]{padding:.3125rem}.padding-sm[data-v-cd70e807]{padding:.625rem}.padding[data-v-cd70e807]{padding:.9375rem}.padding-lg[data-v-cd70e807]{padding:1.25rem}.padding-xl[data-v-cd70e807]{padding:1.5625rem}.padding-top-xs[data-v-cd70e807]{padding-top:.3125rem}.padding-top-sm[data-v-cd70e807]{padding-top:.625rem}.padding-top[data-v-cd70e807]{padding-top:.9375rem}.padding-top-lg[data-v-cd70e807]{padding-top:1.25rem}.padding-top-xl[data-v-cd70e807]{padding-top:1.5625rem}.padding-right-xs[data-v-cd70e807]{padding-right:.3125rem}.padding-right-sm[data-v-cd70e807]{padding-right:.625rem}.padding-right[data-v-cd70e807]{padding-right:.9375rem}.padding-right-lg[data-v-cd70e807]{padding-right:1.25rem}.padding-right-xl[data-v-cd70e807]{padding-right:1.5625rem}.padding-bottom-xs[data-v-cd70e807]{padding-bottom:.3125rem}.padding-bottom-sm[data-v-cd70e807]{padding-bottom:.625rem}.padding-bottom[data-v-cd70e807]{padding-bottom:.9375rem}.padding-bottom-lg[data-v-cd70e807]{padding-bottom:1.25rem}.padding-bottom-xl[data-v-cd70e807]{padding-bottom:1.5625rem}.padding-left-xs[data-v-cd70e807]{padding-left:.3125rem}.padding-left-sm[data-v-cd70e807]{padding-left:.625rem}.padding-left[data-v-cd70e807]{padding-left:.9375rem}.padding-left-lg[data-v-cd70e807]{padding-left:1.25rem}.padding-left-xl[data-v-cd70e807]{padding-left:1.5625rem}.padding-lr-xs[data-v-cd70e807]{padding-left:.3125rem;padding-right:.3125rem}.padding-lr-sm[data-v-cd70e807]{padding-left:.625rem;padding-right:.625rem}.padding-lr[data-v-cd70e807]{padding-left:.9375rem;padding-right:.9375rem}.padding-lr-lg[data-v-cd70e807]{padding-left:1.25rem;padding-right:1.25rem}.padding-lr-xl[data-v-cd70e807]{padding-left:1.5625rem;padding-right:1.5625rem}.padding-tb-xs[data-v-cd70e807]{padding-top:.3125rem;padding-bottom:.3125rem}.padding-tb-sm[data-v-cd70e807]{padding-top:.625rem;padding-bottom:.625rem}.padding-tb[data-v-cd70e807]{padding-top:.9375rem;padding-bottom:.9375rem}.padding-tb-lg[data-v-cd70e807]{padding-top:1.25rem;padding-bottom:1.25rem}.padding-tb-xl[data-v-cd70e807]{padding-top:1.5625rem;padding-bottom:1.5625rem}.zy-bar[data-v-cd70e807]{display:flex;position:relative;align-items:center;min-height:3.125rem;justify-content:space-between}.zy-bar .action[data-v-cd70e807]{display:flex;align-items:center;height:100%;justify-content:center;max-width:100%}.zy-bar .action.border-title[data-v-cd70e807]{position:relative;top:-.3125rem}.zy-bar .action.border-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;bottom:-.5rem;min-width:2rem;height:.1875rem;left:0}.zy-bar .action.sub-title[data-v-cd70e807]{position:relative;top:-.2rem}.zy-bar .action.sub-title uni-text[data-v-cd70e807]{position:relative;z-index:1}.zy-bar .action.sub-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.2rem;border-radius:.1875rem;width:100%;height:.6rem;left:.6rem;opacity:.3;z-index:0}.zy-bar .action.sub-title uni-text[class*=text-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.7rem;left:.5rem;opacity:.2;z-index:0;text-align:right;font-weight:900;font-size:1.125rem}.zy-bar.justify-center .action.border-title uni-text[data-v-cd70e807]:last-child,.zy-bar.justify-center .action.sub-title uni-text[data-v-cd70e807]:last-child{left:0;right:0;margin:auto;text-align:center}.zy-bar .action[data-v-cd70e807]:first-child{margin-left:.9375rem;font-size:.9375rem}.zy-bar .action uni-text.text-cut[data-v-cd70e807]{text-align:left;width:100%}.zy-bar .zy-avatar[data-v-cd70e807]:first-child{margin-left:.625rem}.zy-bar .action:first-child>uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:-.3em;margin-right:.3em}.zy-bar .action[data-v-cd70e807]:last-child{margin-right:.9375rem}.zy-bar .action>uni-text[class*=cuIcon-][data-v-cd70e807],.zy-bar .action>uni-view[class*=cuIcon-][data-v-cd70e807]{font-size:1.125rem}.zy-bar .action>uni-text[class*=cuIcon-]+uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:.5em}.zy-bar .content[data-v-cd70e807]{position:absolute;text-align:center;width:calc(100% - 10.625rem);left:0;right:0;bottom:0;top:0;margin:auto;height:1.875rem;font-size:1rem;line-height:1.875rem;cursor:none;pointer-events:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.zy-bar.ios .content[data-v-cd70e807]{bottom:7px;height:30px;font-size:1rem;line-height:30px}.zy-bar.btn-group[data-v-cd70e807]{justify-content:space-around}.zy-bar.btn-group uni-button[data-v-cd70e807]{padding:.625rem 1rem}.zy-bar.btn-group uni-button[data-v-cd70e807]{flex:1;margin:0 .625rem;max-width:50%}.zy-bar .search-form[data-v-cd70e807]{background-color:#f5f5f5;line-height:2rem;height:2rem;font-size:.75rem;color:#333;flex:1;display:flex;align-items:center;margin:0 .9375rem}.zy-bar .search-form+.action[data-v-cd70e807]{margin-right:.9375rem}.zy-bar .search-form uni-input[data-v-cd70e807]{flex:1;padding-right:.9375rem;height:2rem;line-height:2rem;font-size:.8125rem;background-color:transparent}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]{margin:0 .5em 0 .8em}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]:before{top:0}.zy-bar.fixed[data-v-cd70e807],.nav.fixed[data-v-cd70e807]{position:fixed;width:100%;top:0;z-index:1024;box-shadow:0 .03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.foot[data-v-cd70e807]{position:fixed;width:100%;bottom:0;z-index:1024;box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar[data-v-cd70e807]{padding:0;height:calc(3.125rem + env(safe-area-inset-bottom)/2);padding-bottom:calc(env(safe-area-inset-bottom)/2)}.zy-tabbar-height[data-v-cd70e807]{min-height:3.125rem;height:calc(3.125rem + env(safe-area-inset-bottom)/2)}.zy-bar.tabbar.shadow[data-v-cd70e807]{box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar .action[data-v-cd70e807]{font-size:.6875rem;position:relative;flex:1;text-align:center;padding:0;display:block;height:auto;line-height:1;margin:0;background-color:inherit;overflow:initial}.zy-bar.tabbar.shop .action[data-v-cd70e807]{width:4.375rem;flex:initial}.zy-bar.tabbar .action.add-action[data-v-cd70e807]{position:relative;z-index:2;padding-top:1.5625rem}.zy-bar.tabbar .action.add-action [class*=cuIcon-][data-v-cd70e807]{position:absolute;width:2.1875rem;z-index:2;height:2.1875rem;border-radius:50%;line-height:2.1875rem;font-size:1.5625rem;top:-1.09375rem;left:0;right:0;margin:auto;padding:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:after{content:"";position:absolute;width:3.125rem;height:3.125rem;top:-1.5625rem;left:0;right:0;margin:auto;box-shadow:0 -.09375rem .25rem rgba(0,0,0,.08);border-radius:1.5625rem;background-color:inherit;z-index:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:before{content:"";position:absolute;width:3.125rem;height:.9375rem;bottom:.9375rem;left:0;right:0;margin:auto;background-color:inherit;z-index:1}.zy-bar.tabbar .btn-group[data-v-cd70e807]{flex:1;display:flex;justify-content:space-around;align-items:center;padding:0 .3125rem}.zy-bar.tabbar uni-button.action[data-v-cd70e807]:after{border:0}.zy-bar.tabbar .action [class*=cuIcon-][data-v-cd70e807]{width:3.125rem;position:relative;display:block;height:auto;margin:0 auto .3125rem;text-align:center;font-size:1.25rem}.zy-bar.tabbar .action .cuIcon-zy-image[data-v-cd70e807]{margin:0 auto}.zy-bar.tabbar .action .cuIcon-zy-image uni-image[data-v-cd70e807]{width:1.5625rem;height:1.5625rem;display:inline-block}.zy-bar.tabbar .submit[data-v-cd70e807]{align-items:center;display:flex;justify-content:center;text-align:center;position:relative;flex:2;align-self:stretch}.zy-bar.tabbar .submit[data-v-cd70e807]:last-child{flex:2.6}.zy-bar.tabbar .submit+.submit[data-v-cd70e807]{flex:2}.zy-bar.tabbar.border .action[data-v-cd70e807]:before{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;transform:scale(.5);transform-origin:0 0;border-right:.03125rem solid rgba(0,0,0,.1);z-index:3}.zy-bar.tabbar.border .action[data-v-cd70e807]:last-child:before{display:none}.zy-bar.input[data-v-cd70e807]{padding-right:.625rem;background-color:#fff}.zy-bar.input uni-input[data-v-cd70e807]{overflow:initial;line-height:2rem;height:2rem;min-height:2rem;flex:1;font-size:.9375rem;margin:0 .625rem}.zy-bar.input .action[data-v-cd70e807]{margin-left:.625rem}.zy-bar.input .action [class*=cuIcon-][data-v-cd70e807]{font-size:1.5rem}.zy-bar.input uni-input+.action[data-v-cd70e807]{margin-right:.625rem;margin-left:0}.zy-bar.input .action:first-child [class*=cuIcon-][data-v-cd70e807]{margin-left:0}.zy-custom[data-v-cd70e807]{display:block;position:relative}.zy-custom .zy-bar .content[data-v-cd70e807]{width:calc(100% - 13.75rem)}.zy-custom .zy-bar .content uni-image[data-v-cd70e807]{height:1.875rem;width:7.5rem}.zy-custom .zy-bar[data-v-cd70e807]{min-height:0px;box-shadow:0 0;z-index:9999}.zy-custom .zy-bar .border-custom[data-v-cd70e807]{position:relative;background:rgba(0,0,0,.15);border-radius:31.25rem;height:30px}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:after{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;border-radius:inherit;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:.03125rem solid #ffffff;opacity:.5}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:before{content:" ";width:.03125rem;height:110%;position:absolute;top:22.5%;left:0;right:0;margin:auto;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;opacity:.6;background-color:#fff}.zy-custom .zy-bar .border-custom uni-text[data-v-cd70e807]{display:block;flex:1;margin:auto!important;text-align:center;font-size:1.0625rem}.flex[data-v-cd70e807]{display:flex}.basis-xs[data-v-cd70e807]{flex-basis:20%}.basis-sm[data-v-cd70e807]{flex-basis:40%}.basis-df[data-v-cd70e807]{flex-basis:50%}.basis-lg[data-v-cd70e807]{flex-basis:60%}.basis-xl[data-v-cd70e807]{flex-basis:80%}.flex-sub[data-v-cd70e807]{flex:1}.flex-twice[data-v-cd70e807]{flex:2}.flex-treble[data-v-cd70e807]{flex:3}.flex-direction[data-v-cd70e807]{flex-direction:column}.flex-wrap[data-v-cd70e807]{flex-wrap:wrap}.align-start[data-v-cd70e807]{align-items:flex-start}.align-end[data-v-cd70e807]{align-items:flex-end}.align-center[data-v-cd70e807]{align-items:center}.self-start[data-v-cd70e807]{align-self:flex-start}.self-center[data-v-cd70e807]{align-self:flex-center}.self-end[data-v-cd70e807]{align-self:flex-end}.self-stretch[data-v-cd70e807]{align-self:stretch}.align-stretch[data-v-cd70e807]{align-items:stretch}.justify-start[data-v-cd70e807]{justify-content:flex-start}.justify-end[data-v-cd70e807]{justify-content:flex-end}.justify-center[data-v-cd70e807]{justify-content:center}.justify-between[data-v-cd70e807]{justify-content:space-between}.justify-around[data-v-cd70e807]{justify-content:space-around}.line-red[data-v-cd70e807]:after,.lines-red[data-v-cd70e807]:after{border-color:#e54d42}.line-orange[data-v-cd70e807]:after,.lines-orange[data-v-cd70e807]:after{border-color:#f37b1d}.line-yellow[data-v-cd70e807]:after,.lines-yellow[data-v-cd70e807]:after{border-color:#fbbd08}.line-olive[data-v-cd70e807]:after,.lines-olive[data-v-cd70e807]:after{border-color:#8dc63f}.line-green[data-v-cd70e807]:after,.lines-green[data-v-cd70e807]:after{border-color:#39b54a}.line-cyan[data-v-cd70e807]:after,.lines-cyan[data-v-cd70e807]:after{border-color:#1cbbb4}.line-blue[data-v-cd70e807]:after,.lines-blue[data-v-cd70e807]:after{border-color:#0081ff}.line-purple[data-v-cd70e807]:after,.lines-purple[data-v-cd70e807]:after{border-color:#6739b6}.line-mauve[data-v-cd70e807]:after,.lines-mauve[data-v-cd70e807]:after{border-color:#9c26b0}.line-pink[data-v-cd70e807]:after,.lines-pink[data-v-cd70e807]:after{border-color:#e03997}.line-brown[data-v-cd70e807]:after,.lines-brown[data-v-cd70e807]:after{border-color:#a5673f}.line-grey[data-v-cd70e807]:after,.lines-grey[data-v-cd70e807]:after{border-color:#8799a3}.line-gray[data-v-cd70e807]:after,.lines-gray[data-v-cd70e807]:after{border-color:#aaa}.line-black[data-v-cd70e807]:after,.lines-black[data-v-cd70e807]:after{border-color:#333}.line-white[data-v-cd70e807]:after,.lines-white[data-v-cd70e807]:after{border-color:#fff}.bg-red[data-v-cd70e807]{background-color:#e54d42;color:#fff}.bg-orange[data-v-cd70e807]{background-color:#f37b1d;color:#fff}.bg-yellow[data-v-cd70e807]{background-color:#fbbd08;color:#333}.bg-olive[data-v-cd70e807]{background-color:#8dc63f;color:#fff}.bg-green[data-v-cd70e807]{background-color:#39b54a;color:#fff}.bg-cyan[data-v-cd70e807]{background-color:#1cbbb4;color:#fff}.bg-blue[data-v-cd70e807]{background-color:#0081ff;color:#fff}.bg-purple[data-v-cd70e807]{background-color:#6739b6;color:#fff}.bg-mauve[data-v-cd70e807]{background-color:#9c26b0;color:#fff}.bg-pink[data-v-cd70e807]{background-color:#e03997;color:#fff}.bg-brown[data-v-cd70e807]{background-color:#a5673f;color:#fff}.bg-grey[data-v-cd70e807]{background-color:#8799a3;color:#fff}.bg-gray[data-v-cd70e807]{background-color:#f0f0f0;color:#333}.bg-black[data-v-cd70e807]{background-color:#333;color:#fff}.bg-white[data-v-cd70e807]{background-color:#fff;color:#666}.bg-shadeTop[data-v-cd70e807]{background-image:linear-gradient(#000,rgba(0,0,0,.01));color:#fff}.bg-shadeBottom[data-v-cd70e807]{background-image:linear-gradient(rgba(0,0,0,.01),#000);color:#fff}.bg-red.light[data-v-cd70e807]{color:#e54d42;background-color:#fadbd9}.bg-orange.light[data-v-cd70e807]{color:#f37b1d;background-color:#fde6d2}.bg-yellow.light[data-v-cd70e807]{color:#fbbd08;background-color:rgba(254,242,206,.824)}.bg-olive.light[data-v-cd70e807]{color:#8dc63f;background-color:#e8f4d9}.bg-green.light[data-v-cd70e807]{color:#39b54a;background-color:#d7f0db}.bg-cyan.light[data-v-cd70e807]{color:#1cbbb4;background-color:#d2f1f0}.bg-blue.light[data-v-cd70e807]{color:#0081ff;background-color:#cce6ff}.bg-purple.light[data-v-cd70e807]{color:#6739b6;background-color:#e1d7f0}.bg-mauve.light[data-v-cd70e807]{color:#9c26b0;background-color:#ebd4ef}.bg-pink.light[data-v-cd70e807]{color:#e03997;background-color:#f9d7ea}.bg-brown.light[data-v-cd70e807]{color:#a5673f;background-color:#ede1d9}.bg-grey.light[data-v-cd70e807]{color:#8799a3;background-color:#e7ebed}.bg-gradual-red[data-v-cd70e807]{background-image:linear-gradient(45deg,#f43f3b,#ec008c);color:#fff}.bg-gradual-orange[data-v-cd70e807]{background-image:linear-gradient(45deg,#ff9700,#ed1c24);color:#fff}.bg-gradual-green[data-v-cd70e807]{background-image:linear-gradient(45deg,#39b54a,#8dc63f);color:#fff}.bg-gradual-purple[data-v-cd70e807]{background-image:linear-gradient(45deg,#9000ff,#5e00ff);color:#fff}.bg-gradual-pink[data-v-cd70e807]{background-image:linear-gradient(45deg,#ec008c,#6739b6);color:#fff}.bg-gradual-blue[data-v-cd70e807]{background-image:linear-gradient(45deg,#0081ff,#1cbbb4);color:#fff}.shadow[class*=-red][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.shadow[class*=-orange][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.shadow[class*=-yellow][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.shadow[class*=-olive][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.shadow[class*=-green][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.shadow[class*=-cyan][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.shadow[class*=-blue][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.shadow[class*=-purple][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.shadow[class*=-mauve][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.shadow[class*=-pink][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.shadow[class*=-brown][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.shadow[class*=-grey][data-v-cd70e807],.shadow[class*=-gray][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.shadow[class*=-black][data-v-cd70e807],.shadow[class*=-white][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.text-shadow[class*=-red][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.text-shadow[class*=-orange][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.text-shadow[class*=-yellow][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.text-shadow[class*=-olive][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.text-shadow[class*=-green][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.text-shadow[class*=-cyan][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.text-shadow[class*=-blue][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.text-shadow[class*=-purple][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.text-shadow[class*=-mauve][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.text-shadow[class*=-pink][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.text-shadow[class*=-brown][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.text-shadow[class*=-grey][data-v-cd70e807],.text-shadow[class*=-gray][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.text-shadow[class*=-black][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.bg-img[data-v-cd70e807]{background-size:cover;background-position:center;background-repeat:no-repeat}.bg-mask[data-v-cd70e807]{background-color:#333;position:relative}.bg-mask[data-v-cd70e807]:after{content:"";border-radius:inherit;width:100%;height:100%;display:block;background-color:rgba(0,0,0,.4);position:absolute;left:0;right:0;bottom:0;top:0}.bg-mask uni-view[data-v-cd70e807],.bg-mask uni-cover-view[data-v-cd70e807]{z-index:5;position:relative}.bg-video[data-v-cd70e807]{position:relative}.bg-video uni-video[data-v-cd70e807]{display:block;height:100%;width:100%;object-fit:cover;position:absolute;top:0;z-index:0;pointer-events:none}.text-xs[data-v-cd70e807]{font-size:.625rem}.text-sm[data-v-cd70e807]{font-size:.75rem}.text-df[data-v-cd70e807]{font-size:.875rem}.text-lg[data-v-cd70e807]{font-size:1rem}.text-xl[data-v-cd70e807]{font-size:1.125rem}.text-xxl[data-v-cd70e807]{font-size:1.375rem}.text-sl[data-v-cd70e807]{font-size:2.5rem}.text-xsl[data-v-cd70e807]{font-size:3.75rem}.text-Abc[data-v-cd70e807]{text-transform:Capitalize}.text-ABC[data-v-cd70e807]{text-transform:Uppercase}.text-abc[data-v-cd70e807]{text-transform:Lowercase}.text-price[data-v-cd70e807]:before{content:"\a5";font-size:80%;margin-right:.125rem}.text-cut[data-v-cd70e807]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.text-bold[data-v-cd70e807]{font-weight:700}.text-center[data-v-cd70e807]{text-align:center}.text-content[data-v-cd70e807]{line-height:1.6}.text-left[data-v-cd70e807]{text-align:left}.text-right[data-v-cd70e807]{text-align:right}.text-red[data-v-cd70e807],.line-red[data-v-cd70e807],.lines-red[data-v-cd70e807]{color:#e54d42}.text-orange[data-v-cd70e807],.line-orange[data-v-cd70e807],.lines-orange[data-v-cd70e807]{color:#f37b1d}.text-yellow[data-v-cd70e807],.line-yellow[data-v-cd70e807],.lines-yellow[data-v-cd70e807]{color:#fbbd08}.text-olive[data-v-cd70e807],.line-olive[data-v-cd70e807],.lines-olive[data-v-cd70e807]{color:#8dc63f}.text-green[data-v-cd70e807],.line-green[data-v-cd70e807],.lines-green[data-v-cd70e807]{color:#39b54a}.text-cyan[data-v-cd70e807],.line-cyan[data-v-cd70e807],.lines-cyan[data-v-cd70e807]{color:#1cbbb4}.text-blue[data-v-cd70e807],.line-blue[data-v-cd70e807],.lines-blue[data-v-cd70e807]{color:#0081ff}.text-purple[data-v-cd70e807],.line-purple[data-v-cd70e807],.lines-purple[data-v-cd70e807]{color:#6739b6}.text-mauve[data-v-cd70e807],.line-mauve[data-v-cd70e807],.lines-mauve[data-v-cd70e807]{color:#9c26b0}.text-pink[data-v-cd70e807],.line-pink[data-v-cd70e807],.lines-pink[data-v-cd70e807]{color:#e03997}.text-brown[data-v-cd70e807],.line-brown[data-v-cd70e807],.lines-brown[data-v-cd70e807]{color:#a5673f}.text-grey[data-v-cd70e807],.line-grey[data-v-cd70e807],.lines-grey[data-v-cd70e807]{color:#8799a3}.text-gray[data-v-cd70e807],.line-gray[data-v-cd70e807],.lines-gray[data-v-cd70e807]{color:#aaa}.text-black[data-v-cd70e807],.line-black[data-v-cd70e807],.lines-black[data-v-cd70e807]{color:#333}.text-white[data-v-cd70e807],.line-white[data-v-cd70e807],.lines-white[data-v-cd70e807]{color:#fff}.zy-upgrade-topbg-green[data-v-cd70e807]{background-image:url(../../../assets/green.20d5f80a.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-red[data-v-cd70e807]{background-image:url(../../../assets/red.8267d3cf.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-pink[data-v-cd70e807]{background-image:url(../../../assets/pink.78f243a3.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-yellow[data-v-cd70e807]{background-image:url(../../../assets/yellow.4438648c.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-blue[data-v-cd70e807]{background-size:100% 100%;background-repeat:no-repeat}.zy-upgrade-title[data-v-cd70e807]{font-size:1.09375rem;font-weight:600}.all[data-v-8b11c490]{margin-top:1.40625rem}.all .all-content[data-v-8b11c490]{width:100%;height:40.625rem}.all[data-v-842c1160]{margin-top:1.40625rem}.all .all-content[data-v-842c1160]{width:100%;height:40.625rem}.index-content-other[data-v-ccb4084b]{width:100%;height:100%;transition:opacity 1s ease;position:relative;background-color:#eff0f4}.index-content-right[data-v-ccb4084b]{width:100%;border-radius:1.5625rem;display:flex;align-items:center;padding-top:3.125rem;font-size:1rem}.item[data-v-ccb4084b]{display:flex;align-items:center;justify-content:space-between;width:100%;height:4.0625rem}.item .left-item[data-v-ccb4084b]{display:flex;align-items:center;margin-left:.625rem}.item .left-item .left-icon[data-v-ccb4084b]{margin:0 .625rem;width:1.25rem;height:1.25rem}.item .right-item[data-v-ccb4084b]{display:flex;align-items:center;margin-right:1.5625rem}.item .right-item .right-icon[data-v-ccb4084b]{width:.46875rem;height:.9375rem}.array-father[data-v-ccb4084b]{background-color:rgba(255,255,255,.6);width:76%;margin-left:12%;border-radius:.9375rem;margin-top:.9375rem}.bottom-button[data-v-ccb4084b]{margin-top:.9375rem;background-color:rgba(255,255,255,.6);width:76%;margin-left:12%;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:.9375rem;height:3.125rem;color:#0174d3}.popup-any[data-v-ccb4084b]{position:fixed;top:0;right:0;bottom:0;left:0;opacity:0;transition:opacity .5s ease;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4);z-index:999}.mask[data-v-ccb4084b]{position:absolute;top:0;right:0;bottom:0;left:0}.box-any[data-v-ccb4084b]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:31.25rem;height:46.875rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;padding:2.03125rem 1.875rem}.title-left[data-v-ccb4084b]{display:flex;align-items:center;justify-content:center}.title-left .back-img[data-v-ccb4084b]{width:1.875rem;height:1.875rem;margin-right:.9375rem}.title-left .back-font[data-v-ccb4084b]{font-size:1.09375rem;font-weight:600}.back-img[data-v-ccb4084b]{width:.9375rem;height:.9375rem;margin-left:3.125rem;margin-right:.625rem}.text-center[data-v-ccb4084b]{margin-top:1.25rem;width:100%;display:flex;justify-content:center}
diff --git a/unpackage/dist/build/app-plus/static/index/camera/00.png b/unpackage/dist/build/app-plus/static/index/camera/00.png
new file mode 100644
index 0000000..b5c8496
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/00.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/01.png b/unpackage/dist/build/app-plus/static/index/camera/01.png
new file mode 100644
index 0000000..8ce7818
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/01.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/10.png b/unpackage/dist/build/app-plus/static/index/camera/10.png
new file mode 100644
index 0000000..20d0188
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/10.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/11.png b/unpackage/dist/build/app-plus/static/index/camera/11.png
new file mode 100644
index 0000000..4afb7a4
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/11.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/20.png b/unpackage/dist/build/app-plus/static/index/camera/20.png
new file mode 100644
index 0000000..7584047
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/20.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/21.png b/unpackage/dist/build/app-plus/static/index/camera/21.png
new file mode 100644
index 0000000..1cc00a1
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/21.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/30.png b/unpackage/dist/build/app-plus/static/index/camera/30.png
new file mode 100644
index 0000000..bae7140
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/30.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/31.png b/unpackage/dist/build/app-plus/static/index/camera/31.png
new file mode 100644
index 0000000..439de58
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/31.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/40.png b/unpackage/dist/build/app-plus/static/index/camera/40.png
new file mode 100644
index 0000000..a3b821d
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/40.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/41.png b/unpackage/dist/build/app-plus/static/index/camera/41.png
new file mode 100644
index 0000000..015c3c3
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/41.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/50.png b/unpackage/dist/build/app-plus/static/index/camera/50.png
new file mode 100644
index 0000000..12846db
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/50.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/51.png b/unpackage/dist/build/app-plus/static/index/camera/51.png
new file mode 100644
index 0000000..f077966
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/51.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/60.png b/unpackage/dist/build/app-plus/static/index/camera/60.png
new file mode 100644
index 0000000..e49613c
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/60.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/61.png b/unpackage/dist/build/app-plus/static/index/camera/61.png
new file mode 100644
index 0000000..d487215
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/61.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/70.png b/unpackage/dist/build/app-plus/static/index/camera/70.png
new file mode 100644
index 0000000..56491f7
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/70.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/71.png b/unpackage/dist/build/app-plus/static/index/camera/71.png
new file mode 100644
index 0000000..83ad832
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/71.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/80.png b/unpackage/dist/build/app-plus/static/index/camera/80.png
new file mode 100644
index 0000000..0684b6f
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/80.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/watch/Wheel/800.png b/unpackage/dist/build/app-plus/static/index/camera/800.png
similarity index 100%
rename from unpackage/dist/build/app-plus/static/index/watch/Wheel/800.png
rename to unpackage/dist/build/app-plus/static/index/camera/800.png
diff --git a/unpackage/dist/build/app-plus/static/index/watch/Wheel/801.png b/unpackage/dist/build/app-plus/static/index/camera/801.png
similarity index 100%
rename from unpackage/dist/build/app-plus/static/index/watch/Wheel/801.png
rename to unpackage/dist/build/app-plus/static/index/camera/801.png
diff --git a/unpackage/dist/build/app-plus/static/index/camera/81.png b/unpackage/dist/build/app-plus/static/index/camera/81.png
new file mode 100644
index 0000000..d2e096a
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/81.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/watch/Wheel/810.png b/unpackage/dist/build/app-plus/static/index/camera/810.png
similarity index 100%
rename from unpackage/dist/build/app-plus/static/index/watch/Wheel/810.png
rename to unpackage/dist/build/app-plus/static/index/camera/810.png
diff --git a/unpackage/dist/build/app-plus/static/index/watch/Wheel/811.png b/unpackage/dist/build/app-plus/static/index/camera/811.png
similarity index 100%
rename from unpackage/dist/build/app-plus/static/index/watch/Wheel/811.png
rename to unpackage/dist/build/app-plus/static/index/camera/811.png
diff --git a/unpackage/dist/build/app-plus/static/index/watch/Wheel/820.png b/unpackage/dist/build/app-plus/static/index/camera/820.png
similarity index 100%
rename from unpackage/dist/build/app-plus/static/index/watch/Wheel/820.png
rename to unpackage/dist/build/app-plus/static/index/camera/820.png
diff --git a/unpackage/dist/build/app-plus/static/index/watch/Wheel/821.png b/unpackage/dist/build/app-plus/static/index/camera/821.png
similarity index 100%
rename from unpackage/dist/build/app-plus/static/index/watch/Wheel/821.png
rename to unpackage/dist/build/app-plus/static/index/camera/821.png
diff --git a/unpackage/dist/build/app-plus/static/index/watch/Wheel/830.png b/unpackage/dist/build/app-plus/static/index/camera/830.png
similarity index 100%
rename from unpackage/dist/build/app-plus/static/index/watch/Wheel/830.png
rename to unpackage/dist/build/app-plus/static/index/camera/830.png
diff --git a/unpackage/dist/build/app-plus/static/index/watch/Wheel/831.png b/unpackage/dist/build/app-plus/static/index/camera/831.png
similarity index 100%
rename from unpackage/dist/build/app-plus/static/index/watch/Wheel/831.png
rename to unpackage/dist/build/app-plus/static/index/camera/831.png
diff --git a/unpackage/dist/build/app-plus/static/index/camera/90.png b/unpackage/dist/build/app-plus/static/index/camera/90.png
new file mode 100644
index 0000000..0420380
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/90.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/91.png b/unpackage/dist/build/app-plus/static/index/camera/91.png
new file mode 100644
index 0000000..d17d712
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/91.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/arrow1.png b/unpackage/dist/build/app-plus/static/index/camera/arrow1.png
new file mode 100644
index 0000000..bc0952f
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/arrow1.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/arrow2.png b/unpackage/dist/build/app-plus/static/index/camera/arrow2.png
new file mode 100644
index 0000000..0dc5213
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/arrow2.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/arrow3.png b/unpackage/dist/build/app-plus/static/index/camera/arrow3.png
new file mode 100644
index 0000000..1317337
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/arrow3.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/arrow4.png b/unpackage/dist/build/app-plus/static/index/camera/arrow4.png
new file mode 100644
index 0000000..23e7a26
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/arrow4.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/arrow5.png b/unpackage/dist/build/app-plus/static/index/camera/arrow5.png
new file mode 100644
index 0000000..96cd0fa
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/arrow5.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/camera/back.png b/unpackage/dist/build/app-plus/static/index/camera/back.png
new file mode 100644
index 0000000..3de7100
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/camera/back.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/picture/00.png b/unpackage/dist/build/app-plus/static/index/picture/00.png
new file mode 100644
index 0000000..943b5b0
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/picture/00.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/picture/01.png b/unpackage/dist/build/app-plus/static/index/picture/01.png
new file mode 100644
index 0000000..934560e
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/picture/01.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/picture/10.png b/unpackage/dist/build/app-plus/static/index/picture/10.png
new file mode 100644
index 0000000..a4bddfe
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/picture/10.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/picture/11.png b/unpackage/dist/build/app-plus/static/index/picture/11.png
new file mode 100644
index 0000000..a2cbf78
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/picture/11.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/picture/20.png b/unpackage/dist/build/app-plus/static/index/picture/20.png
new file mode 100644
index 0000000..1582c39
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/picture/20.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/picture/21.png b/unpackage/dist/build/app-plus/static/index/picture/21.png
new file mode 100644
index 0000000..bd3955b
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/picture/21.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/picture/30.png b/unpackage/dist/build/app-plus/static/index/picture/30.png
new file mode 100644
index 0000000..697595e
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/picture/30.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/picture/31.png b/unpackage/dist/build/app-plus/static/index/picture/31.png
new file mode 100644
index 0000000..9ad4625
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/picture/31.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/picture/40.png b/unpackage/dist/build/app-plus/static/index/picture/40.png
new file mode 100644
index 0000000..3ae9683
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/picture/40.png differ
diff --git a/unpackage/dist/build/app-plus/static/index/picture/41.png b/unpackage/dist/build/app-plus/static/index/picture/41.png
new file mode 100644
index 0000000..4c9680c
Binary files /dev/null and b/unpackage/dist/build/app-plus/static/index/picture/41.png differ
diff --git a/unpackage/dist/dev/.nvue/_plugin-vue_export-helper.js b/unpackage/dist/dev/.nvue/_plugin-vue_export-helper.js
deleted file mode 100644
index 6d7c473..0000000
--- a/unpackage/dist/dev/.nvue/_plugin-vue_export-helper.js
+++ /dev/null
@@ -1,23 +0,0 @@
-import "vue";
-function requireNativePlugin(name) {
- return weex.requireModule(name);
-}
-function formatAppLog(type, filename, ...args) {
- if (uni.__log__) {
- uni.__log__(type, filename, ...args);
- } else {
- console[type].apply(console, [...args, filename]);
- }
-}
-const _export_sfc = (sfc, props) => {
- const target = sfc.__vccOpts || sfc;
- for (const [key, val] of props) {
- target[key] = val;
- }
- return target;
-};
-export {
- _export_sfc as _,
- formatAppLog as f,
- requireNativePlugin as r
-};
diff --git a/unpackage/dist/dev/.nvue/pages/camera.js b/unpackage/dist/dev/.nvue/pages/camera.js
index 2e8aab8..882caf2 100644
--- a/unpackage/dist/dev/.nvue/pages/camera.js
+++ b/unpackage/dist/dev/.nvue/pages/camera.js
@@ -9,7 +9,7 @@ function formatAppLog(type, filename, ...args) {
console[type].apply(console, [...args, filename]);
}
}
-const _style_0 = { "center-column": { "": { "width": 600, "height": 450, "borderRadius": 30, "overflow": "hidden" } } };
+const _style_0 = { "center-column": { "": { "width": 630, "height": 510, "overflow": "hidden" } } };
const _export_sfc = (sfc, props) => {
const target = sfc.__vccOpts || sfc;
for (const [key, val] of props) {
@@ -33,14 +33,37 @@ const _sfc_main = {
snapshot: [],
record: [],
talk: []
- }
+ },
+ suo: true
};
},
onLoad() {
const globalEvent = requireNativePlugin && requireNativePlugin("globalEvent");
if (globalEvent && globalEvent.addEventListener) {
globalEvent.addEventListener("myEvent", (e) => {
- formatAppLog("log", "at pages/camera.nvue:39", "myEvent", e);
+ formatAppLog("log", "at pages/camera.nvue:40", e);
+ if (e.recordUrl) {
+ uni.showToast({
+ title: "录屏成功",
+ icon: "success",
+ // 'success' | 'loading' | 'none'
+ duration: 1500
+ });
+ }
+ if (e.snapShotUrl) {
+ uni.showToast({
+ title: "截屏成功",
+ icon: "success",
+ // 'success' | 'loading' | 'none'
+ duration: 1500
+ });
+ }
+ if (this.suo && e.onVolumeChange) {
+ if (e.onVolumeChange) {
+ this.toggleVolume();
+ }
+ this.suo = false;
+ }
});
}
uni.$on("monitor:doSnapshot", this.doSnapshot);
@@ -75,27 +98,27 @@ const _sfc_main = {
methods: {
/* ------------------ 原有功能 ------------------ */
handleTelEvent(event) {
- formatAppLog("log", "at pages/camera.nvue:79", "Tel event detail:", event.detail);
+ formatAppLog("log", "at pages/camera.nvue:102", "Tel event detail:", event.detail);
},
switchDisplay(mode) {
- formatAppLog("log", "at pages/camera.nvue:84", "zzzzz", mode);
+ formatAppLog("log", "at pages/camera.nvue:107", "zzzzz", mode);
this.$refs.monitor && this.$refs.monitor.switchDisplayModeFragment(mode);
},
startAlarm() {
this.isAlarming = true;
this.$refs.monitor.startOrStopManualAlarm(this.isAlarming, (res) => {
- formatAppLog("log", "at pages/camera.nvue:91", "startAlarm callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:114", "startAlarm callback:", res);
});
},
stopAlarm() {
this.isAlarming = false;
this.$refs.monitor.startOrStopManualAlarm(this.isAlarming, (res) => {
- formatAppLog("log", "at pages/camera.nvue:97", "stopAlarm callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:120", "stopAlarm callback:", res);
});
},
flipImage(type) {
this.$refs.monitor.changeImageSwitch(type, (res) => {
- formatAppLog("log", "at pages/camera.nvue:103", "flipImage callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:126", "flipImage callback:", res);
});
},
resumeOrPause() {
@@ -126,12 +149,12 @@ const _sfc_main = {
}
try {
this.$refs.monitor.snapShot((res) => {
- formatAppLog("log", "at pages/camera.nvue:143", "snapShot callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:166", "snapShot callback:", res);
this._handleSnapshotResultFromNative(res, payload.reqId);
});
uni.showToast({ title: "正在截屏...", icon: "none", duration: 800 });
} catch (err) {
- formatAppLog("error", "at pages/camera.nvue:148", "snapShot 调用失败", err);
+ formatAppLog("error", "at pages/camera.nvue:171", "snapShot 调用失败", err);
uni.showToast({ title: "snapShot 调用失败", icon: "none" });
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: false, error: "snapShot_call_failed", detail: String(err) });
@@ -150,7 +173,7 @@ const _sfc_main = {
}
try {
this.$refs.monitor.startRecord((res) => {
- formatAppLog("log", "at pages/camera.nvue:168", "startRecord callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:191", "startRecord callback:", res);
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: true, res });
}
@@ -158,7 +181,7 @@ const _sfc_main = {
this.isRecording = true;
uni.showToast({ title: "录屏已开始", icon: "none" });
} catch (err) {
- formatAppLog("error", "at pages/camera.nvue:177", "startRecord 调用失败", err);
+ formatAppLog("error", "at pages/camera.nvue:200", "startRecord 调用失败", err);
uni.showToast({ title: "startRecord 调用失败", icon: "none" });
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: false, error: "startRecord_call_failed", detail: String(err) });
@@ -180,11 +203,11 @@ const _sfc_main = {
}
try {
this.$refs.monitor.stopRecord((res) => {
- formatAppLog("log", "at pages/camera.nvue:203", "stopRecord callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:226", "stopRecord callback:", res);
this._handleRecordResultFromNative(res, payload.reqId);
});
} catch (err) {
- formatAppLog("error", "at pages/camera.nvue:208", "stopRecord 调用失败", err);
+ formatAppLog("error", "at pages/camera.nvue:231", "stopRecord 调用失败", err);
uni.showToast({ title: "stopRecord 调用失败", icon: "none" });
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: false, error: "stopRecord_call_failed", detail: String(err) });
@@ -206,7 +229,7 @@ const _sfc_main = {
}
try {
this.$refs.monitor.openTalk((res) => {
- formatAppLog("log", "at pages/camera.nvue:232", "openTalk callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:255", "openTalk callback:", res);
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: true, res });
}
@@ -214,7 +237,7 @@ const _sfc_main = {
this.isTalking = true;
uni.showToast({ title: "尝试建立对讲连接...", icon: "none" });
} catch (err) {
- formatAppLog("error", "at pages/camera.nvue:241", "openTalk 调用失败", err);
+ formatAppLog("error", "at pages/camera.nvue:264", "openTalk 调用失败", err);
uni.showToast({ title: "openTalk 调用失败", icon: "none" });
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: false, error: "openTalk_call_failed", detail: String(err) });
@@ -233,14 +256,14 @@ const _sfc_main = {
}
try {
this.$refs.monitor.stopTalk((res) => {
- formatAppLog("log", "at pages/camera.nvue:261", "stopTalk callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:284", "stopTalk callback:", res);
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: true, res });
}
});
this.isTalking = false;
} catch (err) {
- formatAppLog("error", "at pages/camera.nvue:268", "stopTalk 调用失败", err);
+ formatAppLog("error", "at pages/camera.nvue:291", "stopTalk 调用失败", err);
uni.showToast({ title: "stopTalk 调用失败", icon: "none" });
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: false, error: "stopTalk_call_failed", detail: String(err) });
@@ -251,19 +274,19 @@ const _sfc_main = {
// 处理来自模板 @onSnapShot 的事件(event.detail)
handleSnapShotEvent(event) {
const payload = event && event.detail ? event.detail : event;
- formatAppLog("log", "at pages/camera.nvue:281", "onSnapShot event:", payload);
+ formatAppLog("log", "at pages/camera.nvue:304", "onSnapShot event:", payload);
this._handleSnapshotResultFromNative(payload);
},
// 处理来自模板 @onRecord 的事件(event.detail)
handleRecordEvent(event) {
const payload = event && event.detail ? event.detail : event;
- formatAppLog("log", "at pages/camera.nvue:289", "onRecord event:", payload);
+ formatAppLog("log", "at pages/camera.nvue:312", "onRecord event:", payload);
this._handleRecordResultFromNative(payload);
},
// 处理来自模板 @onTalkStatus 的事件
handleTalkEvent(event) {
const payload = event && event.detail ? event.detail : event;
- formatAppLog("log", "at pages/camera.nvue:296", "onTalkStatus event:", payload);
+ formatAppLog("log", "at pages/camera.nvue:319", "onTalkStatus event:", payload);
const status = payload && payload.talkStatus;
const tips = payload && payload.tips;
uni.$emit("monitor:talk:status", payload);
@@ -307,7 +330,7 @@ const _sfc_main = {
let payload = res;
if (res.detail)
payload = res.detail;
- formatAppLog("log", "at pages/camera.nvue:349", "snapshot payload normalized:", payload);
+ formatAppLog("log", "at pages/camera.nvue:372", "snapshot payload normalized:", payload);
if (reqIdFromCallback) {
uni.$emit(`monitor:response:${reqIdFromCallback}`, { ok: !!payload.snapShotResult, payload });
}
@@ -327,7 +350,7 @@ const _sfc_main = {
} else {
const err = payload.snapShotErrorCode || payload.error || "unknown";
uni.showToast({ title: "截图失败: " + err, icon: "none", duration: 2e3 });
- formatAppLog("warn", "at pages/camera.nvue:376", "snapshot failed reason:", err, payload);
+ formatAppLog("warn", "at pages/camera.nvue:399", "snapshot failed reason:", err, payload);
}
},
_handleRecordResultFromNative(res, reqIdFromCallback = null) {
@@ -342,7 +365,7 @@ const _sfc_main = {
let payload = res;
if (res.detail)
payload = res.detail;
- formatAppLog("log", "at pages/camera.nvue:392", "record payload normalized:", payload);
+ formatAppLog("log", "at pages/camera.nvue:415", "record payload normalized:", payload);
if (reqIdFromCallback) {
uni.$emit(`monitor:response:${reqIdFromCallback}`, { ok: !!(payload.recordUrl || payload.snapShotResult), payload });
}
@@ -356,11 +379,11 @@ const _sfc_main = {
if (payload.recordUrl) {
uni.showToast({ title: "录屏完成", icon: "success", duration: 1400 });
this.isRecording = false;
- formatAppLog("log", "at pages/camera.nvue:413", "录屏地址:", payload.recordUrl);
+ formatAppLog("log", "at pages/camera.nvue:436", "录屏地址:", payload.recordUrl);
} else if (payload.recordFailedReason) {
uni.showToast({ title: "录屏失败: " + payload.recordFailedReason, icon: "none", duration: 2e3 });
this.isRecording = false;
- formatAppLog("warn", "at pages/camera.nvue:417", "record failed reason:", payload.recordFailedReason);
+ formatAppLog("warn", "at pages/camera.nvue:440", "record failed reason:", payload.recordFailedReason);
} else {
if (payload.snapShotResult === true) {
uni.showToast({ title: "录屏操作已完成(返回未知)", icon: "none" });
@@ -384,7 +407,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
createVNode(_component_MonitorView, {
ref: "monitor",
init: "5",
- style: { "width": "600px", "height": "450px" },
+ style: { "width": "630px", "height": "510px" },
onOnTel: $options.handleTelEvent,
onOnSnapShot: $options.handleSnapShotEvent,
onOnRecord: $options.handleRecordEvent,
diff --git a/unpackage/dist/dev/.nvue/pages/ceshianzhuo.js b/unpackage/dist/dev/.nvue/pages/ceshianzhuo.js
deleted file mode 100644
index 340016a..0000000
--- a/unpackage/dist/dev/.nvue/pages/ceshianzhuo.js
+++ /dev/null
@@ -1,583 +0,0 @@
-import { _ as _export_sfc, r as requireNativePlugin, f as formatAppLog } from "../_plugin-vue_export-helper.js";
-import { resolveComponent, openBlock, createElementBlock, createElementVNode, createCommentVNode, createVNode, withCtx, createTextVNode } from "vue";
-const _style_0 = { "center-column": { "": { "display": "flex", "flexDirection": "column", "alignItems": "center" } }, "button-group": { "": { "display": "flex", "flexDirection": "row", "flexWrap": "wrap", "justifyContent": "center", "marginTop": 40, "width": 620 } }, "button": { "": { "marginTop": 6, "marginRight": 6, "marginBottom": 6, "marginLeft": 6, "paddingTop": 8, "paddingRight": 12, "paddingBottom": 8, "paddingLeft": 12, "minWidth": "120px", "height": 44, "borderRadius": 6, "borderWidth": 1, "borderStyle": "solid", "borderColor": "#dddddd", "backgroundColor": "#ffffff" } } };
-const _sfc_main = {
- data() {
- return {
- phoneNumber: "1234567890",
- isAlarming: false,
- isRecording: false,
- // 录屏状态
- isTalking: false
- // 对讲状态
- };
- },
- onLoad() {
- const globalEvent = requireNativePlugin && requireNativePlugin("globalEvent");
- if (globalEvent && globalEvent.addEventListener) {
- globalEvent.addEventListener("myEvent", (e) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:73", "myEvent", e);
- });
- }
- },
- methods: {
- /* ------------------ 原有功能 ------------------ */
- handleTelEvent(event) {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:80", "Tel event detail:", event.detail);
- },
- switchDisplay(mode) {
- this.$refs.monitor && this.$refs.monitor.switchDisplayModeFragment(mode);
- },
- startAlarm() {
- this.isAlarming = true;
- this.$refs.monitor.startOrStopManualAlarm(this.isAlarming, (res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:91", "startAlarm callback:", res);
- });
- },
- stopAlarm() {
- this.isAlarming = false;
- this.$refs.monitor.startOrStopManualAlarm(this.isAlarming, (res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:97", "stopAlarm callback:", res);
- });
- },
- flipImage(type) {
- this.$refs.monitor.changeImageSwitch(type, (res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:103", "flipImage callback:", res);
- });
- },
- resumeOrPause() {
- this.$refs.monitor.resumeOrPause && this.$refs.monitor.resumeOrPause();
- },
- changeQuality() {
- this.$refs.monitor.changeQuality && this.$refs.monitor.changeQuality();
- },
- test() {
- this.$refs.monitor && this.$refs.monitor.test && this.$refs.monitor.test();
- },
- /* ------------------ 新增:截图/录屏/对讲 调用方法 ------------------ */
- // 1. 截图(调用)
- doSnapshot() {
- if (!this.$refs.monitor || !this.$refs.monitor.snapShot) {
- uni.showToast({
- title: "组件不支持 snapShot()",
- icon: "none"
- });
- return;
- }
- try {
- this.$refs.monitor.snapShot((res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:134", "snapShot callback:", res);
- this._handleSnapshotResultFromNative(res);
- });
- uni.showToast({
- title: "正在截屏...",
- icon: "none",
- duration: 800
- });
- } catch (err) {
- formatAppLog("error", "at pages/ceshianzhuo.nvue:143", "snapShot 调用失败", err);
- uni.showToast({
- title: "snapShot 调用失败",
- icon: "none"
- });
- }
- },
- // 2. 开始录屏(调用)
- doStartRecord() {
- if (!this.$refs.monitor || !this.$refs.monitor.startRecord) {
- uni.showToast({
- title: "组件不支持 startRecord()",
- icon: "none"
- });
- return;
- }
- try {
- this.$refs.monitor.startRecord((res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:163", "startRecord callback:", res);
- });
- this.isRecording = true;
- uni.showToast({
- title: "录屏已开始",
- icon: "none"
- });
- } catch (err) {
- formatAppLog("error", "at pages/ceshianzhuo.nvue:171", "startRecord 调用失败", err);
- uni.showToast({
- title: "startRecord 调用失败",
- icon: "none"
- });
- }
- },
- // 3. 停止录屏(调用)
- doStopRecord() {
- if (!this.$refs.monitor || !this.$refs.monitor.stopRecord) {
- uni.showToast({
- title: "组件不支持 stopRecord()",
- icon: "none"
- });
- return;
- }
- try {
- this.$refs.monitor.stopRecord((res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:191", "stopRecord callback:", res);
- this._handleRecordResultFromNative(res);
- });
- } catch (err) {
- formatAppLog("error", "at pages/ceshianzhuo.nvue:196", "stopRecord 调用失败", err);
- uni.showToast({
- title: "stopRecord 调用失败",
- icon: "none"
- });
- }
- },
- // 4. 开始对讲(调用)
- doOpenTalk() {
- if (!this.$refs.monitor || !this.$refs.monitor.openTalk) {
- uni.showToast({
- title: "组件不支持 openTalk()",
- icon: "none"
- });
- return;
- }
- try {
- this.$refs.monitor.openTalk((res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:215", "openTalk callback:", res);
- });
- this.isTalking = true;
- uni.showToast({
- title: "尝试建立对讲连接...",
- icon: "none"
- });
- } catch (err) {
- formatAppLog("error", "at pages/ceshianzhuo.nvue:225", "openTalk 调用失败", err);
- uni.showToast({
- title: "openTalk 调用失败",
- icon: "none"
- });
- }
- },
- // 5. 停止对讲(调用)
- doStopTalk() {
- if (!this.$refs.monitor || !this.$refs.monitor.stopTalk) {
- uni.showToast({
- title: "组件不支持 stopTalk()",
- icon: "none"
- });
- return;
- }
- try {
- this.$refs.monitor.stopTalk((res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:244", "stopTalk callback:", res);
- });
- this.isTalking = false;
- } catch (err) {
- formatAppLog("error", "at pages/ceshianzhuo.nvue:250", "stopTalk 调用失败", err);
- uni.showToast({
- title: "stopTalk 调用失败",
- icon: "none"
- });
- }
- },
- /* ------------------ 事件回调处理(来自原生推送的事件) ------------------ */
- // 处理来自模板 @onSnapShot 的事件(event.detail)
- handleSnapShotEvent(event) {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:263", "onSnapShot event:", event && event.detail ? event.detail : event);
- this._handleSnapshotResultFromNative(event && event.detail ? event.detail : event);
- },
- // 处理来自模板 @onRecord 的事件(event.detail)
- handleRecordEvent(event) {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:270", "onRecord event:", event && event.detail ? event.detail : event);
- this._handleRecordResultFromNative(event && event.detail ? event.detail : event);
- },
- // 处理来自模板 @onTalkStatus 的事件
- handleTalkEvent(event) {
- const payload = event && event.detail ? event.detail : event;
- formatAppLog("log", "at pages/ceshianzhuo.nvue:278", "onTalkStatus event:", payload);
- const status = payload && payload.talkStatus;
- const tips = payload && payload.tips;
- switch ((status || "").toLowerCase()) {
- case "loading":
- uni.showToast({
- title: tips || "对讲连接中...",
- icon: "none"
- });
- this.isTalking = true;
- break;
- case "playing":
- uni.showToast({
- title: tips || "对讲已连接",
- icon: "none"
- });
- this.isTalking = true;
- break;
- case "stopped":
- uni.showToast({
- title: tips || "对讲已停止",
- icon: "none"
- });
- this.isTalking = false;
- break;
- case "failed":
- uni.showToast({
- title: tips || "对讲失败",
- icon: "none"
- });
- this.isTalking = false;
- break;
- default:
- uni.showToast({
- title: tips || "对讲状态: " + (status || "unknown"),
- icon: "none"
- });
- break;
- }
- },
- /* ------------------ 原生结果的内部处理函数(统一处理 callback / event) ------------------ */
- _handleSnapshotResultFromNative(res) {
- if (!res) {
- uni.showToast({
- title: "截图没有返回数据",
- icon: "none"
- });
- return;
- }
- let payload = res;
- if (res.detail)
- payload = res.detail;
- formatAppLog("log", "at pages/ceshianzhuo.nvue:337", "snapshot payload normalized:", payload);
- if (payload.snapShotResult === true || payload.snapShotResult === "true") {
- const url = payload.snapShotUrl || payload.snapShotPath || payload.url;
- uni.showToast({
- title: "截图成功",
- icon: "success",
- duration: 1200
- });
- formatAppLog("log", "at pages/ceshianzhuo.nvue:345", "截图地址:", url);
- if (url) {
- uni.previewImage({
- urls: [url]
- });
- }
- } else {
- const err = payload.snapShotErrorCode || payload.error || "unknown";
- uni.showToast({
- title: "截图失败: " + err,
- icon: "none",
- duration: 2e3
- });
- formatAppLog("warn", "at pages/ceshianzhuo.nvue:360", "snapshot failed reason:", err, payload);
- }
- },
- _handleRecordResultFromNative(res) {
- if (!res) {
- uni.showToast({
- title: "录屏没有返回数据",
- icon: "none"
- });
- this.isRecording = false;
- return;
- }
- let payload = res;
- if (res.detail)
- payload = res.detail;
- formatAppLog("log", "at pages/ceshianzhuo.nvue:377", "record payload normalized:", payload);
- if (payload.recordUrl) {
- uni.showToast({
- title: "录屏完成",
- icon: "success",
- duration: 1400
- });
- formatAppLog("log", "at pages/ceshianzhuo.nvue:386", "录屏地址:", payload.recordUrl);
- this.isRecording = false;
- } else if (payload.recordFailedReason) {
- uni.showToast({
- title: "录屏失败: " + payload.recordFailedReason,
- icon: "none",
- duration: 2e3
- });
- formatAppLog("warn", "at pages/ceshianzhuo.nvue:395", "record failed reason:", payload.recordFailedReason);
- this.isRecording = false;
- } else {
- if (payload.snapShotResult === true) {
- uni.showToast({
- title: "录屏操作已完成(返回未知)",
- icon: "none"
- });
- }
- this.isRecording = false;
- }
- }
- }
-};
-function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
- const _component_MonitorView = resolveComponent("MonitorView");
- const _component_MonitorControlView = resolveComponent("MonitorControlView");
- const _component_button = resolveComponent("button");
- return openBlock(), createElementBlock("scroll-view", {
- scrollY: true,
- showScrollbar: true,
- enableBackToTop: true,
- bubble: "true",
- style: { flexDirection: "column" }
- }, [
- createElementVNode("div", { class: "center-column" }, [
- createCommentVNode(" 视频播放组件,监听原生事件 "),
- createVNode(_component_MonitorView, {
- ref: "monitor",
- init: "5",
- style: { "width": "300px", "height": "200px", "margin-top": "20px" },
- onOnTel: $options.handleTelEvent,
- onOnSnapShot: $options.handleSnapShotEvent,
- onOnRecord: $options.handleRecordEvent,
- onOnTalkStatus: $options.handleTalkEvent
- }, null, 8, ["onOnTel", "onOnSnapShot", "onOnRecord", "onOnTalkStatus"]),
- createElementVNode("view", { style: { "display": "flex", "flex-direction": "row", "align-items": "flex-start" } }, [
- createCommentVNode(" 云台控制组件 "),
- createVNode(
- _component_MonitorControlView,
- {
- ref: "control",
- init: "5",
- style: { "width": "300px", "height": "300px", "margin-top": "20px" }
- },
- null,
- 512
- /* NEED_PATCH */
- ),
- createCommentVNode(" 功能按钮 "),
- createElementVNode("div", { class: "button-group" }, [
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[0] || (_cache[0] = ($event) => $options.switchDisplay(0))
- }, {
- default: withCtx(() => [
- createTextVNode("原图")
- ]),
- _: 1
- /* STABLE */
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[1] || (_cache[1] = ($event) => $options.switchDisplay(1))
- }, {
- default: withCtx(() => [
- createTextVNode("四分屏")
- ]),
- _: 1
- /* STABLE */
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[2] || (_cache[2] = ($event) => $options.switchDisplay(2))
- }, {
- default: withCtx(() => [
- createTextVNode("180°全景")
- ]),
- _: 1
- /* STABLE */
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[3] || (_cache[3] = ($event) => $options.switchDisplay(3))
- }, {
- default: withCtx(() => [
- createTextVNode("360°全景")
- ]),
- _: 1
- /* STABLE */
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[4] || (_cache[4] = ($event) => $options.switchDisplay(4))
- }, {
- default: withCtx(() => [
- createTextVNode("环状全景")
- ]),
- _: 1
- /* STABLE */
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: $options.startAlarm
- }, {
- default: withCtx(() => [
- createTextVNode("开启手动报警")
- ]),
- _: 1
- /* STABLE */
- }, 8, ["onClick"]),
- createVNode(_component_button, {
- class: "button",
- onClick: $options.stopAlarm
- }, {
- default: withCtx(() => [
- createTextVNode("停止手动报警")
- ]),
- _: 1
- /* STABLE */
- }, 8, ["onClick"]),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[5] || (_cache[5] = ($event) => $options.flipImage(0))
- }, {
- default: withCtx(() => [
- createTextVNode("左右翻转")
- ]),
- _: 1
- /* STABLE */
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[6] || (_cache[6] = ($event) => $options.flipImage(1))
- }, {
- default: withCtx(() => [
- createTextVNode("上下翻转")
- ]),
- _: 1
- /* STABLE */
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[7] || (_cache[7] = ($event) => $options.flipImage(2))
- }, {
- default: withCtx(() => [
- createTextVNode("中心翻转")
- ]),
- _: 1
- /* STABLE */
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[8] || (_cache[8] = ($event) => $options.flipImage(3))
- }, {
- default: withCtx(() => [
- createTextVNode("顺时针90°")
- ]),
- _: 1
- /* STABLE */
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[9] || (_cache[9] = ($event) => $options.flipImage(4))
- }, {
- default: withCtx(() => [
- createTextVNode("逆时针90°")
- ]),
- _: 1
- /* STABLE */
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[10] || (_cache[10] = ($event) => $options.flipImage(5))
- }, {
- default: withCtx(() => [
- createTextVNode("逆时针180°")
- ]),
- _: 1
- /* STABLE */
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: _cache[11] || (_cache[11] = ($event) => $options.flipImage(6))
- }, {
- default: withCtx(() => [
- createTextVNode("不翻转")
- ]),
- _: 1
- /* STABLE */
- }),
- createVNode(_component_button, {
- class: "button",
- onClick: $options.resumeOrPause
- }, {
- default: withCtx(() => [
- createTextVNode("暂停/继续")
- ]),
- _: 1
- /* STABLE */
- }, 8, ["onClick"]),
- createVNode(_component_button, {
- class: "button",
- onClick: $options.changeQuality
- }, {
- default: withCtx(() => [
- createTextVNode("切换清晰度")
- ]),
- _: 1
- /* STABLE */
- }, 8, ["onClick"]),
- createCommentVNode(" === 新增的功能按钮:截图 / 录屏 / 对讲 === "),
- createVNode(_component_button, {
- class: "button",
- onClick: $options.doSnapshot
- }, {
- default: withCtx(() => [
- createTextVNode("截图")
- ]),
- _: 1
- /* STABLE */
- }, 8, ["onClick"]),
- createVNode(_component_button, {
- class: "button",
- disabled: $data.isRecording,
- onClick: $options.doStartRecord
- }, {
- default: withCtx(() => [
- createTextVNode(" 开始录屏 ")
- ]),
- _: 1
- /* STABLE */
- }, 8, ["disabled", "onClick"]),
- createVNode(_component_button, {
- class: "button",
- disabled: !$data.isRecording,
- onClick: $options.doStopRecord
- }, {
- default: withCtx(() => [
- createTextVNode(" 结束录屏 ")
- ]),
- _: 1
- /* STABLE */
- }, 8, ["disabled", "onClick"]),
- createVNode(_component_button, {
- class: "button",
- disabled: $data.isTalking,
- onClick: $options.doOpenTalk
- }, {
- default: withCtx(() => [
- createTextVNode(" 开始对讲 ")
- ]),
- _: 1
- /* STABLE */
- }, 8, ["disabled", "onClick"]),
- createVNode(_component_button, {
- class: "button",
- disabled: !$data.isTalking,
- onClick: $options.doStopTalk
- }, {
- default: withCtx(() => [
- createTextVNode(" 结束对讲 ")
- ]),
- _: 1
- /* STABLE */
- }, 8, ["disabled", "onClick"]),
- createCommentVNode(" 测试按钮 "),
- createVNode(_component_button, {
- class: "button",
- onClick: $options.test
- }, {
- default: withCtx(() => [
- createTextVNode("test")
- ]),
- _: 1
- /* STABLE */
- }, 8, ["onClick"])
- ])
- ])
- ])
- ]);
-}
-const ceshianzhuo = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["styles", [_style_0]], ["__file", "D:/hldy_app/pages/ceshianzhuo.nvue"]]);
-export {
- ceshianzhuo as default
-};
diff --git a/unpackage/dist/dev/app-plus/app-config-service.js b/unpackage/dist/dev/app-plus/app-config-service.js
index 8cd2230..cc75e5c 100644
--- a/unpackage/dist/dev/app-plus/app-config-service.js
+++ b/unpackage/dist/dev/app-plus/app-config-service.js
@@ -2,7 +2,7 @@
;(function(){
let u=void 0,isReady=false,onReadyCallbacks=[],isServiceReady=false,onServiceReadyCallbacks=[];
const __uniConfig = {"pages":[],"globalStyle":{"backgroundColor":"#F8F8F8","bounce":"none","navigationBar":{"backgroundColor":"#F8F8F8","titleText":"uni-app x","type":"default","titleColor":"#000000"},"isNVue":false},"nvue":{"compiler":"uni-app","styleCompiler":"uni-app","flex-direction":"column"},"renderer":"auto","appname":"护理单元","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":true},"compilerVersion":"4.76","entryPagePath":"pages/login/login","entryPageQuery":"","realEntryPagePath":"","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000},"locales":{},"darkmode":false,"themeConfig":{}};
- const __uniRoutes = [{"path":"pages/login/login","meta":{"isQuit":true,"isEntry":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/denglu","meta":{"navigationBar":{"type":"default"},"isNVue":false}},{"path":"pages/index/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Nursing/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/index","meta":{"subNVues":[{"id":"monitorSub","path":"pages/camera","style":{"position":"absolute","left":"250px","top":"120px","width":"600px","height":"450px","background":"transparent"}}],"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/settings","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/input","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/saoma","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/leida","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/NursingNew/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Warehousing/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Initialization/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/assess/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/timeMatrix/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/timeMatrix/indexnew","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/camera","meta":{"isSubNVue":true,"isNVue":true,"navigationBar":{}}}].map(uniRoute=>(uniRoute.meta.route=uniRoute.path,__uniConfig.pages.push(uniRoute.path),uniRoute.path='/'+uniRoute.path,uniRoute));
+ const __uniRoutes = [{"path":"pages/login/login","meta":{"isQuit":true,"isEntry":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/denglu","meta":{"navigationBar":{"type":"default"},"isNVue":false}},{"path":"pages/index/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Nursing/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/index","meta":{"subNVues":[{"id":"monitorSub","path":"pages/camera","style":{"position":"absolute","left":"250px","top":"120px","width":"630px","height":"510px","background":"transparent"}}],"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/settings","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/input","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/saoma","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/leida","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/NursingNew/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Warehousing/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Initialization/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/assess/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/timeMatrix/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/timeMatrix/indexnew","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/camera","meta":{"isSubNVue":true,"isNVue":true,"navigationBar":{}}}].map(uniRoute=>(uniRoute.meta.route=uniRoute.path,__uniConfig.pages.push(uniRoute.path),uniRoute.path='/'+uniRoute.path,uniRoute));
__uniConfig.styles=[{"u-relative":{"":{"position":"relative"}},"u-rela":{"":{"position":"relative"}},"u-absolute":{"":{"position":"absolute"}},"u-abso":{"":{"position":"absolute"}},"u-font-xs":{"":{"fontSize":"22rpx"}},"u-font-sm":{"":{"fontSize":"26rpx"}},"u-font-md":{"":{"fontSize":"28rpx"}},"u-font-lg":{"":{"fontSize":"30rpx"}},"u-font-xl":{"":{"fontSize":"34rpx"}},"u-flex":{"":{"flexDirection":"row","alignItems":"center"}},"u-flex-wrap":{"":{"flexWrap":"wrap"}},"u-flex-nowrap":{"":{"flexWrap":"nowrap"}},"u-col-center":{"":{"alignItems":"center"}},"u-col-top":{"":{"alignItems":"flex-start"}},"u-col-bottom":{"":{"alignItems":"flex-end"}},"u-row-center":{"":{"justifyContent":"center"}},"u-row-left":{"":{"justifyContent":"flex-start"}},"u-row-right":{"":{"justifyContent":"flex-end"}},"u-row-between":{"":{"justifyContent":"space-between"}},"u-row-around":{"":{"justifyContent":"space-around"}},"u-text-left":{"":{"textAlign":"left"}},"u-text-center":{"":{"textAlign":"center"}},"u-text-right":{"":{"textAlign":"right"}},"u-flex-col":{"":{"flexDirection":"column"}},"u-flex-0":{"":{"flex":0}},"u-flex-1":{"":{"flex":1}},"u-flex-2":{"":{"flex":2}},"u-flex-3":{"":{"flex":3}},"u-flex-4":{"":{"flex":4}},"u-flex-5":{"":{"flex":5}},"u-flex-6":{"":{"flex":6}},"u-flex-7":{"":{"flex":7}},"u-flex-8":{"":{"flex":8}},"u-flex-9":{"":{"flex":9}},"u-flex-10":{"":{"flex":10}},"u-flex-11":{"":{"flex":11}},"u-flex-12":{"":{"flex":12}},"u-font-9":{"":{"fontSize":9}},"u-font-10":{"":{"fontSize":10}},"u-font-11":{"":{"fontSize":11}},"u-font-12":{"":{"fontSize":12}},"u-font-13":{"":{"fontSize":13}},"u-font-14":{"":{"fontSize":14}},"u-font-15":{"":{"fontSize":15}},"u-font-16":{"":{"fontSize":16}},"u-font-17":{"":{"fontSize":17}},"u-font-18":{"":{"fontSize":18}},"u-font-19":{"":{"fontSize":19}},"u-font-20":{"":{"fontSize":"20rpx"}},"u-font-21":{"":{"fontSize":"21rpx"}},"u-font-22":{"":{"fontSize":"22rpx"}},"u-font-23":{"":{"fontSize":"23rpx"}},"u-font-24":{"":{"fontSize":"24rpx"}},"u-font-25":{"":{"fontSize":"25rpx"}},"u-font-26":{"":{"fontSize":"26rpx"}},"u-font-27":{"":{"fontSize":"27rpx"}},"u-font-28":{"":{"fontSize":"28rpx"}},"u-font-29":{"":{"fontSize":"29rpx"}},"u-font-30":{"":{"fontSize":"30rpx"}},"u-font-31":{"":{"fontSize":"31rpx"}},"u-font-32":{"":{"fontSize":"32rpx"}},"u-font-33":{"":{"fontSize":"33rpx"}},"u-font-34":{"":{"fontSize":"34rpx"}},"u-font-35":{"":{"fontSize":"35rpx"}},"u-font-36":{"":{"fontSize":"36rpx"}},"u-font-37":{"":{"fontSize":"37rpx"}},"u-font-38":{"":{"fontSize":"38rpx"}},"u-font-39":{"":{"fontSize":"39rpx"}},"u-font-40":{"":{"fontSize":"40rpx"}},"u-margin-0":{"":{"!marginTop":"0rpx","!marginRight":"0rpx","!marginBottom":"0rpx","!marginLeft":"0rpx"}},"u-m-0":{"":{"!marginTop":"0rpx","!marginRight":"0rpx","!marginBottom":"0rpx","!marginLeft":"0rpx"}},"u-padding-0":{"":{"!paddingTop":"0rpx","!paddingRight":"0rpx","!paddingBottom":"0rpx","!paddingLeft":"0rpx"}},"u-p-0":{"":{"!paddingTop":"0rpx","!paddingRight":"0rpx","!paddingBottom":"0rpx","!paddingLeft":"0rpx"}},"u-m-l-0":{"":{"!marginLeft":"0rpx"}},"u-p-l-0":{"":{"!paddingLeft":"0rpx"}},"u-margin-left-0":{"":{"!marginLeft":"0rpx"}},"u-padding-left-0":{"":{"!paddingLeft":"0rpx"}},"u-m-t-0":{"":{"!marginTop":"0rpx"}},"u-p-t-0":{"":{"!paddingTop":"0rpx"}},"u-margin-top-0":{"":{"!marginTop":"0rpx"}},"u-padding-top-0":{"":{"!paddingTop":"0rpx"}},"u-m-r-0":{"":{"!marginRight":"0rpx"}},"u-p-r-0":{"":{"!paddingRight":"0rpx"}},"u-margin-right-0":{"":{"!marginRight":"0rpx"}},"u-padding-right-0":{"":{"!paddingRight":"0rpx"}},"u-m-b-0":{"":{"!marginBottom":"0rpx"}},"u-p-b-0":{"":{"!paddingBottom":"0rpx"}},"u-margin-bottom-0":{"":{"!marginBottom":"0rpx"}},"u-padding-bottom-0":{"":{"!paddingBottom":"0rpx"}},"u-margin-2":{"":{"!marginTop":"2rpx","!marginRight":"2rpx","!marginBottom":"2rpx","!marginLeft":"2rpx"}},"u-m-2":{"":{"!marginTop":"2rpx","!marginRight":"2rpx","!marginBottom":"2rpx","!marginLeft":"2rpx"}},"u-padding-2":{"":{"!paddingTop":"2rpx","!paddingRight":"2rpx","!paddingBottom":"2rpx","!paddingLeft":"2rpx"}},"u-p-2":{"":{"!paddingTop":"2rpx","!paddingRight":"2rpx","!paddingBottom":"2rpx","!paddingLeft":"2rpx"}},"u-m-l-2":{"":{"!marginLeft":"2rpx"}},"u-p-l-2":{"":{"!paddingLeft":"2rpx"}},"u-margin-left-2":{"":{"!marginLeft":"2rpx"}},"u-padding-left-2":{"":{"!paddingLeft":"2rpx"}},"u-m-t-2":{"":{"!marginTop":"2rpx"}},"u-p-t-2":{"":{"!paddingTop":"2rpx"}},"u-margin-top-2":{"":{"!marginTop":"2rpx"}},"u-padding-top-2":{"":{"!paddingTop":"2rpx"}},"u-m-r-2":{"":{"!marginRight":"2rpx"}},"u-p-r-2":{"":{"!paddingRight":"2rpx"}},"u-margin-right-2":{"":{"!marginRight":"2rpx"}},"u-padding-right-2":{"":{"!paddingRight":"2rpx"}},"u-m-b-2":{"":{"!marginBottom":"2rpx"}},"u-p-b-2":{"":{"!paddingBottom":"2rpx"}},"u-margin-bottom-2":{"":{"!marginBottom":"2rpx"}},"u-padding-bottom-2":{"":{"!paddingBottom":"2rpx"}},"u-margin-4":{"":{"!marginTop":"4rpx","!marginRight":"4rpx","!marginBottom":"4rpx","!marginLeft":"4rpx"}},"u-m-4":{"":{"!marginTop":"4rpx","!marginRight":"4rpx","!marginBottom":"4rpx","!marginLeft":"4rpx"}},"u-padding-4":{"":{"!paddingTop":"4rpx","!paddingRight":"4rpx","!paddingBottom":"4rpx","!paddingLeft":"4rpx"}},"u-p-4":{"":{"!paddingTop":"4rpx","!paddingRight":"4rpx","!paddingBottom":"4rpx","!paddingLeft":"4rpx"}},"u-m-l-4":{"":{"!marginLeft":"4rpx"}},"u-p-l-4":{"":{"!paddingLeft":"4rpx"}},"u-margin-left-4":{"":{"!marginLeft":"4rpx"}},"u-padding-left-4":{"":{"!paddingLeft":"4rpx"}},"u-m-t-4":{"":{"!marginTop":"4rpx"}},"u-p-t-4":{"":{"!paddingTop":"4rpx"}},"u-margin-top-4":{"":{"!marginTop":"4rpx"}},"u-padding-top-4":{"":{"!paddingTop":"4rpx"}},"u-m-r-4":{"":{"!marginRight":"4rpx"}},"u-p-r-4":{"":{"!paddingRight":"4rpx"}},"u-margin-right-4":{"":{"!marginRight":"4rpx"}},"u-padding-right-4":{"":{"!paddingRight":"4rpx"}},"u-m-b-4":{"":{"!marginBottom":"4rpx"}},"u-p-b-4":{"":{"!paddingBottom":"4rpx"}},"u-margin-bottom-4":{"":{"!marginBottom":"4rpx"}},"u-padding-bottom-4":{"":{"!paddingBottom":"4rpx"}},"u-margin-5":{"":{"!marginTop":"5rpx","!marginRight":"5rpx","!marginBottom":"5rpx","!marginLeft":"5rpx"}},"u-m-5":{"":{"!marginTop":"5rpx","!marginRight":"5rpx","!marginBottom":"5rpx","!marginLeft":"5rpx"}},"u-padding-5":{"":{"!paddingTop":"5rpx","!paddingRight":"5rpx","!paddingBottom":"5rpx","!paddingLeft":"5rpx"}},"u-p-5":{"":{"!paddingTop":"5rpx","!paddingRight":"5rpx","!paddingBottom":"5rpx","!paddingLeft":"5rpx"}},"u-m-l-5":{"":{"!marginLeft":"5rpx"}},"u-p-l-5":{"":{"!paddingLeft":"5rpx"}},"u-margin-left-5":{"":{"!marginLeft":"5rpx"}},"u-padding-left-5":{"":{"!paddingLeft":"5rpx"}},"u-m-t-5":{"":{"!marginTop":"5rpx"}},"u-p-t-5":{"":{"!paddingTop":"5rpx"}},"u-margin-top-5":{"":{"!marginTop":"5rpx"}},"u-padding-top-5":{"":{"!paddingTop":"5rpx"}},"u-m-r-5":{"":{"!marginRight":"5rpx"}},"u-p-r-5":{"":{"!paddingRight":"5rpx"}},"u-margin-right-5":{"":{"!marginRight":"5rpx"}},"u-padding-right-5":{"":{"!paddingRight":"5rpx"}},"u-m-b-5":{"":{"!marginBottom":"5rpx"}},"u-p-b-5":{"":{"!paddingBottom":"5rpx"}},"u-margin-bottom-5":{"":{"!marginBottom":"5rpx"}},"u-padding-bottom-5":{"":{"!paddingBottom":"5rpx"}},"u-margin-6":{"":{"!marginTop":"6rpx","!marginRight":"6rpx","!marginBottom":"6rpx","!marginLeft":"6rpx"}},"u-m-6":{"":{"!marginTop":"6rpx","!marginRight":"6rpx","!marginBottom":"6rpx","!marginLeft":"6rpx"}},"u-padding-6":{"":{"!paddingTop":"6rpx","!paddingRight":"6rpx","!paddingBottom":"6rpx","!paddingLeft":"6rpx"}},"u-p-6":{"":{"!paddingTop":"6rpx","!paddingRight":"6rpx","!paddingBottom":"6rpx","!paddingLeft":"6rpx"}},"u-m-l-6":{"":{"!marginLeft":"6rpx"}},"u-p-l-6":{"":{"!paddingLeft":"6rpx"}},"u-margin-left-6":{"":{"!marginLeft":"6rpx"}},"u-padding-left-6":{"":{"!paddingLeft":"6rpx"}},"u-m-t-6":{"":{"!marginTop":"6rpx"}},"u-p-t-6":{"":{"!paddingTop":"6rpx"}},"u-margin-top-6":{"":{"!marginTop":"6rpx"}},"u-padding-top-6":{"":{"!paddingTop":"6rpx"}},"u-m-r-6":{"":{"!marginRight":"6rpx"}},"u-p-r-6":{"":{"!paddingRight":"6rpx"}},"u-margin-right-6":{"":{"!marginRight":"6rpx"}},"u-padding-right-6":{"":{"!paddingRight":"6rpx"}},"u-m-b-6":{"":{"!marginBottom":"6rpx"}},"u-p-b-6":{"":{"!paddingBottom":"6rpx"}},"u-margin-bottom-6":{"":{"!marginBottom":"6rpx"}},"u-padding-bottom-6":{"":{"!paddingBottom":"6rpx"}},"u-margin-8":{"":{"!marginTop":"8rpx","!marginRight":"8rpx","!marginBottom":"8rpx","!marginLeft":"8rpx"}},"u-m-8":{"":{"!marginTop":"8rpx","!marginRight":"8rpx","!marginBottom":"8rpx","!marginLeft":"8rpx"}},"u-padding-8":{"":{"!paddingTop":"8rpx","!paddingRight":"8rpx","!paddingBottom":"8rpx","!paddingLeft":"8rpx"}},"u-p-8":{"":{"!paddingTop":"8rpx","!paddingRight":"8rpx","!paddingBottom":"8rpx","!paddingLeft":"8rpx"}},"u-m-l-8":{"":{"!marginLeft":"8rpx"}},"u-p-l-8":{"":{"!paddingLeft":"8rpx"}},"u-margin-left-8":{"":{"!marginLeft":"8rpx"}},"u-padding-left-8":{"":{"!paddingLeft":"8rpx"}},"u-m-t-8":{"":{"!marginTop":"8rpx"}},"u-p-t-8":{"":{"!paddingTop":"8rpx"}},"u-margin-top-8":{"":{"!marginTop":"8rpx"}},"u-padding-top-8":{"":{"!paddingTop":"8rpx"}},"u-m-r-8":{"":{"!marginRight":"8rpx"}},"u-p-r-8":{"":{"!paddingRight":"8rpx"}},"u-margin-right-8":{"":{"!marginRight":"8rpx"}},"u-padding-right-8":{"":{"!paddingRight":"8rpx"}},"u-m-b-8":{"":{"!marginBottom":"8rpx"}},"u-p-b-8":{"":{"!paddingBottom":"8rpx"}},"u-margin-bottom-8":{"":{"!marginBottom":"8rpx"}},"u-padding-bottom-8":{"":{"!paddingBottom":"8rpx"}},"u-margin-10":{"":{"!marginTop":"10rpx","!marginRight":"10rpx","!marginBottom":"10rpx","!marginLeft":"10rpx"}},"u-m-10":{"":{"!marginTop":"10rpx","!marginRight":"10rpx","!marginBottom":"10rpx","!marginLeft":"10rpx"}},"u-padding-10":{"":{"!paddingTop":"10rpx","!paddingRight":"10rpx","!paddingBottom":"10rpx","!paddingLeft":"10rpx"}},"u-p-10":{"":{"!paddingTop":"10rpx","!paddingRight":"10rpx","!paddingBottom":"10rpx","!paddingLeft":"10rpx"}},"u-m-l-10":{"":{"!marginLeft":"10rpx"}},"u-p-l-10":{"":{"!paddingLeft":"10rpx"}},"u-margin-left-10":{"":{"!marginLeft":"10rpx"}},"u-padding-left-10":{"":{"!paddingLeft":"10rpx"}},"u-m-t-10":{"":{"!marginTop":"10rpx"}},"u-p-t-10":{"":{"!paddingTop":"10rpx"}},"u-margin-top-10":{"":{"!marginTop":"10rpx"}},"u-padding-top-10":{"":{"!paddingTop":"10rpx"}},"u-m-r-10":{"":{"!marginRight":"10rpx"}},"u-p-r-10":{"":{"!paddingRight":"10rpx"}},"u-margin-right-10":{"":{"!marginRight":"10rpx"}},"u-padding-right-10":{"":{"!paddingRight":"10rpx"}},"u-m-b-10":{"":{"!marginBottom":"10rpx"}},"u-p-b-10":{"":{"!paddingBottom":"10rpx"}},"u-margin-bottom-10":{"":{"!marginBottom":"10rpx"}},"u-padding-bottom-10":{"":{"!paddingBottom":"10rpx"}},"u-margin-12":{"":{"!marginTop":"12rpx","!marginRight":"12rpx","!marginBottom":"12rpx","!marginLeft":"12rpx"}},"u-m-12":{"":{"!marginTop":"12rpx","!marginRight":"12rpx","!marginBottom":"12rpx","!marginLeft":"12rpx"}},"u-padding-12":{"":{"!paddingTop":"12rpx","!paddingRight":"12rpx","!paddingBottom":"12rpx","!paddingLeft":"12rpx"}},"u-p-12":{"":{"!paddingTop":"12rpx","!paddingRight":"12rpx","!paddingBottom":"12rpx","!paddingLeft":"12rpx"}},"u-m-l-12":{"":{"!marginLeft":"12rpx"}},"u-p-l-12":{"":{"!paddingLeft":"12rpx"}},"u-margin-left-12":{"":{"!marginLeft":"12rpx"}},"u-padding-left-12":{"":{"!paddingLeft":"12rpx"}},"u-m-t-12":{"":{"!marginTop":"12rpx"}},"u-p-t-12":{"":{"!paddingTop":"12rpx"}},"u-margin-top-12":{"":{"!marginTop":"12rpx"}},"u-padding-top-12":{"":{"!paddingTop":"12rpx"}},"u-m-r-12":{"":{"!marginRight":"12rpx"}},"u-p-r-12":{"":{"!paddingRight":"12rpx"}},"u-margin-right-12":{"":{"!marginRight":"12rpx"}},"u-padding-right-12":{"":{"!paddingRight":"12rpx"}},"u-m-b-12":{"":{"!marginBottom":"12rpx"}},"u-p-b-12":{"":{"!paddingBottom":"12rpx"}},"u-margin-bottom-12":{"":{"!marginBottom":"12rpx"}},"u-padding-bottom-12":{"":{"!paddingBottom":"12rpx"}},"u-margin-14":{"":{"!marginTop":"14rpx","!marginRight":"14rpx","!marginBottom":"14rpx","!marginLeft":"14rpx"}},"u-m-14":{"":{"!marginTop":"14rpx","!marginRight":"14rpx","!marginBottom":"14rpx","!marginLeft":"14rpx"}},"u-padding-14":{"":{"!paddingTop":"14rpx","!paddingRight":"14rpx","!paddingBottom":"14rpx","!paddingLeft":"14rpx"}},"u-p-14":{"":{"!paddingTop":"14rpx","!paddingRight":"14rpx","!paddingBottom":"14rpx","!paddingLeft":"14rpx"}},"u-m-l-14":{"":{"!marginLeft":"14rpx"}},"u-p-l-14":{"":{"!paddingLeft":"14rpx"}},"u-margin-left-14":{"":{"!marginLeft":"14rpx"}},"u-padding-left-14":{"":{"!paddingLeft":"14rpx"}},"u-m-t-14":{"":{"!marginTop":"14rpx"}},"u-p-t-14":{"":{"!paddingTop":"14rpx"}},"u-margin-top-14":{"":{"!marginTop":"14rpx"}},"u-padding-top-14":{"":{"!paddingTop":"14rpx"}},"u-m-r-14":{"":{"!marginRight":"14rpx"}},"u-p-r-14":{"":{"!paddingRight":"14rpx"}},"u-margin-right-14":{"":{"!marginRight":"14rpx"}},"u-padding-right-14":{"":{"!paddingRight":"14rpx"}},"u-m-b-14":{"":{"!marginBottom":"14rpx"}},"u-p-b-14":{"":{"!paddingBottom":"14rpx"}},"u-margin-bottom-14":{"":{"!marginBottom":"14rpx"}},"u-padding-bottom-14":{"":{"!paddingBottom":"14rpx"}},"u-margin-15":{"":{"!marginTop":"15rpx","!marginRight":"15rpx","!marginBottom":"15rpx","!marginLeft":"15rpx"}},"u-m-15":{"":{"!marginTop":"15rpx","!marginRight":"15rpx","!marginBottom":"15rpx","!marginLeft":"15rpx"}},"u-padding-15":{"":{"!paddingTop":"15rpx","!paddingRight":"15rpx","!paddingBottom":"15rpx","!paddingLeft":"15rpx"}},"u-p-15":{"":{"!paddingTop":"15rpx","!paddingRight":"15rpx","!paddingBottom":"15rpx","!paddingLeft":"15rpx"}},"u-m-l-15":{"":{"!marginLeft":"15rpx"}},"u-p-l-15":{"":{"!paddingLeft":"15rpx"}},"u-margin-left-15":{"":{"!marginLeft":"15rpx"}},"u-padding-left-15":{"":{"!paddingLeft":"15rpx"}},"u-m-t-15":{"":{"!marginTop":"15rpx"}},"u-p-t-15":{"":{"!paddingTop":"15rpx"}},"u-margin-top-15":{"":{"!marginTop":"15rpx"}},"u-padding-top-15":{"":{"!paddingTop":"15rpx"}},"u-m-r-15":{"":{"!marginRight":"15rpx"}},"u-p-r-15":{"":{"!paddingRight":"15rpx"}},"u-margin-right-15":{"":{"!marginRight":"15rpx"}},"u-padding-right-15":{"":{"!paddingRight":"15rpx"}},"u-m-b-15":{"":{"!marginBottom":"15rpx"}},"u-p-b-15":{"":{"!paddingBottom":"15rpx"}},"u-margin-bottom-15":{"":{"!marginBottom":"15rpx"}},"u-padding-bottom-15":{"":{"!paddingBottom":"15rpx"}},"u-margin-16":{"":{"!marginTop":"16rpx","!marginRight":"16rpx","!marginBottom":"16rpx","!marginLeft":"16rpx"}},"u-m-16":{"":{"!marginTop":"16rpx","!marginRight":"16rpx","!marginBottom":"16rpx","!marginLeft":"16rpx"}},"u-padding-16":{"":{"!paddingTop":"16rpx","!paddingRight":"16rpx","!paddingBottom":"16rpx","!paddingLeft":"16rpx"}},"u-p-16":{"":{"!paddingTop":"16rpx","!paddingRight":"16rpx","!paddingBottom":"16rpx","!paddingLeft":"16rpx"}},"u-m-l-16":{"":{"!marginLeft":"16rpx"}},"u-p-l-16":{"":{"!paddingLeft":"16rpx"}},"u-margin-left-16":{"":{"!marginLeft":"16rpx"}},"u-padding-left-16":{"":{"!paddingLeft":"16rpx"}},"u-m-t-16":{"":{"!marginTop":"16rpx"}},"u-p-t-16":{"":{"!paddingTop":"16rpx"}},"u-margin-top-16":{"":{"!marginTop":"16rpx"}},"u-padding-top-16":{"":{"!paddingTop":"16rpx"}},"u-m-r-16":{"":{"!marginRight":"16rpx"}},"u-p-r-16":{"":{"!paddingRight":"16rpx"}},"u-margin-right-16":{"":{"!marginRight":"16rpx"}},"u-padding-right-16":{"":{"!paddingRight":"16rpx"}},"u-m-b-16":{"":{"!marginBottom":"16rpx"}},"u-p-b-16":{"":{"!paddingBottom":"16rpx"}},"u-margin-bottom-16":{"":{"!marginBottom":"16rpx"}},"u-padding-bottom-16":{"":{"!paddingBottom":"16rpx"}},"u-margin-18":{"":{"!marginTop":"18rpx","!marginRight":"18rpx","!marginBottom":"18rpx","!marginLeft":"18rpx"}},"u-m-18":{"":{"!marginTop":"18rpx","!marginRight":"18rpx","!marginBottom":"18rpx","!marginLeft":"18rpx"}},"u-padding-18":{"":{"!paddingTop":"18rpx","!paddingRight":"18rpx","!paddingBottom":"18rpx","!paddingLeft":"18rpx"}},"u-p-18":{"":{"!paddingTop":"18rpx","!paddingRight":"18rpx","!paddingBottom":"18rpx","!paddingLeft":"18rpx"}},"u-m-l-18":{"":{"!marginLeft":"18rpx"}},"u-p-l-18":{"":{"!paddingLeft":"18rpx"}},"u-margin-left-18":{"":{"!marginLeft":"18rpx"}},"u-padding-left-18":{"":{"!paddingLeft":"18rpx"}},"u-m-t-18":{"":{"!marginTop":"18rpx"}},"u-p-t-18":{"":{"!paddingTop":"18rpx"}},"u-margin-top-18":{"":{"!marginTop":"18rpx"}},"u-padding-top-18":{"":{"!paddingTop":"18rpx"}},"u-m-r-18":{"":{"!marginRight":"18rpx"}},"u-p-r-18":{"":{"!paddingRight":"18rpx"}},"u-margin-right-18":{"":{"!marginRight":"18rpx"}},"u-padding-right-18":{"":{"!paddingRight":"18rpx"}},"u-m-b-18":{"":{"!marginBottom":"18rpx"}},"u-p-b-18":{"":{"!paddingBottom":"18rpx"}},"u-margin-bottom-18":{"":{"!marginBottom":"18rpx"}},"u-padding-bottom-18":{"":{"!paddingBottom":"18rpx"}},"u-margin-20":{"":{"!marginTop":"20rpx","!marginRight":"20rpx","!marginBottom":"20rpx","!marginLeft":"20rpx"}},"u-m-20":{"":{"!marginTop":"20rpx","!marginRight":"20rpx","!marginBottom":"20rpx","!marginLeft":"20rpx"}},"u-padding-20":{"":{"!paddingTop":"20rpx","!paddingRight":"20rpx","!paddingBottom":"20rpx","!paddingLeft":"20rpx"}},"u-p-20":{"":{"!paddingTop":"20rpx","!paddingRight":"20rpx","!paddingBottom":"20rpx","!paddingLeft":"20rpx"}},"u-m-l-20":{"":{"!marginLeft":"20rpx"}},"u-p-l-20":{"":{"!paddingLeft":"20rpx"}},"u-margin-left-20":{"":{"!marginLeft":"20rpx"}},"u-padding-left-20":{"":{"!paddingLeft":"20rpx"}},"u-m-t-20":{"":{"!marginTop":"20rpx"}},"u-p-t-20":{"":{"!paddingTop":"20rpx"}},"u-margin-top-20":{"":{"!marginTop":"20rpx"}},"u-padding-top-20":{"":{"!paddingTop":"20rpx"}},"u-m-r-20":{"":{"!marginRight":"20rpx"}},"u-p-r-20":{"":{"!paddingRight":"20rpx"}},"u-margin-right-20":{"":{"!marginRight":"20rpx"}},"u-padding-right-20":{"":{"!paddingRight":"20rpx"}},"u-m-b-20":{"":{"!marginBottom":"20rpx"}},"u-p-b-20":{"":{"!paddingBottom":"20rpx"}},"u-margin-bottom-20":{"":{"!marginBottom":"20rpx"}},"u-padding-bottom-20":{"":{"!paddingBottom":"20rpx"}},"u-margin-22":{"":{"!marginTop":"22rpx","!marginRight":"22rpx","!marginBottom":"22rpx","!marginLeft":"22rpx"}},"u-m-22":{"":{"!marginTop":"22rpx","!marginRight":"22rpx","!marginBottom":"22rpx","!marginLeft":"22rpx"}},"u-padding-22":{"":{"!paddingTop":"22rpx","!paddingRight":"22rpx","!paddingBottom":"22rpx","!paddingLeft":"22rpx"}},"u-p-22":{"":{"!paddingTop":"22rpx","!paddingRight":"22rpx","!paddingBottom":"22rpx","!paddingLeft":"22rpx"}},"u-m-l-22":{"":{"!marginLeft":"22rpx"}},"u-p-l-22":{"":{"!paddingLeft":"22rpx"}},"u-margin-left-22":{"":{"!marginLeft":"22rpx"}},"u-padding-left-22":{"":{"!paddingLeft":"22rpx"}},"u-m-t-22":{"":{"!marginTop":"22rpx"}},"u-p-t-22":{"":{"!paddingTop":"22rpx"}},"u-margin-top-22":{"":{"!marginTop":"22rpx"}},"u-padding-top-22":{"":{"!paddingTop":"22rpx"}},"u-m-r-22":{"":{"!marginRight":"22rpx"}},"u-p-r-22":{"":{"!paddingRight":"22rpx"}},"u-margin-right-22":{"":{"!marginRight":"22rpx"}},"u-padding-right-22":{"":{"!paddingRight":"22rpx"}},"u-m-b-22":{"":{"!marginBottom":"22rpx"}},"u-p-b-22":{"":{"!paddingBottom":"22rpx"}},"u-margin-bottom-22":{"":{"!marginBottom":"22rpx"}},"u-padding-bottom-22":{"":{"!paddingBottom":"22rpx"}},"u-margin-24":{"":{"!marginTop":"24rpx","!marginRight":"24rpx","!marginBottom":"24rpx","!marginLeft":"24rpx"}},"u-m-24":{"":{"!marginTop":"24rpx","!marginRight":"24rpx","!marginBottom":"24rpx","!marginLeft":"24rpx"}},"u-padding-24":{"":{"!paddingTop":"24rpx","!paddingRight":"24rpx","!paddingBottom":"24rpx","!paddingLeft":"24rpx"}},"u-p-24":{"":{"!paddingTop":"24rpx","!paddingRight":"24rpx","!paddingBottom":"24rpx","!paddingLeft":"24rpx"}},"u-m-l-24":{"":{"!marginLeft":"24rpx"}},"u-p-l-24":{"":{"!paddingLeft":"24rpx"}},"u-margin-left-24":{"":{"!marginLeft":"24rpx"}},"u-padding-left-24":{"":{"!paddingLeft":"24rpx"}},"u-m-t-24":{"":{"!marginTop":"24rpx"}},"u-p-t-24":{"":{"!paddingTop":"24rpx"}},"u-margin-top-24":{"":{"!marginTop":"24rpx"}},"u-padding-top-24":{"":{"!paddingTop":"24rpx"}},"u-m-r-24":{"":{"!marginRight":"24rpx"}},"u-p-r-24":{"":{"!paddingRight":"24rpx"}},"u-margin-right-24":{"":{"!marginRight":"24rpx"}},"u-padding-right-24":{"":{"!paddingRight":"24rpx"}},"u-m-b-24":{"":{"!marginBottom":"24rpx"}},"u-p-b-24":{"":{"!paddingBottom":"24rpx"}},"u-margin-bottom-24":{"":{"!marginBottom":"24rpx"}},"u-padding-bottom-24":{"":{"!paddingBottom":"24rpx"}},"u-margin-25":{"":{"!marginTop":"25rpx","!marginRight":"25rpx","!marginBottom":"25rpx","!marginLeft":"25rpx"}},"u-m-25":{"":{"!marginTop":"25rpx","!marginRight":"25rpx","!marginBottom":"25rpx","!marginLeft":"25rpx"}},"u-padding-25":{"":{"!paddingTop":"25rpx","!paddingRight":"25rpx","!paddingBottom":"25rpx","!paddingLeft":"25rpx"}},"u-p-25":{"":{"!paddingTop":"25rpx","!paddingRight":"25rpx","!paddingBottom":"25rpx","!paddingLeft":"25rpx"}},"u-m-l-25":{"":{"!marginLeft":"25rpx"}},"u-p-l-25":{"":{"!paddingLeft":"25rpx"}},"u-margin-left-25":{"":{"!marginLeft":"25rpx"}},"u-padding-left-25":{"":{"!paddingLeft":"25rpx"}},"u-m-t-25":{"":{"!marginTop":"25rpx"}},"u-p-t-25":{"":{"!paddingTop":"25rpx"}},"u-margin-top-25":{"":{"!marginTop":"25rpx"}},"u-padding-top-25":{"":{"!paddingTop":"25rpx"}},"u-m-r-25":{"":{"!marginRight":"25rpx"}},"u-p-r-25":{"":{"!paddingRight":"25rpx"}},"u-margin-right-25":{"":{"!marginRight":"25rpx"}},"u-padding-right-25":{"":{"!paddingRight":"25rpx"}},"u-m-b-25":{"":{"!marginBottom":"25rpx"}},"u-p-b-25":{"":{"!paddingBottom":"25rpx"}},"u-margin-bottom-25":{"":{"!marginBottom":"25rpx"}},"u-padding-bottom-25":{"":{"!paddingBottom":"25rpx"}},"u-margin-26":{"":{"!marginTop":"26rpx","!marginRight":"26rpx","!marginBottom":"26rpx","!marginLeft":"26rpx"}},"u-m-26":{"":{"!marginTop":"26rpx","!marginRight":"26rpx","!marginBottom":"26rpx","!marginLeft":"26rpx"}},"u-padding-26":{"":{"!paddingTop":"26rpx","!paddingRight":"26rpx","!paddingBottom":"26rpx","!paddingLeft":"26rpx"}},"u-p-26":{"":{"!paddingTop":"26rpx","!paddingRight":"26rpx","!paddingBottom":"26rpx","!paddingLeft":"26rpx"}},"u-m-l-26":{"":{"!marginLeft":"26rpx"}},"u-p-l-26":{"":{"!paddingLeft":"26rpx"}},"u-margin-left-26":{"":{"!marginLeft":"26rpx"}},"u-padding-left-26":{"":{"!paddingLeft":"26rpx"}},"u-m-t-26":{"":{"!marginTop":"26rpx"}},"u-p-t-26":{"":{"!paddingTop":"26rpx"}},"u-margin-top-26":{"":{"!marginTop":"26rpx"}},"u-padding-top-26":{"":{"!paddingTop":"26rpx"}},"u-m-r-26":{"":{"!marginRight":"26rpx"}},"u-p-r-26":{"":{"!paddingRight":"26rpx"}},"u-margin-right-26":{"":{"!marginRight":"26rpx"}},"u-padding-right-26":{"":{"!paddingRight":"26rpx"}},"u-m-b-26":{"":{"!marginBottom":"26rpx"}},"u-p-b-26":{"":{"!paddingBottom":"26rpx"}},"u-margin-bottom-26":{"":{"!marginBottom":"26rpx"}},"u-padding-bottom-26":{"":{"!paddingBottom":"26rpx"}},"u-margin-28":{"":{"!marginTop":"28rpx","!marginRight":"28rpx","!marginBottom":"28rpx","!marginLeft":"28rpx"}},"u-m-28":{"":{"!marginTop":"28rpx","!marginRight":"28rpx","!marginBottom":"28rpx","!marginLeft":"28rpx"}},"u-padding-28":{"":{"!paddingTop":"28rpx","!paddingRight":"28rpx","!paddingBottom":"28rpx","!paddingLeft":"28rpx"}},"u-p-28":{"":{"!paddingTop":"28rpx","!paddingRight":"28rpx","!paddingBottom":"28rpx","!paddingLeft":"28rpx"}},"u-m-l-28":{"":{"!marginLeft":"28rpx"}},"u-p-l-28":{"":{"!paddingLeft":"28rpx"}},"u-margin-left-28":{"":{"!marginLeft":"28rpx"}},"u-padding-left-28":{"":{"!paddingLeft":"28rpx"}},"u-m-t-28":{"":{"!marginTop":"28rpx"}},"u-p-t-28":{"":{"!paddingTop":"28rpx"}},"u-margin-top-28":{"":{"!marginTop":"28rpx"}},"u-padding-top-28":{"":{"!paddingTop":"28rpx"}},"u-m-r-28":{"":{"!marginRight":"28rpx"}},"u-p-r-28":{"":{"!paddingRight":"28rpx"}},"u-margin-right-28":{"":{"!marginRight":"28rpx"}},"u-padding-right-28":{"":{"!paddingRight":"28rpx"}},"u-m-b-28":{"":{"!marginBottom":"28rpx"}},"u-p-b-28":{"":{"!paddingBottom":"28rpx"}},"u-margin-bottom-28":{"":{"!marginBottom":"28rpx"}},"u-padding-bottom-28":{"":{"!paddingBottom":"28rpx"}},"u-margin-30":{"":{"!marginTop":"30rpx","!marginRight":"30rpx","!marginBottom":"30rpx","!marginLeft":"30rpx"}},"u-m-30":{"":{"!marginTop":"30rpx","!marginRight":"30rpx","!marginBottom":"30rpx","!marginLeft":"30rpx"}},"u-padding-30":{"":{"!paddingTop":"30rpx","!paddingRight":"30rpx","!paddingBottom":"30rpx","!paddingLeft":"30rpx"}},"u-p-30":{"":{"!paddingTop":"30rpx","!paddingRight":"30rpx","!paddingBottom":"30rpx","!paddingLeft":"30rpx"}},"u-m-l-30":{"":{"!marginLeft":"30rpx"}},"u-p-l-30":{"":{"!paddingLeft":"30rpx"}},"u-margin-left-30":{"":{"!marginLeft":"30rpx"}},"u-padding-left-30":{"":{"!paddingLeft":"30rpx"}},"u-m-t-30":{"":{"!marginTop":"30rpx"}},"u-p-t-30":{"":{"!paddingTop":"30rpx"}},"u-margin-top-30":{"":{"!marginTop":"30rpx"}},"u-padding-top-30":{"":{"!paddingTop":"30rpx"}},"u-m-r-30":{"":{"!marginRight":"30rpx"}},"u-p-r-30":{"":{"!paddingRight":"30rpx"}},"u-margin-right-30":{"":{"!marginRight":"30rpx"}},"u-padding-right-30":{"":{"!paddingRight":"30rpx"}},"u-m-b-30":{"":{"!marginBottom":"30rpx"}},"u-p-b-30":{"":{"!paddingBottom":"30rpx"}},"u-margin-bottom-30":{"":{"!marginBottom":"30rpx"}},"u-padding-bottom-30":{"":{"!paddingBottom":"30rpx"}},"u-margin-32":{"":{"!marginTop":"32rpx","!marginRight":"32rpx","!marginBottom":"32rpx","!marginLeft":"32rpx"}},"u-m-32":{"":{"!marginTop":"32rpx","!marginRight":"32rpx","!marginBottom":"32rpx","!marginLeft":"32rpx"}},"u-padding-32":{"":{"!paddingTop":"32rpx","!paddingRight":"32rpx","!paddingBottom":"32rpx","!paddingLeft":"32rpx"}},"u-p-32":{"":{"!paddingTop":"32rpx","!paddingRight":"32rpx","!paddingBottom":"32rpx","!paddingLeft":"32rpx"}},"u-m-l-32":{"":{"!marginLeft":"32rpx"}},"u-p-l-32":{"":{"!paddingLeft":"32rpx"}},"u-margin-left-32":{"":{"!marginLeft":"32rpx"}},"u-padding-left-32":{"":{"!paddingLeft":"32rpx"}},"u-m-t-32":{"":{"!marginTop":"32rpx"}},"u-p-t-32":{"":{"!paddingTop":"32rpx"}},"u-margin-top-32":{"":{"!marginTop":"32rpx"}},"u-padding-top-32":{"":{"!paddingTop":"32rpx"}},"u-m-r-32":{"":{"!marginRight":"32rpx"}},"u-p-r-32":{"":{"!paddingRight":"32rpx"}},"u-margin-right-32":{"":{"!marginRight":"32rpx"}},"u-padding-right-32":{"":{"!paddingRight":"32rpx"}},"u-m-b-32":{"":{"!marginBottom":"32rpx"}},"u-p-b-32":{"":{"!paddingBottom":"32rpx"}},"u-margin-bottom-32":{"":{"!marginBottom":"32rpx"}},"u-padding-bottom-32":{"":{"!paddingBottom":"32rpx"}},"u-margin-34":{"":{"!marginTop":"34rpx","!marginRight":"34rpx","!marginBottom":"34rpx","!marginLeft":"34rpx"}},"u-m-34":{"":{"!marginTop":"34rpx","!marginRight":"34rpx","!marginBottom":"34rpx","!marginLeft":"34rpx"}},"u-padding-34":{"":{"!paddingTop":"34rpx","!paddingRight":"34rpx","!paddingBottom":"34rpx","!paddingLeft":"34rpx"}},"u-p-34":{"":{"!paddingTop":"34rpx","!paddingRight":"34rpx","!paddingBottom":"34rpx","!paddingLeft":"34rpx"}},"u-m-l-34":{"":{"!marginLeft":"34rpx"}},"u-p-l-34":{"":{"!paddingLeft":"34rpx"}},"u-margin-left-34":{"":{"!marginLeft":"34rpx"}},"u-padding-left-34":{"":{"!paddingLeft":"34rpx"}},"u-m-t-34":{"":{"!marginTop":"34rpx"}},"u-p-t-34":{"":{"!paddingTop":"34rpx"}},"u-margin-top-34":{"":{"!marginTop":"34rpx"}},"u-padding-top-34":{"":{"!paddingTop":"34rpx"}},"u-m-r-34":{"":{"!marginRight":"34rpx"}},"u-p-r-34":{"":{"!paddingRight":"34rpx"}},"u-margin-right-34":{"":{"!marginRight":"34rpx"}},"u-padding-right-34":{"":{"!paddingRight":"34rpx"}},"u-m-b-34":{"":{"!marginBottom":"34rpx"}},"u-p-b-34":{"":{"!paddingBottom":"34rpx"}},"u-margin-bottom-34":{"":{"!marginBottom":"34rpx"}},"u-padding-bottom-34":{"":{"!paddingBottom":"34rpx"}},"u-margin-35":{"":{"!marginTop":"35rpx","!marginRight":"35rpx","!marginBottom":"35rpx","!marginLeft":"35rpx"}},"u-m-35":{"":{"!marginTop":"35rpx","!marginRight":"35rpx","!marginBottom":"35rpx","!marginLeft":"35rpx"}},"u-padding-35":{"":{"!paddingTop":"35rpx","!paddingRight":"35rpx","!paddingBottom":"35rpx","!paddingLeft":"35rpx"}},"u-p-35":{"":{"!paddingTop":"35rpx","!paddingRight":"35rpx","!paddingBottom":"35rpx","!paddingLeft":"35rpx"}},"u-m-l-35":{"":{"!marginLeft":"35rpx"}},"u-p-l-35":{"":{"!paddingLeft":"35rpx"}},"u-margin-left-35":{"":{"!marginLeft":"35rpx"}},"u-padding-left-35":{"":{"!paddingLeft":"35rpx"}},"u-m-t-35":{"":{"!marginTop":"35rpx"}},"u-p-t-35":{"":{"!paddingTop":"35rpx"}},"u-margin-top-35":{"":{"!marginTop":"35rpx"}},"u-padding-top-35":{"":{"!paddingTop":"35rpx"}},"u-m-r-35":{"":{"!marginRight":"35rpx"}},"u-p-r-35":{"":{"!paddingRight":"35rpx"}},"u-margin-right-35":{"":{"!marginRight":"35rpx"}},"u-padding-right-35":{"":{"!paddingRight":"35rpx"}},"u-m-b-35":{"":{"!marginBottom":"35rpx"}},"u-p-b-35":{"":{"!paddingBottom":"35rpx"}},"u-margin-bottom-35":{"":{"!marginBottom":"35rpx"}},"u-padding-bottom-35":{"":{"!paddingBottom":"35rpx"}},"u-margin-36":{"":{"!marginTop":"36rpx","!marginRight":"36rpx","!marginBottom":"36rpx","!marginLeft":"36rpx"}},"u-m-36":{"":{"!marginTop":"36rpx","!marginRight":"36rpx","!marginBottom":"36rpx","!marginLeft":"36rpx"}},"u-padding-36":{"":{"!paddingTop":"36rpx","!paddingRight":"36rpx","!paddingBottom":"36rpx","!paddingLeft":"36rpx"}},"u-p-36":{"":{"!paddingTop":"36rpx","!paddingRight":"36rpx","!paddingBottom":"36rpx","!paddingLeft":"36rpx"}},"u-m-l-36":{"":{"!marginLeft":"36rpx"}},"u-p-l-36":{"":{"!paddingLeft":"36rpx"}},"u-margin-left-36":{"":{"!marginLeft":"36rpx"}},"u-padding-left-36":{"":{"!paddingLeft":"36rpx"}},"u-m-t-36":{"":{"!marginTop":"36rpx"}},"u-p-t-36":{"":{"!paddingTop":"36rpx"}},"u-margin-top-36":{"":{"!marginTop":"36rpx"}},"u-padding-top-36":{"":{"!paddingTop":"36rpx"}},"u-m-r-36":{"":{"!marginRight":"36rpx"}},"u-p-r-36":{"":{"!paddingRight":"36rpx"}},"u-margin-right-36":{"":{"!marginRight":"36rpx"}},"u-padding-right-36":{"":{"!paddingRight":"36rpx"}},"u-m-b-36":{"":{"!marginBottom":"36rpx"}},"u-p-b-36":{"":{"!paddingBottom":"36rpx"}},"u-margin-bottom-36":{"":{"!marginBottom":"36rpx"}},"u-padding-bottom-36":{"":{"!paddingBottom":"36rpx"}},"u-margin-38":{"":{"!marginTop":"38rpx","!marginRight":"38rpx","!marginBottom":"38rpx","!marginLeft":"38rpx"}},"u-m-38":{"":{"!marginTop":"38rpx","!marginRight":"38rpx","!marginBottom":"38rpx","!marginLeft":"38rpx"}},"u-padding-38":{"":{"!paddingTop":"38rpx","!paddingRight":"38rpx","!paddingBottom":"38rpx","!paddingLeft":"38rpx"}},"u-p-38":{"":{"!paddingTop":"38rpx","!paddingRight":"38rpx","!paddingBottom":"38rpx","!paddingLeft":"38rpx"}},"u-m-l-38":{"":{"!marginLeft":"38rpx"}},"u-p-l-38":{"":{"!paddingLeft":"38rpx"}},"u-margin-left-38":{"":{"!marginLeft":"38rpx"}},"u-padding-left-38":{"":{"!paddingLeft":"38rpx"}},"u-m-t-38":{"":{"!marginTop":"38rpx"}},"u-p-t-38":{"":{"!paddingTop":"38rpx"}},"u-margin-top-38":{"":{"!marginTop":"38rpx"}},"u-padding-top-38":{"":{"!paddingTop":"38rpx"}},"u-m-r-38":{"":{"!marginRight":"38rpx"}},"u-p-r-38":{"":{"!paddingRight":"38rpx"}},"u-margin-right-38":{"":{"!marginRight":"38rpx"}},"u-padding-right-38":{"":{"!paddingRight":"38rpx"}},"u-m-b-38":{"":{"!marginBottom":"38rpx"}},"u-p-b-38":{"":{"!paddingBottom":"38rpx"}},"u-margin-bottom-38":{"":{"!marginBottom":"38rpx"}},"u-padding-bottom-38":{"":{"!paddingBottom":"38rpx"}},"u-margin-40":{"":{"!marginTop":"40rpx","!marginRight":"40rpx","!marginBottom":"40rpx","!marginLeft":"40rpx"}},"u-m-40":{"":{"!marginTop":"40rpx","!marginRight":"40rpx","!marginBottom":"40rpx","!marginLeft":"40rpx"}},"u-padding-40":{"":{"!paddingTop":"40rpx","!paddingRight":"40rpx","!paddingBottom":"40rpx","!paddingLeft":"40rpx"}},"u-p-40":{"":{"!paddingTop":"40rpx","!paddingRight":"40rpx","!paddingBottom":"40rpx","!paddingLeft":"40rpx"}},"u-m-l-40":{"":{"!marginLeft":"40rpx"}},"u-p-l-40":{"":{"!paddingLeft":"40rpx"}},"u-margin-left-40":{"":{"!marginLeft":"40rpx"}},"u-padding-left-40":{"":{"!paddingLeft":"40rpx"}},"u-m-t-40":{"":{"!marginTop":"40rpx"}},"u-p-t-40":{"":{"!paddingTop":"40rpx"}},"u-margin-top-40":{"":{"!marginTop":"40rpx"}},"u-padding-top-40":{"":{"!paddingTop":"40rpx"}},"u-m-r-40":{"":{"!marginRight":"40rpx"}},"u-p-r-40":{"":{"!paddingRight":"40rpx"}},"u-margin-right-40":{"":{"!marginRight":"40rpx"}},"u-padding-right-40":{"":{"!paddingRight":"40rpx"}},"u-m-b-40":{"":{"!marginBottom":"40rpx"}},"u-p-b-40":{"":{"!paddingBottom":"40rpx"}},"u-margin-bottom-40":{"":{"!marginBottom":"40rpx"}},"u-padding-bottom-40":{"":{"!paddingBottom":"40rpx"}},"u-margin-42":{"":{"!marginTop":"42rpx","!marginRight":"42rpx","!marginBottom":"42rpx","!marginLeft":"42rpx"}},"u-m-42":{"":{"!marginTop":"42rpx","!marginRight":"42rpx","!marginBottom":"42rpx","!marginLeft":"42rpx"}},"u-padding-42":{"":{"!paddingTop":"42rpx","!paddingRight":"42rpx","!paddingBottom":"42rpx","!paddingLeft":"42rpx"}},"u-p-42":{"":{"!paddingTop":"42rpx","!paddingRight":"42rpx","!paddingBottom":"42rpx","!paddingLeft":"42rpx"}},"u-m-l-42":{"":{"!marginLeft":"42rpx"}},"u-p-l-42":{"":{"!paddingLeft":"42rpx"}},"u-margin-left-42":{"":{"!marginLeft":"42rpx"}},"u-padding-left-42":{"":{"!paddingLeft":"42rpx"}},"u-m-t-42":{"":{"!marginTop":"42rpx"}},"u-p-t-42":{"":{"!paddingTop":"42rpx"}},"u-margin-top-42":{"":{"!marginTop":"42rpx"}},"u-padding-top-42":{"":{"!paddingTop":"42rpx"}},"u-m-r-42":{"":{"!marginRight":"42rpx"}},"u-p-r-42":{"":{"!paddingRight":"42rpx"}},"u-margin-right-42":{"":{"!marginRight":"42rpx"}},"u-padding-right-42":{"":{"!paddingRight":"42rpx"}},"u-m-b-42":{"":{"!marginBottom":"42rpx"}},"u-p-b-42":{"":{"!paddingBottom":"42rpx"}},"u-margin-bottom-42":{"":{"!marginBottom":"42rpx"}},"u-padding-bottom-42":{"":{"!paddingBottom":"42rpx"}},"u-margin-44":{"":{"!marginTop":"44rpx","!marginRight":"44rpx","!marginBottom":"44rpx","!marginLeft":"44rpx"}},"u-m-44":{"":{"!marginTop":"44rpx","!marginRight":"44rpx","!marginBottom":"44rpx","!marginLeft":"44rpx"}},"u-padding-44":{"":{"!paddingTop":"44rpx","!paddingRight":"44rpx","!paddingBottom":"44rpx","!paddingLeft":"44rpx"}},"u-p-44":{"":{"!paddingTop":"44rpx","!paddingRight":"44rpx","!paddingBottom":"44rpx","!paddingLeft":"44rpx"}},"u-m-l-44":{"":{"!marginLeft":"44rpx"}},"u-p-l-44":{"":{"!paddingLeft":"44rpx"}},"u-margin-left-44":{"":{"!marginLeft":"44rpx"}},"u-padding-left-44":{"":{"!paddingLeft":"44rpx"}},"u-m-t-44":{"":{"!marginTop":"44rpx"}},"u-p-t-44":{"":{"!paddingTop":"44rpx"}},"u-margin-top-44":{"":{"!marginTop":"44rpx"}},"u-padding-top-44":{"":{"!paddingTop":"44rpx"}},"u-m-r-44":{"":{"!marginRight":"44rpx"}},"u-p-r-44":{"":{"!paddingRight":"44rpx"}},"u-margin-right-44":{"":{"!marginRight":"44rpx"}},"u-padding-right-44":{"":{"!paddingRight":"44rpx"}},"u-m-b-44":{"":{"!marginBottom":"44rpx"}},"u-p-b-44":{"":{"!paddingBottom":"44rpx"}},"u-margin-bottom-44":{"":{"!marginBottom":"44rpx"}},"u-padding-bottom-44":{"":{"!paddingBottom":"44rpx"}},"u-margin-45":{"":{"!marginTop":"45rpx","!marginRight":"45rpx","!marginBottom":"45rpx","!marginLeft":"45rpx"}},"u-m-45":{"":{"!marginTop":"45rpx","!marginRight":"45rpx","!marginBottom":"45rpx","!marginLeft":"45rpx"}},"u-padding-45":{"":{"!paddingTop":"45rpx","!paddingRight":"45rpx","!paddingBottom":"45rpx","!paddingLeft":"45rpx"}},"u-p-45":{"":{"!paddingTop":"45rpx","!paddingRight":"45rpx","!paddingBottom":"45rpx","!paddingLeft":"45rpx"}},"u-m-l-45":{"":{"!marginLeft":"45rpx"}},"u-p-l-45":{"":{"!paddingLeft":"45rpx"}},"u-margin-left-45":{"":{"!marginLeft":"45rpx"}},"u-padding-left-45":{"":{"!paddingLeft":"45rpx"}},"u-m-t-45":{"":{"!marginTop":"45rpx"}},"u-p-t-45":{"":{"!paddingTop":"45rpx"}},"u-margin-top-45":{"":{"!marginTop":"45rpx"}},"u-padding-top-45":{"":{"!paddingTop":"45rpx"}},"u-m-r-45":{"":{"!marginRight":"45rpx"}},"u-p-r-45":{"":{"!paddingRight":"45rpx"}},"u-margin-right-45":{"":{"!marginRight":"45rpx"}},"u-padding-right-45":{"":{"!paddingRight":"45rpx"}},"u-m-b-45":{"":{"!marginBottom":"45rpx"}},"u-p-b-45":{"":{"!paddingBottom":"45rpx"}},"u-margin-bottom-45":{"":{"!marginBottom":"45rpx"}},"u-padding-bottom-45":{"":{"!paddingBottom":"45rpx"}},"u-margin-46":{"":{"!marginTop":"46rpx","!marginRight":"46rpx","!marginBottom":"46rpx","!marginLeft":"46rpx"}},"u-m-46":{"":{"!marginTop":"46rpx","!marginRight":"46rpx","!marginBottom":"46rpx","!marginLeft":"46rpx"}},"u-padding-46":{"":{"!paddingTop":"46rpx","!paddingRight":"46rpx","!paddingBottom":"46rpx","!paddingLeft":"46rpx"}},"u-p-46":{"":{"!paddingTop":"46rpx","!paddingRight":"46rpx","!paddingBottom":"46rpx","!paddingLeft":"46rpx"}},"u-m-l-46":{"":{"!marginLeft":"46rpx"}},"u-p-l-46":{"":{"!paddingLeft":"46rpx"}},"u-margin-left-46":{"":{"!marginLeft":"46rpx"}},"u-padding-left-46":{"":{"!paddingLeft":"46rpx"}},"u-m-t-46":{"":{"!marginTop":"46rpx"}},"u-p-t-46":{"":{"!paddingTop":"46rpx"}},"u-margin-top-46":{"":{"!marginTop":"46rpx"}},"u-padding-top-46":{"":{"!paddingTop":"46rpx"}},"u-m-r-46":{"":{"!marginRight":"46rpx"}},"u-p-r-46":{"":{"!paddingRight":"46rpx"}},"u-margin-right-46":{"":{"!marginRight":"46rpx"}},"u-padding-right-46":{"":{"!paddingRight":"46rpx"}},"u-m-b-46":{"":{"!marginBottom":"46rpx"}},"u-p-b-46":{"":{"!paddingBottom":"46rpx"}},"u-margin-bottom-46":{"":{"!marginBottom":"46rpx"}},"u-padding-bottom-46":{"":{"!paddingBottom":"46rpx"}},"u-margin-48":{"":{"!marginTop":"48rpx","!marginRight":"48rpx","!marginBottom":"48rpx","!marginLeft":"48rpx"}},"u-m-48":{"":{"!marginTop":"48rpx","!marginRight":"48rpx","!marginBottom":"48rpx","!marginLeft":"48rpx"}},"u-padding-48":{"":{"!paddingTop":"48rpx","!paddingRight":"48rpx","!paddingBottom":"48rpx","!paddingLeft":"48rpx"}},"u-p-48":{"":{"!paddingTop":"48rpx","!paddingRight":"48rpx","!paddingBottom":"48rpx","!paddingLeft":"48rpx"}},"u-m-l-48":{"":{"!marginLeft":"48rpx"}},"u-p-l-48":{"":{"!paddingLeft":"48rpx"}},"u-margin-left-48":{"":{"!marginLeft":"48rpx"}},"u-padding-left-48":{"":{"!paddingLeft":"48rpx"}},"u-m-t-48":{"":{"!marginTop":"48rpx"}},"u-p-t-48":{"":{"!paddingTop":"48rpx"}},"u-margin-top-48":{"":{"!marginTop":"48rpx"}},"u-padding-top-48":{"":{"!paddingTop":"48rpx"}},"u-m-r-48":{"":{"!marginRight":"48rpx"}},"u-p-r-48":{"":{"!paddingRight":"48rpx"}},"u-margin-right-48":{"":{"!marginRight":"48rpx"}},"u-padding-right-48":{"":{"!paddingRight":"48rpx"}},"u-m-b-48":{"":{"!marginBottom":"48rpx"}},"u-p-b-48":{"":{"!paddingBottom":"48rpx"}},"u-margin-bottom-48":{"":{"!marginBottom":"48rpx"}},"u-padding-bottom-48":{"":{"!paddingBottom":"48rpx"}},"u-margin-50":{"":{"!marginTop":"50rpx","!marginRight":"50rpx","!marginBottom":"50rpx","!marginLeft":"50rpx"}},"u-m-50":{"":{"!marginTop":"50rpx","!marginRight":"50rpx","!marginBottom":"50rpx","!marginLeft":"50rpx"}},"u-padding-50":{"":{"!paddingTop":"50rpx","!paddingRight":"50rpx","!paddingBottom":"50rpx","!paddingLeft":"50rpx"}},"u-p-50":{"":{"!paddingTop":"50rpx","!paddingRight":"50rpx","!paddingBottom":"50rpx","!paddingLeft":"50rpx"}},"u-m-l-50":{"":{"!marginLeft":"50rpx"}},"u-p-l-50":{"":{"!paddingLeft":"50rpx"}},"u-margin-left-50":{"":{"!marginLeft":"50rpx"}},"u-padding-left-50":{"":{"!paddingLeft":"50rpx"}},"u-m-t-50":{"":{"!marginTop":"50rpx"}},"u-p-t-50":{"":{"!paddingTop":"50rpx"}},"u-margin-top-50":{"":{"!marginTop":"50rpx"}},"u-padding-top-50":{"":{"!paddingTop":"50rpx"}},"u-m-r-50":{"":{"!marginRight":"50rpx"}},"u-p-r-50":{"":{"!paddingRight":"50rpx"}},"u-margin-right-50":{"":{"!marginRight":"50rpx"}},"u-padding-right-50":{"":{"!paddingRight":"50rpx"}},"u-m-b-50":{"":{"!marginBottom":"50rpx"}},"u-p-b-50":{"":{"!paddingBottom":"50rpx"}},"u-margin-bottom-50":{"":{"!marginBottom":"50rpx"}},"u-padding-bottom-50":{"":{"!paddingBottom":"50rpx"}},"u-margin-52":{"":{"!marginTop":"52rpx","!marginRight":"52rpx","!marginBottom":"52rpx","!marginLeft":"52rpx"}},"u-m-52":{"":{"!marginTop":"52rpx","!marginRight":"52rpx","!marginBottom":"52rpx","!marginLeft":"52rpx"}},"u-padding-52":{"":{"!paddingTop":"52rpx","!paddingRight":"52rpx","!paddingBottom":"52rpx","!paddingLeft":"52rpx"}},"u-p-52":{"":{"!paddingTop":"52rpx","!paddingRight":"52rpx","!paddingBottom":"52rpx","!paddingLeft":"52rpx"}},"u-m-l-52":{"":{"!marginLeft":"52rpx"}},"u-p-l-52":{"":{"!paddingLeft":"52rpx"}},"u-margin-left-52":{"":{"!marginLeft":"52rpx"}},"u-padding-left-52":{"":{"!paddingLeft":"52rpx"}},"u-m-t-52":{"":{"!marginTop":"52rpx"}},"u-p-t-52":{"":{"!paddingTop":"52rpx"}},"u-margin-top-52":{"":{"!marginTop":"52rpx"}},"u-padding-top-52":{"":{"!paddingTop":"52rpx"}},"u-m-r-52":{"":{"!marginRight":"52rpx"}},"u-p-r-52":{"":{"!paddingRight":"52rpx"}},"u-margin-right-52":{"":{"!marginRight":"52rpx"}},"u-padding-right-52":{"":{"!paddingRight":"52rpx"}},"u-m-b-52":{"":{"!marginBottom":"52rpx"}},"u-p-b-52":{"":{"!paddingBottom":"52rpx"}},"u-margin-bottom-52":{"":{"!marginBottom":"52rpx"}},"u-padding-bottom-52":{"":{"!paddingBottom":"52rpx"}},"u-margin-54":{"":{"!marginTop":"54rpx","!marginRight":"54rpx","!marginBottom":"54rpx","!marginLeft":"54rpx"}},"u-m-54":{"":{"!marginTop":"54rpx","!marginRight":"54rpx","!marginBottom":"54rpx","!marginLeft":"54rpx"}},"u-padding-54":{"":{"!paddingTop":"54rpx","!paddingRight":"54rpx","!paddingBottom":"54rpx","!paddingLeft":"54rpx"}},"u-p-54":{"":{"!paddingTop":"54rpx","!paddingRight":"54rpx","!paddingBottom":"54rpx","!paddingLeft":"54rpx"}},"u-m-l-54":{"":{"!marginLeft":"54rpx"}},"u-p-l-54":{"":{"!paddingLeft":"54rpx"}},"u-margin-left-54":{"":{"!marginLeft":"54rpx"}},"u-padding-left-54":{"":{"!paddingLeft":"54rpx"}},"u-m-t-54":{"":{"!marginTop":"54rpx"}},"u-p-t-54":{"":{"!paddingTop":"54rpx"}},"u-margin-top-54":{"":{"!marginTop":"54rpx"}},"u-padding-top-54":{"":{"!paddingTop":"54rpx"}},"u-m-r-54":{"":{"!marginRight":"54rpx"}},"u-p-r-54":{"":{"!paddingRight":"54rpx"}},"u-margin-right-54":{"":{"!marginRight":"54rpx"}},"u-padding-right-54":{"":{"!paddingRight":"54rpx"}},"u-m-b-54":{"":{"!marginBottom":"54rpx"}},"u-p-b-54":{"":{"!paddingBottom":"54rpx"}},"u-margin-bottom-54":{"":{"!marginBottom":"54rpx"}},"u-padding-bottom-54":{"":{"!paddingBottom":"54rpx"}},"u-margin-55":{"":{"!marginTop":"55rpx","!marginRight":"55rpx","!marginBottom":"55rpx","!marginLeft":"55rpx"}},"u-m-55":{"":{"!marginTop":"55rpx","!marginRight":"55rpx","!marginBottom":"55rpx","!marginLeft":"55rpx"}},"u-padding-55":{"":{"!paddingTop":"55rpx","!paddingRight":"55rpx","!paddingBottom":"55rpx","!paddingLeft":"55rpx"}},"u-p-55":{"":{"!paddingTop":"55rpx","!paddingRight":"55rpx","!paddingBottom":"55rpx","!paddingLeft":"55rpx"}},"u-m-l-55":{"":{"!marginLeft":"55rpx"}},"u-p-l-55":{"":{"!paddingLeft":"55rpx"}},"u-margin-left-55":{"":{"!marginLeft":"55rpx"}},"u-padding-left-55":{"":{"!paddingLeft":"55rpx"}},"u-m-t-55":{"":{"!marginTop":"55rpx"}},"u-p-t-55":{"":{"!paddingTop":"55rpx"}},"u-margin-top-55":{"":{"!marginTop":"55rpx"}},"u-padding-top-55":{"":{"!paddingTop":"55rpx"}},"u-m-r-55":{"":{"!marginRight":"55rpx"}},"u-p-r-55":{"":{"!paddingRight":"55rpx"}},"u-margin-right-55":{"":{"!marginRight":"55rpx"}},"u-padding-right-55":{"":{"!paddingRight":"55rpx"}},"u-m-b-55":{"":{"!marginBottom":"55rpx"}},"u-p-b-55":{"":{"!paddingBottom":"55rpx"}},"u-margin-bottom-55":{"":{"!marginBottom":"55rpx"}},"u-padding-bottom-55":{"":{"!paddingBottom":"55rpx"}},"u-margin-56":{"":{"!marginTop":"56rpx","!marginRight":"56rpx","!marginBottom":"56rpx","!marginLeft":"56rpx"}},"u-m-56":{"":{"!marginTop":"56rpx","!marginRight":"56rpx","!marginBottom":"56rpx","!marginLeft":"56rpx"}},"u-padding-56":{"":{"!paddingTop":"56rpx","!paddingRight":"56rpx","!paddingBottom":"56rpx","!paddingLeft":"56rpx"}},"u-p-56":{"":{"!paddingTop":"56rpx","!paddingRight":"56rpx","!paddingBottom":"56rpx","!paddingLeft":"56rpx"}},"u-m-l-56":{"":{"!marginLeft":"56rpx"}},"u-p-l-56":{"":{"!paddingLeft":"56rpx"}},"u-margin-left-56":{"":{"!marginLeft":"56rpx"}},"u-padding-left-56":{"":{"!paddingLeft":"56rpx"}},"u-m-t-56":{"":{"!marginTop":"56rpx"}},"u-p-t-56":{"":{"!paddingTop":"56rpx"}},"u-margin-top-56":{"":{"!marginTop":"56rpx"}},"u-padding-top-56":{"":{"!paddingTop":"56rpx"}},"u-m-r-56":{"":{"!marginRight":"56rpx"}},"u-p-r-56":{"":{"!paddingRight":"56rpx"}},"u-margin-right-56":{"":{"!marginRight":"56rpx"}},"u-padding-right-56":{"":{"!paddingRight":"56rpx"}},"u-m-b-56":{"":{"!marginBottom":"56rpx"}},"u-p-b-56":{"":{"!paddingBottom":"56rpx"}},"u-margin-bottom-56":{"":{"!marginBottom":"56rpx"}},"u-padding-bottom-56":{"":{"!paddingBottom":"56rpx"}},"u-margin-58":{"":{"!marginTop":"58rpx","!marginRight":"58rpx","!marginBottom":"58rpx","!marginLeft":"58rpx"}},"u-m-58":{"":{"!marginTop":"58rpx","!marginRight":"58rpx","!marginBottom":"58rpx","!marginLeft":"58rpx"}},"u-padding-58":{"":{"!paddingTop":"58rpx","!paddingRight":"58rpx","!paddingBottom":"58rpx","!paddingLeft":"58rpx"}},"u-p-58":{"":{"!paddingTop":"58rpx","!paddingRight":"58rpx","!paddingBottom":"58rpx","!paddingLeft":"58rpx"}},"u-m-l-58":{"":{"!marginLeft":"58rpx"}},"u-p-l-58":{"":{"!paddingLeft":"58rpx"}},"u-margin-left-58":{"":{"!marginLeft":"58rpx"}},"u-padding-left-58":{"":{"!paddingLeft":"58rpx"}},"u-m-t-58":{"":{"!marginTop":"58rpx"}},"u-p-t-58":{"":{"!paddingTop":"58rpx"}},"u-margin-top-58":{"":{"!marginTop":"58rpx"}},"u-padding-top-58":{"":{"!paddingTop":"58rpx"}},"u-m-r-58":{"":{"!marginRight":"58rpx"}},"u-p-r-58":{"":{"!paddingRight":"58rpx"}},"u-margin-right-58":{"":{"!marginRight":"58rpx"}},"u-padding-right-58":{"":{"!paddingRight":"58rpx"}},"u-m-b-58":{"":{"!marginBottom":"58rpx"}},"u-p-b-58":{"":{"!paddingBottom":"58rpx"}},"u-margin-bottom-58":{"":{"!marginBottom":"58rpx"}},"u-padding-bottom-58":{"":{"!paddingBottom":"58rpx"}},"u-margin-60":{"":{"!marginTop":"60rpx","!marginRight":"60rpx","!marginBottom":"60rpx","!marginLeft":"60rpx"}},"u-m-60":{"":{"!marginTop":"60rpx","!marginRight":"60rpx","!marginBottom":"60rpx","!marginLeft":"60rpx"}},"u-padding-60":{"":{"!paddingTop":"60rpx","!paddingRight":"60rpx","!paddingBottom":"60rpx","!paddingLeft":"60rpx"}},"u-p-60":{"":{"!paddingTop":"60rpx","!paddingRight":"60rpx","!paddingBottom":"60rpx","!paddingLeft":"60rpx"}},"u-m-l-60":{"":{"!marginLeft":"60rpx"}},"u-p-l-60":{"":{"!paddingLeft":"60rpx"}},"u-margin-left-60":{"":{"!marginLeft":"60rpx"}},"u-padding-left-60":{"":{"!paddingLeft":"60rpx"}},"u-m-t-60":{"":{"!marginTop":"60rpx"}},"u-p-t-60":{"":{"!paddingTop":"60rpx"}},"u-margin-top-60":{"":{"!marginTop":"60rpx"}},"u-padding-top-60":{"":{"!paddingTop":"60rpx"}},"u-m-r-60":{"":{"!marginRight":"60rpx"}},"u-p-r-60":{"":{"!paddingRight":"60rpx"}},"u-margin-right-60":{"":{"!marginRight":"60rpx"}},"u-padding-right-60":{"":{"!paddingRight":"60rpx"}},"u-m-b-60":{"":{"!marginBottom":"60rpx"}},"u-p-b-60":{"":{"!paddingBottom":"60rpx"}},"u-margin-bottom-60":{"":{"!marginBottom":"60rpx"}},"u-padding-bottom-60":{"":{"!paddingBottom":"60rpx"}},"u-margin-62":{"":{"!marginTop":"62rpx","!marginRight":"62rpx","!marginBottom":"62rpx","!marginLeft":"62rpx"}},"u-m-62":{"":{"!marginTop":"62rpx","!marginRight":"62rpx","!marginBottom":"62rpx","!marginLeft":"62rpx"}},"u-padding-62":{"":{"!paddingTop":"62rpx","!paddingRight":"62rpx","!paddingBottom":"62rpx","!paddingLeft":"62rpx"}},"u-p-62":{"":{"!paddingTop":"62rpx","!paddingRight":"62rpx","!paddingBottom":"62rpx","!paddingLeft":"62rpx"}},"u-m-l-62":{"":{"!marginLeft":"62rpx"}},"u-p-l-62":{"":{"!paddingLeft":"62rpx"}},"u-margin-left-62":{"":{"!marginLeft":"62rpx"}},"u-padding-left-62":{"":{"!paddingLeft":"62rpx"}},"u-m-t-62":{"":{"!marginTop":"62rpx"}},"u-p-t-62":{"":{"!paddingTop":"62rpx"}},"u-margin-top-62":{"":{"!marginTop":"62rpx"}},"u-padding-top-62":{"":{"!paddingTop":"62rpx"}},"u-m-r-62":{"":{"!marginRight":"62rpx"}},"u-p-r-62":{"":{"!paddingRight":"62rpx"}},"u-margin-right-62":{"":{"!marginRight":"62rpx"}},"u-padding-right-62":{"":{"!paddingRight":"62rpx"}},"u-m-b-62":{"":{"!marginBottom":"62rpx"}},"u-p-b-62":{"":{"!paddingBottom":"62rpx"}},"u-margin-bottom-62":{"":{"!marginBottom":"62rpx"}},"u-padding-bottom-62":{"":{"!paddingBottom":"62rpx"}},"u-margin-64":{"":{"!marginTop":"64rpx","!marginRight":"64rpx","!marginBottom":"64rpx","!marginLeft":"64rpx"}},"u-m-64":{"":{"!marginTop":"64rpx","!marginRight":"64rpx","!marginBottom":"64rpx","!marginLeft":"64rpx"}},"u-padding-64":{"":{"!paddingTop":"64rpx","!paddingRight":"64rpx","!paddingBottom":"64rpx","!paddingLeft":"64rpx"}},"u-p-64":{"":{"!paddingTop":"64rpx","!paddingRight":"64rpx","!paddingBottom":"64rpx","!paddingLeft":"64rpx"}},"u-m-l-64":{"":{"!marginLeft":"64rpx"}},"u-p-l-64":{"":{"!paddingLeft":"64rpx"}},"u-margin-left-64":{"":{"!marginLeft":"64rpx"}},"u-padding-left-64":{"":{"!paddingLeft":"64rpx"}},"u-m-t-64":{"":{"!marginTop":"64rpx"}},"u-p-t-64":{"":{"!paddingTop":"64rpx"}},"u-margin-top-64":{"":{"!marginTop":"64rpx"}},"u-padding-top-64":{"":{"!paddingTop":"64rpx"}},"u-m-r-64":{"":{"!marginRight":"64rpx"}},"u-p-r-64":{"":{"!paddingRight":"64rpx"}},"u-margin-right-64":{"":{"!marginRight":"64rpx"}},"u-padding-right-64":{"":{"!paddingRight":"64rpx"}},"u-m-b-64":{"":{"!marginBottom":"64rpx"}},"u-p-b-64":{"":{"!paddingBottom":"64rpx"}},"u-margin-bottom-64":{"":{"!marginBottom":"64rpx"}},"u-padding-bottom-64":{"":{"!paddingBottom":"64rpx"}},"u-margin-65":{"":{"!marginTop":"65rpx","!marginRight":"65rpx","!marginBottom":"65rpx","!marginLeft":"65rpx"}},"u-m-65":{"":{"!marginTop":"65rpx","!marginRight":"65rpx","!marginBottom":"65rpx","!marginLeft":"65rpx"}},"u-padding-65":{"":{"!paddingTop":"65rpx","!paddingRight":"65rpx","!paddingBottom":"65rpx","!paddingLeft":"65rpx"}},"u-p-65":{"":{"!paddingTop":"65rpx","!paddingRight":"65rpx","!paddingBottom":"65rpx","!paddingLeft":"65rpx"}},"u-m-l-65":{"":{"!marginLeft":"65rpx"}},"u-p-l-65":{"":{"!paddingLeft":"65rpx"}},"u-margin-left-65":{"":{"!marginLeft":"65rpx"}},"u-padding-left-65":{"":{"!paddingLeft":"65rpx"}},"u-m-t-65":{"":{"!marginTop":"65rpx"}},"u-p-t-65":{"":{"!paddingTop":"65rpx"}},"u-margin-top-65":{"":{"!marginTop":"65rpx"}},"u-padding-top-65":{"":{"!paddingTop":"65rpx"}},"u-m-r-65":{"":{"!marginRight":"65rpx"}},"u-p-r-65":{"":{"!paddingRight":"65rpx"}},"u-margin-right-65":{"":{"!marginRight":"65rpx"}},"u-padding-right-65":{"":{"!paddingRight":"65rpx"}},"u-m-b-65":{"":{"!marginBottom":"65rpx"}},"u-p-b-65":{"":{"!paddingBottom":"65rpx"}},"u-margin-bottom-65":{"":{"!marginBottom":"65rpx"}},"u-padding-bottom-65":{"":{"!paddingBottom":"65rpx"}},"u-margin-66":{"":{"!marginTop":"66rpx","!marginRight":"66rpx","!marginBottom":"66rpx","!marginLeft":"66rpx"}},"u-m-66":{"":{"!marginTop":"66rpx","!marginRight":"66rpx","!marginBottom":"66rpx","!marginLeft":"66rpx"}},"u-padding-66":{"":{"!paddingTop":"66rpx","!paddingRight":"66rpx","!paddingBottom":"66rpx","!paddingLeft":"66rpx"}},"u-p-66":{"":{"!paddingTop":"66rpx","!paddingRight":"66rpx","!paddingBottom":"66rpx","!paddingLeft":"66rpx"}},"u-m-l-66":{"":{"!marginLeft":"66rpx"}},"u-p-l-66":{"":{"!paddingLeft":"66rpx"}},"u-margin-left-66":{"":{"!marginLeft":"66rpx"}},"u-padding-left-66":{"":{"!paddingLeft":"66rpx"}},"u-m-t-66":{"":{"!marginTop":"66rpx"}},"u-p-t-66":{"":{"!paddingTop":"66rpx"}},"u-margin-top-66":{"":{"!marginTop":"66rpx"}},"u-padding-top-66":{"":{"!paddingTop":"66rpx"}},"u-m-r-66":{"":{"!marginRight":"66rpx"}},"u-p-r-66":{"":{"!paddingRight":"66rpx"}},"u-margin-right-66":{"":{"!marginRight":"66rpx"}},"u-padding-right-66":{"":{"!paddingRight":"66rpx"}},"u-m-b-66":{"":{"!marginBottom":"66rpx"}},"u-p-b-66":{"":{"!paddingBottom":"66rpx"}},"u-margin-bottom-66":{"":{"!marginBottom":"66rpx"}},"u-padding-bottom-66":{"":{"!paddingBottom":"66rpx"}},"u-margin-68":{"":{"!marginTop":"68rpx","!marginRight":"68rpx","!marginBottom":"68rpx","!marginLeft":"68rpx"}},"u-m-68":{"":{"!marginTop":"68rpx","!marginRight":"68rpx","!marginBottom":"68rpx","!marginLeft":"68rpx"}},"u-padding-68":{"":{"!paddingTop":"68rpx","!paddingRight":"68rpx","!paddingBottom":"68rpx","!paddingLeft":"68rpx"}},"u-p-68":{"":{"!paddingTop":"68rpx","!paddingRight":"68rpx","!paddingBottom":"68rpx","!paddingLeft":"68rpx"}},"u-m-l-68":{"":{"!marginLeft":"68rpx"}},"u-p-l-68":{"":{"!paddingLeft":"68rpx"}},"u-margin-left-68":{"":{"!marginLeft":"68rpx"}},"u-padding-left-68":{"":{"!paddingLeft":"68rpx"}},"u-m-t-68":{"":{"!marginTop":"68rpx"}},"u-p-t-68":{"":{"!paddingTop":"68rpx"}},"u-margin-top-68":{"":{"!marginTop":"68rpx"}},"u-padding-top-68":{"":{"!paddingTop":"68rpx"}},"u-m-r-68":{"":{"!marginRight":"68rpx"}},"u-p-r-68":{"":{"!paddingRight":"68rpx"}},"u-margin-right-68":{"":{"!marginRight":"68rpx"}},"u-padding-right-68":{"":{"!paddingRight":"68rpx"}},"u-m-b-68":{"":{"!marginBottom":"68rpx"}},"u-p-b-68":{"":{"!paddingBottom":"68rpx"}},"u-margin-bottom-68":{"":{"!marginBottom":"68rpx"}},"u-padding-bottom-68":{"":{"!paddingBottom":"68rpx"}},"u-margin-70":{"":{"!marginTop":"70rpx","!marginRight":"70rpx","!marginBottom":"70rpx","!marginLeft":"70rpx"}},"u-m-70":{"":{"!marginTop":"70rpx","!marginRight":"70rpx","!marginBottom":"70rpx","!marginLeft":"70rpx"}},"u-padding-70":{"":{"!paddingTop":"70rpx","!paddingRight":"70rpx","!paddingBottom":"70rpx","!paddingLeft":"70rpx"}},"u-p-70":{"":{"!paddingTop":"70rpx","!paddingRight":"70rpx","!paddingBottom":"70rpx","!paddingLeft":"70rpx"}},"u-m-l-70":{"":{"!marginLeft":"70rpx"}},"u-p-l-70":{"":{"!paddingLeft":"70rpx"}},"u-margin-left-70":{"":{"!marginLeft":"70rpx"}},"u-padding-left-70":{"":{"!paddingLeft":"70rpx"}},"u-m-t-70":{"":{"!marginTop":"70rpx"}},"u-p-t-70":{"":{"!paddingTop":"70rpx"}},"u-margin-top-70":{"":{"!marginTop":"70rpx"}},"u-padding-top-70":{"":{"!paddingTop":"70rpx"}},"u-m-r-70":{"":{"!marginRight":"70rpx"}},"u-p-r-70":{"":{"!paddingRight":"70rpx"}},"u-margin-right-70":{"":{"!marginRight":"70rpx"}},"u-padding-right-70":{"":{"!paddingRight":"70rpx"}},"u-m-b-70":{"":{"!marginBottom":"70rpx"}},"u-p-b-70":{"":{"!paddingBottom":"70rpx"}},"u-margin-bottom-70":{"":{"!marginBottom":"70rpx"}},"u-padding-bottom-70":{"":{"!paddingBottom":"70rpx"}},"u-margin-72":{"":{"!marginTop":"72rpx","!marginRight":"72rpx","!marginBottom":"72rpx","!marginLeft":"72rpx"}},"u-m-72":{"":{"!marginTop":"72rpx","!marginRight":"72rpx","!marginBottom":"72rpx","!marginLeft":"72rpx"}},"u-padding-72":{"":{"!paddingTop":"72rpx","!paddingRight":"72rpx","!paddingBottom":"72rpx","!paddingLeft":"72rpx"}},"u-p-72":{"":{"!paddingTop":"72rpx","!paddingRight":"72rpx","!paddingBottom":"72rpx","!paddingLeft":"72rpx"}},"u-m-l-72":{"":{"!marginLeft":"72rpx"}},"u-p-l-72":{"":{"!paddingLeft":"72rpx"}},"u-margin-left-72":{"":{"!marginLeft":"72rpx"}},"u-padding-left-72":{"":{"!paddingLeft":"72rpx"}},"u-m-t-72":{"":{"!marginTop":"72rpx"}},"u-p-t-72":{"":{"!paddingTop":"72rpx"}},"u-margin-top-72":{"":{"!marginTop":"72rpx"}},"u-padding-top-72":{"":{"!paddingTop":"72rpx"}},"u-m-r-72":{"":{"!marginRight":"72rpx"}},"u-p-r-72":{"":{"!paddingRight":"72rpx"}},"u-margin-right-72":{"":{"!marginRight":"72rpx"}},"u-padding-right-72":{"":{"!paddingRight":"72rpx"}},"u-m-b-72":{"":{"!marginBottom":"72rpx"}},"u-p-b-72":{"":{"!paddingBottom":"72rpx"}},"u-margin-bottom-72":{"":{"!marginBottom":"72rpx"}},"u-padding-bottom-72":{"":{"!paddingBottom":"72rpx"}},"u-margin-74":{"":{"!marginTop":"74rpx","!marginRight":"74rpx","!marginBottom":"74rpx","!marginLeft":"74rpx"}},"u-m-74":{"":{"!marginTop":"74rpx","!marginRight":"74rpx","!marginBottom":"74rpx","!marginLeft":"74rpx"}},"u-padding-74":{"":{"!paddingTop":"74rpx","!paddingRight":"74rpx","!paddingBottom":"74rpx","!paddingLeft":"74rpx"}},"u-p-74":{"":{"!paddingTop":"74rpx","!paddingRight":"74rpx","!paddingBottom":"74rpx","!paddingLeft":"74rpx"}},"u-m-l-74":{"":{"!marginLeft":"74rpx"}},"u-p-l-74":{"":{"!paddingLeft":"74rpx"}},"u-margin-left-74":{"":{"!marginLeft":"74rpx"}},"u-padding-left-74":{"":{"!paddingLeft":"74rpx"}},"u-m-t-74":{"":{"!marginTop":"74rpx"}},"u-p-t-74":{"":{"!paddingTop":"74rpx"}},"u-margin-top-74":{"":{"!marginTop":"74rpx"}},"u-padding-top-74":{"":{"!paddingTop":"74rpx"}},"u-m-r-74":{"":{"!marginRight":"74rpx"}},"u-p-r-74":{"":{"!paddingRight":"74rpx"}},"u-margin-right-74":{"":{"!marginRight":"74rpx"}},"u-padding-right-74":{"":{"!paddingRight":"74rpx"}},"u-m-b-74":{"":{"!marginBottom":"74rpx"}},"u-p-b-74":{"":{"!paddingBottom":"74rpx"}},"u-margin-bottom-74":{"":{"!marginBottom":"74rpx"}},"u-padding-bottom-74":{"":{"!paddingBottom":"74rpx"}},"u-margin-75":{"":{"!marginTop":"75rpx","!marginRight":"75rpx","!marginBottom":"75rpx","!marginLeft":"75rpx"}},"u-m-75":{"":{"!marginTop":"75rpx","!marginRight":"75rpx","!marginBottom":"75rpx","!marginLeft":"75rpx"}},"u-padding-75":{"":{"!paddingTop":"75rpx","!paddingRight":"75rpx","!paddingBottom":"75rpx","!paddingLeft":"75rpx"}},"u-p-75":{"":{"!paddingTop":"75rpx","!paddingRight":"75rpx","!paddingBottom":"75rpx","!paddingLeft":"75rpx"}},"u-m-l-75":{"":{"!marginLeft":"75rpx"}},"u-p-l-75":{"":{"!paddingLeft":"75rpx"}},"u-margin-left-75":{"":{"!marginLeft":"75rpx"}},"u-padding-left-75":{"":{"!paddingLeft":"75rpx"}},"u-m-t-75":{"":{"!marginTop":"75rpx"}},"u-p-t-75":{"":{"!paddingTop":"75rpx"}},"u-margin-top-75":{"":{"!marginTop":"75rpx"}},"u-padding-top-75":{"":{"!paddingTop":"75rpx"}},"u-m-r-75":{"":{"!marginRight":"75rpx"}},"u-p-r-75":{"":{"!paddingRight":"75rpx"}},"u-margin-right-75":{"":{"!marginRight":"75rpx"}},"u-padding-right-75":{"":{"!paddingRight":"75rpx"}},"u-m-b-75":{"":{"!marginBottom":"75rpx"}},"u-p-b-75":{"":{"!paddingBottom":"75rpx"}},"u-margin-bottom-75":{"":{"!marginBottom":"75rpx"}},"u-padding-bottom-75":{"":{"!paddingBottom":"75rpx"}},"u-margin-76":{"":{"!marginTop":"76rpx","!marginRight":"76rpx","!marginBottom":"76rpx","!marginLeft":"76rpx"}},"u-m-76":{"":{"!marginTop":"76rpx","!marginRight":"76rpx","!marginBottom":"76rpx","!marginLeft":"76rpx"}},"u-padding-76":{"":{"!paddingTop":"76rpx","!paddingRight":"76rpx","!paddingBottom":"76rpx","!paddingLeft":"76rpx"}},"u-p-76":{"":{"!paddingTop":"76rpx","!paddingRight":"76rpx","!paddingBottom":"76rpx","!paddingLeft":"76rpx"}},"u-m-l-76":{"":{"!marginLeft":"76rpx"}},"u-p-l-76":{"":{"!paddingLeft":"76rpx"}},"u-margin-left-76":{"":{"!marginLeft":"76rpx"}},"u-padding-left-76":{"":{"!paddingLeft":"76rpx"}},"u-m-t-76":{"":{"!marginTop":"76rpx"}},"u-p-t-76":{"":{"!paddingTop":"76rpx"}},"u-margin-top-76":{"":{"!marginTop":"76rpx"}},"u-padding-top-76":{"":{"!paddingTop":"76rpx"}},"u-m-r-76":{"":{"!marginRight":"76rpx"}},"u-p-r-76":{"":{"!paddingRight":"76rpx"}},"u-margin-right-76":{"":{"!marginRight":"76rpx"}},"u-padding-right-76":{"":{"!paddingRight":"76rpx"}},"u-m-b-76":{"":{"!marginBottom":"76rpx"}},"u-p-b-76":{"":{"!paddingBottom":"76rpx"}},"u-margin-bottom-76":{"":{"!marginBottom":"76rpx"}},"u-padding-bottom-76":{"":{"!paddingBottom":"76rpx"}},"u-margin-78":{"":{"!marginTop":"78rpx","!marginRight":"78rpx","!marginBottom":"78rpx","!marginLeft":"78rpx"}},"u-m-78":{"":{"!marginTop":"78rpx","!marginRight":"78rpx","!marginBottom":"78rpx","!marginLeft":"78rpx"}},"u-padding-78":{"":{"!paddingTop":"78rpx","!paddingRight":"78rpx","!paddingBottom":"78rpx","!paddingLeft":"78rpx"}},"u-p-78":{"":{"!paddingTop":"78rpx","!paddingRight":"78rpx","!paddingBottom":"78rpx","!paddingLeft":"78rpx"}},"u-m-l-78":{"":{"!marginLeft":"78rpx"}},"u-p-l-78":{"":{"!paddingLeft":"78rpx"}},"u-margin-left-78":{"":{"!marginLeft":"78rpx"}},"u-padding-left-78":{"":{"!paddingLeft":"78rpx"}},"u-m-t-78":{"":{"!marginTop":"78rpx"}},"u-p-t-78":{"":{"!paddingTop":"78rpx"}},"u-margin-top-78":{"":{"!marginTop":"78rpx"}},"u-padding-top-78":{"":{"!paddingTop":"78rpx"}},"u-m-r-78":{"":{"!marginRight":"78rpx"}},"u-p-r-78":{"":{"!paddingRight":"78rpx"}},"u-margin-right-78":{"":{"!marginRight":"78rpx"}},"u-padding-right-78":{"":{"!paddingRight":"78rpx"}},"u-m-b-78":{"":{"!marginBottom":"78rpx"}},"u-p-b-78":{"":{"!paddingBottom":"78rpx"}},"u-margin-bottom-78":{"":{"!marginBottom":"78rpx"}},"u-padding-bottom-78":{"":{"!paddingBottom":"78rpx"}},"u-margin-80":{"":{"!marginTop":"80rpx","!marginRight":"80rpx","!marginBottom":"80rpx","!marginLeft":"80rpx"}},"u-m-80":{"":{"!marginTop":"80rpx","!marginRight":"80rpx","!marginBottom":"80rpx","!marginLeft":"80rpx"}},"u-padding-80":{"":{"!paddingTop":"80rpx","!paddingRight":"80rpx","!paddingBottom":"80rpx","!paddingLeft":"80rpx"}},"u-p-80":{"":{"!paddingTop":"80rpx","!paddingRight":"80rpx","!paddingBottom":"80rpx","!paddingLeft":"80rpx"}},"u-m-l-80":{"":{"!marginLeft":"80rpx"}},"u-p-l-80":{"":{"!paddingLeft":"80rpx"}},"u-margin-left-80":{"":{"!marginLeft":"80rpx"}},"u-padding-left-80":{"":{"!paddingLeft":"80rpx"}},"u-m-t-80":{"":{"!marginTop":"80rpx"}},"u-p-t-80":{"":{"!paddingTop":"80rpx"}},"u-margin-top-80":{"":{"!marginTop":"80rpx"}},"u-padding-top-80":{"":{"!paddingTop":"80rpx"}},"u-m-r-80":{"":{"!marginRight":"80rpx"}},"u-p-r-80":{"":{"!paddingRight":"80rpx"}},"u-margin-right-80":{"":{"!marginRight":"80rpx"}},"u-padding-right-80":{"":{"!paddingRight":"80rpx"}},"u-m-b-80":{"":{"!marginBottom":"80rpx"}},"u-p-b-80":{"":{"!paddingBottom":"80rpx"}},"u-margin-bottom-80":{"":{"!marginBottom":"80rpx"}},"u-padding-bottom-80":{"":{"!paddingBottom":"80rpx"}},"u-reset-nvue":{"":{"flexDirection":"row","alignItems":"center"}},"u-type-primary-light":{"":{"color":"#ecf5ff"}},"u-type-warning-light":{"":{"color":"#fdf6ec"}},"u-type-success-light":{"":{"color":"#dbf1e1"}},"u-type-error-light":{"":{"color":"#fef0f0"}},"u-type-info-light":{"":{"color":"#f4f4f5"}},"u-type-primary-light-bg":{"":{"backgroundColor":"#ecf5ff"}},"u-type-warning-light-bg":{"":{"backgroundColor":"#fdf6ec"}},"u-type-success-light-bg":{"":{"backgroundColor":"#dbf1e1"}},"u-type-error-light-bg":{"":{"backgroundColor":"#fef0f0"}},"u-type-info-light-bg":{"":{"backgroundColor":"#f4f4f5"}},"u-type-primary-dark":{"":{"color":"#2b85e4"}},"u-type-warning-dark":{"":{"color":"#f29100"}},"u-type-success-dark":{"":{"color":"#18b566"}},"u-type-error-dark":{"":{"color":"#dd6161"}},"u-type-info-dark":{"":{"color":"#82848a"}},"u-type-primary-dark-bg":{"":{"backgroundColor":"#2b85e4"}},"u-type-warning-dark-bg":{"":{"backgroundColor":"#f29100"}},"u-type-success-dark-bg":{"":{"backgroundColor":"#18b566"}},"u-type-error-dark-bg":{"":{"backgroundColor":"#dd6161"}},"u-type-info-dark-bg":{"":{"backgroundColor":"#82848a"}},"u-type-primary-disabled":{"":{"color":"#a0cfff"}},"u-type-warning-disabled":{"":{"color":"#fcbd71"}},"u-type-success-disabled":{"":{"color":"#71d5a1"}},"u-type-error-disabled":{"":{"color":"#fab6b6"}},"u-type-info-disabled":{"":{"color":"#c8c9cc"}},"u-type-primary":{"":{"color":"#2979ff"}},"u-type-warning":{"":{"color":"#ff9900"}},"u-type-success":{"":{"color":"#19be6b"}},"u-type-error":{"":{"color":"#fa3534"}},"u-type-info":{"":{"color":"#909399"}},"u-type-primary-bg":{"":{"backgroundColor":"#2979ff"}},"u-type-warning-bg":{"":{"backgroundColor":"#ff9900"}},"u-type-success-bg":{"":{"backgroundColor":"#19be6b"}},"u-type-error-bg":{"":{"backgroundColor":"#fa3534"}},"u-type-info-bg":{"":{"backgroundColor":"#909399"}},"u-main-color":{"":{"color":"#303133"}},"u-content-color":{"":{"color":"#606266"}},"u-tips-color":{"":{"color":"#909399"}},"u-light-color":{"":{"color":"#c0c4cc"}},"nvue":{"":{"fontSize":"24rpx"}}}];//styles
__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
diff --git a/unpackage/dist/dev/app-plus/app-service.js b/unpackage/dist/dev/app-plus/app-service.js
index 42d8a3e..1ed8a8d 100644
--- a/unpackage/dist/dev/app-plus/app-service.js
+++ b/unpackage/dist/dev/app-plus/app-service.js
@@ -74,7 +74,7 @@ if (uni.restoreGlobal) {
}
return target;
};
- const _sfc_main$13 = {
+ const _sfc_main$11 = {
name: "ZyUpgrade",
props: {
theme: {
@@ -286,7 +286,7 @@ if (uni.restoreGlobal) {
}
}
};
- function _sfc_render$12(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$10(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock(
"view",
{
@@ -414,9 +414,9 @@ if (uni.restoreGlobal) {
/* CLASS */
);
}
- const ZyUpdate = /* @__PURE__ */ _export_sfc(_sfc_main$13, [["render", _sfc_render$12], ["__scopeId", "data-v-bf1d6c35"], ["__file", "D:/hldy_app/component/zy-upgrade/zy-upgrade.vue"]]);
- const _sfc_main$12 = {};
- function _sfc_render$11(_ctx, _cache) {
+ const ZyUpdate = /* @__PURE__ */ _export_sfc(_sfc_main$11, [["render", _sfc_render$10], ["__scopeId", "data-v-bf1d6c35"], ["__file", "D:/hldy_app/component/zy-upgrade/zy-upgrade.vue"]]);
+ const _sfc_main$10 = {};
+ function _sfc_render$$(_ctx, _cache) {
return vue.openBlock(), vue.createElementBlock("view", { class: "all" }, [
vue.createElementVNode("scroll-view", {
"scroll-y": "",
@@ -630,9 +630,9 @@ if (uni.restoreGlobal) {
])
]);
}
- const oneseven = /* @__PURE__ */ _export_sfc(_sfc_main$12, [["render", _sfc_render$11], ["__scopeId", "data-v-e42fb5c8"], ["__file", "D:/hldy_app/pages/login/oneseven.vue"]]);
- const _sfc_main$11 = {};
- function _sfc_render$10(_ctx, _cache) {
+ const oneseven = /* @__PURE__ */ _export_sfc(_sfc_main$10, [["render", _sfc_render$$], ["__scopeId", "data-v-e42fb5c8"], ["__file", "D:/hldy_app/pages/login/oneseven.vue"]]);
+ const _sfc_main$$ = {};
+ function _sfc_render$_(_ctx, _cache) {
return vue.openBlock(), vue.createElementBlock("view", { class: "all" }, [
vue.createElementVNode("scroll-view", {
"scroll-y": "",
@@ -1097,7 +1097,7 @@ if (uni.restoreGlobal) {
])
]);
}
- const twoseven = /* @__PURE__ */ _export_sfc(_sfc_main$11, [["render", _sfc_render$10], ["__scopeId", "data-v-1ebfd7ba"], ["__file", "D:/hldy_app/pages/login/twoseven.vue"]]);
+ const twoseven = /* @__PURE__ */ _export_sfc(_sfc_main$$, [["render", _sfc_render$_], ["__scopeId", "data-v-1ebfd7ba"], ["__file", "D:/hldy_app/pages/login/twoseven.vue"]]);
const base_url$1 = "https://www.focusnu.com/opeapi";
const timeout$2 = 5e3;
const request$1 = (params) => {
@@ -1203,7 +1203,7 @@ if (uni.restoreGlobal) {
};
const pieceSizePx = 50;
const tolerance = 20;
- const _sfc_main$10 = {
+ const _sfc_main$_ = {
__name: "huakuai",
emits: ["success"],
setup(__props, { expose: __expose, emit: __emit }) {
@@ -1310,7 +1310,7 @@ if (uni.restoreGlobal) {
return __returned__;
}
};
- function _sfc_render$$(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$Z(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock("view", {
class: "captcha-container",
id: "container"
@@ -1401,8 +1401,8 @@ if (uni.restoreGlobal) {
])
]);
}
- const huakuai = /* @__PURE__ */ _export_sfc(_sfc_main$10, [["render", _sfc_render$$], ["__scopeId", "data-v-4b687354"], ["__file", "D:/hldy_app/component/public/huakuai.vue"]]);
- const _sfc_main$$ = /* @__PURE__ */ vue.defineComponent({
+ const huakuai = /* @__PURE__ */ _export_sfc(_sfc_main$_, [["render", _sfc_render$Z], ["__scopeId", "data-v-4b687354"], ["__file", "D:/hldy_app/component/public/huakuai.vue"]]);
+ const _sfc_main$Z = /* @__PURE__ */ vue.defineComponent({
__name: "login",
setup(__props, { expose: __expose }) {
__expose();
@@ -1450,6 +1450,7 @@ if (uni.restoreGlobal) {
isRel(form.username).then((res) => {
if (res.result !== null && res.result.serverUrl) {
uni.setStorageSync("serverUrl", res.result.serverUrl);
+ formatAppLog("log", "at pages/login/login.vue:195", "url", res.result.serverUrl);
time.value = Date.now();
getLoginCode(time.value).then((res2) => {
form.captcha = res2.message;
@@ -1490,13 +1491,17 @@ if (uni.restoreGlobal) {
openbottom.value = true;
}
};
+ const jumpFirst = vue.ref(false);
const canJump = () => {
- if (loading.value === 2) {
- setTimeout(() => {
- jumpTo(`/pages/watch/index`);
- }, 500);
- } else {
- loading.value++;
+ if (!jumpFirst.value) {
+ if (loading.value === 2) {
+ setTimeout(() => {
+ jumpTo(`/pages/watch/index`);
+ }, 500);
+ } else {
+ loading.value++;
+ }
+ jumpFirst.value = true;
}
};
const loading = vue.ref(0);
@@ -1537,11 +1542,6 @@ if (uni.restoreGlobal) {
if (uni.getStorageSync("appWgtVersion") != uni.getSystemInfoSync().appWgtVersion) {
showPopup.value = true;
}
- init();
- });
- onShow(() => {
- var _a;
- (_a = zyupgrade.value) == null ? void 0 : _a.check_update();
if (uni.getStorageSync("token") && uni.getStorageSync("token") !== 1) {
if (loading.value === 2) {
setTimeout(() => {
@@ -1551,6 +1551,11 @@ if (uni.restoreGlobal) {
loading.value++;
}
}
+ init();
+ });
+ onShow(() => {
+ var _a;
+ (_a = zyupgrade.value) == null ? void 0 : _a.check_update();
});
function init() {
var monitorModule = requireNativePlugin("MonitorModule");
@@ -1566,24 +1571,24 @@ if (uni.restoreGlobal) {
port: 8888
};
monitorModule.cloudLoginIn(loginfo, (r) => {
- formatAppLog("log", "at pages/login/login.vue:315", "?????", r);
- if (!loading.value) {
- loading.value = true;
- } else {
+ formatAppLog("log", "at pages/login/login.vue:322", "?????", r);
+ if (loading.value === 2) {
setTimeout(() => {
jumpTo(`/pages/watch/index`);
}, 500);
+ } else {
+ loading.value++;
}
});
}
- const __returned__ = { zyupgrade, isTarget, huakuaiOpen, form, changeform, fullName, showPopup, closebottom, closePopup, closeapp, isLength11, jumpTo, canclick, time, getImg, openbottom, openchange, openany, opentype, login, canJump, loading, huakuaisuccess, init, logincamera, ZyUpdate, oneseven, twoseven, huakuai };
+ const __returned__ = { zyupgrade, isTarget, huakuaiOpen, form, changeform, fullName, showPopup, closebottom, closePopup, closeapp, isLength11, jumpTo, canclick, time, getImg, openbottom, openchange, openany, opentype, login, jumpFirst, canJump, loading, huakuaisuccess, init, logincamera, ZyUpdate, oneseven, twoseven, huakuai };
Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true });
return __returned__;
}
});
const _imports_0$m = "/static/index/superNu.png";
const _imports_0$l = "/static/left.png";
- function _sfc_render$_(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$Y(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock(
vue.Fragment,
null,
@@ -1887,8 +1892,8 @@ if (uni.restoreGlobal) {
/* STABLE_FRAGMENT */
);
}
- const PagesLoginLogin = /* @__PURE__ */ _export_sfc(_sfc_main$$, [["render", _sfc_render$_], ["__scopeId", "data-v-e4e4508d"], ["__file", "D:/hldy_app/pages/login/login.vue"]]);
- const _sfc_main$_ = {
+ const PagesLoginLogin = /* @__PURE__ */ _export_sfc(_sfc_main$Z, [["render", _sfc_render$Y], ["__scopeId", "data-v-e4e4508d"], ["__file", "D:/hldy_app/pages/login/login.vue"]]);
+ const _sfc_main$Y = {
data() {
return {
title: "Hello"
@@ -1946,7 +1951,7 @@ if (uni.restoreGlobal) {
}
}
};
- function _sfc_render$Z(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$X(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock("view", { class: "content" }, [
vue.createElementVNode("button", {
class: "typebutton",
@@ -1970,8 +1975,8 @@ if (uni.restoreGlobal) {
}, "跳到nvue")
]);
}
- const PagesDenglu = /* @__PURE__ */ _export_sfc(_sfc_main$_, [["render", _sfc_render$Z], ["__file", "D:/hldy_app/pages/denglu.vue"]]);
- const _sfc_main$Z = /* @__PURE__ */ vue.defineComponent({
+ const PagesDenglu = /* @__PURE__ */ _export_sfc(_sfc_main$Y, [["render", _sfc_render$X], ["__file", "D:/hldy_app/pages/denglu.vue"]]);
+ const _sfc_main$X = /* @__PURE__ */ vue.defineComponent({
__name: "index",
setup(__props, { expose: __expose }) {
__expose();
@@ -2007,7 +2012,7 @@ if (uni.restoreGlobal) {
return __returned__;
}
});
- function _sfc_render$Y(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$W(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock(
vue.Fragment,
null,
@@ -2051,9 +2056,9 @@ if (uni.restoreGlobal) {
/* STABLE_FRAGMENT */
);
}
- const PagesIndexIndex = /* @__PURE__ */ _export_sfc(_sfc_main$Z, [["render", _sfc_render$Y], ["__scopeId", "data-v-1cf27b2a"], ["__file", "D:/hldy_app/pages/index/index.vue"]]);
+ const PagesIndexIndex = /* @__PURE__ */ _export_sfc(_sfc_main$X, [["render", _sfc_render$W], ["__scopeId", "data-v-1cf27b2a"], ["__file", "D:/hldy_app/pages/index/index.vue"]]);
const _imports_0$k = "/static/index/zuoyuan.png";
- const _sfc_main$Y = {
+ const _sfc_main$W = {
__name: "Drawer",
props: {
widNumber: {
@@ -2091,7 +2096,7 @@ if (uni.restoreGlobal) {
return __returned__;
}
};
- function _sfc_render$X(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$V(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock("view", null, [
vue.createCommentVNode(" 遮罩层,display 由 v-show 控制,opacity 由 overlay-show 类控制 "),
vue.withDirectives(vue.createElementVNode(
@@ -2142,8 +2147,8 @@ if (uni.restoreGlobal) {
)
]);
}
- const Drawer = /* @__PURE__ */ _export_sfc(_sfc_main$Y, [["render", _sfc_render$X], ["__scopeId", "data-v-40fcca19"], ["__file", "D:/hldy_app/component/public/Drawer.vue"]]);
- const _sfc_main$X = /* @__PURE__ */ vue.defineComponent({
+ const Drawer = /* @__PURE__ */ _export_sfc(_sfc_main$W, [["render", _sfc_render$V], ["__scopeId", "data-v-40fcca19"], ["__file", "D:/hldy_app/component/public/Drawer.vue"]]);
+ const _sfc_main$V = /* @__PURE__ */ vue.defineComponent({
__name: "index",
setup(__props, { expose: __expose }) {
__expose();
@@ -2184,17 +2189,17 @@ if (uni.restoreGlobal) {
return __returned__;
}
});
- const _imports_3$9 = "/static/index/teeth.png";
+ const _imports_3$a = "/static/index/teeth.png";
const _imports_1$j = "/static/index/helpdo/zero.png";
const _imports_2$e = "/static/index/helpdo/one.png";
- const _imports_3$8 = "/static/index/helpdo/two.png";
- const _imports_4$5 = "/static/index/helpdo/laba.png";
+ const _imports_3$9 = "/static/index/helpdo/two.png";
+ const _imports_4$6 = "/static/index/helpdo/laba.png";
const _imports_5$6 = "/static/index/helpdo/three.png";
const _imports_6$2 = "/static/index/helpdo/video.png";
const _imports_7$3 = "/static/index/helpdo/xian.png";
const _imports_8$3 = "/static/index/helpdo/maike.png";
const _imports_9$3 = "/static/index/helpdo/people.png";
- function _sfc_render$W(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$U(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock("view", { class: "draw-all" }, [
vue.createElementVNode("view", { class: "draw-title" }, [
vue.createElementVNode("view", { class: "draw-title-gun" }),
@@ -2206,7 +2211,7 @@ if (uni.restoreGlobal) {
vue.createElementVNode("view", { class: "downitems-left-mar" }, [
vue.createElementVNode("image", {
class: "downitems-left-img",
- src: _imports_3$9
+ src: _imports_3$a
}),
vue.createElementVNode("view", { class: "downitems-left-father" }, [
vue.createElementVNode("image", {
@@ -2225,12 +2230,12 @@ if (uni.restoreGlobal) {
vue.createElementVNode("view", { class: "downitems-left-father" }, [
vue.createElementVNode("image", {
class: "downitems-father-img",
- src: _imports_3$8
+ src: _imports_3$9
}),
vue.createElementVNode("view", { class: "downitems-father-font-laba" }, "协助清洁(四肢)"),
vue.createElementVNode("image", {
class: "downitems-father-img-laba",
- src: _imports_4$5
+ src: _imports_4$6
})
]),
vue.createElementVNode("view", { class: "downitems-left-father" }, [
@@ -2412,8 +2417,8 @@ if (uni.restoreGlobal) {
])
]);
}
- const transferExecution = /* @__PURE__ */ _export_sfc(_sfc_main$X, [["render", _sfc_render$W], ["__scopeId", "data-v-166ac27f"], ["__file", "D:/hldy_app/component/rightItemsindex/transferExecution/index.vue"]]);
- const _sfc_main$W = /* @__PURE__ */ vue.defineComponent({
+ const transferExecution = /* @__PURE__ */ _export_sfc(_sfc_main$V, [["render", _sfc_render$U], ["__scopeId", "data-v-166ac27f"], ["__file", "D:/hldy_app/component/rightItemsindex/transferExecution/index.vue"]]);
+ const _sfc_main$U = /* @__PURE__ */ vue.defineComponent({
__name: "index",
props: {
isshow: {
@@ -2600,7 +2605,7 @@ if (uni.restoreGlobal) {
});
const _imports_0$j = "/static/index/customer.png";
const _imports_1$i = "/static/index/undericons/upguang.png";
- function _sfc_render$V(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$T(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock(
"view",
{
@@ -3743,7 +3748,7 @@ if (uni.restoreGlobal) {
/* STYLE */
);
}
- const rightItemsfirst = /* @__PURE__ */ _export_sfc(_sfc_main$W, [["render", _sfc_render$V], ["__scopeId", "data-v-9f74ebdb"], ["__file", "D:/hldy_app/component/rightItemsindex/index.vue"]]);
+ const rightItemsfirst = /* @__PURE__ */ _export_sfc(_sfc_main$U, [["render", _sfc_render$T], ["__scopeId", "data-v-9f74ebdb"], ["__file", "D:/hldy_app/component/rightItemsindex/index.vue"]]);
const myArray$2 = [
{
"children": [
@@ -5357,7 +5362,7 @@ if (uni.restoreGlobal) {
"key": "1902560510768549889"
}
];
- const _sfc_main$V = /* @__PURE__ */ vue.defineComponent({
+ const _sfc_main$T = /* @__PURE__ */ vue.defineComponent({
__name: "index",
props: {
isshow: {
@@ -6304,7 +6309,7 @@ if (uni.restoreGlobal) {
const _imports_1$h = "/static/index/cheng.png";
const _imports_2$d = "/static/index/deleteicon.png";
const _imports_11$2 = "/static/index/NU.png";
- function _sfc_render$U(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$S(_ctx, _cache, $props, $setup, $data, $options) {
var _a, _b, _c, _d;
return vue.openBlock(), vue.createElementBlock(
vue.Fragment,
@@ -7327,7 +7332,7 @@ if (uni.restoreGlobal) {
/* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */
);
}
- const rightItemssecond = /* @__PURE__ */ _export_sfc(_sfc_main$V, [["render", _sfc_render$U], ["__scopeId", "data-v-337bb5da"], ["__file", "D:/hldy_app/component/rightItemssecond/index.vue"]]);
+ const rightItemssecond = /* @__PURE__ */ _export_sfc(_sfc_main$T, [["render", _sfc_render$S], ["__scopeId", "data-v-337bb5da"], ["__file", "D:/hldy_app/component/rightItemssecond/index.vue"]]);
const myArray$1 = [
{
"children": [
@@ -8941,7 +8946,7 @@ if (uni.restoreGlobal) {
"key": "1902560510768549889"
}
];
- const _sfc_main$U = /* @__PURE__ */ vue.defineComponent({
+ const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
__name: "joysticknew",
props: {
getblue: {
@@ -8952,9 +8957,9 @@ if (uni.restoreGlobal) {
type: Number,
default: 0
},
- moveleft: {
+ moveright: {
type: Number,
- default: 0
+ default: 110
},
pao: {
type: Boolean,
@@ -8980,7 +8985,7 @@ if (uni.restoreGlobal) {
const rippleKey = vue.ref(0);
const RADIUS = uni.upx2px(175);
const DIAMETER = uni.upx2px(350);
- const LEFT = uni.upx2px(-50);
+ const right = uni.upx2px(-50);
const BOTTOM = uni.upx2px(100);
const windowHeight = uni.getSystemInfoSync().windowHeight;
const TOP = windowHeight - BOTTOM - DIAMETER;
@@ -9104,7 +9109,7 @@ if (uni.restoreGlobal) {
return isLongPress;
}, set isLongPress(v) {
isLongPress = v;
- }, type, shadow, showShadow, showRippleOnce, rippleKey, RADIUS, DIAMETER, LEFT, BOTTOM, windowHeight, TOP, props, getblue, pulseKey, get timeout1() {
+ }, type, shadow, showShadow, showRippleOnce, rippleKey, RADIUS, DIAMETER, right, BOTTOM, windowHeight, TOP, props, getblue, pulseKey, get timeout1() {
return timeout1;
}, set timeout1(v) {
timeout1 = v;
@@ -9125,79 +9130,93 @@ if (uni.restoreGlobal) {
return __returned__;
}
});
- function _sfc_render$T(_ctx, _cache, $props, $setup, $data, $options) {
+ const _imports_0$h = "/static/index/camera/arrow1.png";
+ const _imports_1$g = "/static/index/camera/arrow3.png";
+ const _imports_2$c = "/static/index/camera/arrow5.png";
+ const _imports_3$8 = "/static/index/camera/arrow4.png";
+ const _imports_4$5 = "/static/index/camera/arrow2.png";
+ function _sfc_render$R(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock(
"view",
{
class: "move-circle",
- style: vue.normalizeStyle({ bottom: `${$props.movebottom}rpx`, left: `${$props.moveleft}rpx` }),
+ style: vue.normalizeStyle({ bottom: `${$props.movebottom}rpx`, right: `${$props.moveright}rpx` }),
onTouchmove: $setup.onTouchMove,
onTouchend: $setup.onPressEnd,
onTouchcancel: $setup.onPressEnd
},
[
vue.createCommentVNode(" 长按持续波纹动画 "),
- $setup.showShadow && $props.pao ? (vue.openBlock(), vue.createElementBlock(
- "view",
- {
- key: 0,
- class: "light-shadow ripple-loop",
- style: vue.normalizeStyle({
- left: $setup.shadow.x + "px",
- top: $setup.shadow.y + "px",
- transform: "translate(-50%, -50%)"
- })
- },
- null,
- 4
- /* STYLE */
- )) : vue.createCommentVNode("v-if", true),
+ vue.createCommentVNode(` `),
vue.createCommentVNode(" 点击单次波纹动画,用 key 刷新 "),
- $setup.showRippleOnce && $props.pao ? (vue.openBlock(), vue.createElementBlock(
- "view",
+ vue.createCommentVNode(` `),
+ vue.withDirectives(vue.createElementVNode(
+ "image",
{
- key: $setup.rippleKey,
- class: "light-shadow ripple-once",
- style: vue.normalizeStyle({
- left: $setup.shadow.x + "px",
- top: $setup.shadow.y + "px",
- transform: "translate(-50%, -50%)"
- }),
- onAnimationend: $setup.onRippleAnimationEnd
+ src: _imports_0$h,
+ class: "move-circle-all"
},
null,
- 36
- /* STYLE, NEED_HYDRATION */
- )) : vue.createCommentVNode("v-if", true),
- vue.withDirectives(vue.createElementVNode("image", {
- src: !$props.notext ? `/static/index/newruler/direction_1.png` : `/static/index/newruler/suere.png`,
- class: "move-circle-all"
- }, null, 8, ["src"]), [
+ 512
+ /* NEED_PATCH */
+ ), [
[vue.vShow, $setup.type == -1 || $setup.type == 4]
]),
vue.createCommentVNode(' \r\n '),
- vue.withDirectives(vue.createElementVNode("image", {
- src: !$props.notext ? `/static/index/newruler/direction_3.png` : `/static/index/newruler/sure_2.png`,
- class: "move-circle-all"
- }, null, 8, ["src"]), [
+ vue.withDirectives(vue.createElementVNode(
+ "image",
+ {
+ src: _imports_1$g,
+ class: "move-circle-all"
+ },
+ null,
+ 512
+ /* NEED_PATCH */
+ ), [
[vue.vShow, $setup.type == 3]
]),
- vue.withDirectives(vue.createElementVNode("image", {
- src: !$props.notext ? `/static/index/newruler/direction_5.png` : `/static/index/newruler/sure_4.png`,
- class: "move-circle-all"
- }, null, 8, ["src"]), [
+ vue.withDirectives(vue.createElementVNode(
+ "image",
+ {
+ src: _imports_2$c,
+ class: "move-circle-all"
+ },
+ null,
+ 512
+ /* NEED_PATCH */
+ ), [
[vue.vShow, $setup.type == 2]
]),
- vue.withDirectives(vue.createElementVNode("image", {
- src: !$props.notext ? `/static/index/newruler/direction_4.png` : `/static/index/newruler/sure_3.png`,
- class: "move-circle-all"
- }, null, 8, ["src"]), [
+ vue.withDirectives(vue.createElementVNode(
+ "image",
+ {
+ src: _imports_3$8,
+ class: "move-circle-all"
+ },
+ null,
+ 512
+ /* NEED_PATCH */
+ ), [
[vue.vShow, $setup.type == 0]
]),
- vue.withDirectives(vue.createElementVNode("image", {
- src: !$props.notext ? `/static/index/newruler/direction_2.png` : `/static/index/newruler/sure_1.png`,
- class: "move-circle-all"
- }, null, 8, ["src"]), [
+ vue.withDirectives(vue.createElementVNode(
+ "image",
+ {
+ src: _imports_4$5,
+ class: "move-circle-all"
+ },
+ null,
+ 512
+ /* NEED_PATCH */
+ ), [
[vue.vShow, $setup.type == 1]
]),
$setup.getblue ? (vue.openBlock(), vue.createElementBlock("view", {
@@ -9265,13 +9284,13 @@ if (uni.restoreGlobal) {
/* STYLE, NEED_HYDRATION */
);
}
- const joystick = /* @__PURE__ */ _export_sfc(_sfc_main$U, [["render", _sfc_render$T], ["__scopeId", "data-v-e20c63a2"], ["__file", "D:/hldy_app/component/public/newgame/joysticknew.vue"]]);
+ const joysticknew = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["render", _sfc_render$R], ["__scopeId", "data-v-e20c63a2"], ["__file", "D:/hldy_app/component/public/newgame/joysticknew.vue"]]);
const DOUBLE_TAP_DELAY$1 = 300;
const totalColumns$2 = 24;
const totalRows$2 = 11;
const visibleWidth$2 = 1405;
const visibleHeight$2 = 480;
- const _sfc_main$T = /* @__PURE__ */ vue.defineComponent({
+ const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({
__name: "index",
props: {
isshow: {
@@ -10169,23 +10188,23 @@ if (uni.restoreGlobal) {
scrollTimeout = v;
}, handleScroll, isBack, saveX, saveY, isTuoing, saveId, saveTagName, isblue, bottomTimer, bottomisShaking, bottomTouchStart, bottomTouchMove, bottomTouchEnd, openValue, cardsumit, openOp, clickOp, indexsave, rulerMoveEnd, scrollContainer, opensay, addnew, cleansettimeout, cleansettimeoutrel, saveAll, routerPush, saveRulerTime, targetRuler, solveWatch, whereEvent, minuteArr, timearr, findback, moveNumber, moBan, splitString, totalColumns: totalColumns$2, totalRows: totalRows$2, visibleWidth: visibleWidth$2, visibleHeight: visibleHeight$2, centerCell, get index() {
return request$1;
- }, joystick };
+ }, joystick: joysticknew };
Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true });
return __returned__;
}
});
- const _imports_0$h = "/static/index/ku.png";
- const _imports_1$g = "/static/index/ren.png";
- const _imports_2$c = "/static/index/redbian.png";
+ const _imports_0$g = "/static/index/ku.png";
+ const _imports_1$f = "/static/index/ren.png";
+ const _imports_2$b = "/static/index/redbian.png";
const _imports_3$7 = "/static/index/ri.png";
const _imports_4$4 = "/static/index/zhou.png";
const _imports_5$5 = "/static/index/ji.png";
- const _imports_0$g = "/static/index/tu.png";
+ const _imports_0$f = "/static/index/tu.png";
const _imports_7$2 = "/static/index/keyimg/movebutton.png";
const _imports_8$2 = "/static/index/keyimg/deletebutton.png";
const _imports_9$2 = "/static/index/keyimg/notebutton.png";
const _imports_10$2 = "/static/index/keyimg/okbutton.png";
- function _sfc_render$S(_ctx, _cache, $props, $setup, $data, $options) {
+ function _sfc_render$Q(_ctx, _cache, $props, $setup, $data, $options) {
var _a, _b, _c, _d;
return vue.openBlock(), vue.createElementBlock(
vue.Fragment,
@@ -10487,11 +10506,11 @@ if (uni.restoreGlobal) {
}, [
vue.createElementVNode("image", {
class: "right-box-items-button",
- src: _imports_0$h
+ src: _imports_0$g
}),
vue.createElementVNode("image", {
class: "right-box-items-button",
- src: _imports_1$g
+ src: _imports_1$f
})
])) : vue.createCommentVNode("v-if", true)
],
@@ -10540,7 +10559,7 @@ if (uni.restoreGlobal) {
[
vue.createElementVNode("image", {
class: "title-time-button",
- src: _imports_2$c
+ src: _imports_2$b
}),
vue.createElementVNode("view", { class: "title-time-font" }, " 即时 "),
vue.createElementVNode(
@@ -10568,11 +10587,11 @@ if (uni.restoreGlobal) {
vue.createElementVNode("view", { class: "right-box-items" }, [
vue.createElementVNode("image", {
class: "right-box-items-button",
- src: _imports_0$h
+ src: _imports_0$g
}),
vue.createElementVNode("image", {
class: "right-box-items-button",
- src: _imports_1$g
+ src: _imports_1$f
})
]),
vue.withDirectives(vue.createElementVNode("view", {
@@ -10755,7 +10774,7 @@ if (uni.restoreGlobal) {
]),
vue.createElementVNode("image", {
class: "right-box-img",
- src: _imports_0$g
+ src: _imports_0$f
}),
vue.createElementVNode(
"view",
@@ -10770,11 +10789,11 @@ if (uni.restoreGlobal) {
vue.createElementVNode("view", { class: "right-box-items" }, [
vue.createElementVNode("image", {
class: "right-box-items-button",
- src: _imports_0$h
+ src: _imports_0$g
}),
vue.createElementVNode("image", {
class: "right-box-items-button",
- src: _imports_1$g
+ src: _imports_1$f
})
])
],
@@ -10814,7 +10833,7 @@ if (uni.restoreGlobal) {
[
vue.createElementVNode("image", {
class: "downList-box-img",
- src: _imports_0$g
+ src: _imports_0$f
}),
vue.createElementVNode(
"view",
@@ -11129,8 +11148,8 @@ if (uni.restoreGlobal) {
/* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */
);
}
- const rightItemssecondrelnew = /* @__PURE__ */ _export_sfc(_sfc_main$T, [["render", _sfc_render$S], ["__scopeId", "data-v-72bcf905"], ["__file", "D:/hldy_app/component/rightItemssecondrelnew/index.vue"]]);
- const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
+ const rightItemssecondrelnew = /* @__PURE__ */ _export_sfc(_sfc_main$R, [["render", _sfc_render$Q], ["__scopeId", "data-v-72bcf905"], ["__file", "D:/hldy_app/component/rightItemssecondrelnew/index.vue"]]);
+ const _sfc_main$Q = /* @__PURE__ */ vue.defineComponent({
__name: "index",
setup(__props, { expose: __expose }) {
__expose();
@@ -11352,8 +11371,8 @@ if (uni.restoreGlobal) {
return __returned__;
}
});
- const _imports_0$f = "/static/index/oldman.png";
- function _sfc_render$R(_ctx, _cache, $props, $setup, $data, $options) {
+ const _imports_0$e = "/static/index/oldman.png";
+ function _sfc_render$P(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock(
"view",
{
@@ -11457,7 +11476,7 @@ if (uni.restoreGlobal) {
vue.createElementVNode("view", { class: "left-head" }, [
vue.createElementVNode("image", {
class: "left-head-img",
- src: _imports_0$f
+ src: _imports_0$e
}),
vue.createElementVNode(
"text",
@@ -11553,807 +11572,7 @@ if (uni.restoreGlobal) {
/* CLASS, NEED_HYDRATION */
);
}
- const PagesNursingIndex = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["render", _sfc_render$R], ["__scopeId", "data-v-b6cc7861"], ["__file", "D:/hldy_app/pages/Nursing/index.vue"]]);
- const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({
- __name: "specialDrawer",
- props: {
- widNumber: {
- type: Number,
- default: 25
- },
- circletarget: {
- type: Boolean,
- default: false
- }
- },
- emits: ["open"],
- setup(__props, { expose: __expose, emit: __emit }) {
- const isVisible = vue.ref(false);
- const emit = __emit;
- const props = __props;
- const screenWidth = vue.ref(0);
- vue.onMounted(() => {
- const sys2 = uni.getSystemInfoSync();
- screenWidth.value = sys2.screenWidth;
- });
- const startX = vue.ref(0);
- const dragging = vue.ref(false);
- const currentOffset = vue.ref(0);
- const drawerStyle = vue.computed(() => {
- const widthPct = `${props.widNumber}%`;
- if (dragging.value) {
- const offset = currentOffset.value;
- return {
- width: widthPct,
- transform: `translateX(${offset}px)`,
- transition: "none"
- };
- } else {
- return {
- width: widthPct
- };
- }
- });
- function openDrawer() {
- isVisible.value = true;
- emit("open");
- }
- function closeDrawer() {
- isVisible.value = false;
- }
- function whiteDrawer() {
- if (isVisible.value) {
- closeDrawer();
- } else {
- openDrawer();
- }
- }
- __expose({
- openDrawer,
- closeDrawer
- });
- function onTouchStart(e) {
- if (!isVisible.value)
- return;
- dragging.value = true;
- currentOffset.value = 0;
- startX.value = e.touches[0].pageX;
- }
- function onTouchMove(e) {
- if (!dragging.value)
- return;
- const delta = e.touches[0].pageX - startX.value;
- currentOffset.value = delta > 0 ? delta : 0;
- }
- function onTouchEnd() {
- if (!dragging.value)
- return;
- dragging.value = false;
- const halfPx = screenWidth.value * (props.widNumber / 100) / 2;
- if (currentOffset.value > halfPx) {
- closeDrawer();
- }
- currentOffset.value = 0;
- }
- const __returned__ = { isVisible, emit, props, screenWidth, startX, dragging, currentOffset, drawerStyle, openDrawer, closeDrawer, whiteDrawer, onTouchStart, onTouchMove, onTouchEnd };
- Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true });
- return __returned__;
- }
- });
- function _sfc_render$Q(_ctx, _cache, $props, $setup, $data, $options) {
- return vue.openBlock(), vue.createElementBlock("view", null, [
- vue.createElementVNode(
- "view",
- {
- class: vue.normalizeClass(["drawer", { "drawer-open": $setup.isVisible }]),
- style: vue.normalizeStyle($setup.drawerStyle)
- },
- [
- vue.createElementVNode(
- "view",
- {
- class: "drawer-content",
- onTouchstartPassive: $setup.onTouchStart,
- onTouchmovePassive: $setup.onTouchMove,
- onTouchend: $setup.onTouchEnd,
- onTouchcancel: $setup.onTouchEnd
- },
- [
- vue.createCommentVNode(" 抽屉中间的半圆 "),
- vue.createElementVNode(
- "view",
- {
- class: vue.normalizeClass(["drawer-content-circle", $props.circletarget ? `pulse` : ``]),
- style: vue.normalizeStyle($setup.isVisible ? {} : { background: `linear-gradient(to bottom,#62E8FF,#0097FF)` }),
- onClick: $setup.whiteDrawer
- },
- [
- vue.createElementVNode("image", {
- class: "drawer-img",
- src: $setup.isVisible ? "/static/index/watch/whitearrow.png" : "/static/index/watch/arrow.png"
- }, null, 8, ["src"])
- ],
- 6
- /* CLASS, STYLE */
- ),
- vue.renderSlot(_ctx.$slots, "default", {}, void 0, true)
- ],
- 32
- /* NEED_HYDRATION */
- )
- ],
- 6
- /* CLASS, STYLE */
- )
- ]);
- }
- const specialDrawerVue$1 = /* @__PURE__ */ _export_sfc(_sfc_main$R, [["render", _sfc_render$Q], ["__scopeId", "data-v-f2f12044"], ["__file", "D:/hldy_app/component/public/specialDrawer.vue"]]);
- const ANIM_MS = 300;
- const RESTORE_MS = 300;
- const DEG_PER_PX = 0.5;
- const _sfc_main$Q = /* @__PURE__ */ vue.defineComponent({
- __name: "index",
- props: {
- opensecondmenu: {
- type: Boolean,
- default: false
- }
- },
- emits: ["firstIndex", "secondIndex"],
- setup(__props, { expose: __expose, emit: __emit }) {
- const props = __props;
- const emit = __emit;
- const labels = ["静音", "对讲", "截屏", "录制", "方位", "清晰度", "分屏", "翻转", "告警"];
- const secondMapTarget = vue.ref([0, 1, 1, 1, 1, 0, 0, 3, 1]);
- const count = labels.length;
- const items = vue.reactive(labels.map((label, idx) => ({
- label,
- baseAngle: 360 / count * idx
- })));
- let restoreTimer = null;
- let restoreTimer2 = null;
- const currentAngle = vue.ref(0);
- const displayAngle = vue.ref(0);
- const startchange = () => {
- secondMapTarget.value[target.value] = target2.value;
- };
- const dragging = vue.ref(null);
- let prevTouchAngle = null;
- let lastMoveDelta = 0;
- let idleTimer = null;
- function armIdleFinish(handler, ms = 160) {
- if (idleTimer)
- clearTimeout(idleTimer);
- idleTimer = setTimeout(() => {
- if (dragging.value)
- handler();
- }, ms);
- }
- function clearIdle() {
- if (idleTimer) {
- clearTimeout(idleTimer);
- idleTimer = null;
- }
- }
- const center = vue.reactive({ x: 0, y: 0 });
- vue.onMounted(async () => {
- await vue.nextTick();
- uni.createSelectorQuery().select(".compass-container").boundingClientRect((rect) => {
- if (rect) {
- center.x = rect.left + rect.width / 2;
- center.y = rect.top + rect.height / 2;
- }
- }).exec();
- await vue.nextTick();
- const init = getLeftmostIndexFromAngle(currentAngle.value);
- target.value = init;
- displayAngle.value = currentAngle.value;
- focusIndex(init, false);
- });
- const transitioning = vue.ref(false);
- const wrapperStyle = vue.computed(() => ({
- transform: `rotate(${displayAngle.value}deg)`,
- transition: transitioning.value ? `transform ${ANIM_MS}ms ease-out` : "none"
- }));
- const labelStyle = vue.computed(() => ({ transform: `rotate(${-displayAngle.value}deg)` }));
- function itemStyle(baseAngle) {
- const radius = 190;
- const rad = baseAngle * Math.PI / 180;
- const x = radius * Math.cos(rad);
- const y = radius * Math.sin(rad);
- return { transform: `translate(${x}px, ${y}px)` };
- }
- function normalize360(a) {
- let v = a % 360;
- if (v < 0)
- v += 360;
- return v;
- }
- function signedShortestAngleDiff(toAngle, fromAngle) {
- const a = normalize360(toAngle);
- const b = normalize360(fromAngle);
- let diff = a - b;
- if (diff > 180)
- diff -= 360;
- if (diff <= -180)
- diff += 360;
- return diff;
- }
- function chooseClosestEquivalent(targetAngle, reference) {
- const base = normalize360(targetAngle);
- let best = base;
- let bestDiff = Math.abs(best - reference);
- for (let k = -3; k <= 3; k++) {
- const cand = base + k * 360;
- const d = Math.abs(cand - reference);
- if (d < bestDiff) {
- bestDiff = d;
- best = cand;
- }
- }
- return best;
- }
- function getTouchAngle(e) {
- const t = e.touches[0];
- const dx = t.clientX - center.x;
- const dy = t.clientY - center.y;
- return Math.atan2(dy, dx) * 180 / Math.PI * 2;
- }
- const target = vue.ref(5);
- const saveindex = vue.ref(-1);
- function clearRestoreTimer() {
- if (restoreTimer !== null) {
- clearTimeout(restoreTimer);
- restoreTimer = null;
- }
- }
- function startRestoreTimer() {
- clearRestoreTimer();
- restoreTimer = setTimeout(() => {
- if (target.value === -1)
- target.value = saveindex.value;
- }, RESTORE_MS);
- }
- function startRestoreTimer2() {
- clearTimeout(restoreTimer2);
- restoreTimer2 = setTimeout(() => {
- if (target2.value === -1)
- target2.value = saveindex2.value;
- emit("secondIndex", target2.value);
- }, RESTORE_MS);
- }
- function onTouchStart(e) {
- saveindex.value = target.value;
- target.value = -1;
- transitioning.value = false;
- prevTouchAngle = getTouchAngle(e);
- lastMoveDelta = 0;
- dragging.value = "first";
- startRestoreTimer();
- }
- function onTouchMove(e) {
- if (prevTouchAngle === null) {
- prevTouchAngle = getTouchAngle(e);
- return;
- }
- const angle = getTouchAngle(e);
- const delta = signedShortestAngleDiff(angle, prevTouchAngle);
- lastMoveDelta = delta;
- currentAngle.value = currentAngle.value + delta;
- transitioning.value = false;
- displayAngle.value = currentAngle.value;
- prevTouchAngle = angle;
- armIdleFinish(onTouchEnd);
- startRestoreTimer();
- }
- function onTouchEnd() {
- prevTouchAngle = null;
- clearRestoreTimer();
- const step = 360 / count;
- const snapUnit = count % 2 === 0 ? step : step / 2;
- const raw = currentAngle.value;
- const snappedBase = Math.round(raw / snapUnit) * snapUnit;
- const targetNorm = normalize360(snappedBase);
- const finalAngle = chooseClosestEquivalent(targetNorm, raw);
- currentAngle.value = finalAngle;
- const displayTarget = chooseClosestEquivalent(targetNorm, displayAngle.value);
- let diff = displayTarget - displayAngle.value;
- if (diff > 180)
- diff -= 360;
- if (diff <= -180)
- diff += 360;
- transitioning.value = true;
- displayAngle.value = displayAngle.value + diff;
- const leftIndex = getLeftmostIndexFromAngle(finalAngle);
- if (target.value !== leftIndex) {
- emit("firstIndex", leftIndex);
- target.value = leftIndex;
- }
- setTimeout(() => {
- transitioning.value = false;
- displayAngle.value = currentAngle.value;
- }, ANIM_MS);
- dragging.value = null;
- lastMoveDelta = 0;
- }
- function angleForIndex(index2) {
- if (!items[index2])
- return 0;
- return normalize360(180 - items[index2].baseAngle);
- }
- function focusIndex(index2, animate = true) {
- if (index2 == null || index2 < 0 || index2 >= items.length)
- return;
- const angle = angleForIndex(index2);
- const finalAngle = chooseClosestEquivalent(angle, currentAngle.value);
- currentAngle.value = finalAngle;
- const displayTarget = chooseClosestEquivalent(angle, displayAngle.value);
- if (!animate) {
- transitioning.value = false;
- displayAngle.value = finalAngle;
- if (target.value !== index2) {
- emit("firstIndex", index2);
- target.value = index2;
- }
- return;
- }
- let diff = displayTarget - displayAngle.value;
- if (diff > 180)
- diff -= 360;
- if (diff <= -180)
- diff += 360;
- transitioning.value = true;
- displayAngle.value = displayAngle.value + diff;
- if (target.value !== index2) {
- emit("firstIndex", index2);
- target.value = index2;
- }
- setTimeout(() => {
- transitioning.value = false;
- displayAngle.value = currentAngle.value;
- }, ANIM_MS);
- dragging.value = null;
- }
- function angleDiff(a, b) {
- const diff = Math.abs(normalize360(a) - normalize360(b));
- return Math.min(diff, 360 - diff);
- }
- function getLeftmostIndexFromAngle(angle) {
- if (!items.length)
- return -1;
- const cur = normalize360(angle);
- let minDiff = Infinity;
- let idx = 0;
- items.forEach((item, i) => {
- const targetAngleForItem = normalize360(180 - item.baseAngle);
- const diff = angleDiff(cur, targetAngleForItem);
- if (diff < minDiff - 1e-9) {
- minDiff = diff;
- idx = i;
- }
- });
- return idx;
- }
- function getLeftmostIndex() {
- return getLeftmostIndexFromAngle(currentAngle.value);
- }
- const secondMapByLabel = {
- "静音": ["开启静音", "关闭静音"],
- "对讲": ["开启对讲", "关闭对讲"],
- "截屏": ["截屏"],
- "录制": ["开启录制", "关闭录制"],
- "方位": ["开启方位", "关闭方位"],
- "清晰度": ["高清", "流畅"],
- "分屏": ["原图", "四分屏", "180°全景", "360°全景", "环状全景"],
- "翻转": ["左右翻转", "上下翻转", "中心翻转", "关闭"],
- "告警": ["开启告警", "关闭告警"]
- };
- const items2 = vue.reactive([]);
- const target2 = vue.ref(0);
- const currentOffset2 = vue.ref(0);
- const step2 = vue.ref(0);
- const transitioning2 = vue.ref(false);
- const wrapperStyle2 = vue.computed(() => ({
- transform: `rotate(${currentOffset2.value}deg)`,
- transition: transitioning2.value ? `transform 0.25s ease-out` : "none"
- }));
- const labelStyle2 = vue.computed(() => ({ transform: `rotate(${-currentOffset2.value}deg)` }));
- function itemStyle2(baseAngle) {
- const radius = 240;
- const rad = baseAngle * Math.PI / 180;
- const x = radius * Math.cos(rad);
- const y = radius * Math.sin(rad);
- return { transform: `translate(${x}px, ${y}px)` };
- }
- const presetAngles = [135, 157.5, 180, 202.5, 225];
- function getBalancedAngles(n) {
- const order = [2, 1, 3, 0, 4];
- return order.slice(0, n).map((i) => presetAngles[i]);
- }
- const minOffset2 = vue.ref(0);
- const maxOffset2 = vue.ref(0);
- function rebuildSecondByFirstIndex(firstIdx) {
- var _a;
- const firstLabel = (_a = items[firstIdx]) == null ? void 0 : _a.label;
- const list = firstLabel && secondMapByLabel[firstLabel] ? secondMapByLabel[firstLabel].slice(0, 5) : [];
- const angles = getBalancedAngles(list.length);
- minOffset2.value = 180 - Math.max(...angles.length ? angles : [180]);
- maxOffset2.value = 180 - Math.min(...angles.length ? angles : [180]);
- items2.splice(0, items2.length);
- if (!list.length) {
- currentOffset2.value = 0;
- step2.value = 0;
- target2.value = -1;
- emit("secondIndex", target2.value);
- return;
- }
- for (let i = 0; i < list.length; i++) {
- items2.push({ label: list[i], baseAngle: angles[i] });
- }
- currentOffset2.value = 0;
- step2.value = 22.5;
- vue.nextTick(() => {
- target2.value = getLeftmostIndex2();
- emit("secondIndex", target2.value);
- });
- }
- function getLeftmostIndex2() {
- if (!items2.length)
- return -1;
- let minDiff = Infinity;
- let idx = 0;
- items2.forEach((item, i) => {
- let real = (item.baseAngle + currentOffset2.value) % 360;
- if (real < 0)
- real += 360;
- const diff = Math.abs(real - 180);
- if (diff < minDiff) {
- minDiff = diff;
- idx = i;
- }
- });
- return idx;
- }
- vue.watch(() => target.value, (idx) => {
- if (idx >= 0) {
- rebuildSecondByFirstIndex(idx);
- focusIndex(idx, true);
- } else {
- rebuildSecondByFirstIndex(idx);
- }
- }, { immediate: true });
- let startY2 = 0;
- let startOffset2 = 0;
- function clamp2(val) {
- return Math.max(minOffset2.value, Math.min(maxOffset2.value, val));
- }
- const saveindex2 = vue.ref(-1);
- function onTouchStart2(e) {
- saveindex2.value = target2.value;
- const t = e.touches[0];
- startY2 = t.clientY;
- startOffset2 = currentOffset2.value;
- transitioning2.value = false;
- target2.value = -1;
- emit("secondIndex", target2.value);
- dragging.value = "second";
- startRestoreTimer2();
- }
- function onTouchMove2(e) {
- if (!items2.length)
- return;
- const t = e.touches[0];
- const dy = t.clientY - startY2;
- step2.value || 1;
- const raw = startOffset2 + -dy * DEG_PER_PX;
- currentOffset2.value = clamp2(raw);
- armIdleFinish(onTouchEnd2);
- startRestoreTimer2();
- }
- function onTouchEnd2() {
- if (!items2.length)
- return;
- const Δ = step2.value || 1;
- const snapped = Math.round(currentOffset2.value / Δ) * Δ;
- transitioning2.value = true;
- currentOffset2.value = clamp2(snapped);
- setTimeout(() => transitioning2.value = false, 250);
- dragging.value = null;
- if (target.value !== getLeftmostIndex2()) {
- emit("secondIndex", target2.value);
- target2.value = getLeftmostIndex2();
- }
- }
- function moveFirstUp() {
- if (dragging.value === "first")
- return;
- const cur = getLeftmostIndex();
- if (cur < 0)
- return;
- const next = (cur - 1 + items.length) % items.length;
- focusIndex(next, true);
- if (target.value !== next) {
- emit("firstIndex", next);
- target.value = next;
- }
- }
- function moveFirstDown() {
- if (dragging.value === "first")
- return;
- const cur = getLeftmostIndex();
- if (cur < 0)
- return;
- const next = (cur + 1) % items.length;
- focusIndex(next, true);
- if (target.value !== next) {
- emit("firstIndex", next);
- target.value = next;
- }
- }
- function moveSecondUp() {
- if (dragging.value === "second")
- return;
- if (!items2.length)
- return;
- const Δ = step2.value || 1;
- let target3 = currentOffset2.value + Δ;
- target3 = Math.round(target3 / Δ) * Δ;
- target3 = clamp2(target3);
- transitioning2.value = true;
- currentOffset2.value = target3;
- target2.value = getLeftmostIndex2();
- emit("secondIndex", target2.value);
- setTimeout(() => transitioning2.value = false, 250);
- }
- function moveSecondDown() {
- if (dragging.value === "second")
- return;
- if (!items2.length)
- return;
- const Δ = step2.value || 1;
- let target3 = currentOffset2.value - Δ;
- target3 = Math.round(target3 / Δ) * Δ;
- target3 = clamp2(target3);
- transitioning2.value = true;
- currentOffset2.value = target3;
- target2.value = getLeftmostIndex2();
- emit("secondIndex", target2.value);
- setTimeout(() => transitioning2.value = false, 250);
- }
- __expose({ moveFirstUp, moveFirstDown, moveSecondUp, moveSecondDown, startchange });
- vue.onBeforeUnmount(() => {
- if (restoreTimer !== null)
- clearTimeout(restoreTimer);
- if (restoreTimer2 !== null)
- clearTimeout(restoreTimer2);
- clearIdle();
- });
- const __returned__ = { props, emit, labels, secondMapTarget, count, items, get restoreTimer() {
- return restoreTimer;
- }, set restoreTimer(v) {
- restoreTimer = v;
- }, get restoreTimer2() {
- return restoreTimer2;
- }, set restoreTimer2(v) {
- restoreTimer2 = v;
- }, ANIM_MS, RESTORE_MS, currentAngle, displayAngle, startchange, dragging, get prevTouchAngle() {
- return prevTouchAngle;
- }, set prevTouchAngle(v) {
- prevTouchAngle = v;
- }, get lastMoveDelta() {
- return lastMoveDelta;
- }, set lastMoveDelta(v) {
- lastMoveDelta = v;
- }, get idleTimer() {
- return idleTimer;
- }, set idleTimer(v) {
- idleTimer = v;
- }, armIdleFinish, clearIdle, center, transitioning, wrapperStyle, labelStyle, itemStyle, normalize360, signedShortestAngleDiff, chooseClosestEquivalent, getTouchAngle, target, saveindex, clearRestoreTimer, startRestoreTimer, startRestoreTimer2, onTouchStart, onTouchMove, onTouchEnd, angleForIndex, focusIndex, angleDiff, getLeftmostIndexFromAngle, getLeftmostIndex, secondMapByLabel, items2, target2, currentOffset2, step2, transitioning2, DEG_PER_PX, wrapperStyle2, labelStyle2, itemStyle2, presetAngles, getBalancedAngles, minOffset2, maxOffset2, rebuildSecondByFirstIndex, getLeftmostIndex2, get startY2() {
- return startY2;
- }, set startY2(v) {
- startY2 = v;
- }, get startOffset2() {
- return startOffset2;
- }, set startOffset2(v) {
- startOffset2 = v;
- }, clamp2, saveindex2, onTouchStart2, onTouchMove2, onTouchEnd2, moveFirstUp, moveFirstDown, moveSecondUp, moveSecondDown };
- Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true });
- return __returned__;
- }
- });
- const _imports_0$e = "/static/index/watch/camera.png";
- const _imports_1$f = "/static/index/watch/panzi.png";
- const _imports_2$b = "/static/index/watch/bluetarget.png";
- function _sfc_render$P(_ctx, _cache, $props, $setup, $data, $options) {
- return vue.openBlock(), vue.createElementBlock("view", { class: "draw-all" }, [
- vue.createCommentVNode(" 摄像头 "),
- vue.createElementVNode("view", { class: "carmera" }, [
- vue.createElementVNode("image", {
- class: "all-size",
- src: _imports_0$e
- })
- ]),
- vue.createCommentVNode(" 轮子背景 "),
- vue.createElementVNode("view", { class: "roll" }, [
- vue.createElementVNode("image", {
- class: "all-size",
- src: _imports_1$f
- })
- ]),
- vue.createCommentVNode(" 一级转盘 "),
- vue.createElementVNode(
- "view",
- {
- ref: "compass",
- class: "compass-container",
- onTouchstart: vue.withModifiers($setup.onTouchStart, ["stop", "prevent"]),
- onTouchmove: vue.withModifiers($setup.onTouchMove, ["prevent", "stop"]),
- onTouchend: vue.withModifiers($setup.onTouchEnd, ["stop", "prevent"]),
- onTouchcancel: vue.withModifiers($setup.onTouchEnd, ["stop", "prevent"]),
- style: vue.normalizeStyle($setup.wrapperStyle)
- },
- [
- (vue.openBlock(true), vue.createElementBlock(
- vue.Fragment,
- null,
- vue.renderList($setup.items, (item, i) => {
- return vue.openBlock(), vue.createElementBlock(
- "view",
- {
- key: i,
- class: "compass-item",
- style: vue.normalizeStyle($setup.itemStyle(item.baseAngle))
- },
- [
- vue.createElementVNode(
- "text",
- {
- class: vue.normalizeClass(i === $setup.target ? `item-label-target` : `item-label`),
- style: vue.normalizeStyle($setup.labelStyle)
- },
- [
- vue.createElementVNode("view", { style: { "z-index": "2", "display": "flex", "flex-direction": "column", "justify-content": "center", "align-items": "center" } }, [
- vue.createElementVNode("image", {
- style: { "width": "50rpx", "height": "50rpx", "margin-bottom": "0rpx" },
- class: vue.normalizeClass(i === $setup.target && !$props.opensecondmenu ? `pulse` : ``),
- src: `/static/index/watch/Wheel/${i + 1}${i === $setup.target ? 1 : 0}.png`
- }, null, 10, ["src"]),
- vue.createElementVNode(
- "view",
- {
- style: vue.normalizeStyle(i === $setup.target ? { color: "#fff" } : {})
- },
- vue.toDisplayString(item.label),
- 5
- /* TEXT, STYLE */
- )
- ]),
- vue.createElementVNode(
- "image",
- {
- class: "targetimge",
- src: _imports_2$b,
- style: vue.normalizeStyle({ opacity: i === $setup.target ? 1 : 0 })
- },
- null,
- 4
- /* STYLE */
- )
- ],
- 6
- /* CLASS, STYLE */
- )
- ],
- 4
- /* STYLE */
- );
- }),
- 128
- /* KEYED_FRAGMENT */
- ))
- ],
- 36
- /* STYLE, NEED_HYDRATION */
- ),
- vue.createCommentVNode(" 二级转盘 "),
- $setup.items2.length ? vue.withDirectives((vue.openBlock(), vue.createElementBlock(
- "view",
- {
- key: 0,
- ref: "compass2",
- class: "compass-container second",
- onTouchstart: vue.withModifiers($setup.onTouchStart2, ["stop", "prevent"]),
- onTouchmove: vue.withModifiers($setup.onTouchMove2, ["prevent", "stop"]),
- onTouchend: vue.withModifiers($setup.onTouchEnd2, ["stop", "prevent"]),
- onTouchcancel: vue.withModifiers($setup.onTouchEnd2, ["stop", "prevent"]),
- style: vue.normalizeStyle($setup.wrapperStyle2)
- },
- [
- (vue.openBlock(true), vue.createElementBlock(
- vue.Fragment,
- null,
- vue.renderList($setup.items2, (item, i) => {
- return vue.openBlock(), vue.createElementBlock(
- "view",
- {
- key: i,
- class: "compass-item",
- style: vue.normalizeStyle($setup.itemStyle2(item.baseAngle))
- },
- [
- vue.createElementVNode(
- "text",
- {
- class: "item-label-second",
- style: vue.normalizeStyle($setup.labelStyle2)
- },
- [
- vue.createElementVNode("view", { style: { "z-index": "2", "display": "flex", "flex-direction": "column", "justify-content": "center", "align-items": "center" } }, [
- vue.createElementVNode("image", {
- style: { "width": "70rpx", "height": "70rpx", "margin-bottom": "0rpx" },
- class: vue.normalizeClass(i === $setup.target2 && $props.opensecondmenu ? `pulse` : ``),
- src: `/static/index/watch/Wheel/${$setup.target === -1 ? 0 : $setup.target + 1}${i}${i === $setup.secondMapTarget[$setup.target] ? 1 : 0}.png`
- }, null, 10, ["src"]),
- vue.withDirectives(vue.createElementVNode(
- "view",
- {
- style: vue.normalizeStyle(i === $setup.secondMapTarget[$setup.target] ? { color: "#0E86EA" } : {})
- },
- vue.toDisplayString(item.label),
- 5
- /* TEXT, STYLE */
- ), [
- [vue.vShow, $setup.target !== -1]
- ])
- ])
- ],
- 4
- /* STYLE */
- )
- ],
- 4
- /* STYLE */
- );
- }),
- 128
- /* KEYED_FRAGMENT */
- ))
- ],
- 36
- /* STYLE, NEED_HYDRATION */
- )), [
- [vue.vShow, $setup.target !== -1]
- ]) : vue.createCommentVNode("v-if", true),
- vue.createCommentVNode(" 手势蒙层 "),
- $setup.dragging === "first" ? (vue.openBlock(), vue.createElementBlock(
- "view",
- {
- key: 1,
- class: "gesture-mask",
- onTouchmove: vue.withModifiers($setup.onTouchMove, ["stop", "prevent"]),
- onTouchend: vue.withModifiers($setup.onTouchEnd, ["stop", "prevent"]),
- onTouchcancel: vue.withModifiers($setup.onTouchEnd, ["stop", "prevent"])
- },
- null,
- 32
- /* NEED_HYDRATION */
- )) : vue.createCommentVNode("v-if", true),
- $setup.dragging === "second" ? (vue.openBlock(), vue.createElementBlock(
- "view",
- {
- key: 2,
- class: "gesture-mask",
- onTouchmove: vue.withModifiers($setup.onTouchMove2, ["stop", "prevent"]),
- onTouchend: vue.withModifiers($setup.onTouchEnd2, ["stop", "prevent"]),
- onTouchcancel: vue.withModifiers($setup.onTouchEnd2, ["stop", "prevent"])
- },
- null,
- 32
- /* NEED_HYDRATION */
- )) : vue.createCommentVNode("v-if", true)
- ]);
- }
- const bigroll = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["render", _sfc_render$P], ["__scopeId", "data-v-dfacf6bf"], ["__file", "D:/hldy_app/pages/watch/drawer/index.vue"]]);
+ const PagesNursingIndex = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["render", _sfc_render$P], ["__scopeId", "data-v-b6cc7861"], ["__file", "D:/hldy_app/pages/Nursing/index.vue"]]);
const base_url = "https://www.focusnu.com/devopsapi";
const timeout$1 = 5e3;
const request = (params) => {
@@ -12448,15 +11667,9 @@ if (uni.restoreGlobal) {
__name: "index",
setup(__props, { expose: __expose }) {
__expose();
+ const cameraArray = vue.ref([]);
onLoad(() => {
- const globalEvent = requireNativePlugin("globalEvent");
- globalEvent.addEventListener("myEvent", (e) => {
- formatAppLog("log", "at pages/watch/index.vue:304", "myEvent", e);
- uni.showToast({
- title: "myEvent: " + JSON.stringify(e),
- duration: 2e3
- });
- });
+ cameraArray.value = cameraSmall;
});
const zyupgrade = vue.ref(null);
const menuIndex = vue.ref(-1);
@@ -12466,11 +11679,83 @@ if (uni.restoreGlobal) {
const gobackdrawer = vue.ref(null);
const wheelRef = vue.ref(null);
const topnum = vue.ref(0);
+ const wheretarget = vue.ref(3);
+ const where = [
+ {
+ name: "左右翻转",
+ url: "/static/index/camera/800.png",
+ target: "/static/index/camera/801.png"
+ },
+ {
+ name: "上下翻转",
+ url: "/static/index/camera/810.png",
+ target: "/static/index/camera/811.png"
+ },
+ {
+ name: "中心翻转",
+ url: "/static/index/camera/820.png",
+ target: "/static/index/camera/821.png"
+ },
+ {
+ name: "不翻转",
+ url: "/static/index/camera/830.png",
+ target: "/static/index/camera/831.png"
+ }
+ ];
+ const downpicture = [
+ "原图",
+ "全景拉伸",
+ "四分屏",
+ "180°全景",
+ "360°全景"
+ ];
+ const cameratarget = vue.ref([]);
+ const cameraBig = [
+ "截图",
+ "录制",
+ "对讲",
+ "静音",
+ "预警",
+ "更多",
+ "图片",
+ "视频",
+ "清晰度",
+ "翻转"
+ ];
+ const cameraSmall = [
+ "截图",
+ "录制",
+ "对讲",
+ "静音",
+ "预警",
+ "更多"
+ ];
+ const downtarget = vue.ref(0);
const jumpToCeshi = () => {
uni.navigateTo({
url: "/pages/denglu"
});
};
+ const clickDownCard = (index2) => {
+ downtarget.value = index2;
+ switch (index2) {
+ case 0:
+ uni.$emit("monitor:switchDisplay", 0);
+ break;
+ case 1:
+ uni.$emit("monitor:switchDisplay", 4);
+ break;
+ case 2:
+ uni.$emit("monitor:switchDisplay", 1);
+ break;
+ case 3:
+ uni.$emit("monitor:switchDisplay", 2);
+ break;
+ case 4:
+ uni.$emit("monitor:switchDisplay", 3);
+ break;
+ }
+ };
const first = vue.ref(5);
const second = vue.ref(0);
const firstIndex = (index2) => {
@@ -12773,6 +12058,9 @@ if (uni.restoreGlobal) {
openfirstmenu.value = true;
opensecondmenu.value = false;
};
+ const movecamera = (type) => {
+ handleKey(type);
+ };
const movecard = (type) => {
if (leftTargetIndex.value !== -1) {
switch (type) {
@@ -12819,7 +12107,6 @@ if (uni.restoreGlobal) {
break;
case 1:
if (typeNow.value < typeArray.value.length - 2) {
- formatAppLog("log", "at pages/watch/index.vue:675", "???", typeArray.value.length);
typeNow.value++;
topTargetIndex.value = typeNow.value;
} else {
@@ -12961,6 +12248,123 @@ if (uni.restoreGlobal) {
}
}
};
+ const removeTimers = /* @__PURE__ */ new Map();
+ vue.onBeforeUnmount(() => {
+ for (const t of removeTimers.values()) {
+ clearTimeout(t);
+ }
+ removeTimers.clear();
+ });
+ const removeIndexOnce = (index2) => {
+ const pos = cameratarget.value.indexOf(index2);
+ if (pos !== -1) {
+ cameratarget.value.splice(pos, 1);
+ }
+ };
+ const jumpopen = vue.ref(false);
+ const clickcamera = (index2) => {
+ switch (index2) {
+ case 0:
+ uni.$emit("monitor:doSnapshot");
+ if (!cameratarget.value.includes(index2)) {
+ cameratarget.value.push(index2);
+ }
+ if (removeTimers.has(index2)) {
+ clearTimeout(removeTimers.get(index2));
+ }
+ const timerId = setTimeout(() => {
+ const pos = cameratarget.value.indexOf(index2);
+ if (pos !== -1) {
+ cameratarget.value.splice(pos, 1);
+ }
+ removeTimers.delete(index2);
+ }, 500);
+ removeTimers.set(index2, timerId);
+ break;
+ case 1:
+ if (cameratarget.value.includes(index2)) {
+ uni.$emit("monitor:stopRecord");
+ removeIndexOnce(index2);
+ } else {
+ uni.$emit("monitor:startRecord");
+ cameratarget.value.push(index2);
+ }
+ break;
+ case 2:
+ if (cameratarget.value.includes(index2)) {
+ uni.$emit("monitor:stopTalk");
+ removeIndexOnce(index2);
+ } else {
+ uni.$emit("monitor:openTalk");
+ cameratarget.value.push(index2);
+ }
+ break;
+ case 3:
+ if (cameratarget.value.includes(index2)) {
+ uni.$emit("monitor:toggleVolume");
+ removeIndexOnce(index2);
+ } else {
+ uni.$emit("monitor:toggleVolume");
+ cameratarget.value.push(index2);
+ }
+ break;
+ case 4:
+ if (cameratarget.value.includes(index2)) {
+ uni.$emit("monitor:stopAlarm");
+ removeIndexOnce(index2);
+ } else {
+ uni.$emit("monitor:startAlarm");
+ cameratarget.value.push(index2);
+ }
+ break;
+ case 5:
+ if (cameratarget.value.includes(index2)) {
+ cameraArray.value = cameraSmall;
+ removeIndexOnce(index2);
+ } else {
+ cameraArray.value = cameraBig;
+ cameratarget.value.push(index2);
+ }
+ jumpopen.value = false;
+ break;
+ case 6:
+ if (cameratarget.value.includes(index2)) {
+ removeIndexOnce(index2);
+ } else {
+ cameratarget.value.push(index2);
+ }
+ break;
+ case 7:
+ if (cameratarget.value.includes(index2)) {
+ removeIndexOnce(index2);
+ } else {
+ cameratarget.value.push(index2);
+ }
+ break;
+ case 8:
+ if (cameratarget.value.includes(index2)) {
+ uni.$emit("monitor:changeQuality");
+ removeIndexOnce(index2);
+ } else {
+ uni.$emit("monitor:changeQuality");
+ cameratarget.value.push(index2);
+ }
+ break;
+ case 9:
+ jumpopen.value = true;
+ break;
+ }
+ };
+ const clickjump = (index2) => {
+ wheretarget.value = index2;
+ if (index2 === 3) {
+ uni.$emit("monitor:flipImage", 6);
+ removeIndexOnce(9);
+ } else {
+ uni.$emit("monitor:flipImage", index2);
+ cameratarget.value.push(9);
+ }
+ };
const moveUpDebounced = useThrottle(() => {
var _a;
return (_a = wheelRef.value) == null ? void 0 : _a.moveFirstUp();
@@ -13105,9 +12509,7 @@ if (uni.restoreGlobal) {
stopDirection(activeDir);
}
activeDir = type;
- movedirection(dirCode, 1).then((res) => {
- formatAppLog("log", "at pages/watch/index.vue:985", "start", dirCode, res);
- });
+ movedirection(dirCode, 1);
if (stopTimers[type])
clearTimeout(stopTimers[type]);
stopTimers[type] = setTimeout(() => {
@@ -13139,11 +12541,11 @@ if (uni.restoreGlobal) {
if (activeDir === type)
activeDir = -1;
}
- const __returned__ = { zyupgrade, menuIndex, typeNow, photoplay, getblue, gobackdrawer, wheelRef, topnum, itemHeight, containerHeight, jumpToCeshi, first, second, firstIndex, secondIndex, opendrawer, clamp, ensureVisible, genPaths: genPaths2, base, blueArray, basesmall, bluesmallArray, peopleArray, iconArray, typeArray, leftMenuArray, leftTargetIndex, topTargetIndex, shezhi, openright, openfirstmenu, opensecondmenu, cleanandopen, movecard, moveUpDebounced, moveDownDebounced, moveUpsecond, moveDownsecond, clickDownsecond, gaoqing, yuntai, savefirst, doSomething, useThrottle, filteredMenu, goback, goToCeshi, get activeDir() {
+ const __returned__ = { cameraArray, zyupgrade, menuIndex, typeNow, photoplay, getblue, gobackdrawer, wheelRef, topnum, itemHeight, containerHeight, wheretarget, where, downpicture, cameratarget, cameraBig, cameraSmall, downtarget, jumpToCeshi, clickDownCard, first, second, firstIndex, secondIndex, opendrawer, clamp, ensureVisible, genPaths: genPaths2, base, blueArray, basesmall, bluesmallArray, peopleArray, iconArray, typeArray, leftMenuArray, leftTargetIndex, topTargetIndex, shezhi, openright, openfirstmenu, opensecondmenu, cleanandopen, movecamera, movecard, removeTimers, removeIndexOnce, jumpopen, clickcamera, clickjump, moveUpDebounced, moveDownDebounced, moveUpsecond, moveDownsecond, clickDownsecond, gaoqing, yuntai, savefirst, doSomething, useThrottle, filteredMenu, goback, goToCeshi, get activeDir() {
return activeDir;
}, set activeDir(v) {
activeDir = v;
- }, stopTimers, handleKey, runDirection, stopDirection, specialDrawerVue: specialDrawerVue$1, bigroll };
+ }, stopTimers, handleKey, runDirection, stopDirection, joysticknew };
Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true });
return __returned__;
}
@@ -13153,19 +12555,14 @@ if (uni.restoreGlobal) {
const _imports_2$a = "/static/index/newindex/curve/shezhi.png";
const _imports_0$c = "/static/index/newindex/wendu/0.png";
const _imports_1$d = "/static/index/newindex/wendu/1.png";
- const _imports_5$4 = "/static/index/watch/bgc.png";
- const _imports_6$1 = "/static/index/watch/play.png";
- const _imports_7$1 = "/static/index/watch/laotai.png";
- const _imports_8$1 = "/static/index/watch/laotou.png";
- const _imports_9$1 = "/static/index/watch/phonebgc.png";
- const _imports_10$1 = "/static/index/watch/phone.png";
- const _imports_11$1 = "/static/index/watch/phoneball.png";
- const _imports_12$1 = "/static/index/watch/pao.png";
- const _imports_13 = "/static/index/newindex/wendu/2.png";
- const _imports_4$3 = "/static/index/video/laba.png";
- const _imports_5$3 = "/static/index/video/video.png";
- const _imports_6 = "/static/index/video/txt.png";
- const _imports_17 = "/static/index/newindex/rightmenu/2.png";
+ const _imports_5$4 = "/static/index/watch/laotai.png";
+ const _imports_6$1 = "/static/index/watch/laotou.png";
+ const _imports_7$1 = "/static/index/watch/phonebgc.png";
+ const _imports_8$1 = "/static/index/watch/phone.png";
+ const _imports_9$1 = "/static/index/watch/phoneball.png";
+ const _imports_10$1 = "/static/index/watch/pao.png";
+ const _imports_11$1 = "/static/index/newindex/wendu/2.png";
+ const _imports_12$1 = "/static/index/camera/back.png";
function _sfc_render$O(_ctx, _cache, $props, $setup, $data, $options) {
const _component_donghua = vue.resolveComponent("donghua");
const _component_arrowkeys = vue.resolveComponent("arrowkeys");
@@ -13335,91 +12732,65 @@ if (uni.restoreGlobal) {
vue.createCommentVNode(' '),
vue.createCommentVNode(' ')
]),
- vue.createElementVNode("view", { style: { "display": "flex", "margin-top": "20rpx" } }, [
- vue.createElementVNode("view", { class: "card-father" }, [
- vue.createElementVNode("view", { class: "up-title" }, [
- vue.createElementVNode("view", { class: "" }, " 监控截屏 "),
- vue.createElementVNode("image", {
- style: { "width": "50rpx", "height": "50rpx", "margin-right": "20rpx" },
- src: _imports_1$e
- })
- ]),
- vue.createElementVNode("view", { style: { "display": "flex" } }, [
- vue.createElementVNode("view", {
- class: "small-bgc",
- style: { "margin-right": "20rpx" }
+ vue.createElementVNode("view", { class: "picture" }, [
+ (vue.openBlock(), vue.createElementBlock(
+ vue.Fragment,
+ null,
+ vue.renderList($setup.downpicture, (item, index2) => {
+ return vue.createElementVNode("view", {
+ class: "picture-card",
+ key: index2,
+ style: vue.normalizeStyle({ color: $setup.downtarget === index2 ? "#1486EB" : "" }),
+ onClick: ($event) => $setup.clickDownCard(index2)
}, [
- vue.createElementVNode("image", {
- style: { "width": "100%", "height": "100%", "position": "absolute", "top": "0", "left": "0" },
- src: _imports_5$4
- }),
- vue.createCommentVNode(' ')
- ]),
- vue.createElementVNode("view", { class: "small-bgc" }, [
- vue.createElementVNode("image", {
- style: { "width": "100%", "height": "100%", "position": "absolute", "top": "0", "left": "0" },
- src: _imports_5$4
- }),
- vue.createCommentVNode(' ')
- ])
- ])
- ]),
- vue.createElementVNode("view", { class: "card-father" }, [
- vue.createElementVNode("view", { class: "up-title" }, [
- vue.createElementVNode("view", { class: "" }, " 视频回放 "),
- vue.createElementVNode("image", {
- style: { "width": "50rpx", "height": "50rpx", "margin-right": "20rpx" },
- src: _imports_1$e
- })
- ]),
- vue.createElementVNode("view", { style: { "display": "flex" } }, [
- vue.createElementVNode("view", {
- class: "small-bgc",
- style: { "margin-right": "20rpx" }
- }, [
- vue.createElementVNode("image", {
- style: { "width": "100%", "height": "100%", "position": "absolute", "top": "0", "left": "0" },
- src: _imports_5$4
- }),
- vue.createElementVNode("image", {
- style: { "width": "50rpx", "height": "50rpx" },
- src: _imports_6$1
- })
- ]),
- vue.createElementVNode("view", { class: "small-bgc" }, [
- vue.createElementVNode("image", {
- style: { "width": "100%", "height": "100%", "position": "absolute", "top": "0", "left": "0" },
- src: _imports_5$4
- }),
- vue.createElementVNode("image", {
- style: { "width": "50rpx", "height": "50rpx" },
- src: _imports_6$1
- })
- ])
- ])
- ])
+ vue.createElementVNode(
+ "view",
+ {
+ class: "bgc-card",
+ style: vue.normalizeStyle({ background: $setup.downtarget === index2 ? "#E2EDFC" : "" })
+ },
+ [
+ vue.createElementVNode("image", {
+ style: { "width": "90rpx", "height": "90rpx" },
+ src: `/static/index/picture/${index2}${$setup.downtarget === index2 ? 1 : 0}.png`
+ }, null, 8, ["src"])
+ ],
+ 4
+ /* STYLE */
+ ),
+ vue.createTextVNode(
+ " " + vue.toDisplayString(item),
+ 1
+ /* TEXT */
+ )
+ ], 12, ["onClick"]);
+ }),
+ 64
+ /* STABLE_FRAGMENT */
+ ))
]),
+ vue.createCommentVNode(' \r\n \r\n \r\n \r\n 监控截屏\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n \r\n \r\n \r\n 视频回放\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n\r\n \r\n '),
vue.createElementVNode("view", { class: "right-right" }, [
$setup.typeNow === 0 ? (vue.openBlock(), vue.createElementBlock("view", {
key: 0,
class: "red-kuang"
}, [
vue.createElementVNode("image", {
- style: { "width": "110rpx", "height": "140rpx", "margin-left": "40rpx", "margin-top": "-10rpx" },
- src: _imports_7$1
+ style: { "width": "75rpx", "height": "90rpx", "margin-left": "40rpx", "margin-top": "-10rpx" },
+ src: _imports_5$4
}),
vue.createElementVNode("view", { class: "" }, [
- vue.createElementVNode("view", { style: { "margin-left": "20rpx", "display": "flex", "align-items": "center", "margin-bottom": "5rpx", "margin-top": "25rpx" } }, [
+ vue.createElementVNode("view", { style: { "margin-left": "20rpx", "display": "flex", "align-items": "center", "margin-bottom": "5rpx" } }, [
vue.createElementVNode("view", { class: "font-weight" }, " 王金凤 "),
vue.createElementVNode("view", {
class: "font-small",
- style: { "margin-left": "10rpx" }
+ style: { "margin-left": "30rpx" }
}, " 女 80岁 "),
vue.createElementVNode("view", { class: "blue-bgc" }, " 当日指令 ")
]),
vue.createElementVNode("view", {
class: "font-small",
- style: { "margin-left": "20rpx", "margin-top": "25rpx" }
+ style: { "margin-left": "20rpx", "margin-top": "0rpx" }
}, " 入住时间:2025.01.01 ")
])
])) : vue.createCommentVNode("v-if", true),
@@ -13429,7 +12800,7 @@ if (uni.restoreGlobal) {
}, [
vue.createElementVNode("image", {
style: { "width": "110rpx", "height": "140rpx", "margin-left": "40rpx", "margin-top": "-10rpx" },
- src: _imports_8$1
+ src: _imports_6$1
}),
vue.createElementVNode("view", { class: "" }, [
vue.createElementVNode("view", { style: { "margin-left": "20rpx", "display": "flex", "align-items": "center", "margin-bottom": "5rpx", "margin-top": "25rpx", "height": "60rpx" } }, [
@@ -13487,16 +12858,16 @@ if (uni.restoreGlobal) {
vue.createElementVNode("view", { class: "phone-number" }, [
vue.createElementVNode("image", {
class: "bgc-image",
- src: _imports_9$1
+ src: _imports_7$1
}),
vue.createElementVNode("image", {
style: { "width": "20rpx", "height": "35rpx", "margin-left": "40rpx" },
- src: _imports_10$1
+ src: _imports_8$1
}),
vue.createElementVNode("view", { class: "font-phone" }, "15533556676"),
vue.createElementVNode("image", {
class: "phone-ball",
- src: _imports_11$1
+ src: _imports_9$1
})
])
])) : vue.createCommentVNode("v-if", true),
@@ -13505,11 +12876,14 @@ if (uni.restoreGlobal) {
vue.createElementVNode("view", { class: "pao" }, [
vue.createElementVNode("image", {
style: { "width": "100%", "height": "100%", "position": "absolute", "top": "0", "left": "0" },
- src: _imports_12$1
+ src: _imports_10$1
}),
vue.createElementVNode("view", { style: { "font-size": "20rpx", "z-index": "1" } }, " 待进行 ")
]),
- vue.createElementVNode("view", { class: "juzhong" }, [
+ vue.createElementVNode("view", {
+ class: "juzhong",
+ style: { "top": "-120rpx" }
+ }, [
vue.createVNode(_component_donghua, {
width: `600rpx`,
height: `500rpx`,
@@ -13521,11 +12895,11 @@ if (uni.restoreGlobal) {
]),
vue.createElementVNode("view", {
class: "juzhong",
- style: { "z-index": "2", "margin-top": "80rpx" }
+ style: { "z-index": "2", "margin-top": "50rpx" }
}, [
vue.createVNode(_component_donghua, {
- width: `400rpx`,
- height: `250rpx`,
+ width: `300rpx`,
+ height: `200rpx`,
links: $setup.bluesmallArray,
playing: $setup.photoplay,
loop: true,
@@ -13533,89 +12907,113 @@ if (uni.restoreGlobal) {
}, null, 8, ["links", "playing"])
]),
vue.createElementVNode("image", {
- style: { "width": "480rpx", "height": "350rpx" },
- src: _imports_13
+ style: { "width": "300rpx", "height": "200rpx" },
+ src: _imports_11$1
}),
- vue.createElementVNode("view", { style: { "font-size": "38rpx" } }, " 一级压疮防护 "),
- vue.createElementVNode("view", { class: "small-button" }, [
- vue.createElementVNode("view", { class: "gray-ball" }, [
- vue.createElementVNode("image", {
- class: "laba-img",
- src: _imports_4$3
- })
- ]),
- vue.createElementVNode("view", { class: "gray-ball" }, [
- vue.createElementVNode("image", {
- class: "laba-img",
- src: _imports_5$3
- })
- ]),
- vue.createElementVNode("view", { class: "gray-ball" }, [
- vue.createElementVNode("image", {
- class: "laba-img",
- src: _imports_6
- })
- ])
- ])
+ vue.createElementVNode("view", { style: { "font-size": "25rpx" } }, " 一级压疮防护 ")
]),
- vue.createElementVNode("view", { class: "right-bottom" }, [
- vue.createElementVNode("view", { style: { "display": "flex", "margin-left": "50rpx", "padding-top": "30rpx" } }, [
- vue.createElementVNode("image", {
- class: "bottom-img",
- src: _imports_17
+ vue.createElementVNode("view", { class: "bottom-view" }, [
+ (vue.openBlock(true), vue.createElementBlock(
+ vue.Fragment,
+ null,
+ vue.renderList($setup.cameraArray, (item, index2) => {
+ return vue.openBlock(), vue.createElementBlock("view", {
+ class: "button-father",
+ onClick: ($event) => $setup.clickcamera(index2)
+ }, [
+ vue.createElementVNode(
+ "view",
+ {
+ class: "bottom-button",
+ style: vue.normalizeStyle({ backgroundColor: $setup.cameratarget.includes(index2) ? `#DDE9F0` : `` })
+ },
+ [
+ vue.createElementVNode("image", {
+ style: { "width": "70%", "height": "70%" },
+ src: `/static/index/camera/${index2}${$setup.cameratarget.includes(index2) ? 1 : 0}.png`
+ }, null, 8, ["src"])
+ ],
+ 4
+ /* STYLE */
+ ),
+ vue.createElementVNode(
+ "view",
+ {
+ style: vue.normalizeStyle([{ "font-size": "25rpx" }, { color: $setup.cameratarget.includes(index2) ? `#0E86EA` : `` }])
+ },
+ vue.toDisplayString(item),
+ 5
+ /* TEXT, STYLE */
+ )
+ ], 8, ["onClick"]);
}),
- vue.createElementVNode("view", { style: { "margin-top": "10rpx", "margin-left": "5rpx" } }, " 协助执行 ")
- ]),
- vue.createElementVNode("view", { style: { "display": "flex" } }, [
- (vue.openBlock(true), vue.createElementBlock(
- vue.Fragment,
- null,
- vue.renderList($setup.peopleArray, (item, index2) => {
- return vue.openBlock(), vue.createElementBlock("view", {
- class: "people-card",
- key: index2
- }, [
- vue.createElementVNode("image", {
- style: { "width": "60rpx", "height": "60rpx" },
- src: item.url
- }, null, 8, ["src"]),
- vue.createElementVNode(
- "view",
- { style: { "margin-left": "10rpx" } },
- vue.toDisplayString(item.name),
- 1
- /* TEXT */
- )
- ]);
- }),
- 128
- /* KEYED_FRAGMENT */
- ))
+ 256
+ /* UNKEYED_FRAGMENT */
+ )),
+ vue.withDirectives(vue.createElementVNode(
+ "view",
+ { class: "jump-white" },
+ [
+ vue.createElementVNode("view", { style: { "display": "flex", "justify-content": "space-around", "height": "100rpx", "width": "100%", "align-items": "center" } }, [
+ vue.createElementVNode("view", { class: "" }, " 清晰度 "),
+ vue.createElementVNode("image", {
+ style: { "width": "40rpx", "height": "40rpx" },
+ src: _imports_12$1,
+ onClick: _cache[0] || (_cache[0] = ($event) => $setup.jumpopen = false)
+ })
+ ]),
+ (vue.openBlock(), vue.createElementBlock(
+ vue.Fragment,
+ null,
+ vue.renderList($setup.where, (item, index2) => {
+ return vue.createElementVNode("view", {
+ class: "jump-item",
+ key: index2,
+ onClick: ($event) => $setup.clickjump(index2),
+ style: vue.normalizeStyle({ backgroundColor: $setup.wheretarget === index2 ? "#E5E8EE" : "" })
+ }, [
+ vue.createElementVNode("image", {
+ style: { "width": "50rpx", "height": "50rpx", "margin-right": "10rpx", "margin-left": "-10rpx" },
+ src: $setup.wheretarget === index2 ? item.target : item.url
+ }, null, 8, ["src"]),
+ vue.createElementVNode(
+ "view",
+ {
+ style: vue.normalizeStyle({ color: $setup.wheretarget === index2 ? "#0E86EA" : "" })
+ },
+ vue.toDisplayString(item.name),
+ 5
+ /* TEXT, STYLE */
+ )
+ ], 12, ["onClick"]);
+ }),
+ 64
+ /* STABLE_FRAGMENT */
+ ))
+ ],
+ 512
+ /* NEED_PATCH */
+ ), [
+ [vue.vShow, $setup.jumpopen]
])
])
])
]),
- vue.createVNode($setup["specialDrawerVue"], {
- ref: "gobackdrawer",
- circletarget: $setup.openright,
- onOpen: $setup.cleanandopen
- }, {
- default: vue.withCtx(() => [
- vue.createVNode($setup["bigroll"], {
- ref: "wheelRef",
- opensecondmenu: $setup.opensecondmenu,
- onFirstIndex: $setup.firstIndex,
- onSecondIndex: $setup.secondIndex
- }, null, 8, ["opensecondmenu"])
- ]),
- _: 1
- /* STABLE */
- }, 8, ["circletarget"]),
+ vue.createCommentVNode(' \r\n \r\n '),
vue.createVNode(_component_arrowkeys, {
onMovecard: $setup.movecard,
getblue: $setup.getblue,
moveleft: 5
}, null, 8, ["getblue"]),
+ vue.withDirectives(vue.createVNode(
+ $setup["joysticknew"],
+ { onMovecard: $setup.movecamera },
+ null,
+ 512
+ /* NEED_PATCH */
+ ), [
+ [vue.vShow, !$setup.cameratarget.includes(5)]
+ ]),
vue.createCommentVNode(" 自动更新组件 "),
vue.createCommentVNode(' ')
]);
@@ -13649,7 +13047,9 @@ if (uni.restoreGlobal) {
}
const go = () => {
uni.setStorageSync("token", 1);
- plus.runtime.quit();
+ uni.redirectTo({
+ url: "/pages/login/login"
+ });
};
const __returned__ = { props, donghua: donghua2, emit, handleClose, go, ref: vue.ref, watch: vue.watch };
Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true });
@@ -13690,7 +13090,7 @@ if (uni.restoreGlobal) {
}, "确定")
]),
vue.createElementVNode("view", { class: "title" }, "退出登录"),
- vue.createElementVNode("view", { class: "card-font" }, " 确定要注销155******76账户吗 ")
+ vue.createElementVNode("view", { class: "card-font" }, " 确定要注销130******31账户吗 ")
])
],
2
@@ -14682,9 +14082,9 @@ if (uni.restoreGlobal) {
const _imports_1$a = "/static/index/leida/bigball.png";
const _imports_2$7 = "/static/index/leida/biao.png";
const _imports_3$5 = "/static/index/leida/ball.png";
- const _imports_4$2 = "/static/index/leida/shallow.png";
- const _imports_5$2 = "/static/index/leida/play.png";
- const _imports_5$1 = "/static/index/quxiao.png";
+ const _imports_4$3 = "/static/index/leida/shallow.png";
+ const _imports_5$3 = "/static/index/leida/play.png";
+ const _imports_5$2 = "/static/index/quxiao.png";
function _sfc_render$I(_ctx, _cache, $props, $setup, $data, $options) {
const _component_arrowkeys = vue.resolveComponent("arrowkeys");
return vue.openBlock(), vue.createElementBlock("view", { class: "index-content-other" }, [
@@ -14729,7 +14129,7 @@ if (uni.restoreGlobal) {
}),
vue.createElementVNode("image", {
class: "all-img",
- src: _imports_4$2
+ src: _imports_4$3
})
],
4
@@ -14839,7 +14239,7 @@ if (uni.restoreGlobal) {
class: "edit-img",
onClick: _cache[0] || (_cache[0] = () => {
}),
- src: _imports_5$2
+ src: _imports_5$3
})
],
2
@@ -14911,7 +14311,7 @@ if (uni.restoreGlobal) {
"image",
{
class: "right-img",
- src: _imports_5$1,
+ src: _imports_5$2,
onClick: _cache[3] || (_cache[3] = ($event) => $setup.savevalue = ``)
},
null,
@@ -15622,6 +15022,12 @@ if (uni.restoreGlobal) {
);
}
const index = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["render", _sfc_render$H], ["__scopeId", "data-v-5b62ffe9"], ["__file", "D:/hldy_app/pages/NursingNew/component/index.vue"]]);
+ const getServiceTree = () => {
+ return request$1({
+ url: `${uni.getStorageSync("serverUrl")}/nuIpadApi/nuConfigServiceCategory/getServiceTree`,
+ method: "get"
+ });
+ };
function genPaths(base, prefix, count, ext = "png", startIndex = 0, pad = false) {
return Array.from({
length: count
@@ -18047,6 +17453,9 @@ if (uni.restoreGlobal) {
});
vue.onMounted(() => {
downdonghua.value = 0;
+ getServiceTree().then((res) => {
+ formatAppLog("log", "at pages/NursingNew/component/nurse/index.vue:930", "res", res);
+ });
});
const lastTap = vue.ref(0);
function onTap(e) {
@@ -18486,10 +17895,10 @@ if (uni.restoreGlobal) {
summary: "九泰护理日程测试",
imageUrl: "https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/uni@2x.png",
success: function(res) {
- formatAppLog("log", "at pages/NursingNew/component/nurse/index.vue:1421", "success:");
+ formatAppLog("log", "at pages/NursingNew/component/nurse/index.vue:1424", "success:");
},
fail: function(err) {
- formatAppLog("log", "at pages/NursingNew/component/nurse/index.vue:1424", "fail:");
+ formatAppLog("log", "at pages/NursingNew/component/nurse/index.vue:1427", "fail:");
}
});
};
@@ -19402,7 +18811,7 @@ if (uni.restoreGlobal) {
"image",
{
style: { "width": "60rpx", "height": "60rpx", "margin": "0 auto", "margin-top": "30rpx" },
- src: _imports_0$g
+ src: _imports_0$f
},
null,
512
@@ -19707,7 +19116,7 @@ if (uni.restoreGlobal) {
]),
vue.createElementVNode("image", {
class: "right-box-img",
- src: _imports_0$g
+ src: _imports_0$f
}),
vue.createElementVNode(
"view",
@@ -20583,7 +19992,7 @@ if (uni.restoreGlobal) {
}, [
vue.createElementVNode("image", {
class: "left-head-img",
- src: _imports_0$f
+ src: _imports_0$e
}),
vue.createElementVNode(
"text",
@@ -24832,7 +24241,7 @@ if (uni.restoreGlobal) {
const _imports_1$5 = "/static/index/Warehousing/guazhang.png";
const _imports_2$2 = "/static/index/Warehousing/hexiao.png";
const _imports_0$2 = "/static/index/Warehousing/zuo.png";
- const _imports_5 = "/static/index/Warehousing/photo.png";
+ const _imports_5$1 = "/static/index/Warehousing/photo.png";
const _imports_1$4 = "/static/index/Warehousing/you.png";
function _sfc_render$o(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock("view", { class: "draw-all" }, [
@@ -25186,7 +24595,7 @@ if (uni.restoreGlobal) {
}, [
vue.createElementVNode("image", {
class: "down-note-photo",
- src: _imports_5
+ src: _imports_5$1
})
]);
}),
@@ -26849,7 +26258,7 @@ if (uni.restoreGlobal) {
return __returned__;
}
});
- const _imports_4$1 = "/static/index/Warehousing/pen.png";
+ const _imports_4$2 = "/static/index/Warehousing/pen.png";
function _sfc_render$h(_ctx, _cache, $props, $setup, $data, $options) {
return vue.openBlock(), vue.createElementBlock("view", { class: "draw-all" }, [
vue.createElementVNode("view", { class: "draw-contain" }, [
@@ -27045,7 +26454,7 @@ if (uni.restoreGlobal) {
),
vue.createElementVNode("image", {
class: "title-img",
- src: _imports_4$1,
+ src: _imports_4$2,
onClick: ($event) => $setup.openPen(index2)
}, null, 8, ["onClick"])
]),
@@ -28515,6 +27924,9 @@ if (uni.restoreGlobal) {
});
const _imports_1$1 = "/static/index/video/videoright/guang.png";
const _imports_2$1 = "/static/index/bed.png";
+ const _imports_4$1 = "/static/index/video/laba.png";
+ const _imports_5 = "/static/index/video/video.png";
+ const _imports_6 = "/static/index/video/txt.png";
const _imports_7 = "/static/index/cardicons/zhixing.png";
const _imports_8 = "/static/index/cardicons/zhifa.png";
const _imports_9 = "/static/index/video/videotopright/goto.png";
@@ -28592,7 +28004,7 @@ if (uni.restoreGlobal) {
vue.createElementVNode("view", { class: "left-view" }, [
vue.createElementVNode("image", {
class: "left-view-img",
- src: _imports_0$f
+ src: _imports_0$e
}),
vue.createElementVNode("view", null, [
vue.createElementVNode("view", { class: "top-font-line" }, [
@@ -28721,20 +28133,20 @@ if (uni.restoreGlobal) {
vue.createElementVNode("view", { class: "time-right" }, " 待执行 "),
vue.createElementVNode("image", {
class: "time-img",
- src: _imports_3$9,
+ src: _imports_3$a,
onClick: $setup.jumptodanyuan
}),
vue.createElementVNode("view", { class: "small-button" }, [
vue.createElementVNode("view", { class: "gray-ball" }, [
vue.createElementVNode("image", {
class: "laba-img",
- src: _imports_4$3
+ src: _imports_4$1
})
]),
vue.createElementVNode("view", { class: "gray-ball" }, [
vue.createElementVNode("image", {
class: "laba-img",
- src: _imports_5$3
+ src: _imports_5
})
]),
vue.createElementVNode("view", { class: "gray-ball" }, [
@@ -28954,20 +28366,20 @@ if (uni.restoreGlobal) {
vue.createElementVNode("view", { class: "time-right" }, " 待执行 "),
vue.createElementVNode("image", {
class: "time-img",
- src: _imports_3$9,
+ src: _imports_3$a,
onClick: $setup.jumptokufang
}),
vue.createElementVNode("view", { class: "small-button" }, [
vue.createElementVNode("view", { class: "gray-ball" }, [
vue.createElementVNode("image", {
class: "laba-img",
- src: _imports_4$3
+ src: _imports_4$1
})
]),
vue.createElementVNode("view", { class: "gray-ball" }, [
vue.createElementVNode("image", {
class: "laba-img",
- src: _imports_5$3
+ src: _imports_5
})
]),
vue.createElementVNode("view", { class: "gray-ball" }, [
@@ -29576,7 +28988,7 @@ if (uni.restoreGlobal) {
"image",
{
class: "right-img",
- src: _imports_5$1,
+ src: _imports_5$2,
onClick: _cache[2] || (_cache[2] = ($event) => $setup.savevalue = ``)
},
null,
@@ -31522,7 +30934,7 @@ if (uni.restoreGlobal) {
"image",
{
style: { "width": "50rpx", "height": "50rpx", "margin": "0 auto" },
- src: _imports_0$g
+ src: _imports_0$f
},
null,
512
diff --git a/unpackage/dist/dev/app-plus/manifest.json b/unpackage/dist/dev/app-plus/manifest.json
index 90020d0..f35ecd4 100644
--- a/unpackage/dist/dev/app-plus/manifest.json
+++ b/unpackage/dist/dev/app-plus/manifest.json
@@ -7,8 +7,8 @@
"id": "__UNI__FB2D473",
"name": "护理单元",
"version": {
- "name": "1.6.0",
- "code": 160
+ "name": "1.6.1",
+ "code": 161
},
"description": "护理单元",
"developer": {
diff --git a/unpackage/dist/dev/app-plus/pages/Nursing/index.css b/unpackage/dist/dev/app-plus/pages/Nursing/index.css
index d53d9b2..bb0ce5f 100644
--- a/unpackage/dist/dev/app-plus/pages/Nursing/index.css
+++ b/unpackage/dist/dev/app-plus/pages/Nursing/index.css
@@ -3571,7 +3571,7 @@
.move-circle[data-v-e20c63a2] {
position: absolute;
bottom: 0;
- left: 0;
+ right: 0;
width: 10.9375rem;
height: 10.9375rem;
display: flex;
@@ -3583,24 +3583,17 @@
.move-circle .click-box-top[data-v-e20c63a2] {
position: absolute;
top: 0.625rem;
- left: 2.1875rem;
+ right: 2.1875rem;
width: 6.875rem;
height: 2.5rem;
}
.move-circle .click-box-bottom[data-v-e20c63a2] {
position: absolute;
bottom: 0.625rem;
- left: 2.1875rem;
+ right: 2.1875rem;
width: 6.875rem;
height: 2.5rem;
}
-.move-circle .click-box-left[data-v-e20c63a2] {
- position: absolute;
- bottom: 3.125rem;
- left: 0;
- width: 2.8125rem;
- height: 4.6875rem;
-}
.move-circle .click-box-right[data-v-e20c63a2] {
position: absolute;
bottom: 3.125rem;
@@ -3608,6 +3601,13 @@
width: 2.8125rem;
height: 4.6875rem;
}
+.move-circle .click-box-left[data-v-e20c63a2] {
+ position: absolute;
+ bottom: 3.125rem;
+ left: 0;
+ width: 2.8125rem;
+ height: 4.6875rem;
+}
.move-circle .click-box-center[data-v-e20c63a2] {
position: absolute;
bottom: 4.0625rem;
@@ -3667,7 +3667,7 @@
.pulse-circle[data-v-e20c63a2] {
position: absolute;
top: 50%;
- left: 50%;
+ right: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
background: radial-gradient(circle, #03a4ff 0%, transparent 70%);
diff --git a/unpackage/dist/dev/app-plus/pages/camera.js b/unpackage/dist/dev/app-plus/pages/camera.js
index 23043e4..0292a6c 100644
--- a/unpackage/dist/dev/app-plus/pages/camera.js
+++ b/unpackage/dist/dev/app-plus/pages/camera.js
@@ -75,7 +75,7 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
console[type].apply(console, [...args, filename]);
}
}
- var _style_0 = { "center-column": { "": { "width": 600, "height": 450, "borderRadius": 30, "overflow": "hidden" } } };
+ var _style_0 = { "center-column": { "": { "width": 630, "height": 510, "overflow": "hidden" } } };
var _export_sfc = (sfc, props) => {
const target = sfc.__vccOpts || sfc;
for (const [key, val] of props) {
@@ -99,14 +99,37 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
snapshot: [],
record: [],
talk: []
- }
+ },
+ suo: true
};
},
onLoad() {
const globalEvent = requireNativePlugin && requireNativePlugin("globalEvent");
if (globalEvent && globalEvent.addEventListener) {
globalEvent.addEventListener("myEvent", (e) => {
- formatAppLog("log", "at pages/camera.nvue:39", "myEvent", e);
+ formatAppLog("log", "at pages/camera.nvue:40", e);
+ if (e.recordUrl) {
+ uni.showToast({
+ title: "\u5F55\u5C4F\u6210\u529F",
+ icon: "success",
+ // 'success' | 'loading' | 'none'
+ duration: 1500
+ });
+ }
+ if (e.snapShotUrl) {
+ uni.showToast({
+ title: "\u622A\u5C4F\u6210\u529F",
+ icon: "success",
+ // 'success' | 'loading' | 'none'
+ duration: 1500
+ });
+ }
+ if (this.suo && e.onVolumeChange) {
+ if (e.onVolumeChange) {
+ this.toggleVolume();
+ }
+ this.suo = false;
+ }
});
}
uni.$on("monitor:doSnapshot", this.doSnapshot);
@@ -141,27 +164,27 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
methods: {
/* ------------------ 原有功能 ------------------ */
handleTelEvent(event) {
- formatAppLog("log", "at pages/camera.nvue:79", "Tel event detail:", event.detail);
+ formatAppLog("log", "at pages/camera.nvue:102", "Tel event detail:", event.detail);
},
switchDisplay(mode) {
- formatAppLog("log", "at pages/camera.nvue:84", "zzzzz", mode);
+ formatAppLog("log", "at pages/camera.nvue:107", "zzzzz", mode);
this.$refs.monitor && this.$refs.monitor.switchDisplayModeFragment(mode);
},
startAlarm() {
this.isAlarming = true;
this.$refs.monitor.startOrStopManualAlarm(this.isAlarming, (res) => {
- formatAppLog("log", "at pages/camera.nvue:91", "startAlarm callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:114", "startAlarm callback:", res);
});
},
stopAlarm() {
this.isAlarming = false;
this.$refs.monitor.startOrStopManualAlarm(this.isAlarming, (res) => {
- formatAppLog("log", "at pages/camera.nvue:97", "stopAlarm callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:120", "stopAlarm callback:", res);
});
},
flipImage(type) {
this.$refs.monitor.changeImageSwitch(type, (res) => {
- formatAppLog("log", "at pages/camera.nvue:103", "flipImage callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:126", "flipImage callback:", res);
});
},
resumeOrPause() {
@@ -192,12 +215,12 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
}
try {
this.$refs.monitor.snapShot((res) => {
- formatAppLog("log", "at pages/camera.nvue:143", "snapShot callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:166", "snapShot callback:", res);
this._handleSnapshotResultFromNative(res, payload.reqId);
});
uni.showToast({ title: "\u6B63\u5728\u622A\u5C4F...", icon: "none", duration: 800 });
} catch (err) {
- formatAppLog("error", "at pages/camera.nvue:148", "snapShot \u8C03\u7528\u5931\u8D25", err);
+ formatAppLog("error", "at pages/camera.nvue:171", "snapShot \u8C03\u7528\u5931\u8D25", err);
uni.showToast({ title: "snapShot \u8C03\u7528\u5931\u8D25", icon: "none" });
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: false, error: "snapShot_call_failed", detail: String(err) });
@@ -216,7 +239,7 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
}
try {
this.$refs.monitor.startRecord((res) => {
- formatAppLog("log", "at pages/camera.nvue:168", "startRecord callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:191", "startRecord callback:", res);
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: true, res });
}
@@ -224,7 +247,7 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
this.isRecording = true;
uni.showToast({ title: "\u5F55\u5C4F\u5DF2\u5F00\u59CB", icon: "none" });
} catch (err) {
- formatAppLog("error", "at pages/camera.nvue:177", "startRecord \u8C03\u7528\u5931\u8D25", err);
+ formatAppLog("error", "at pages/camera.nvue:200", "startRecord \u8C03\u7528\u5931\u8D25", err);
uni.showToast({ title: "startRecord \u8C03\u7528\u5931\u8D25", icon: "none" });
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: false, error: "startRecord_call_failed", detail: String(err) });
@@ -246,11 +269,11 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
}
try {
this.$refs.monitor.stopRecord((res) => {
- formatAppLog("log", "at pages/camera.nvue:203", "stopRecord callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:226", "stopRecord callback:", res);
this._handleRecordResultFromNative(res, payload.reqId);
});
} catch (err) {
- formatAppLog("error", "at pages/camera.nvue:208", "stopRecord \u8C03\u7528\u5931\u8D25", err);
+ formatAppLog("error", "at pages/camera.nvue:231", "stopRecord \u8C03\u7528\u5931\u8D25", err);
uni.showToast({ title: "stopRecord \u8C03\u7528\u5931\u8D25", icon: "none" });
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: false, error: "stopRecord_call_failed", detail: String(err) });
@@ -272,7 +295,7 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
}
try {
this.$refs.monitor.openTalk((res) => {
- formatAppLog("log", "at pages/camera.nvue:232", "openTalk callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:255", "openTalk callback:", res);
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: true, res });
}
@@ -280,7 +303,7 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
this.isTalking = true;
uni.showToast({ title: "\u5C1D\u8BD5\u5EFA\u7ACB\u5BF9\u8BB2\u8FDE\u63A5...", icon: "none" });
} catch (err) {
- formatAppLog("error", "at pages/camera.nvue:241", "openTalk \u8C03\u7528\u5931\u8D25", err);
+ formatAppLog("error", "at pages/camera.nvue:264", "openTalk \u8C03\u7528\u5931\u8D25", err);
uni.showToast({ title: "openTalk \u8C03\u7528\u5931\u8D25", icon: "none" });
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: false, error: "openTalk_call_failed", detail: String(err) });
@@ -299,14 +322,14 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
}
try {
this.$refs.monitor.stopTalk((res) => {
- formatAppLog("log", "at pages/camera.nvue:261", "stopTalk callback:", res);
+ formatAppLog("log", "at pages/camera.nvue:284", "stopTalk callback:", res);
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: true, res });
}
});
this.isTalking = false;
} catch (err) {
- formatAppLog("error", "at pages/camera.nvue:268", "stopTalk \u8C03\u7528\u5931\u8D25", err);
+ formatAppLog("error", "at pages/camera.nvue:291", "stopTalk \u8C03\u7528\u5931\u8D25", err);
uni.showToast({ title: "stopTalk \u8C03\u7528\u5931\u8D25", icon: "none" });
if (payload.reqId) {
uni.$emit(`monitor:response:${payload.reqId}`, { ok: false, error: "stopTalk_call_failed", detail: String(err) });
@@ -317,19 +340,19 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
// 处理来自模板 @onSnapShot 的事件(event.detail)
handleSnapShotEvent(event) {
const payload = event && event.detail ? event.detail : event;
- formatAppLog("log", "at pages/camera.nvue:281", "onSnapShot event:", payload);
+ formatAppLog("log", "at pages/camera.nvue:304", "onSnapShot event:", payload);
this._handleSnapshotResultFromNative(payload);
},
// 处理来自模板 @onRecord 的事件(event.detail)
handleRecordEvent(event) {
const payload = event && event.detail ? event.detail : event;
- formatAppLog("log", "at pages/camera.nvue:289", "onRecord event:", payload);
+ formatAppLog("log", "at pages/camera.nvue:312", "onRecord event:", payload);
this._handleRecordResultFromNative(payload);
},
// 处理来自模板 @onTalkStatus 的事件
handleTalkEvent(event) {
const payload = event && event.detail ? event.detail : event;
- formatAppLog("log", "at pages/camera.nvue:296", "onTalkStatus event:", payload);
+ formatAppLog("log", "at pages/camera.nvue:319", "onTalkStatus event:", payload);
const status = payload && payload.talkStatus;
const tips = payload && payload.tips;
uni.$emit("monitor:talk:status", payload);
@@ -373,7 +396,7 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
let payload = res;
if (res.detail)
payload = res.detail;
- formatAppLog("log", "at pages/camera.nvue:349", "snapshot payload normalized:", payload);
+ formatAppLog("log", "at pages/camera.nvue:372", "snapshot payload normalized:", payload);
if (reqIdFromCallback) {
uni.$emit(`monitor:response:${reqIdFromCallback}`, { ok: !!payload.snapShotResult, payload });
}
@@ -393,7 +416,7 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
} else {
const err = payload.snapShotErrorCode || payload.error || "unknown";
uni.showToast({ title: "\u622A\u56FE\u5931\u8D25: " + err, icon: "none", duration: 2e3 });
- formatAppLog("warn", "at pages/camera.nvue:376", "snapshot failed reason:", err, payload);
+ formatAppLog("warn", "at pages/camera.nvue:399", "snapshot failed reason:", err, payload);
}
},
_handleRecordResultFromNative(res, reqIdFromCallback = null) {
@@ -408,7 +431,7 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
let payload = res;
if (res.detail)
payload = res.detail;
- formatAppLog("log", "at pages/camera.nvue:392", "record payload normalized:", payload);
+ formatAppLog("log", "at pages/camera.nvue:415", "record payload normalized:", payload);
if (reqIdFromCallback) {
uni.$emit(`monitor:response:${reqIdFromCallback}`, { ok: !!(payload.recordUrl || payload.snapShotResult), payload });
}
@@ -422,11 +445,11 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
if (payload.recordUrl) {
uni.showToast({ title: "\u5F55\u5C4F\u5B8C\u6210", icon: "success", duration: 1400 });
this.isRecording = false;
- formatAppLog("log", "at pages/camera.nvue:413", "\u5F55\u5C4F\u5730\u5740\uFF1A", payload.recordUrl);
+ formatAppLog("log", "at pages/camera.nvue:436", "\u5F55\u5C4F\u5730\u5740\uFF1A", payload.recordUrl);
} else if (payload.recordFailedReason) {
uni.showToast({ title: "\u5F55\u5C4F\u5931\u8D25: " + payload.recordFailedReason, icon: "none", duration: 2e3 });
this.isRecording = false;
- formatAppLog("warn", "at pages/camera.nvue:417", "record failed reason:", payload.recordFailedReason);
+ formatAppLog("warn", "at pages/camera.nvue:440", "record failed reason:", payload.recordFailedReason);
} else {
if (payload.snapShotResult === true) {
uni.showToast({ title: "\u5F55\u5C4F\u64CD\u4F5C\u5DF2\u5B8C\u6210\uFF08\u8FD4\u56DE\u672A\u77E5\uFF09", icon: "none" });
@@ -450,7 +473,7 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
(0, import_vue.createVNode)(_component_MonitorView, {
ref: "monitor",
init: "5",
- style: { "width": "600px", "height": "450px" },
+ style: { "width": "630px", "height": "510px" },
onOnTel: $options.handleTelEvent,
onOnSnapShot: $options.handleSnapShotEvent,
onOnRecord: $options.handleRecordEvent,
diff --git a/unpackage/dist/dev/app-plus/pages/ceshianzhuo.js b/unpackage/dist/dev/app-plus/pages/ceshianzhuo.js
deleted file mode 100644
index 255cea0..0000000
--- a/unpackage/dist/dev/app-plus/pages/ceshianzhuo.js
+++ /dev/null
@@ -1,682 +0,0 @@
-"use weex:vue";
-
-if (typeof Promise !== 'undefined' && !Promise.prototype.finally) {
- Promise.prototype.finally = function(callback) {
- const promise = this.constructor
- return this.then(
- value => promise.resolve(callback()).then(() => value),
- reason => promise.resolve(callback()).then(() => {
- throw reason
- })
- )
- }
-};
-
-if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
- const global = uni.requireGlobal()
- ArrayBuffer = global.ArrayBuffer
- Int8Array = global.Int8Array
- Uint8Array = global.Uint8Array
- Uint8ClampedArray = global.Uint8ClampedArray
- Int16Array = global.Int16Array
- Uint16Array = global.Uint16Array
- Int32Array = global.Int32Array
- Uint32Array = global.Uint32Array
- Float32Array = global.Float32Array
- Float64Array = global.Float64Array
- BigInt64Array = global.BigInt64Array
- BigUint64Array = global.BigUint64Array
-};
-
-
-(() => {
- var __create = Object.create;
- var __defProp = Object.defineProperty;
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
- var __getOwnPropNames = Object.getOwnPropertyNames;
- var __getProtoOf = Object.getPrototypeOf;
- var __hasOwnProp = Object.prototype.hasOwnProperty;
- var __commonJS = (cb, mod) => function __require() {
- return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
- };
- var __copyProps = (to, from, except, desc) => {
- if (from && typeof from === "object" || typeof from === "function") {
- for (let key of __getOwnPropNames(from))
- if (!__hasOwnProp.call(to, key) && key !== except)
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
- }
- return to;
- };
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
- // If the importer is in node compatibility mode or this is not an ESM
- // file that has been converted to a CommonJS file using a Babel-
- // compatible transform (i.e. "__esModule" has not been set), then set
- // "default" to the CommonJS "module.exports" for node compatibility.
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
- mod
- ));
-
- // vue-ns:vue
- var require_vue = __commonJS({
- "vue-ns:vue"(exports, module) {
- module.exports = Vue;
- }
- });
-
- // ../../../../hldy_app/unpackage/dist/dev/.nvue/_plugin-vue_export-helper.js
- var import_vue = __toESM(require_vue());
- function requireNativePlugin(name) {
- return weex.requireModule(name);
- }
- function formatAppLog(type, filename, ...args) {
- if (uni.__log__) {
- uni.__log__(type, filename, ...args);
- } else {
- console[type].apply(console, [...args, filename]);
- }
- }
- var _export_sfc = (sfc, props) => {
- const target = sfc.__vccOpts || sfc;
- for (const [key, val] of props) {
- target[key] = val;
- }
- return target;
- };
-
- // ../../../../hldy_app/unpackage/dist/dev/.nvue/pages/ceshianzhuo.js
- var import_vue2 = __toESM(require_vue());
- var _style_0 = { "center-column": { "": { "display": "flex", "flexDirection": "column", "alignItems": "center" } }, "button-group": { "": { "display": "flex", "flexDirection": "row", "flexWrap": "wrap", "justifyContent": "center", "marginTop": 40, "width": 620 } }, "button": { "": { "marginTop": 6, "marginRight": 6, "marginBottom": 6, "marginLeft": 6, "paddingTop": 8, "paddingRight": 12, "paddingBottom": 8, "paddingLeft": 12, "minWidth": "120px", "height": 44, "borderRadius": 6, "borderWidth": 1, "borderStyle": "solid", "borderColor": "#dddddd", "backgroundColor": "#ffffff" } } };
- var _sfc_main = {
- data() {
- return {
- phoneNumber: "1234567890",
- isAlarming: false,
- isRecording: false,
- // 录屏状态
- isTalking: false
- // 对讲状态
- };
- },
- onLoad() {
- const globalEvent = requireNativePlugin && requireNativePlugin("globalEvent");
- if (globalEvent && globalEvent.addEventListener) {
- globalEvent.addEventListener("myEvent", (e) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:73", "myEvent", e);
- });
- }
- },
- methods: {
- /* ------------------ 原有功能 ------------------ */
- handleTelEvent(event) {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:80", "Tel event detail:", event.detail);
- },
- switchDisplay(mode) {
- this.$refs.monitor && this.$refs.monitor.switchDisplayModeFragment(mode);
- },
- startAlarm() {
- this.isAlarming = true;
- this.$refs.monitor.startOrStopManualAlarm(this.isAlarming, (res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:91", "startAlarm callback:", res);
- });
- },
- stopAlarm() {
- this.isAlarming = false;
- this.$refs.monitor.startOrStopManualAlarm(this.isAlarming, (res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:97", "stopAlarm callback:", res);
- });
- },
- flipImage(type) {
- this.$refs.monitor.changeImageSwitch(type, (res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:103", "flipImage callback:", res);
- });
- },
- resumeOrPause() {
- this.$refs.monitor.resumeOrPause && this.$refs.monitor.resumeOrPause();
- },
- changeQuality() {
- this.$refs.monitor.changeQuality && this.$refs.monitor.changeQuality();
- },
- test() {
- this.$refs.monitor && this.$refs.monitor.test && this.$refs.monitor.test();
- },
- /* ------------------ 新增:截图/录屏/对讲 调用方法 ------------------ */
- // 1. 截图(调用)
- doSnapshot() {
- if (!this.$refs.monitor || !this.$refs.monitor.snapShot) {
- uni.showToast({
- title: "\u7EC4\u4EF6\u4E0D\u652F\u6301 snapShot()",
- icon: "none"
- });
- return;
- }
- try {
- this.$refs.monitor.snapShot((res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:134", "snapShot callback:", res);
- this._handleSnapshotResultFromNative(res);
- });
- uni.showToast({
- title: "\u6B63\u5728\u622A\u5C4F...",
- icon: "none",
- duration: 800
- });
- } catch (err) {
- formatAppLog("error", "at pages/ceshianzhuo.nvue:143", "snapShot \u8C03\u7528\u5931\u8D25", err);
- uni.showToast({
- title: "snapShot \u8C03\u7528\u5931\u8D25",
- icon: "none"
- });
- }
- },
- // 2. 开始录屏(调用)
- doStartRecord() {
- if (!this.$refs.monitor || !this.$refs.monitor.startRecord) {
- uni.showToast({
- title: "\u7EC4\u4EF6\u4E0D\u652F\u6301 startRecord()",
- icon: "none"
- });
- return;
- }
- try {
- this.$refs.monitor.startRecord((res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:163", "startRecord callback:", res);
- });
- this.isRecording = true;
- uni.showToast({
- title: "\u5F55\u5C4F\u5DF2\u5F00\u59CB",
- icon: "none"
- });
- } catch (err) {
- formatAppLog("error", "at pages/ceshianzhuo.nvue:171", "startRecord \u8C03\u7528\u5931\u8D25", err);
- uni.showToast({
- title: "startRecord \u8C03\u7528\u5931\u8D25",
- icon: "none"
- });
- }
- },
- // 3. 停止录屏(调用)
- doStopRecord() {
- if (!this.$refs.monitor || !this.$refs.monitor.stopRecord) {
- uni.showToast({
- title: "\u7EC4\u4EF6\u4E0D\u652F\u6301 stopRecord()",
- icon: "none"
- });
- return;
- }
- try {
- this.$refs.monitor.stopRecord((res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:191", "stopRecord callback:", res);
- this._handleRecordResultFromNative(res);
- });
- } catch (err) {
- formatAppLog("error", "at pages/ceshianzhuo.nvue:196", "stopRecord \u8C03\u7528\u5931\u8D25", err);
- uni.showToast({
- title: "stopRecord \u8C03\u7528\u5931\u8D25",
- icon: "none"
- });
- }
- },
- // 4. 开始对讲(调用)
- doOpenTalk() {
- if (!this.$refs.monitor || !this.$refs.monitor.openTalk) {
- uni.showToast({
- title: "\u7EC4\u4EF6\u4E0D\u652F\u6301 openTalk()",
- icon: "none"
- });
- return;
- }
- try {
- this.$refs.monitor.openTalk((res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:215", "openTalk callback:", res);
- });
- this.isTalking = true;
- uni.showToast({
- title: "\u5C1D\u8BD5\u5EFA\u7ACB\u5BF9\u8BB2\u8FDE\u63A5...",
- icon: "none"
- });
- } catch (err) {
- formatAppLog("error", "at pages/ceshianzhuo.nvue:225", "openTalk \u8C03\u7528\u5931\u8D25", err);
- uni.showToast({
- title: "openTalk \u8C03\u7528\u5931\u8D25",
- icon: "none"
- });
- }
- },
- // 5. 停止对讲(调用)
- doStopTalk() {
- if (!this.$refs.monitor || !this.$refs.monitor.stopTalk) {
- uni.showToast({
- title: "\u7EC4\u4EF6\u4E0D\u652F\u6301 stopTalk()",
- icon: "none"
- });
- return;
- }
- try {
- this.$refs.monitor.stopTalk((res) => {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:244", "stopTalk callback:", res);
- });
- this.isTalking = false;
- } catch (err) {
- formatAppLog("error", "at pages/ceshianzhuo.nvue:250", "stopTalk \u8C03\u7528\u5931\u8D25", err);
- uni.showToast({
- title: "stopTalk \u8C03\u7528\u5931\u8D25",
- icon: "none"
- });
- }
- },
- /* ------------------ 事件回调处理(来自原生推送的事件) ------------------ */
- // 处理来自模板 @onSnapShot 的事件(event.detail)
- handleSnapShotEvent(event) {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:263", "onSnapShot event:", event && event.detail ? event.detail : event);
- this._handleSnapshotResultFromNative(event && event.detail ? event.detail : event);
- },
- // 处理来自模板 @onRecord 的事件(event.detail)
- handleRecordEvent(event) {
- formatAppLog("log", "at pages/ceshianzhuo.nvue:270", "onRecord event:", event && event.detail ? event.detail : event);
- this._handleRecordResultFromNative(event && event.detail ? event.detail : event);
- },
- // 处理来自模板 @onTalkStatus 的事件
- handleTalkEvent(event) {
- const payload = event && event.detail ? event.detail : event;
- formatAppLog("log", "at pages/ceshianzhuo.nvue:278", "onTalkStatus event:", payload);
- const status = payload && payload.talkStatus;
- const tips = payload && payload.tips;
- switch ((status || "").toLowerCase()) {
- case "loading":
- uni.showToast({
- title: tips || "\u5BF9\u8BB2\u8FDE\u63A5\u4E2D...",
- icon: "none"
- });
- this.isTalking = true;
- break;
- case "playing":
- uni.showToast({
- title: tips || "\u5BF9\u8BB2\u5DF2\u8FDE\u63A5",
- icon: "none"
- });
- this.isTalking = true;
- break;
- case "stopped":
- uni.showToast({
- title: tips || "\u5BF9\u8BB2\u5DF2\u505C\u6B62",
- icon: "none"
- });
- this.isTalking = false;
- break;
- case "failed":
- uni.showToast({
- title: tips || "\u5BF9\u8BB2\u5931\u8D25",
- icon: "none"
- });
- this.isTalking = false;
- break;
- default:
- uni.showToast({
- title: tips || "\u5BF9\u8BB2\u72B6\u6001: " + (status || "unknown"),
- icon: "none"
- });
- break;
- }
- },
- /* ------------------ 原生结果的内部处理函数(统一处理 callback / event) ------------------ */
- _handleSnapshotResultFromNative(res) {
- if (!res) {
- uni.showToast({
- title: "\u622A\u56FE\u6CA1\u6709\u8FD4\u56DE\u6570\u636E",
- icon: "none"
- });
- return;
- }
- let payload = res;
- if (res.detail)
- payload = res.detail;
- formatAppLog("log", "at pages/ceshianzhuo.nvue:337", "snapshot payload normalized:", payload);
- if (payload.snapShotResult === true || payload.snapShotResult === "true") {
- const url = payload.snapShotUrl || payload.snapShotPath || payload.url;
- uni.showToast({
- title: "\u622A\u56FE\u6210\u529F",
- icon: "success",
- duration: 1200
- });
- formatAppLog("log", "at pages/ceshianzhuo.nvue:345", "\u622A\u56FE\u5730\u5740\uFF1A", url);
- if (url) {
- uni.previewImage({
- urls: [url]
- });
- }
- } else {
- const err = payload.snapShotErrorCode || payload.error || "unknown";
- uni.showToast({
- title: "\u622A\u56FE\u5931\u8D25: " + err,
- icon: "none",
- duration: 2e3
- });
- formatAppLog("warn", "at pages/ceshianzhuo.nvue:360", "snapshot failed reason:", err, payload);
- }
- },
- _handleRecordResultFromNative(res) {
- if (!res) {
- uni.showToast({
- title: "\u5F55\u5C4F\u6CA1\u6709\u8FD4\u56DE\u6570\u636E",
- icon: "none"
- });
- this.isRecording = false;
- return;
- }
- let payload = res;
- if (res.detail)
- payload = res.detail;
- formatAppLog("log", "at pages/ceshianzhuo.nvue:377", "record payload normalized:", payload);
- if (payload.recordUrl) {
- uni.showToast({
- title: "\u5F55\u5C4F\u5B8C\u6210",
- icon: "success",
- duration: 1400
- });
- formatAppLog("log", "at pages/ceshianzhuo.nvue:386", "\u5F55\u5C4F\u5730\u5740\uFF1A", payload.recordUrl);
- this.isRecording = false;
- } else if (payload.recordFailedReason) {
- uni.showToast({
- title: "\u5F55\u5C4F\u5931\u8D25: " + payload.recordFailedReason,
- icon: "none",
- duration: 2e3
- });
- formatAppLog("warn", "at pages/ceshianzhuo.nvue:395", "record failed reason:", payload.recordFailedReason);
- this.isRecording = false;
- } else {
- if (payload.snapShotResult === true) {
- uni.showToast({
- title: "\u5F55\u5C4F\u64CD\u4F5C\u5DF2\u5B8C\u6210\uFF08\u8FD4\u56DE\u672A\u77E5\uFF09",
- icon: "none"
- });
- }
- this.isRecording = false;
- }
- }
- }
- };
- function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
- const _component_MonitorView = (0, import_vue2.resolveComponent)("MonitorView");
- const _component_MonitorControlView = (0, import_vue2.resolveComponent)("MonitorControlView");
- const _component_button = (0, import_vue2.resolveComponent)("button");
- return (0, import_vue2.openBlock)(), (0, import_vue2.createElementBlock)("scroll-view", {
- scrollY: true,
- showScrollbar: true,
- enableBackToTop: true,
- bubble: "true",
- style: { flexDirection: "column" }
- }, [
- (0, import_vue2.createElementVNode)("div", { class: "center-column" }, [
- (0, import_vue2.createCommentVNode)(" \u89C6\u9891\u64AD\u653E\u7EC4\u4EF6\uFF0C\u76D1\u542C\u539F\u751F\u4E8B\u4EF6 "),
- (0, import_vue2.createVNode)(_component_MonitorView, {
- ref: "monitor",
- init: "5",
- style: { "width": "300px", "height": "200px", "margin-top": "20px" },
- onOnTel: $options.handleTelEvent,
- onOnSnapShot: $options.handleSnapShotEvent,
- onOnRecord: $options.handleRecordEvent,
- onOnTalkStatus: $options.handleTalkEvent
- }, null, 8, ["onOnTel", "onOnSnapShot", "onOnRecord", "onOnTalkStatus"]),
- (0, import_vue2.createElementVNode)("view", { style: { "display": "flex", "flex-direction": "row", "align-items": "flex-start" } }, [
- (0, import_vue2.createCommentVNode)(" \u4E91\u53F0\u63A7\u5236\u7EC4\u4EF6 "),
- (0, import_vue2.createVNode)(
- _component_MonitorControlView,
- {
- ref: "control",
- init: "5",
- style: { "width": "300px", "height": "300px", "margin-top": "20px" }
- },
- null,
- 512
- /* NEED_PATCH */
- ),
- (0, import_vue2.createCommentVNode)(" \u529F\u80FD\u6309\u94AE "),
- (0, import_vue2.createElementVNode)("div", { class: "button-group" }, [
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- onClick: _cache[0] || (_cache[0] = ($event) => $options.switchDisplay(0))
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)("\u539F\u56FE")
- ]),
- _: 1
- /* STABLE */
- }),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- onClick: _cache[1] || (_cache[1] = ($event) => $options.switchDisplay(1))
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)("\u56DB\u5206\u5C4F")
- ]),
- _: 1
- /* STABLE */
- }),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- onClick: _cache[2] || (_cache[2] = ($event) => $options.switchDisplay(2))
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)("180\xB0\u5168\u666F")
- ]),
- _: 1
- /* STABLE */
- }),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- onClick: _cache[3] || (_cache[3] = ($event) => $options.switchDisplay(3))
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)("360\xB0\u5168\u666F")
- ]),
- _: 1
- /* STABLE */
- }),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- onClick: _cache[4] || (_cache[4] = ($event) => $options.switchDisplay(4))
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)("\u73AF\u72B6\u5168\u666F")
- ]),
- _: 1
- /* STABLE */
- }),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- onClick: $options.startAlarm
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)("\u5F00\u542F\u624B\u52A8\u62A5\u8B66")
- ]),
- _: 1
- /* STABLE */
- }, 8, ["onClick"]),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- onClick: $options.stopAlarm
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)("\u505C\u6B62\u624B\u52A8\u62A5\u8B66")
- ]),
- _: 1
- /* STABLE */
- }, 8, ["onClick"]),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- onClick: _cache[5] || (_cache[5] = ($event) => $options.flipImage(0))
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)("\u5DE6\u53F3\u7FFB\u8F6C")
- ]),
- _: 1
- /* STABLE */
- }),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- onClick: _cache[6] || (_cache[6] = ($event) => $options.flipImage(1))
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)("\u4E0A\u4E0B\u7FFB\u8F6C")
- ]),
- _: 1
- /* STABLE */
- }),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- onClick: _cache[7] || (_cache[7] = ($event) => $options.flipImage(2))
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)("\u4E2D\u5FC3\u7FFB\u8F6C")
- ]),
- _: 1
- /* STABLE */
- }),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- onClick: _cache[8] || (_cache[8] = ($event) => $options.flipImage(3))
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)("\u987A\u65F6\u948890\xB0")
- ]),
- _: 1
- /* STABLE */
- }),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- onClick: _cache[9] || (_cache[9] = ($event) => $options.flipImage(4))
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)("\u9006\u65F6\u948890\xB0")
- ]),
- _: 1
- /* STABLE */
- }),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- onClick: _cache[10] || (_cache[10] = ($event) => $options.flipImage(5))
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)("\u9006\u65F6\u9488180\xB0")
- ]),
- _: 1
- /* STABLE */
- }),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- onClick: _cache[11] || (_cache[11] = ($event) => $options.flipImage(6))
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)("\u4E0D\u7FFB\u8F6C")
- ]),
- _: 1
- /* STABLE */
- }),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- onClick: $options.resumeOrPause
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)("\u6682\u505C/\u7EE7\u7EED")
- ]),
- _: 1
- /* STABLE */
- }, 8, ["onClick"]),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- onClick: $options.changeQuality
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)("\u5207\u6362\u6E05\u6670\u5EA6")
- ]),
- _: 1
- /* STABLE */
- }, 8, ["onClick"]),
- (0, import_vue2.createCommentVNode)(" === \u65B0\u589E\u7684\u529F\u80FD\u6309\u94AE\uFF1A\u622A\u56FE / \u5F55\u5C4F / \u5BF9\u8BB2 === "),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- onClick: $options.doSnapshot
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)("\u622A\u56FE")
- ]),
- _: 1
- /* STABLE */
- }, 8, ["onClick"]),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- disabled: $data.isRecording,
- onClick: $options.doStartRecord
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)(" \u5F00\u59CB\u5F55\u5C4F ")
- ]),
- _: 1
- /* STABLE */
- }, 8, ["disabled", "onClick"]),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- disabled: !$data.isRecording,
- onClick: $options.doStopRecord
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)(" \u7ED3\u675F\u5F55\u5C4F ")
- ]),
- _: 1
- /* STABLE */
- }, 8, ["disabled", "onClick"]),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- disabled: $data.isTalking,
- onClick: $options.doOpenTalk
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)(" \u5F00\u59CB\u5BF9\u8BB2 ")
- ]),
- _: 1
- /* STABLE */
- }, 8, ["disabled", "onClick"]),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- disabled: !$data.isTalking,
- onClick: $options.doStopTalk
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)(" \u7ED3\u675F\u5BF9\u8BB2 ")
- ]),
- _: 1
- /* STABLE */
- }, 8, ["disabled", "onClick"]),
- (0, import_vue2.createCommentVNode)(" \u6D4B\u8BD5\u6309\u94AE "),
- (0, import_vue2.createVNode)(_component_button, {
- class: "button",
- onClick: $options.test
- }, {
- default: (0, import_vue2.withCtx)(() => [
- (0, import_vue2.createTextVNode)("test")
- ]),
- _: 1
- /* STABLE */
- }, 8, ["onClick"])
- ])
- ])
- ])
- ]);
- }
- var ceshianzhuo = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["styles", [_style_0]], ["__file", "D:/hldy_app/pages/ceshianzhuo.nvue"]]);
-
- //
- var webview = plus.webview.currentWebview();
- if (webview) {
- const __pageId = parseInt(webview.id);
- const __pagePath = "pages/ceshianzhuo";
- let __pageQuery = {};
- try {
- __pageQuery = JSON.parse(webview.__query__);
- } catch (e) {
- }
- ceshianzhuo.mpType = "page";
- const app = Vue.createPageApp(ceshianzhuo, { $store: getApp({ allowDefault: true }).$store, __pageId, __pagePath, __pageQuery });
- app.provide("__globalStyles", Vue.useCssStyles([...__uniConfig.styles, ...ceshianzhuo.styles || []]));
- app.mount("#root");
- }
-})();
diff --git a/unpackage/dist/dev/app-plus/pages/watch/index.css b/unpackage/dist/dev/app-plus/pages/watch/index.css
index 28d259b..f46f493 100644
--- a/unpackage/dist/dev/app-plus/pages/watch/index.css
+++ b/unpackage/dist/dev/app-plus/pages/watch/index.css
@@ -1,230 +1,125 @@
-.drawer[data-v-f2f12044] {
- position: fixed;
+.move-circle[data-v-e20c63a2] {
+ position: absolute;
bottom: 0;
right: 0;
- height: 85vh;
- background: #eff0f4;
- z-index: 1000;
- border-top-left-radius: 2.5rem;
- border-bottom-left-radius: 2.5rem;
- /* 初始隐藏 */
- transform: translateX(100%);
- transition: transform 0.4s ease;
-}
-.drawer-open[data-v-f2f12044] {
- transform: translateX(0);
-}
-.drawer-content[data-v-f2f12044] {
- position: relative;
- width: 100%;
- height: 100%;
-}
-.drawer-content-circle[data-v-f2f12044] {
- position: absolute;
- bottom: 7.5rem;
- left: -1.875rem;
- width: 4.6875rem;
- height: 5rem;
- border-radius: 50%;
- z-index: -1;
- background: linear-gradient(to right, #fff 0, #eff0f4 1.875rem, #eff0f4 100%);
+ width: 10.9375rem;
+ height: 10.9375rem;
display: flex;
+ justify-content: center;
align-items: center;
- -webkit-clip-path: inset(0 60% 0 0);
- clip-path: inset(0 60% 0 0);
+ z-index: 99;
+ touch-action: none;
}
-.drawer-img[data-v-f2f12044] {
- width: 0.625rem;
- height: 0.625rem;
- margin-left: 0.78125rem;
+.move-circle .click-box-top[data-v-e20c63a2] {
+ position: absolute;
+ top: 0.625rem;
+ right: 2.1875rem;
+ width: 6.875rem;
+ height: 2.5rem;
}
-.target[data-v-f2f12044] {
- --color: #99C9FD;
- --thick: 2px;
- --radius: 4.6875rem;
- --outline-offset: 0.15625rem;
- /* 外扩多少 */
- /* 内层虚线(你现在用的) */
- border-radius: var(--radius);
- background-color: #ddf0ff;
- /* 内部背景 */
- animation: scalePulse 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
- /* 外层虚线:放在 outline(不会影响元素尺寸) */
- outline: var(--thick) dashed var(--color);
- outline-offset: var(--outline-offset);
- /* 保证文本 / 子元素在最上层 */
- z-index: 1;
+.move-circle .click-box-bottom[data-v-e20c63a2] {
+ position: absolute;
+ bottom: 0.625rem;
+ right: 2.1875rem;
+ width: 6.875rem;
+ height: 2.5rem;
}
-.pulse[data-v-f2f12044] {
- /* 可调参数 */
- --scale: 1.2;
- --dur: 0.8s;
- animation: pulse-f2f12044 var(--dur) ease-in-out infinite;
- transform-origin: center center;
- will-change: transform;
+.move-circle .click-box-right[data-v-e20c63a2] {
+ position: absolute;
+ bottom: 3.125rem;
+ right: 0;
+ width: 2.8125rem;
+ height: 4.6875rem;
}
-/* 放大到一定值再回到原始(平滑) */
-@keyframes pulse-f2f12044 {
+.move-circle .click-box-left[data-v-e20c63a2] {
+ position: absolute;
+ bottom: 3.125rem;
+ left: 0;
+ width: 2.8125rem;
+ height: 4.6875rem;
+}
+.move-circle .click-box-center[data-v-e20c63a2] {
+ position: absolute;
+ bottom: 4.0625rem;
+ right: 4.0625rem;
+ width: 2.8125rem;
+ height: 2.8125rem;
+}
+.move-circle-all[data-v-e20c63a2] {
+ width: 10.9375rem;
+ height: 10.9375rem;
+}
+.light-shadow[data-v-e20c63a2] {
+ position: absolute;
+ width: 1.25rem;
+ height: 1.25rem;
+ background-color: transparent;
+ border: 1.875rem solid #3da6ff;
+ border-radius: 50%;
+ pointer-events: none;
+ opacity: 1;
+}
+/* 无限循环波纹动画,长按时用 */
+.ripple-loop[data-v-e20c63a2] {
+ animation: rippleLoop-e20c63a2 1.2s ease-out infinite;
+}
+/* 点击一次的波纹动画 */
+.ripple-once[data-v-e20c63a2] {
+ animation: rippleLoop-e20c63a2 1.2s ease-out forwards;
+}
+@keyframes rippleLoop-e20c63a2 {
0% {
- transform: scale(1);
-}
-50% {
- transform: scale(var(--scale));
+ transform: translate(-50%, -50%) scale(0.5);
+ opacity: 0.6;
}
100% {
- transform: scale(1);
+ transform: translate(-50%, -50%) scale(2.5);
+ opacity: 0;
}
}
-
-.draw-all[data-v-dfacf6bf] {
- width: 100%;
- height: 100%;
- background-color: #eff0f4;
- overflow: hidden;
+.light-circle[data-v-e20c63a2] {
position: relative;
-}
-.carmera[data-v-dfacf6bf] {
- position: absolute;
- right: 0;
- bottom: 7.8125rem;
- height: 18.75rem;
- width: 6.25rem;
- z-index: 1;
-}
-.roll[data-v-dfacf6bf] {
- position: absolute;
- right: 0;
- bottom: 0;
- height: 40.625rem;
- width: 20.3125rem;
-}
-.compass-container[data-v-dfacf6bf] {
- width: 380px;
- height: 380px;
+ width: 150px;
+ height: 150px;
border-radius: 50%;
- position: absolute;
- right: -65%;
- transform: translateY(-60%);
- bottom: 8.4375rem;
- margin: auto;
- touch-action: none;
- z-index: 9999;
+ background: #111;
+ /* 你背景色自己改 */
+ overflow: visible;
}
-.compass-item[data-v-dfacf6bf] {
+.circle[data-v-e20c63a2] {
+ position: relative;
+ width: 150px;
+ height: 150px;
+ border-radius: 50%;
+ background: #222;
+ margin: 50px;
+}
+.pulse-circle[data-v-e20c63a2] {
position: absolute;
top: 50%;
- left: 50%;
- width: 100px;
- height: 100px;
- margin: -50px 0 0 -50px;
- display: flex;
- align-items: center;
- justify-content: center;
-}
-.item-label[data-v-dfacf6bf] {
- font-size: 0.78125rem;
- width: 4.0625rem;
- height: 4.0625rem;
+ right: 50%;
+ transform: translate(-50%, -50%);
border-radius: 50%;
- display: flex;
- justify-content: center;
- align-items: center;
- background: linear-gradient(to bottom, #e6e7ed, #f4f5f7);
- border: 0.0625rem solid #fff;
- position: relative;
+ background: radial-gradient(circle, #03a4ff 0%, transparent 70%);
+ animation: pulse-e20c63a2 3s forwards;
}
-.item-label-target[data-v-dfacf6bf] {
- font-size: 0.78125rem;
- width: 4.0625rem;
- height: 4.0625rem;
- border-radius: 50%;
- display: flex;
- justify-content: center;
- align-items: center;
- background: linear-gradient(to bottom, #e6e7ed, #f4f5f7);
- position: relative;
-}
-.item-label-second[data-v-dfacf6bf] {
- font-size: 0.78125rem;
- width: 4.0625rem;
- height: 4.0625rem;
- border-radius: 50%;
- display: flex;
- justify-content: center;
- align-items: center;
- position: relative;
-}
-.all-size[data-v-dfacf6bf] {
- width: 100%;
- height: 100%;
-}
-.targetimge[data-v-dfacf6bf] {
- width: 4.6875rem;
- height: 4.0625rem;
- position: absolute;
- right: 0;
- top: 0;
- z-index: 1;
- transition: opacity 0.8s ease;
-}
-.compass-container.second[data-v-dfacf6bf] {
- width: 480px;
- height: 480px;
- border-radius: 50%;
- position: absolute;
- right: -75%;
- transform: translateY(-70%);
- bottom: 5.375rem;
- margin: auto;
- touch-action: none;
- z-index: 1;
-}
-.gesture-mask[data-v-dfacf6bf] {
- position: fixed;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- z-index: 9999;
- background: transparent;
-}
-.pulse[data-v-dfacf6bf] {
- /* 可调参数 */
- --scale: 1.5;
- --dur: 1.1s;
- animation: pulse-dfacf6bf var(--dur) ease-in-out infinite;
- transform-origin: center center;
- will-change: transform;
-}
-/* 放大到一定值再回到原始(平滑) */
-@keyframes pulse-dfacf6bf {
+@keyframes pulse-e20c63a2 {
0% {
- transform: scale(1);
+ width: 0;
+ height: 0;
+ opacity: 0.8;
}
50% {
- transform: scale(var(--scale));
+ width: 10.9375rem;
+ height: 10.9375rem;
+ opacity: 0.4;
}
100% {
- transform: scale(1);
+ width: 0;
+ height: 0;
+ opacity: 0;
}
}
-.targetbutton[data-v-dfacf6bf] {
- --color: #99C9FD;
- --thick: 2px;
- --radius: 1.875rem;
- --outline-offset: -0.3125rem;
- /* 外扩多少 */
- /* 内层虚线(你现在用的) */
- border-radius: var(--radius);
- /* 内部背景 */
- animation: scalePulse 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
- /* 外层虚线:放在 outline(不会影响元素尺寸) */
- outline: var(--thick) dashed var(--color);
- outline-offset: var(--outline-offset);
- /* 保证文本 / 子元素在最上层 */
- position: relative;
- z-index: 1;
-}
.view[data-v-4b26e9e6] {
background-color: #eff0f4;
@@ -339,7 +234,7 @@
font-size: 1rem;
}
.big-bgc[data-v-4b26e9e6] {
- margin-top: 0.9375rem;
+ margin-top: 0.625rem;
width: 39.0625rem;
height: 28.53125rem;
border-radius: 1.5625rem;
@@ -388,9 +283,9 @@
}
.right-right .red-kuang[data-v-4b26e9e6] {
margin-top: 0;
- margin-left: 1.5625rem;
- width: 17.1875rem;
- height: 5.9375rem;
+ margin-left: 2.8125rem;
+ width: 15.9375rem;
+ height: 3.75rem;
border-radius: 1.5625rem;
position: relative;
display: flex;
@@ -398,35 +293,35 @@
background-color: rgba(226, 227, 231, 0.5);
}
.right-right .red-kuang .blue-bgc[data-v-4b26e9e6] {
- width: 4.375rem;
- height: 1.875rem;
+ width: 3.75rem;
+ height: 1.5625rem;
display: flex;
justify-content: center;
align-items: center;
z-index: 1;
- font-size: 0.8125rem;
+ font-size: 0.71875rem;
background-color: rgba(248, 249, 250, 0.5);
color: #017DE9;
border-radius: 0.625rem;
- margin-left: 0.3125rem;
+ margin-left: 0.9375rem;
}
.right-right .red-kuang .font-weight[data-v-4b26e9e6] {
- font-size: 1rem;
+ font-size: 0.9375rem;
font-weight: 600;
}
.right-right .red-kuang .font-small[data-v-4b26e9e6] {
- font-size: 0.9375rem;
+ font-size: 0.78125rem;
}
.states-father[data-v-4b26e9e6] {
display: flex;
- margin-top: 0.9375rem;
- margin-left: 1.5625rem;
+ margin-top: 0.625rem;
+ margin-left: 2.8125rem;
width: 100%;
}
.states-father .states[data-v-4b26e9e6] {
- width: 5.3125rem;
+ width: 4.90625rem;
margin-right: 0.46875rem;
- height: 2.5rem;
+ height: 1.875rem;
border-radius: 1.875rem;
background-color: rgba(226, 227, 231, 0.5);
display: flex;
@@ -440,11 +335,44 @@
align-items: center;
position: relative;
}
+.bottom-view[data-v-4b26e9e6] {
+ margin-left: 2.8125rem;
+ margin-top: 0.625rem;
+ width: 15.9375rem;
+ height: 21.5625rem;
+ border-radius: 1.5625rem;
+ background-color: rgba(226, 227, 231, 0.5);
+ position: relative;
+ display: flex;
+ flex-wrap: wrap;
+ overflow: hidden;
+ align-items: flex-start;
+ /* 关键:禁用 stretch,子项按自己的高度 */
+ align-content: flex-start;
+ /* 多行时顶端对齐(可选) */
+}
+.bottom-view .button-father[data-v-4b26e9e6] {
+ margin-top: 0.625rem;
+ margin-bottom: 0;
+ margin-left: 1.40625rem;
+ text-align: center;
+}
+.bottom-view .button-father .bottom-button[data-v-4b26e9e6] {
+ background-color: #F2F2F4;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ width: 3.4375rem;
+ height: 3.4375rem;
+ border: 0.03125rem solid #CDD3DD;
+ border-radius: 1.09375rem;
+ margin-bottom: 0.15625rem;
+}
.big-view[data-v-4b26e9e6] {
- margin-left: 1.5625rem;
- margin-top: 0.9375rem;
- width: 17.1875rem;
- height: 19.53125rem;
+ margin-left: 2.8125rem;
+ margin-top: 0.625rem;
+ width: 15.9375rem;
+ height: 10.625rem;
border-radius: 1.5625rem;
background-color: rgba(226, 227, 231, 0.5);
position: relative;
@@ -454,8 +382,8 @@
overflow: hidden;
}
.big-view .font-weight[data-v-4b26e9e6] {
- font-size: 1.5625rem;
- margin-top: 1.40625rem;
+ font-size: 1.25rem;
+ margin-top: 0.9375rem;
font-weight: 600;
}
.big-view .pao[data-v-4b26e9e6] {
@@ -470,7 +398,7 @@
color: #fff;
}
.small-button[data-v-4b26e9e6] {
- margin-top: 0.625rem;
+ margin-top: 0.3125rem;
height: 2.1875rem;
display: flex;
}
@@ -640,3 +568,45 @@
position: relative;
z-index: 1;
}
+.picture[data-v-4b26e9e6] {
+ display: flex;
+ margin-top: 4.6875rem;
+}
+.picture .picture-card[data-v-4b26e9e6] {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ margin-left: 0.625rem;
+ margin-right: 0.3125rem;
+ width: 6.25rem;
+}
+.picture .picture-card .bgc-card[data-v-4b26e9e6] {
+ width: 100%;
+ height: 4.0625rem;
+ background-color: #EAEAEC;
+ border-radius: 0.9375rem;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ margin-bottom: 0.3125rem;
+}
+.jump-white[data-v-4b26e9e6] {
+ position: absolute;
+ bottom: 0.625rem;
+ left: 1.5625rem;
+ width: 9.375rem;
+ height: 12.5rem;
+ background-color: #fff;
+ border-radius: 0.9375rem;
+ box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
+}
+.jump-item[data-v-4b26e9e6] {
+ margin: 0.3125rem 0.3125rem;
+ height: 1.875rem;
+ justify-content: center;
+ width: 93%;
+ display: flex;
+ border-radius: 0.625rem;
+ align-items: center;
+}
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/00.png b/unpackage/dist/dev/app-plus/static/index/camera/00.png
new file mode 100644
index 0000000..b5c8496
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/00.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/01.png b/unpackage/dist/dev/app-plus/static/index/camera/01.png
new file mode 100644
index 0000000..8ce7818
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/01.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/10.png b/unpackage/dist/dev/app-plus/static/index/camera/10.png
new file mode 100644
index 0000000..20d0188
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/10.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/11.png b/unpackage/dist/dev/app-plus/static/index/camera/11.png
new file mode 100644
index 0000000..4afb7a4
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/11.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/20.png b/unpackage/dist/dev/app-plus/static/index/camera/20.png
new file mode 100644
index 0000000..7584047
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/20.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/21.png b/unpackage/dist/dev/app-plus/static/index/camera/21.png
new file mode 100644
index 0000000..1cc00a1
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/21.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/30.png b/unpackage/dist/dev/app-plus/static/index/camera/30.png
new file mode 100644
index 0000000..bae7140
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/30.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/31.png b/unpackage/dist/dev/app-plus/static/index/camera/31.png
new file mode 100644
index 0000000..439de58
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/31.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/40.png b/unpackage/dist/dev/app-plus/static/index/camera/40.png
new file mode 100644
index 0000000..a3b821d
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/40.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/41.png b/unpackage/dist/dev/app-plus/static/index/camera/41.png
new file mode 100644
index 0000000..015c3c3
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/41.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/50.png b/unpackage/dist/dev/app-plus/static/index/camera/50.png
new file mode 100644
index 0000000..12846db
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/50.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/51.png b/unpackage/dist/dev/app-plus/static/index/camera/51.png
new file mode 100644
index 0000000..f077966
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/51.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/60.png b/unpackage/dist/dev/app-plus/static/index/camera/60.png
new file mode 100644
index 0000000..e49613c
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/60.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/61.png b/unpackage/dist/dev/app-plus/static/index/camera/61.png
new file mode 100644
index 0000000..d487215
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/61.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/70.png b/unpackage/dist/dev/app-plus/static/index/camera/70.png
new file mode 100644
index 0000000..56491f7
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/70.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/71.png b/unpackage/dist/dev/app-plus/static/index/camera/71.png
new file mode 100644
index 0000000..83ad832
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/71.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/80.png b/unpackage/dist/dev/app-plus/static/index/camera/80.png
new file mode 100644
index 0000000..0684b6f
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/80.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/watch/Wheel/800.png b/unpackage/dist/dev/app-plus/static/index/camera/800.png
similarity index 100%
rename from unpackage/dist/dev/app-plus/static/index/watch/Wheel/800.png
rename to unpackage/dist/dev/app-plus/static/index/camera/800.png
diff --git a/unpackage/dist/dev/app-plus/static/index/watch/Wheel/801.png b/unpackage/dist/dev/app-plus/static/index/camera/801.png
similarity index 100%
rename from unpackage/dist/dev/app-plus/static/index/watch/Wheel/801.png
rename to unpackage/dist/dev/app-plus/static/index/camera/801.png
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/81.png b/unpackage/dist/dev/app-plus/static/index/camera/81.png
new file mode 100644
index 0000000..d2e096a
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/81.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/watch/Wheel/810.png b/unpackage/dist/dev/app-plus/static/index/camera/810.png
similarity index 100%
rename from unpackage/dist/dev/app-plus/static/index/watch/Wheel/810.png
rename to unpackage/dist/dev/app-plus/static/index/camera/810.png
diff --git a/unpackage/dist/dev/app-plus/static/index/watch/Wheel/811.png b/unpackage/dist/dev/app-plus/static/index/camera/811.png
similarity index 100%
rename from unpackage/dist/dev/app-plus/static/index/watch/Wheel/811.png
rename to unpackage/dist/dev/app-plus/static/index/camera/811.png
diff --git a/unpackage/dist/dev/app-plus/static/index/watch/Wheel/820.png b/unpackage/dist/dev/app-plus/static/index/camera/820.png
similarity index 100%
rename from unpackage/dist/dev/app-plus/static/index/watch/Wheel/820.png
rename to unpackage/dist/dev/app-plus/static/index/camera/820.png
diff --git a/unpackage/dist/dev/app-plus/static/index/watch/Wheel/821.png b/unpackage/dist/dev/app-plus/static/index/camera/821.png
similarity index 100%
rename from unpackage/dist/dev/app-plus/static/index/watch/Wheel/821.png
rename to unpackage/dist/dev/app-plus/static/index/camera/821.png
diff --git a/unpackage/dist/dev/app-plus/static/index/watch/Wheel/830.png b/unpackage/dist/dev/app-plus/static/index/camera/830.png
similarity index 100%
rename from unpackage/dist/dev/app-plus/static/index/watch/Wheel/830.png
rename to unpackage/dist/dev/app-plus/static/index/camera/830.png
diff --git a/unpackage/dist/dev/app-plus/static/index/watch/Wheel/831.png b/unpackage/dist/dev/app-plus/static/index/camera/831.png
similarity index 100%
rename from unpackage/dist/dev/app-plus/static/index/watch/Wheel/831.png
rename to unpackage/dist/dev/app-plus/static/index/camera/831.png
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/90.png b/unpackage/dist/dev/app-plus/static/index/camera/90.png
new file mode 100644
index 0000000..0420380
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/90.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/91.png b/unpackage/dist/dev/app-plus/static/index/camera/91.png
new file mode 100644
index 0000000..d17d712
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/91.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/arrow1.png b/unpackage/dist/dev/app-plus/static/index/camera/arrow1.png
new file mode 100644
index 0000000..bc0952f
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/arrow1.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/arrow2.png b/unpackage/dist/dev/app-plus/static/index/camera/arrow2.png
new file mode 100644
index 0000000..0dc5213
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/arrow2.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/arrow3.png b/unpackage/dist/dev/app-plus/static/index/camera/arrow3.png
new file mode 100644
index 0000000..1317337
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/arrow3.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/arrow4.png b/unpackage/dist/dev/app-plus/static/index/camera/arrow4.png
new file mode 100644
index 0000000..23e7a26
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/arrow4.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/arrow5.png b/unpackage/dist/dev/app-plus/static/index/camera/arrow5.png
new file mode 100644
index 0000000..96cd0fa
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/arrow5.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/camera/back.png b/unpackage/dist/dev/app-plus/static/index/camera/back.png
new file mode 100644
index 0000000..3de7100
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/camera/back.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/picture/00.png b/unpackage/dist/dev/app-plus/static/index/picture/00.png
new file mode 100644
index 0000000..943b5b0
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/picture/00.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/picture/01.png b/unpackage/dist/dev/app-plus/static/index/picture/01.png
new file mode 100644
index 0000000..934560e
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/picture/01.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/picture/10.png b/unpackage/dist/dev/app-plus/static/index/picture/10.png
new file mode 100644
index 0000000..a4bddfe
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/picture/10.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/picture/11.png b/unpackage/dist/dev/app-plus/static/index/picture/11.png
new file mode 100644
index 0000000..a2cbf78
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/picture/11.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/picture/20.png b/unpackage/dist/dev/app-plus/static/index/picture/20.png
new file mode 100644
index 0000000..1582c39
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/picture/20.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/picture/21.png b/unpackage/dist/dev/app-plus/static/index/picture/21.png
new file mode 100644
index 0000000..bd3955b
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/picture/21.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/picture/30.png b/unpackage/dist/dev/app-plus/static/index/picture/30.png
new file mode 100644
index 0000000..697595e
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/picture/30.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/picture/31.png b/unpackage/dist/dev/app-plus/static/index/picture/31.png
new file mode 100644
index 0000000..9ad4625
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/picture/31.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/picture/40.png b/unpackage/dist/dev/app-plus/static/index/picture/40.png
new file mode 100644
index 0000000..3ae9683
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/picture/40.png differ
diff --git a/unpackage/dist/dev/app-plus/static/index/picture/41.png b/unpackage/dist/dev/app-plus/static/index/picture/41.png
new file mode 100644
index 0000000..4c9680c
Binary files /dev/null and b/unpackage/dist/dev/app-plus/static/index/picture/41.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/app-config-service.js b/unpackage/resources/__UNI__FB2D473/www/app-config-service.js
index 69a726e..cc75e5c 100644
--- a/unpackage/resources/__UNI__FB2D473/www/app-config-service.js
+++ b/unpackage/resources/__UNI__FB2D473/www/app-config-service.js
@@ -2,7 +2,7 @@
;(function(){
let u=void 0,isReady=false,onReadyCallbacks=[],isServiceReady=false,onServiceReadyCallbacks=[];
const __uniConfig = {"pages":[],"globalStyle":{"backgroundColor":"#F8F8F8","bounce":"none","navigationBar":{"backgroundColor":"#F8F8F8","titleText":"uni-app x","type":"default","titleColor":"#000000"},"isNVue":false},"nvue":{"compiler":"uni-app","styleCompiler":"uni-app","flex-direction":"column"},"renderer":"auto","appname":"护理单元","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":true},"compilerVersion":"4.76","entryPagePath":"pages/login/login","entryPageQuery":"","realEntryPagePath":"","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000},"locales":{},"darkmode":false,"themeConfig":{}};
- const __uniRoutes = [{"path":"pages/login/login","meta":{"isQuit":true,"isEntry":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/denglu","meta":{"navigationBar":{"type":"default"},"isNVue":false}},{"path":"pages/ceshianzhuo","meta":{"navigationBar":{"type":"default"},"isNVue":true}},{"path":"pages/index/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Nursing/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/index","meta":{"subNVues":[{"id":"monitorSub","path":"pages/camera","style":{"position":"absolute","left":"250px","top":"120px","width":"600px","height":"450px","background":"transparent"}},{"id":"optionSub","path":"pages/option","style":{"position":"absolute","right":"110px","bottom":"0px","width":"170px","height":"170px","background":"transparent"}}],"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/settings","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/input","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/saoma","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/leida","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/NursingNew/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Warehousing/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Initialization/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/assess/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/timeMatrix/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/timeMatrix/indexnew","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/camera","meta":{"isSubNVue":true,"isNVue":true,"navigationBar":{}}},{"path":"pages/option","meta":{"isSubNVue":true,"isNVue":true,"navigationBar":{}}}].map(uniRoute=>(uniRoute.meta.route=uniRoute.path,__uniConfig.pages.push(uniRoute.path),uniRoute.path='/'+uniRoute.path,uniRoute));
+ const __uniRoutes = [{"path":"pages/login/login","meta":{"isQuit":true,"isEntry":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/denglu","meta":{"navigationBar":{"type":"default"},"isNVue":false}},{"path":"pages/index/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Nursing/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/index","meta":{"subNVues":[{"id":"monitorSub","path":"pages/camera","style":{"position":"absolute","left":"250px","top":"120px","width":"630px","height":"510px","background":"transparent"}}],"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/settings","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/input","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/saoma","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/leida","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/NursingNew/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Warehousing/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Initialization/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/assess/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/timeMatrix/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/timeMatrix/indexnew","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/camera","meta":{"isSubNVue":true,"isNVue":true,"navigationBar":{}}}].map(uniRoute=>(uniRoute.meta.route=uniRoute.path,__uniConfig.pages.push(uniRoute.path),uniRoute.path='/'+uniRoute.path,uniRoute));
__uniConfig.styles=[{"u-relative":{"":{"position":"relative"}},"u-rela":{"":{"position":"relative"}},"u-absolute":{"":{"position":"absolute"}},"u-abso":{"":{"position":"absolute"}},"u-font-xs":{"":{"fontSize":"22rpx"}},"u-font-sm":{"":{"fontSize":"26rpx"}},"u-font-md":{"":{"fontSize":"28rpx"}},"u-font-lg":{"":{"fontSize":"30rpx"}},"u-font-xl":{"":{"fontSize":"34rpx"}},"u-flex":{"":{"flexDirection":"row","alignItems":"center"}},"u-flex-wrap":{"":{"flexWrap":"wrap"}},"u-flex-nowrap":{"":{"flexWrap":"nowrap"}},"u-col-center":{"":{"alignItems":"center"}},"u-col-top":{"":{"alignItems":"flex-start"}},"u-col-bottom":{"":{"alignItems":"flex-end"}},"u-row-center":{"":{"justifyContent":"center"}},"u-row-left":{"":{"justifyContent":"flex-start"}},"u-row-right":{"":{"justifyContent":"flex-end"}},"u-row-between":{"":{"justifyContent":"space-between"}},"u-row-around":{"":{"justifyContent":"space-around"}},"u-text-left":{"":{"textAlign":"left"}},"u-text-center":{"":{"textAlign":"center"}},"u-text-right":{"":{"textAlign":"right"}},"u-flex-col":{"":{"flexDirection":"column"}},"u-flex-0":{"":{"flex":0}},"u-flex-1":{"":{"flex":1}},"u-flex-2":{"":{"flex":2}},"u-flex-3":{"":{"flex":3}},"u-flex-4":{"":{"flex":4}},"u-flex-5":{"":{"flex":5}},"u-flex-6":{"":{"flex":6}},"u-flex-7":{"":{"flex":7}},"u-flex-8":{"":{"flex":8}},"u-flex-9":{"":{"flex":9}},"u-flex-10":{"":{"flex":10}},"u-flex-11":{"":{"flex":11}},"u-flex-12":{"":{"flex":12}},"u-font-9":{"":{"fontSize":9}},"u-font-10":{"":{"fontSize":10}},"u-font-11":{"":{"fontSize":11}},"u-font-12":{"":{"fontSize":12}},"u-font-13":{"":{"fontSize":13}},"u-font-14":{"":{"fontSize":14}},"u-font-15":{"":{"fontSize":15}},"u-font-16":{"":{"fontSize":16}},"u-font-17":{"":{"fontSize":17}},"u-font-18":{"":{"fontSize":18}},"u-font-19":{"":{"fontSize":19}},"u-font-20":{"":{"fontSize":"20rpx"}},"u-font-21":{"":{"fontSize":"21rpx"}},"u-font-22":{"":{"fontSize":"22rpx"}},"u-font-23":{"":{"fontSize":"23rpx"}},"u-font-24":{"":{"fontSize":"24rpx"}},"u-font-25":{"":{"fontSize":"25rpx"}},"u-font-26":{"":{"fontSize":"26rpx"}},"u-font-27":{"":{"fontSize":"27rpx"}},"u-font-28":{"":{"fontSize":"28rpx"}},"u-font-29":{"":{"fontSize":"29rpx"}},"u-font-30":{"":{"fontSize":"30rpx"}},"u-font-31":{"":{"fontSize":"31rpx"}},"u-font-32":{"":{"fontSize":"32rpx"}},"u-font-33":{"":{"fontSize":"33rpx"}},"u-font-34":{"":{"fontSize":"34rpx"}},"u-font-35":{"":{"fontSize":"35rpx"}},"u-font-36":{"":{"fontSize":"36rpx"}},"u-font-37":{"":{"fontSize":"37rpx"}},"u-font-38":{"":{"fontSize":"38rpx"}},"u-font-39":{"":{"fontSize":"39rpx"}},"u-font-40":{"":{"fontSize":"40rpx"}},"u-margin-0":{"":{"!marginTop":"0rpx","!marginRight":"0rpx","!marginBottom":"0rpx","!marginLeft":"0rpx"}},"u-m-0":{"":{"!marginTop":"0rpx","!marginRight":"0rpx","!marginBottom":"0rpx","!marginLeft":"0rpx"}},"u-padding-0":{"":{"!paddingTop":"0rpx","!paddingRight":"0rpx","!paddingBottom":"0rpx","!paddingLeft":"0rpx"}},"u-p-0":{"":{"!paddingTop":"0rpx","!paddingRight":"0rpx","!paddingBottom":"0rpx","!paddingLeft":"0rpx"}},"u-m-l-0":{"":{"!marginLeft":"0rpx"}},"u-p-l-0":{"":{"!paddingLeft":"0rpx"}},"u-margin-left-0":{"":{"!marginLeft":"0rpx"}},"u-padding-left-0":{"":{"!paddingLeft":"0rpx"}},"u-m-t-0":{"":{"!marginTop":"0rpx"}},"u-p-t-0":{"":{"!paddingTop":"0rpx"}},"u-margin-top-0":{"":{"!marginTop":"0rpx"}},"u-padding-top-0":{"":{"!paddingTop":"0rpx"}},"u-m-r-0":{"":{"!marginRight":"0rpx"}},"u-p-r-0":{"":{"!paddingRight":"0rpx"}},"u-margin-right-0":{"":{"!marginRight":"0rpx"}},"u-padding-right-0":{"":{"!paddingRight":"0rpx"}},"u-m-b-0":{"":{"!marginBottom":"0rpx"}},"u-p-b-0":{"":{"!paddingBottom":"0rpx"}},"u-margin-bottom-0":{"":{"!marginBottom":"0rpx"}},"u-padding-bottom-0":{"":{"!paddingBottom":"0rpx"}},"u-margin-2":{"":{"!marginTop":"2rpx","!marginRight":"2rpx","!marginBottom":"2rpx","!marginLeft":"2rpx"}},"u-m-2":{"":{"!marginTop":"2rpx","!marginRight":"2rpx","!marginBottom":"2rpx","!marginLeft":"2rpx"}},"u-padding-2":{"":{"!paddingTop":"2rpx","!paddingRight":"2rpx","!paddingBottom":"2rpx","!paddingLeft":"2rpx"}},"u-p-2":{"":{"!paddingTop":"2rpx","!paddingRight":"2rpx","!paddingBottom":"2rpx","!paddingLeft":"2rpx"}},"u-m-l-2":{"":{"!marginLeft":"2rpx"}},"u-p-l-2":{"":{"!paddingLeft":"2rpx"}},"u-margin-left-2":{"":{"!marginLeft":"2rpx"}},"u-padding-left-2":{"":{"!paddingLeft":"2rpx"}},"u-m-t-2":{"":{"!marginTop":"2rpx"}},"u-p-t-2":{"":{"!paddingTop":"2rpx"}},"u-margin-top-2":{"":{"!marginTop":"2rpx"}},"u-padding-top-2":{"":{"!paddingTop":"2rpx"}},"u-m-r-2":{"":{"!marginRight":"2rpx"}},"u-p-r-2":{"":{"!paddingRight":"2rpx"}},"u-margin-right-2":{"":{"!marginRight":"2rpx"}},"u-padding-right-2":{"":{"!paddingRight":"2rpx"}},"u-m-b-2":{"":{"!marginBottom":"2rpx"}},"u-p-b-2":{"":{"!paddingBottom":"2rpx"}},"u-margin-bottom-2":{"":{"!marginBottom":"2rpx"}},"u-padding-bottom-2":{"":{"!paddingBottom":"2rpx"}},"u-margin-4":{"":{"!marginTop":"4rpx","!marginRight":"4rpx","!marginBottom":"4rpx","!marginLeft":"4rpx"}},"u-m-4":{"":{"!marginTop":"4rpx","!marginRight":"4rpx","!marginBottom":"4rpx","!marginLeft":"4rpx"}},"u-padding-4":{"":{"!paddingTop":"4rpx","!paddingRight":"4rpx","!paddingBottom":"4rpx","!paddingLeft":"4rpx"}},"u-p-4":{"":{"!paddingTop":"4rpx","!paddingRight":"4rpx","!paddingBottom":"4rpx","!paddingLeft":"4rpx"}},"u-m-l-4":{"":{"!marginLeft":"4rpx"}},"u-p-l-4":{"":{"!paddingLeft":"4rpx"}},"u-margin-left-4":{"":{"!marginLeft":"4rpx"}},"u-padding-left-4":{"":{"!paddingLeft":"4rpx"}},"u-m-t-4":{"":{"!marginTop":"4rpx"}},"u-p-t-4":{"":{"!paddingTop":"4rpx"}},"u-margin-top-4":{"":{"!marginTop":"4rpx"}},"u-padding-top-4":{"":{"!paddingTop":"4rpx"}},"u-m-r-4":{"":{"!marginRight":"4rpx"}},"u-p-r-4":{"":{"!paddingRight":"4rpx"}},"u-margin-right-4":{"":{"!marginRight":"4rpx"}},"u-padding-right-4":{"":{"!paddingRight":"4rpx"}},"u-m-b-4":{"":{"!marginBottom":"4rpx"}},"u-p-b-4":{"":{"!paddingBottom":"4rpx"}},"u-margin-bottom-4":{"":{"!marginBottom":"4rpx"}},"u-padding-bottom-4":{"":{"!paddingBottom":"4rpx"}},"u-margin-5":{"":{"!marginTop":"5rpx","!marginRight":"5rpx","!marginBottom":"5rpx","!marginLeft":"5rpx"}},"u-m-5":{"":{"!marginTop":"5rpx","!marginRight":"5rpx","!marginBottom":"5rpx","!marginLeft":"5rpx"}},"u-padding-5":{"":{"!paddingTop":"5rpx","!paddingRight":"5rpx","!paddingBottom":"5rpx","!paddingLeft":"5rpx"}},"u-p-5":{"":{"!paddingTop":"5rpx","!paddingRight":"5rpx","!paddingBottom":"5rpx","!paddingLeft":"5rpx"}},"u-m-l-5":{"":{"!marginLeft":"5rpx"}},"u-p-l-5":{"":{"!paddingLeft":"5rpx"}},"u-margin-left-5":{"":{"!marginLeft":"5rpx"}},"u-padding-left-5":{"":{"!paddingLeft":"5rpx"}},"u-m-t-5":{"":{"!marginTop":"5rpx"}},"u-p-t-5":{"":{"!paddingTop":"5rpx"}},"u-margin-top-5":{"":{"!marginTop":"5rpx"}},"u-padding-top-5":{"":{"!paddingTop":"5rpx"}},"u-m-r-5":{"":{"!marginRight":"5rpx"}},"u-p-r-5":{"":{"!paddingRight":"5rpx"}},"u-margin-right-5":{"":{"!marginRight":"5rpx"}},"u-padding-right-5":{"":{"!paddingRight":"5rpx"}},"u-m-b-5":{"":{"!marginBottom":"5rpx"}},"u-p-b-5":{"":{"!paddingBottom":"5rpx"}},"u-margin-bottom-5":{"":{"!marginBottom":"5rpx"}},"u-padding-bottom-5":{"":{"!paddingBottom":"5rpx"}},"u-margin-6":{"":{"!marginTop":"6rpx","!marginRight":"6rpx","!marginBottom":"6rpx","!marginLeft":"6rpx"}},"u-m-6":{"":{"!marginTop":"6rpx","!marginRight":"6rpx","!marginBottom":"6rpx","!marginLeft":"6rpx"}},"u-padding-6":{"":{"!paddingTop":"6rpx","!paddingRight":"6rpx","!paddingBottom":"6rpx","!paddingLeft":"6rpx"}},"u-p-6":{"":{"!paddingTop":"6rpx","!paddingRight":"6rpx","!paddingBottom":"6rpx","!paddingLeft":"6rpx"}},"u-m-l-6":{"":{"!marginLeft":"6rpx"}},"u-p-l-6":{"":{"!paddingLeft":"6rpx"}},"u-margin-left-6":{"":{"!marginLeft":"6rpx"}},"u-padding-left-6":{"":{"!paddingLeft":"6rpx"}},"u-m-t-6":{"":{"!marginTop":"6rpx"}},"u-p-t-6":{"":{"!paddingTop":"6rpx"}},"u-margin-top-6":{"":{"!marginTop":"6rpx"}},"u-padding-top-6":{"":{"!paddingTop":"6rpx"}},"u-m-r-6":{"":{"!marginRight":"6rpx"}},"u-p-r-6":{"":{"!paddingRight":"6rpx"}},"u-margin-right-6":{"":{"!marginRight":"6rpx"}},"u-padding-right-6":{"":{"!paddingRight":"6rpx"}},"u-m-b-6":{"":{"!marginBottom":"6rpx"}},"u-p-b-6":{"":{"!paddingBottom":"6rpx"}},"u-margin-bottom-6":{"":{"!marginBottom":"6rpx"}},"u-padding-bottom-6":{"":{"!paddingBottom":"6rpx"}},"u-margin-8":{"":{"!marginTop":"8rpx","!marginRight":"8rpx","!marginBottom":"8rpx","!marginLeft":"8rpx"}},"u-m-8":{"":{"!marginTop":"8rpx","!marginRight":"8rpx","!marginBottom":"8rpx","!marginLeft":"8rpx"}},"u-padding-8":{"":{"!paddingTop":"8rpx","!paddingRight":"8rpx","!paddingBottom":"8rpx","!paddingLeft":"8rpx"}},"u-p-8":{"":{"!paddingTop":"8rpx","!paddingRight":"8rpx","!paddingBottom":"8rpx","!paddingLeft":"8rpx"}},"u-m-l-8":{"":{"!marginLeft":"8rpx"}},"u-p-l-8":{"":{"!paddingLeft":"8rpx"}},"u-margin-left-8":{"":{"!marginLeft":"8rpx"}},"u-padding-left-8":{"":{"!paddingLeft":"8rpx"}},"u-m-t-8":{"":{"!marginTop":"8rpx"}},"u-p-t-8":{"":{"!paddingTop":"8rpx"}},"u-margin-top-8":{"":{"!marginTop":"8rpx"}},"u-padding-top-8":{"":{"!paddingTop":"8rpx"}},"u-m-r-8":{"":{"!marginRight":"8rpx"}},"u-p-r-8":{"":{"!paddingRight":"8rpx"}},"u-margin-right-8":{"":{"!marginRight":"8rpx"}},"u-padding-right-8":{"":{"!paddingRight":"8rpx"}},"u-m-b-8":{"":{"!marginBottom":"8rpx"}},"u-p-b-8":{"":{"!paddingBottom":"8rpx"}},"u-margin-bottom-8":{"":{"!marginBottom":"8rpx"}},"u-padding-bottom-8":{"":{"!paddingBottom":"8rpx"}},"u-margin-10":{"":{"!marginTop":"10rpx","!marginRight":"10rpx","!marginBottom":"10rpx","!marginLeft":"10rpx"}},"u-m-10":{"":{"!marginTop":"10rpx","!marginRight":"10rpx","!marginBottom":"10rpx","!marginLeft":"10rpx"}},"u-padding-10":{"":{"!paddingTop":"10rpx","!paddingRight":"10rpx","!paddingBottom":"10rpx","!paddingLeft":"10rpx"}},"u-p-10":{"":{"!paddingTop":"10rpx","!paddingRight":"10rpx","!paddingBottom":"10rpx","!paddingLeft":"10rpx"}},"u-m-l-10":{"":{"!marginLeft":"10rpx"}},"u-p-l-10":{"":{"!paddingLeft":"10rpx"}},"u-margin-left-10":{"":{"!marginLeft":"10rpx"}},"u-padding-left-10":{"":{"!paddingLeft":"10rpx"}},"u-m-t-10":{"":{"!marginTop":"10rpx"}},"u-p-t-10":{"":{"!paddingTop":"10rpx"}},"u-margin-top-10":{"":{"!marginTop":"10rpx"}},"u-padding-top-10":{"":{"!paddingTop":"10rpx"}},"u-m-r-10":{"":{"!marginRight":"10rpx"}},"u-p-r-10":{"":{"!paddingRight":"10rpx"}},"u-margin-right-10":{"":{"!marginRight":"10rpx"}},"u-padding-right-10":{"":{"!paddingRight":"10rpx"}},"u-m-b-10":{"":{"!marginBottom":"10rpx"}},"u-p-b-10":{"":{"!paddingBottom":"10rpx"}},"u-margin-bottom-10":{"":{"!marginBottom":"10rpx"}},"u-padding-bottom-10":{"":{"!paddingBottom":"10rpx"}},"u-margin-12":{"":{"!marginTop":"12rpx","!marginRight":"12rpx","!marginBottom":"12rpx","!marginLeft":"12rpx"}},"u-m-12":{"":{"!marginTop":"12rpx","!marginRight":"12rpx","!marginBottom":"12rpx","!marginLeft":"12rpx"}},"u-padding-12":{"":{"!paddingTop":"12rpx","!paddingRight":"12rpx","!paddingBottom":"12rpx","!paddingLeft":"12rpx"}},"u-p-12":{"":{"!paddingTop":"12rpx","!paddingRight":"12rpx","!paddingBottom":"12rpx","!paddingLeft":"12rpx"}},"u-m-l-12":{"":{"!marginLeft":"12rpx"}},"u-p-l-12":{"":{"!paddingLeft":"12rpx"}},"u-margin-left-12":{"":{"!marginLeft":"12rpx"}},"u-padding-left-12":{"":{"!paddingLeft":"12rpx"}},"u-m-t-12":{"":{"!marginTop":"12rpx"}},"u-p-t-12":{"":{"!paddingTop":"12rpx"}},"u-margin-top-12":{"":{"!marginTop":"12rpx"}},"u-padding-top-12":{"":{"!paddingTop":"12rpx"}},"u-m-r-12":{"":{"!marginRight":"12rpx"}},"u-p-r-12":{"":{"!paddingRight":"12rpx"}},"u-margin-right-12":{"":{"!marginRight":"12rpx"}},"u-padding-right-12":{"":{"!paddingRight":"12rpx"}},"u-m-b-12":{"":{"!marginBottom":"12rpx"}},"u-p-b-12":{"":{"!paddingBottom":"12rpx"}},"u-margin-bottom-12":{"":{"!marginBottom":"12rpx"}},"u-padding-bottom-12":{"":{"!paddingBottom":"12rpx"}},"u-margin-14":{"":{"!marginTop":"14rpx","!marginRight":"14rpx","!marginBottom":"14rpx","!marginLeft":"14rpx"}},"u-m-14":{"":{"!marginTop":"14rpx","!marginRight":"14rpx","!marginBottom":"14rpx","!marginLeft":"14rpx"}},"u-padding-14":{"":{"!paddingTop":"14rpx","!paddingRight":"14rpx","!paddingBottom":"14rpx","!paddingLeft":"14rpx"}},"u-p-14":{"":{"!paddingTop":"14rpx","!paddingRight":"14rpx","!paddingBottom":"14rpx","!paddingLeft":"14rpx"}},"u-m-l-14":{"":{"!marginLeft":"14rpx"}},"u-p-l-14":{"":{"!paddingLeft":"14rpx"}},"u-margin-left-14":{"":{"!marginLeft":"14rpx"}},"u-padding-left-14":{"":{"!paddingLeft":"14rpx"}},"u-m-t-14":{"":{"!marginTop":"14rpx"}},"u-p-t-14":{"":{"!paddingTop":"14rpx"}},"u-margin-top-14":{"":{"!marginTop":"14rpx"}},"u-padding-top-14":{"":{"!paddingTop":"14rpx"}},"u-m-r-14":{"":{"!marginRight":"14rpx"}},"u-p-r-14":{"":{"!paddingRight":"14rpx"}},"u-margin-right-14":{"":{"!marginRight":"14rpx"}},"u-padding-right-14":{"":{"!paddingRight":"14rpx"}},"u-m-b-14":{"":{"!marginBottom":"14rpx"}},"u-p-b-14":{"":{"!paddingBottom":"14rpx"}},"u-margin-bottom-14":{"":{"!marginBottom":"14rpx"}},"u-padding-bottom-14":{"":{"!paddingBottom":"14rpx"}},"u-margin-15":{"":{"!marginTop":"15rpx","!marginRight":"15rpx","!marginBottom":"15rpx","!marginLeft":"15rpx"}},"u-m-15":{"":{"!marginTop":"15rpx","!marginRight":"15rpx","!marginBottom":"15rpx","!marginLeft":"15rpx"}},"u-padding-15":{"":{"!paddingTop":"15rpx","!paddingRight":"15rpx","!paddingBottom":"15rpx","!paddingLeft":"15rpx"}},"u-p-15":{"":{"!paddingTop":"15rpx","!paddingRight":"15rpx","!paddingBottom":"15rpx","!paddingLeft":"15rpx"}},"u-m-l-15":{"":{"!marginLeft":"15rpx"}},"u-p-l-15":{"":{"!paddingLeft":"15rpx"}},"u-margin-left-15":{"":{"!marginLeft":"15rpx"}},"u-padding-left-15":{"":{"!paddingLeft":"15rpx"}},"u-m-t-15":{"":{"!marginTop":"15rpx"}},"u-p-t-15":{"":{"!paddingTop":"15rpx"}},"u-margin-top-15":{"":{"!marginTop":"15rpx"}},"u-padding-top-15":{"":{"!paddingTop":"15rpx"}},"u-m-r-15":{"":{"!marginRight":"15rpx"}},"u-p-r-15":{"":{"!paddingRight":"15rpx"}},"u-margin-right-15":{"":{"!marginRight":"15rpx"}},"u-padding-right-15":{"":{"!paddingRight":"15rpx"}},"u-m-b-15":{"":{"!marginBottom":"15rpx"}},"u-p-b-15":{"":{"!paddingBottom":"15rpx"}},"u-margin-bottom-15":{"":{"!marginBottom":"15rpx"}},"u-padding-bottom-15":{"":{"!paddingBottom":"15rpx"}},"u-margin-16":{"":{"!marginTop":"16rpx","!marginRight":"16rpx","!marginBottom":"16rpx","!marginLeft":"16rpx"}},"u-m-16":{"":{"!marginTop":"16rpx","!marginRight":"16rpx","!marginBottom":"16rpx","!marginLeft":"16rpx"}},"u-padding-16":{"":{"!paddingTop":"16rpx","!paddingRight":"16rpx","!paddingBottom":"16rpx","!paddingLeft":"16rpx"}},"u-p-16":{"":{"!paddingTop":"16rpx","!paddingRight":"16rpx","!paddingBottom":"16rpx","!paddingLeft":"16rpx"}},"u-m-l-16":{"":{"!marginLeft":"16rpx"}},"u-p-l-16":{"":{"!paddingLeft":"16rpx"}},"u-margin-left-16":{"":{"!marginLeft":"16rpx"}},"u-padding-left-16":{"":{"!paddingLeft":"16rpx"}},"u-m-t-16":{"":{"!marginTop":"16rpx"}},"u-p-t-16":{"":{"!paddingTop":"16rpx"}},"u-margin-top-16":{"":{"!marginTop":"16rpx"}},"u-padding-top-16":{"":{"!paddingTop":"16rpx"}},"u-m-r-16":{"":{"!marginRight":"16rpx"}},"u-p-r-16":{"":{"!paddingRight":"16rpx"}},"u-margin-right-16":{"":{"!marginRight":"16rpx"}},"u-padding-right-16":{"":{"!paddingRight":"16rpx"}},"u-m-b-16":{"":{"!marginBottom":"16rpx"}},"u-p-b-16":{"":{"!paddingBottom":"16rpx"}},"u-margin-bottom-16":{"":{"!marginBottom":"16rpx"}},"u-padding-bottom-16":{"":{"!paddingBottom":"16rpx"}},"u-margin-18":{"":{"!marginTop":"18rpx","!marginRight":"18rpx","!marginBottom":"18rpx","!marginLeft":"18rpx"}},"u-m-18":{"":{"!marginTop":"18rpx","!marginRight":"18rpx","!marginBottom":"18rpx","!marginLeft":"18rpx"}},"u-padding-18":{"":{"!paddingTop":"18rpx","!paddingRight":"18rpx","!paddingBottom":"18rpx","!paddingLeft":"18rpx"}},"u-p-18":{"":{"!paddingTop":"18rpx","!paddingRight":"18rpx","!paddingBottom":"18rpx","!paddingLeft":"18rpx"}},"u-m-l-18":{"":{"!marginLeft":"18rpx"}},"u-p-l-18":{"":{"!paddingLeft":"18rpx"}},"u-margin-left-18":{"":{"!marginLeft":"18rpx"}},"u-padding-left-18":{"":{"!paddingLeft":"18rpx"}},"u-m-t-18":{"":{"!marginTop":"18rpx"}},"u-p-t-18":{"":{"!paddingTop":"18rpx"}},"u-margin-top-18":{"":{"!marginTop":"18rpx"}},"u-padding-top-18":{"":{"!paddingTop":"18rpx"}},"u-m-r-18":{"":{"!marginRight":"18rpx"}},"u-p-r-18":{"":{"!paddingRight":"18rpx"}},"u-margin-right-18":{"":{"!marginRight":"18rpx"}},"u-padding-right-18":{"":{"!paddingRight":"18rpx"}},"u-m-b-18":{"":{"!marginBottom":"18rpx"}},"u-p-b-18":{"":{"!paddingBottom":"18rpx"}},"u-margin-bottom-18":{"":{"!marginBottom":"18rpx"}},"u-padding-bottom-18":{"":{"!paddingBottom":"18rpx"}},"u-margin-20":{"":{"!marginTop":"20rpx","!marginRight":"20rpx","!marginBottom":"20rpx","!marginLeft":"20rpx"}},"u-m-20":{"":{"!marginTop":"20rpx","!marginRight":"20rpx","!marginBottom":"20rpx","!marginLeft":"20rpx"}},"u-padding-20":{"":{"!paddingTop":"20rpx","!paddingRight":"20rpx","!paddingBottom":"20rpx","!paddingLeft":"20rpx"}},"u-p-20":{"":{"!paddingTop":"20rpx","!paddingRight":"20rpx","!paddingBottom":"20rpx","!paddingLeft":"20rpx"}},"u-m-l-20":{"":{"!marginLeft":"20rpx"}},"u-p-l-20":{"":{"!paddingLeft":"20rpx"}},"u-margin-left-20":{"":{"!marginLeft":"20rpx"}},"u-padding-left-20":{"":{"!paddingLeft":"20rpx"}},"u-m-t-20":{"":{"!marginTop":"20rpx"}},"u-p-t-20":{"":{"!paddingTop":"20rpx"}},"u-margin-top-20":{"":{"!marginTop":"20rpx"}},"u-padding-top-20":{"":{"!paddingTop":"20rpx"}},"u-m-r-20":{"":{"!marginRight":"20rpx"}},"u-p-r-20":{"":{"!paddingRight":"20rpx"}},"u-margin-right-20":{"":{"!marginRight":"20rpx"}},"u-padding-right-20":{"":{"!paddingRight":"20rpx"}},"u-m-b-20":{"":{"!marginBottom":"20rpx"}},"u-p-b-20":{"":{"!paddingBottom":"20rpx"}},"u-margin-bottom-20":{"":{"!marginBottom":"20rpx"}},"u-padding-bottom-20":{"":{"!paddingBottom":"20rpx"}},"u-margin-22":{"":{"!marginTop":"22rpx","!marginRight":"22rpx","!marginBottom":"22rpx","!marginLeft":"22rpx"}},"u-m-22":{"":{"!marginTop":"22rpx","!marginRight":"22rpx","!marginBottom":"22rpx","!marginLeft":"22rpx"}},"u-padding-22":{"":{"!paddingTop":"22rpx","!paddingRight":"22rpx","!paddingBottom":"22rpx","!paddingLeft":"22rpx"}},"u-p-22":{"":{"!paddingTop":"22rpx","!paddingRight":"22rpx","!paddingBottom":"22rpx","!paddingLeft":"22rpx"}},"u-m-l-22":{"":{"!marginLeft":"22rpx"}},"u-p-l-22":{"":{"!paddingLeft":"22rpx"}},"u-margin-left-22":{"":{"!marginLeft":"22rpx"}},"u-padding-left-22":{"":{"!paddingLeft":"22rpx"}},"u-m-t-22":{"":{"!marginTop":"22rpx"}},"u-p-t-22":{"":{"!paddingTop":"22rpx"}},"u-margin-top-22":{"":{"!marginTop":"22rpx"}},"u-padding-top-22":{"":{"!paddingTop":"22rpx"}},"u-m-r-22":{"":{"!marginRight":"22rpx"}},"u-p-r-22":{"":{"!paddingRight":"22rpx"}},"u-margin-right-22":{"":{"!marginRight":"22rpx"}},"u-padding-right-22":{"":{"!paddingRight":"22rpx"}},"u-m-b-22":{"":{"!marginBottom":"22rpx"}},"u-p-b-22":{"":{"!paddingBottom":"22rpx"}},"u-margin-bottom-22":{"":{"!marginBottom":"22rpx"}},"u-padding-bottom-22":{"":{"!paddingBottom":"22rpx"}},"u-margin-24":{"":{"!marginTop":"24rpx","!marginRight":"24rpx","!marginBottom":"24rpx","!marginLeft":"24rpx"}},"u-m-24":{"":{"!marginTop":"24rpx","!marginRight":"24rpx","!marginBottom":"24rpx","!marginLeft":"24rpx"}},"u-padding-24":{"":{"!paddingTop":"24rpx","!paddingRight":"24rpx","!paddingBottom":"24rpx","!paddingLeft":"24rpx"}},"u-p-24":{"":{"!paddingTop":"24rpx","!paddingRight":"24rpx","!paddingBottom":"24rpx","!paddingLeft":"24rpx"}},"u-m-l-24":{"":{"!marginLeft":"24rpx"}},"u-p-l-24":{"":{"!paddingLeft":"24rpx"}},"u-margin-left-24":{"":{"!marginLeft":"24rpx"}},"u-padding-left-24":{"":{"!paddingLeft":"24rpx"}},"u-m-t-24":{"":{"!marginTop":"24rpx"}},"u-p-t-24":{"":{"!paddingTop":"24rpx"}},"u-margin-top-24":{"":{"!marginTop":"24rpx"}},"u-padding-top-24":{"":{"!paddingTop":"24rpx"}},"u-m-r-24":{"":{"!marginRight":"24rpx"}},"u-p-r-24":{"":{"!paddingRight":"24rpx"}},"u-margin-right-24":{"":{"!marginRight":"24rpx"}},"u-padding-right-24":{"":{"!paddingRight":"24rpx"}},"u-m-b-24":{"":{"!marginBottom":"24rpx"}},"u-p-b-24":{"":{"!paddingBottom":"24rpx"}},"u-margin-bottom-24":{"":{"!marginBottom":"24rpx"}},"u-padding-bottom-24":{"":{"!paddingBottom":"24rpx"}},"u-margin-25":{"":{"!marginTop":"25rpx","!marginRight":"25rpx","!marginBottom":"25rpx","!marginLeft":"25rpx"}},"u-m-25":{"":{"!marginTop":"25rpx","!marginRight":"25rpx","!marginBottom":"25rpx","!marginLeft":"25rpx"}},"u-padding-25":{"":{"!paddingTop":"25rpx","!paddingRight":"25rpx","!paddingBottom":"25rpx","!paddingLeft":"25rpx"}},"u-p-25":{"":{"!paddingTop":"25rpx","!paddingRight":"25rpx","!paddingBottom":"25rpx","!paddingLeft":"25rpx"}},"u-m-l-25":{"":{"!marginLeft":"25rpx"}},"u-p-l-25":{"":{"!paddingLeft":"25rpx"}},"u-margin-left-25":{"":{"!marginLeft":"25rpx"}},"u-padding-left-25":{"":{"!paddingLeft":"25rpx"}},"u-m-t-25":{"":{"!marginTop":"25rpx"}},"u-p-t-25":{"":{"!paddingTop":"25rpx"}},"u-margin-top-25":{"":{"!marginTop":"25rpx"}},"u-padding-top-25":{"":{"!paddingTop":"25rpx"}},"u-m-r-25":{"":{"!marginRight":"25rpx"}},"u-p-r-25":{"":{"!paddingRight":"25rpx"}},"u-margin-right-25":{"":{"!marginRight":"25rpx"}},"u-padding-right-25":{"":{"!paddingRight":"25rpx"}},"u-m-b-25":{"":{"!marginBottom":"25rpx"}},"u-p-b-25":{"":{"!paddingBottom":"25rpx"}},"u-margin-bottom-25":{"":{"!marginBottom":"25rpx"}},"u-padding-bottom-25":{"":{"!paddingBottom":"25rpx"}},"u-margin-26":{"":{"!marginTop":"26rpx","!marginRight":"26rpx","!marginBottom":"26rpx","!marginLeft":"26rpx"}},"u-m-26":{"":{"!marginTop":"26rpx","!marginRight":"26rpx","!marginBottom":"26rpx","!marginLeft":"26rpx"}},"u-padding-26":{"":{"!paddingTop":"26rpx","!paddingRight":"26rpx","!paddingBottom":"26rpx","!paddingLeft":"26rpx"}},"u-p-26":{"":{"!paddingTop":"26rpx","!paddingRight":"26rpx","!paddingBottom":"26rpx","!paddingLeft":"26rpx"}},"u-m-l-26":{"":{"!marginLeft":"26rpx"}},"u-p-l-26":{"":{"!paddingLeft":"26rpx"}},"u-margin-left-26":{"":{"!marginLeft":"26rpx"}},"u-padding-left-26":{"":{"!paddingLeft":"26rpx"}},"u-m-t-26":{"":{"!marginTop":"26rpx"}},"u-p-t-26":{"":{"!paddingTop":"26rpx"}},"u-margin-top-26":{"":{"!marginTop":"26rpx"}},"u-padding-top-26":{"":{"!paddingTop":"26rpx"}},"u-m-r-26":{"":{"!marginRight":"26rpx"}},"u-p-r-26":{"":{"!paddingRight":"26rpx"}},"u-margin-right-26":{"":{"!marginRight":"26rpx"}},"u-padding-right-26":{"":{"!paddingRight":"26rpx"}},"u-m-b-26":{"":{"!marginBottom":"26rpx"}},"u-p-b-26":{"":{"!paddingBottom":"26rpx"}},"u-margin-bottom-26":{"":{"!marginBottom":"26rpx"}},"u-padding-bottom-26":{"":{"!paddingBottom":"26rpx"}},"u-margin-28":{"":{"!marginTop":"28rpx","!marginRight":"28rpx","!marginBottom":"28rpx","!marginLeft":"28rpx"}},"u-m-28":{"":{"!marginTop":"28rpx","!marginRight":"28rpx","!marginBottom":"28rpx","!marginLeft":"28rpx"}},"u-padding-28":{"":{"!paddingTop":"28rpx","!paddingRight":"28rpx","!paddingBottom":"28rpx","!paddingLeft":"28rpx"}},"u-p-28":{"":{"!paddingTop":"28rpx","!paddingRight":"28rpx","!paddingBottom":"28rpx","!paddingLeft":"28rpx"}},"u-m-l-28":{"":{"!marginLeft":"28rpx"}},"u-p-l-28":{"":{"!paddingLeft":"28rpx"}},"u-margin-left-28":{"":{"!marginLeft":"28rpx"}},"u-padding-left-28":{"":{"!paddingLeft":"28rpx"}},"u-m-t-28":{"":{"!marginTop":"28rpx"}},"u-p-t-28":{"":{"!paddingTop":"28rpx"}},"u-margin-top-28":{"":{"!marginTop":"28rpx"}},"u-padding-top-28":{"":{"!paddingTop":"28rpx"}},"u-m-r-28":{"":{"!marginRight":"28rpx"}},"u-p-r-28":{"":{"!paddingRight":"28rpx"}},"u-margin-right-28":{"":{"!marginRight":"28rpx"}},"u-padding-right-28":{"":{"!paddingRight":"28rpx"}},"u-m-b-28":{"":{"!marginBottom":"28rpx"}},"u-p-b-28":{"":{"!paddingBottom":"28rpx"}},"u-margin-bottom-28":{"":{"!marginBottom":"28rpx"}},"u-padding-bottom-28":{"":{"!paddingBottom":"28rpx"}},"u-margin-30":{"":{"!marginTop":"30rpx","!marginRight":"30rpx","!marginBottom":"30rpx","!marginLeft":"30rpx"}},"u-m-30":{"":{"!marginTop":"30rpx","!marginRight":"30rpx","!marginBottom":"30rpx","!marginLeft":"30rpx"}},"u-padding-30":{"":{"!paddingTop":"30rpx","!paddingRight":"30rpx","!paddingBottom":"30rpx","!paddingLeft":"30rpx"}},"u-p-30":{"":{"!paddingTop":"30rpx","!paddingRight":"30rpx","!paddingBottom":"30rpx","!paddingLeft":"30rpx"}},"u-m-l-30":{"":{"!marginLeft":"30rpx"}},"u-p-l-30":{"":{"!paddingLeft":"30rpx"}},"u-margin-left-30":{"":{"!marginLeft":"30rpx"}},"u-padding-left-30":{"":{"!paddingLeft":"30rpx"}},"u-m-t-30":{"":{"!marginTop":"30rpx"}},"u-p-t-30":{"":{"!paddingTop":"30rpx"}},"u-margin-top-30":{"":{"!marginTop":"30rpx"}},"u-padding-top-30":{"":{"!paddingTop":"30rpx"}},"u-m-r-30":{"":{"!marginRight":"30rpx"}},"u-p-r-30":{"":{"!paddingRight":"30rpx"}},"u-margin-right-30":{"":{"!marginRight":"30rpx"}},"u-padding-right-30":{"":{"!paddingRight":"30rpx"}},"u-m-b-30":{"":{"!marginBottom":"30rpx"}},"u-p-b-30":{"":{"!paddingBottom":"30rpx"}},"u-margin-bottom-30":{"":{"!marginBottom":"30rpx"}},"u-padding-bottom-30":{"":{"!paddingBottom":"30rpx"}},"u-margin-32":{"":{"!marginTop":"32rpx","!marginRight":"32rpx","!marginBottom":"32rpx","!marginLeft":"32rpx"}},"u-m-32":{"":{"!marginTop":"32rpx","!marginRight":"32rpx","!marginBottom":"32rpx","!marginLeft":"32rpx"}},"u-padding-32":{"":{"!paddingTop":"32rpx","!paddingRight":"32rpx","!paddingBottom":"32rpx","!paddingLeft":"32rpx"}},"u-p-32":{"":{"!paddingTop":"32rpx","!paddingRight":"32rpx","!paddingBottom":"32rpx","!paddingLeft":"32rpx"}},"u-m-l-32":{"":{"!marginLeft":"32rpx"}},"u-p-l-32":{"":{"!paddingLeft":"32rpx"}},"u-margin-left-32":{"":{"!marginLeft":"32rpx"}},"u-padding-left-32":{"":{"!paddingLeft":"32rpx"}},"u-m-t-32":{"":{"!marginTop":"32rpx"}},"u-p-t-32":{"":{"!paddingTop":"32rpx"}},"u-margin-top-32":{"":{"!marginTop":"32rpx"}},"u-padding-top-32":{"":{"!paddingTop":"32rpx"}},"u-m-r-32":{"":{"!marginRight":"32rpx"}},"u-p-r-32":{"":{"!paddingRight":"32rpx"}},"u-margin-right-32":{"":{"!marginRight":"32rpx"}},"u-padding-right-32":{"":{"!paddingRight":"32rpx"}},"u-m-b-32":{"":{"!marginBottom":"32rpx"}},"u-p-b-32":{"":{"!paddingBottom":"32rpx"}},"u-margin-bottom-32":{"":{"!marginBottom":"32rpx"}},"u-padding-bottom-32":{"":{"!paddingBottom":"32rpx"}},"u-margin-34":{"":{"!marginTop":"34rpx","!marginRight":"34rpx","!marginBottom":"34rpx","!marginLeft":"34rpx"}},"u-m-34":{"":{"!marginTop":"34rpx","!marginRight":"34rpx","!marginBottom":"34rpx","!marginLeft":"34rpx"}},"u-padding-34":{"":{"!paddingTop":"34rpx","!paddingRight":"34rpx","!paddingBottom":"34rpx","!paddingLeft":"34rpx"}},"u-p-34":{"":{"!paddingTop":"34rpx","!paddingRight":"34rpx","!paddingBottom":"34rpx","!paddingLeft":"34rpx"}},"u-m-l-34":{"":{"!marginLeft":"34rpx"}},"u-p-l-34":{"":{"!paddingLeft":"34rpx"}},"u-margin-left-34":{"":{"!marginLeft":"34rpx"}},"u-padding-left-34":{"":{"!paddingLeft":"34rpx"}},"u-m-t-34":{"":{"!marginTop":"34rpx"}},"u-p-t-34":{"":{"!paddingTop":"34rpx"}},"u-margin-top-34":{"":{"!marginTop":"34rpx"}},"u-padding-top-34":{"":{"!paddingTop":"34rpx"}},"u-m-r-34":{"":{"!marginRight":"34rpx"}},"u-p-r-34":{"":{"!paddingRight":"34rpx"}},"u-margin-right-34":{"":{"!marginRight":"34rpx"}},"u-padding-right-34":{"":{"!paddingRight":"34rpx"}},"u-m-b-34":{"":{"!marginBottom":"34rpx"}},"u-p-b-34":{"":{"!paddingBottom":"34rpx"}},"u-margin-bottom-34":{"":{"!marginBottom":"34rpx"}},"u-padding-bottom-34":{"":{"!paddingBottom":"34rpx"}},"u-margin-35":{"":{"!marginTop":"35rpx","!marginRight":"35rpx","!marginBottom":"35rpx","!marginLeft":"35rpx"}},"u-m-35":{"":{"!marginTop":"35rpx","!marginRight":"35rpx","!marginBottom":"35rpx","!marginLeft":"35rpx"}},"u-padding-35":{"":{"!paddingTop":"35rpx","!paddingRight":"35rpx","!paddingBottom":"35rpx","!paddingLeft":"35rpx"}},"u-p-35":{"":{"!paddingTop":"35rpx","!paddingRight":"35rpx","!paddingBottom":"35rpx","!paddingLeft":"35rpx"}},"u-m-l-35":{"":{"!marginLeft":"35rpx"}},"u-p-l-35":{"":{"!paddingLeft":"35rpx"}},"u-margin-left-35":{"":{"!marginLeft":"35rpx"}},"u-padding-left-35":{"":{"!paddingLeft":"35rpx"}},"u-m-t-35":{"":{"!marginTop":"35rpx"}},"u-p-t-35":{"":{"!paddingTop":"35rpx"}},"u-margin-top-35":{"":{"!marginTop":"35rpx"}},"u-padding-top-35":{"":{"!paddingTop":"35rpx"}},"u-m-r-35":{"":{"!marginRight":"35rpx"}},"u-p-r-35":{"":{"!paddingRight":"35rpx"}},"u-margin-right-35":{"":{"!marginRight":"35rpx"}},"u-padding-right-35":{"":{"!paddingRight":"35rpx"}},"u-m-b-35":{"":{"!marginBottom":"35rpx"}},"u-p-b-35":{"":{"!paddingBottom":"35rpx"}},"u-margin-bottom-35":{"":{"!marginBottom":"35rpx"}},"u-padding-bottom-35":{"":{"!paddingBottom":"35rpx"}},"u-margin-36":{"":{"!marginTop":"36rpx","!marginRight":"36rpx","!marginBottom":"36rpx","!marginLeft":"36rpx"}},"u-m-36":{"":{"!marginTop":"36rpx","!marginRight":"36rpx","!marginBottom":"36rpx","!marginLeft":"36rpx"}},"u-padding-36":{"":{"!paddingTop":"36rpx","!paddingRight":"36rpx","!paddingBottom":"36rpx","!paddingLeft":"36rpx"}},"u-p-36":{"":{"!paddingTop":"36rpx","!paddingRight":"36rpx","!paddingBottom":"36rpx","!paddingLeft":"36rpx"}},"u-m-l-36":{"":{"!marginLeft":"36rpx"}},"u-p-l-36":{"":{"!paddingLeft":"36rpx"}},"u-margin-left-36":{"":{"!marginLeft":"36rpx"}},"u-padding-left-36":{"":{"!paddingLeft":"36rpx"}},"u-m-t-36":{"":{"!marginTop":"36rpx"}},"u-p-t-36":{"":{"!paddingTop":"36rpx"}},"u-margin-top-36":{"":{"!marginTop":"36rpx"}},"u-padding-top-36":{"":{"!paddingTop":"36rpx"}},"u-m-r-36":{"":{"!marginRight":"36rpx"}},"u-p-r-36":{"":{"!paddingRight":"36rpx"}},"u-margin-right-36":{"":{"!marginRight":"36rpx"}},"u-padding-right-36":{"":{"!paddingRight":"36rpx"}},"u-m-b-36":{"":{"!marginBottom":"36rpx"}},"u-p-b-36":{"":{"!paddingBottom":"36rpx"}},"u-margin-bottom-36":{"":{"!marginBottom":"36rpx"}},"u-padding-bottom-36":{"":{"!paddingBottom":"36rpx"}},"u-margin-38":{"":{"!marginTop":"38rpx","!marginRight":"38rpx","!marginBottom":"38rpx","!marginLeft":"38rpx"}},"u-m-38":{"":{"!marginTop":"38rpx","!marginRight":"38rpx","!marginBottom":"38rpx","!marginLeft":"38rpx"}},"u-padding-38":{"":{"!paddingTop":"38rpx","!paddingRight":"38rpx","!paddingBottom":"38rpx","!paddingLeft":"38rpx"}},"u-p-38":{"":{"!paddingTop":"38rpx","!paddingRight":"38rpx","!paddingBottom":"38rpx","!paddingLeft":"38rpx"}},"u-m-l-38":{"":{"!marginLeft":"38rpx"}},"u-p-l-38":{"":{"!paddingLeft":"38rpx"}},"u-margin-left-38":{"":{"!marginLeft":"38rpx"}},"u-padding-left-38":{"":{"!paddingLeft":"38rpx"}},"u-m-t-38":{"":{"!marginTop":"38rpx"}},"u-p-t-38":{"":{"!paddingTop":"38rpx"}},"u-margin-top-38":{"":{"!marginTop":"38rpx"}},"u-padding-top-38":{"":{"!paddingTop":"38rpx"}},"u-m-r-38":{"":{"!marginRight":"38rpx"}},"u-p-r-38":{"":{"!paddingRight":"38rpx"}},"u-margin-right-38":{"":{"!marginRight":"38rpx"}},"u-padding-right-38":{"":{"!paddingRight":"38rpx"}},"u-m-b-38":{"":{"!marginBottom":"38rpx"}},"u-p-b-38":{"":{"!paddingBottom":"38rpx"}},"u-margin-bottom-38":{"":{"!marginBottom":"38rpx"}},"u-padding-bottom-38":{"":{"!paddingBottom":"38rpx"}},"u-margin-40":{"":{"!marginTop":"40rpx","!marginRight":"40rpx","!marginBottom":"40rpx","!marginLeft":"40rpx"}},"u-m-40":{"":{"!marginTop":"40rpx","!marginRight":"40rpx","!marginBottom":"40rpx","!marginLeft":"40rpx"}},"u-padding-40":{"":{"!paddingTop":"40rpx","!paddingRight":"40rpx","!paddingBottom":"40rpx","!paddingLeft":"40rpx"}},"u-p-40":{"":{"!paddingTop":"40rpx","!paddingRight":"40rpx","!paddingBottom":"40rpx","!paddingLeft":"40rpx"}},"u-m-l-40":{"":{"!marginLeft":"40rpx"}},"u-p-l-40":{"":{"!paddingLeft":"40rpx"}},"u-margin-left-40":{"":{"!marginLeft":"40rpx"}},"u-padding-left-40":{"":{"!paddingLeft":"40rpx"}},"u-m-t-40":{"":{"!marginTop":"40rpx"}},"u-p-t-40":{"":{"!paddingTop":"40rpx"}},"u-margin-top-40":{"":{"!marginTop":"40rpx"}},"u-padding-top-40":{"":{"!paddingTop":"40rpx"}},"u-m-r-40":{"":{"!marginRight":"40rpx"}},"u-p-r-40":{"":{"!paddingRight":"40rpx"}},"u-margin-right-40":{"":{"!marginRight":"40rpx"}},"u-padding-right-40":{"":{"!paddingRight":"40rpx"}},"u-m-b-40":{"":{"!marginBottom":"40rpx"}},"u-p-b-40":{"":{"!paddingBottom":"40rpx"}},"u-margin-bottom-40":{"":{"!marginBottom":"40rpx"}},"u-padding-bottom-40":{"":{"!paddingBottom":"40rpx"}},"u-margin-42":{"":{"!marginTop":"42rpx","!marginRight":"42rpx","!marginBottom":"42rpx","!marginLeft":"42rpx"}},"u-m-42":{"":{"!marginTop":"42rpx","!marginRight":"42rpx","!marginBottom":"42rpx","!marginLeft":"42rpx"}},"u-padding-42":{"":{"!paddingTop":"42rpx","!paddingRight":"42rpx","!paddingBottom":"42rpx","!paddingLeft":"42rpx"}},"u-p-42":{"":{"!paddingTop":"42rpx","!paddingRight":"42rpx","!paddingBottom":"42rpx","!paddingLeft":"42rpx"}},"u-m-l-42":{"":{"!marginLeft":"42rpx"}},"u-p-l-42":{"":{"!paddingLeft":"42rpx"}},"u-margin-left-42":{"":{"!marginLeft":"42rpx"}},"u-padding-left-42":{"":{"!paddingLeft":"42rpx"}},"u-m-t-42":{"":{"!marginTop":"42rpx"}},"u-p-t-42":{"":{"!paddingTop":"42rpx"}},"u-margin-top-42":{"":{"!marginTop":"42rpx"}},"u-padding-top-42":{"":{"!paddingTop":"42rpx"}},"u-m-r-42":{"":{"!marginRight":"42rpx"}},"u-p-r-42":{"":{"!paddingRight":"42rpx"}},"u-margin-right-42":{"":{"!marginRight":"42rpx"}},"u-padding-right-42":{"":{"!paddingRight":"42rpx"}},"u-m-b-42":{"":{"!marginBottom":"42rpx"}},"u-p-b-42":{"":{"!paddingBottom":"42rpx"}},"u-margin-bottom-42":{"":{"!marginBottom":"42rpx"}},"u-padding-bottom-42":{"":{"!paddingBottom":"42rpx"}},"u-margin-44":{"":{"!marginTop":"44rpx","!marginRight":"44rpx","!marginBottom":"44rpx","!marginLeft":"44rpx"}},"u-m-44":{"":{"!marginTop":"44rpx","!marginRight":"44rpx","!marginBottom":"44rpx","!marginLeft":"44rpx"}},"u-padding-44":{"":{"!paddingTop":"44rpx","!paddingRight":"44rpx","!paddingBottom":"44rpx","!paddingLeft":"44rpx"}},"u-p-44":{"":{"!paddingTop":"44rpx","!paddingRight":"44rpx","!paddingBottom":"44rpx","!paddingLeft":"44rpx"}},"u-m-l-44":{"":{"!marginLeft":"44rpx"}},"u-p-l-44":{"":{"!paddingLeft":"44rpx"}},"u-margin-left-44":{"":{"!marginLeft":"44rpx"}},"u-padding-left-44":{"":{"!paddingLeft":"44rpx"}},"u-m-t-44":{"":{"!marginTop":"44rpx"}},"u-p-t-44":{"":{"!paddingTop":"44rpx"}},"u-margin-top-44":{"":{"!marginTop":"44rpx"}},"u-padding-top-44":{"":{"!paddingTop":"44rpx"}},"u-m-r-44":{"":{"!marginRight":"44rpx"}},"u-p-r-44":{"":{"!paddingRight":"44rpx"}},"u-margin-right-44":{"":{"!marginRight":"44rpx"}},"u-padding-right-44":{"":{"!paddingRight":"44rpx"}},"u-m-b-44":{"":{"!marginBottom":"44rpx"}},"u-p-b-44":{"":{"!paddingBottom":"44rpx"}},"u-margin-bottom-44":{"":{"!marginBottom":"44rpx"}},"u-padding-bottom-44":{"":{"!paddingBottom":"44rpx"}},"u-margin-45":{"":{"!marginTop":"45rpx","!marginRight":"45rpx","!marginBottom":"45rpx","!marginLeft":"45rpx"}},"u-m-45":{"":{"!marginTop":"45rpx","!marginRight":"45rpx","!marginBottom":"45rpx","!marginLeft":"45rpx"}},"u-padding-45":{"":{"!paddingTop":"45rpx","!paddingRight":"45rpx","!paddingBottom":"45rpx","!paddingLeft":"45rpx"}},"u-p-45":{"":{"!paddingTop":"45rpx","!paddingRight":"45rpx","!paddingBottom":"45rpx","!paddingLeft":"45rpx"}},"u-m-l-45":{"":{"!marginLeft":"45rpx"}},"u-p-l-45":{"":{"!paddingLeft":"45rpx"}},"u-margin-left-45":{"":{"!marginLeft":"45rpx"}},"u-padding-left-45":{"":{"!paddingLeft":"45rpx"}},"u-m-t-45":{"":{"!marginTop":"45rpx"}},"u-p-t-45":{"":{"!paddingTop":"45rpx"}},"u-margin-top-45":{"":{"!marginTop":"45rpx"}},"u-padding-top-45":{"":{"!paddingTop":"45rpx"}},"u-m-r-45":{"":{"!marginRight":"45rpx"}},"u-p-r-45":{"":{"!paddingRight":"45rpx"}},"u-margin-right-45":{"":{"!marginRight":"45rpx"}},"u-padding-right-45":{"":{"!paddingRight":"45rpx"}},"u-m-b-45":{"":{"!marginBottom":"45rpx"}},"u-p-b-45":{"":{"!paddingBottom":"45rpx"}},"u-margin-bottom-45":{"":{"!marginBottom":"45rpx"}},"u-padding-bottom-45":{"":{"!paddingBottom":"45rpx"}},"u-margin-46":{"":{"!marginTop":"46rpx","!marginRight":"46rpx","!marginBottom":"46rpx","!marginLeft":"46rpx"}},"u-m-46":{"":{"!marginTop":"46rpx","!marginRight":"46rpx","!marginBottom":"46rpx","!marginLeft":"46rpx"}},"u-padding-46":{"":{"!paddingTop":"46rpx","!paddingRight":"46rpx","!paddingBottom":"46rpx","!paddingLeft":"46rpx"}},"u-p-46":{"":{"!paddingTop":"46rpx","!paddingRight":"46rpx","!paddingBottom":"46rpx","!paddingLeft":"46rpx"}},"u-m-l-46":{"":{"!marginLeft":"46rpx"}},"u-p-l-46":{"":{"!paddingLeft":"46rpx"}},"u-margin-left-46":{"":{"!marginLeft":"46rpx"}},"u-padding-left-46":{"":{"!paddingLeft":"46rpx"}},"u-m-t-46":{"":{"!marginTop":"46rpx"}},"u-p-t-46":{"":{"!paddingTop":"46rpx"}},"u-margin-top-46":{"":{"!marginTop":"46rpx"}},"u-padding-top-46":{"":{"!paddingTop":"46rpx"}},"u-m-r-46":{"":{"!marginRight":"46rpx"}},"u-p-r-46":{"":{"!paddingRight":"46rpx"}},"u-margin-right-46":{"":{"!marginRight":"46rpx"}},"u-padding-right-46":{"":{"!paddingRight":"46rpx"}},"u-m-b-46":{"":{"!marginBottom":"46rpx"}},"u-p-b-46":{"":{"!paddingBottom":"46rpx"}},"u-margin-bottom-46":{"":{"!marginBottom":"46rpx"}},"u-padding-bottom-46":{"":{"!paddingBottom":"46rpx"}},"u-margin-48":{"":{"!marginTop":"48rpx","!marginRight":"48rpx","!marginBottom":"48rpx","!marginLeft":"48rpx"}},"u-m-48":{"":{"!marginTop":"48rpx","!marginRight":"48rpx","!marginBottom":"48rpx","!marginLeft":"48rpx"}},"u-padding-48":{"":{"!paddingTop":"48rpx","!paddingRight":"48rpx","!paddingBottom":"48rpx","!paddingLeft":"48rpx"}},"u-p-48":{"":{"!paddingTop":"48rpx","!paddingRight":"48rpx","!paddingBottom":"48rpx","!paddingLeft":"48rpx"}},"u-m-l-48":{"":{"!marginLeft":"48rpx"}},"u-p-l-48":{"":{"!paddingLeft":"48rpx"}},"u-margin-left-48":{"":{"!marginLeft":"48rpx"}},"u-padding-left-48":{"":{"!paddingLeft":"48rpx"}},"u-m-t-48":{"":{"!marginTop":"48rpx"}},"u-p-t-48":{"":{"!paddingTop":"48rpx"}},"u-margin-top-48":{"":{"!marginTop":"48rpx"}},"u-padding-top-48":{"":{"!paddingTop":"48rpx"}},"u-m-r-48":{"":{"!marginRight":"48rpx"}},"u-p-r-48":{"":{"!paddingRight":"48rpx"}},"u-margin-right-48":{"":{"!marginRight":"48rpx"}},"u-padding-right-48":{"":{"!paddingRight":"48rpx"}},"u-m-b-48":{"":{"!marginBottom":"48rpx"}},"u-p-b-48":{"":{"!paddingBottom":"48rpx"}},"u-margin-bottom-48":{"":{"!marginBottom":"48rpx"}},"u-padding-bottom-48":{"":{"!paddingBottom":"48rpx"}},"u-margin-50":{"":{"!marginTop":"50rpx","!marginRight":"50rpx","!marginBottom":"50rpx","!marginLeft":"50rpx"}},"u-m-50":{"":{"!marginTop":"50rpx","!marginRight":"50rpx","!marginBottom":"50rpx","!marginLeft":"50rpx"}},"u-padding-50":{"":{"!paddingTop":"50rpx","!paddingRight":"50rpx","!paddingBottom":"50rpx","!paddingLeft":"50rpx"}},"u-p-50":{"":{"!paddingTop":"50rpx","!paddingRight":"50rpx","!paddingBottom":"50rpx","!paddingLeft":"50rpx"}},"u-m-l-50":{"":{"!marginLeft":"50rpx"}},"u-p-l-50":{"":{"!paddingLeft":"50rpx"}},"u-margin-left-50":{"":{"!marginLeft":"50rpx"}},"u-padding-left-50":{"":{"!paddingLeft":"50rpx"}},"u-m-t-50":{"":{"!marginTop":"50rpx"}},"u-p-t-50":{"":{"!paddingTop":"50rpx"}},"u-margin-top-50":{"":{"!marginTop":"50rpx"}},"u-padding-top-50":{"":{"!paddingTop":"50rpx"}},"u-m-r-50":{"":{"!marginRight":"50rpx"}},"u-p-r-50":{"":{"!paddingRight":"50rpx"}},"u-margin-right-50":{"":{"!marginRight":"50rpx"}},"u-padding-right-50":{"":{"!paddingRight":"50rpx"}},"u-m-b-50":{"":{"!marginBottom":"50rpx"}},"u-p-b-50":{"":{"!paddingBottom":"50rpx"}},"u-margin-bottom-50":{"":{"!marginBottom":"50rpx"}},"u-padding-bottom-50":{"":{"!paddingBottom":"50rpx"}},"u-margin-52":{"":{"!marginTop":"52rpx","!marginRight":"52rpx","!marginBottom":"52rpx","!marginLeft":"52rpx"}},"u-m-52":{"":{"!marginTop":"52rpx","!marginRight":"52rpx","!marginBottom":"52rpx","!marginLeft":"52rpx"}},"u-padding-52":{"":{"!paddingTop":"52rpx","!paddingRight":"52rpx","!paddingBottom":"52rpx","!paddingLeft":"52rpx"}},"u-p-52":{"":{"!paddingTop":"52rpx","!paddingRight":"52rpx","!paddingBottom":"52rpx","!paddingLeft":"52rpx"}},"u-m-l-52":{"":{"!marginLeft":"52rpx"}},"u-p-l-52":{"":{"!paddingLeft":"52rpx"}},"u-margin-left-52":{"":{"!marginLeft":"52rpx"}},"u-padding-left-52":{"":{"!paddingLeft":"52rpx"}},"u-m-t-52":{"":{"!marginTop":"52rpx"}},"u-p-t-52":{"":{"!paddingTop":"52rpx"}},"u-margin-top-52":{"":{"!marginTop":"52rpx"}},"u-padding-top-52":{"":{"!paddingTop":"52rpx"}},"u-m-r-52":{"":{"!marginRight":"52rpx"}},"u-p-r-52":{"":{"!paddingRight":"52rpx"}},"u-margin-right-52":{"":{"!marginRight":"52rpx"}},"u-padding-right-52":{"":{"!paddingRight":"52rpx"}},"u-m-b-52":{"":{"!marginBottom":"52rpx"}},"u-p-b-52":{"":{"!paddingBottom":"52rpx"}},"u-margin-bottom-52":{"":{"!marginBottom":"52rpx"}},"u-padding-bottom-52":{"":{"!paddingBottom":"52rpx"}},"u-margin-54":{"":{"!marginTop":"54rpx","!marginRight":"54rpx","!marginBottom":"54rpx","!marginLeft":"54rpx"}},"u-m-54":{"":{"!marginTop":"54rpx","!marginRight":"54rpx","!marginBottom":"54rpx","!marginLeft":"54rpx"}},"u-padding-54":{"":{"!paddingTop":"54rpx","!paddingRight":"54rpx","!paddingBottom":"54rpx","!paddingLeft":"54rpx"}},"u-p-54":{"":{"!paddingTop":"54rpx","!paddingRight":"54rpx","!paddingBottom":"54rpx","!paddingLeft":"54rpx"}},"u-m-l-54":{"":{"!marginLeft":"54rpx"}},"u-p-l-54":{"":{"!paddingLeft":"54rpx"}},"u-margin-left-54":{"":{"!marginLeft":"54rpx"}},"u-padding-left-54":{"":{"!paddingLeft":"54rpx"}},"u-m-t-54":{"":{"!marginTop":"54rpx"}},"u-p-t-54":{"":{"!paddingTop":"54rpx"}},"u-margin-top-54":{"":{"!marginTop":"54rpx"}},"u-padding-top-54":{"":{"!paddingTop":"54rpx"}},"u-m-r-54":{"":{"!marginRight":"54rpx"}},"u-p-r-54":{"":{"!paddingRight":"54rpx"}},"u-margin-right-54":{"":{"!marginRight":"54rpx"}},"u-padding-right-54":{"":{"!paddingRight":"54rpx"}},"u-m-b-54":{"":{"!marginBottom":"54rpx"}},"u-p-b-54":{"":{"!paddingBottom":"54rpx"}},"u-margin-bottom-54":{"":{"!marginBottom":"54rpx"}},"u-padding-bottom-54":{"":{"!paddingBottom":"54rpx"}},"u-margin-55":{"":{"!marginTop":"55rpx","!marginRight":"55rpx","!marginBottom":"55rpx","!marginLeft":"55rpx"}},"u-m-55":{"":{"!marginTop":"55rpx","!marginRight":"55rpx","!marginBottom":"55rpx","!marginLeft":"55rpx"}},"u-padding-55":{"":{"!paddingTop":"55rpx","!paddingRight":"55rpx","!paddingBottom":"55rpx","!paddingLeft":"55rpx"}},"u-p-55":{"":{"!paddingTop":"55rpx","!paddingRight":"55rpx","!paddingBottom":"55rpx","!paddingLeft":"55rpx"}},"u-m-l-55":{"":{"!marginLeft":"55rpx"}},"u-p-l-55":{"":{"!paddingLeft":"55rpx"}},"u-margin-left-55":{"":{"!marginLeft":"55rpx"}},"u-padding-left-55":{"":{"!paddingLeft":"55rpx"}},"u-m-t-55":{"":{"!marginTop":"55rpx"}},"u-p-t-55":{"":{"!paddingTop":"55rpx"}},"u-margin-top-55":{"":{"!marginTop":"55rpx"}},"u-padding-top-55":{"":{"!paddingTop":"55rpx"}},"u-m-r-55":{"":{"!marginRight":"55rpx"}},"u-p-r-55":{"":{"!paddingRight":"55rpx"}},"u-margin-right-55":{"":{"!marginRight":"55rpx"}},"u-padding-right-55":{"":{"!paddingRight":"55rpx"}},"u-m-b-55":{"":{"!marginBottom":"55rpx"}},"u-p-b-55":{"":{"!paddingBottom":"55rpx"}},"u-margin-bottom-55":{"":{"!marginBottom":"55rpx"}},"u-padding-bottom-55":{"":{"!paddingBottom":"55rpx"}},"u-margin-56":{"":{"!marginTop":"56rpx","!marginRight":"56rpx","!marginBottom":"56rpx","!marginLeft":"56rpx"}},"u-m-56":{"":{"!marginTop":"56rpx","!marginRight":"56rpx","!marginBottom":"56rpx","!marginLeft":"56rpx"}},"u-padding-56":{"":{"!paddingTop":"56rpx","!paddingRight":"56rpx","!paddingBottom":"56rpx","!paddingLeft":"56rpx"}},"u-p-56":{"":{"!paddingTop":"56rpx","!paddingRight":"56rpx","!paddingBottom":"56rpx","!paddingLeft":"56rpx"}},"u-m-l-56":{"":{"!marginLeft":"56rpx"}},"u-p-l-56":{"":{"!paddingLeft":"56rpx"}},"u-margin-left-56":{"":{"!marginLeft":"56rpx"}},"u-padding-left-56":{"":{"!paddingLeft":"56rpx"}},"u-m-t-56":{"":{"!marginTop":"56rpx"}},"u-p-t-56":{"":{"!paddingTop":"56rpx"}},"u-margin-top-56":{"":{"!marginTop":"56rpx"}},"u-padding-top-56":{"":{"!paddingTop":"56rpx"}},"u-m-r-56":{"":{"!marginRight":"56rpx"}},"u-p-r-56":{"":{"!paddingRight":"56rpx"}},"u-margin-right-56":{"":{"!marginRight":"56rpx"}},"u-padding-right-56":{"":{"!paddingRight":"56rpx"}},"u-m-b-56":{"":{"!marginBottom":"56rpx"}},"u-p-b-56":{"":{"!paddingBottom":"56rpx"}},"u-margin-bottom-56":{"":{"!marginBottom":"56rpx"}},"u-padding-bottom-56":{"":{"!paddingBottom":"56rpx"}},"u-margin-58":{"":{"!marginTop":"58rpx","!marginRight":"58rpx","!marginBottom":"58rpx","!marginLeft":"58rpx"}},"u-m-58":{"":{"!marginTop":"58rpx","!marginRight":"58rpx","!marginBottom":"58rpx","!marginLeft":"58rpx"}},"u-padding-58":{"":{"!paddingTop":"58rpx","!paddingRight":"58rpx","!paddingBottom":"58rpx","!paddingLeft":"58rpx"}},"u-p-58":{"":{"!paddingTop":"58rpx","!paddingRight":"58rpx","!paddingBottom":"58rpx","!paddingLeft":"58rpx"}},"u-m-l-58":{"":{"!marginLeft":"58rpx"}},"u-p-l-58":{"":{"!paddingLeft":"58rpx"}},"u-margin-left-58":{"":{"!marginLeft":"58rpx"}},"u-padding-left-58":{"":{"!paddingLeft":"58rpx"}},"u-m-t-58":{"":{"!marginTop":"58rpx"}},"u-p-t-58":{"":{"!paddingTop":"58rpx"}},"u-margin-top-58":{"":{"!marginTop":"58rpx"}},"u-padding-top-58":{"":{"!paddingTop":"58rpx"}},"u-m-r-58":{"":{"!marginRight":"58rpx"}},"u-p-r-58":{"":{"!paddingRight":"58rpx"}},"u-margin-right-58":{"":{"!marginRight":"58rpx"}},"u-padding-right-58":{"":{"!paddingRight":"58rpx"}},"u-m-b-58":{"":{"!marginBottom":"58rpx"}},"u-p-b-58":{"":{"!paddingBottom":"58rpx"}},"u-margin-bottom-58":{"":{"!marginBottom":"58rpx"}},"u-padding-bottom-58":{"":{"!paddingBottom":"58rpx"}},"u-margin-60":{"":{"!marginTop":"60rpx","!marginRight":"60rpx","!marginBottom":"60rpx","!marginLeft":"60rpx"}},"u-m-60":{"":{"!marginTop":"60rpx","!marginRight":"60rpx","!marginBottom":"60rpx","!marginLeft":"60rpx"}},"u-padding-60":{"":{"!paddingTop":"60rpx","!paddingRight":"60rpx","!paddingBottom":"60rpx","!paddingLeft":"60rpx"}},"u-p-60":{"":{"!paddingTop":"60rpx","!paddingRight":"60rpx","!paddingBottom":"60rpx","!paddingLeft":"60rpx"}},"u-m-l-60":{"":{"!marginLeft":"60rpx"}},"u-p-l-60":{"":{"!paddingLeft":"60rpx"}},"u-margin-left-60":{"":{"!marginLeft":"60rpx"}},"u-padding-left-60":{"":{"!paddingLeft":"60rpx"}},"u-m-t-60":{"":{"!marginTop":"60rpx"}},"u-p-t-60":{"":{"!paddingTop":"60rpx"}},"u-margin-top-60":{"":{"!marginTop":"60rpx"}},"u-padding-top-60":{"":{"!paddingTop":"60rpx"}},"u-m-r-60":{"":{"!marginRight":"60rpx"}},"u-p-r-60":{"":{"!paddingRight":"60rpx"}},"u-margin-right-60":{"":{"!marginRight":"60rpx"}},"u-padding-right-60":{"":{"!paddingRight":"60rpx"}},"u-m-b-60":{"":{"!marginBottom":"60rpx"}},"u-p-b-60":{"":{"!paddingBottom":"60rpx"}},"u-margin-bottom-60":{"":{"!marginBottom":"60rpx"}},"u-padding-bottom-60":{"":{"!paddingBottom":"60rpx"}},"u-margin-62":{"":{"!marginTop":"62rpx","!marginRight":"62rpx","!marginBottom":"62rpx","!marginLeft":"62rpx"}},"u-m-62":{"":{"!marginTop":"62rpx","!marginRight":"62rpx","!marginBottom":"62rpx","!marginLeft":"62rpx"}},"u-padding-62":{"":{"!paddingTop":"62rpx","!paddingRight":"62rpx","!paddingBottom":"62rpx","!paddingLeft":"62rpx"}},"u-p-62":{"":{"!paddingTop":"62rpx","!paddingRight":"62rpx","!paddingBottom":"62rpx","!paddingLeft":"62rpx"}},"u-m-l-62":{"":{"!marginLeft":"62rpx"}},"u-p-l-62":{"":{"!paddingLeft":"62rpx"}},"u-margin-left-62":{"":{"!marginLeft":"62rpx"}},"u-padding-left-62":{"":{"!paddingLeft":"62rpx"}},"u-m-t-62":{"":{"!marginTop":"62rpx"}},"u-p-t-62":{"":{"!paddingTop":"62rpx"}},"u-margin-top-62":{"":{"!marginTop":"62rpx"}},"u-padding-top-62":{"":{"!paddingTop":"62rpx"}},"u-m-r-62":{"":{"!marginRight":"62rpx"}},"u-p-r-62":{"":{"!paddingRight":"62rpx"}},"u-margin-right-62":{"":{"!marginRight":"62rpx"}},"u-padding-right-62":{"":{"!paddingRight":"62rpx"}},"u-m-b-62":{"":{"!marginBottom":"62rpx"}},"u-p-b-62":{"":{"!paddingBottom":"62rpx"}},"u-margin-bottom-62":{"":{"!marginBottom":"62rpx"}},"u-padding-bottom-62":{"":{"!paddingBottom":"62rpx"}},"u-margin-64":{"":{"!marginTop":"64rpx","!marginRight":"64rpx","!marginBottom":"64rpx","!marginLeft":"64rpx"}},"u-m-64":{"":{"!marginTop":"64rpx","!marginRight":"64rpx","!marginBottom":"64rpx","!marginLeft":"64rpx"}},"u-padding-64":{"":{"!paddingTop":"64rpx","!paddingRight":"64rpx","!paddingBottom":"64rpx","!paddingLeft":"64rpx"}},"u-p-64":{"":{"!paddingTop":"64rpx","!paddingRight":"64rpx","!paddingBottom":"64rpx","!paddingLeft":"64rpx"}},"u-m-l-64":{"":{"!marginLeft":"64rpx"}},"u-p-l-64":{"":{"!paddingLeft":"64rpx"}},"u-margin-left-64":{"":{"!marginLeft":"64rpx"}},"u-padding-left-64":{"":{"!paddingLeft":"64rpx"}},"u-m-t-64":{"":{"!marginTop":"64rpx"}},"u-p-t-64":{"":{"!paddingTop":"64rpx"}},"u-margin-top-64":{"":{"!marginTop":"64rpx"}},"u-padding-top-64":{"":{"!paddingTop":"64rpx"}},"u-m-r-64":{"":{"!marginRight":"64rpx"}},"u-p-r-64":{"":{"!paddingRight":"64rpx"}},"u-margin-right-64":{"":{"!marginRight":"64rpx"}},"u-padding-right-64":{"":{"!paddingRight":"64rpx"}},"u-m-b-64":{"":{"!marginBottom":"64rpx"}},"u-p-b-64":{"":{"!paddingBottom":"64rpx"}},"u-margin-bottom-64":{"":{"!marginBottom":"64rpx"}},"u-padding-bottom-64":{"":{"!paddingBottom":"64rpx"}},"u-margin-65":{"":{"!marginTop":"65rpx","!marginRight":"65rpx","!marginBottom":"65rpx","!marginLeft":"65rpx"}},"u-m-65":{"":{"!marginTop":"65rpx","!marginRight":"65rpx","!marginBottom":"65rpx","!marginLeft":"65rpx"}},"u-padding-65":{"":{"!paddingTop":"65rpx","!paddingRight":"65rpx","!paddingBottom":"65rpx","!paddingLeft":"65rpx"}},"u-p-65":{"":{"!paddingTop":"65rpx","!paddingRight":"65rpx","!paddingBottom":"65rpx","!paddingLeft":"65rpx"}},"u-m-l-65":{"":{"!marginLeft":"65rpx"}},"u-p-l-65":{"":{"!paddingLeft":"65rpx"}},"u-margin-left-65":{"":{"!marginLeft":"65rpx"}},"u-padding-left-65":{"":{"!paddingLeft":"65rpx"}},"u-m-t-65":{"":{"!marginTop":"65rpx"}},"u-p-t-65":{"":{"!paddingTop":"65rpx"}},"u-margin-top-65":{"":{"!marginTop":"65rpx"}},"u-padding-top-65":{"":{"!paddingTop":"65rpx"}},"u-m-r-65":{"":{"!marginRight":"65rpx"}},"u-p-r-65":{"":{"!paddingRight":"65rpx"}},"u-margin-right-65":{"":{"!marginRight":"65rpx"}},"u-padding-right-65":{"":{"!paddingRight":"65rpx"}},"u-m-b-65":{"":{"!marginBottom":"65rpx"}},"u-p-b-65":{"":{"!paddingBottom":"65rpx"}},"u-margin-bottom-65":{"":{"!marginBottom":"65rpx"}},"u-padding-bottom-65":{"":{"!paddingBottom":"65rpx"}},"u-margin-66":{"":{"!marginTop":"66rpx","!marginRight":"66rpx","!marginBottom":"66rpx","!marginLeft":"66rpx"}},"u-m-66":{"":{"!marginTop":"66rpx","!marginRight":"66rpx","!marginBottom":"66rpx","!marginLeft":"66rpx"}},"u-padding-66":{"":{"!paddingTop":"66rpx","!paddingRight":"66rpx","!paddingBottom":"66rpx","!paddingLeft":"66rpx"}},"u-p-66":{"":{"!paddingTop":"66rpx","!paddingRight":"66rpx","!paddingBottom":"66rpx","!paddingLeft":"66rpx"}},"u-m-l-66":{"":{"!marginLeft":"66rpx"}},"u-p-l-66":{"":{"!paddingLeft":"66rpx"}},"u-margin-left-66":{"":{"!marginLeft":"66rpx"}},"u-padding-left-66":{"":{"!paddingLeft":"66rpx"}},"u-m-t-66":{"":{"!marginTop":"66rpx"}},"u-p-t-66":{"":{"!paddingTop":"66rpx"}},"u-margin-top-66":{"":{"!marginTop":"66rpx"}},"u-padding-top-66":{"":{"!paddingTop":"66rpx"}},"u-m-r-66":{"":{"!marginRight":"66rpx"}},"u-p-r-66":{"":{"!paddingRight":"66rpx"}},"u-margin-right-66":{"":{"!marginRight":"66rpx"}},"u-padding-right-66":{"":{"!paddingRight":"66rpx"}},"u-m-b-66":{"":{"!marginBottom":"66rpx"}},"u-p-b-66":{"":{"!paddingBottom":"66rpx"}},"u-margin-bottom-66":{"":{"!marginBottom":"66rpx"}},"u-padding-bottom-66":{"":{"!paddingBottom":"66rpx"}},"u-margin-68":{"":{"!marginTop":"68rpx","!marginRight":"68rpx","!marginBottom":"68rpx","!marginLeft":"68rpx"}},"u-m-68":{"":{"!marginTop":"68rpx","!marginRight":"68rpx","!marginBottom":"68rpx","!marginLeft":"68rpx"}},"u-padding-68":{"":{"!paddingTop":"68rpx","!paddingRight":"68rpx","!paddingBottom":"68rpx","!paddingLeft":"68rpx"}},"u-p-68":{"":{"!paddingTop":"68rpx","!paddingRight":"68rpx","!paddingBottom":"68rpx","!paddingLeft":"68rpx"}},"u-m-l-68":{"":{"!marginLeft":"68rpx"}},"u-p-l-68":{"":{"!paddingLeft":"68rpx"}},"u-margin-left-68":{"":{"!marginLeft":"68rpx"}},"u-padding-left-68":{"":{"!paddingLeft":"68rpx"}},"u-m-t-68":{"":{"!marginTop":"68rpx"}},"u-p-t-68":{"":{"!paddingTop":"68rpx"}},"u-margin-top-68":{"":{"!marginTop":"68rpx"}},"u-padding-top-68":{"":{"!paddingTop":"68rpx"}},"u-m-r-68":{"":{"!marginRight":"68rpx"}},"u-p-r-68":{"":{"!paddingRight":"68rpx"}},"u-margin-right-68":{"":{"!marginRight":"68rpx"}},"u-padding-right-68":{"":{"!paddingRight":"68rpx"}},"u-m-b-68":{"":{"!marginBottom":"68rpx"}},"u-p-b-68":{"":{"!paddingBottom":"68rpx"}},"u-margin-bottom-68":{"":{"!marginBottom":"68rpx"}},"u-padding-bottom-68":{"":{"!paddingBottom":"68rpx"}},"u-margin-70":{"":{"!marginTop":"70rpx","!marginRight":"70rpx","!marginBottom":"70rpx","!marginLeft":"70rpx"}},"u-m-70":{"":{"!marginTop":"70rpx","!marginRight":"70rpx","!marginBottom":"70rpx","!marginLeft":"70rpx"}},"u-padding-70":{"":{"!paddingTop":"70rpx","!paddingRight":"70rpx","!paddingBottom":"70rpx","!paddingLeft":"70rpx"}},"u-p-70":{"":{"!paddingTop":"70rpx","!paddingRight":"70rpx","!paddingBottom":"70rpx","!paddingLeft":"70rpx"}},"u-m-l-70":{"":{"!marginLeft":"70rpx"}},"u-p-l-70":{"":{"!paddingLeft":"70rpx"}},"u-margin-left-70":{"":{"!marginLeft":"70rpx"}},"u-padding-left-70":{"":{"!paddingLeft":"70rpx"}},"u-m-t-70":{"":{"!marginTop":"70rpx"}},"u-p-t-70":{"":{"!paddingTop":"70rpx"}},"u-margin-top-70":{"":{"!marginTop":"70rpx"}},"u-padding-top-70":{"":{"!paddingTop":"70rpx"}},"u-m-r-70":{"":{"!marginRight":"70rpx"}},"u-p-r-70":{"":{"!paddingRight":"70rpx"}},"u-margin-right-70":{"":{"!marginRight":"70rpx"}},"u-padding-right-70":{"":{"!paddingRight":"70rpx"}},"u-m-b-70":{"":{"!marginBottom":"70rpx"}},"u-p-b-70":{"":{"!paddingBottom":"70rpx"}},"u-margin-bottom-70":{"":{"!marginBottom":"70rpx"}},"u-padding-bottom-70":{"":{"!paddingBottom":"70rpx"}},"u-margin-72":{"":{"!marginTop":"72rpx","!marginRight":"72rpx","!marginBottom":"72rpx","!marginLeft":"72rpx"}},"u-m-72":{"":{"!marginTop":"72rpx","!marginRight":"72rpx","!marginBottom":"72rpx","!marginLeft":"72rpx"}},"u-padding-72":{"":{"!paddingTop":"72rpx","!paddingRight":"72rpx","!paddingBottom":"72rpx","!paddingLeft":"72rpx"}},"u-p-72":{"":{"!paddingTop":"72rpx","!paddingRight":"72rpx","!paddingBottom":"72rpx","!paddingLeft":"72rpx"}},"u-m-l-72":{"":{"!marginLeft":"72rpx"}},"u-p-l-72":{"":{"!paddingLeft":"72rpx"}},"u-margin-left-72":{"":{"!marginLeft":"72rpx"}},"u-padding-left-72":{"":{"!paddingLeft":"72rpx"}},"u-m-t-72":{"":{"!marginTop":"72rpx"}},"u-p-t-72":{"":{"!paddingTop":"72rpx"}},"u-margin-top-72":{"":{"!marginTop":"72rpx"}},"u-padding-top-72":{"":{"!paddingTop":"72rpx"}},"u-m-r-72":{"":{"!marginRight":"72rpx"}},"u-p-r-72":{"":{"!paddingRight":"72rpx"}},"u-margin-right-72":{"":{"!marginRight":"72rpx"}},"u-padding-right-72":{"":{"!paddingRight":"72rpx"}},"u-m-b-72":{"":{"!marginBottom":"72rpx"}},"u-p-b-72":{"":{"!paddingBottom":"72rpx"}},"u-margin-bottom-72":{"":{"!marginBottom":"72rpx"}},"u-padding-bottom-72":{"":{"!paddingBottom":"72rpx"}},"u-margin-74":{"":{"!marginTop":"74rpx","!marginRight":"74rpx","!marginBottom":"74rpx","!marginLeft":"74rpx"}},"u-m-74":{"":{"!marginTop":"74rpx","!marginRight":"74rpx","!marginBottom":"74rpx","!marginLeft":"74rpx"}},"u-padding-74":{"":{"!paddingTop":"74rpx","!paddingRight":"74rpx","!paddingBottom":"74rpx","!paddingLeft":"74rpx"}},"u-p-74":{"":{"!paddingTop":"74rpx","!paddingRight":"74rpx","!paddingBottom":"74rpx","!paddingLeft":"74rpx"}},"u-m-l-74":{"":{"!marginLeft":"74rpx"}},"u-p-l-74":{"":{"!paddingLeft":"74rpx"}},"u-margin-left-74":{"":{"!marginLeft":"74rpx"}},"u-padding-left-74":{"":{"!paddingLeft":"74rpx"}},"u-m-t-74":{"":{"!marginTop":"74rpx"}},"u-p-t-74":{"":{"!paddingTop":"74rpx"}},"u-margin-top-74":{"":{"!marginTop":"74rpx"}},"u-padding-top-74":{"":{"!paddingTop":"74rpx"}},"u-m-r-74":{"":{"!marginRight":"74rpx"}},"u-p-r-74":{"":{"!paddingRight":"74rpx"}},"u-margin-right-74":{"":{"!marginRight":"74rpx"}},"u-padding-right-74":{"":{"!paddingRight":"74rpx"}},"u-m-b-74":{"":{"!marginBottom":"74rpx"}},"u-p-b-74":{"":{"!paddingBottom":"74rpx"}},"u-margin-bottom-74":{"":{"!marginBottom":"74rpx"}},"u-padding-bottom-74":{"":{"!paddingBottom":"74rpx"}},"u-margin-75":{"":{"!marginTop":"75rpx","!marginRight":"75rpx","!marginBottom":"75rpx","!marginLeft":"75rpx"}},"u-m-75":{"":{"!marginTop":"75rpx","!marginRight":"75rpx","!marginBottom":"75rpx","!marginLeft":"75rpx"}},"u-padding-75":{"":{"!paddingTop":"75rpx","!paddingRight":"75rpx","!paddingBottom":"75rpx","!paddingLeft":"75rpx"}},"u-p-75":{"":{"!paddingTop":"75rpx","!paddingRight":"75rpx","!paddingBottom":"75rpx","!paddingLeft":"75rpx"}},"u-m-l-75":{"":{"!marginLeft":"75rpx"}},"u-p-l-75":{"":{"!paddingLeft":"75rpx"}},"u-margin-left-75":{"":{"!marginLeft":"75rpx"}},"u-padding-left-75":{"":{"!paddingLeft":"75rpx"}},"u-m-t-75":{"":{"!marginTop":"75rpx"}},"u-p-t-75":{"":{"!paddingTop":"75rpx"}},"u-margin-top-75":{"":{"!marginTop":"75rpx"}},"u-padding-top-75":{"":{"!paddingTop":"75rpx"}},"u-m-r-75":{"":{"!marginRight":"75rpx"}},"u-p-r-75":{"":{"!paddingRight":"75rpx"}},"u-margin-right-75":{"":{"!marginRight":"75rpx"}},"u-padding-right-75":{"":{"!paddingRight":"75rpx"}},"u-m-b-75":{"":{"!marginBottom":"75rpx"}},"u-p-b-75":{"":{"!paddingBottom":"75rpx"}},"u-margin-bottom-75":{"":{"!marginBottom":"75rpx"}},"u-padding-bottom-75":{"":{"!paddingBottom":"75rpx"}},"u-margin-76":{"":{"!marginTop":"76rpx","!marginRight":"76rpx","!marginBottom":"76rpx","!marginLeft":"76rpx"}},"u-m-76":{"":{"!marginTop":"76rpx","!marginRight":"76rpx","!marginBottom":"76rpx","!marginLeft":"76rpx"}},"u-padding-76":{"":{"!paddingTop":"76rpx","!paddingRight":"76rpx","!paddingBottom":"76rpx","!paddingLeft":"76rpx"}},"u-p-76":{"":{"!paddingTop":"76rpx","!paddingRight":"76rpx","!paddingBottom":"76rpx","!paddingLeft":"76rpx"}},"u-m-l-76":{"":{"!marginLeft":"76rpx"}},"u-p-l-76":{"":{"!paddingLeft":"76rpx"}},"u-margin-left-76":{"":{"!marginLeft":"76rpx"}},"u-padding-left-76":{"":{"!paddingLeft":"76rpx"}},"u-m-t-76":{"":{"!marginTop":"76rpx"}},"u-p-t-76":{"":{"!paddingTop":"76rpx"}},"u-margin-top-76":{"":{"!marginTop":"76rpx"}},"u-padding-top-76":{"":{"!paddingTop":"76rpx"}},"u-m-r-76":{"":{"!marginRight":"76rpx"}},"u-p-r-76":{"":{"!paddingRight":"76rpx"}},"u-margin-right-76":{"":{"!marginRight":"76rpx"}},"u-padding-right-76":{"":{"!paddingRight":"76rpx"}},"u-m-b-76":{"":{"!marginBottom":"76rpx"}},"u-p-b-76":{"":{"!paddingBottom":"76rpx"}},"u-margin-bottom-76":{"":{"!marginBottom":"76rpx"}},"u-padding-bottom-76":{"":{"!paddingBottom":"76rpx"}},"u-margin-78":{"":{"!marginTop":"78rpx","!marginRight":"78rpx","!marginBottom":"78rpx","!marginLeft":"78rpx"}},"u-m-78":{"":{"!marginTop":"78rpx","!marginRight":"78rpx","!marginBottom":"78rpx","!marginLeft":"78rpx"}},"u-padding-78":{"":{"!paddingTop":"78rpx","!paddingRight":"78rpx","!paddingBottom":"78rpx","!paddingLeft":"78rpx"}},"u-p-78":{"":{"!paddingTop":"78rpx","!paddingRight":"78rpx","!paddingBottom":"78rpx","!paddingLeft":"78rpx"}},"u-m-l-78":{"":{"!marginLeft":"78rpx"}},"u-p-l-78":{"":{"!paddingLeft":"78rpx"}},"u-margin-left-78":{"":{"!marginLeft":"78rpx"}},"u-padding-left-78":{"":{"!paddingLeft":"78rpx"}},"u-m-t-78":{"":{"!marginTop":"78rpx"}},"u-p-t-78":{"":{"!paddingTop":"78rpx"}},"u-margin-top-78":{"":{"!marginTop":"78rpx"}},"u-padding-top-78":{"":{"!paddingTop":"78rpx"}},"u-m-r-78":{"":{"!marginRight":"78rpx"}},"u-p-r-78":{"":{"!paddingRight":"78rpx"}},"u-margin-right-78":{"":{"!marginRight":"78rpx"}},"u-padding-right-78":{"":{"!paddingRight":"78rpx"}},"u-m-b-78":{"":{"!marginBottom":"78rpx"}},"u-p-b-78":{"":{"!paddingBottom":"78rpx"}},"u-margin-bottom-78":{"":{"!marginBottom":"78rpx"}},"u-padding-bottom-78":{"":{"!paddingBottom":"78rpx"}},"u-margin-80":{"":{"!marginTop":"80rpx","!marginRight":"80rpx","!marginBottom":"80rpx","!marginLeft":"80rpx"}},"u-m-80":{"":{"!marginTop":"80rpx","!marginRight":"80rpx","!marginBottom":"80rpx","!marginLeft":"80rpx"}},"u-padding-80":{"":{"!paddingTop":"80rpx","!paddingRight":"80rpx","!paddingBottom":"80rpx","!paddingLeft":"80rpx"}},"u-p-80":{"":{"!paddingTop":"80rpx","!paddingRight":"80rpx","!paddingBottom":"80rpx","!paddingLeft":"80rpx"}},"u-m-l-80":{"":{"!marginLeft":"80rpx"}},"u-p-l-80":{"":{"!paddingLeft":"80rpx"}},"u-margin-left-80":{"":{"!marginLeft":"80rpx"}},"u-padding-left-80":{"":{"!paddingLeft":"80rpx"}},"u-m-t-80":{"":{"!marginTop":"80rpx"}},"u-p-t-80":{"":{"!paddingTop":"80rpx"}},"u-margin-top-80":{"":{"!marginTop":"80rpx"}},"u-padding-top-80":{"":{"!paddingTop":"80rpx"}},"u-m-r-80":{"":{"!marginRight":"80rpx"}},"u-p-r-80":{"":{"!paddingRight":"80rpx"}},"u-margin-right-80":{"":{"!marginRight":"80rpx"}},"u-padding-right-80":{"":{"!paddingRight":"80rpx"}},"u-m-b-80":{"":{"!marginBottom":"80rpx"}},"u-p-b-80":{"":{"!paddingBottom":"80rpx"}},"u-margin-bottom-80":{"":{"!marginBottom":"80rpx"}},"u-padding-bottom-80":{"":{"!paddingBottom":"80rpx"}},"u-reset-nvue":{"":{"flexDirection":"row","alignItems":"center"}},"u-type-primary-light":{"":{"color":"#ecf5ff"}},"u-type-warning-light":{"":{"color":"#fdf6ec"}},"u-type-success-light":{"":{"color":"#dbf1e1"}},"u-type-error-light":{"":{"color":"#fef0f0"}},"u-type-info-light":{"":{"color":"#f4f4f5"}},"u-type-primary-light-bg":{"":{"backgroundColor":"#ecf5ff"}},"u-type-warning-light-bg":{"":{"backgroundColor":"#fdf6ec"}},"u-type-success-light-bg":{"":{"backgroundColor":"#dbf1e1"}},"u-type-error-light-bg":{"":{"backgroundColor":"#fef0f0"}},"u-type-info-light-bg":{"":{"backgroundColor":"#f4f4f5"}},"u-type-primary-dark":{"":{"color":"#2b85e4"}},"u-type-warning-dark":{"":{"color":"#f29100"}},"u-type-success-dark":{"":{"color":"#18b566"}},"u-type-error-dark":{"":{"color":"#dd6161"}},"u-type-info-dark":{"":{"color":"#82848a"}},"u-type-primary-dark-bg":{"":{"backgroundColor":"#2b85e4"}},"u-type-warning-dark-bg":{"":{"backgroundColor":"#f29100"}},"u-type-success-dark-bg":{"":{"backgroundColor":"#18b566"}},"u-type-error-dark-bg":{"":{"backgroundColor":"#dd6161"}},"u-type-info-dark-bg":{"":{"backgroundColor":"#82848a"}},"u-type-primary-disabled":{"":{"color":"#a0cfff"}},"u-type-warning-disabled":{"":{"color":"#fcbd71"}},"u-type-success-disabled":{"":{"color":"#71d5a1"}},"u-type-error-disabled":{"":{"color":"#fab6b6"}},"u-type-info-disabled":{"":{"color":"#c8c9cc"}},"u-type-primary":{"":{"color":"#2979ff"}},"u-type-warning":{"":{"color":"#ff9900"}},"u-type-success":{"":{"color":"#19be6b"}},"u-type-error":{"":{"color":"#fa3534"}},"u-type-info":{"":{"color":"#909399"}},"u-type-primary-bg":{"":{"backgroundColor":"#2979ff"}},"u-type-warning-bg":{"":{"backgroundColor":"#ff9900"}},"u-type-success-bg":{"":{"backgroundColor":"#19be6b"}},"u-type-error-bg":{"":{"backgroundColor":"#fa3534"}},"u-type-info-bg":{"":{"backgroundColor":"#909399"}},"u-main-color":{"":{"color":"#303133"}},"u-content-color":{"":{"color":"#606266"}},"u-tips-color":{"":{"color":"#909399"}},"u-light-color":{"":{"color":"#c0c4cc"}},"nvue":{"":{"fontSize":"24rpx"}}}];//styles
__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
diff --git a/unpackage/resources/__UNI__FB2D473/www/app-service.js b/unpackage/resources/__UNI__FB2D473/www/app-service.js
index d8c1444..997c7fb 100644
--- a/unpackage/resources/__UNI__FB2D473/www/app-service.js
+++ b/unpackage/resources/__UNI__FB2D473/www/app-service.js
@@ -1 +1 @@
-if("undefined"==typeof Promise||Promise.prototype.finally||(Promise.prototype.finally=function(e){const t=this.constructor;return this.then((l=>t.resolve(e()).then((()=>l))),(l=>t.resolve(e()).then((()=>{throw l}))))}),"undefined"!=typeof uni&&uni&&uni.requireGlobal){const e=uni.requireGlobal();ArrayBuffer=e.ArrayBuffer,Int8Array=e.Int8Array,Uint8Array=e.Uint8Array,Uint8ClampedArray=e.Uint8ClampedArray,Int16Array=e.Int16Array,Uint16Array=e.Uint16Array,Int32Array=e.Int32Array,Uint32Array=e.Uint32Array,Float32Array=e.Float32Array,Float64Array=e.Float64Array,BigInt64Array=e.BigInt64Array,BigUint64Array=e.BigUint64Array}uni.restoreGlobal&&uni.restoreGlobal(Vue,weex,plus,setTimeout,clearTimeout,setInterval,clearInterval),function(e){"use strict";function t(e){return weex.requireModule(e)}function l(e,t,...l){uni.__log__?uni.__log__(e,t,...l):console[e].apply(console,[...l,t])}function a(e,t){return"string"==typeof e?t:e}const i=(t,l=0)=>(l,a=e.getCurrentInstance())=>{!e.isInSSRComponentSetup&&e.injectHook(t,l,a)},n=i("onShow",3),r=i("onHide",3),o=i("onLoad",2),c="/static/left.png",s=(e,t)=>{const l=e.__vccOpts||e;for(const[a,i]of t)l[a]=i;return l};const d=s({name:"ZyUpgrade",props:{theme:{type:String,default:"green"},updateurl:{type:String,default:""},h5preview:{type:Boolean,default:!1},oldversion:{type:String,default:""},oldcode:{type:Number,default:0},appstoreflag:{type:Boolean,default:!1},noticeflag:{type:Boolean,default:!1},autocheckupdate:{type:Boolean,default:!0}},data(){return{update_flag:!1,dshow:!1,update_process:0,downloadTask:[],updated2version:"",version_url:"",update_tips:"",forceupgrade:!1,currentversion:this.oldversion,versionname:"",vesioncode:this.oldcode,wgt_flag:0,wgt_url:"",size:0,header:{Authorization:uni.getStorageSync("token")||"token"}}},mounted(){let e=!1;e=!0,this.h5preview,this.autocheckupdate&&this.check_update()},computed:{version(){let e="";return e=this.currentversion+(""!=this.currentversion&&""!=this.updated2version?"->":"")+this.updated2version,e}},methods:{check_update(){let e=this;plus.runtime.getProperty(plus.runtime.appid,(function(t){e.currentversion=t.version,e.versionname=t.name,e.versioncode=t.versionCode,e.updatebusiness(e)}))},updatebusiness:function(e){uni.request({url:`https://www.focusnu.com/devopsapi/api/pad/versionUpdate?platform=1&version=${e.currentversion}`,method:"GET",dataType:"json",success:t=>{404!==t.statusCode&&(100==t.data.code?t.data.data.update_url?(e.dshow=!0,e.update_tips=t.data.data.update_tips,e.forceupgrade=1==t.data.data.forceupdate,e.version_url=t.data.data.update_url,e.updated2version=t.data.data.version,e.wgt_flag=t.data.data.wgt_flag,e.wgt_url=t.data.data.wgt_url,e.size=t.data.data.size,e.getnewbanben()):e.noticeflag&&e.$emit("showupdateTips",0):uni.showToast({title:"请求升级出错:"+data.msg,icon:"none"}))},fail(){this.loading=!1}})},getnewbanben:function(){this.$emit("chuandinew",this.updated2version)},upgrade_checked:function(){uni.removeStorageSync("token"),this.update_flag=!0,this.updateversion()},upgrade_cancel:function(){this.dshow=!1},upgrade_break:function(){this.downloadTask.abort(),this.update_flag=!1},updateversion:function(){let e=this;if("ios"==uni.getSystemInfoSync().platform&&this.appstoreflag&&1!=e.wgt_flag)e.dshow=!1,plus.runtime.launchApplication({action:e.version_url},(function(e){uni.showToast({title:"打开appstore失败",icon:"none"})}));else{let e=this,t="https://www.focusnu.com/devopsapi/sys/common/static/"+(1==e.wgt_flag?e.wgt_url:e.version_url);this.update_confirm=!0,this.downloadTask=uni.downloadFile({url:t,header:this.header,success:function(e){l("log","at component/zy-upgrade/zy-upgrade.vue:223","!!!",e),200==e.statusCode?plus.runtime.install(e.tempFilePath,{force:!1},(function(){plus.runtime.restart()}),(function(e){l("error","at component/zy-upgrade/zy-upgrade.vue:232","install fail...",JSON.stringify(e)),uni.showToast({title:"升级失败",icon:"none"})})):uni.showToast({title:"下载失败,网络错误",icon:"none"})},fail:function(e){uni.showToast({title:"下载失败:"+e.errMsg,icon:"none"}),this.update_flag=!1},complete:function(){}}),this.downloadTask.onProgressUpdate((function(t){if(e.update_process=t.progress,t.progress==1/0){let l=t.totalBytesWritten/e.size*100;l>100&&(l=100),e.update_process=l}}))}}}},[["render",function(t,l,a,i,n,r){return e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["zy-modal",n.dshow?"show":""])},[e.createElementVNode("view",{style:{position:"absolute",top:"300rpx",left:"1040rpx","z-index":"9999"}},[e.createElementVNode("image",{style:{width:"300rpx",height:"400rpx",position:"absolute",top:"0rpx",left:"0rpx"},src:"/static/index/update/fly.png"})]),e.createElementVNode("view",{class:"zy-dialog",style:{"background-color":"#fff","border-radius":"40rpx"}},[e.createElementVNode("view",{style:{height:"400rpx",width:"100%",position:"relative"}},[e.createElementVNode("image",{style:{width:"1800rpx",height:"1600rpx",position:"absolute",top:"-370rpx",left:"-220rpx"},src:"/static/index/update/bgc.png"})]),e.createElementVNode("view",{class:e.normalizeClass("zy-upgrade-topbg-"+a.theme)},[e.createElementVNode("view",null,[e.createElementVNode("text",{class:"zy-upgrade-title"}," 发现新版本 ")]),e.createElementVNode("text",{class:"flex-wrap",style:{"margin-top":"10rpx"}},e.toDisplayString(r.version),1)],2),e.createElementVNode("view",{class:"padding-xl bg-white text-left"},[n.update_flag?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("scroll-view",{key:0,style:{"max-height":"200rpx","text-align":"center"},"scroll-y":"auto"},[e.createElementVNode("text",null,e.toDisplayString(n.update_tips),1)])),n.update_flag?(e.openBlock(),e.createElementBlock("view",{key:1,class:"zy-progress radius striped active"},[e.createElementVNode("view",{class:e.normalizeClass("bg-"+a.theme),style:e.normalizeStyle("width: "+n.update_process+"%;")},e.toDisplayString(n.update_process),7)])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"zy-bar bg-white",style:{"justify-content":"center",display:"flex","margin-bottom":"60rpx"}},[n.update_flag?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"action"},[e.createElementVNode("button",{class:e.normalizeClass(["zy-btn","bg-"+a.theme]),onClick:l[0]||(l[0]=(...e)=>r.upgrade_checked&&r.upgrade_checked(...e))},"确认升级",2),n.forceupgrade?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("button",{key:0,class:e.normalizeClass(["zy-btn margin-left","line-"+a.theme]),onClick:l[1]||(l[1]=(...e)=>r.upgrade_cancel&&r.upgrade_cancel(...e))},"取消升级",2))])),n.update_flag&&!n.forceupgrade?(e.openBlock(),e.createElementBlock("view",{key:1,class:"action text-center"},[e.createElementVNode("button",{class:e.normalizeClass(["zy-btn","bg-"+a.theme]),onClick:l[2]||(l[2]=(...e)=>r.upgrade_break&&r.upgrade_break(...e))},"中断升级",2)])):e.createCommentVNode("",!0)])])],2)}],["__scopeId","data-v-cd70e807"]]);const m=s({},[["render",function(t,l){return e.openBlock(),e.createElementBlock("view",{class:"all"},[e.createElementVNode("scroll-view",{"scroll-y":"",class:"all-content"},[e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 特别提示 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 欢迎使用NU护理单元为您提供的NU护理单元平台。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"请您务必审慎并完整阅读以下内容,特别是免除或者限制NU护理单元责任的条款、对用户权利进行限制的条款、规定本协议的适用法律及有权解决争议的司法管辖区的条款。限制、免责条款或者其他涉及您重大权益的条款可能以加粗等形式提示您重点注意。请注意,目前在您的地区可能无法使用NU护理单元平台上的某些服务和功能(特别是涉及身份认证和支付的功能)。给您带来的不便,我们深表歉意,并正在努力尽快(如可能)提供这些服务和功能。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 如您未满18周岁或未满您居住所在地要求可使用NU护理单元平台的年龄,请不要使用NU护理单元平台。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 除非您已充分阅读并接受本协议所有条款,否则您无权使用NU护理单元平台。如您不同意本协议或其中任何条款,您应立即停止使用NU护理单元平台。您点击“同意”,或者您使用NU护理单元平台,或者以其他任何明示或者默示方式表示接受本协议的,均视为您已阅读并同意本协议。本协议即在您与NU护理单元之间产生法律效力,成为对双方均具有约束力的法律文件。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 一、定义及协议范围 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 1.1 定义 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," NU护理单元平台:指吉林省捌零信创有限公司(以下简称“NU护理单元”或“我们”)合法拥有并运营的名称为“NU护理单元” 和/或小程序、客户端应用程序以及我们不时提供的其他形式。“我们的”应相应地进行理解。为免疑义,我们亦保留调整NU护理单元平台名称的所有权利。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," NU护理单元账号或账号:指用户在使用NU护理单元平台时可能需要注册的账号。我们为用户提供NU护理单元平台注册通道,您可通过移动电话号码或我们允许的其他方式注册NU护理单元账号。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 用户:指NU护理单元平台的使用人,在本协议中更多地称为“您”。“您的”应相应地进行理解。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 不良信息:指含有下列内容的信息: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 违反中国宪法确定的基本原则,煽动抗拒或者破坏中国宪法等法律法规实施的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 危害中国国家统一、主权和领土完整,泄露中国国家秘密,危害中国国家安全,损害中国国家尊严、荣誉和利益,宣扬恐怖主义、极端主义的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 诋毁中华民族优秀文化传统,煽动民族仇恨、民族歧视,侵害中华民族风俗习惯,歪曲中华民族历史和民族历史人物,伤害民族感情,破坏民族团结的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 煽动破坏中国国家宗教政策,宣扬宗教狂热,危害宗教和睦,伤害信教公民宗教感情,破坏信教公民和不信教公民团结,宣扬邪教、迷信的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 危害中国社会公德,扰乱中国社会秩序,破坏中国社会稳定,宣扬淫秽、赌博、吸毒,渲染暴力、恐怖,教唆犯罪或者传授犯罪方法的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 侵害未成年人合法权益或者损害未成年人身心健康的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 侮辱、诽谤他人或者散布他人隐私,侵害他人合法权益的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 违反法律法规底线、中国社会主义制度底线、中国国家利益底线、中国公民合法权益底线、中国社会公共秩序底线、道德风尚底线和信息真实性底线的“七条底线”要求的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 法律法规禁止的其他内容。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 1.2 协议范围 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 本协议是您与NU护理单元之间关于您下载、安装、使用NU护理单元平台所订立的协议,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"包括本协议正文、《NU护理单元用户隐私政策》《NU护理单元未成年人个人信息保护规则》《NU护理单元社区公约》《NU护理单元社区规范》及NU护理单元已经发布的或将来可能发布/更新的并采取合理途径通知的各类规则、规范、通知等。"),e.createTextVNode("所有规则均为本协议不可分割的组成部分,且具有同等法律效力。 ")]),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 二、账号管理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 2.1 账号获得 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," NU护理单元平台为您提供注册及登录通道,您可按照页面提示填写信息、阅读并同意本协议,在完成全部注册登录程序后,成为NU护理单元平台用户。您还需要根据法律法规的规定(如有)填写您真实的身份信息,否则您可能无法使用NU护理单元平台服务或在使用NU护理单元平台服务过程中受到限制。您了解并同意,您有义务保持您向我们提供的信息的真实性、有效性、准确性及完整性。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您注册获得的账号、设置的密码是您登录并以用户身份使用NU护理单元平台的凭证,您应当谨慎使用、妥善保管。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您须对账号进行的所有活动和行为负责。若因您保管不善导致的盗号、密码丢失、账号被非法使用的责任将由您自行承担。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您不得恶意注册NU护理单元账号,包括但不限于通过频繁注册、批量注册、使用他人身份注册或其他不以正常使用NU护理单元平台为目的的账号注册行为。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 2.2 账号信息设置 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您在注册或使用NU护理单元平台时提供的信息资料(包括但不限于昵称、头像及简介)须遵守法律法规、社会道德风尚和信息真实性等原则,不得出现不良信息,不得冒用他人姓名、名称、字号、头像或使用其他足以引起混淆的方式设置账号,不得侵害第三方的合法权益。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 2.3 账号使用及权属 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 部分第三方网站或者服务可以用NU护理单元账号作为其登录途径之一。您知晓,除非NU护理单元特别说明外,这些网站或者服务并非NU护理单元运营,您应自行判断此类第三方网站或者服务的安全性和可用性,并自行承担相关风险和责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 由于您的账号关联您的个人信息及NU护理单元平台商业信息,您的账号仅限您本人使用。未经NU护理单元同意,授权第三方使用您账号或获取您账号项下信息的行为无效。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"如NU护理单元判断您账号的使用可能违反法律法规或本协议、危及您的账号安全及/或NU护理单元平台信息安全的,NU护理单元可拒绝提供相应服务,采取包括但不限于暂停、封禁、注销、收回您的账号,或终止本协议的措施,由此带来的包括但不限于您账号中的内容以及虚拟物品的清空等损失由您自行承担。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 2.4 账号注销及回收 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 您可以依照NU护理单元平台的流程申请注销您的NU护理单元账号,但您仍应对您在注销账号前和使用NU护理单元平台期间的行为承担相应责任。注销成功后,除非法律法规另有规定,NU护理单元不会为您提供账号记录、内容或虚拟财产恢复等服务,请您谨慎操作。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您理解并同意,为了充分利用账号资源,如您在注册后未及时进行初次登录使用或连续超过六个月未登录账号并使用,且不存在未到期或未履行完毕的持续性NU护理单元平台服务的,NU护理单元有权收回您的账号。如您的账号被收回,您无法通过您此前持有被收回的账号登录并使用NU护理单元平台,您账号下保存的内容、权限、个性化设置和使用记录等信息也将无法恢复。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 2.5 账号违规处置 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 若您在注册或使用NU护理单元账号时,存在任何违反法律法规或不符合本协议约定的行为,NU护理单元有权不予注册;已经注册的,NU护理单元有权视情况要求用户限期改正,或采取短期封禁、永久封禁、注销账号等措施。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 三、NU护理单元平台服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.1 内容浏览 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您可通过NU护理单元平台浏览订阅各类信息和内容。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您对NU护理单元平台中的内容须自行加以判断,并自行承担因依赖或使用该等内容而引起的风险。在适用法律允许的最大限度内,您应对基于该等内容进行的所有支付或交易,或因前述内容而造成的任何损害或损失由您自行承担。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.2 内容发布 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 在遵守本协议的前提下,您可使用NU护理单元平台发表属于您原创或您有权发表的观点看法、文字、信息、图片、音视频等内容。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您在NU护理单元平台发布的任何内容均不代表NU护理单元的观点、立场或政策,您自行对您所发布内容承担全部责任。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您通过NU护理单元平台发布内容时必须遵守全部法律法规,不得利用NU护理单元平台制作、复制、发布、传播、储存任何违反法律法规、危害中国国家安全、可能对用户财产安全或信息安全造成损失的信息、营销信息、低俗不当信息或其他我们认为不应发布的信息不良信息以及不实信息等内容。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 用户不得利用基于深度学习、虚拟现实、生成式人工智能等新技术新应用制作、上传、复制、传送或传播虚假新闻信息等法律法规禁止的信息内容,或将合成内容谎称为真实或自然内容。您在发布或传播利用基于深度学习、虚拟现实、生成式人工智能等新技术新应用制作的非真实信息时,应当以显著方式予以标识,否则我们有权对相关内容和账号采取包括但不限于增加标识、限制、封禁等措施。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.3 商品与服务交易 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},[e.createTextVNode(" 您可使用NU护理单元平台进行商品与服务的交易,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"如您是未成年人或限制民事行为能力人,请在监护人同意后进行交易。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 进行交易时请您务必仔细确认所购商品的品名、价格、数量、型号、规格、尺寸或服务的时间、内容,以及该服务的限制性要求等重要事项,并在下单时核实您的联系地址、电话、收货人等信息。如您填写的收货人非您本人,则该收货人的行为和意思表示产生的法律后果均由您承担。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},[e.createTextVNode(" 您的交易行为应当基于真实的消费需求,不得存在对商品或服务实施恶意购买、恶意维权等扰乱NU护理单元平台正常交易秩序的行为。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"基于维护NU护理单元平台交易秩序及交易安全的需要,NU护理单元发现上述情形时可主动执行关闭相关交易订单等操作。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 如您的交易相对方存在利用NU护理单元平台系统漏洞、规则漏洞,不正当获取NU护理单元平台补贴等任何利益的行为,基于维护NU护理单元平台交易秩序、交易安全及NU护理单元合法权益的需要,NU护理单元发现上述情形时可主动执行关闭相关交易订单等操作。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本协议终止后,对于您在本协议存续期间产生的交易订单,NU护理单元可通知交易相对方,并有权自主决定或者根据交易相对方的意愿决定是否关闭未完成的交易订单;如NU护理单元未关闭交易订单,则您应当就该等交易订单继续履行本协议及交易订单的约定,并承担因此产生的法律责任及损失。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.4 内容分享与转发 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您可对NU护理单元平台的信息内容进行分享、转发,但未经NU护理单元书面许可,您不得复制、读取、采用、统计NU护理单元平台的信息内容及相关数据,或者进行任何形式的销售和商业使用,或者向第三方泄露、提供或允许第三方为任何方式的使用。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.5 活动参与 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您可通过NU护理单元平台参与NU护理单元不定期组织的各类线上、线下互动活动,但您"),e.createElementVNode("text",{style:{"font-weight":"600"}},"不得采取任何不正当或作弊的违规手段参与活动,否则NU护理单元有权限制或取消您参与活动的资格,并有权取消、追讨您已获得、领取的奖励,并保留追究您法律责任的权利。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.6 服务费用 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" NU护理单元为向您提供的NU护理单元平台服务付出了大量的成本,除NU护理单元平台明示的收费业务外,NU护理单元向您提供的NU护理单元平台服务是免费的。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"如未来NU护理单元向您收取合理费用,NU护理单元会采取合理方式并以合理的期限提前通知您,确保您有充分选择的权利。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 在NU护理单元降低收费服务的收费标准或者将收费服务改为免费服务提供时,NU护理单元保留不对原付费用户提供退费或者费用调整之权利。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 四、权利与许可 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 4.1 平台声明 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"平台知识产权。"),e.createTextVNode("NU护理单元平台所提供的内容,包括但不限于视频、图文、文字表述及其组合、界面设计、版面框架、图标、商标等,均由NU护理单元所有或授权使用,受中华人民共和国著作权法、商标法、专利法、反不正当竞争法及国际条约,以及其他国家或司法管辖区的知识产权法律法规的保护。未经NU护理单元书面允许,用户不得为任何目的擅自使用、复制、再造这些内容、或创造与内容有关的派生产品。我们保留本条款中未明确授予您的所有权利。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"平台使用规范。"),e.createTextVNode("您不得从事下列行为: ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 对NU护理单元平台或NU护理单元平台服务进行反向工程、反向汇编、反向编译,或者以其他方式尝试发现NU护理单元平台的源代码; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 以任何方式(包括但不限于盗链、冗余盗取、非法抓取、模拟下载、深度链接、假冒注册等)直接或间接盗取NU护理单元平台的视频、图文、用户信息等信息内容; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 通过非NU护理单元开发、授权、许可的第三方软件、插件、外挂、系统,登录或使用NU护理单元平台,或对NU护理单元平台的正常运行进行干扰、破坏、修改或施加其他影响; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 利用或针对NU护理单元平台进行任何危害我们或任何第三方计算机网络安全的行为,或暴露我们或任何第三方计算机网络安全弱点的行为,包括但不限于:非法侵入网络、干扰网络正常功能、窃取网络数据等危害网络安全、为上述行为提供程序、工具或其他支持与帮助;干涉、破坏NU护理单元平台系统、软件或网站的正常运行,故意传播恶意程序或病毒和其他破坏干扰正常网络信息服务的行为; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 其他以任何不合法的方式、为任何不合法的目的、或与NU护理单元为此制定的其他规范和标准不一致的方式使用NU护理单元平台或NU护理单元平台服务。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 4.2 用户内容及信息授权 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您在NU护理单元平台发布、上传的内容(包括但不限于文字、图片、视频、音频等)应有合法来源,相关内容为您所有或您已获得必要的授权。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 除非有相反证明,您理解并同意,为使用户内容得到更好的分享及推广,提高其传播价值及影响力,您授予NU护理单元免费的、不可撤销的、非排他的、全球无地域限制的许可使用,包括:存储、使用、传播、复制、修订、改编、汇编、出版、展示、翻译、表演用户内容或制作派生作品,以已知或日后开发的形式、媒体或技术将内容纳入其它作品,再许可第三方按照前述方式使用的权利,以及以自身名义或委托专业第三方对侵犯您上传发布的享有知识产权的内容进行取证、发起投诉或提起诉讼的权利。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 为免歧义,上述许可包括使用、复制和展示用户内容中的个人形象、肖像、姓名、商标、品牌、标识及其他营销推广素材、物料的权利和许可。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 4.3 侵权投诉 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 我们尊重并保护您及他人的知识产权、名誉权、姓名权、隐私权等合法权益。您保证,在NU护理单元平台上传的文字、图片、视频、音频、链接等不侵犯任何第三方的知识产权、名誉权、姓名权、隐私权等合法权益。否则,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元有权在收到权利方或者相关方通知的情况下移除该涉嫌侵权内容。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您认为NU护理单元平台上的内容侵犯您的合法权益,应当向我们发送侵权通知,具体通知方式和要求按侵权投诉指引执行。我们将在收到有效通知后进行审核,对可以初步证明构成侵权的内容采取必要措施。对无法认定为侵权的内容,您也将收到相应告知,如果您仍然认为侵权事实存在,新的侵权通知中应当补充证明侵权的证据。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 在适用法律允许的最大限度内,NU护理单元储存在其服务器上的数据是用户使用NU护理单元平台和NU护理单元平台服务的唯一有效证据。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 五、法律责任 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 5.1 违约处理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 如您违反本协议约定,NU护理单元有权作出独立判断,立即暂停或终止向您提供部分或全部NU护理单元平台服务,包括采取禁言、屏蔽信息、删除发布内容、封禁账号、注销账号等措施。您应对与该等措施相关的任何损失和损害(包括但不限于您账号的内容、虚拟财产和权限清空、无法正常使用账号及相关NU护理单元平台服务或任何其他后果)承担全部责任和义务。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 5.2 责任承担 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 您承担法律责任的形式包括但不限于:对受到侵害者充分赔偿损失、赔礼道歉、补救负面影响、返还财产等。如您的行为给NU护理单元造成损失的,您应承担全部赔偿责任,包括行政处罚或损害赔偿款等直接损失以及商誉损失、和解款、律师费、诉讼费等间接损失。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 5.3 反商业贿赂 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您充分了解,任何向NU护理单元的雇员或顾问等提供实物、现金、现金等价物、劳务、旅游等价值明显超出正常商务洽谈范畴的利益,均视为商业贿赂行为。发生前述情形的,NU护理单元可立即终止与您的所有合作并追究您的法律责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 5.4 关联处理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您因违约导致NU护理单元终止本协议时,出于维护NU护理单元平台秩序的目的,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元可终止与您在其他协议(如有)项下的合作。如您违反任何NU护理单元与您订立的其他协议,NU护理单元亦有权终止本协议。除前述协议终止外,NU护理单元亦可追究您在本协议或其他协议下的违约责任。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 5.5 信息公示 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 我们可将对您上述违约行为的处置信息,以及其他经国家行政或司法机关生效法律文书确认的违法信息,在"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元平台"),e.createTextVNode("上予以公示。对涉嫌违反法律法规的行为,我们有义务保存有关记录,向国家有关机关报告并配合调查。 ")]),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 六、责任限制、免责事由和赔偿 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 由于各国家或地区的法律与其他一些法律不同,本协议包括仅适用于您位于欧洲经济区(“EEA”)、英国和瑞士(统称 “EEA+”)内情况的条款(第6.1 条)、仅适用于您位于中国内情况的条款(第 6.2 条)(为免疑义,仅为第6.2条之目的,中国不包含香港特别行政区、澳门特别行政区和中国台湾)和仅适用于您位于其他国家或地区的情况的条款(第 6.3 条)。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.1 如您位于 EEA+内 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本第6.1条仅适用于您位于EEA+内的情况。在我们已尽专业勤勉义务的前提下,我们不对任何损失或损害承担责任,除非其:(1)是由于我们对本协议的违反而造成的;或(2)在签订本协议时可被合理预见,即其显然会发生,或在您与我们签订本协议时已知可能会发生。本协议无意排除或限制我们对死亡或人身伤害、欺诈、欺诈性虚假陈述或任何法律规定不能排除的责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 尽管本协议另有规定,如果我们怀疑您违反了本协议,我们将遵循以下步骤。首先,我们可能会进行调查,在调查期间,我们可能会暂停您对NU护理单元平台的访问,并根据涉嫌违规行为的严重程度,在适用法律允许的范围内,根据任何法律义务,合理客观地采取行动。在下列情况下,我们可能决定暂时中止或永久终止您对NU护理单元平台的访问:(1) 我们根据法律法规合理客观地认定您严重或多次违反本协议;(2) 我们有客观理由合理地认为您即将严重违反本协议;(3) 法律要求我们如此行事;或 (4) 我们有客观理由合理地认为在处理严重的技术或安全问题时需要如此行事。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.2 如您位于中国 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本第6.2条仅适用于您位于中国内的情况。仅为第6.2条之目的,中国不包含香港特别行政区、澳门特别行政区和中国台湾。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 除适用法律另有明确规定外,在任何情况下,我们均不对任何间接性、后果性、惩罚性、偶然性、特殊性或刑罚性的损害承担责任,该等损害包括但不限于您因使用NU护理单元平台或NU护理单元平台服务而遭受的利润损失。除适用法律另有明确规定外,我们对您承担的全部责任,无论因何原因或何种行为方式,始终不超过您因使用NU护理单元平台或NU护理单元平台服务期间而支付给我们的费用(如有)。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.3 如您位于其他国家或地区 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本第6.3条仅适用于您位于第6.1条所述EEA+和第6.2条所述中国外的情况。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 无陈述或保证:NU护理单元平台和NU护理单元平台服务按“现状”“可用”提供,且您“风险自担”。在法律允许的最大范围内,我们明确不作对NU护理单元平台和NU护理单元平台服务的任何及所有明示或默示的陈述和保证,包括对适销性的默示保证、针对特定用途的适用性或非侵权性。我们不保证NU护理单元平台和NU护理单元平台服务能够满足您的要求,也不保证NU护理单元平台和NU护理单元平台服务的运行不会中断或没有错误。与NU护理单元平台和NU护理单元平台服务相关的信息、内容和服务可能包含漏洞、错误、问题或其他限制。在法律允许的最大范围内,我们、我们的关联公司、我们或其各自的董事、高级职员、雇员、代理、服务提供商和许可方(统称 “NU护理单元方”)对您使用NU护理单元平台和NU护理单元平台服务不承担任何责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 责任限制:在法律允许的最大范围内,NU护理单元方不对任何因本协议、NU护理单元平台或NU护理单元平台服务引起的或与之相关的任何间接的、附带的、结果性的、特殊的、法定的、约定的、惩罚性的或其他类似的损害赔偿,或任何超出实际损害的损害赔偿,包括收入损失、利润损失、数据丢失、业务中断或其他无形损失(无论此类损失如何定性)承担责任,无论是否基于合同、侵权行为或任何其他法律理论,也无论各方是否已被告知此类损失的可能性。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"访问由我们自行决定:"),e.createTextVNode("在法律允许的最大范围内,我们可随时自行决定,不经另行通知,限制、暂停、修改或终止您对NU护理单元平台或NU护理单元平台服务的访问,包括在您未能遵守或我们怀疑您未能遵守或即将未能遵守本协议的任何规定,或实际或涉嫌非法或不当情况下。任何此类终止或暂停将不影响我们根据适用法律可能享有的任何其他权利。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"辩护和赔偿:"),e.createTextVNode("对于因您使用NU护理单元平台和NU护理单元平台服务或您违反本协议而导致或引起的任何第三方主张的任何索赔、要求、指控、调查、诉讼、程序或其他争议,您同意为NU护理单元方辩护。并且您同意赔偿NU护理单元方因任何此类争议而产生的任何损害、责任、估定、损失、成本和其他费用(包括合理的律师费和法律费用),并使其免受损害。我们将及时通知您任何此类争议,并将向您提供合理协助,费用由您承担,以就任何此类争议进行抗辩,但未提供此类通知并不免除您在本协议项下的任何义务,除非您因未被提供此类通知而受到重大损害。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"例外:"),e.createTextVNode("本协议中的任何内容均不排除或限制因我们的严重疏忽或故意不当行为而导致的任何责任,或法律不能排除的任何责任。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.4 第三方服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您在使用NU护理单元平台某一特定服务时,该服务可能会另有单独的协议或规则,您在使用该项服务前请阅读并同意相关的单独协议或规则。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您在NU护理单元平台使用第三方提供的产品或服务时,除遵守本协议及其他相关规则外,还可能需要您仔细阅读、同意并遵守第三方的协议、相关规则。如因第三方产品或服务产生的争议、损失或损害,需由您自行与第三方依据相关协议解决。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.5 平台责任承担 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 我们仅按照适用法律法规规定承担平台责任。我们不对任何第三方的诽谤、犯罪或其他非法行为承担责任,也不赔偿因此造成的您的损失。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.6 服务变更、中断、终止 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," NU护理单元始终在不断变更和改进NU护理单元平台服务,我们会尽最大努力向您提供服务,确保服务的连贯性和安全性。基于此,我们可能会对NU护理单元平台进行更新,您应将软件更新到最新版本,否则我们不保证您可正常使用NU护理单元平台。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您理解并同意,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元根据自身商业决策、政府行为、不可抗力等原因可能会选择中止、中断及终止NU护理单元平台的部分或全部服务。"),e.createTextVNode("如有此等情形发生,我们会采取合理的方式并以合理的期限提前通知您,除法律法规另有规定外,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"我们不承担由此对您造成的损失。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 在NU护理单元发生合并、分立、收购、资产转让时,NU护理单元可将本协议下部分或全部NU护理单元平台服务及相应的权利义务转交由第三方运营或履行。具体受让主体以NU护理单元通知为准。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如发生下列任何一种情形,我们有权不经通知而中断或终止向您提供服务: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 根据法律法规规定您应提交真实信息,而您提供的个人资料不真实、或与注册时信息不一致又未能提供合理证明。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您违反相关法律法规的规定或违反本协议的约定。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 按照法律法规规定,或司法机关或主管部门的要求。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 出于安全的原因或其他必要的情形。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 七、协议变更与终止 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 7.1 协议变更通知 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"我们有权在必要时,修改本协议内容,并将通过合理的方式(包括但不限于NU护理单元平台公告、系统消息、站内信、手机短信、电子邮件或其他类似方式)及合理的期限提前通知您,该等通知于发送之日视为已送达您。"),e.createTextVNode("您可以通过NU护理单元平台相关页面查阅最新版本的协议内容。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 7.2 变更协议生效 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"本协议变更生效后,如您继续使用NU护理单元平台或NU护理单元平台服务,即视为您已接受修改后的协议。如您不接受修改后的协议,应当停止使用NU护理单元平台或NU护理单元平台服务。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 7.3 协议终止 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您注销您的NU护理单元账号或NU护理单元通知您终止为您提供NU护理单元平台服务(包括但不限于封禁账号、注销账号或其他类似措施)时,本协议将同时终止,NU护理单元将不再另行通知您终止本协议。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 八、法律适用与管辖 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 8.1 本协议的订立、生效、履行、解释、修订、终止及纠纷解决,适用中华人民共和国法律法规(仅为本协议之目的,不包括香港特别行政区及澳门特别行政区法律法规,和中国台湾地区有关规定)。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 8.2 若您与NU护理单元之间发生任何纠纷或争议,由NU护理单元与您协商解决。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"协商不成的,您同意将纠纷或争议提交被告所在地人民法院管辖。")]),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 九、其他 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 9.1 本协议所有条款的标题仅为阅读和理解方便,本身并无实际涵义,不能作为本协议涵义解释的依据。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 9.2 本协议条款无论因何种原因部分无效或不可执行,其余条款仍有效,并对双方具有约束力。如果某条款规定我们在特定情况下有特定权利,这并不意味着该权利是我们在该等特定情况下可以行使的唯一权利,也不意味着该条款取消或使涉及相同情况或主旨事项的任何其他条款无效或失效。任何一方未能执行或延迟执行本协议项下的任何权利、救济或条款,不应被视为放弃该权利、救济或条款。任何弃权必须明确以书面形式作出并由弃权方签署。任何权利或救济的单次或部分行使,不应妨碍该权利或补救措施或任何其他权利或补救措施的进一步或其他行使。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 9.3 如您对本协议有任何意见或建议,您可向NU护理单元平台(service@blxinchuang.com)反馈,我们会给予您必要的帮助。 ")])])}],["__scopeId","data-v-8b11c490"]]);const u=s({},[["render",function(t,l){return e.openBlock(),e.createElementBlock("view",{class:"all"},[e.createElementVNode("scroll-view",{"scroll-y":"",class:"all-content"},[e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx"}}," 为了更好地保障您的权益,我们于近日更新了《NU护理单元隐私信息保护政策》。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx"}}," 请您在使用/继续使用NU护理单元产品/或服务前仔细阅读、充分理解全文,并在同意全部内容后使用/继续使用。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 前言 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1. NU护理单元/或服务指由吉林省捌零信创科技有限公司及其关联公司(以下称为“NU护理单元”或者“我们”)运营,并由吉林省捌零信创科技有限公司开发及维护的产品和服务(以下亦称“我们的产品/或服务”)。我们非常重视您的隐私保护和个人信息保护,鉴于此,我们制定本《NU护理单元隐私信息保护政策》(以下称为“本政策”),与您确认关于您在使用我们的产品/或服务期间,NU护理单元收集、存储、使用、披露和保护您的个人信息的相关事宜。如您对本政策内容有任何疑问、意见或建议,您可通过我们提供的各种联系方式与我们联系。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 2. 在使用我们的各项产品和/或服务前,请您务必仔细阅读并透彻理解本政策,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"特别是以粗体、粗体加下划线标识的条款,您应重点阅读,在确认充分理解并同意后开始使用。如果您/您的监护人不同意本政策的任何内容,您应该立即停止使用。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3. 本政策为NU护理单元统一适用的一般性隐私政策条款,适用于NU护理单元提供的所有产品和服务。当我们及关联公司就其向您提供的特定产品和/或服务单独设立隐私政策的,则优先适用该产品和/或服务的隐私政策。该产品和/或服务的隐私政策未涵盖的内容,以本政策内容为准;该产品和/或服务的隐私政策与本政策存在冲突的,以该产品和/或服务的隐私政策为准。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 4. "),e.createElementVNode("text",{style:{"font-weight":"600"}},"请您注意,本政策不适用于与我们的平台、产品和/或服务集成的任何第三方应用程序或软件,或者任何其他第三方产品、服务或业务(统称为“第三方服务”)。第三方服务由第三方负责运营,您使用第三方服务应遵守第三方为此制定的隐私政策或其他个人信息处理规则,我们提示您仔细识别实际服务的提供方,并在使用任何第三方服务之前仔细查看相关规则。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 5. 您同意本政策表示您已经了解并同意在相关场景下,为实现功能运行,我们将对您的相关个人信息进行处理。但这并不代表只要您开始使用我们的产品和/或服务,我们即开始处理本政策中涉及的您的全部个人信息。只有当您使用特定功能时,我们才会根据“最小必要”原则,为实现向您提供产品功能及服务的目的,处理您的相关个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 6. 您理解并同意,基于不断完善产品和服务的目的,我们将不时推出新增和/或优化功能,可能增加或变更收集、使用个人信息的范围、目的和方式。对此,我们将通过更新本政策、页面提示、新签署文件、弹窗、网站公告或站内信等即时通知方式另行向您明确说明,并为您提供同意与否的选项。该等即时通知是本政策的有效组成部分,与本政策具有同等法律效力。您有权拒绝同意该等即时通知,但您同时知悉并理解,一旦您拒绝我们收集、处理您的个人信息属于实现更新服务或功能所必要的情形时,我们将可能无法为您提供更新后的服务与功能,或者无法达到更新服务的效果,但您原有正常使用的基础功能不受影响。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 关于我们 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们的主要运营公司基本情况如下:长春市经济开发区长吉南线以东、吉林大路以南东方广场中意国际大厦B座1431号。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 联系电话:18043530712。如您想更详细的了解我们的公司、平台,您可以通过本政策提供的联系方式与我们联系。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 第一部分 定义 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"1. 个人信息:"),e.createTextVNode("是以电子或者其他方式记录的与已识别或者可识别的自然人有关的各种信息,不包括匿名化处理后的信息。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"2. 敏感个人信息:"),e.createTextVNode("是一旦泄露或者非法使用,容易导致自然人的人格尊严受到侵害或者人身、财产安全受到危害的个人信息,包括"),e.createElementVNode("text",{style:{"font-weight":"600"}},"生物识别、宗教信仰、特定身份、金融账户、行踪轨迹等信息,以及不满十四周岁未成年人的个人信息。敏感信息在本政策中会做加粗加下划线提示。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"3. 个人信息的处理:"),e.createTextVNode("包括个人信息的收集、存储、使用、加工、传输、提供、公开、删除等。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"4.个人信息处理者:"),e.createTextVNode("是指在个人信息处理活动中自主决定处理目的、处理方式的组织、个人。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"5.个人信息主体:"),e.createTextVNode("指个人信息所标识或者关联的自然人。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"6.自动化决策:"),e.createTextVNode("是指通过计算机程序自动分析、评估个人的行为习惯、兴趣爱好或者经济、健康、信用状况等,并进行决策的活动。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"7.去标识化:"),e.createTextVNode("指个人信息经过处理,使其在不借助额外信息的情况下,无法识别特定自然人的过程。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"8.匿名化:"),e.createTextVNode("指个人信息经过处理无法识别特定自然人且不能复原的过程。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"9. NU护理单元:"),e.createTextVNode("是指NU护理单元或其关联公司发布和/或运营的包括但不限于NU护理单元相关的网络平台。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"10. NU护理单元产品和/或服务:"),e.createTextVNode("指我们基于互联网,以包含NU护理单元网站、客户端(含APP\\APK\\小程序)及其他产品形态(如SDK\\API等,以及未来技术发展出现的新的形态)向您提供的包括但不限于内容分发、信息网络传播、互联网音视频业务等各项产品和服务。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"11. 平台规则:"),e.createTextVNode("包括在所有NU护理单元网站、客户端内已经发布及后续发布的全部规则、用户服务协议、解读、公告、其他内容以及各平台在频道、活动页面、帮助中心发布的各类规则、实施细则、产品说明、公告及各形式的平台规范。 ")]),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 第二部分 隐私保护政策 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本政策将帮助您了解以下内容: "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 一、我们如何收集和使用您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 二、我们如何使用 Cookie 和同类技术 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 三、我们如何共享、转让和披露您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 四、我们如何存储您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 五、我们如何保护您的个人信息安全 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 六、我们如何保护未成年人的个人信息 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 七、您如何行使您的个人信息权利 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 八、如何联系我们 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 一、我们如何收集和使用您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 因向您提供的产品和服务种类众多,我们将根据具体产品/服务范围和不同功能,遵循合法、正当和必要原则收集和使用您的个人信息。以下我们向您逐一告知各功能需要的必要个人信息类型及需授权的权限。 "),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (一) 帮助您注册、登录和维护平台账号 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1. 注册与登录 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" (1) 手机号或账号密码注册/登录:当您注册、登录我们的产品和/或服务时,为了帮您顺利完成注册/登录流程,您需要提供: "),e.createElementVNode("text",{style:{"font-weight":"600"}},"手机号码、短信验证码信息或NU护理单元登录账号及密码信息。"),e.createTextVNode("同时,我们还提供 “一键登录”功能,与我们建立合作关系的运营商或其合作伙伴会将您设备中的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"手机号码"),e.createTextVNode("提供给我们作为您的注册、登录账号并免于动态验证码核验,便于我们为您提供快捷的注册、登录服务。如果您不希望使用“一键登录”功能,可以选择其他方式进行注册、登录。收集手机号码信息是为了满足相关法律法规的网络实名制要求,如您拒绝提供手机号码进行核验,将导致注册/登录失败,但您仍可在游客模式下使用音视频的浏览、搜索、播放功能。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" (2) 扫码登录:当您通过扫码方式进行登录时,我们会请求您授权设备的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"相机、相册/存储权限"),e.createTextVNode(",以实现通过扫描二维码方式完成登录。如您不需要使用扫码登录服务,您也可以选择其他登录方式。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2. 资料维护和账号找回 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" (1) 为维护您的基本资料,提升您的服务体验,您可以选择填写完善您的个人信息,包括您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"电子邮箱、性别、所在地、头像、昵称、生日、个人简介;"),e.createTextVNode("在相关儿童页面,您也可以选择在宝贝信息界面内填写您宝贝的性别和生日,当您选择上传头像时,我们会请求您授权"),e.createElementVNode("text",{style:{"font-weight":"600"}},"相机、相册/存储权限"),e.createTextVNode(",以实现头像拍摄或选择后完成上传。当您选择一键同步第三方账号昵称和头像时,经您授权,第三方平台将与我们同步您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"第三方账号信息(如头像、昵称,具体以您的授权范围为准)。"),e.createTextVNode("如您选择不提供这些信息,不会影响您使用基础服务功能。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," (2) 若您希望绑定或者解绑您所关联的第三方平台账号,您可以随时在“我的-设置-账号与安全-账号绑定”进行设置,第三方平台账号的绑定或解绑不会影响您使用基础服务功能。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" (3) 如果您的账号遗失,您可以找回账号。如果您遗忘账号密码,您可以通过手机短信验证,或联系客服找回密码或重置密码;您也可以换绑已注册手机号码。但在此过程中,我们可能需要您提供必要的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"身份信息、手机号码、经常登录地点、经常登录设备、经常收听内容、注册时间和城市信息"),e.createTextVNode("等相关信息以验证您的身份;为了核验您的真实身份,必要时还可能通过静态或动态的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"人脸识别"),e.createTextVNode("验证您的真实身份。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3. 账号权益与资金 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," (1) 账号权益:基于NU护理单元统一账号体系和便于您在我们的产品和/或服务中使用相关权益与资产,我们会收集您在NU护理单元账号下的权益及资产信息,同时,我们会在应用内向您展示您的部分或全部前述信息,具体以页面实际展示为准。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" (2) 资产提现:当您使用我们的提现功能时,需要您提供"),e.createElementVNode("text",{style:{"font-weight":"600"}},"结算主体相关信息(姓名/名称、身份证号/统一社会信用代码)、结算账户相关信息(持卡人/户名、银行卡信息/支付宝账号信息),"),e.createTextVNode("以完成结算主体认证及资金结算账户绑定;若您是境外用户,可能还需要您提供"),e.createElementVNode("text",{style:{"font-weight":"600"}},"境外用户主体身份证明材料(如护照号、手持证照照片等"),e.createTextVNode(")。我们会在应用内向您展示您的部分或全部前述信息,具体以页面实际展示为准。您可以在我们产品的相关页面修改您已绑定的结算账户。如您拒绝提供前述结算账户相关信息,您将无法顺利提现,不影响您使用我们的其他功能与服务。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 4. 若您还未成为平台注册用户,您可以游客身份使用我们提供的基本功能,主要包括音频作品的搜索、浏览和播放。为保障上述功能实现、履行网络系统运营安全义务,我们将收取您的必要"),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备信息(设备型号、设备MAC地址、操作系统版本、唯一移动设备识别码(IMEI、Android ID、IDFA、IDFV、HarmonyOS UUID、SIM卡序列号和IMSI信息))"),e.createTextVNode(",为您分配专属标识符,并基于此标识符记录您游客身份下的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"操作信息"),e.createTextVNode(",即您浏览、播放等记录,并以日志文件的形式进行保存。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 5. 根据相关法律法规对互联网账号的管理要求、维护网络安全和良好的网络内容生态,我们会在您的个人主页以及您发布的内容、信息页面展示您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"IP属地"),e.createTextVNode("(境内IP地址展示至省/自治区/直辖市、境外IP地址展示至国家/地区,具体信息以网络运营商数据为准)。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 6."),e.createElementVNode("text",{style:{"font-weight":"600"}}," 为更好地保护未成年人隐私权益,我们特别提醒您慎重发布包含未成年人素材的内容,一经发布,即视为您已获得权利人同意在我们的产品和/或服务展示未成年人的肖像、声音等信息,且允许我们依据平台协议及本政策使用、处理该等与未成年人相关的内容。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 通讯录权限保持默认关闭状态。如您不希望被推荐给您的通讯录好友,您也可以通过设备权限管理关闭此前向NU护理单元开放的通讯录授权。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 7. 您在使用我们的服务时,若您想分享您喜欢的内容至第三方平台或应用,我们需要从您的设备终端读取"),e.createElementVNode("text",{style:{"font-weight":"600"}},"已安装的移动应用列表"),e.createTextVNode(",用以判断您是否安装了第三方应用,以便为您提供正确的分享功能。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 您在使用我们的服务时所共享的内容和信息,可能会涉及他人的个人信息,请您确认已获得他人的合法授权。与此同时,您有义务妥善保护自己的个人信息,仅在必要的情形下向他人提供、展示自己的信息。如您发现自己的个人信息泄露,尤其是您的账户或密码发生泄露,请您立即联系NU护理单元客服。 "),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (二)为您提供充值服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 为向您展示充值服务,帮助您完成交易,以及向您提供客户服务,同时基于维护支付安全、追溯网络交易行为等相关法律法规要求,当您在使用订阅或购买商品/服务时,我们会收集如下信息: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 1. 当您充值时,我们将收集您在完成交易时的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"服务信息"),e.createTextVNode("生成您的账单明细,此外,我们还需记录并保存"),e.createElementVNode("text",{style:{"font-weight":"600"}},"与订单相关的信息"),e.createTextVNode(",包括:"),e.createElementVNode("text",{style:{"font-weight":"600"}},"交易金额、下单时间、订单编号、订单状态、支付方式、支付流水号、支付状态"),e.createTextVNode(",我们收集这些信息是为了帮助您顺利完成交易、保障您的交易安全、查询订单信息,配合网络交易监管的法定义务。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 上述所有信息构成您的订单信息,我们(包括与为您提供上述服务的第三方)将使用您的订单信息进行您的身份核验、确定交易、支付结算、完成配送、为您查询订单以及提供客服咨询与售后服务。我们还会使用您的订单信息来判断您的交易是否存在异常以保障您的交易安全。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 2. 当您通过扫一扫参加活动时,我们会请求您授权您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"相机权限、相册/存储权限"),e.createTextVNode(",用于识别、保存或上传活动及分享二维码。我们可能会通过您所上传的照片/图片来识别您需要参与的活动链接或者音视频服务链接。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 3. 此外,为判断您是否满足活动要求的参与资格或者为了保障活动的正常秩序、防范作弊与欺诈等违法违规情况,我们同时可能需要收集和使用您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备信息(如:设备型号、设备MAC地址、操作系统版本、唯一移动设备识别码(IMEI、Android ID、IDFA、IDFV、HarmonyOS UUID、SIM卡序列号和IMSI信息))。")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (三)为您提供个性化内容推荐 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 1."),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备信息:"),e.createTextVNode("我们会根据您在软件安装和使用中的具体操作,接收并记录您所使用的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备相关信息(包括设备型号、硬件序列号、设备MAC地址、操作系统版本、设备设置、唯一设备识别码(IMEI、Android ID、IDFA、IDFV、GAID、HarmonyOS UUID、SIM卡序列号和IMSI信息)、UUID、必要的移动应用列表信息、软硬件及设备、设备环境信息、传感器信息)、设备所在位置相关信息"),e.createTextVNode("(为了识别判断您所在地区的内容版权,需要收集您授权的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"GPS精准位置"),e.createTextVNode("以及"),e.createElementVNode("text",{style:{"font-weight":"600"}},"WLAN接入点"),e.createTextVNode("(如SSID、BSSID)和"),e.createElementVNode("text",{style:{"font-weight":"600"}},"基站、传感器"),e.createTextVNode("信息)。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 2."),e.createElementVNode("text",{style:{"font-weight":"600"}},"日志信息:"),e.createTextVNode("当您使用我们的网站或客户端提供的产品或服务时,我们会自动收集您的详细使用情况,并作为网络日志保存。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"日志信息"),e.createTextVNode("包括您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"搜索和浏览记录"),e.createTextVNode("、关注、播放记录、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"购买消费记录"),e.createTextVNode("、访问量、播放时长、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"IP地址"),e.createTextVNode("、WIFI网络、运营商信息、电信运营商网络、使用的语言、访问日期和时间。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们将会在收集上述信息的基础上提取您的偏好特征,并基于特征标签产出间接人群画像,用于为您展示、推送个性化内容和您可能感兴趣的商业广告。但我们努力保障您的产品使用体验。如您对我们推荐的个性化内容不感兴趣或希望不再接收此类个性化服务,您可通过“我的-设置-我的隐私管理-个性化内容推荐/个性化广告推荐”选择关闭。关闭后首页向您展示和推荐的内容将可能与您的偏好相关度降低。 "),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (四)为您提供残障用户专享服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 为履行企业责任、体现社会关怀,当您享受我们为残障人士定向提供的“专享礼包”服务时,您需要提供您的姓名、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"身份证号"),e.createTextVNode("以及"),e.createElementVNode("text",{style:{"font-weight":"600"}},"残疾人证信息"),e.createTextVNode("以实现身份认证,我们会将您提供的前述信息与中国残疾人联合会的数据库进行比对和信息验证,以验证您的身份。如您拒绝提供上述信息,将使您无法享受残障用户专享服务,但不影响您正常使用NU护理单元的其他功能。 ")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (五) 帮助您连接智能设备 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您如希望将App与您所使用的智能设备相连接,您需要开启"),e.createElementVNode("text",{style:{"font-weight":"600"}},"蓝牙权限"),e.createTextVNode(",以使得我们能够搜索到您的智能设备。此外我们可能会收集您的Wi-Fi信息、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"位置信息"),e.createTextVNode("、智能设备信息。这些信息将用于为您提供智能设备快连、连接、发现附近设备和设备管理的功能。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"如您拒绝提供上述信息,我们将无法帮助您连接智能设备,但不影响您正常使用NU护理单元的其他功能。")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (六)为您提供客户服务及处理争议 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 当您向我们发起投诉、申诉或进行咨询时,为了您的账号与系统安全,我们可能需要您先行提供账号信息,并与您之前的个人信息相匹配以验证您的用户身份。同时,为了方便与您联系或帮助您解决问题,我们可能还需要您提供"),e.createElementVNode("text",{style:{"font-weight":"600"}},"姓名、手机号码、电子邮件"),e.createTextVNode("及其他联系方式等个人信息,并通过第三方客服系统保存"),e.createElementVNode("text",{style:{"font-weight":"600"}},"通话录音"),e.createTextVNode(",其中可能包含"),e.createElementVNode("text",{style:{"font-weight":"600"}},"通信/通话记录"),e.createTextVNode(",用于与您联系和帮助您解决问题,或记录相关问题的处理方案及结果。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 为确认交易状态及为您提供商品/服务的售后与争议解决服务,我们会通过您基于交易所选择的支付机构、支付方式等收集与"),e.createElementVNode("text",{style:{"font-weight":"600"}},"交易相关的信息"),e.createTextVNode(",包括iOS端IAP支付交易凭证和收费凭证。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 如您拒绝提供上述信息,我们将无法为您提供完整的客户服务及处理争议,但不影响您正常使用NU护理单元的其他功能。 "),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (七)为您提供安全保障功能 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 为履行维护网络安全义务,提高您使用服务的安全性,确保操作环境安全,预防钓鱼网站、欺诈、网络漏洞、计算机病毒、网络攻击、网络侵入等安全风险,以用于识别设备是否存在篡改设备信息行为,预防、发现和调查潜在的违法违规或违反用户服务协议、政策或规则的行为,如会员账号活动异常、多端登录、流量异常、经常性退款请求或低价转让会员卡等,我们以及在应用程序中嵌入的应用安全SDK将在后台自动收集您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备信息(包括设备型号、硬件序列号、设备MAC地址、操作系统版本、设备设置、唯一移动设备识别码(IMEI、Android ID、IDFA、IDFV、MEID、HarmonyOS UUID、OAID、SIM卡序列号和IMSI信息)、UUID、WLAN接入点(如SSID、BSSID)和基站、必要的移动应用列表信息、运行中的进程信息、软硬件及设备、设备环境信息、设备传感器信息 "),e.createTextVNode("(如磁场传感器、光传感器、压力传感器、旋转矢量传感器、方向传感器、重力传感器、加速度传感器、陀螺仪传感器,请您知悉,单纯的传感器数据并非个人信息))、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"日志信息(包括您的搜索和浏览记录、关注、播放记录、访问量、播放时长、IP地址、WIFI扫描列表、WIFI名称、运营商信息、电信运营商网络、使用的语言、访问日期和时间)"),e.createTextVNode(",并可能使用或整合您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"账户信息、交易信息、支付信息"),e.createTextVNode("以及其他取得您授权或依据法律共享的信息,综合判断您账户及交易风险、完成身份验证、检测,防范安全事件,并依法采取必要的记录、审计、分析、处置措施,保护各方合法权益稳定不受侵害。 ")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (八)其他附加服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 为向您提供个性化的产品和服务,提升用户体验,我们还会向您提供以下附加服务,并仅在您使用到相关功能时向您获取个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"1.驾驶模式:"),e.createTextVNode("当您开启驾驶模式后,我们会在获得您的同意后为您开启语音助手功能,我们会申请访问"),e.createElementVNode("text",{style:{"font-weight":"600"}},"麦克风权限"),e.createTextVNode("并收集您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"语音信息"),e.createTextVNode(",用于提供对应的语音服务,帮助您在驾驶时通过语音控制播放您喜欢的音频。即便您已同意开启麦克风权限,麦克风仍保持默认关闭状态,仅会在您主动点击客户端内麦克风图标或录制音频时通过麦克风获取语音信息。我们收集的语音信息仅作操作指令识别(或者语音转换文字识别),我们不会主动留存您的语音指令信息,更不会用作其他语音控制播放功能以外的用途。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"2.本地内容及生活服务推荐:"),e.createTextVNode("为向您提供或推荐您所在地附近的资讯和所在地相关音视频内容、本地广播和相关电影周边观影场所推荐、经常访问地周边的点餐和其他本地生活服务推荐信息,我们需要您授权"),e.createElementVNode("text",{style:{"font-weight":"600"}},"位置权限(精准地理位置)"),e.createTextVNode("以为您提供上述服务。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"3. 信息预填:"),e.createTextVNode("在部分需要填写您的信息的场景中(如广告落地页等),为优化您的使用体验、简化操作步骤,取得您的授权同意后,我们会将您在NU护理单元绑定的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"手机号码、姓名(如有)"),e.createTextVNode("等信息在相关页面进行预填。若您认为预填信息不准确的,您可以手动进行修改。请您知悉,预填的信息只有在您确认提交后才会被页面指向的个人信息处理者所获取。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 部分情况下该行为可能会被误判为应用自启动,但该行为属于合理使用并非侵犯用户权益的自启动行为。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您可在您的设备设置中逐项查看上述权限的状态,并可自行决定这些权限随时的开启或关闭。请您注意,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您开启任一权限即代表您授权我们可以收集和使用相关个人信息来为您提供对应服务,您一旦关闭任一权限即代表您取消了授权,我们将不再基于对应权限继续收集和使用相关个人信息,也无法为您提供该权限所对应的服务。"),e.createTextVNode("但是,您关闭权限的决定不会影响此前基于您的授权所进行的信息收集及使用,亦不影响您使用其他服务。 ")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (九)收集和使用您的个人信息的特别说明 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 1.若你提供的信息中含有其他用户的个人信息,在向我们提供这些个人信息之前,您需确保您已经取得合法的授权。若其中涉及未成年人个人信息的,您需在发布前取得对应未成年人监护人的同意,前述情形下监护人有权通过本政策第九条的途径联系我们,要求更正或删除涉及未成年人个人信息的内容。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2.若我们将您的个人信息用于本政策未载明的其他用途,或者我们超出了与收集您的个人信息时所声称的目的及具有直接或合理关联范围的,均会事先获得您的同意。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3. 若我们从第三方处间接获取(如从第三方处共享)您的信息,我们会在收集前明确以书面形式要求该第三方在已依法取得您同意后共享您的个人信息,并向您告知共享的您的个人信息的类型、使用目的、方式、授权同意范围,并要求第三方对个人信息来源的合法性和合规性作出承诺,如第三方存在违反行为,我们会明确要求对方承担相应法律责任。同时,我们的专业安全团队对个人信息会进行安全加固(包括敏感信息报备、敏感信息加密存储、访问权限控制)。我们会使用不低于我们对自身用户个人信息同等的保护手段与措施保护间接获取的个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 4.征得授权同意的例外 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 您充分理解并同意,根据法律法规要求,我们在以下情况下收集、使用您的个人信息无需征得您的授权同意: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (1) 为订立、履行个人作为一方当事人的合同所必需; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (2) 为履行法定职责或者法定义务所必需; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (3) 为应对突发公共卫生事件,或者紧急情况下为保护自然人的生命健康和财产安全所必需; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (4) 为公共利益实施新闻报道、舆论监督等行为,在合理的范围内处理个人信息; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (5)在合理的范围内处理个人自行公开或者其他已经合法公开的个人信息; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (6) 法律、行政法规规定的其他情形。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 二、 我们如何使用 Cookie 和同类技术 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 为确保网站正常运转、为您获得更轻松的访问体验、向您推荐您可能感兴趣的内容,我们和第三方合作伙伴可能借助于 Cookie或同类技术收集和使用您访问以及使用我们产品和/或服务的信息,并将该信息进行存储。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 如果您的浏览器或浏览器附加服务允许,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您可修改对Cookie的接受程度或拒绝我们的Cookie。"),e.createTextVNode("但如果您这么做,在某些情况下可能会影响您安全访问我们的网站,且可能需要在每一次访问我们的网站时更改用户设置。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 当您使用网页浏览使用我们的产品和/或服务时,您可以选择在浏览器的设置中清除Cookie数据,大部分浏览器均为用户提供了该等功能。但请您知悉,当您选择清除后,可能无法使用由我们提供的依赖于Cookie的功能或服务。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 三、我们如何共享、转让和披露您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (一) 共享 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 除下列情形外,我们不会与任何其他第三方共享您的个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 1. 在获得您的明确同意或授权或您主动选择的情况下共享。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"2. 在法定情形下的共享。"),e.createTextVNode("我们可能会根据法律法规规定、诉讼争议解决需要,或按行政、司法机关依法提出的要求,对外共享您的个人信息。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"3. 统一账号体系下的共享。"),e.createTextVNode("为便于我们基于统一账号体系为您带来标准化的服务体验、实现安全风控及客户服务之需要,您可以使用NU护理单元账号登录适用统一账号体系下的关联应用产品。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"4. 与合作伙伴共享。"),e.createTextVNode("您授权并同意我们可能委托合作伙伴为您提供某些服务或代表我们履行职能,我们仅会出于本隐私信息保护政策声明的合法、正当、必要、特定、明确的目的共享您的信息。我们将通过协议约束我们的合作伙伴只能接触到为其履行职责所需信息,要求其履行严格的保密和与风险相适应的安全措施来处理您的个人信息、包括但不限于数据保护协议或条款、承诺函等,且不得将您的个人信息用于其他任何目的。如超出共享目的使用您个人信息,我们将要求其另行遵循您的明确同意。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 5. 安全运营。我们将部分个人信息提供给支持我们业务的供应商、服务提供商和其他合作伙伴,以提供技术基础设施服务、分析用户使用方式、支付便利或进行学术研究和调查,进行Bug或者崩溃统计、提升登录体验,实现网关取号。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 6. 商业推广。为了您能更方便地了解和触达我们的资讯、产品/服务促销等信息,我们会向某些第三方网站和应用程序提供"),e.createElementVNode("text",{style:{"font-weight":"600"}},"加密后的设备信息"),e.createTextVNode(",进而在第三方平台为您提供我们的上述市场推广信息,并衡量优化有关我们产品和/或服务的市场推广效果。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 7. 留资广告。当第三方合作伙伴使用我们提供的技术服务向您提供商业信息或其他服务时,经取得您的授权同意,我们将基于第三方合作伙伴的委托处理您主动填写或提供的个人信息,请以相应页面内的信息收集使用提示文本为准。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"请您知悉,该等情形下,第三方合作伙伴为个人信息处理者。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 请您放心,除得到您的明确同意,我们不会将可以联系或识别您身份的个人信息与授权合作伙伴共享,我们将能够识别您身份的个人信息进行去标识化处理,以便授权合作伙伴无法识别您的具体身份。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" NU护理单元产品中包含我们的合作伙伴提供的SDK插件。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"当您在NU护理单元中使用该授权合作伙伴提供的相关服务,该等服务插件将收集和处理您的相关个人信息,详见附件:《NU护理单元与第三方共享个人信息清单》,我们强烈建议您在使用在使用我们的产品和/或服务前先行查看并了解其隐私条款。"),e.createTextVNode("我们会对合作伙伴获取有关信息的应用程序接口(API)、软件工具开发包(SDK)进行严格的安全检测,审慎评估服务提供商使用您个人信息的目的,并与合作伙伴通过签署协议的方式约定严格的数据保护措施,要求其按照我们的委托目的、服务说明以及其他任何相关的保密和安全措施来处理个人信息。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (二) 转让、公开披露 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们不会将您的个人信息转让给任何公司、组织和个人,但以下情况除外: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1. 在获取您明确同意的情况下转让; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2. 在NU护理单元及其关联公司发生重组、合并、分立、收购、资产出售或破产清算情形或其他类似情形时,如涉及到个人信息转让,我们将要求受让方采用与本政策相同或更高的标准和要求进行处理和保护,否则我们将要求受让方重新向您征求同意。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 除符合法律法规的规定进行公开披露或获得您单独同意外,我们不会公开披露您未自行公开或者其他未合法公开的个人信息。且在我们公开披露您的个人信息前会进行个人信息保护影响评估,并采用符合行业内标准的安全保护措施进行处理。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (三) 共享、转让、披露个人信息时事先征得授权同意的例外 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 以下情形中,共享、转让、公开披露您的个人信息无需事先征得您的授权同意: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1.与国家安全、国防安全有关的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2.与公共安全、公共卫生、重大公共利益有关的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3.与犯罪侦查、起诉、审判和判决执行有关的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 4.出于维护您或其他个人的生命、财产重大合法权益但又很难得到本人同意的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 5.您自行向社会公众公开的个人信息; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 6.从合法公开披露的信息中收集个人信息的,包括合法的新闻报道、政府信息公开渠道; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 7.履行其他履行法律法规规定的相关义务,如促成在线知识产权纠纷解决。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 根据法律规定,当共享、转让经采取技术措施处理的个人信息,使得数据接收方无法复原并重新识别特定个人身份时,我们将不会另行向您通知并征得您的同意。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 四、 我们如何存储您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (一) 存储地点 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们在中华人民共和国境内运营中收集和产生的个人信息,存储在中国境内。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 目前我们暂时不存在跨境存储您的个人信息或向境外提供您的个人信息的情况。如果确有必要进行数据的跨境传输,我们会单独向您明确告知(包括数据出境的目的、接收方、使用方式与范围、使用内容、安全保障措施、安全风险等),并征得您的明确授权同意,我们会确保数据接收方有充足的数据保护能力来保护您的个人信息,并严格按照适用法律法规的规定执行。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 针对以上情形,我们会确保依据本政策对您的个人信息提供足够的保护。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (二)存储期限 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们只会在达成本政策所述目的所需的最短期限内保留您的个人信息,除非法律法规有强制的存留要求,例如,根据《电子商务法》及配套法规的要求,您的订单类交易数据的保存时间自交易完成之日起不少于三年。我们判断前述期限的标准主要包括并以其中较长者为准: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1、完成与您相关的服务目的、维护相应服务及业务记录、应对您可能的查询或投诉; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2、保证我们为您提供服务的安全和质量; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3、您是否同意更长的留存期间; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 4、是否存在保留期限的其他特别约定。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 在您的个人信息超出保留期限后,我们会根据适用法律的要求删除或者匿名化处理您的个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (三) 删除和匿名化处理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如本平台服务决定停止运营时,我们将在相关服务停止运营后停止继续收集您的个人信息。我们将以公告形式将停止运营通知向您送达。对已持有您的个人信息,我们将进行删除或匿名化处理,除非法律法规另有规定。涉及未成年人个人信息的,我们会采取必要合理方式及时将停止运营的通知及时告知未成年人监护人。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 五、我们如何保护您的个人信息安全 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 为保障您的信息安全,我们努力采取各种符合业界标准的合理的物理、电子和管理方面的安全措施来保护您的信息,使您的信息不会被泄漏、毁损或者丢失。为确保您的个人信息安全,我们承诺将尽合理商业努力达到通行或者更高的安全水平: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (一) 技术安全防护 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们将采取的技术安全措施包括但不限于SSL、信息加密存储、数据中心的访问控制。我们会使用加密技术提高个人信息的安全性;使用受信赖的保护机制防止个人信息遭到恶意攻击。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (二) 安全体系保证 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们有行业先进的以数据为核心,围绕数据生命周期进行的数据安全管理体系,从组织建设、制度设计、人员管理、产品技术方面多维度提升整个系统的安全性。目前,NU护理单元已通过网络安全等级保护的三级测评。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (三) 人员安全管理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们对可能接触到您的信息的员工或外包人员采取了严格管理,包括但不限于根据不同岗位分配不同访问权限的控制机制,并签署保密协议,实时记录并掌握操作情况等。我们会举办安全和隐私保护培训课程,加强员工对于保护个人信息重要性的认识。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (四) 敏感信息及密码保护提示 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"1. 敏感个人信息保护:"),e.createTextVNode("您在使用我们服务时自愿共享甚至公开分享的信息,可能会涉及您或他人的个人信息甚至"),e.createElementVNode("text",{style:{"font-weight":"600"}},"敏感个人信息,例如您上传的头像图片,您在评论、发弹幕时选择上传包含个人信息的图片。"),e.createTextVNode("请您更加谨慎地考虑,是否在使用我们的服务时共享甚至公开分享相关信息。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"2. 您的账户均有安全保护功能,请妥善保管您的账户及密码信息。"),e.createTextVNode("我们将通过向其它服务器备份、对用户密码进行加密以及其他安全措施确保您的信息不丢失,不被滥用和变造。此外,请您尽量使用"),e.createElementVNode("text",{style:{"font-weight":"600"}},"复杂密码"),e.createTextVNode(",协助我们保证您的账号安全。我们将尽力保障您发送给我们的任何信息的安全性。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"但请您知悉,互联网并非绝对安全的环境。"),e.createTextVNode("尽管有前述安全措施,但同时也请您理解在网络上不存在“完善的安全措施”。故请您妥善保护自己的个人信息,仅在必要的情形下向他人提供。如您发现自己的个人信息泄露,尤其是您的账户及密码发生泄露,请您立即联络我们客服,以便我们采取相应措施。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (五) 信息安全事件处理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 在不幸发生个人信息安全事件时,我们将按照法律法规的要求向您告知:安全事件的基本情况和可能的影响、我们已采取或将要采取的处置措施、您可自主防范和降低风险的建议、对您的补救措施。事件相关情况我们将以邮件、电话、推送通知、短消息的方式告知您,难以逐一告知个人信息主体时,我们会采取合理、有效的方式发布公告。同时,我们还将按照监管部门要求,上报个人信息安全事件的处置情况。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 六、 我们如何保护未成年人的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 若您是未满18周岁的未成年人,您应在您的监护人监护、指导下并获得监护人同意的情况下,认真阅读并同意本政策后,方可使用我们的服务或向我们提供信息。若您未取得监护人的同意,监护人可以通过联系本政策第九节中提供的联系方式通知我们处理相关账号,我们有权对相关账号的功能、使用进行限制,包括但不限于浏览、发布信息、互动交流等功能。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 我们非常重视对未成年人的个人信息保护,未成年用户在填写个人信息时,请加强个人保护意识并谨慎对待,并应在取得监护人的同意以及在监护人指导下正确使用我们提供的产品及相关服务。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 未成年人用户及其监护人理解并确认,如您违反法律法规、本政策内容,则您及您的监护人应依照法律规定承担因此而可能导致的全部法律责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 我们在应用内专门为未成年人提供了青少年模式,监护人应为未成年人选择使用青少年模式。同时,我们为14周岁以下的儿童制定了专门的隐私保护政策,如您为儿童,我们要求您请您的父母或其他监护人仔细阅读本隐私信息保护政策及《儿童隐私政策》,并在征得您的父母或其他监护人明确同意的前提下使用我们的服务或向我们提供信息。对于经父母或其他监护人同意使用我们的产品或服务而收集儿童个人信息的情况,我们只会在法律法规允许、父母或监护人明确同意或者保护未成年人所必要的情况下使用、共享、转让或披露此信息。如您的父母或其他监护人不同意您按照本政策使用我们的服务或向我们提供信息,请立即终止使用我们的服务并及时通知我们,以便我们采取相应的措施,如果监护人发现我们在未获监护人同意的情况下收集了未成年人的个人信息,可通过第九节中的联系方式与我们联系,我们会设法尽快删除相关数据。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 未成年人个人信息的保护将同样适用于严格的个人信息访问权限控制制度和个人信息处理记录与管控措施我们始终遵循最小够用的授权原则,采取相应技术措施以尽可能避免未成年人个人信息被违法复制、下载。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们已制定的个人信息安全事件应急预案将同样适用于对未成年人个人信息的保护。我们定期组织内部相关人员进行应急响应培训和应急演练,使其掌握岗位职责和应急处置策略和规程。在不幸发生未成年人个人信息安全事件后,我们将按照法律法规的要求,及时向未成年人及其监护人告知:安全事件的基本情况和可能的影响、我们已采取或将要采取的处置措施、未成年人及其监护人可自主防范和降低风险的建议、对未成年人及其监护人的补救措施。我们将及时将事件相关情况以APP推送通知、发送邮件/短消息的方式告知未成年人及其监护人。难以逐一告知时,我们会采取合理、有效的方式发布相关警示信息。同时,我们还将按照监管部门要求,主动上报未成年人个人信息安全事件的处置情况。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 若您是未成年人的父母或其他监护人,请您关注您监护的未成年人是否是在取得您的授权同意之后使用我们的服务。如您对您所监护的未成年人的个人信息有疑问,请通过第九节中的联系方式与我们联系。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 七、 您如何行使您的个人信息权利 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们通过提供便捷的方法,让您可以访问、更正及删除自己的账户信息或使用我们的服务时您提供的其他个人信息。您可以通过如下方式访问及管理您的个人信息,但我们在不同的版本或操作系统中提供的管理方式路径可能存在差异,请以实际为准。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (一) 访问您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您有权访问您的个人信息,但法律法规规定的例外情况除外。您可以通过以下方式自行访问您的个人信息: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 账户信息——如果您希望访问或编辑您的账户中的账户信息、更改您的密码或关闭您的账户,您可以登录账号通过“账号管理”执行此类操作;例如您可以登录PC端或APP端“我的-设置-账号与安全”查询、修改自己的账号绑定情况、设置/修改密码、查看最近登录设备。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 资料信息——如果您希望访问或编辑您的账户中的个人资料,您可以通过在App端“我的-头像-编辑资料”来添加、修改、删除您的头像、昵称、性别、生日、地区、声音签名、简介。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如果您无法通过上述方式访问您的个人信息,您可以随时通过本政策披露的联系方式联系我们,我们将在十五个工作日内回复您的请求。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (二) 更正或补充您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 当您发现我们处理的关于您的个人信息有错误时,您有权要求我们做出更正或补充。您可以通过“(一)访问您的个人信息”中列明的方式提出更正或补充申请。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如果您无法通过上述方式访问您的个人信息或者其他可能目前无法向您提供在线自行更正/修改服务的,您可以随时通过本政策披露的联系方式联系我们,我们将在十五个工作日内回复您的请求。经过对您身份的验证,且更正/修改不影响信息的客观性和准确性的情况下,您有权对错误或不完整的信息作出更正或修改,但法律法规另有规定的除外。出于安全性和身份识别的考虑,您可能无法修改注册时提交的某些初始注册信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (三) 删除您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您有权通过“(一)访问您的个人信息”中列明的方式对已经填写的信息进行删除。同时,在以下情形中,您可以通过本政策披露的联系方式联系我们,向我们提出删除个人信息的请求,我们将在十五个工作日内回复您的请求: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1.如果我们处理个人信息的行为违反法律法规; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2.如果我们收集、使用您的个人信息,却未征得您的明确同意; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3.如果我们处理个人信息的行为严重违反与您的约定; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 4.如果您不再使用我们的产品或服务,或您主动注销账号; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 5.如果我们永久不再为您提供产品或服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 若我们决定响应您的删除请求,我们还将同时尽可能通知从我们处获得您的个人信息的主体,要求其及时删除,除非法律法规另有规定,例如您所提供的订单类交易数据,将会基于法律法规要求至少保留3年,或这些主体获得您的独立授权。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (四) 个人信息副本获取 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如您需要您的个人信息的副本,您可以通过本隐私政策文末提供的方式联系我们,在核实您的身份后,我们将向您提供您在我们的服务中的个人信息副本(包括基本资料、身份信息),但法律法规另有规定的或本政策另有约定的除外。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (五) 改变您授权同意的范围 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您可在您的设备系统设置-应用-APP名称-权限中逐项查看您授权同意权限的状态,或在NU护理单元App内通过“我的-设置-隐私管理-系统权限”查看并可自行决定这些权限随时的开启或关闭。对于不同功能服务中个人信息的收集和使用,您也可以与NU护理单元客服联系给予或收回您的授权同意,我们将在十五个工作日内回复您的请求。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"当您撤回同意后,我们将不再处理相应的个人信息,我们将无法继续为您提供撤回同意或授权所对应的服务。但您撤回同意的决定,不会影响此前基于您的授权而开展的个人信息处理。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (六) 注销账户 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 当您注销账号后,您将无法再以该账号登录和使用我们的产品与服务;且该账号在使用我们的产品与服务期间已产生的但未消耗完毕的权益及未来的预期利益等全部权益将被清除;该账号下的内容、信息、数据、记录等将会被删除或匿名化处理,但法律法规另有规定或监管部门另有要求的除外;您的账号注销完成后,将无法恢复。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如您在谨慎考虑后仍决定注销您的账号的,您可以在您使用的我们的产品与/或服务的相关功能设置页面或根据操作指引向我们提交注销申请,例如,您可以通过“我的-设置-账号与安全-注销账户”自行在“注销账户”页面提交账户注销申请。若未能申请成功,您也可联系NU护理单元客服,我们将在十五个工作日内回复您的请求。在您主动注销账户之后,我们将停止为您提供产品或服务。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (七) 限制自动化决策 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 在NU护理单元App端,您可以通过“我的-设置-隐私管理-个性化内容推荐/个性化广告推荐”选择是否使用我们提供的个性化服务。此外,在某些业务功能中,经向您告知并取得同意后,我们可能仅依据信息系统、算法在内的非人工自动决策机制做出决定。如果您认为这些决定显著影响您的合法权益,您有权通过本政策披露的联系方式要求我们做出解释,我们也将在十五个工作日内回复您的请求,为您提供申诉方法。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (八) 退订 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如您发现收到了不属于您主动搜索、浏览的视频内容和产品、服务信息推送。如您不希望接收上述信息,可通过原路径进行退订,例如短信推送可以直接回复相关的退订口令。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (九) 投诉 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您有权通过本政策披露的联系方式联系我们进行投诉。我们将在收到您投诉之日起十五个工作日内做出答复。如果您对我们的答复不满意,特别是我们的个人信息处理行为损害了您的合法权益,您还可以向网信、公安、工商等监管部门进行投诉或举报,或向有管辖权法院提起诉讼,但我们希望您能够首先就相关问题与我们取得联系。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (十) 响应您的上述请求 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 为保障安全,您可能需要提供书面请求,或以其他方式证明您的身份。我们可能会先要求您验证自己的身份,然后再处理您的请求。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 对于您合理的请求,我们原则上不收取费用。但对多次重复、超出合理限度的请求,我们将视情收取一定成本费用。对于那些无端重复、需要过多技术手段(例如需要开发新系统或从根本上改变现行管理)、给他人合法权益带来风险或者非常不切实际的请求,我们可能会予以拒绝。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 此外,如果您的请求直接涉及国家安全、国防安全、公共卫生、犯罪侦查等和公共利益直接相关的事由,或者可能导致您或者其他个人、组织的合法权益受到严重损害,或者基于NU护理单元履行法律法规规定的义务相关的情形,或者有充分证据标明您存在主观恶意或滥用权利,或者响应您的请求将导致您或者其他个人、组织的合法权益受到严重损害的,我们将无法响应您的请求。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 如果您无法通过上述方式访问您的个人信息,您都可以通过第九节中的联系方式与我们取得联系,我们将在十五个工作日内回复您的权利响应请求。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 七:您如何行使您的个人信息权利 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您理解,您与NU护理单元签署的本政策所列明的条款,并不能完全涵盖您与NU护理单元所有的关于个人信息的权利和义务。因此,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元公布其他声明(包括但不限于页面提示、新签署文件、弹窗、网站公告或站内信等)、各形式规则均视为本政策之补充条款,为本政策不可分割的组成部分,与本政策具有同等法律效力。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 未经您明确同意,我们不会限制您按照本政策所应享有的权利。我们将在NU护理单元专门链接上发布对隐私权政策所做的任何变更和更新。对于重大变更,我们还会提供更为显著的通知(包括通过平台公示通知甚至向您进行弹窗提示)。本政策所指的重大变更包括但不限于: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1.我们的服务模式发生重大变化。如处理个人信息的目的、处理的个人信息类型、个人信息的使用方式; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2.我们在控制权方面发生重大变化。如并购重组引起的所有者变更; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3.个人信息共享、转让或公开披露的主要对象发生变化; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 4.您参与个人信息处理方面的权利及其行使方式发生重大变化; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 5.我们负责处理个人信息安全的责任部门、联络方式及投诉渠道发生变化时。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},' 为了您能及时接收到通知,建议您在您个人的联系方式更新时及时通知我们。如您在本政策更新生效后继续使用我们的服务,即代表您已充分阅读、理解并接受更新后的政策并愿意受更新后的政策约束。我们鼓励您在每次使用我们服务时都查阅本政策。您可以在NU护理单元APP通过"首页-我的-设置-隐私政策"中查看本政策。 '),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 八、如何联系我们 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您可以通过以下方式与我们联系,我们将在十五个工作日内回复您的请求: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们设立了个人信息保护专职部门,如您对NU护理单元隐私信息保护政策、儿童个人信息有任何疑问、意见或建议,或有关于网络信息安全的投诉和举报,您可通过以下方式与我们取得联系: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们收件地址:长春市经济开发区长吉南线以东、吉林大路以南东方广场中意国际大厦B座1431号; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 联系人:NU护理单元客服部 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 联系方式:18043530712 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 联系邮箱:service@blxinchuang.com "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本政策签订地为中华人民共和国吉林省长春市,因本政策生效、履行、解释及使用NU护理单元产品和/或服务而产生或与本政策相关的一切争议、权利主张或其他事项,均适用中华人民共和国法律(为本政策之目的,港澳台地区法律不在此列)。您与NU护理单元及其关联公司或NU护理单元发生的一切争议,应友好协商,如协商不成的,您同意双方通过将争议提交本政策签订地有管辖权的法院解决。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 请您再次确认您已全部阅读并充分理解上述条款。 ")])])}],["__scopeId","data-v-842c1160"]]),v="https://www.focusnu.com/opeapi",p=e=>{let t=e.url,a=e.method||"get",i=e.data||{},n={"X-Access-Token":uni.getStorageSync("token")||"","Content-Type":"application/json;charset=UTF-8",Authorization:"Basic c2FiZXI6c2FiZXJfc2VjcmV0",...e.header};return new Promise(((e,r)=>{uni.request({url:/^https?:\/\//.test(t)?t:v+t,method:a,header:n,data:i,timeout:5e3,success(a){const n=a;if(200==n.statusCode)e(n.data);else switch(l("log","at request/index.js:34","http",/^https?:\/\//.test(t)?t:v+t),l("log","at request/index.js:35","res",a),l("log","at request/index.js:36","data",i),n.statusCode){case 401:uni.showModal({title:"提示",content:"登录过期",showCancel:!1,success(){uni.clearStorageSync(),setTimeout((()=>{uni.navigateTo({url:"/pages/login/login"})}),1e3)}});break;case 404:uni.showToast({title:"请求地址不存在...",duration:2e3});break;default:uni.showToast({title:"请重试...",duration:2e3})}},fail(e){l("log","at request/index.js:69",e),-1!==e.errMsg.indexOf("request:fail")?uni.showToast({title:"网络异常",icon:"error",duration:2e3}):uni.showToast({title:"未知异常",duration:2e3}),r(e)},complete(){uni.hideLoading(),uni.hideToast()}})})).catch((()=>{}))},g=s({__name:"huakuai",emits:["success"],setup(t,{emit:a}){const i=a,n=100,r=e.ref(400),o=e.ref(400),c=e.ref(0),s=e.ref(0),d=e.ref(0),m=e.ref(!1),u=e.ref(0),v=e.ref(""),p=e.getCurrentInstance();const g=`path('${w=n,`\n M20 0\n h${w/3-20}\n a20 20 0 0 1 0 40\n h${w/3}\n a20 20 0 0 0 0 -40\n h${w/3-20}\n v${w/3-20}\n a20 20 0 0 1 -40 0\n v${w/3}\n a20 20 0 0 0 40 0\n v${w/3-20}\n h-${w/3-20}\n a20 20 0 0 1 0 -40\n h-${w/3}\n a20 20 0 0 0 0 40\n h-${w/3-20}\n z\n `}')`;var w;function h(){e.nextTick((()=>{p?uni.createSelectorQuery().in(p.proxy).select(".bg-image").boundingClientRect((e=>{e?(r.value=2*e.width,o.value=2*e.height,c.value=Math.random()*(r.value-200)+n,c.value<100&&(c.value=100),c.value>400&&(c.value=400),s.value=o.value/2,d.value=0):l("error","at component/public/huakuai.vue:115","无法获取图片尺寸")})).exec():l("error","at component/public/huakuai.vue:107","无法获取组件实例")}))}function f(e){m.value=!0,u.value=2*e.touches[0].clientX}function N(e){if(!m.value)return;let t=2*e.touches[0].clientX-u.value;t=Math.max(0,Math.min(t,r.value-n)),d.value=t}function y(){m.value=!1,Math.abs(d.value+47-c.value)<20?(uni.showToast({title:"验证成功",icon:"none",duration:2e3}),i("success")):(d.value=0,uni.showToast({title:"验证失败",icon:"none",duration:2e3}))}return e.onMounted((()=>{const e=["https://www.focusnu.com/media/directive/login/0.png","https://www.focusnu.com/media/directive/login/1.png","https://www.focusnu.com/media/directive/login/2.png"];v.value=e[Math.floor(Math.random()*e.length)],l("log","at component/public/huakuai.vue:172","加载图片:",v.value)})),(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"captcha-container",id:"container"},[e.createElementVNode("view",{class:"font-title"},"请通过滑块验证"),e.createElementVNode("view",{class:"captcha-image",style:{position:"relative",width:"100%",height:"400rpx",overflow:"hidden"}},[e.createElementVNode("image",{src:v.value,class:"bg-image",mode:"widthFix",onLoad:h},null,40,["src"]),e.createElementVNode("view",{class:"overlay",style:e.normalizeStyle({width:r.value+"rpx",height:o.value+"rpx"})},[e.createElementVNode("view",{class:"hole",style:e.normalizeStyle({top:s.value+"rpx",left:c.value+"rpx",width:"100rpx",height:"100rpx",clipPath:g,transform:"translate(-50%, -50%)",backgroundColor:"rgba(0,0,0,0.6)"})},null,4),e.createElementVNode("view",{class:"piece",style:e.normalizeStyle({top:s.value+"rpx",left:d.value+47+"rpx",width:"100rpx",height:"100rpx",backgroundImage:`url(${v.value})`,backgroundSize:r.value+"rpx "+o.value+"rpx",backgroundPosition:`-${c.value-45}rpx -${s.value-50}rpx`,clipPath:g,transform:"translate(-50%, -50%)"})},null,4)],4)]),e.createElementVNode("view",{class:"slider-bar"},[e.createElementVNode("view",{class:"slider-bar-font"},"向右滑动滑块填充拼图"),e.createElementVNode("view",{class:"slider-button",ref:"btn",onTouchstart:f,onTouchmove:N,onTouchend:y,style:e.normalizeStyle({left:d.value+"rpx",maxWidth:r.value-n+"rpx"})},[e.createElementVNode("image",{src:"https://www.focusnu.com/media/directive/login/right.png",style:{width:"50rpx",height:"50rpx"},mode:"widthFix"})],36)])]))}},[["__scopeId","data-v-ca7ea5fb"]]),w=s(e.defineComponent({__name:"login",setup(a){const i=e.ref(null),r=e.ref(!1),s=e.ref(!1),v=e.reactive({username:"",password:"",captcha:"",checkKey:0}),w=e.reactive({oldpassword:"",newpassword:""}),h=e.computed((()=>{return v.password&&("string"==typeof(e=v.username)&&11===e.length);var e})),f=e.ref(!1);function N(){T.value=!1,r.value=!0,B()}function y(){f.value=!1,uni.setStorageSync("appWgtVersion",uni.getSystemInfoSync().appWgtVersion)}function x(){plus.runtime.quit()}const E=e=>{uni.navigateTo({url:e})},V=e.ref(!1),b=e.ref(0),k=()=>{var e;/^\d{11}$/.test(v.username)?(e=v.username,p({url:`/api/pad/loginApi/getAdvisoryInfo?tel=${encodeURIComponent(e)}`,method:"get"})).then((e=>{null!==e.result&&e.result.serverUrl?(uni.setStorageSync("serverUrl",e.result.serverUrl),b.value=Date.now(),(e=>p({url:`${uni.getStorageSync("serverUrl")}/sys/randomCode/${e}`,method:"get"}))(b.value).then((e=>{v.captcha=e.message,V.value=!0}))):(uni.setStorageSync("serverUrl",""),uni.showToast({title:"该手机号未绑定机构",icon:"none",duration:2e3}),V.value=!1)})):v.username&&uni.showToast({title:"手机号不足11位",icon:"none",duration:2e3})},T=e.ref(!1),D=e.ref(!1),C=e.ref(!1),S=e.ref(!1),B=()=>{r.value?s.value=!0:T.value=!0},z=()=>{2===_.value?setTimeout((()=>{E("/pages/watch/index")}),500):_.value++},_=e.ref(0),I=()=>{var e;v.checkKey=b.value,s.value=!1,(e=v,p({url:`${uni.getStorageSync("serverUrl")}/sys/login`,method:"post",data:e})).then((e=>{e.success?(uni.showToast({title:e.message,icon:"none",duration:500}),uni.setStorageSync("token",e.result.token),uni.setStorageSync("username",v.username),uni.setStorageSync("realname",e.result.userInfo.realname),2===_.value?setTimeout((()=>{E("/pages/watch/index")}),500):_.value++):uni.showToast({title:e.message,icon:"none",duration:2e3})}))};return o((()=>{var e,a;uni.getStorageSync("appWgtVersion")!=uni.getSystemInfoSync().appWgtVersion&&(f.value=!0),t("MonitorModule").initSMBCloudSDK(),e=t("MonitorModule"),a={userName:"admin",password:"Bl20230518",serverAddress:"121.36.88.64",port:8888},e.cloudLoginIn(a,(e=>{l("log","at pages/login/login.vue:315","?????",e),_.value?setTimeout((()=>{E("/pages/watch/index")}),500):_.value=!0}))})),n((()=>{var e;null==(e=i.value)||e.check_update(),uni.getStorageSync("token")&&1!==uni.getStorageSync("token")&&(2===_.value?setTimeout((()=>{E("/pages/watch/index")}),500):_.value++)})),(t,l)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("view",{class:"backgroundContainer"},[e.createElementVNode("image",{class:"title-img",src:"/static/index/superNu.png"}),e.createElementVNode("view",{class:"input-father"},[e.createElementVNode("view",{class:"add"},"+86"),e.createElementVNode("view",{class:"shu"}),e.withDirectives(e.createElementVNode("input",{style:{"font-size":"27rpx",height:"350rpx"},type:"number","onUpdate:modelValue":l[0]||(l[0]=e=>v.username=e),maxlength:"11",placeholder:"请输入手机号",onBlur:k},null,544),[[e.vModelText,v.username]])]),e.createElementVNode("view",{class:"input-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:"",type:"text","onUpdate:modelValue":l[1]||(l[1]=e=>v.password=e),maxlength:"15",placeholder:"请输入密码"},null,512),[[e.vModelText,v.password]])]),e.withDirectives(e.createElementVNode("view",{class:"input-father-gray"}," 验证并登录 ",512),[[e.vShow,!h.value||!V.value]]),e.withDirectives(e.createElementVNode("view",{class:"input-father-blue",onClick:l[2]||(l[2]=e=>B())}," 验证并登录 ",512),[[e.vShow,h.value&&V.value]]),e.createElementVNode("view",{class:"under-container-title"},[e.createElementVNode("view",{class:e.normalizeClass(r.value?"radio-circle-target":"radio-circle"),onClick:l[3]||(l[3]=e=>r.value=!r.value)},null,2),e.createElementVNode("view",{style:{"margin-left":"17rpx"},class:"radio-circle-font",onClick:l[4]||(l[4]=e=>r.value=!r.value)},"我已阅读并同意"),e.createElementVNode("view",{class:"radio-circle-blue",onClick:l[5]||(l[5]=e=>{C.value=!0,S.value=!0})}," 《用户协议》 "),e.createElementVNode("view",{class:"radio-circle-blue",onClick:l[6]||(l[6]=e=>{C.value=!0,S.value=!1})}," 《隐私政策》 ")])]),f.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-wrapper",style:{"z-index":"999"}},[e.createElementVNode("view",{class:"mask"}),e.createElementVNode("view",{class:"box"},[e.createElementVNode("view",{class:"box-title"}," 服务条款和隐私保护提示 "),e.createElementVNode("view",{class:"font-father"},[e.createElementVNode("view",{class:""}," 欢迎使用护理单元app! "),e.createElementVNode("view",{style:{"text-indent":"2em"}},[e.createTextVNode(" 我们将通过"),e.createElementVNode("text",{class:"text-blue",onClick:l[7]||(l[7]=e=>{C.value=!0,S.value=!0})},"《用户协议》"),e.createTextVNode("和"),e.createElementVNode("text",{class:"text-blue",onClick:l[8]||(l[8]=e=>{C.value=!0,S.value=!1})},"《隐私政策》"),e.createTextVNode(",帮助您了解我们为您提供的服务、我们如何处理个人信息以及您享有的权利。我们会严格按照相关法律法规要求,采取各种安全措施来保护您的个人信息。 ")]),e.createElementVNode("view",{style:{margin:"30rpx 0"}}," 点击“同意”按钮,表示您已知情并同意以上协议和以下约定。 ")]),e.createElementVNode("view",{class:"gray-box-bgc"},[e.createElementVNode("scroll-view",{style:{width:"100%",height:"100%"},"scroll-y":"","show-scrollbar":!0},[e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 1、服务条款与隐私政策确认:登录即表示您已阅读并同意《NU 护理单元用户服务协议》及《NU 护理单元隐私信息保护政策》,其中包含对您权利义务、个人信息处理的详细说明。 "),e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 2、账号使用规范:账号仅限本人使用,禁止恶意注册、转借或泄露。请妥善保管账号密码,因保管不善导致的账号安全问题,由您自行承担责任。 "),e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 3、内容发布责任:您在平台发布的内容需遵守法律法规,不得包含不良信息或侵犯他人权益的内容。发布利用新技术制作的非真实信息时,须显著标识。 "),e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 4、个人信息保护:我们将依法收集、使用您的个人信息(如手机号用于注册登录),您可通过 “我的 - 设置 - 隐私管理” 查看、修改授权,也可申请注销账号(注销后相关数据将按规定处理)。 "),e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 5、未成年人使用提示:未满 18 周岁用户需在监护人同意后使用,监护人可联系客服人员处理未成年人账号相关事宜,我们将严格保护未成年人信息。 ")])]),e.createElementVNode("view",{class:"blue-button",onClick:y},"同意"),e.createElementVNode("view",{class:"white-button",onClick:x},"不同意")])])):e.createCommentVNode("",!0),C.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"popup-any"},[e.createElementVNode("view",{class:"mask",onClick:l[9]||(l[9]=e=>C.value=!1)}),e.createElementVNode("view",{class:"box-any"},[e.createElementVNode("view",{class:"title-left"},[e.createElementVNode("image",{class:"back-img",src:c,onClick:l[10]||(l[10]=e=>C.value=!1)}),S.value?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"back-font"},"NU护理单元隐私信息保护政策")),S.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"back-font"},"NU护理单元用户服务协议")):e.createCommentVNode("",!0)]),S.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(u,{key:0})),S.value?(e.openBlock(),e.createBlock(m,{key:1})):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0),T.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"popup-wrapper"},[e.createElementVNode("view",{class:"mask",onClick:l[11]||(l[11]=e=>T.value=!1)}),e.createElementVNode("view",{class:"box-small"},[e.createElementVNode("view",{class:"box-title",style:{"margin-top":"30rpx"}}," 请阅读并同意以下条款 "),e.createElementVNode("view",{class:"font-father"},[e.createElementVNode("text",{class:"text-blue",onClick:l[12]||(l[12]=e=>{C.value=!0,S.value=!0})},"《用户协议》"),e.createElementVNode("text",{class:"text-blue",onClick:l[13]||(l[13]=e=>{C.value=!0,S.value=!1})},"《隐私政策》")]),e.createElementVNode("view",{class:"blue-button",onClick:N},"同意并继续")])])):e.createCommentVNode("",!0),D.value?(e.openBlock(),e.createElementBlock("view",{key:3,class:"popup-wrapper"},[e.createElementVNode("view",{class:"mask"}),e.createElementVNode("view",{class:"box-change"},[e.createElementVNode("view",{class:"box-title"}," 修改账户登录密码 "),e.createElementVNode("view",{class:"input-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":l[14]||(l[14]=e=>w.oldpassword=e),maxlength:"15",placeholder:"请输入新密码"},null,512),[[e.vModelText,w.oldpassword]])]),e.createElementVNode("view",{class:"input-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":l[15]||(l[15]=e=>w.newpassword=e),maxlength:"15",placeholder:"请再次输入新密码"},null,512),[[e.vModelText,w.newpassword]])]),e.createElementVNode("view",{class:"blue-button",style:{"margin-top":"80rpx"},onClick:l[16]||(l[16]=e=>D.value=!1)},"确定")])])):e.createCommentVNode("",!0),e.createVNode(d,{ref_key:"zyupgrade",ref:i,noticeflag:!0,theme:"blue",h5preview:!1,oldversion:"1.0.0",appstoreflag:!0,autocheckupdate:!0,onShowupdateTips:z},null,512),s.value?(e.openBlock(),e.createElementBlock("view",{key:4,class:"bg-mask",onClick:l[18]||(l[18]=e=>s.value=!1)},[e.createVNode(g,{onClick:l[17]||(l[17]=e.withModifiers((()=>{}),["stop"])),onSuccess:I})])):e.createCommentVNode("",!0)],64))}}),[["__scopeId","data-v-b090754f"]]);const h=s({data:()=>({title:"Hello"}),onLoad(){t("globalEvent").addEventListener("myEvent",(function(e){l("log","at pages/denglu.vue:20","myEvent"+JSON.stringify(e)),uni.showToast({title:"myEvent"+JSON.stringify(e),duration:2e3})}))},methods:{testAsyncFunc(){t("MonitorModule").gotoNativePage({deviceId:"4",deviceName:"sdfsfsdf"})},jumptonve(){uni.navigateTo({url:"/pages/ceshianzhuo"})},init(e){t("MonitorModule").initSMBCloudSDK()},login(e){t("MonitorModule").cloudLoginIn({userName:"admin",password:"Bl20230518",serverAddress:"121.36.88.64",port:8888},(e=>{l("log","at pages/denglu.vue:58","loginResult",e.code),uni.showToast({title:"操作成功",duration:2e3})}))},logout(e){t("MonitorModule").cloudLoginOut((e=>{l("log","at pages/denglu.vue:68","loginResult",e.code)}))}}},[["render",function(t,l,a,i,n,r){return e.openBlock(),e.createElementBlock("view",{class:"content"},[e.createElementVNode("button",{class:"typebutton",type:"primary",onClick:l[0]||(l[0]=(...e)=>r.init&&r.init(...e))},"初始化sdk"),e.createElementVNode("button",{class:"typebutton",type:"primary",onClick:l[1]||(l[1]=(...e)=>r.login&&r.login(...e))},"登陆"),e.createElementVNode("button",{class:"typebutton",type:"primary",onClick:l[2]||(l[2]=(...e)=>r.logout&&r.logout(...e))},"退出登陆"),e.createElementVNode("button",{class:"typebutton",type:"primary",onClick:l[3]||(l[3]=(...e)=>r.jumptonve&&r.jumptonve(...e))},"跳到nvue")])}]]),f=s(e.defineComponent({__name:"index",setup(t){e.ref(!1);const l=e.ref(null),a=[{name:"初始化",url:"/pages/Initialization/index"},{name:"护理单元",url:"/pages/Nursing/index"},{name:"仓库",url:"/pages/Warehousing/index"}];return o((e=>{})),n((()=>{var e;null==(e=l.value)||e.check_update()})),(t,i)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("view",{class:"backgroundContainer"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(a,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"menuCard",onClick:e=>{return l=t.url,void uni.navigateTo({url:l});var l}},e.toDisplayString(t.name),9,["onClick"])]))),64))]),e.createVNode(d,{ref_key:"zyupgrade",ref:l,noticeflag:!0,theme:"blue",h5preview:!1,oldversion:"1.0.0",appstoreflag:!0,autocheckupdate:!0},null,512)],64))}}),[["__scopeId","data-v-bd6792ac"]]),N="/static/index/oldman.png",y="/static/index/customer.png",x=s({__name:"Drawer",props:{widNumber:{type:Number,default:85},canclose:{type:Boolean,default:!0}},setup(t,{expose:l}){const a=e.ref(!1),i=t,n=e.computed((()=>({width:`${i.widNumber}%`})));function r(){i.canclose&&(a.value=!1)}return l({openDrawer:function(){a.value=!0},closeDrawer:function(){a.value=!1}}),(l,i)=>(e.openBlock(),e.createElementBlock("view",null,[e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(["overlay",{"overlay-show":a.value}]),onClick:r},null,2),[[e.vShow,a.value]]),e.createElementVNode("view",{class:e.normalizeClass(["drawer",{"drawer-open":a.value}]),style:e.normalizeStyle(n.value)},[e.createElementVNode("view",{class:"drawer-content"},[e.withDirectives(e.createElementVNode("view",{class:"drawer-content-circle",onClick:r},[e.createElementVNode("image",{class:"drawer-img",src:"/static/index/zuoyuan.png"})],512),[[e.vShow,a.value&&t.canclose]]),e.renderSlot(l.$slots,"default",{},void 0,!0)])],6)]))}},[["__scopeId","data-v-8cdafce2"]]),E="/static/index/teeth.png",V="/static/index/helpdo/xian.png",b=s(e.defineComponent({__name:"index",setup(t){const l=e=>{},a=e.ref(!1);e.ref(null);const i=e.ref(-1),n=e.ref(0),r=uni.createVideoContext("myVideo"),o=()=>{r.pause(),a.value=!1};e.computed((()=>{switch(c.value){case 0:return"0";case 1:return"calc(100% - 600rpx)";case 2:return"calc(100% - 120rpx)";default:return"100%"}}));const c=e.ref(0);return(t,r)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"转单执行")]),e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"downitems-father"},[e.createElementVNode("view",{class:"downitems-left"},[e.createElementVNode("view",{class:"downitems-left-mar"},[e.createElementVNode("image",{class:"downitems-left-img",src:E}),e.createElementVNode("view",{class:"downitems-left-father"},[e.createElementVNode("image",{class:"downitems-father-img",src:"/static/index/helpdo/zero.png"}),e.createElementVNode("view",{class:"downitems-father-font"},"清洁照料")]),e.createElementVNode("view",{class:"downitems-left-father"},[e.createElementVNode("image",{class:"downitems-father-img",src:"/static/index/helpdo/one.png"}),e.createElementVNode("view",{class:"downitems-father-font"},"四肢清洁")]),e.createElementVNode("view",{class:"downitems-left-father"},[e.createElementVNode("image",{class:"downitems-father-img",src:"/static/index/helpdo/two.png"}),e.createElementVNode("view",{class:"downitems-father-font-laba"},"协助清洁(四肢)"),e.createElementVNode("image",{class:"downitems-father-img-laba",src:"/static/index/helpdo/laba.png"})]),e.createElementVNode("view",{class:"downitems-left-father"},[e.createElementVNode("image",{class:"downitems-father-img",src:"/static/index/helpdo/three.png"}),e.createElementVNode("view",{class:"downitems-father-font-small"},"准备清水,一次性面巾,香皂,清洁后涂身体保湿乳。")]),e.createElementVNode("view",{class:"downitems-kuai",onClick:r[0]||(r[0]=e=>a.value=!0)},[e.createElementVNode("image",{class:"downitems-kuai-img",src:"/static/index/helpdo/video.png"})]),e.createElementVNode("view",{class:"downitems-says"}," 视频讲解 ")])]),e.createElementVNode("image",{class:"downitems-shu",src:V}),e.createElementVNode("view",{class:"downitems-center"},[e.createElementVNode("view",{class:"downitems-center-title"},[e.createElementVNode("view",{class:"downitems-center-title-gun"}),e.createElementVNode("view",{class:"downitems-center-title-font"},"转单原因"),e.createElementVNode("view",{class:"downitems-center-says"},[e.createElementVNode("view",{class:"downitems-center-father"},[e.createElementVNode("image",{class:"downitems-center-says-maike",src:"/static/index/helpdo/maike.png"})]),e.createElementVNode("view",{class:""},"语音输入")])]),e.createElementVNode("view",{class:"downitems-textarea"},[e.createElementVNode("textarea",{class:"custom-textarea",onBlur:l,placeholder:"请输入"},null,32)]),e.createElementVNode("view",{class:"downitems-center-title"},[e.createElementVNode("view",{class:"downitems-center-title-gun"}),e.createElementVNode("view",{class:"downitems-center-title-font"},"转单方式")]),e.createElementVNode("view",{class:"radio-circle-top-father"},[e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(n.value?"radio-circle":"radio-circle-target"),onClick:r[1]||(r[1]=e=>n.value=0)},null,2),e.createElementVNode("view",{class:"radio-font",onClick:r[2]||(r[2]=e=>n.value=0)},"重新派单")]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(n.value?"radio-circle-target":"radio-circle"),onClick:r[3]||(r[3]=e=>{n.value=1})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:r[4]||(r[4]=e=>n.value=1)},"定向派单")])]),e.createElementVNode("view",{class:"downitems-button"}," 确认 ")]),e.createElementVNode("image",{class:"downitems-shu",style:{transform:"rotate(180deg)","margin-left":"0rpx"},src:V}),e.createElementVNode("view",{class:"downitems-right"},[e.withDirectives(e.createElementVNode("view",{class:"downitems-all"},[e.createElementVNode("view",{class:"downitems-center-title"},[e.createElementVNode("view",{class:"downitems-center-title-gun"}),e.createElementVNode("view",{class:"downitems-center-title-font"},"重新派单")]),e.createElementVNode("view",{class:"downitems-all-font"}," 选择重新派单,平台自动将服务指令重新派发给其他员工,等待执行。 ")],512),[[e.vShow,!n.value]]),e.withDirectives(e.createElementVNode("view",{class:"downitems-all"},[e.createElementVNode("view",{class:"downitems-center-title"},[e.createElementVNode("view",{class:"downitems-center-title-gun"}),e.createElementVNode("view",{class:"downitems-center-title-font"},"定向派单")]),e.createElementVNode("view",{class:"downitems-all-font"}," 选择定向转单,请选择要执行服务指令的员工。 "),e.createElementVNode("view",{class:"downitems-card-all"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([0,1,2,3,4,5,6,7],((t,l)=>e.createElementVNode("view",{class:"downitems-card"},[e.createElementVNode("view",{class:e.normalizeClass(i.value===l?"downitems-card-one-target":"downitems-card-one"),onClick:e=>(e=>{i.value=e})(l)},[e.createElementVNode("view",{class:"downitems-card-father"},[e.createElementVNode("image",{class:"downitems-card-img",src:"/static/index/helpdo/people.png"})]),e.createElementVNode("view",{class:"downitems-card-font"}," 李金福 ")],10,["onClick"])]))),64))])],512),[[e.vShow,n.value]])])])]),e.withDirectives(e.createElementVNode("view",{class:"modal",onClick:o},[e.createElementVNode("view",{class:"modal-content",onClick:r[5]||(r[5]=e.withModifiers((()=>{}),["stop"]))})],512),[[e.vShow,a.value]])]))}}),[["__scopeId","data-v-6070efba"]]),k=s(e.defineComponent({__name:"index",props:{isshow:{type:Boolean,required:!0},darkFans:{type:Boolean,required:!0}},emits:["darkchange"],setup(t,{emit:l}){const a=e.ref(null),i=t,n=e.ref(!1),r=e.ref(!1),o=e.ref(!1),c=e.ref(!1),s=e.ref(!1),d=e.ref(!1),m=e.ref(""),u=e.ref(""),v=e.ref(""),p=e.ref([{url:"/static/index/undericons/alarm.png",targetUrl:"/static/index/undericons/alarmdark.png",name:"服务考核"},{url:"/static/index/undericons/linshitime.png",targetUrl:"/static/index/undericons/linshitimedark.png",name:"护理流程"},{url:"/static/index/darkicon/zhaomingdark.png",targetUrl:"/static/index/roomicons/zhaomingtar.png",name:"电子医嘱"},{url:"/static/index/darkicon/kontiaodark.png",targetUrl:"/static/index/roomicons/kongtiaotar.png",name:"进销存"},{url:"/static/index/darkicon/nuanfengdark.png",targetUrl:"/static/index/roomicons/nuanfengtar.png",name:"实时监控"},{url:"/static/index/darkicon/dianqidark.png",targetUrl:"/static/index/roomicons/dianqitar.png",name:"我的指令"}]),g=e.ref([{url:"/static/index/hulilist/zhuandan.png",name:"转单执行"},{url:"/static/index/hulilist/xiezhu.png",name:"协助执行"},{url:"/static/index/hulilist/zhongdian.png",name:"重点追踪"}]),w=e.ref([{url:"/static/index/darkicon/zhuandandark.png",name:"转单执行"},{url:"/static/index/darkicon/xiezhudark.png",name:"协助执行"},{url:"/static/index/darkicon/zhongdiandark.png",name:"重点追踪"}]),h=e.ref([{url:"/static/index/medium/yaopin.png",name:"药品信息",number:0},{url:"/static/index/medium/qingling.png",name:"请领指令",number:60},{url:"/static/index/medium/peiyao.png",name:"配药指令",number:100},{url:"/static/index/medium/xinxi.png",name:"信息反馈",number:0},{url:"/static/index/medium/xinxi.png",name:"信息反馈2",number:0}]),f=e.ref([{url:"/static/index/darkicon/yaopindark.png",name:"药品信息",number:55},{url:"/static/index/darkicon/qinglingdark.png",name:"请领指令",number:10},{url:"/static/index/darkicon/peiyaodark.png",name:"配药指令",number:100},{url:"/static/index/darkicon/xinxidark.png",name:"信息反馈",number:15},{url:"/static/index/darkicon/xinxidark.png",name:"信息反馈2",number:20}]),N=e.ref([{url:"/static/index/roomicons/zhaoming.png",targetUrl:"/static/index/roomicons/zhaomingtar.png",name:"照明"},{url:"/static/index/roomicons/kongtiao.png",targetUrl:"/static/index/roomicons/kongtiaotar.png",name:"空调"},{url:"/static/index/roomicons/nuanfeng.png",targetUrl:"/static/index/roomicons/nuanfengtar.png",name:"暖风"},{url:"/static/index/roomicons/dianqi.png",targetUrl:"/static/index/roomicons/dianqitar.png",name:"电器"}]),E=e.ref([{url:"/static/index/darkicon/zhaomingdark.png",targetUrl:"/static/index/roomicons/zhaomingtar.png",name:"照明"},{url:"/static/index/darkicon/kontiaodark.png",targetUrl:"/static/index/roomicons/kongtiaotar.png",name:"空调"},{url:"/static/index/darkicon/nuanfengdark.png",targetUrl:"/static/index/roomicons/nuanfengtar.png",name:"暖风"},{url:"/static/index/darkicon/dianqidark.png",targetUrl:"/static/index/roomicons/dianqitar.png",name:"电器"}]);e.ref(0);const V=e.ref(0);e.ref(!1);const k=e.ref([]),T=e.ref(0),D=e.ref(0),C=e.ref(0),S=e.ref(0);e.ref(0);const B=l,z=()=>{uni.navigateTo({url:"/pages/NursingNew/index"})},_=()=>{B("darkchange",!i.darkFans)},I=e=>{if(k.value.includes(e)){let t=[];k.value.forEach((l=>{l!==e&&t.push(l)})),k.value=t}else k.value.push(e)},U=()=>{const e=new Date,t=e.getHours().toString().padStart(2,"0"),l=e.getMinutes().toString().padStart(2,"0");m.value=`${t}:${l}`;const a=e.getFullYear(),i=(e.getMonth()+1).toString().padStart(2,"0"),n=e.getDate().toString().padStart(2,"0");u.value=`${a}年${i}月${n}日`;const r=["星期日","星期一","星期二","星期三","星期四","星期五","星期六"][e.getDay()];v.value=r},M=e=>{D.value=e.detail.current},F=e=>{C.value=e.detail.current},$=()=>{n.value=!n.value,r.value=!0,o.value=!1,s.value=!1,setTimeout((()=>{r.value=!1}),500)},A=()=>{o.value=!o.value,n.value=!1,s.value=!1,c.value=!0,setTimeout((()=>{c.value=!1}),500)},L=()=>{s.value=!s.value,d.value=!0,n.value=!1,o.value=!1,setTimeout((()=>{d.value=!1}),500)};let O=null;return e.onMounted((()=>{O=U(),setInterval(U,1e3)})),e.onBeforeUnmount((()=>{clearInterval(O)})),(l,i)=>(e.openBlock(),e.createElementBlock("view",{class:"right-container",style:e.normalizeStyle(t.isshow?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," ID:12345678 ",2),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," 名称:未命名01 ",2),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"right-icons-font-dark":"right-icons-font")},"王金福",2),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/face.png":"/static/index/undericons/facelight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/hand.png":"/static/index/undericons/handlight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/out.png":"/static/index/undericons/outlight.png"},null,8,["src"])]),e.withDirectives(e.createElementVNode("view",{class:"right-container-title-class-anhei-button",onClick:i[0]||(i[0]=e=>_())},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 切换到暗黑模式 ")],512),[[e.vShow,!t.darkFans]]),e.withDirectives(e.createElementVNode("view",{class:"right-container-title-class-anhei-button",style:e.normalizeStyle(t.darkFans?{backgroundColor:"#fff"}:{}),onClick:i[1]||(i[1]=e=>_())},[e.createElementVNode("text",{class:"right-container-title-class-anhei",style:e.normalizeStyle(t.darkFans?{color:"black"}:{})}," 取消暗黑模式 ",4)],4),[[e.vShow,t.darkFans]]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button",style:{"background-color":"#fff"}},[e.createElementVNode("text",{class:"right-container-title-class-anhei",style:{color:"black"},onClick:z}," 切换到新版主页 ")])]),e.createElementVNode("view",{class:"right-container-fir"},[e.createElementVNode("view",{class:e.normalizeClass([n.value?"right-container-big":"right-container-small","right-container-fir-left-nav"]),style:e.normalizeStyle(r.value||n.value?{zIndex:999}:{zIndex:998})},[e.createElementVNode("view",{style:e.normalizeStyle(n.value?{borderRadius:"30rpx"}:{borderRadius:"50rpx"}),class:e.normalizeClass(t.darkFans?"right-container-fir-left-card-dark":"right-container-fir-left-card")},[e.createElementVNode("image",{class:"right-container-fir-left-card-hulilei",src:"/static/index/hulilei.png"},null,8,["src"]),e.createElementVNode("div",{class:"right-container-fir-left-card-hulilei-font",onClick:$},"护理类"),t.darkFans?(e.openBlock(),e.createElementBlock("image",{key:0,class:"card-upfaguang",src:"/static/index/cardbgc/uplight.png"},null,8,["src"])):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"right-container-fir-left-carousel"},[e.createElementVNode("view",{class:"carousel"},[e.createElementVNode("view",{class:"dots"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("span",{key:a,class:e.normalizeClass(t.darkFans?"dot-dark":"dot"),style:e.normalizeStyle(a===D.value?{backgroundColor:"#01A0FE"}:{})},null,6))),64))])])]),e.createElementVNode("view",{class:"right-container-fir-left-card-main"},[e.createElementVNode("swiper",{current:D.value,class:"swiper savehundred",circular:"","indicator-dots":!1,vertical:!0,interval:4e3,duration:500,onChange:M},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("view",{class:"right-container-fir-left-card-flex"},[e.createElementVNode("view",{class:"uni-margin-wrap-fir"},[e.createElementVNode("swiper",{current:T.value,class:"swiper",circular:"","indicator-dots":!1,interval:4e3,duration:500},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("view",{class:"right-container-fir-left-card-card"},[e.createElementVNode("view",{class:"right-container-fir-left-card-zhixing"},[e.createElementVNode("div",{class:"right-container-fir-left-card-zhixing-font"},"待执行 ")]),e.createElementVNode("image",{class:"right-container-fir-left-card-img",src:"/static/index/teeth.png",onClick:$},null,8,["src"]),e.createElementVNode("view",{class:"right-container-fir-left-card-main-laba-video"},[e.createElementVNode("image",{class:"right-container-fir-left-card-main-laba",src:t.darkFans?"/static/index/darkicon/labadark.png":"/static/index/laba.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-fir-left-card-main-font-dark":"right-container-fir-left-card-main-font")}," 准备洁具(口腔) ",2),e.createElementVNode("image",{class:"right-container-fir-left-card-main-video",src:(t.darkFans,"/static/index/indexvideo.png")},null,8,["src"])])]),e.createElementVNode("view",{class:"split-line"}),e.createElementVNode("view",{class:"time-tra-fir"},[e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-font-dark":"time-font")}," 10:00 - 10:10 ",2),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-text-dark":"time-text")}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ",2),e.createElementVNode("view",{class:"time-people-two"},[e.createElementVNode("view",{class:"time-people-fir"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/darkicon/zhixingpeopledark.png":"/static/index/cardicons/zhixing.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 单人执行 ",2)]),e.createElementVNode("view",{class:"time-people-sec"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/dopeopledark.png":"/static/index/cardicons/zhifa.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," -- ",2)])]),e.createElementVNode("view",{class:"time-button-view"},[e.createElementVNode("view",{class:"time-button-start"}," 开始服务 "),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-button-end-dark":"time-button-end")}," 服务结束 ",2)])])]))),64))],8,["current"])]),e.createElementVNode("view",{class:"split-line-white-right-left",style:e.normalizeStyle(t.darkFans?"background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #386997 50%, rgba(0, 0, 0, 0) 100%);":"")},[t.darkFans?(e.openBlock(),e.createElementBlock("image",{key:0,class:"split-line-white-img",src:"/static/index/cardbgc/leftlight.png"},null,8,["src"])):e.createCommentVNode("",!0)],4)])]))),64))],40,["current"]),e.createElementVNode("view",{class:"right-huli-sec"},[e.createElementVNode("image",{class:"right-huli-shang",src:"/static/index/hulilist/shang.png"},null,8,["src"]),t.darkFans?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("scroll-view",{key:0,"show-scrollbar":!1,"scroll-y":"true",class:"right-huli-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-huli-view-dis",onClick:e=>{a.value.openDrawer()}},[e.createElementVNode("image",{class:"right-huli-img",src:t.url},null,8,["src"]),e.createElementVNode("text",{class:"right-huli-text"},e.toDisplayString(t.name),1)],8,["onClick"])))),128))])),t.darkFans?(e.openBlock(),e.createElementBlock("scroll-view",{key:1,"show-scrollbar":!1,"scroll-y":"true",class:"right-huli-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(w.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-huli-view-dis"},[e.createElementVNode("image",{class:"right-huli-img",src:t.url},null,8,["src"]),e.createElementVNode("text",{class:"right-huli-text-dark"},e.toDisplayString(t.name),1)])))),128))])):e.createCommentVNode("",!0),e.createElementVNode("image",{class:"right-huli-xia",src:"/static/index/hulilist/xia.png"},null,8,["src"])])])],6)],6),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"right-container-fir-right-dark":"right-container-fir-right")},[e.createElementVNode("view",{class:"right-container-card"},[e.createElementVNode("view",{class:"right-container-card-right"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3,4],((t,l)=>e.createElementVNode("view",{class:"",key:l},[e.createElementVNode("image",{class:"right-container-card-right-img",src:y})]))),64))]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-dark":"right-container-title")},e.toDisplayString(m.value),3),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-date-dark":"right-container-date")},e.toDisplayString(u.value),3),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-day-dark":"right-container-day")},e.toDisplayString(v.value),3),e.createElementVNode("view",{class:"right-container-tem"},[e.createElementVNode("image",{class:"right-container-tem-img",src:t.darkFans?"/static/index/darkicon/wendudark.png":"/static/index/roomicons/wendu.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-tem-text-dark":"right-container-tem-text")},"23°C",2),e.createElementVNode("image",{class:"right-container-tem-img",src:t.darkFans?"/static/index/roomicons/shidu.png":"/static/index/darkicon/shidudark.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-tem-text-dark":"right-container-tem-text")},"39%",2)]),e.createElementVNode("view",{class:"right-container-fenge"}),t.darkFans?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"right-container-button"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(N.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-container-button-any"},[e.withDirectives(e.createElementVNode("image",{class:"right-container-button-ray",src:"/static/index/cardicons/ray2.png"},null,8,["src"]),[[e.vShow,k.value.includes(l)]]),e.createElementVNode("image",{class:"right-container-button-img",src:k.value.includes(l)?t.targetUrl:t.url,onClick:e=>I(l)},null,8,["src","onClick"]),e.createElementVNode("text",{class:"right-container-button-text",style:e.normalizeStyle(k.value.includes(l)?{color:"#167ED7"}:{})},e.toDisplayString(t.name),5)])))),128))])),t.darkFans?(e.openBlock(),e.createElementBlock("view",{key:1,class:"right-container-button"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-container-button-any"},[e.withDirectives(e.createElementVNode("image",{class:"right-container-button-ray",src:"/static/index/cardicons/ray2.png"},null,8,["src"]),[[e.vShow,k.value.includes(l)]]),e.createElementVNode("image",{class:"right-container-button-img",src:k.value.includes(l)?t.targetUrl:t.url,onClick:e=>I(l)},null,8,["src","onClick"]),e.createElementVNode("text",{class:"right-container-button-text",style:e.normalizeStyle(k.value.includes(l)?{color:"#167ED7"}:{color:"#fff"})},e.toDisplayString(t.name),5)])))),128))])):e.createCommentVNode("",!0)])],2)]),e.createElementVNode("view",{class:"right-container-sec"},[e.createElementVNode("view",{class:e.normalizeClass(o.value?"right-container-left-big":"right-container-left-small"),style:e.normalizeStyle(c.value||o.value?{zIndex:999}:{zIndex:0})},[e.createElementVNode("view",{style:e.normalizeStyle(o.value?{borderRadius:"29rpx"}:{borderRadius:"50rpx"}),class:e.normalizeClass(t.darkFans?"right-container-left-dark":"right-container-left")},[e.createElementVNode("image",{class:"right-container-left-type",src:"/static/index/yiliao/yiliaolei.png"},null,8,["src"]),e.createElementVNode("div",{class:"right-container-left-font",onClick:A},"医疗类"),e.createElementVNode("view",{class:"right-container-fir-left-carousel"},[e.createElementVNode("view",{class:"carousel"},[e.createElementVNode("view",{class:"dots"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("span",{key:a,class:e.normalizeClass(t.darkFans?"dot-dark":"dot"),style:e.normalizeStyle(a===C.value?{backgroundColor:"#01A0FE"}:{})},null,6))),64))])])]),t.darkFans?(e.openBlock(),e.createElementBlock("image",{key:0,class:"card-upfaguang-down",src:"/static/index/cardbgc/uplight.png"},null,8,["src"])):e.createCommentVNode("",!0),e.createElementVNode("swiper",{current:C.value,class:"swiper savehundred",circular:"","indicator-dots":!1,vertical:!0,interval:4e3,duration:500,onChange:F},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("div",{class:"right-container-fir-left-card-flex-sec"},[e.createElementVNode("view",{class:"uni-margin-wrap"},[e.createElementVNode("swiper",{current:S.value,class:"swiper",circular:"","indicator-dots":!1,autoplay:!1,interval:4e3,duration:500},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("div",{class:"right-container-left-font-spec"},"进行中 "),e.createElementVNode("view",{class:"time-tra-sec"},[e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-font-dark":"time-font")}," 10:00 - 10:10 ",2),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/doctorsaydark.png":"/static/index/medium/doctorsay.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 医嘱类型:药品 ",2)]),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/howtododark.png":"/static/index/medium/howtodo.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 处置方式:肌肉注射 ",2)]),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/useMed.png":"/static/index/medium/yongyao.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 用药类型:抗生素类 ",2)]),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/domanydark.png":"/static/index/medium/domany.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 执行方式:周期一日执行一次 ",2)]),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/darkicon/zhixingpeopledark.png":"/static/index/cardicons/zhixing.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 单人执行 ",2),e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/dopeopledark.png":"/static/index/cardicons/zhifa.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 赵宇 ",2)]),e.createElementVNode("view",{class:"time-button-view"},[e.createElementVNode("view",{class:"time-button-start"}," 开始服务 "),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-button-end-dark":"time-button-end")}," 服务结束 ",2)])]),e.createElementVNode("view",{class:"right-container-photo"},[e.createElementVNode("image",{class:"right-container-photo-img",src:"/static/index/yiliao/project2.png",onClick:A},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-photo-text-dark":"right-container-photo-text")}," 脑膜炎(1/2) ",2)])]))),64))],8,["current"])])])]))),64))],40,["current"]),e.createElementVNode("view",{class:"split-line-white-sec",style:e.normalizeStyle(t.darkFans?"background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #386997 50%, rgba(0, 0, 0, 0) 100%);":"")},[t.darkFans?(e.openBlock(),e.createElementBlock("image",{key:0,class:"split-line-white-img",src:"/static/index/cardbgc/leftlight.png"},null,8,["src"])):e.createCommentVNode("",!0)],4),e.createElementVNode("view",{class:"right-huli-fir"},[e.createElementVNode("image",{class:"right-huli-shang",src:"/static/index/hulilist/shang.png"},null,8,["src"]),t.darkFans?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("scroll-view",{key:0,"show-scrollbar":!1,"scroll-y":"true",class:"right-huli-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(h.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-huli-view-dis"},[e.createElementVNode("image",{class:"right-huli-img",src:t.url},null,8,["src"]),e.createElementVNode("text",{class:"right-huli-text"},e.toDisplayString(t.name),1),e.withDirectives(e.createElementVNode("div",{class:"progress-bar-container"},[e.createElementVNode("div",{style:e.normalizeStyle({width:`${t.number}%`}),class:"progress-bar"},null,4)],512),[[e.vShow,0!==t.number]])])))),128))])),t.darkFans?(e.openBlock(),e.createElementBlock("scroll-view",{key:1,"show-scrollbar":!1,"scroll-y":"true",class:"right-huli-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(f.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-huli-view-dis"},[e.createElementVNode("image",{class:"right-huli-img",src:t.url},null,8,["src"]),e.createElementVNode("text",{class:"right-huli-text-dark"},e.toDisplayString(t.name),1),e.withDirectives(e.createElementVNode("div",{class:"progress-bar-container"},[e.createElementVNode("div",{style:e.normalizeStyle({width:`${t.number}%`}),class:"progress-bar"},null,4)],512),[[e.vShow,0!==t.number]])])))),128))])):e.createCommentVNode("",!0),e.createElementVNode("image",{class:"right-huli-xia",src:"/static/index/hulilist/xia.png"},null,8,["src"])])],6)],6),e.createElementVNode("view",{style:e.normalizeStyle(d.value||s.value?{zIndex:999}:{zIndex:0}),class:e.normalizeClass([s.value?"right-container-right-big":"right-container-right-small"])},[e.createElementVNode("view",{style:e.normalizeStyle(s.value?{borderRadius:"29rpx"}:{borderRadius:"50rpx"}),class:e.normalizeClass([t.darkFans?"right-container-right-father-dark":"right-container-right-father"])},[e.createElementVNode("view",{class:"right-container-right-down-father"},[e.createElementVNode("div",{class:"right-container-fir-left-card-flex-sec"},[e.createElementVNode("image",{class:"right-container-fir-left-card-flex-sec-img",src:"/static/index/baojielei.png"},null,8,["src"]),e.createElementVNode("div",{class:"right-container-fir-left-card-flex-sec-font",onClick:L},"保洁类"),e.createElementVNode("image",{class:"right-container-fir-left-card-flex-sec-imgright-fir",src:"/static/index/baojieleft.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-container-fir-left-card-flex-sec-imgright-sec",src:"/static/index/baojieright.png"},null,8,["src"]),e.createElementVNode("view",{class:"uni-margin-wrap"},[e.createElementVNode("swiper",{current:S.value,class:"swiper",circular:"","indicator-dots":!1,autoplay:!1,interval:4e3,duration:500},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("view",{class:"time-tra-thi"},[e.createElementVNode("view",{class:"time-tra-thi-zhixing"},[e.createElementVNode("div",{class:"time-tra-thi-zhixing-font"},"待执行 ")]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-font-dark":"time-font")}," 10:00 - 10:10 ",2),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-text-dark":"time-text")}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ",2),e.createElementVNode("view",{class:"time-people-two"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/darkicon/zhixingpeopledark.png":"/static/index/cardicons/zhixing.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 单人执行 ",2),e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/dopeopledark.png":"/static/index/cardicons/zhifa.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 王金福 / 李贵田 ",2)]),e.createElementVNode("view",{class:"time-button-view"},[e.createElementVNode("view",{class:"time-button-start"}," 开始服务 "),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-button-end-dark":"time-button-end")}," 服务结束 ",2)])]),e.createElementVNode("view",{class:"time-tra-thi-photo"},[e.createElementVNode("image",{class:"time-tra-thi-photo-img",src:"/static/index/project3.png",onClick:L},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-tra-thi-photo-font-dark":"time-tra-thi-photo-font")}," 更换纸尿裤 ",2)])]))),64))],8,["current"])])])])],6)],6),e.createElementVNode("view",{class:"under-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.value,((l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"under-father-view",key:a,onClick:e=>(e=>{V.value=e})(a)},[e.withDirectives(e.createElementVNode("image",{class:"under-father-light",src:"/static/index/undericons/upguang.png"},null,512),[[e.vShow,a===V.value]]),e.createElementVNode("image",{class:"under-father-img",src:a===V.value?l.targetUrl:l.url},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"under-father-img-font-dark":"under-father-img-font")},e.toDisplayString(l.name),3)],8,["onClick"])))),128))])]),e.createVNode(x,{ref_key:"drawer",ref:a},{default:e.withCtx((()=>[e.createVNode(b)])),_:1},512)],4))}}),[["__scopeId","data-v-6d6a66c6"]]),T="/static/index/deleteicon.png",D="/static/index/NU.png",C=[{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706886",title:"协助喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604232524795905",title:"鼻饲喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604428667228162",title:"注射器/吸管喂药",tagName:"头部,大体重"}],levle:"2",title:"协助喂药",key:"1900114812020310017",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605892869394433",title:"一级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606105021485058",title:"二级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606339931869185",title:"三级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606614344208386",title:"一级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606869953482753",title:"二级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607023431454722",title:"三级压疮防护",tagName:"大体重"}],levle:"2",title:"压疮防护",key:"1900115034452639746",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706887",title:"床椅转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706888",title:"床椅转移",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605073730211842",title:"床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605223185846273",title:"床椅转移",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605365393723393",title:"协助床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605496071458818",title:"协助床椅转移",tagName:null}],levle:"2",title:"床椅转移",key:"1902248363784159233",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607507626102786",title:"轮椅防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607677415723010",title:"轮椅防护",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902607817589362689",title:"轮椅防护",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902608061588803585",title:"轮椅防护",tagName:"大体重"}],levle:"2",title:"轮椅防护",key:"1902280900178886657",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608564582322178",title:"约束位按摩",tagName:"手"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608974609092610",title:"约束位按摩",tagName:"足"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618507855237121",title:"约束位按摩",tagName:"全"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618751548493825",title:"防护网约束",tagName:null}],levle:"2",title:"约束防护",key:"1902280933364219906",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620309090701314",title:"协助行走",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620486044192769",title:"放松按摩",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902625161569079298",title:"心灵慰藉",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902625402468929537",title:"狂躁",tagName:null}],levle:"2",title:"按摩保健",key:"1902564031454744577",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902625872432304130",title:"准备衣物",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626005538541569",title:"协助更换",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626664711163905",title:"肢体障碍",tagName:"半侧"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626800510144513",title:"肢体障碍",tagName:"全身"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627064688381953",title:"准备衣物",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627280716009474",title:"协助更换",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627416598876161",title:"肢体障碍",tagName:"半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627522404388866",title:"肢体障碍",tagName:"全身"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902627711806574593",title:"协助更换",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628058591629313",title:"肢体障碍",tagName:"半侧,大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628650718302209",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628837725540354",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628966847188993",title:"肢体障碍",tagName:"大体重,半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902629129879785474",title:"协助更换",tagName:"大体重"}],levle:"2",title:"更换衣物",key:"1902564088417587201",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629344456183809",title:"坐起",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629492301205506",title:"躺下",tagName:null}],levle:"2",title:"调整坐卧",key:"1902564199830884354",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902630862769065985",title:"遗体净身",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902631162275926017",title:"遗体穿衣",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631422431825921",title:"遗体转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631602463936514",title:"床位消毒",tagName:null}],levle:"2",title:"殡仪服务",key:"1902564263743688705",parentId:"1900112597427793921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902631830441136129",title:"更换床上用品",tagName:"全部"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632063828987905",title:"隔尿褥子更换",tagName:null}],levle:"2",title:"更换床上用品",key:"1902564446648897538",parentId:"1900112597427793921"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632288270389250",title:"临终护理",tagName:null}],levle:"2",title:"临终服务",key:"1902564503783706625",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"40",id:"1902632678701371393",title:"制氧机吸氧",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902632799853842433",title:"制氧机维护",tagName:null}],levle:"2",title:"制氧机应用",key:"1902564586101116930",parentId:"1900112597427793921"}],levle:"1",title:"1 日常照料",key:"1900112597427793921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900376187661553665",title:"准备洁具",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900420873478553602",title:"棉球清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706881",title:"协助清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706885",title:"义齿清洁",tagName:"口腔"}],levle:"2",title:"口腔清洁",key:"1902597070889127938",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902636771540963329",title:"准备洁具",tagName:"头部"},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637623425077250",title:"协助洗头",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637985234128898",title:"卧式洗头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902638122949906433",title:"擦头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902638304739430401",title:"刮头",tagName:null}],levle:"2",title:"头部清洁",key:"1902597497344987137",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902641763073101826",title:"准备洁具",tagName:"面部"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642254465175553",title:"协助洁面",tagName:null}],levle:"2",title:"面部清洁",key:"1902597651405967361",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642508145070081",title:"准备洁具",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642672796667905",title:"协助清洁",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642822885642242",title:"卧床清洁",tagName:"躯干"}],levle:"2",title:"躯干清洁",key:"1902597718082818050",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643318811758594",title:"准备洁具",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643483320750082",title:"协助清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643630888947713",title:"卧床清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643837525528578",title:"肌张力高",tagName:"清洁"}],levle:"2",title:"四肢清洁",key:"1902597811565465601",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645148199391234",title:"会阴清洁",tagName:"男"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645295457210369",title:"会阴清洁",tagName:"女"}],levle:"2",title:"会阴清洁",key:"1902597873964126209",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645493185089537",title:"肛周清洁",tagName:null}],levle:"2",title:"肛周清洁",key:"1902597930020999170",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645693211447298",title:"洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647316134465538",title:"泡手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647529817477122",title:"准备洁具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647673212342274",title:"协助洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647905878773762",title:"强直屈曲洗手",tagName:null}],levle:"2",title:"手清洁",key:"1902597991698239489",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648101203316737",title:"泡脚",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648239091060737",title:"卧式泡脚",tagName:null}],levle:"2",title:"足清洁",key:"1902598178588037121",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648426383511553",title:"修睫毛",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648548777496577",title:"剃须",tagName:null}],levle:"2",title:"剃须",key:"1902598258573414401",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648962444922882",title:"角质增生",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649132536532994",title:"灰指甲",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649302149992449",title:"正常",tagName:"修甲"}],levle:"2",title:"修甲",key:"1902598354606198785",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902649683919736834",title:"理发",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"25",id:"1902649860344745985",title:"理发",tagName:"颅骨缺损"}],levle:"2",title:"理发",key:"1902598400382832642",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902650121280786434",title:"床上沐浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650408884211713",title:"深度清洁",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650763722330113",title:"浴间洗浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"30",id:"1902651229122301954",title:"床上沐浴",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651366317985794",title:"深度清洁",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651555363655682",title:"浴间洗浴",tagName:"大体重"}],levle:"2",title:"沐浴",key:"1902598454782955522",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651778777452545",title:"内套管清洁",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651924047171586",title:"更换气切纱布",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"10",id:"1902652055928672258",title:"更换气切纱布",tagName:null}],levle:"2",title:"气切消毒",key:"1902598509522817026",parentId:"1900112615777873921"}],levle:"1",title:"2 清洁照料",key:"1900112615777873921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898057679966209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898202668666881",title:"协助进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898339931459586",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898472584712194",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898590658564097",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898719952179201",title:"准备餐具",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898979948695554",title:"协助进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899086840532993",title:"协助进餐",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899214838108162",title:"鼻胃管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899325014085633",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899587028062210",title:"食物加工",tagName:null}],levle:"2",title:"加餐饮食",key:"1902596129720864770",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281139677839362",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902281522340970498",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281654100836354",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281870434648066",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902654960639381506",title:"鼻肠管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902655101874180097",title:"轮椅进餐",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902892199009030145",title:"轮椅进餐",tagName:null}],levle:"2",title:"正餐饮食",key:"1902601263850950657",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893231608926209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893551978254337",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893716466274306",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894369850757122",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894528533860354",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"辅餐饮食",key:"1902601382595891202",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894832176304129",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894954117304322",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895077522116609",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895233407619073",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895569912434689",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"果汁饮食",key:"1902601427168759809",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895878508351489",title:"准备水杯",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895984053817346",title:"协助饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896136835534850",title:"协助饮水",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896508421509122",title:"鼻胃管饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896636553302017",title:"鼻肠管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902896855802155010",title:"准备水杯",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897018344017921",title:"协助饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897464936730626",title:"协助饮水",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897675813752834",title:"鼻胃管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897803417063426",title:"鼻肠管饮水",tagName:null}],levle:"2",title:"饮水饮食",key:"1902601487625457665",parentId:"1902280495747317762"}],levle:"1",title:"3 饮食照料",key:"1902280495747317762"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902653177363927041",title:"巡视",tagName:null}],levle:"2",title:"巡视",key:"1902564741860790273",parentId:"1902560466095017986"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653325481578497",title:"防坠床",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653497066360833",title:"被褥调整",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653650917625857",title:"睡姿调整",tagName:null}],levle:"2",title:"体位调整",key:"1902564818838851585",parentId:"1902560466095017986"}],levle:"1",title:"4 睡眠照料",key:"1902560466095017986"},{children:[{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904277308510210",title:"更换尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904458779267073",title:"更换隔尿垫",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905631242424322",title:"使用尿盆",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905824973131777",title:"使用尿壶",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906220483416065",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906459051233281",title:"坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906610562076674",title:"留置尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906783325458434",title:"更换纸尿裤",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908406344945665",title:"热敷抚触排尿",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908523827400705",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909645401067522",title:"更换尿片",tagName:null}],levle:"2",title:"小便",key:"1902596314152800257",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909835331735554",title:"床上排便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910002671882242",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910156154048514",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910361008050178",title:"人工取便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910524623654913",title:"造瘘袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910700176248834",title:"坐便椅",tagName:null}],levle:"2",title:"大便",key:"1902596399423000577",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910899565072385",title:"口腔吸痰",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911047405899778",title:"气切吸痰",tagName:null}],levle:"2",title:"吸痰",key:"1902596461238652930",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911232974491650",title:"呕吐",tagName:null}],levle:"2",title:"呕吐",key:"1902596886771765250",parentId:"1902560510768549889"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902911378349068290",title:"腹腔引流护理",tagName:null}],levle:"2",title:"引流",key:"1902596940366581762",parentId:"1902560510768549889"}],levle:"1",title:"5 排泄照料",key:"1902560510768549889"}],S=s(e.defineComponent({__name:"index",props:{isshow:{type:Boolean,required:!0},darkFans:{type:Boolean,required:!0},canmove:{type:Boolean,required:!0},liang:{type:Object}},emits:["darkchange","savename","saveruler","closename","changefangkuang","changeold"],setup(t,{expose:a,emit:i}){const o=t;e.watch((()=>o.canmove),(()=>{Ee.value=!1})),e.watch((()=>o.isshow),(()=>{Ee.value=!1,ae.value=!1})),e.onMounted((()=>{}));const c=e.ref([{name:"纸尿裤",url:"/static/index/niao.png"},{name:"呕吐",url:"/static/index/tu.png"},{name:"吸痰",url:"/static/index/ou.png"},{name:"大便",url:"/static/index/baba.png"},{name:"纸尿裤",url:"/static/index/niao.png"},{name:"呕吐",url:"/static/index/tu.png"},{name:"吸痰",url:"/static/index/ou.png"},{name:"大便",url:"/static/index/baba.png"},{name:"纸尿裤",url:"/static/index/niao.png"},{name:"呕吐",url:"/static/index/tu.png"},{name:"吸痰",url:"/static/index/ou.png"},{name:"大便",url:"/static/index/baba.png"},{name:"纸尿裤",url:"/static/index/niao.png"},{name:"呕吐",url:"/static/index/tu.png"},{name:"吸痰",url:"/static/index/ou.png"},{name:"大便",url:"/static/index/baba.png"}]),s=["00","05","10","15","20","25","30","35","40","45","50","55"],d=["周一","周二","周三","周四","周五","周六","周日"],m=Array.from({length:31},((e,t)=>(t+1).toString().padStart(2,"0"))),u=e.ref(!0),v=e.ref(0),p=e.ref(0),g=e.ref(),w=e.ref([]),h=e.ref([]),f=e.ref(!1),N=e.ref(!1),y=e.ref(!1),x=e.ref(!1),E=e.ref(!1),V=e.ref(""),b=e.ref(!1),k=e.ref(1);function S(e,t){return 2*function(e,t){const l=55.9898*e+78.233*t;return Math.abs(43758.5453*Math.sin(l))%1}(e,t)}e.ref(0);const B=t=>{k.value=t.detail.current,e.nextTick((()=>{p.value=z.value}))};e.ref(0);const z=e.ref(0);function _(e){let t=e.detail.scrollTop,l=parseFloat(t.toFixed(2));z.value=l}e.ref(!0);const I=(e,t)=>!(o.canmove||o.liang.index0!==e||o.liang.index1!==t||!pe.value.includes(e+6*k.value)&&ge.value==t),U=(e,t)=>!o.canmove&&o.liang.index0===e&&o.liang.index1===t,M=(e,t,l)=>"日常"===e.cycleType?J.value.index0===t+6*k.value&&J.value.index1===l&&ae.value?"title-time-border-yellow-active-transparent":ae.value?"title-time-border-yellow-active":"title-time-border-yellow":e.cycleType?J.value.index0===t+6*k.value&&J.value.index1===l&&ae.value?"title-time-border-pouple-active-transparent":ae.value?"title-time-border-pouple-active":"title-time-border-pouple":"title-time-border",F=e.ref([{url:"/static/index/doctorsay/light/use.png",targetUrl:"/static/index/doctorsay/dark/use.png",name:"日常"},{url:"/static/index/doctorsay/light/clean.png",targetUrl:"/static/index/doctorsay/dark/clean.png",name:"清洁"},{url:"/static/index/doctorsay/light/drink.png",targetUrl:"/static/index/doctorsay/dark/drink.png",name:"饮食"},{url:"/static/index/doctorsay/light/bed.png",targetUrl:"/static/index/doctorsay/dark/bed.png",name:"睡眠"},{url:"/static/index/doctorsay/light/shi.png",targetUrl:"/static/index/doctorsay/dark/shi.png",name:"排泻"}]),$=e.ref(1),A=e.ref(0),L=e.ref(999);e.ref(!1),e.ref([]);const O=i,P=e=>{O("changeold",e)},j=e.ref(null);e.ref({});const q=e.ref(0),R=e.ref(0),W=e.ref(0),Y=e.ref(0),J=e.ref({index0:999,index1:999,typeName:""}),X=e.ref(-1),Z=e.ref(!1),H=e.ref(!1),G=e.ref([-1,-1]),Q=e.ref(""),K=e.ref(-1),ee=e.ref(!1),te=()=>{ee.value=!0,H.value=!1,setTimeout((()=>{H.value=!0}),100)},le=()=>{uni.share({provider:"weixin",scene:"WXSceneSession",type:0,href:"http://192.168.2.31:3101/daytoday",title:"护理日程分享",summary:"九泰护理日程测试",imageUrl:"https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/uni@2x.png",success:function(e){l("log","at component/rightItemssecond/index.vue:740","success:")},fail:function(e){l("log","at component/rightItemssecond/index.vue:743","fail:")}})},ae=e.ref(!1),ie=e.ref([]),ne=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-q.value)>0||Math.abs(l-R.value)>0)&&j.value&&(clearTimeout(j.value),j.value=null)},re=e.ref(null),oe=e.ref(!1);let ce=null;function se(e){oe.value=!0,ce&&clearTimeout(ce),ce=setTimeout((()=>{oe.value=!1}),400)}const de=e.ref(!1),me=e.ref(0),ue=e.ref(0),ve=e.ref(!1),pe=e.ref([]),ge=e.ref(-1),we=e.ref(""),he=e.ref("");function fe(){return!!(!Ce.value&&De.value.startTime||1===Ce.value&&De.value.startTime&&(De.value.weekTime||De.value.monthTime)||2===Ce.value)}const Ne=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-me.value)>0||Math.abs(l-ue.value)>0)&&re.value&&(clearTimeout(re.value),re.value=null)},ye=()=>{ve.value=!1,re.value&&(clearTimeout(re.value),re.value=null)},xe=e.ref(null),Ee=e.ref(!1),Ve=e=>{me.value=Math.floor(e.touches[0].pageX),ue.value=Math.floor(e.touches[0].pageY),xe.value=setTimeout((()=>{Ee.value=!0}),500)},be=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-me.value)>0||Math.abs(l-ue.value)>0)&&xe.value&&(clearTimeout(xe.value),xe.value=null)},ke=()=>{xe.value&&(clearTimeout(xe.value),xe.value=null)},Te=e.ref({time:"",array:[]}),De=e.ref({op:{name:"",index:[-1,-1,-1]},startTime:"",monthTime:"",weekTime:""}),Ce=e.ref(0),Se=(e,t)=>{if(we.value=t.id,he.value=t.tagName,De.value.op.index[2]===e)De.value.op.index[2]=-1,De.value.op.name="",Ce.value=-1;else switch(De.value.op.index[2]=e,De.value.op.name=t.relName,t.cycleType){case"日常护理":Ce.value=0;break;case"周期护理":Ce.value=1;break;case"即时护理":Ce.value=2}},Be=e.ref([-1,-1]);e.ref(null);const ze=async()=>{N.value=!1,u.value=!0;let t=-1,l=[];if(2===Ce.value)return v.value=1,void e.nextTick((()=>{v.value=0,c.value.unshift({name:De.value.op.name,url:"/static/index/ou.png",target:"#00a8ff"}),setTimeout((()=>{c.value[0].target="#fff"}),1500),setTimeout((()=>{c.value[0].target=""}),3e3)}));Ae.value.forEach(((e,a)=>{l=[],e.children.forEach(((e,t)=>{if(null===e.directiveName||""===e.directiveName||void 0===e.directiveName){Ae.value.every((e=>{const l=e.children[t];return void 0===l||null===l.directiveName||""===l.directiveName||void 0===l.directiveName}))&&l.push(t)}})),e.children.forEach(((e,l)=>{e.typeName==h.value[De.value.op.index[0]].children[De.value.op.index[1]].title&&(t=l)}))})),-1===t&&(t=l[0]);let a=h.value[De.value.op.index[0]].children[De.value.op.index[1]].title;await e.nextTick(),Ae.value.forEach(((e,l)=>{e.children[t].typeName=a}));let i="";Ce.value?1===Ce.value&&(i=De.value.weekTime||De.value.monthTime+"号"):i="日常";const n=Number(Te.value.time),r=Number(De.value.startTime),o=r+10,s=n+Math.floor(o/60),d=`${String(n)}:${String(r).padStart(2,"0")}`,m=`${String(s)}:${String(o%60).padStart(2,"0")}`;-1!==t?(Ae.value[Be.value[0]].children[t].startTime=d,Ae.value[Be.value[0]].children[t].endTime=m):(Ae.value[Be.value[0]].children[Be.value[1]].startTime=d,Ae.value[Be.value[0]].children[Be.value[1]].endTime=m);let g={directiveId:we.value,directiveName:De.value.op.name,startTime:d,endTime:m,positioning:Be.value[0].toString(),positioningLong:Be.value[1].toString(),tagName:he.value,cycleType:i,nuId:"1",customerId:"1",id:"",typeName:a};Ae.value[Be.value[0]].children[t]=g,Ae.value.forEach((e=>{e.children.forEach((e=>{}))}));let w={index0:Be.value[0],index1:t};Fe(w);Ae.value.some((e=>{const t=e.children;return""!==t[t.length-1].directiveName.trim()}))&&(Ae.value.forEach((e=>{e.children.push({directiveName:""})})),p.value=999,e.nextTick(),p.value=9999),_e()},_e=()=>{Ae.value.forEach(((e,t)=>{e.children.forEach(((e,l)=>{let a="";if(e.directiveName||e.id)e.positioning=t,e.positioningLong=l;else{let i={};e.typeName&&(a=e.typeName),i=JSON.parse(JSON.stringify($e.value)),a&&(i.typeName=a),i.positioning=t,i.positioningLong=l}}))}))},Ie=()=>{uni.setStorage({key:"myArray",data:Ae.value,success:function(){uni.navigateTo({url:`/pages/timeMatrix/index?currentNumber=${k.value}`})}})},Ue=e.ref({index0:-1,index1:-1}),Me=e.ref({index0:-1,index1:-1,current:-1,bordershow:!0}),Fe=e=>{p.value=0,p.value=104*e.index1,k.value===Math.floor(e.index0/6)?(Me.value.index0=e.index0-6*k.value,Me.value.index1=e.index1,Ue.value.index0=Me.value.index0,Ue.value.index1=Me.value.index1,Me.value.current=k.value,Me.value.bordershow=!1,setTimeout((()=>{Me.value.index0=-1,Me.value.index1=-1,Me.value.current=-1}),400),setTimeout((()=>{Me.value.bordershow=!0,Ue.value.index0=-1,Ue.value.index1=-1}),1e3)):(setTimeout((()=>{k.value=Math.floor(e.index0/6)}),100),setTimeout((()=>{Me.value.index0=e.index0-6*k.value,Me.value.index1=e.index1,Ue.value.index0=Me.value.index0,Ue.value.index1=Me.value.index1,Me.value.current=k.value,Me.value.bordershow=!1}),800),setTimeout((()=>{Me.value.index0=-1,Me.value.index1=-1,Me.value.current=-1}),1400),setTimeout((()=>{Me.value.bordershow=!0,Ue.value.index0=-1,Ue.value.index1=-1}),2200))};n((()=>{h.value=C,g.value=h.value[0].children,uni.$on("where",Fe)})),r((()=>{uni.$off("where",Fe)})),a({rulerEnd:async e=>{de.value=!1,999!==o.liang.index0&&e&&(De.value={op:{name:"",index:[-1,-1,-1]},startTime:"",monthTime:"",weekTime:""},x.value=!1,N.value=!0,setTimeout((()=>{x.value=!0}),100),De.value.op.index[0]=A.value,De.value.op.index[1]=L.value,Te.value.time=Ae.value[o.liang.index0+6*k.value].positioning,Te.value.array=h.value[A.value].children[L.value].children,Te.value.array.forEach((e=>{e.relName=e.title+(e.tagName?e.tagName.split(",").map((e=>`(${e})`)).join(""):"")})),Be.value=[o.liang.index0+6*k.value,o.liang.index1],Se(0,Te.value.array[0]))},rulerMoveEnd:e=>{if(999!==o.liang.index0&&e.cycleType){if(pe.value.includes(o.liang.index0+6*k.value)||ge.value!==o.liang.index1)return!1;Be.value=[o.liang.index0+6*k.value,o.liang.index1];let t=-1,l=[];Ae.value.forEach(((a,i)=>{l=[],a.children.forEach(((e,t)=>{if(null===e.directiveName||""===e.directiveName||void 0===e.directiveName){Ae.value.every((e=>{const l=e.children[t];return void 0===l||null===l.directiveName||""===l.directiveName||void 0===l.directiveName}))&&l.push(t)}})),a.children.forEach(((l,a)=>{l.typeName==e.typeName&&(t=a)}))})),-1===t&&(t=l[0]);let a=0,i="";Ae.value.forEach((e=>{e.children[0].value&&(a++,i=e.children[0].typeName)})),Ae.value[J.value.index0].children[J.value.index1]=a>1?{directiveName:"",typeName:i}:{directiveName:""},Ae.value[Be.value[0]].children[t]=e;let n=Ae.value[Be.value[0]].children[t].startTime,r=Ae.value[Be.value[0]].children[t].endTime,c=Ae.value[Be.value[0]].positioning;const s=n.substring(n.indexOf(":")),d=r.substring(r.indexOf(":"));Ae.value[Be.value[0]].children[t].startTime=c+s,Ae.value[Be.value[0]].children[t].endTime=c+d;Ae.value.some((e=>{const t=e.children;return""!==t[t.length-1].directiveName.trim()}))&&(Ae.value.forEach((e=>{e.children.push({directiveName:""})})),p.value=999,p.value=9999),_e()}},nextItems:()=>{0==k.value?k.value=3:k.value--}}),e.ref({index0:999,index1:999});const $e=e.ref({directiveId:"",directiveName:"",startTime:"",endTime:"",positioning:"",positioningLong:"",tagName:"",cycleType:"",nuId:"1",customerId:"1",id:"",typeName:""}),Ae=e.ref(Array.from({length:24},((e,t)=>({positioning:t.toString(),children:Array.from({length:4},(()=>({directiveName:""})))}))));function Le(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}return(l,a)=>{var i,n,r,o;return e.openBlock(),e.createElementBlock("view",{class:"right-container",style:e.normalizeStyle(t.isshow?{opacity:"1"}:{opacity:"0"}),onClick:a[22]||(a[22]=e=>{Ee.value=!1,ae.value=!1})},[e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," ID:12345678 ",2),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," 名称:未命名01 ",2),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"right-icons-font-dark":"right-icons-font")},"王金福",2),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/face.png":"/static/index/undericons/facelight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/hand.png":"/static/index/undericons/handlight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/out.png":"/static/index/undericons/outlight.png"},null,8,["src"])]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button",onClick:a[0]||(a[0]=e=>P(0))},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 拖动模式 ")]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button-wrong",onClick:a[1]||(a[1]=e=>P(2))},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 手柄模式 ")])]),e.createElementVNode("view",{class:"doctorsay-container-view"},[e.createElementVNode("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"doctorsay-container-title"},[e.createElementVNode("view",{class:"doctorsay-container-left"},[e.createElementVNode("view",{class:"doctorsay-container-left-gun"}),e.createElementVNode("view",{class:"doctorsay-container-left-font"},"时间矩阵"),e.createElementVNode("view",{class:"doctorsay-container-share",onClick:te}," 分享 ")]),e.createElementVNode("view",{class:"doctorsay-container-right"},[e.createElementVNode("view",{class:"doctorsay-container-right-kuai-cheng"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"日常"),e.createElementVNode("view",{class:"doctorsay-container-right-kuai-zi"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"周期"),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(w.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"doctorsay-container-button-father",key:l},[e.createElementVNode("view",{class:e.normalizeClass($.value===l?"doctorsay-container-button-target":"doctorsay-container-button"),onClick:e=>(e=>{$.value=e})(l)},e.toDisplayString(t),11,["onClick"])])))),128)),e.createElementVNode("view",{class:"doctorsay-container-juzhen",onClick:Ie}," 预览 ")])]),e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("view",{class:"boom"},[e.createElementVNode("view",{style:e.normalizeStyle({marginTop:`-${2*z.value}rpx`})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Ae.value[0].children,((l,a)=>(e.openBlock(),e.createElementBlock("view",{key:a},[e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(K.value===a||t.liang.index1===a&&!t.canmove||J.value.index1===a&&ae.value?"boom-son-target":"boom-son")},e.toDisplayString(l.typeName),3),[[e.vShow,l.typeName]])])))),128))],4)]),e.createElementVNode("swiper",{"disable-touch":!t.canmove||ae.value,current:k.value,class:"scroll-x",circular:"","indicator-dots":!1,onChange:B,interval:4e3,duration:500},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3,4],((l,i)=>e.createElementVNode("swiper-item",{key:i},[e.createElementVNode("view",{style:{display:"flex","box-shadow":"10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1)",background:"linear-gradient(to right, #c4dbf4,#c9c2ef, #c6dcf3)"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Ae.value.slice(6*i,6*(i+1)),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time",style:e.normalizeStyle($.value?{width:"274rpx"}:{width:"206rpx"})},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),5)])))),128))]),e.createElementVNode("view",{style:{display:"flex",height:"calc(100% - 80rpx)"}},[e.createElementVNode("scroll-view",{style:e.normalizeStyle([{height:"100%"},$.value?{width:"6700rpx"}:{width:"5000rpx"}]),"scroll-top":p.value,"scroll-y":t.canmove&&!ae.value,onScroll:_,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Ae.value.slice(6*i,6*(i+1)),((l,i)=>(e.openBlock(),e.createElementBlock("view",{key:i},[e.createElementVNode("view",{class:"super-card-time-und",style:e.normalizeStyle($.value?{width:"274rpx"}:{width:"206rpx"})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.children,((l,n)=>(e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:n},[e.createElementVNode("view",{class:e.normalizeClass(Me.value.current===k.value&&Me.value.index0===i&&Me.value.index1===n?Me.value.index1?"title-time-border-big":"title-time-border-big-top":"super-card-time-card"),style:e.normalizeStyle([Me.value.bordershow||Ue.value.index0!==i||Ue.value.index1!==n?{borderTop:"1rpx solid transparent"}:{zIndex:999},{position:"relative"}]),id:`a${i}_${n}`,onClick:t=>((t,l,a,i)=>{t.directiveName&&(K.value=a,uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.left>100&&t.left<900&&t.top<570&&t.top>140&&t.dataset.index0==l&&t.dataset.index1==a&&(t.left>100&&t.left<400?W.value=Math.floor(t.left)+520:W.value=Math.floor(t.left),t.top>140&&t.top<300?Y.value=Math.floor(t.top)+250:Y.value=Math.floor(t.top),await e.nextTick(),f.value=!0,y.value=!1,setTimeout((()=>{y.value=!0}),100))}))})).exec())})(l,i,n),onTouchstart:e=>((e,t,l,a)=>{p.value=z.value,pe.value=[];let i=-1;q.value=Math.floor(a.touches[0].pageX),R.value=Math.floor(a.touches[0].pageY),j.value=setTimeout((()=>{e.directiveName&&(Ae.value.forEach(((t,l)=>{t.children.forEach((t=>{t.typeName===e.typeName&&t.directiveName&&pe.value.push(l),t.directiveName&&(i=l)}))})),pe.value.length?ge.value=l:ge.value=i+1,J.value.typeName=e.typeName,J.value.index0=t+6*k.value,J.value.index1=l,Be.value=[-1,-1],ie.value=[],ve.value=!0,uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((e=>{e.forEach((async e=>{e.left>100&&e.left<900&&e.top<570&&e.top>140&&ie.value.push(e)}))})).exec(),O("saveruler",e,ie.value),ae.value=!0)}),100)})(l,i,n,e),onTouchmove:ne,onTouchend:a[2]||(a[2]=e=>(ve.value=!1,void(j.value&&(clearTimeout(j.value),j.value=null)))),"data-index0":i,"data-index1":n},[l.directiveName&&ae.value?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time-delete",onClick:e.withModifiers((e=>((e,t,l)=>{G.value=[-1,-1],ae.value=!1,Ee.value=!1,b.value=!1,E.value=!0,G.value=[t+6*k.value,l],V.value=e.directiveName,Q.value=e.id,setTimeout((()=>{b.value=!0}),100)})(l,i,n)),["stop"])}," - ",8,["onClick"])),[[e.vShow,t.liang.index0!==i||t.liang.index1!==n||t.canmove]]):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{class:"title-time-blue"},[e.createElementVNode("image",{class:"title-time-blue-img",src:I(i,n)?"/static/index/movemode/targetcheng.png":"/static/index/movemode/target.png"},null,8,["src"])],512),[[e.vShow,U(i,n)]]),e.createElementVNode("view",{class:e.normalizeClass(M(l,i,n)),style:e.normalizeStyle([{"font-size":"30rpx",overflow:"hidden"},{animationDelay:`-${S(i,n).toFixed(2)}s`}])},[l.startTime?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"margin-top":"5rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(l.startTime+"-"+l.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==l.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(l.cycleType),1)],512)),[[e.vShow,t.liang.index0!==i||t.liang.index1!==n||t.canmove]]):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{style:{"margin-top":"20rpx","font-weight":"700"}},e.toDisplayString(Le(l.directiveName)[0]),513),[[e.vShow,t.liang.index0!==i||t.liang.index1!==n||t.canmove]]),Le(l.directiveName)[1]?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:1,class:"down-icons",style:e.normalizeStyle("日常"!=l.cycleType?{backgroundColor:"rgb(212,203,255)"}:{})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Le(l.directiveName).slice(1),((t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:a},[e.createElementVNode("view",{class:"icon",style:e.normalizeStyle("日常"!=l.cycleType?{backgroundColor:"rgb(123,97,255)"}:{})},e.toDisplayString(Le(l.directiveName)[a+1]),5)])))),128))],4)),[[e.vShow,t.liang.index0!==i||t.liang.index1!==n||t.canmove]]):e.createCommentVNode("",!0)],6)],46,["id","onClick","onTouchstart","data-index0","data-index1"])])))),128))],4)])))),128))])],44,["scroll-top","scroll-y"])])]))),64))],40,["disable-touch","current"])])]),e.createElementVNode("view",{class:"super-card-end"},[e.createElementVNode("view",{class:"super-end-father"},[e.createElementVNode("view",{class:"super-end-font-father"},[e.createElementVNode("view",{class:"super-end-font-gun"}),e.createElementVNode("view",{class:"super-end-font-font"},"即时指令")]),e.createElementVNode("scroll-view",{"scroll-x":"",class:"super-end-items-all","scroll-left":v.value},[e.createElementVNode("view",{class:"super-end-items"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{onTouchstart:Ve,onTouchmove:be,onTouchend:ke,style:e.normalizeStyle(t.target?{background:t.target,transition:"all 1.5s ease-in-out"}:{transition:"all 1.5s ease-in-out"}),class:"super-end-items-father"},[e.withDirectives(e.createElementVNode("view",{class:"super-end-items-father-close-father",onClick:e.withModifiers((e=>((e,t)=>{Ee.value=!1,X.value=e,ae.value=!1,H.value=!1,Z.value=!0,V.value=t,setTimeout((()=>{H.value=!0}),100)})(l,t.name)),["stop"])}," - ",8,["onClick"]),[[e.vShow,Ee.value]]),e.createElementVNode("view",{style:e.normalizeStyle({animationDelay:`-${.1*l}s`}),class:e.normalizeClass(Ee.value?"super-end-items-img-father-active":"super-end-items-img-father")},[e.createElementVNode("image",{class:"super-end-items-img",src:t.url},null,8,["src"])],6),e.createElementVNode("view",{class:"super-end-items-font"},e.toDisplayString(t.name),1)],36)])))),128))])],8,["scroll-left"])])])]),e.createElementVNode("view",{class:"doctorsay-container-items"},[e.createElementVNode("view",{class:"doctorsay-container-up"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(F.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>(e=>{A.value=e,g.value=h.value[e].children,L.value=999})(l)},[e.createElementVNode("view",{class:"doctorsay-container-card",style:e.normalizeStyle(l===A.value?{background:"linear-gradient(to right bottom, #00c9ff, #0076ff)"}:{})},[e.createElementVNode("image",{class:"doctorsay-container-card-img",src:l===A.value?t.targetUrl:t.url},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(l===A.value?"doctorsay-container-card-font-dark":"doctorsay-container-card-font")},e.toDisplayString(t.name),3)],4)],8,["onClick"])))),128)),e.createElementVNode("view",null,[e.createElementVNode("view",{class:"doctorsay-container-card",style:{background:"linear-gradient(135deg, #01e7be 0%, #0080dd 100%)"}},[e.createElementVNode("image",{class:"doctorsay-container-card-img",src:"/static/index/shexiang.png"}),e.createElementVNode("view",{class:"doctorsay-container-card-font-dark"}," 监控 ")])])]),e.createElementVNode("view",{class:"doctorsay-container-down"},[e.createElementVNode("view",{class:"doctorsay-top"},[e.createElementVNode("view",{class:"doctorsay-top-gun"}),e.createElementVNode("view",{class:"doctorsay-top-font"},"服务类型")]),e.createElementVNode("scroll-view",{"scroll-y":t.canmove,class:"doctorsay-container-scroll",onScroll:se},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"doctorsay-container-button",onClick:e=>L.value=l,onTouchstart:e=>((e,t,l)=>{p.value=z.value,ae.value=!1,me.value=Math.floor(l.touches[0].pageX),ue.value=Math.floor(l.touches[0].pageY),re.value=setTimeout((()=>{if(pe.value=[],oe.value)return;let l=-1,a=-1;Ae.value.forEach(((t,i)=>{t.children.forEach(((t,n)=>{t.typeName===e.title&&t.directiveName&&(pe.value.push(i),l=n),t.directiveName&&n>a&&(a=n)}))})),pe.value.length?ge.value=l:ge.value=a+1,de.value=!0,L.value=t,Be.value=[-1,-1],ve.value=!0,ie.value=[],uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((e=>{e.forEach((e=>{e.left>100&&e.left<900&&e.top<570&&e.top>140&&ie.value.push(e)}))})).exec(),O("savename",e.title,ie.value)}),200)})(t,l,e),onTouchmove:Ne,onTouchend:ye},[e.createElementVNode("text",{class:e.normalizeClass(L.value===l?"doctorsay-container-text-target":"doctorsay-container-text"),style:e.normalizeStyle({backgroundColor:t.color?t.color:"",...de.value?{}:{width:"250rpx",height:"75rpx",fontSize:"30rpx",borderRadius:"25rpx"}})},e.toDisplayString(t.title),7),e.withDirectives(e.createElementVNode("image",{class:"doctorsay-container-button-uplight",style:e.normalizeStyle(de.value?{}:{top:"30rpx"}),src:"/static/index/cardicons/uplight.png"},null,12,["src"]),[[e.vShow,L.value===l]])],40,["onClick","onTouchstart"])])))),128))],40,["scroll-y"])])])]),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay",onClick:a[4]||(a[4]=e=>{f.value=!1,J.value.index0=999,K.value=-1})},[e.createElementVNode("view",{class:"popup-overlay-content",style:e.normalizeStyle({top:2*Y.value-350+"rpx",left:2*W.value-780+"rpx",opacity:y.value?1:0,backgroundColor:"日常"===(null==(n=null==(i=Ae.value[J.value.index0])?void 0:i.children[J.value.index1])?void 0:n.type)?"#fffcf6":"rgb(246, 244, 254)"}),onClick:a[3]||(a[3]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"},e.toDisplayString(null==(o=null==(r=Ae.value[J.value.index0])?void 0:r.children[J.value.index1])?void 0:o.value),1)]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],4)],512),[[e.vShow,f.value]]),N.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-song",onClick:a[11]||(a[11]=e=>N.value=!1)},[e.createElementVNode("view",{class:"popup-song-contain",style:e.normalizeStyle({opacity:x.value?1:0}),onClick:a[10]||(a[10]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-song-father"},[e.createElementVNode("image",{class:"shu-up-img",src:"/static/index/cheng.png"}),e.createElementVNode("view",{class:"shu-up-font"},[e.createElementVNode("view",{class:""}," 服务时段:"+e.toDisplayString(Te.value.time+":00"),1),e.createElementVNode("view",{style:{"margin-left":"30rpx"}}," 护理时长:10分钟 ")]),e.createElementVNode("view",{class:"shu-container-left"},[e.createElementVNode("view",{class:"shu-container-left-gun"}),e.createElementVNode("view",{class:"shu-container-left-font"},"服务指令")]),e.createElementVNode("view",{class:"arrayindex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Te.value.array,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{style:{position:"relative","box-shadow":"10rpx 10rpx 20rpx rgba(105, 129, 178, 0.4)"},class:e.normalizeClass(De.value.op.index[2]===l?"arrayindex-one-target":"arrayindex-one"),onClick:e=>Se(l,t)},[e.withDirectives(e.createElementVNode("image",{class:"ri-img",src:De.value.op.index[2]!==l?"/static/index/ridark.png":"/static/index/ri.png"},null,8,["src"]),[[e.vShow,"日常护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"ri-img",src:De.value.op.index[2]==l?"/static/index/zhoudark.png":"/static/index/zhou.png"},null,8,["src"]),[[e.vShow,"周期护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"ri-img",src:De.value.op.index[2]==l?"/static/index/jidark.png":"/static/index/ji.png"},null,8,["src"]),[[e.vShow,"即时护理"===t.cycleType]]),e.createTextVNode(" "+e.toDisplayString(t.relName),1)],10,["onClick"])])))),128))]),e.withDirectives(e.createElementVNode("view",{class:"shu-container-left",style:{"margin-top":"50rpx"}},[e.createElementVNode("view",{class:"shu-container-left-gun"}),e.createElementVNode("view",{class:"shu-container-left-font"},"开始分钟")],512),[[e.vShow,2!=Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"time-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(s,((t,l)=>e.createElementVNode("view",{key:l},[e.withDirectives(e.createElementVNode("view",{class:"time-one-hui"},e.toDisplayString(t),513),[[e.vShow,Number(t)>=50]]),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(De.value.startTime===t?"time-one-target":"time-one"),onClick:e=>(e=>{De.value.startTime==e?De.value.startTime="":De.value.startTime=e})(t)},e.toDisplayString(t),11,["onClick"]),[[e.vShow,Number(t)<50]])]))),64))],512),[[e.vShow,2!=Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"shu-container-left",style:{"margin-top":"50rpx"}},[e.createElementVNode("view",{class:"shu-container-left-gun"}),e.createElementVNode("view",{class:"shu-container-left-font"},"周期类型")],512),[[e.vShow,1==Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"radio-father"},[e.createElementVNode("view",{class:e.normalizeClass(u.value?"radio-circle-target":"radio-circle"),onClick:a[5]||(a[5]=e=>{u.value=!0,De.value.monthTime=""})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[6]||(a[6]=e=>{u.value=!0,De.value.monthTime=""})},"每周"),e.createElementVNode("view",{class:e.normalizeClass(u.value?"radio-circle":"radio-circle-target"),onClick:a[7]||(a[7]=e=>{u.value=!1,De.value.weekTime=""})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[8]||(a[8]=e=>{u.value=!1,De.value.weekTime=""})},"每月")],512),[[e.vShow,1==Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"week-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(d,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(De.value.weekTime===t?"week-one-target":"week-one"),onClick:e=>(e=>{De.value.weekTime==e?De.value.weekTime="":De.value.weekTime=e})(t)},e.toDisplayString(t),11,["onClick"])]))),64))],512),[[e.vShow,u.value&&1==Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"month-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(m),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(De.value.monthTime===t?"month-one-target":"month-one"),onClick:e=>(e=>{De.value.monthTime==e?De.value.monthTime="":De.value.monthTime=e})(t)},e.toDisplayString(t),11,["onClick"])])))),128))],512),[[e.vShow,!u.value&&1==Ce.value]]),e.createElementVNode("view",{class:"button-father"},[e.createElementVNode("view",{style:{display:"flex"}},[e.withDirectives(e.createElementVNode("view",{class:"button-father-right",onClick:ze}," 确定 ",512),[[e.vShow,fe()]]),e.withDirectives(e.createElementVNode("view",{class:"button-father-wrong"}," 确定 ",512),[[e.vShow,!fe()]]),e.createElementVNode("view",{class:"button-father-wrong",onClick:a[9]||(a[9]=e=>N.value=!1),style:{"margin-left":"20rpx"}}," 取消 ")])])])],4)])):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{class:"popup-delete",onClick:a[15]||(a[15]=e=>E.value=!1)},[e.createElementVNode("view",{class:"popup-delete-content",style:e.normalizeStyle({opacity:b.value?1:0}),onClick:a[14]||(a[14]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("image",{class:"popup-delete-img",src:T}),e.createElementVNode("view",{class:"popup-delete-text"}," 确定要删除 "+e.toDisplayString(V.value)+" 吗? ",1),e.createElementVNode("view",{class:"popup-delete-button"},[e.createElementVNode("view",{class:"popup-delete-button-right",onClick:a[12]||(a[12]=e=>E.value=!1)}," 取消 "),e.createElementVNode("view",{class:"popup-delete-button-left",onClick:a[13]||(a[13]=e=>((e,t)=>{Ae.value[e].children[t]={directiveName:""},f.value=!1,J.value.index0=999,J.value.index1=999;let l=[],a=0;Ae.value.forEach(((e,t)=>{l=[],a=e.children.length,e.children.forEach(((e,t)=>{null!==e.directiveName&&""!==e.directiveName&&void 0!==e.directiveName||Ae.value.every((e=>{const l=e.children[t];return void 0===l||null===l.directiveName||""===l.directiveName||void 0===l.directiveName}))&&l.push(t)}))})),a>4&&l.length>1?Ae.value.forEach(((e,t)=>{e.children.splice(l[0],1)})):Ae.value.forEach(((e,t)=>{e.children.splice(l[0],1),e.children.push({directiveName:""})})),E.value=!1,_e()})(G.value[0],G.value[1]))}," 确定 ")])],4)],512),[[e.vShow,E.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-delete",onClick:a[19]||(a[19]=e=>Z.value=!1)},[e.createElementVNode("view",{class:"popup-delete-content",style:e.normalizeStyle({opacity:H.value?1:0}),onClick:a[18]||(a[18]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("image",{class:"popup-delete-img",src:T}),e.createElementVNode("view",{class:"popup-delete-text"}," 确定要删除 "+e.toDisplayString(V.value)+" 吗? ",1),e.createElementVNode("view",{class:"popup-delete-button"},[e.createElementVNode("view",{class:"popup-delete-button-right",onClick:a[16]||(a[16]=e=>Z.value=!1)}," 取消 "),e.createElementVNode("view",{class:"popup-delete-button-left",onClick:a[17]||(a[17]=e=>{c.value.splice(X.value,1),Z.value=!1})}," 确定 ")])],4)],512),[[e.vShow,Z.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-share",onClick:a[21]||(a[21]=e=>ee.value=!1)},[e.createElementVNode("view",{class:"popup-share-content",style:e.normalizeStyle({opacity:H.value?1:0}),onClick:a[20]||(a[20]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-share-title"},[e.createTextVNode(" 护理日程分享 "),e.createElementVNode("image",{class:"popup-share-img",src:D})]),e.createElementVNode("view",{class:"popup-share-upcontent"},[e.createElementVNode("view",{class:"popup-share-font"},"久泰护理日程分享测试")]),e.createElementVNode("view",{class:"popup-share-gray"}),e.createElementVNode("view",{class:"popup-share-downcontent"},[e.createElementVNode("view",{class:"popup-share-downcontent-left"},[e.createElementVNode("image",{class:"popup-downcontent-img",src:D}),e.createElementVNode("view",{class:"popup-downcontent-font"},"久泰护理")]),e.createElementVNode("view",{class:"popup-share-downcontent-button",onClick:le}," 分享 ")])],4)],512),[[e.vShow,ee.value]])],4)}}}),[["__scopeId","data-v-81c0d68b"]]),B="/static/index/ku.png",z="/static/index/ren.png",_="/static/index/tu.png",I=[{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706886",title:"协助喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604232524795905",title:"鼻饲喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604428667228162",title:"注射器/吸管喂药",tagName:"头部,大体重"}],levle:"2",title:"协助喂药",key:"1900114812020310017",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605892869394433",title:"一级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606105021485058",title:"二级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606339931869185",title:"三级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606614344208386",title:"一级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606869953482753",title:"二级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607023431454722",title:"三级压疮防护",tagName:"大体重"}],levle:"2",title:"压疮防护",key:"1900115034452639746",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706887",title:"床椅转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706888",title:"床椅转移",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605073730211842",title:"床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605223185846273",title:"床椅转移",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605365393723393",title:"协助床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605496071458818",title:"协助床椅转移",tagName:null}],levle:"2",title:"床椅转移",key:"1902248363784159233",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607507626102786",title:"轮椅防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607677415723010",title:"轮椅防护",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902607817589362689",title:"轮椅防护",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902608061588803585",title:"轮椅防护",tagName:"大体重"}],levle:"2",title:"轮椅防护",key:"1902280900178886657",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608564582322178",title:"约束位按摩",tagName:"手"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608974609092610",title:"约束位按摩",tagName:"足"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618507855237121",title:"约束位按摩",tagName:"全"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618751548493825",title:"防护网约束",tagName:null}],levle:"2",title:"约束防护",key:"1902280933364219906",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620309090701314",title:"协助行走",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620486044192769",title:"放松按摩",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902625161569079298",title:"心灵慰藉",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902625402468929537",title:"狂躁",tagName:null}],levle:"2",title:"按摩保健",key:"1902564031454744577",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902625872432304130",title:"准备衣物",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626005538541569",title:"协助更换",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626664711163905",title:"肢体障碍",tagName:"半侧"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626800510144513",title:"肢体障碍",tagName:"全身"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627064688381953",title:"准备衣物",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627280716009474",title:"协助更换",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627416598876161",title:"肢体障碍",tagName:"半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627522404388866",title:"肢体障碍",tagName:"全身"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902627711806574593",title:"协助更换",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628058591629313",title:"肢体障碍",tagName:"半侧,大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628650718302209",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628837725540354",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628966847188993",title:"肢体障碍",tagName:"大体重,半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902629129879785474",title:"协助更换",tagName:"大体重"}],levle:"2",title:"更换衣物",key:"1902564088417587201",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629344456183809",title:"坐起",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629492301205506",title:"躺下",tagName:null}],levle:"2",title:"调整坐卧",key:"1902564199830884354",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902630862769065985",title:"遗体净身",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902631162275926017",title:"遗体穿衣",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631422431825921",title:"遗体转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631602463936514",title:"床位消毒",tagName:null}],levle:"2",title:"殡仪服务",key:"1902564263743688705",parentId:"1900112597427793921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902631830441136129",title:"更换床上用品",tagName:"全部"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632063828987905",title:"隔尿褥子更换",tagName:null}],levle:"2",title:"更换床上用品",key:"1902564446648897538",parentId:"1900112597427793921"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632288270389250",title:"临终护理",tagName:null}],levle:"2",title:"临终服务",key:"1902564503783706625",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"40",id:"1902632678701371393",title:"制氧机吸氧",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902632799853842433",title:"制氧机维护",tagName:null}],levle:"2",title:"制氧机应用",key:"1902564586101116930",parentId:"1900112597427793921"}],levle:"1",title:"1 日常照料",key:"1900112597427793921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900376187661553665",title:"准备洁具",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900420873478553602",title:"棉球清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706881",title:"协助清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706885",title:"义齿清洁",tagName:"口腔"}],levle:"2",title:"口腔清洁",key:"1902597070889127938",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902636771540963329",title:"准备洁具",tagName:"头部"},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637623425077250",title:"协助洗头",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637985234128898",title:"卧式洗头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902638122949906433",title:"擦头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902638304739430401",title:"刮头",tagName:null}],levle:"2",title:"头部清洁",key:"1902597497344987137",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902641763073101826",title:"准备洁具",tagName:"面部"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642254465175553",title:"协助洁面",tagName:null}],levle:"2",title:"面部清洁",key:"1902597651405967361",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642508145070081",title:"准备洁具",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642672796667905",title:"协助清洁",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642822885642242",title:"卧床清洁",tagName:"躯干"}],levle:"2",title:"躯干清洁",key:"1902597718082818050",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643318811758594",title:"准备洁具",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643483320750082",title:"协助清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643630888947713",title:"卧床清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643837525528578",title:"肌张力高",tagName:"清洁"}],levle:"2",title:"四肢清洁",key:"1902597811565465601",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645148199391234",title:"会阴清洁",tagName:"男"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645295457210369",title:"会阴清洁",tagName:"女"}],levle:"2",title:"会阴清洁",key:"1902597873964126209",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645493185089537",title:"肛周清洁",tagName:null}],levle:"2",title:"肛周清洁",key:"1902597930020999170",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645693211447298",title:"洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647316134465538",title:"泡手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647529817477122",title:"准备洁具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647673212342274",title:"协助洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647905878773762",title:"强直屈曲洗手",tagName:null}],levle:"2",title:"手清洁",key:"1902597991698239489",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648101203316737",title:"泡脚",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648239091060737",title:"卧式泡脚",tagName:null}],levle:"2",title:"足清洁",key:"1902598178588037121",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648426383511553",title:"修睫毛",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648548777496577",title:"剃须",tagName:null}],levle:"2",title:"剃须",key:"1902598258573414401",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648962444922882",title:"角质增生",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649132536532994",title:"灰指甲",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649302149992449",title:"正常",tagName:"修甲"}],levle:"2",title:"修甲",key:"1902598354606198785",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902649683919736834",title:"理发",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"25",id:"1902649860344745985",title:"理发",tagName:"颅骨缺损"}],levle:"2",title:"理发",key:"1902598400382832642",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902650121280786434",title:"床上沐浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650408884211713",title:"深度清洁",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650763722330113",title:"浴间洗浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"30",id:"1902651229122301954",title:"床上沐浴",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651366317985794",title:"深度清洁",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651555363655682",title:"浴间洗浴",tagName:"大体重"}],levle:"2",title:"沐浴",key:"1902598454782955522",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651778777452545",title:"内套管清洁",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651924047171586",title:"更换气切纱布",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"10",id:"1902652055928672258",title:"更换气切纱布",tagName:null}],levle:"2",title:"气切消毒",key:"1902598509522817026",parentId:"1900112615777873921"}],levle:"1",title:"2 清洁照料",key:"1900112615777873921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898057679966209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898202668666881",title:"协助进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898339931459586",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898472584712194",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898590658564097",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898719952179201",title:"准备餐具",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898979948695554",title:"协助进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899086840532993",title:"协助进餐",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899214838108162",title:"鼻胃管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899325014085633",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899587028062210",title:"食物加工",tagName:null}],levle:"2",title:"加餐饮食",key:"1902596129720864770",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281139677839362",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902281522340970498",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281654100836354",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281870434648066",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902654960639381506",title:"鼻肠管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902655101874180097",title:"轮椅进餐",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902892199009030145",title:"轮椅进餐",tagName:null}],levle:"2",title:"正餐饮食",key:"1902601263850950657",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893231608926209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893551978254337",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893716466274306",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894369850757122",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894528533860354",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"辅餐饮食",key:"1902601382595891202",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894832176304129",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894954117304322",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895077522116609",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895233407619073",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895569912434689",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"果汁饮食",key:"1902601427168759809",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895878508351489",title:"准备水杯",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895984053817346",title:"协助饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896136835534850",title:"协助饮水",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896508421509122",title:"鼻胃管饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896636553302017",title:"鼻肠管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902896855802155010",title:"准备水杯",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897018344017921",title:"协助饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897464936730626",title:"协助饮水",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897675813752834",title:"鼻胃管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897803417063426",title:"鼻肠管饮水",tagName:null}],levle:"2",title:"饮水饮食",key:"1902601487625457665",parentId:"1902280495747317762"}],levle:"1",title:"3 饮食照料",key:"1902280495747317762"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902653177363927041",title:"巡视",tagName:null}],levle:"2",title:"巡视",key:"1902564741860790273",parentId:"1902560466095017986"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653325481578497",title:"防坠床",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653497066360833",title:"被褥调整",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653650917625857",title:"睡姿调整",tagName:null}],levle:"2",title:"体位调整",key:"1902564818838851585",parentId:"1902560466095017986"}],levle:"1",title:"4 睡眠照料",key:"1902560466095017986"},{children:[{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904277308510210",title:"更换尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904458779267073",title:"更换隔尿垫",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905631242424322",title:"使用尿盆",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905824973131777",title:"使用尿壶",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906220483416065",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906459051233281",title:"坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906610562076674",title:"留置尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906783325458434",title:"更换纸尿裤",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908406344945665",title:"热敷抚触排尿",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908523827400705",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909645401067522",title:"更换尿片",tagName:null}],levle:"2",title:"小便",key:"1902596314152800257",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909835331735554",title:"床上排便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910002671882242",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910156154048514",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910361008050178",title:"人工取便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910524623654913",title:"造瘘袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910700176248834",title:"坐便椅",tagName:null}],levle:"2",title:"大便",key:"1902596399423000577",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910899565072385",title:"口腔吸痰",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911047405899778",title:"气切吸痰",tagName:null}],levle:"2",title:"吸痰",key:"1902596461238652930",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911232974491650",title:"呕吐",tagName:null}],levle:"2",title:"呕吐",key:"1902596886771765250",parentId:"1902560510768549889"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902911378349068290",title:"腹腔引流护理",tagName:null}],levle:"2",title:"引流",key:"1902596940366581762",parentId:"1902560510768549889"}],levle:"1",title:"5 排泄照料",key:"1902560510768549889"}],U=s(e.defineComponent({__name:"joysticknew",props:{getblue:{type:Boolean,default:!1},movebottom:{type:Number,default:0},moveleft:{type:Number,default:0},pao:{type:Boolean,default:!0},notext:{type:Boolean,default:!1}},emits:["movecard"],setup(t,{emit:l}){const a=l,i=e.ref(-1);let n=null,r=null,o=!1;const c=e.ref(-1),s=e.reactive({x:0,y:0}),d=e.ref(!1),m=e.ref(!1),u=e.ref(0),v=uni.upx2px(175),p=uni.upx2px(350);uni.upx2px(-50);const g=uni.upx2px(100),w=uni.getSystemInfoSync().windowHeight-g-p,h=t,f=e.ref(!1),N=e.ref(0);function y(e,t){if(!o){if(b(),i.value=e,a("movecard",e),(null==t?void 0:t.touches)&&t.touches.length){const e=t.touches[0];T(e.pageX,e.pageY)}m.value=!1,u.value++,c.value=e,setTimeout((()=>{c.value=-1}),300),setTimeout((()=>{m.value=!0}),16),n=setTimeout((()=>{i.value=-1,n=null}),300)}}function x(){m.value=!1}function E(e,t){k(),o=!0,d.value=!0,c.value=e;const l=((null==t?void 0:t.touches)||[])[0];l&&T(l.pageX,l.pageY),i.value=e,a("movecard",e),r=setInterval((()=>{i.value=e,a("movecard",e)}),500)}function V(){b(),k(),o=!1,d.value=!1,i.value=-1,c.value=-1}function b(){n&&(clearTimeout(n),n=null)}function k(){r&&(clearInterval(r),r=null)}function T(e,t){let l=e,a=t-w-50+h.movebottom/2;const i=l-v,n=a-v;if(Math.sqrt(i*i+n*n)>v){const e=Math.atan2(n,i);l=v+v*Math.cos(e),a=v+v*Math.sin(e)}s.x=l,s.y=a}function D(e){var t;if(!o)return;const l=((null==(t=e.detail)?void 0:t.touches)||e.touches||[])[0];l&&T(l.pageX,l.pageY)}return e.ref(0),e.watch((()=>h.getblue),(e=>{})),e.onBeforeUnmount((()=>{})),(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"move-circle",style:e.normalizeStyle({bottom:`${t.movebottom}rpx`,left:`${t.moveleft}rpx`}),onTouchmove:D,onTouchend:V,onTouchcancel:V},[d.value&&t.pao?(e.openBlock(),e.createElementBlock("view",{key:0,class:"light-shadow ripple-loop",style:e.normalizeStyle({left:s.x+"px",top:s.y+"px",transform:"translate(-50%, -50%)"})},null,4)):e.createCommentVNode("",!0),m.value&&t.pao?(e.openBlock(),e.createElementBlock("view",{key:u.value,class:"light-shadow ripple-once",style:e.normalizeStyle({left:s.x+"px",top:s.y+"px",transform:"translate(-50%, -50%)"}),onAnimationend:x},null,36)):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("image",{src:t.notext?"/static/index/newruler/suere.png":"/static/index/newruler/direction_1.png",class:"move-circle-all"},null,8,["src"]),[[e.vShow,-1==c.value||4==c.value]]),e.withDirectives(e.createElementVNode("image",{src:t.notext?"/static/index/newruler/sure_2.png":"/static/index/newruler/direction_3.png",class:"move-circle-all"},null,8,["src"]),[[e.vShow,3==c.value]]),e.withDirectives(e.createElementVNode("image",{src:t.notext?"/static/index/newruler/sure_4.png":"/static/index/newruler/direction_5.png",class:"move-circle-all"},null,8,["src"]),[[e.vShow,2==c.value]]),e.withDirectives(e.createElementVNode("image",{src:t.notext?"/static/index/newruler/sure_3.png":"/static/index/newruler/direction_4.png",class:"move-circle-all"},null,8,["src"]),[[e.vShow,0==c.value]]),e.withDirectives(e.createElementVNode("image",{src:t.notext?"/static/index/newruler/sure_1.png":"/static/index/newruler/direction_2.png",class:"move-circle-all"},null,8,["src"]),[[e.vShow,1==c.value]]),f.value?(e.openBlock(),e.createElementBlock("view",{class:"pulse-circle",key:N.value})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"click-box-top",onClick:a[0]||(a[0]=e=>y(0,e)),onLongpress:a[1]||(a[1]=e=>E(0,e))},null,32),e.createElementVNode("view",{class:"click-box-left",onClick:a[2]||(a[2]=e=>y(3,e)),onLongpress:a[3]||(a[3]=e=>E(3,e))},null,32),e.createElementVNode("view",{class:"click-box-bottom",onClick:a[4]||(a[4]=e=>y(2,e)),onLongpress:a[5]||(a[5]=e=>E(2,e))},null,32),e.createElementVNode("view",{class:"click-box-right",onClick:a[6]||(a[6]=e=>y(1,e)),onLongpress:a[7]||(a[7]=e=>E(1,e))},null,32),e.createElementVNode("view",{class:"click-box-center",onClick:a[8]||(a[8]=e=>y(4,e)),onLongpress:a[9]||(a[9]=e=>E(4,e))},null,32)],36))}}),[["__scopeId","data-v-3df4b966"]]),M=s(e.defineComponent({__name:"index",props:{isshow:{type:Boolean,required:!0},darkFans:{type:Boolean,required:!0},canmove:{type:Boolean,required:!0},liang:{type:Object},isold:{type:Boolean,required:!0}},emits:["darkchange","savename","saveruler","closename","changefangkuang","changeold"],setup(t,{expose:a,emit:i}){const o=t;e.watch((()=>o.isold),(()=>{o.isold&&(te.value.index0=9,te.value.index1=0,Oe(),h.value=1,f.value=1,e.nextTick((()=>{f.value=0,h.value=605})))})),e.watch((()=>o.canmove),(()=>{ye.value=!1})),e.watch((()=>o.isshow),((t,l)=>{t!==l&&(ye.value=!1,ve.value=!1,Ie.value?Ie.value--:(te.value.index0=9,te.value.index1=0,Oe(),h.value=1,f.value=1,e.nextTick((()=>{f.value=0,h.value=605}))))}));const c=e.ref([{name:"纸尿裤",url:"/static/index/niao.png",target:"#fff",id:-1},{name:"呕吐",url:"/static/index/tu.png",target:"#fff",id:-1},{name:"吸痰",url:"/static/index/ou.png",target:"#fff",id:-1},{name:"大便",url:"/static/index/baba.png",target:"#fff",id:-1},{name:"纸尿裤",url:"/static/index/niao.png",target:"#fff",id:-1},{name:"呕吐",url:"/static/index/tu.png",target:"#fff",id:-1},{name:"吸痰",url:"/static/index/ou.png",target:"#fff",id:-1},{name:"大便",url:"/static/index/baba.png",target:"#fff",id:-1}]),s=["狂躁","正常","大体重","口腔","小体重","头部","面部","躯干","四肢","修甲","颅骨缺损"],d=["周一","周二","周三","周四","周五","周六","周日"],m=Array.from({length:31},((e,t)=>(t+1).toString().padStart(2,"0"))),u=e.ref(!0),v=e.ref(!1),p=e.ref(0),g=e.ref(0),w=e.ref(0),h=e.ref(678),f=e.ref(0),N=e.ref();e.ref([]);const y=e.ref(!1),x=e.ref([]),E=e.ref(!1);e.ref(!1);const V=e.ref(!1);e.ref(!1),e.ref(!1),e.ref(""),e.ref(!1);const b=e.ref(!1);e.ref("");const k=e.ref(!1);e.ref(0),e.ref(0),e.ref(6),e.ref(11),e.ref(0),e.ref(3);const T=e.ref(!1);e.onMounted((()=>{}));const C=e.ref(0);const S=()=>{let e=JSON.parse(JSON.stringify(Fe.value[oe.value.index0].children[oe.value.index1]));be.value=[te.value.index0,te.value.index1];let t=Fe.value[oe.value.index0].children[oe.value.index1].typeName;Fe.value[oe.value.index0].children[oe.value.index1]={directiveName:"",typeName:t};let l=Fe.value[be.value[0]].children[be.value[1]].typeName;Fe.value[be.value[0]].children[be.value[1]]=e,Fe.value[be.value[0]].children[be.value[1]].typeName=l;let a=Fe.value[be.value[0]].children[be.value[1]].startTime,i=Fe.value[be.value[0]].children[be.value[1]].endTime,n=Fe.value[be.value[0]].positioning;const r=a.split(":")[1],o=i.split(":")[1];let c=Number(o)-Number(r),s=l,d=Number(s)+c;Fe.value[be.value[0]].children[be.value[1]].startTime=n+":"+s.padStart(2,"0"),Fe.value[be.value[0]].children[be.value[1]].endTime=n+":"+String(d%60).padStart(2,"0"),oe.value.index0=-1,oe.value.index1=-1,T.value=!1;let m={index0:te.value.index0,index1:te.value.index1};Ue(m)},M=()=>{P.value=!1,T.value?S():Fe.value[te.value.index0].children[te.value.index1].directiveName&&(oe.value.index0=te.value.index0,oe.value.index1=te.value.index1,T.value=!0)};e.ref(!0),e.ref(!1);const F=e=>{switch(P.value=!1,e){case 0:te.value.index1&&(te.value.index1--,Oe());break;case 1:if(23==te.value.index0)return;te.value.index0++,Oe();break;case 2:if(11==te.value.index1)return;te.value.index1++,Oe();break;case 3:if(0==te.value.index0)return;te.value.index0--,Oe()}},$=e.ref(""),A=e.ref(-1),L=e.ref(""),O=e.ref(-1),P=e.ref(!1),j=()=>{Fe.value[te.value.index0].children[te.value.index1].directiveName&&(P.value?(P.value=!1,ge(te.value.index0,te.value.index1)):P.value=!0)};function q(e,t){return 2*function(e,t){const l=55.9898*e+78.233*t;return Math.abs(43758.5453*Math.sin(l))%1}(e,t)}e.ref(!1),e.ref(0);const R=e.ref(0),W=e.ref(0);function Y(e){let t=e.detail.scrollTop;R.value=e.detail.scrollTop;let l=parseFloat(t.toFixed(2));W.value=l}const J=e.ref(0);function X(e){J.value=e.detail.scrollLeft}e.ref(!0);const Z=(e,t,l)=>"日常"===e.cycleType?oe.value.index0===t&&oe.value.index1===l?"title-time-border-yellow-active-transparent":ve.value?"title-time-border-yellow-active":"title-time-border-yellow":e.cycleType?oe.value.index0===t&&oe.value.index1===l?"title-time-border-pouple-active-transparent":ve.value?"title-time-border-pouple-active":"title-time-border-pouple":"title-time-border",H=e.ref([{url:"/static/index/firstTags/30.png",targetUrl:"/static/index/firstTags/21.png",name:"日常"},{url:"/static/index/firstTags/10.png",targetUrl:"/static/index/firstTags/99.png",name:"清洁"},{url:"/static/index/firstTags/40.png",targetUrl:"/static/index/firstTags/31.png",name:"饮食"},{url:"/static/index/firstTags/00.png",targetUrl:"/static/index/firstTags/01.png",name:"睡眠"},{url:"/static/index/firstTags/20.png",targetUrl:"/static/index/firstTags/11.png",name:"排泻"},{url:"/static/index/firstTags/50.png",targetUrl:"/static/index/firstTags/41.png",name:"影像"}]),G=e.ref(0),Q=e.ref(0),K=e.ref(0);e.ref(!1),e.ref([]);const ee=i;e.ref(!1);const te=e.ref({index0:9,index1:0});e.ref(0),e.ref([]);const le=e.ref(null);e.ref({});const ae=e.ref(0),ie=e.ref(0),ne=e.ref(0),re=e.ref(0),oe=e.ref({index0:999,index1:999,typeName:""});e.ref(-1),e.ref(!1);const ce=e.ref(!1),se=e.ref(-1),de=e.ref(!1),me=()=>{de.value=!0,ce.value=!1,setTimeout((()=>{ce.value=!0}),100)},ue=()=>{uni.share({provider:"weixin",scene:"WXSceneSession",type:0,href:"http://192.168.2.31:3101/daytoday",title:"护理日程分享",summary:"九泰护理日程测试",imageUrl:"https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/uni@2x.png",success:function(e){l("log","at component/rightItemssecondrelnew/index.vue:943","success:")},fail:function(e){l("log","at component/rightItemssecondrelnew/index.vue:946","fail:")}})},ve=e.ref(!1);e.ref([]);const pe=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-ae.value)>0||Math.abs(l-ie.value)>0)&&le.value&&(clearTimeout(le.value),le.value=null)},ge=(e,t)=>{let l=Fe.value[e].children[t].typeName;Fe.value[e].children[t]={directiveName:"",typeName:l}};e.ref(null),e.ref(!1),e.ref(!1);const we=e.ref(0),he=e.ref(0),fe=e.ref(!1);e.ref(""),e.ref("");const Ne=e.ref(null),ye=e.ref(!1),xe=e=>{we.value=Math.floor(e.touches[0].pageX),he.value=Math.floor(e.touches[0].pageY),Ne.value=setTimeout((()=>{ye.value=!0}),500)},Ee=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-we.value)>0||Math.abs(l-he.value)>0)&&Ne.value&&(clearTimeout(Ne.value),Ne.value=null)},Ve=()=>{Ne.value&&(clearTimeout(Ne.value),Ne.value=null)};e.ref({time:"",minute:"",array:[]}),e.ref({op:{name:"",index:[-1,-1,-1]},startTime:"",weekTimeNumber:-1,monthTimeNumber:-1,monthTime:"",weekTime:""}),e.ref(0);const be=e.ref([-1,-1]);e.ref(null);const ke=()=>{k.value=!1,b.value=!0,setTimeout((()=>{k.value=!0}),50)},Te=()=>{if(P.value)return P.value=!1,void ge(te.value.index0,te.value.index1);if(T.value)return void S();oe.value.index0=-1,oe.value.index1=-1,T.value=!1;let t=!1,a=x.value[G.value].children[Q.value].children[K.value];if("即时护理"===a.cycleType)return w.value=1,c.value.forEach(((e,l)=>{e.id===a.id&&(t=!0)})),void e.nextTick((()=>{t?(clearTimeout(Ce.value),y.value=!0,Ce.value=setTimeout((()=>{y.value=!1}),1e3)):(w.value=0,c.value.length&&"#00a8ff"===c.value[0].target&&(c.value[0].target="#fff",clearTimeout(De.value)),c.value.unshift({name:a.title,url:"/static/index/ou.png",target:"#00a8ff",id:a.id}),l("log","at component/rightItemssecondrelnew/index.vue:1188","!!!!",c.value),De.value=setTimeout((()=>{c.value[0].target="#fff"}),1500))}));if("周期护理"===a.cycleType&&v.value&&-1==A.value&&-1==O.value)return;if("周期护理"===a.cycleType&&!v.value)return void(v.value=!0);let i="";"日常护理"===a.cycleType?i="日常":(i=-1!==A.value?$.value:L.value+"号",v.value=!1,A.value=-1,O.value=-1,$.value="",L.value="");const n=Number(te.value.index0),r=Number(Fe.value[te.value.index0].children[te.value.index1].typeName),o=r+10,s=n+Math.floor(o/60),d=`${String(n)}:${String(r).padStart(2,"0")}`,m=`${String(s)}:${String(o%60).padStart(2,"0")}`;Fe.value[te.value.index0].children[te.value.index1].startTime=d,Fe.value[te.value.index0].children[te.value.index1].endTime=m;let u={directiveId:a.id,directiveName:a.title,startTime:d,endTime:m,positioning:te.value.index0.toString(),positioningLong:te.value.index1.toString(),tagName:a.tagName,cycleType:i,nuId:"1",customerId:"1",id:"",typeName:Fe.value[te.value.index0].children[te.value.index1].typeName};Fe.value[te.value.index0].children[te.value.index1]=u;let p={index0:te.value.index0,index1:te.value.index1};Ue(p),Se()},De=e.ref(null),Ce=e.ref(null),Se=()=>{Fe.value.forEach(((e,t)=>{e.children.forEach(((e,l)=>{let a="";if(e.directiveName||e.id)e.positioning=t,e.positioningLong=l;else{let i={};e.typeName&&(a=e.typeName),i=JSON.parse(JSON.stringify(Ae.value)),a&&(i.typeName=a),i.positioning=t,i.positioningLong=l}}))}))},Be=()=>{uni.setStorage({key:"myArray",data:Fe.value,success:function(){uni.navigateTo({url:"/pages/timeMatrix/indexnew"})}})},ze=e.ref({index0:-1,index1:-1}),_e=e.ref({index0:-1,index1:-1,current:-1,bordershow:!0}),Ie=e.ref(0),Ue=e=>{te.value.index0=e.index0,te.value.index1=e.index1,Oe(),_e.value.index0=e.index0,_e.value.index1=e.index1,ze.value.index0=_e.value.index0,ze.value.index1=_e.value.index1,_e.value.bordershow=!1,setTimeout((()=>{_e.value.index0=-1,_e.value.index1=-1,_e.value.current=-1}),400),setTimeout((()=>{_e.value.bordershow=!0,ze.value.index0=-1,ze.value.index1=-1}),1e3)},Me=["00","05","10","15","20","25","30","35","40","45","50","55"],Fe=e.ref(Array.from({length:24},((e,t)=>({positioning:t.toString(),children:Me.map((e=>({typeName:e,directiveName:""})))}))));function $e(e){Ie.value=3,Ue(e)}n((()=>{x.value=I,N.value=x.value[0].children,uni.$on("where",$e)})),r((()=>{uni.$off("where",$e)})),a({rulerMoveEnd:e=>{if(999!==o.liang.index0&&e.cycleType){be.value=[o.liang.index0,o.liang.index1];let t=Fe.value[oe.value.index0].children[oe.value.index1].typeName;Fe.value[oe.value.index0].children[oe.value.index1]={directiveName:"",typeName:t};let l=Fe.value[be.value[0]].children[be.value[1]].typeName;Fe.value[be.value[0]].children[be.value[1]]=e,Fe.value[be.value[0]].children[be.value[1]].typeName=l;let a=Fe.value[be.value[0]].children[be.value[1]].startTime,i=Fe.value[be.value[0]].children[be.value[1]].endTime,n=Fe.value[be.value[0]].positioning;const r=a.split(":")[1],c=i.split(":")[1];let s=Number(c)-Number(r),d=l,m=Number(d)+s;Fe.value[be.value[0]].children[be.value[1]].startTime=n+":"+d.padStart(2,"0"),Fe.value[be.value[0]].children[be.value[1]].endTime=n+":"+String(m%60).padStart(2,"0")}}}),e.ref({index0:999,index1:999});const Ae=e.ref({directiveId:"",directiveName:"",startTime:"",endTime:"",positioning:"",positioningLong:"",tagName:"",cycleType:"",nuId:"1",customerId:"1",id:"",typeName:""});function Le(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}function Oe(){if(te.value.index0>=0&&te.value.index0<=24&&te.value.index1>=0&&te.value.index1<=11){const e=201*(te.value.index0+.5),t=167*(te.value.index1-.5);h.value=e-702.5,f.value=t-240;const l=4824,a=1837;h.value=Math.max(0,Math.min(h.value,l-1405))/2,f.value=Math.max(0,Math.min(f.value,a-480))/2}}return(l,a)=>{var i,n,r,o;return e.openBlock(),e.createElementBlock("view",{class:"right-container",style:e.normalizeStyle(t.isshow?{opacity:"1"}:{opacity:"0"}),onClick:a[10]||(a[10]=e=>{ye.value=!1,ve.value=!1})},[e.createVNode(U,{onMovecard:F}),e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," ID:12345678 ",2),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," 名称:未命名01 ",2),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"right-icons-font-dark":"right-icons-font")},"王金福",2),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/face.png":"/static/index/undericons/facelight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/hand.png":"/static/index/undericons/handlight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/out.png":"/static/index/undericons/outlight.png"},null,8,["src"])]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button-wrong",onClick:a[0]||(a[0]=e=>{ee("changeold",0)})},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 拖动模式 ")]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button"},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 手柄模式 ")])]),e.createElementVNode("view",{class:"doctorsay-container-view"},[e.createElementVNode("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"doctorsay-container-title"},[e.createElementVNode("view",{class:"doctorsay-container-left"},[e.createElementVNode("view",{class:"doctorsay-container-left-gun"}),e.createElementVNode("view",{class:"doctorsay-container-left-font"},"护理流程"),e.createElementVNode("view",{class:"doctorsay-container-share",onClick:me}," 分享 "),e.createElementVNode("view",{class:"doctorsay-container-share"}," 立即生效 ")]),e.createElementVNode("view",{class:"doctorsay-container-right"},[e.createElementVNode("view",{class:"doctorsay-container-right-kuai-cheng"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"日常"),e.createElementVNode("view",{class:"doctorsay-container-right-kuai-zi"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"周期"),e.createElementVNode("view",{class:"doctorsay-container-juzhen",onClick:Be}," 预览 ")])]),e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"boom-title"},[e.createElementVNode("view",{class:"boom-title-left"}," 分 "),e.createElementVNode("view",{class:"boom-title-right"}," 时 ")]),e.createElementVNode("view",{class:"boom-father"},[e.createElementVNode("view",{class:"boom"},[e.createElementVNode("view",{style:e.normalizeStyle({marginTop:`-${2*W.value}rpx`})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Fe.value[0].children,((l,a)=>(e.openBlock(),e.createElementBlock("view",{key:a},[e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(se.value===a||t.liang.index1===a&&!t.canmove||oe.value.index1===a&&ve.value?"boom-son-target":"boom-son")},e.toDisplayString(l.typeName),3),[[e.vShow,l.typeName]])])))),128))],4)])]),e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("scroll-view",{style:{height:"920rpx",width:"100%"},"scroll-left":h.value,"scroll-x":"",onScroll:X,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex","box-shadow":"10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1)",width:"4824rpx",background:"linear-gradient(to right, #c4dbf4,#c9c2ef, #c6dcf3)"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Fe.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time"},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),1)])))),128))]),e.createElementVNode("view",{style:{display:"flex",height:"calc(100% - 80rpx)"}},[e.createElementVNode("scroll-view",{style:{height:"100%",width:"4824rpx"},"scroll-top":f.value,"scroll-y":t.canmove&&!ve.value,onScroll:Y,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Fe.value,((l,i)=>(e.openBlock(),e.createElementBlock("view",{key:i},[e.createElementVNode("view",{class:"super-card-time-und"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.children,((l,n)=>(e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:n},[e.createElementVNode("view",{class:e.normalizeClass(_e.value.index0===i&&_e.value.index1===n?_e.value.index1?"title-time-border-big":"title-time-border-big-top":"super-card-time-card"),style:e.normalizeStyle([_e.value.bordershow||ze.value.index0!==i||ze.value.index1!==n?{borderBottom:"1rpx solid transparent"}:{zIndex:999},{position:"relative"}]),id:`a${i}_${n}`,onClick:t=>((t,l,a,i)=>{t.directiveName&&(se.value=a,uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.left>100&&t.left<1067&&t.top<570&&t.top>140&&t.dataset.index0==l&&t.dataset.index1==a&&(t.left>100&&t.left<500?ne.value=Math.floor(t.left)+520:ne.value=Math.floor(t.left),t.top>140&&t.top<300?re.value=Math.floor(t.top)+250:re.value=Math.floor(t.top),await e.nextTick(),E.value=!0,V.value=!1,setTimeout((()=>{V.value=!0}),100))}))})).exec())})(l,i,n),onTouchstart:e=>{},onTouchmove:pe,onTouchend:a[1]||(a[1]=e=>(fe.value=!1,void(le.value&&(clearTimeout(le.value),le.value=null)))),"data-index0":i,"data-index1":n},[oe.value.index0===i&&oe.value.index1===n&&0==n?(e.openBlock(),e.createElementBlock("view",{key:0,class:"time-button-orange-spe"},[e.createTextVNode(" 请选择服务指令迁移的目标单元格 "),e.createElementVNode("view",{class:"under-button-three"})])):e.createCommentVNode("",!0),oe.value.index0===i&&oe.value.index1===n&&n?(e.openBlock(),e.createElementBlock("view",{key:1,class:"time-button-orange"},[e.createTextVNode(" 请选择服务指令迁移的目标单元格 "),e.createElementVNode("view",{class:"under-button-three"})])):e.createCommentVNode("",!0),te.value.index0==i&&te.value.index1==n&&0==n&&P.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"time-button-black-spe"},[e.createTextVNode(" 是否确认删除该服务指令 "),e.createElementVNode("view",{class:"under-button-three"})])):e.createCommentVNode("",!0),te.value.index0==i&&te.value.index1==n&&n&&P.value?(e.openBlock(),e.createElementBlock("view",{key:3,class:"time-button-black"},[e.createTextVNode(" 是否确认删除该服务指令 "),e.createElementVNode("view",{class:"under-button-three"})])):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{class:"title-time-blue"},[e.createElementVNode("image",{class:"title-time-blue-img",src:T.value?"/static/index/movemode/targetcheng.png":"/static/index/movemode/target.png"},null,8,["src"])],512),[[e.vShow,te.value.index0==i&&te.value.index1==n]]),e.createElementVNode("view",{class:e.normalizeClass(Z(l,i,n)),style:e.normalizeStyle([{"font-size":"30rpx",overflow:"hidden"},{animationDelay:`-${q(i,n).toFixed(2)}s`}])},[l.startTime?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"margin-top":"5rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"25rpx","margin-top":"20rpx"}},e.toDisplayString(l.startTime+"-"+l.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==l.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(l.cycleType),1)],512)),[[e.vShow,t.liang.index0!==i||t.liang.index1!==n||t.canmove]]):e.createCommentVNode("",!0),l.startTime?(e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font-rel"},e.toDisplayString(Le(l.directiveName)[0]),1)):e.createCommentVNode("",!0),l.startTime?(e.openBlock(),e.createElementBlock("view",{key:2,class:"title-time-items"},[e.createElementVNode("image",{class:"right-box-items-button",src:B}),e.createElementVNode("image",{class:"right-box-items-button",src:z})])):e.createCommentVNode("",!0)],6)],46,["id","onClick","onTouchstart","data-index0","data-index1"])])))),128))])])))),128))])],40,["scroll-top","scroll-y"])])],40,["scroll-left"]),e.createElementVNode("view",{class:"scroll-bottom-bgc"})]),e.createElementVNode("view",{class:"right-cards"},[e.createElementVNode("scroll-view",{"scroll-x":"",class:"scroll-box","scroll-left":w.value},[e.createElementVNode("view",{class:"right-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"right-box-item",onTouchstart:xe,onTouchmove:Ee,onTouchend:Ve,style:e.normalizeStyle(t.target?{background:t.target,transition:"all 1.5s ease-in-out"}:{transition:"all 1.5s ease-in-out"})},[e.createElementVNode("image",{class:"title-time-button",src:"/static/index/redbian.png"}),e.createElementVNode("view",{class:"title-time-font"}," 即时 "),e.createElementVNode("view",{style:e.normalizeStyle({animationDelay:`-${.1*l}s`}),class:e.normalizeClass(ye.value?"super-end-items-img-father-active":"super-end-items-img-father")},[e.createElementVNode("image",{class:"right-box-img",src:t.url},null,8,["src"])],6),e.createElementVNode("view",{class:"right-box-font"},e.toDisplayString(t.name),1),e.createElementVNode("view",{class:"right-box-items"},[e.createElementVNode("image",{class:"right-box-items-button",src:B}),e.createElementVNode("image",{class:"right-box-items-button",src:z})]),e.withDirectives(e.createElementVNode("view",{class:"super-end-items-father-close-father",onClick:e.withModifiers((e=>c.value.splice(l,1)),["stop"])}," - ",8,["onClick"]),[[e.vShow,ye.value]])],36)])))),128))])],8,["scroll-left"]),e.createElementVNode("view",{class:"middle-box"},[e.createElementVNode("view",{class:"middle-left-box"},[e.createElementVNode("view",{class:"first-contant"},[e.withDirectives(e.createElementVNode("view",{class:"time-father"},[e.withDirectives(e.createElementVNode("view",{class:"time-button"},[e.createElementVNode("view",{class:"time-button-month"},"周"),e.createElementVNode("view",{class:"time-button-week",onClick:a[2]||(a[2]=e=>{u.value=!1,A.value=-1,$.value=""})},"月")],512),[[e.vShow,u.value]]),e.withDirectives(e.createElementVNode("view",{class:"time-button"},[e.createElementVNode("view",{class:"time-button-month-target",onClick:a[3]||(a[3]=e=>{u.value=!0,O.value=-1,L.value=""})},"周"),e.createElementVNode("view",{class:"time-button-week-target"},"月")],512),[[e.vShow,!u.value]]),e.createElementVNode("scroll-view",{"scroll-y":"",style:{width:"100%",height:"600rpx"},"show-scrollbar":!1,"scroll-top":p.value},[u.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},e.renderList(d,((t,l)=>e.createElementVNode("view",{key:l,onClick:e=>((e,t)=>{const l=Date.now();l-C.value<300?($.value=e,A.value=t,Te(),C.value=0):($.value=e,A.value=t,C.value=l)})(t,l)},[e.createElementVNode("view",{class:e.normalizeClass(A.value===l?"items-card-target":"items-card")},e.toDisplayString(t),3)],8,["onClick"]))),64)):e.createCommentVNode("",!0),u.value?e.createCommentVNode("",!0):(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(e.unref(m),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>((e,t)=>{const l=Date.now();l-C.value<300?(L.value=e,O.value=t,Te(),C.value=0):(L.value=e,O.value=t,C.value=l)})(t,l)},[e.createElementVNode("view",{class:e.normalizeClass(O.value===l?"items-card-target":"items-card")},e.toDisplayString(t),3)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"40rpx"}})],8,["scroll-top"])],512),[[e.vShow,v.value]]),e.withDirectives(e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%",width:"100%"},"show-scrollbar":!1,"scroll-top":p.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(x.value[G.value].children[Q.value].children,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>function(e){const t=Date.now();t-C.value<300?(K.value=e,Te(),C.value=0):(K.value=e,C.value=t)}(l)},[e.createElementVNode("view",{class:"right-box-item",style:e.normalizeStyle(K.value==l?{border:"2rpx solid rgb(54, 159, 239)",backgroundColor:"#fff"}:{border:"2rpx solid rgb(229, 233, 249)"})},[e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:"/static/index/ri.png"},null,512),[[e.vShow,"日常护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:"/static/index/zhou.png"},null,512),[[e.vShow,"周期护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:"/static/index/ji.png"},null,512),[[e.vShow,"即时护理"===t.cycleType]]),e.createElementVNode("image",{class:"right-box-img",src:_}),e.createElementVNode("view",{class:"right-box-font",style:e.normalizeStyle(K.value==l?{color:"rgb(54, 159, 239)"}:{})},e.toDisplayString(t.title),5),e.createElementVNode("view",{class:"right-box-items"},[e.createElementVNode("image",{class:"right-box-items-button",src:B}),e.createElementVNode("image",{class:"right-box-items-button",src:z})])],4)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"20rpx"}})],8,["scroll-top"]),[[e.vShow,!v.value]])]),e.createElementVNode("view",{class:"second-contant"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%",width:"100%"},"show-scrollbar":!1,"scroll-top":g.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(N.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:t=>(t=>{v.value=!1,A.value=-1,O.value=-1,$.value="",L.value="",Q.value=t,K.value=0,p.value=1,e.nextTick((()=>{p.value=0}))})(l)},[e.createElementVNode("view",{class:e.normalizeClass(Q.value==l?"downList-box-target":"downList-box")},[e.createElementVNode("image",{class:"downList-box-img",src:_}),e.createElementVNode("view",{class:"downList-box-text"},e.toDisplayString(t.title),1)],2)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"20rpx"}})],8,["scroll-top"])])]),e.createElementVNode("view",{class:"middle-right-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(H.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:t=>(t=>{5!==t&&(v.value=!1,A.value=-1,O.value=-1,$.value="",L.value="",g.value=1,p.value=1,e.nextTick((()=>{g.value=0,p.value=0})),G.value=t,N.value=x.value[t].children,Q.value=0,K.value=0)})(l)},[e.createElementVNode("view",{class:e.normalizeClass(l===G.value?"doctorsay-container-card-target":"doctorsay-container-card")},[e.createElementVNode("image",{class:"doctorsay-container-card-img",src:l===G.value?t.targetUrl:t.url},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(l===G.value?"doctorsay-container-card-font-dark":"doctorsay-container-card-font")},e.toDisplayString(t.name),3)],2)],8,["onClick"])))),128))])]),e.createElementVNode("view",{class:"under-button"},[e.createElementVNode("view",{class:"under-button-black",style:e.normalizeStyle(y.value?{opacity:1}:{opacity:0})}," 不能重复添加相同的即时服务指令 ",4),e.createElementVNode("view",{class:"white-circle",onClick:M},[e.createElementVNode("image",{class:"white-circle-img",src:"/static/index/keyimg/movebutton.png"})]),e.createElementVNode("view",{class:"white-circle",onClick:j},[e.createElementVNode("image",{class:"white-circle-img",src:"/static/index/keyimg/deletebutton.png"})]),e.createElementVNode("view",{class:"white-circle",onClick:ke},[e.createElementVNode("image",{class:"white-circle-img",src:"/static/index/keyimg/notebutton.png"})]),e.createElementVNode("view",{class:"white-circle-click-father",onClick:Te},[e.createElementVNode("image",{class:"white-circle-click",src:"/static/index/keyimg/okbutton.png"}),e.createElementVNode("view",{class:"white-circle-font"}," 确定 ")])])])])])]),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay",onClick:a[5]||(a[5]=e=>{E.value=!1,oe.value.index0=999,se.value=-1})},[e.createElementVNode("view",{class:"popup-overlay-content",style:e.normalizeStyle({top:2*re.value-350+"rpx",left:2*ne.value-780+"rpx",opacity:V.value?1:0,backgroundColor:"日常"===(null==(n=null==(i=Fe.value[oe.value.index0])?void 0:i.children[oe.value.index1])?void 0:n.type)?"#fffcf6":"rgb(246, 244, 254)"}),onClick:a[4]||(a[4]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"},e.toDisplayString(null==(o=null==(r=Fe.value[oe.value.index0])?void 0:r.children[oe.value.index1])?void 0:o.value),1)]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],4)],512),[[e.vShow,E.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-say",onClick:a[7]||(a[7]=e=>b.value=!1)},[e.createElementVNode("view",{class:"popup-say-content",style:e.normalizeStyle([{"padding-top":"30rpx"},{opacity:k.value?1:0}]),onClick:a[6]||(a[6]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-say-content-flex"},[e.createElementVNode("view",{class:"popup-say-content-gun"}),e.createElementVNode("view",{class:"popup-say-content-font"},"情绪标签")]),e.createElementVNode("view",{style:{display:"flex"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.slice(0,2),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"tags-father"},[e.createElementVNode("image",{class:"tags-img",src:`/static/index/tagNames/${l}.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font"},e.toDisplayString(t),1)])])))),128))]),e.createElementVNode("view",{class:"popup-say-content-flex",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"popup-say-content-gun"}),e.createElementVNode("view",{class:"popup-say-content-font"},"体型标签")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.slice(2,11),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"tags-father"},[e.createElementVNode("image",{class:"tags-img",src:`/static/index/tagNames/${l+2}.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font"},e.toDisplayString(t),1)])])))),128))]),e.createElementVNode("view",{class:"popup-say-three"})],4)],512),[[e.vShow,b.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-share",onClick:a[9]||(a[9]=e=>de.value=!1)},[e.createElementVNode("view",{class:"popup-share-content",style:e.normalizeStyle({opacity:ce.value?1:0}),onClick:a[8]||(a[8]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-share-title"},[e.createTextVNode(" 护理日程分享 "),e.createElementVNode("image",{class:"popup-share-img",src:D})]),e.createElementVNode("view",{class:"popup-share-upcontent"},[e.createElementVNode("view",{class:"popup-share-font"},"久泰护理日程分享测试")]),e.createElementVNode("view",{class:"popup-share-gray"}),e.createElementVNode("view",{class:"popup-share-downcontent"},[e.createElementVNode("view",{class:"popup-share-downcontent-left"},[e.createElementVNode("image",{class:"popup-downcontent-img",src:D}),e.createElementVNode("view",{class:"popup-downcontent-font"},"久泰护理")]),e.createElementVNode("view",{class:"popup-share-downcontent-button",onClick:ue}," 分享 ")])],4)],512),[[e.vShow,de.value]])],4)}}}),[["__scopeId","data-v-bd7a2b2a"]]),F=s(e.defineComponent({__name:"index",setup(t){e.onMounted((()=>{c.value=2,uni.getSystemInfoSync(),uni.pageScrollTo}));const l=e.ref([{url:"/static/index/lefticon/index.png",targetUrl:"/static/index/lefticontarget/blueindex.png"},{url:"/static/index/lefticon/nurse.png",targetUrl:"/static/index/lefticontarget/bluenurse.png"},{url:"/static/index/lefticon/doctor.png",targetUrl:"/static/index/lefticontarget/bluedoctor.png"},{url:"/static/index/lefticon/give.png",targetUrl:"/static/index/lefticontarget/givedark.png"},{url:"/static/index/lefticon/wifi.png",targetUrl:"/static/index/lefticontarget/bluewifi.png"},{url:"/static/index/lefticon/back.png",targetUrl:"/static/index/lefticontarget/blueback.png"}]),a=e.ref(0),i=e.ref(!1),r=e.ref(!1),o=e.ref(!1),c=e.ref(-1);e.ref([]),e.ref(0),e.ref(0),e.ref(0),e.ref(0),e.ref(0);const s=e=>{o.value=e},d=e=>{c.value=e},m=e=>{if(3===e)return i.value=!1,r.value=!1,void uni.navigateTo({url:`/pages/somethingmove/index?darkFans=${o.value}`,animationType:"slide-in-right",animationDuration:400});5!==e?(a.value=e,i.value=!1,r.value=!1,setTimeout((()=>{switch(e){case 0:i.value=!0;break;case 1:r.value=!0}}),50)):uni.navigateBack()},u=e.ref(0),v=e.ref(0),p=e.ref(""),g=e.ref(!0),w=e.ref({index0:999,index1:999}),h=e.ref(!0),f=uni.createAnimation({duration:0,timingFunction:"linear",delay:0}),y=e.ref({}),x=function(e,t){let l=0;return function(...a){const i=Date.now();i-l>=t&&(l=i,e.apply(this,a))}}((e=>{var t;const l=e.touches[0];u.value=2*(Math.floor(l.clientX)-100),v.value=2*(Math.floor(l.clientY)-55),f.translate3d(u.value/2,v.value/2,0).step({duration:0}),y.value=f.export();const a=Math.floor(l.clientX)-50,i=Math.floor(l.clientY)-25,n=E.value.find((e=>a>=Math.floor(e.left)&&a<=Math.floor(e.right)&&i>=Math.floor(e.top)&&i<=Math.floor(e.bottom)));if(n){const{index0:e,index1:l}=n.dataset;w.value.index0=e,w.value.index1=l,u.value<200&&h.value&&!c.value&&(null==(t=B.value)||t.nextItems(),h.value=!1,setTimeout((()=>{h.value=!0}),1e3))}else w.value.index0=999,w.value.index1=999}),40),E=e.ref([]),V=(e,t)=>{p.value=e,g.value=!1,E.value=t},b=e=>{E.value=e},T=e.ref({directiveName:"",cycleType:"",positioningLong:"0",typeName:"",startTime:"",id:"",endTime:"",tagName:null}),D=(e,t)=>{T.value=e,g.value=!1,E.value=t},C=()=>{p.value="",g.value=!0},B=e.ref(null),z=e.ref(null),_=()=>{var e,t,l;u.value=9999,v.value=9999,f.translate3d(u.value/2,v.value/2,0).step({duration:0}),y.value=f.export(),g.value=!0,w.value={index0:999,index1:999},p.value?c.value||null==(e=B.value)||e.rulerEnd(p.value):T.value.typeName&&(0===c.value?null==(t=B.value)||t.rulerMoveEnd(T.value):null==(l=z.value)||l.rulerMoveEnd(T.value)),p.value="",T.value={directiveName:"",cycleType:"",positioningLong:"0",typeName:"",startTime:"",id:"",endTime:"",tagName:null}};function I(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}return n((()=>{setTimeout((()=>{m(a.value)}),50)})),(t,n)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(o.value?"darkbackgroundContainer":"backgroundContainer"),onTouchmove:n[0]||(n[0]=(...t)=>e.unref(x)&&e.unref(x)(...t)),onTouchend:_},[e.withDirectives(e.createElementVNode("view",{class:"move-font",animation:y.value},e.toDisplayString(p.value),9,["animation"]),[[e.vShow,p.value&&u.value]]),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass("日常"==T.value.cycleType?"title-time-border-yellow":"title-time-border-pouple"),animation:y.value,style:{"font-size":"30rpx",overflow:"hidden"}},[e.withDirectives(e.createElementVNode("view",{class:"title-time",style:{"margin-top":"5rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(T.value.startTime+"-"+T.value.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==T.value.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(T.value.cycleType),1)],512),[[e.vShow,T.value.startTime]]),e.createElementVNode("view",{style:{"margin-top":"20rpx","font-weight":"700"}},e.toDisplayString(I(T.value.directiveName)[0]),1),e.withDirectives(e.createElementVNode("view",{class:"down-icons",style:e.normalizeStyle("日常"!=T.value.cycleType?{backgroundColor:"rgb(212,203,255)"}:{})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(I(T.value.directiveName).slice(1),((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:l},[e.createElementVNode("view",{class:"icon",style:e.normalizeStyle("日常"!=T.value.cycleType?{backgroundColor:"rgb(123,97,255)"}:{})},e.toDisplayString(I(T.value.directiveName)[1]),5)])))),128))],4),[[e.vShow,I(T.value.directiveName)[1]]])],10,["animation"]),[[e.vShow,T.value.cycleType]]),e.createElementVNode("view",{class:"left-container"},[e.createElementVNode("view",{class:"left-head"},[e.createElementVNode("image",{class:"left-head-img",src:N}),e.createElementVNode("text",{class:e.normalizeClass(o.value?"left-head-font-dark":"left-head-font")}," 王金凤 ",2)]),e.createElementVNode("view",{class:"left-img-container"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"blue-circle-pos"},[e.withDirectives(e.createElementVNode("view",{class:"blue-circle"},[e.createElementVNode("image",{class:"blue-circle-size",src:"/static/index/ray.png"},null,8,["src"])],512),[[e.vShow,l===a.value]]),e.createElementVNode("image",{class:"left-img",src:l===a.value?t.targetUrl:t.url,onClick:e=>m(l)},null,8,["src","onClick"])])))),128))])]),e.withDirectives(e.createVNode(k,{isshow:i.value,darkFans:o.value,onDarkchange:s},null,8,["isshow","darkFans"]),[[e.vShow,!a.value]]),e.withDirectives(e.createVNode(S,{ref_key:"ruler",ref:B,liang:w.value,isshow:r.value,canmove:g.value,darkFans:o.value,onDarkchange:s,onSavename:V,onSaveruler:D,onChangefangkuang:b,onCleanname:C,onChangeold:d},null,8,["liang","isshow","canmove","darkFans"]),[[e.vShow,1==a.value&&!c.value]]),e.withDirectives(e.createVNode(M,{ref_key:"rulernew",ref:z,isold:2===c.value,liang:w.value,isshow:r.value,canmove:g.value,darkFans:o.value,onDarkchange:s,onSavename:V,onSaveruler:D,onChangefangkuang:b,onCleanname:C,onChangeold:d},null,8,["isold","liang","isshow","canmove","darkFans"]),[[e.vShow,1==a.value&&2===c.value]])],34))}}),[["__scopeId","data-v-ee189f8b"]]),$="/static/index/watch/more.png",A="/static/index/newindex/wendu/0.png",L="/static/index/newindex/wendu/1.png",O="/static/index/watch/bgc.png",P="/static/index/watch/play.png",j="/static/index/video/laba.png",q="/static/index/video/video.png",R="/static/index/video/txt.png",W=s(e.defineComponent({__name:"specialDrawer",props:{widNumber:{type:Number,default:25},circletarget:{type:Boolean,default:!1}},emits:["open"],setup(t,{expose:l,emit:a}){const i=e.ref(!1),n=a,r=t,o=e.ref(0);e.onMounted((()=>{const e=uni.getSystemInfoSync();o.value=e.screenWidth}));const c=e.ref(0),s=e.ref(!1),d=e.ref(0),m=e.computed((()=>{const e=`${r.widNumber}%`;if(s.value){return{width:e,transform:`translateX(${d.value}px)`,transition:"none"}}return{width:e}}));function u(){i.value=!0,n("open")}function v(){i.value=!1}function p(){i.value?v():u(),N()}function g(e){i.value&&(s.value=!0,d.value=0,c.value=e.touches[0].pageX)}function w(e){if(!s.value)return;const t=e.touches[0].pageX-c.value;d.value=t>0?t:0}function h(){if(!s.value)return;s.value=!1;const e=o.value*(r.widNumber/100)/2;d.value>e&&(v(),N()),d.value=0}l({openDrawer:u,closeDrawer:v});const f=e.ref(0);function N(){f.value+=180}return e.computed((()=>({transform:`rotate(${f.value}deg)`,transition:"transform 0.6s ease"}))),(l,a)=>(e.openBlock(),e.createElementBlock("view",null,[e.createElementVNode("view",{class:e.normalizeClass(["drawer",{"drawer-open":i.value}]),style:e.normalizeStyle(m.value)},[e.createElementVNode("view",{class:"drawer-content",onTouchstartPassive:g,onTouchmovePassive:w,onTouchend:h,onTouchcancel:h},[e.createElementVNode("view",{class:e.normalizeClass(["drawer-content-circle",t.circletarget?"pulse":""]),style:e.normalizeStyle(i.value?{}:{background:"linear-gradient(to bottom,#62E8FF,#0097FF)"}),onClick:p},[e.createElementVNode("image",{class:"drawer-img",src:i.value?"/static/index/watch/whitearrow.png":"/static/index/watch/arrow.png"},null,8,["src"])],6),e.renderSlot(l.$slots,"default",{},void 0,!0)],32)],6)]))}}),[["__scopeId","data-v-363bab7d"]]),Y=s(e.defineComponent({__name:"index",props:{opensecondmenu:{type:Boolean,default:!1}},emits:["firstIndex","secondIndex"],setup(t,{expose:l,emit:a}){const i=a,n=["静音","对讲","截屏","录制","方位","清晰度","分屏","翻转","告警"],r=e.ref([0,1,1,1,1,0,0,3,1]),o=n.length,c=e.reactive(n.map(((e,t)=>({label:e,baseAngle:360/o*t}))));let s=null,d=null;const m=e.ref(0),u=e.ref(0),v=e.ref(null);let p=null,g=null;function w(e,t=160){g&&clearTimeout(g),g=setTimeout((()=>{v.value&&e()}),t)}const h=e.reactive({x:0,y:0});e.onMounted((async()=>{await e.nextTick(),uni.createSelectorQuery().select(".compass-container").boundingClientRect((e=>{e&&(h.x=e.left+e.width/2,h.y=e.top+e.height/2)})).exec(),await e.nextTick();const t=U(m.value);k.value=t,u.value=m.value,I(t,!1)}));const f=e.ref(!1),N=e.computed((()=>({transform:`rotate(${u.value}deg)`,transition:f.value?"transform 300ms ease-out":"none"}))),y=e.computed((()=>({transform:`rotate(${-u.value}deg)`})));function x(e){const t=e*Math.PI/180;return{transform:`translate(${190*Math.cos(t)}px, ${190*Math.sin(t)}px)`}}function E(e){let t=e%360;return t<0&&(t+=360),t}function V(e,t){const l=E(e);let a=l,i=Math.abs(a-t);for(let n=-3;n<=3;n++){const e=l+360*n,r=Math.abs(e-t);r{-1===k.value&&(k.value=T.value)}),300)}function S(){clearTimeout(d),d=setTimeout((()=>{-1===A.value&&(A.value=K.value)}),300)}function B(e){T.value=k.value,k.value=-1,f.value=!1,p=b(e),v.value="first",C()}function z(e){if(null===p)return void(p=b(e));const t=b(e),l=function(e,t){let l=E(e)-E(t);return l>180&&(l-=360),l<=-180&&(l+=360),l}(t,p);m.value=m.value+l,f.value=!1,u.value=m.value,p=t,w(_),C()}function _(){p=null,D();const e=360/o,t=o%2==0?e:e/2,l=m.value,a=E(Math.round(l/t)*t),n=V(a,l);m.value=n;let r=V(a,u.value)-u.value;r>180&&(r-=360),r<=-180&&(r+=360),f.value=!0,u.value=u.value+r;const c=U(n);k.value!==c&&(i("firstIndex",c),k.value=c),setTimeout((()=>{f.value=!1,u.value=m.value}),300),v.value=null}function I(e,t=!0){if(null==e||e<0||e>=c.length)return;const l=function(e){return c[e]?E(180-c[e].baseAngle):0}(e),a=V(l,m.value);m.value=a;const n=V(l,u.value);if(!t)return f.value=!1,u.value=a,void(k.value!==e&&(i("firstIndex",e),k.value=e));let r=n-u.value;r>180&&(r-=360),r<=-180&&(r+=360),f.value=!0,u.value=u.value+r,k.value!==e&&(i("firstIndex",e),k.value=e),setTimeout((()=>{f.value=!1,u.value=m.value}),300),v.value=null}function U(e){if(!c.length)return-1;const t=E(e);let l=1/0,a=0;return c.forEach(((e,i)=>{const n=E(180-e.baseAngle),r=function(e,t){const l=Math.abs(E(e)-E(t));return Math.min(l,360-l)}(t,n);r({transform:`rotate(${L.value}deg)`,transition:P.value?"transform 0.25s ease-out":"none"}))),q=e.computed((()=>({transform:`rotate(${-L.value}deg)`})));function R(e){const t=e*Math.PI/180;return{transform:`translate(${240*Math.cos(t)}px, ${240*Math.sin(t)}px)`}}const W=[135,157.5,180,202.5,225];const Y=e.ref(0),J=e.ref(0);function X(t){var l;const a=null==(l=c[t])?void 0:l.label,i=a&&F[a]?F[a].slice(0,5):[],n=(r=i.length,[2,1,3,0,4].slice(0,r).map((e=>W[e])));var r;if(Y.value=180-Math.max(...n.length?n:[180]),J.value=180-Math.min(...n.length?n:[180]),$.splice(0,$.length),!i.length)return L.value=0,O.value=0,void(A.value=-1);for(let e=0;e{A.value=Z()}))}function Z(){if(!$.length)return-1;let e=1/0,t=0;return $.forEach(((l,a)=>{let i=(l.baseAngle+L.value)%360;i<0&&(i+=360);const n=Math.abs(i-180);nk.value),(e=>{e>=0?(X(e),I(e,!0)):X(e)}),{immediate:!0});let H=0,G=0;function Q(e){return Math.max(Y.value,Math.min(J.value,e))}const K=e.ref(-1);function ee(e){K.value=A.value;const t=e.touches[0];H=t.clientY,G=L.value,P.value=!1,A.value=-1,v.value="second",S()}function te(e){if(!$.length)return;const t=e.touches[0].clientY-H;O.value;const l=G+.5*-t;L.value=Q(l),w(le),S()}function le(){if(!$.length)return;const e=O.value||1,t=Math.round(L.value/e)*e;P.value=!0,L.value=Q(t),setTimeout((()=>P.value=!1),250),v.value=null,k.value!==Z()&&(i("secondIndex",A.value),A.value=Z())}return l({moveFirstUp:function(){if("first"===v.value)return;const e=M();if(e<0)return;const t=(e-1+c.length)%c.length;I(t,!0),k.value!==t&&(i("firstIndex",t),k.value=t)},moveFirstDown:function(){if("first"===v.value)return;const e=M();if(e<0)return;const t=(e+1)%c.length;I(t,!0),k.value!==t&&(i("firstIndex",t),k.value=t)},moveSecondUp:function(){if("second"===v.value)return;if(!$.length)return;const e=O.value||1;let t=L.value+e;t=Math.round(t/e)*e,t=Q(t),P.value=!0,L.value=t,A.value=Z(),i("secondIndex",A.value),setTimeout((()=>P.value=!1),250)},moveSecondDown:function(){if("second"===v.value)return;if(!$.length)return;const e=O.value||1;let t=L.value-e;t=Math.round(t/e)*e,t=Q(t),P.value=!0,L.value=t,A.value=Z(),i("secondIndex",A.value),setTimeout((()=>P.value=!1),250)},startchange:()=>{r.value[k.value]=A.value}}),e.onBeforeUnmount((()=>{null!==s&&clearTimeout(s),null!==d&&clearTimeout(d),g&&(clearTimeout(g),g=null)})),(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"carmera"},[e.createElementVNode("image",{class:"all-size",src:"/static/index/watch/camera.png"})]),e.createElementVNode("view",{class:"roll"},[e.createElementVNode("image",{class:"all-size",src:"/static/index/watch/panzi.png"})]),e.createElementVNode("view",{ref:"compass",class:"compass-container",onTouchstart:e.withModifiers(B,["stop","prevent"]),onTouchmove:e.withModifiers(z,["prevent","stop"]),onTouchend:e.withModifiers(_,["stop","prevent"]),onTouchcancel:e.withModifiers(_,["stop","prevent"]),style:e.normalizeStyle(N.value)},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c,((l,a)=>(e.openBlock(),e.createElementBlock("view",{key:a,class:"compass-item",style:e.normalizeStyle(x(l.baseAngle))},[e.createElementVNode("text",{class:e.normalizeClass(a===k.value?"item-label-target":"item-label"),style:e.normalizeStyle(y.value)},[e.createElementVNode("view",{style:{"z-index":"2",display:"flex","flex-direction":"column","justify-content":"center","align-items":"center"}},[e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx","margin-bottom":"0rpx"},class:e.normalizeClass(a!==k.value||t.opensecondmenu?"":"pulse"),src:`/static/index/watch/Wheel/${a+1}${a===k.value?1:0}.png`},null,10,["src"]),e.createElementVNode("view",{style:e.normalizeStyle(a===k.value?{color:"#fff"}:{})},e.toDisplayString(l.label),5)]),e.createElementVNode("image",{class:"targetimge",src:"/static/index/watch/bluetarget.png",style:e.normalizeStyle({opacity:a===k.value?1:0})},null,4)],6)],4)))),128))],36),$.length?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,ref:"compass2",class:"compass-container second",onTouchstart:e.withModifiers(ee,["stop","prevent"]),onTouchmove:e.withModifiers(te,["prevent","stop"]),onTouchend:e.withModifiers(le,["stop","prevent"]),onTouchcancel:e.withModifiers(le,["stop","prevent"]),style:e.normalizeStyle(j.value)},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList($,((l,a)=>(e.openBlock(),e.createElementBlock("view",{key:a,class:"compass-item",style:e.normalizeStyle(R(l.baseAngle))},[e.createElementVNode("text",{class:"item-label-second",style:e.normalizeStyle(q.value)},[e.createElementVNode("view",{style:{"z-index":"2",display:"flex","flex-direction":"column","justify-content":"center","align-items":"center"}},[e.createElementVNode("image",{style:{width:"70rpx",height:"70rpx","margin-bottom":"0rpx"},class:e.normalizeClass(a===A.value&&t.opensecondmenu?"pulse":""),src:`/static/index/watch/Wheel/${-1===k.value?0:k.value+1}${a}${a===r.value[k.value]?1:0}.png`},null,10,["src"]),e.withDirectives(e.createElementVNode("view",{style:e.normalizeStyle(a===r.value[k.value]?{color:"#0E86EA"}:{})},e.toDisplayString(l.label),5),[[e.vShow,-1!==k.value]])])],4)],4)))),128))],36)),[[e.vShow,-1!==k.value]]):e.createCommentVNode("",!0),"first"===v.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"gesture-mask",onTouchmove:e.withModifiers(z,["stop","prevent"]),onTouchend:e.withModifiers(_,["stop","prevent"]),onTouchcancel:e.withModifiers(_,["stop","prevent"])},null,32)):e.createCommentVNode("",!0),"second"===v.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"gesture-mask",onTouchmove:e.withModifiers(te,["stop","prevent"]),onTouchend:e.withModifiers(le,["stop","prevent"]),onTouchcancel:e.withModifiers(le,["stop","prevent"])},null,32)):e.createCommentVNode("",!0)]))}}),[["__scopeId","data-v-d630a1ae"]]),J="https://www.focusnu.com/devopsapi",X=(e,t)=>(e=>{let t=e.url,a=e.method||"get",i=e.data||{},n={"X-Access-Token":uni.getStorageSync("token")||"","Content-Type":"application/json;charset=UTF-8",Authorization:"Basic c2FiZXI6c2FiZXJfc2VjcmV0",...e.header};return new Promise(((e,r)=>{uni.request({url:/^https?:\/\//.test(t)?t:J+t,method:a,header:n,data:i,timeout:5e3,success(a){const n=a;if(200==n.statusCode)e(n.data);else switch(l("log","at request/guanli.js:34","http",/^https?:\/\//.test(t)?t:J+t),l("log","at request/guanli.js:35","res",a),l("log","at request/guanli.js:36","data",i),n.statusCode){case 401:uni.showModal({title:"提示",content:"登录过期",showCancel:!1,success(){uni.clearStorageSync(),setTimeout((()=>{uni.navigateTo({url:"/pages/login/login"})}),1e3)}});break;case 404:uni.showToast({title:"请求地址不存在...",duration:2e3});break;default:uni.showToast({title:"请重试...",duration:2e3})}},fail(e){l("log","at request/guanli.js:69",e),-1!==e.errMsg.indexOf("request:fail")?uni.showToast({title:"网络异常",icon:"error",duration:2e3}):uni.showToast({title:"未知异常",duration:2e3}),r(e)},complete(){uni.hideLoading(),uni.hideToast()}})})).catch((()=>{}))})({url:`/iot/tplink/cameraInfo/motionCtrl?deviceIndex=5&direction=${e}&startOrNot=${t}&speed=1`,method:"get"}),Z=100,H=400,G=s(e.defineComponent({__name:"index",setup(a){o((()=>{t("globalEvent").addEventListener("myEvent",(e=>{l("log","at pages/watch/index.vue:304","myEvent",e),uni.showToast({title:"myEvent: "+JSON.stringify(e),duration:2e3})}));uni.getSubNVueById("optionSub").hide("fade-out")}));const i=()=>{uni.navigateTo({url:"/pages/ceshianzhuo"})};e.ref(null);const r=e.ref(-1),c=e.ref(-1),s=e.ref(!1),d=e.ref(!1),m=e.ref(null),u=e.ref(null),v=e.ref(0),p=e.ref(5),g=e.ref(0),w=e=>{p.value=e,ae.value=!1},h=e=>{g.value=e,ae.value=!1},f=()=>{m.value.openDrawer();uni.getSubNVueById("optionSub").show("fade-in")};function N(e,t,l){return Math.max(t,Math.min(l,e))}function y(e){const t=e*Z,l=v.value,a=l+H;if(ta){const e=t+Z-H;v.value=N(e,0,re.value.length*Z-H)}}function x(e,t,l,a="png",i=0,n=!1){return Array.from({length:l},((l,r)=>{const o=n?String(r+i).padStart(2,"0"):r+i;return`${e}/${t}${o}.${a}`}))}const E=x("/static/index/newindex/curve","curve_",9,"png",1,!1),V=e.ref([...E,...[...E].reverse()]),b=x("/static/index/newindex/curve","breathe_",9,"png",1,!1),k=e.ref([...b,...[...b].reverse()]),T=e.ref([{name:"王金福",url:"/static/index/watch/people0.png"},{name:"李宝田",url:"/static/index/watch/people1.png"}]),D=e.ref([{name:"省医保",url:"/static/index/watch/00.png",error:!1},{name:"重度失能",url:"/static/index/watch/01.png",error:!1},{name:"欠费",url:"/static/index/watch/03.png",error:!0}]),C=e.ref([{name:"护理单元",url:x("/static/index/watch","nurs_",10,"png",1,!1)},{name:"仓库",url:x("/static/index/watch","warehouse_",6,"png",1,!1)},{name:"配务室",url:x("/static/index/watch","delivery_",5,"png",1,!1)},{name:"服务大厅",url:x("/static/index/watch","service_",5,"png",1,!1)},{name:"",url:""}]),S=e.ref([{name:"护理单元01",NUID:"2508000001",url:x("/static/index/watch","nurs_",10,"png",1,!1),warning:!1,type:0},{name:"护理单元02",NUID:"2508000002",url:x("/static/index/watch","nurs_",10,"png",1,!1),warning:!1,type:0},{name:"护理单元03",NUID:"2508000003",url:x("/static/index/watch","nurs_",10,"png",1,!1),warning:!0,type:0},{name:"仓库01",NUID:"2508000001",url:x("/static/index/watch","warehouse_",6,"png",1,!1),warning:!1,type:1},{name:"配务室",NUID:"2508000001",url:x("/static/index/watch","delivery_",5,"png",1,!1),warning:!1,type:2},{name:"服务大厅",NUID:"2508000001",url:x("/static/index/watch","service_",5,"png",1,!1),warning:!1,type:3}]);e.onMounted((()=>{r.value=0,c.value=0,s.value=!0,d.value=!0}));const B=e.ref(0),z=e.ref(-1),_=e.ref(!1),I=e.ref(!1),U=e.ref(!1),M=e.ref(!1),F=()=>{B.value=-1,z.value=-1,_.value=!1,I.value=!1,I.value=!1,U.value=!0,M.value=!1},J=e=>{if(-1!==B.value)switch(e){case 0:r.value>0&&(r.value--,c.value=0,B.value=r.value,y(r.value));break;case 1:z.value=c.value,B.value=-1;break;case 2:r.value{var e;return null==(e=u.value)?void 0:e.moveFirstUp()}),400),Q=ne((()=>{var e;return null==(e=u.value)?void 0:e.moveFirstDown()}),400),K=ne((()=>{var e;return null==(e=u.value)?void 0:e.moveSecondUp()}),400),ee=ne((()=>{var e;return null==(e=u.value)?void 0:e.moveSecondDown()}),400),te=ne((()=>function(){var e;null==(e=u.value)||e.startchange(),0===p.value&&(g.value,uni.$emit("monitor:toggleVolume"));1===p.value&&(g.value?uni.$emit("monitor:stopTalk"):uni.$emit("monitor:openTalk"));2===p.value&&uni.$emit("monitor:doSnapshot");3===p.value&&(g.value?uni.$emit("monitor:stopRecord"):uni.$emit("monitor:startRecord"));4===p.value&&(g.value||(ie.value=p.value,p.value=-1,ae.value=!0));5===p.value&&le.value!==g.value&&(le.value=g.value,uni.$emit("monitor:changeQuality"));6===p.value&&uni.$emit("monitor:switchDisplay",g.value);7===p.value&&(3===g.value?uni.$emit("monitor:flipImage",6):uni.$emit("monitor:flipImage",g.value));8===p.value&&(g.value?uni.$emit("monitor:stopAlarm"):uni.$emit("monitor:startAlarm"))}()),700),le=e.ref(0),ae=e.ref(!1),ie=e.ref(-1);function ne(e,t=1e3){let l=!1;return()=>{l||(e(),l=!0,setTimeout((()=>{l=!1}),t))}}const re=e.computed((()=>(r.value=-1,setTimeout((()=>r.value=0),50),S.value.filter((e=>e.type===c.value))))),oe=()=>{uni.navigateTo({url:"/pages/watch/settings/settings"})};n((()=>{}));let ce=-1;const se={};function de(e,t){-1!==ce&&ce!==t&&me(ce),ce=t,X(e,1).then((t=>{l("log","at pages/watch/index.vue:990","start",e,t)})),se[t]&&clearTimeout(se[t]),se[t]=setTimeout((()=>{me(t)}),550)}function me(e){if(-1===e)return;let t=0;switch(e){case 0:t=1;break;case 1:t=5;break;case 2:t=7;break;case 3:t=3}X(t,0).then((e=>{})),clearTimeout(se[e]),se[e]=null,ce===e&&(ce=-1)}return(t,l)=>{const a=e.resolveComponent("donghua"),n=e.resolveComponent("arrowkeys");return e.openBlock(),e.createElementBlock("view",{class:"view"},[e.createElementVNode("view",{class:"view-left"},[e.createElementVNode("view",{class:"title-father"},[e.createElementVNode("image",{class:"title-img",src:"/static/index/watch/uni.png"}),e.createElementVNode("view",{class:"title-font",onClick:i}," 护理单元 ")]),e.createElementVNode("view",{class:"zhezhao-top"}),e.createElementVNode("view",{class:"zhezhao-bottom"}),e.createElementVNode("scroll-view",{class:"menus-father","scroll-y":"","scroll-top":v.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(re.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["menu",{warning:t.warning,target:l===B.value}]),style:e.normalizeStyle([l===r.value?{backgroundColor:"#fff"}:{},B.value===l?{backgroundColor:"#ddf0ff"}:{}]),onClick:e=>{r.value=l}},[e.createElementVNode("view",{class:"menu-img"},[e.createVNode(a,{width:"65rpx",height:"65rpx",links:t.url,playing:r.value===l},null,8,["links","playing"])]),e.createElementVNode("view",{style:{"margin-left":"10rpx"}},[e.createElementVNode("view",{style:e.normalizeStyle([{"font-size":"31rpx",overflow:"hidden","white-space":"nowrap","text-overflow":"ellipsis",width:"200rpx"},l===r.value?{color:"#017DE9 "}:{}])},e.toDisplayString(t.name),5)])],14,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"45rpx"}})],8,["scroll-top"])]),e.createElementVNode("view",{class:"view-right"},[e.createElementVNode("view",{class:"scroll-vi"},[e.createElementVNode("view",{class:"zhezhao-left"}),e.createElementVNode("view",{class:"zhezhao-right"}),e.createElementVNode("scroll-view",{"scroll-x":"true",style:{width:"66%",height:"100%"}},[e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-top":"5rpx"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(C.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["menu",{target:l===z.value}]),style:e.normalizeStyle(z.value===l?{backgroundColor:"#ddf0ff"}:{}),onClick:e=>{c.value=l}},[t.url?(e.openBlock(),e.createBlock(a,{key:0,links:t.url,playing:c.value===l},null,8,["links","playing"])):e.createCommentVNode("",!0),t.url?(e.openBlock(),e.createElementBlock("text",{key:1,class:e.normalizeClass(["menu-font",{zoom:c.value===l}]),style:e.normalizeStyle(c.value===l?{color:"#008FF5"}:{})},e.toDisplayString(t.name),7)):e.createCommentVNode("",!0),t.url?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:2},[e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx"},src:$})]))],14,["onClick"])))),128))])]),e.createElementVNode("view",{class:"right-father"},[e.createElementVNode("view",{style:{"font-weight":"600","font-size":"90rpx","margin-right":"15rpx"}}," 10:18 "),e.createElementVNode("view",{class:"",style:{"font-weight":"600","margin-right":"50rpx"}},[e.createElementVNode("view",{class:""},"7-25"),e.createElementVNode("view",{class:""},"星期三")]),e.createElementVNode("view",{class:e.normalizeClass({targetbutton:_.value}),style:{display:"flex","align-items":"center"}},[e.createElementVNode("image",{style:{width:"65rpx",height:"65rpx"},src:"/static/index/newindex/curve/shezhi.png",onClick:oe}),e.createElementVNode("view",{style:{"font-size":"32rpx","margin-left":"10rpx"},onClick:oe}," 设置 ")],2)])]),e.createElementVNode("view",{class:"big-bgc"},[e.createElementVNode("view",{style:{width:"100%",position:"absolute",top:"0",left:"0","z-index":"1",display:"flex","align-items":"center"}},[e.createElementVNode("text",{style:{"margin-top":"40rpx","font-size":"32rpx","margin-left":"50rpx"}}," NUID:2508000001 "),e.createElementVNode("text",{class:"new-weight"}," 护理单元01 "),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("view",{class:"right-container-tem"},[e.createElementVNode("image",{class:"right-container-tem-img",src:A}),e.createElementVNode("text",{class:"right-container-tem-text"},"23°C"),e.createElementVNode("image",{class:"right-container-tem-img",src:L}),e.createElementVNode("text",{class:"right-container-tem-text"},"39%")])])])]),e.createElementVNode("view",{style:{display:"flex","margin-top":"20rpx"}},[e.createElementVNode("view",{class:"card-father"},[e.createElementVNode("view",{class:"up-title"},[e.createElementVNode("view",{class:""}," 监控截屏 "),e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx","margin-right":"20rpx"},src:$})]),e.createElementVNode("view",{style:{display:"flex"}},[e.createElementVNode("view",{class:"small-bgc",style:{"margin-right":"20rpx"}},[e.createElementVNode("image",{style:{width:"100%",height:"100%",position:"absolute",top:"0",left:"0"},src:O})]),e.createElementVNode("view",{class:"small-bgc"},[e.createElementVNode("image",{style:{width:"100%",height:"100%",position:"absolute",top:"0",left:"0"},src:O})])])]),e.createElementVNode("view",{class:"card-father"},[e.createElementVNode("view",{class:"up-title"},[e.createElementVNode("view",{class:""}," 视频回放 "),e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx","margin-right":"20rpx"},src:$})]),e.createElementVNode("view",{style:{display:"flex"}},[e.createElementVNode("view",{class:"small-bgc",style:{"margin-right":"20rpx"}},[e.createElementVNode("image",{style:{width:"100%",height:"100%",position:"absolute",top:"0",left:"0"},src:O}),e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx"},src:P})]),e.createElementVNode("view",{class:"small-bgc"},[e.createElementVNode("image",{style:{width:"100%",height:"100%",position:"absolute",top:"0",left:"0"},src:O}),e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx"},src:P})])])])]),e.createElementVNode("view",{class:"right-right"},[0===c.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"red-kuang"},[e.createElementVNode("image",{style:{width:"110rpx",height:"140rpx","margin-left":"40rpx","margin-top":"-10rpx"},src:"/static/index/watch/laotai.png"}),e.createElementVNode("view",{class:""},[e.createElementVNode("view",{style:{"margin-left":"20rpx",display:"flex","align-items":"center","margin-bottom":"5rpx","margin-top":"25rpx"}},[e.createElementVNode("view",{class:"font-weight"}," 王金凤 "),e.createElementVNode("view",{class:"font-small",style:{"margin-left":"10rpx"}}," 女 80岁 "),e.createElementVNode("view",{class:"blue-bgc"}," 当日指令 ")]),e.createElementVNode("view",{class:"font-small",style:{"margin-left":"20rpx","margin-top":"25rpx"}}," 入住时间:2025.01.01 ")])])):e.createCommentVNode("",!0),1===c.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"red-kuang"},[e.createElementVNode("image",{style:{width:"110rpx",height:"140rpx","margin-left":"40rpx","margin-top":"-10rpx"},src:"/static/index/watch/laotou.png"}),e.createElementVNode("view",{class:""},[e.createElementVNode("view",{style:{"margin-left":"20rpx",display:"flex","align-items":"center","margin-bottom":"5rpx","margin-top":"25rpx",height:"60rpx"}},[e.createElementVNode("view",{class:"font-weight"}," 李树奎 "),e.createElementVNode("view",{class:"font-small",style:{"margin-left":"10rpx"}}," 男 50岁 ")]),e.createElementVNode("view",{class:"font-small",style:{"margin-left":"20rpx","margin-top":"25rpx"}}," 入职时间:2025.01.15 ")])])):e.createCommentVNode("",!0),0===c.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"states-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(D.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["states",t.error?"warning":""]),key:l},[e.createElementVNode("image",{style:{width:"40rpx",height:"40rpx"},src:t.url},null,8,["src"]),e.createElementVNode("view",{style:{color:"#555555","margin-left":"5rpx","font-size":"25rpx"}},e.toDisplayString(t.name),1)],2)))),128))])):e.createCommentVNode("",!0),1===c.value?(e.openBlock(),e.createElementBlock("view",{key:3,class:"states-father"},[e.createElementVNode("view",{class:"phone-number"},[e.createElementVNode("image",{class:"bgc-image",src:"/static/index/watch/phonebgc.png"}),e.createElementVNode("image",{style:{width:"20rpx",height:"35rpx","margin-left":"40rpx"},src:"/static/index/watch/phone.png"}),e.createElementVNode("view",{class:"font-phone"},"15533556676"),e.createElementVNode("image",{class:"phone-ball",src:"/static/index/watch/phoneball.png"})])])):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"big-view"},[e.createElementVNode("view",{class:"font-weight"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"pao"},[e.createElementVNode("image",{style:{width:"100%",height:"100%",position:"absolute",top:"0",left:"0"},src:"/static/index/watch/pao.png"}),e.createElementVNode("view",{style:{"font-size":"20rpx","z-index":"1"}}," 待进行 ")]),e.createElementVNode("view",{class:"juzhong"},[e.createVNode(a,{width:"600rpx",height:"500rpx",links:V.value,playing:s.value,loop:!0,interval:120},null,8,["links","playing"])]),e.createElementVNode("view",{class:"juzhong",style:{"z-index":"2","margin-top":"80rpx"}},[e.createVNode(a,{width:"400rpx",height:"250rpx",links:k.value,playing:s.value,loop:!0,interval:120},null,8,["links","playing"])]),e.createElementVNode("image",{style:{width:"480rpx",height:"350rpx"},src:"/static/index/newindex/wendu/2.png"}),e.createElementVNode("view",{style:{"font-size":"38rpx"}}," 一级压疮防护 "),e.createElementVNode("view",{class:"small-button"},[e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:j})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:q})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:R})])])]),e.createElementVNode("view",{class:"right-bottom"},[e.createElementVNode("view",{style:{display:"flex","margin-left":"50rpx","padding-top":"30rpx"}},[e.createElementVNode("image",{class:"bottom-img",src:"/static/index/newindex/rightmenu/2.png"}),e.createElementVNode("view",{style:{"margin-top":"10rpx","margin-left":"5rpx"}}," 协助执行 ")]),e.createElementVNode("view",{style:{display:"flex"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(T.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"people-card",key:l},[e.createElementVNode("image",{style:{width:"60rpx",height:"60rpx"},src:t.url},null,8,["src"]),e.createElementVNode("view",{style:{"margin-left":"10rpx"}},e.toDisplayString(t.name),1)])))),128))])])])]),e.createVNode(W,{ref_key:"gobackdrawer",ref:m,circletarget:I.value,onOpen:F},{default:e.withCtx((()=>[e.createVNode(Y,{ref_key:"wheelRef",ref:u,opensecondmenu:M.value,onFirstIndex:w,onSecondIndex:h},null,8,["opensecondmenu"])])),_:1},8,["circletarget"]),e.createVNode(n,{onMovecard:J,getblue:d.value,moveleft:5},null,8,["getblue"])])}}}),[["__scopeId","data-v-ea21c8e9"]]),Q=s({__name:"exit",props:{show:{type:Boolean,default:!0}},emits:["close"],setup(t,{emit:l}){const a=t,i=e.ref(!1);e.watch((()=>a.show),((e,t)=>{!t&&e&&(i.value=!1,setTimeout((()=>i.value=!0),50))}));const n=l;function r(){n("close")}const o=()=>{uni.setStorageSync("token",1),plus.runtime.quit()};return(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["neuro-wrapper",i.value?"is-active":""])},[e.createElementVNode("view",{class:"neuro-mask",onClick:r}),e.createElementVNode("view",{class:"neuro-box",onClick:a[0]||(a[0]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"button-father"},[e.createElementVNode("view",{class:"button-white",onClick:r},"取消"),e.createElementVNode("view",{class:"button",onClick:o},"确定")]),e.createElementVNode("view",{class:"title"},"退出登录"),e.createElementVNode("view",{class:"card-font"}," 确定要注销155******76账户吗 ")])],2)),[[e.vShow,t.show]])}},[["__scopeId","data-v-1c53b005"]]),K=s({__name:"reset",props:{show:{type:Boolean,default:!0}},emits:["close"],setup(t,{emit:a}){const i=t,n=e.reactive({username:uni.getStorageSync("username"),oldpassword:"",password:"",confirmpassword:""}),r=e.ref(!1);e.watch((()=>i.show),((e,t)=>{!t&&e&&(r.value=!1,setTimeout((()=>r.value=!0),50))}));const o=a;function c(){o("close")}const s=()=>{n.username&&n.oldpassword&&n.password&&n.confirmpassword?n.password.length<6||n.confirmpassword.length<6?uni.showToast({title:"密码要多于六位",icon:"none",duration:2e3}):n.password===n.confirmpassword?(e=>p({url:`${uni.getStorageSync("serverUrl")}/sys/user/updatePassword`,method:"put",data:{username:e.username,oldpassword:e.oldpassword,password:e.password,confirmpassword:e.confirmpassword}}))(n).then((e=>{l("log","at component/public/reset.vue:105","res",e),e.success?(uni.showToast({title:e.message,icon:"none",duration:2e3}),setTimeout((()=>{uni.setStorageSync("token",1),uni.reLaunch({url:"/pages/login/login"})}),1e3)):uni.showToast({title:e.message,icon:"none",duration:2e3})})):uni.showToast({title:"新密码与确认密码不一致",icon:"none",duration:2e3}):uni.showToast({title:"请完善信息",icon:"error",duration:2e3})};return(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["neuro-wrapper",r.value?"is-active":""])},[e.createElementVNode("view",{class:"neuro-mask",onClick:c}),e.createElementVNode("view",{class:"neuro-box",onClick:a[3]||(a[3]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"button-father"},[e.createElementVNode("view",{class:"button",onClick:s},"确定")]),e.createElementVNode("view",{class:"title"},"修改账号登录密码"),e.createElementVNode("view",{class:"password-father",style:{"margin-top":"50rpx"}},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":a[0]||(a[0]=e=>n.oldpassword=e),maxlength:"15",placeholder:"请输入旧密码"},null,512),[[e.vModelText,n.oldpassword]])]),e.createElementVNode("view",{class:"password-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":a[1]||(a[1]=e=>n.password=e),maxlength:"15",placeholder:"请输入新密码"},null,512),[[e.vModelText,n.password]])]),e.createElementVNode("view",{class:"password-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":a[2]||(a[2]=e=>n.confirmpassword=e),maxlength:"15",placeholder:"请再次输入新密码"},null,512),[[e.vModelText,n.confirmpassword]])]),e.createElementVNode("view",{class:"card-font"})])],2)),[[e.vShow,t.show]])}},[["__scopeId","data-v-8de7e110"]]),ee=s(e.defineComponent({__name:"settings",emits:["jump"],setup(t,{emit:l}){const a=e.ref(null),i=e.ref(!1),n=e.ref(!1),r=e.ref(!1),o=e.ref(!1),c=e.ref(!1),s=e.ref(["雷达扫描","扫码添加","手动录入","修改密码","切换机构","检查更新","用户协议","隐私政策"]);e.ref(!0),e.ref("");const v=e.ref(!1),p=e=>{var t;switch(e){case 0:uni.navigateTo({url:"/pages/watch/settings/leida"});break;case 1:uni.navigateTo({url:"/pages/watch/settings/saoma"});break;case 2:uni.navigateTo({url:"/pages/watch/settings/input"});break;case 3:c.value=!0;break;case 4:break;case 5:i.value=!0,null==(t=a.value)||t.check_update();break;case 6:n.value=!0,r.value=!0,v.value=!1,setTimeout((()=>{v.value=!0}),50);break;case 7:n.value=!0,r.value=!1,v.value=!1,setTimeout((()=>{v.value=!0}),50)}},g=()=>{i.value&&uni.showToast({title:"已经是最新版了",icon:"none",duration:2e3})},w=()=>{uni.navigateBack()};return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"index-content-other"},[e.createElementVNode("view",{class:"index-content-right",onClick:w},[e.createElementVNode("image",{class:"back-img",src:"/static/index/settings/back.png"},null,8,["src"]),e.createTextVNode(" 返回 ")]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value.slice(0,3),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>p(l)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value.slice(3,5),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>p(l+3)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l+3}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value.slice(5,8),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>p(l+5)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l+5}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"bottom-button",onClick:l[0]||(l[0]=e=>o.value=!0)}," 注销登录 "),e.createElementVNode("view",{class:"text-center"},[e.createElementVNode("view",null,"长春市朝阳区久泰开运养老服务有限公司")]),e.createVNode(Q,{show:o.value,onClose:l[1]||(l[1]=e=>o.value=!1)},null,8,["show"]),e.createVNode(K,{show:c.value,onClose:l[2]||(l[2]=e=>c.value=!1)},null,8,["show"]),e.createVNode(d,{ref_key:"zyupgrade",ref:a,noticeflag:!0,theme:"blue",h5preview:!1,oldversion:"1.0.0",appstoreflag:!0,autocheckupdate:!0,onShowupdateTips:g},null,512),n.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-any",style:e.normalizeStyle(v.value?{opacity:1}:{opacity:0})},[e.createElementVNode("view",{class:"mask",onClick:l[3]||(l[3]=e=>n.value=!1)}),e.createElementVNode("view",{class:"box-any"},[e.createElementVNode("view",{class:"title-left"},[r.value?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"back-font"},"NU护理单元隐私信息保护政策")),r.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"back-font"},"NU护理单元用户服务协议")):e.createCommentVNode("",!0)]),r.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(u,{key:0})),r.value?(e.openBlock(),e.createBlock(m,{key:1})):e.createCommentVNode("",!0)])],4)):e.createCommentVNode("",!0)]))}}),[["__scopeId","data-v-ccb4084b"]]),te="/static/click.png",le="/static/x.png",ae=s(e.defineComponent({__name:"input",setup(t){const l=()=>{uni.navigateBack()},a=e.ref("");return(t,i)=>(e.openBlock(),e.createElementBlock("view",{class:"index-content-other"},[e.createElementVNode("view",{class:"index-content-right",onClick:l},[e.createElementVNode("image",{class:"back-img",src:"/static/index/settings/back.png"},null,8,["src"]),e.createTextVNode(" 返回 ")]),e.createElementVNode("view",{class:"saomiao"},[e.createElementVNode("view",{class:"big-ball"},[e.createElementVNode("view",{class:"ball"})]),e.createElementVNode("image",{class:"left-img",src:te}),e.withDirectives(e.createElementVNode("input",{class:"saoma-input",password:!1,"onUpdate:modelValue":i[0]||(i[0]=e=>a.value=e),placeholder:"请手动录入NUID"},null,512),[[e.vModelText,a.value]]),e.withDirectives(e.createElementVNode("image",{class:"right-img",src:le,onClick:i[1]||(i[1]=e=>a.value="")},null,512),[[e.vShow,a.value]]),e.createElementVNode("view",{class:"blue-button"}," 确定 ")]),e.createElementVNode("image",{class:"big-bgc",src:"/static/bgc.png"}),e.createElementVNode("image",{class:"big-img",src:"/static/qiu.png"}),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")]))}}),[["__scopeId","data-v-87f7dd57"]]),ie=s(e.defineComponent({__name:"saoma",setup(t){const l=()=>{uni.navigateBack()};function a(){uni.scanCode({onlyFromCamera:!0,scanType:["qrCode","barCode"],success(e){},fail(e){}})}return e.ref(""),(t,i)=>(e.openBlock(),e.createElementBlock("view",{class:"index-content-other"},[e.createElementVNode("view",{class:"index-content-right",onClick:l},[e.createElementVNode("image",{class:"back-img",src:"/static/index/settings/back.png"},null,8,["src"]),e.createTextVNode(" 返回 ")]),e.createElementVNode("view",{class:"saomiao"}),e.createElementVNode("image",{class:"big-bgc",src:"/static/kuai.png"}),e.createElementVNode("view",{class:"big-img",onClick:a},[e.createElementVNode("image",{style:{width:"100%",height:"100%"},src:"/static/sao.png"}),e.createElementVNode("view",{class:"big-font"}," 点击扫描区域二维码 ")]),e.createElementVNode("image",{class:"big-QR",src:"/static/qr.png",onClick:a}),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")]))}}),[["__scopeId","data-v-33cdb877"]]),ne="/static/index/quxiao.png",re=()=>p({url:`${uni.getStorageSync("serverUrl")}/api/pad/baseInfo/queryPadPageList?token=${uni.getStorageSync("token")}`,method:"get"}),oe=s(e.defineComponent({__name:"leida",setup(t){const l=()=>{uni.navigateBack()},a=e.ref(!0),i=e.ref(0),n=e.ref(100),r=e.ref(-1),o=e.ref(""),c=e.ref(),s=e.ref(!1),d=e.ref([{url:"/static/index/leida/00.png",targetUrl:"/static/index/leida/01.png",target:!1},{url:"/static/index/leida/10.png",targetUrl:"/static/index/leida/11.png",target:!1},{url:"/static/index/leida/20.png",targetUrl:"/static/index/leida/21.png",target:!1},{url:"/static/index/leida/30.png",targetUrl:"/static/index/leida/31.png",target:!1}]),m=e.ref([]),u=e.ref([]),v=e.ref(0);let p=null;function g(e){return"function"==typeof globalThis.requestAnimationFrame?globalThis.requestAnimationFrame(e):setTimeout((()=>e(Date.now())),16)}function w(e){var t;return"number"==typeof e?e:(null==(t=globalThis.performance)?void 0:t.now)?globalThis.performance.now():Date.now()}let h=null;function f(e){const t=w(e);h||(h=t);const l=(t-h)/1e3;h=t,a.value&&(i.value=(i.value+n.value*l)%360),p=g(f)}function N(){100===D.value&&(C(),y())}function y(){a.value=!a.value,a.value?(h=w(),k()):T()}const x=e.computed((()=>({transform:`rotate(${i.value}deg)`}))),E=e.ref([]);let V=null,b=0;function k(){V||(V=setInterval((()=>{!function(){const e=1*Math.random()+5,t=Math.random()*(200-e),l=Math.random()*(200-e),a=b++,i={id:a,size:e,left:t,top:l,color:"#02a9ff",opacity:0};E.value.push(i),setTimeout((()=>{i.opacity=1}),20),setTimeout((()=>{i.opacity=0,setTimeout((()=>{E.value=E.value.filter((e=>e.id!==a))}),500)}),2e3)}()}),500))}function T(){clearInterval(V),V=null}const D=e.ref(0);function C(){let e=Date.now(),t=Math.floor(30*Math.random())+30,l=!1,a=Math.floor(500*Math.random())+300,i=0;re().then((e=>{e.result.records.forEach((e=>{e.menu=JSON.parse(JSON.stringify(d.value)),e.isNew=!0})),u.value=[],u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),function(){const e=u.value.length;m.value=[];const t=Array.from({length:e},(()=>Math.random())),l=t.reduce(((e,t)=>e+t),0),a=t.map((e=>e/l*4e3));let i=0;for(let n=0;n{m.value.push(u.value[n]),m.value.length}),i)}()})),setTimeout((function n(){let r=Date.now()-e;if(!l&&D.value>=t&&(l=!0,i=Date.now()),l){if(!(Date.now()-i>=a))return void setTimeout(n,16);l=!1}let o=Math.min(r/4e3,1);D.value=Math.floor(100*o),100===D.value&&y(),D.value<100&&setTimeout(n,16)}),16)}const S=(e,t)=>{r.value=e,o.value=t.nuName,c.value=t.nuId,s.value=!1,setTimeout((()=>{s.value=!0}),50)};e.onMounted((()=>{B()}));const B=()=>{h=w(),p=g(f),k(),C()},z=e.ref(-1),_=e.ref(-1),I=e=>{if(100===D.value)switch(e){case 0:if(0===_.value)return void(_.value=1);if(1===_.value)return void(_.value=0);z.value-2<-1?z.value=-1:(z.value=z.value-2,U(z.value));break;case 1:if(0===_.value)return void(_.value=1);if(1===_.value)return void(_.value=0);z.value+1>m.value.length-1||(z.value++,U(z.value));break;case 2:if(0===_.value)return void(_.value=1);if(1===_.value)return void(_.value=0);z.value+1===m.value.length-1||-1===z.value?(z.value++,U(z.value)):z.value+2>m.value.length-1||(z.value=z.value+2,U(z.value));break;case 3:if(0===_.value)return void(_.value=1);if(1===_.value)return void(_.value=0);-1!==z.value&&(z.value--,U(z.value));break;case 4:if(1===_.value)return void S(z.value,m.value[z.value]);-1===z.value?N():_.value=0;break;case 5:-1!==_.value?_.value=-1:l()}};function U(t){const l=m.value.length;t<0&&(t=0),t>=l&&(t=l-1),e.nextTick((()=>{const e=245*Math.floor(t/2),a=e+245,i=v.value,n=i+475;let r=v.value;en&&(r=a-475);const o=245*Math.ceil(l/2),c=Math.max(0,o-475);r<0&&(r=0),r>c&&(r=c),v.value=Math.round(r)}))}return e.onBeforeUnmount((()=>{var e;null!=p&&(e=p,"function"==typeof globalThis.cancelAnimationFrame?globalThis.cancelAnimationFrame(e):clearTimeout(e)),T()})),(t,a)=>{const i=e.resolveComponent("arrowkeys");return e.openBlock(),e.createElementBlock("view",{class:"index-content-other"},[e.createElementVNode("view",{class:"index-content-right",onClick:l},[e.createElementVNode("image",{class:"back-img",src:"/static/index/settings/back.png"},null,8,["src"]),e.createTextVNode(" 返回 ")]),e.createElementVNode("view",{class:"left-contain"},[e.createElementVNode("view",{class:"blue-bgc"},[e.createElementVNode("image",{class:"all-img",src:"/static/index/leida/leftbgc.png"}),e.createElementVNode("image",{class:"all-img",style:{width:"90%",height:"90%","margin-top":"5%","margin-left":"5%"},src:"/static/index/leida/bigball.png"}),e.createElementVNode("view",{class:"inset-img",style:e.normalizeStyle(x.value)},[e.createElementVNode("image",{class:"all-img",style:{"z-index":"2"},src:"/static/index/leida/biao.png"}),e.createElementVNode("image",{class:"all-img",style:{"z-index":"1"},src:"/static/index/leida/ball.png"}),e.createElementVNode("image",{class:"all-img",src:"/static/index/leida/shallow.png"})],4),e.createElementVNode("view",{class:"ball-layer"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E.value,(t=>(e.openBlock(),e.createElementBlock("view",{key:t.id,class:"ball",style:e.normalizeStyle({width:t.size+"px",height:t.size+"px",top:t.top+"px",left:t.left+"px",backgroundColor:t.color,opacity:t.opacity})},null,4)))),128))])]),e.createElementVNode("view",{style:{width:"100%",display:"flex","flex-direction":"column","align-items":"center"}},[e.createElementVNode("view",{class:e.normalizeClass(["blue-button",-1==z.value?"zerotarget":""]),style:{"margin-top":"0"},onClick:N},e.toDisplayString((D.value,"扫描")),3),e.createElementVNode("view",{class:"progress-wrap"},[e.createElementVNode("view",{class:"progress-inner",style:e.normalizeStyle({width:D.value+"%"})},null,4)]),e.createElementVNode("view",{class:"progress-text"},e.toDisplayString(D.value)+"%",1)])]),e.createElementVNode("view",{class:"other"},[e.createElementVNode("scroll-view",{ref:"scrollViewRef","scroll-y":"",class:"other-father","scroll-top":v.value},[e.createElementVNode("view",{class:"card-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["card",[z.value===l&&-1===_.value?"zerotarget":"",{"fade-in":t.isNew}]]),key:l,onAnimationend:e=>{t.isNew=!1}},[e.createElementVNode("view",{class:"main-title"},[e.createElementVNode("view",{class:"main-title-font",style:{"font-weight":"600","font-size":"40rpx"}},e.toDisplayString(t.nuName),1),e.createElementVNode("view",{class:e.normalizeClass(["video-father",z.value===l&&0===_.value?"zerotarget":""])},[e.createElementVNode("image",{class:"edit-img",onClick:a[0]||(a[0]=()=>{}),src:"/static/index/leida/play.png"})],2)]),e.createElementVNode("view",{class:e.normalizeClass(["blue-button",z.value===l&&1===_.value?"zerotarget":""]),style:{width:"200rpx",height:"70rpx","margin-top":"50rpx"},onClick:e=>S(l,t)}," 重命名 ",10,["onClick"]),e.createElementVNode("view",{class:"card-tags"},[e.createElementVNode("view",{style:{"margin-left":"80rpx"}}," NUID:"+e.toDisplayString(t.nuId),1)]),e.createElementVNode("view",{class:"play-img"}," 护理单元 ")],42,["onAnimationend"])))),128)),-1!==r.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-any",style:e.normalizeStyle(s.value?{opacity:1}:{opacity:0})},[e.createElementVNode("view",{class:"mask",onClick:a[1]||(a[1]=e=>r.value=-1)}),e.createElementVNode("view",{class:"rename-father"},[e.createElementVNode("view",{class:"rename-title"}," 重命名 "),e.createElementVNode("view",{style:{width:"100%","margin-left":"5rpx","margin-bottom":"20rpx"}}," NUID:"+e.toDisplayString(c.value),1),e.createElementVNode("view",{class:"rename-input"},[e.withDirectives(e.createElementVNode("input",{class:"uni-input",placeholder:"请重新命名","onUpdate:modelValue":a[2]||(a[2]=e=>o.value=e)},null,512),[[e.vModelText,o.value]]),e.withDirectives(e.createElementVNode("image",{class:"right-img",src:ne,onClick:a[3]||(a[3]=e=>o.value="")},null,512),[[e.vShow,o.value]])]),e.createElementVNode("view",{class:"blue-button",style:{width:"200rpx",height:"70rpx","margin-top":"40rpx"},onClick:a[4]||(a[4]=e=>{return t=o.value,l=r.value,t&&(m.value[l].nuName=t),void(r.value=-1);var t,l})}," 确定 ")])],4)):e.createCommentVNode("",!0)])],8,["scroll-top"])]),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 "),e.createVNode(i,{onMovecard:I})])}}}),[["__scopeId","data-v-2b7adbee"]]),ce=s(e.defineComponent({__name:"index",props:{isShow:{type:Boolean,required:!0},propsmove:{type:Number},isMain:{type:Boolean}},emits:["back"],setup(t,{emit:l}){const a=t,i=e.ref(-1);e.watch((()=>a.isMain),((e,t)=>{"boolean"==typeof t&&a.isShow&&(!0===t&&!1===e?(i.value=0,n.value=0,o.value=n.value):!1===t&&!0===e&&(i.value=-1,n.value=-1,o.value=0))}));const n=e.ref(-1),r=l;e.watch((()=>a.propsmove),(()=>{if(-1!=i.value)switch(i.value){case 0:switch(a.propsmove){case 0:i.value=-1,n.value=-1,r("back");break;case 1:n.value{const o=n?String(r+i).padStart(2,"0"):r+i;return`${e}/${t}${o}.${a}`}))}const u=e.ref([{url:"/static/index/newindex/rightmenu/0.png",name:"重点追踪"},{url:"/static/index/newindex/rightmenu/1.png",name:"转单执行"},{url:"/static/index/newindex/rightmenu/2.png",name:"协助执行"}]),v=e.ref([{url:"/static/index/newindex/states/0.png",name:"狂躁"},{url:"/static/index/newindex/states/1.png",name:"易怒"},{url:"/static/index/newindex/states/2.png",name:"大体重"},{url:"/static/index/newindex/states/3.png",name:"四肢"}]),p=e.ref(m("/static/index/newindex/leftmenu","",3,"png",0,!1));e.ref(m("/static/index/newindex/huli","care",9,"png",0,!1));const g=m("/static/index/newindex/curve","curve_",9,"png",1,!1),w=e.ref([...g,...[...g].reverse()]),h=m("/static/index/newindex/curve","breathe_",9,"png",1,!1),f=e.ref([...h,...[...h].reverse()]),N=e.ref([{url:m("/static/index/newindex/huli","care",8,"png",0,!1),name:"护理类"},{url:m("/static/index/newindex/yiliao","health_",9,"png",1,!1),name:"医疗类"},{url:m("/static/index/newindex/kufang","storeroom_",11,"png",1,!1),name:"库房类"},{url:m("/static/index/newindex/baojie","clean_",12,"png",1,!1),name:"保洁类"},{url:m("/static/index/newindex/xiaoxi","wash_",14,"png",1,!1),name:"消洗类"},{url:m("/static/index/newindex/kangfu","recovery_",6,"png",1,!1),name:"康复类"}]),y=e.ref(!1);e.watch((()=>a.isShow),((e,t)=>{!t&&e?(y.value=!1,setTimeout((()=>{y.value=!0}),50)):y.value=!1}));const x=e.ref("");return e.onMounted((()=>{x.value=uni.getStorageSync("realname"),o.value=0,c.value=!0})),(t,l)=>{const a=e.resolveComponent("donghua");return e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(y.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{style:{"margin-left":"30rpx"}}," NUID:2508000001 "),e.createElementVNode("text",{class:"new-weight"}," 护理单元01 "),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("view",{class:"right-container-tem"},[e.createElementVNode("image",{class:"right-container-tem-img",src:A}),e.createElementVNode("text",{class:"right-container-tem-text"},"23°C"),e.createElementVNode("image",{class:"right-container-tem-img",src:L}),e.createElementVNode("text",{class:"right-container-tem-text"},"39%")]),e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",null,e.toDisplayString(x.value),1)])]),e.createElementVNode("view",{class:"scroll-vi"},[e.createElementVNode("view",{class:"zhezhao-left"}),e.createElementVNode("view",{class:"zhezhao-right"}),e.createElementVNode("scroll-view",{"scroll-x":"true",style:{width:"100%",height:"100%"}},[e.createElementVNode("view",{style:{display:"flex","align-items":"center"}},[e.createElementVNode("view",{style:{width:"100rpx"}}),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(N.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass([{zerotarget:0===i.value&&n.value===l},"menu"]),style:e.normalizeStyle({backgroundColor:0===i.value&&n.value===l?"#ddf0ff":""}),onClick:e=>{o.value=l,n.value=l}},[e.createVNode(a,{links:t.url,playing:o.value===l},null,8,["links","playing"]),e.createElementVNode("text",{class:e.normalizeClass(["menu-font",{zoom:o.value===l}]),style:e.normalizeStyle(o.value===l?{color:"#008FF5"}:{})},e.toDisplayString(t.name),7)],14,["onClick"])))),128)),e.createElementVNode("view",{style:{width:"100rpx"}})])])]),e.createElementVNode("view",{class:"photo-father"},[e.createElementVNode("view",{class:"juzhong",style:{"margin-left":"-50rpx"}},[e.createVNode(a,{width:"1500rpx",height:"1000rpx",links:w.value,playing:c.value,loop:!0,interval:120},null,8,["links","playing"])]),e.createElementVNode("view",{class:"juzhong",style:{"z-index":"2","margin-top":"120rpx"}},[e.createVNode(a,{width:"800rpx",height:"500rpx",links:f.value,playing:c.value,loop:!0,interval:120},null,8,["links","playing"])]),e.createElementVNode("view",{class:"weight-time"},[e.createTextVNode(" 10:00 - 10:10 "),e.createElementVNode("view",{class:"pao-father"},[e.createElementVNode("image",{class:"pao-img",src:"/static/index/newindex/states/pao.png"},null,8,["src"]),e.createElementVNode("view",{style:{"z-index":"1"}}," 待执行 ")])]),e.createElementVNode("image",{class:"big-img",src:"/static/index/newindex/wendu/2.png"},null,8,["src"]),e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-top":"5rpx"}},[e.createElementVNode("view",{class:"server-name"}," 一级压疮防护 ")]),e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-top":"40rpx"}},[e.createElementVNode("image",{class:"down-img",src:"/static/index/newindex/states/left.png"},null,8,["src"]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(v.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"states-father"},[e.createElementVNode("image",{class:"icon-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{style:{"margin-top":"15rpx","margin-left":"10rpx"}},e.toDisplayString(t.name),1)])))),128)),e.createElementVNode("image",{class:"down-img",src:"/static/index/newindex/states/right.png"},null,8,["src"])]),e.createElementVNode("view",{style:{display:"flex","margin-top":"60rpx"}},[e.createElementVNode("view",{class:e.normalizeClass({thirdtarget:3===i.value&&0===n.value}),style:{width:"240rpx",height:"90rpx","margin-right":"40rpx"}},[e.createElementVNode("view",{class:"start-button"}," 开始服务 ")],2),e.createElementVNode("view",{class:e.normalizeClass({thirdtarget:3===i.value&&1===n.value}),style:{width:"240rpx",height:"90rpx"}},[e.createElementVNode("view",{class:"end-button"}," 结束服务 ")],2)])]),e.createElementVNode("view",{class:"left-menu"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,style:{margin:"30rpx 0"},class:e.normalizeClass({firsttarget:1===i.value&&n.value===l})},[e.createElementVNode("view",{class:"left-ball",style:e.normalizeStyle({backgroundColor:1===i.value&&n.value===l?"#ddf0ff":""})},[e.createElementVNode("image",{class:"left-menu-img",src:t},null,8,["src"])],4)],2)))),128))]),e.createElementVNode("view",{class:"right-menu"},[e.createElementVNode("view",{class:"zhezhao-top",onClick:l[0]||(l[0]=e=>s.value-=115)}),e.createElementVNode("view",{class:"zhezhao-bottom",onClick:l[1]||(l[1]=e=>s.value+=115)}),e.createElementVNode("image",{class:"top-img",src:"/static/index/newindex/rightmenu/top.png",onClick:l[2]||(l[2]=e=>s.value>0?s.value-=115:s.value=0)},null,8,["src"]),e.createElementVNode("scroll-view",{"scroll-y":"true",class:"right-scroll","scroll-top":s.value,onScroll:d},[e.createElementVNode("view",{style:{height:"30rpx"}}),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass({secondtarget:2===i.value&&n.value===l}),style:{margin:"20rpx auto",width:"110rpx"}},[e.createElementVNode("view",{class:"white-circle",style:e.normalizeStyle({backgroundColor:2===i.value&&n.value===l?"#ddf0ff":""})},[e.createElementVNode("image",{class:"right-menu-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"right-menu-name"},e.toDisplayString(t.name),1)],4)],2)))),256)),e.createElementVNode("view",{style:{height:"30rpx"}})],40,["scroll-top"]),e.createElementVNode("image",{class:"top-img",src:"/static/index/newindex/rightmenu/bottom.png",onClick:l[3]||(l[3]=e=>s.value>55*u.value.length?s.value=55*u.value.length:s.value+=115)},null,8,["src"])])],4)}}}),[["__scopeId","data-v-9c8806b6"]]),se="/static/index/newruler/jiao.png";function de(e,t,l,a="png",i=0,n=!1){return Array.from({length:l},((l,r)=>{const o=n?String(r+i).padStart(2,"0"):r+i;return`${e}/${t}${o}.${a}`}))}const me=[{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706886",title:"协助喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604232524795905",title:"鼻饲喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604428667228162",title:"注射器/吸管喂药",tagName:"头部,大体重"}],levle:"2",title:"协助喂药",key:"1900114812020310017",parentId:"1900112597427793921",url:de("/static/index/diet","medicine_",7,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605892869394433",title:"一级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606105021485058",title:"二级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606339931869185",title:"三级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606614344208386",title:"一级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606869953482753",title:"二级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607023431454722",title:"三级压疮防护",tagName:"大体重"}],levle:"2",title:"压疮防护",key:"1900115034452639746",parentId:"1900112597427793921",url:de("/static/index/diet","knead_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706887",title:"床椅转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706888",title:"床椅转移",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605073730211842",title:"床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605223185846273",title:"床椅转移",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605365393723393",title:"协助床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605496071458818",title:"协助床椅转移",tagName:null}],levle:"2",title:"床椅转移",key:"1902248363784159233",parentId:"1900112597427793921",url:de("/static/index/diet","chair_",8,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607507626102786",title:"轮椅防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607677415723010",title:"轮椅防护",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902607817589362689",title:"轮椅防护",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902608061588803585",title:"轮椅防护",tagName:"大体重"}],levle:"2",title:"轮椅防护",key:"1902280900178886657",parentId:"1900112597427793921",url:de("/static/index/diet","wheelchair_",10,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608564582322178",title:"约束位按摩",tagName:"手"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608974609092610",title:"约束位按摩",tagName:"足"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618507855237121",title:"约束位按摩",tagName:"全"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618751548493825",title:"防护网约束",tagName:null}],levle:"2",title:"约束防护",key:"1902280933364219906",parentId:"1900112597427793921",url:de("/static/index/diet","constraint_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620309090701314",title:"协助行走",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620486044192769",title:"放松按摩",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902625161569079298",title:"心灵慰藉",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902625402468929537",title:"狂躁",tagName:null}],levle:"2",title:"按摩保健",key:"1902564031454744577",parentId:"1900112597427793921",url:de("/static/index/diet","massage_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902625872432304130",title:"准备衣物",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626005538541569",title:"协助更换",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626664711163905",title:"肢体障碍",tagName:"半侧"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626800510144513",title:"肢体障碍",tagName:"全身"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627064688381953",title:"准备衣物",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627280716009474",title:"协助更换",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627416598876161",title:"肢体障碍",tagName:"半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627522404388866",title:"肢体障碍",tagName:"全身"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902627711806574593",title:"协助更换",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628058591629313",title:"肢体障碍",tagName:"半侧,大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628650718302209",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628837725540354",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628966847188993",title:"肢体障碍",tagName:"大体重,半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902629129879785474",title:"协助更换",tagName:"大体重"}],levle:"2",title:"更换衣物",key:"1902564088417587201",parentId:"1900112597427793921",url:de("/static/index/diet","replace_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629344456183809",title:"坐起",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629492301205506",title:"躺下",tagName:null}],levle:"2",title:"调整坐卧",key:"1902564199830884354",parentId:"1900112597427793921",url:de("/static/index/diet","adjust_",7,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902630862769065985",title:"遗体净身",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902631162275926017",title:"遗体穿衣",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631422431825921",title:"遗体转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631602463936514",title:"床位消毒",tagName:null}],levle:"2",title:"殡仪服务",key:"1902564263743688705",parentId:"1900112597427793921",url:de("/static/index/diet","exequy_",4,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902631830441136129",title:"更换床上用品",tagName:"全部"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632063828987905",title:"隔尿褥子更换",tagName:null}],levle:"2",title:"更换床上用品",key:"1902564446648897538",parentId:"1900112597427793921",url:de("/static/index/diet","change_",6,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632288270389250",title:"临终护理",tagName:null}],levle:"2",title:"临终服务",key:"1902564503783706625",parentId:"1900112597427793921",url:de("/static/index/diet","funeral_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"40",id:"1902632678701371393",title:"制氧机吸氧",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902632799853842433",title:"制氧机维护",tagName:null}],levle:"2",title:"制氧机应用",key:"1902564586101116930",parentId:"1900112597427793921",url:de("/static/index/diet","oxygen_",6,"png",1,!1)}],levle:"1",title:"1 日常照料",key:"1900112597427793921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900376187661553665",title:"准备洁具",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900420873478553602",title:"棉球清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706881",title:"协助清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706885",title:"义齿清洁",tagName:"口腔"}],levle:"2",title:"口腔清洁",key:"1902597070889127938",parentId:"1900112615777873921",url:de("/static/index/diet","oral_",7,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902636771540963329",title:"准备洁具",tagName:"头部"},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637623425077250",title:"协助洗头",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637985234128898",title:"卧式洗头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902638122949906433",title:"擦头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902638304739430401",title:"刮头",tagName:null}],levle:"2",title:"头部清洁",key:"1902597497344987137",parentId:"1900112615777873921",url:de("/static/index/diet","head_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902641763073101826",title:"准备洁具",tagName:"面部"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642254465175553",title:"协助洁面",tagName:null}],levle:"2",title:"面部清洁",key:"1902597651405967361",parentId:"1900112615777873921",url:de("/static/index/diet","wash_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642508145070081",title:"准备洁具",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642672796667905",title:"协助清洁",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642822885642242",title:"卧床清洁",tagName:"躯干"}],levle:"2",title:"躯干清洁",key:"1902597718082818050",parentId:"1900112615777873921",url:de("/static/index/diet","limbs_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643318811758594",title:"准备洁具",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643483320750082",title:"协助清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643630888947713",title:"卧床清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643837525528578",title:"肌张力高",tagName:"清洁"}],levle:"2",title:"四肢清洁",key:"1902597811565465601",parentId:"1900112615777873921",url:de("/static/index/diet","torso_",6,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645148199391234",title:"会阴清洁",tagName:"男"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645295457210369",title:"会阴清洁",tagName:"女"}],levle:"2",title:"会阴清洁",key:"1902597873964126209",parentId:"1900112615777873921",url:de("/static/index/diet","perineum_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645493185089537",title:"肛周清洁",tagName:null}],levle:"2",title:"肛周清洁",key:"1902597930020999170",parentId:"1900112615777873921",url:de("/static/index/diet","perianal_",7,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645693211447298",title:"洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647316134465538",title:"泡手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647529817477122",title:"准备洁具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647673212342274",title:"协助洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647905878773762",title:"强直屈曲洗手",tagName:null}],levle:"2",title:"手清洁",key:"1902597991698239489",parentId:"1900112615777873921",url:de("/static/index/diet","hands_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648101203316737",title:"泡脚",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648239091060737",title:"卧式泡脚",tagName:null}],levle:"2",title:"足清洁",key:"1902598178588037121",parentId:"1900112615777873921",url:de("/static/index/diet","feet_",4,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648426383511553",title:"修睫毛",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648548777496577",title:"剃须",tagName:null}],levle:"2",title:"剃须",key:"1902598258573414401",parentId:"1900112615777873921",url:de("/static/index/diet","shave_",6,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648962444922882",title:"角质增生",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649132536532994",title:"灰指甲",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649302149992449",title:"正常",tagName:"修甲"}],levle:"2",title:"修甲",key:"1902598354606198785",parentId:"1900112615777873921",url:de("/static/index/diet","clippers_",6,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902649683919736834",title:"理发",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"25",id:"1902649860344745985",title:"理发",tagName:"颅骨缺损"}],levle:"2",title:"理发",key:"1902598400382832642",parentId:"1900112615777873921",url:de("/static/index/diet","haircut_",5,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902650121280786434",title:"床上沐浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650408884211713",title:"深度清洁",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650763722330113",title:"浴间洗浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"30",id:"1902651229122301954",title:"床上沐浴",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651366317985794",title:"深度清洁",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651555363655682",title:"浴间洗浴",tagName:"大体重"}],levle:"2",title:"沐浴",key:"1902598454782955522",parentId:"1900112615777873921",url:de("/static/index/diet","bathe_",9,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651778777452545",title:"内套管清洁",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651924047171586",title:"更换气切纱布",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"10",id:"1902652055928672258",title:"更换气切纱布",tagName:null}],levle:"2",title:"气切消毒",key:"1902598509522817026",parentId:"1900112615777873921",url:de("/static/index/diet","omy_",4,"png",1,!1)}],levle:"1",title:"2 清洁照料",key:"1900112615777873921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898057679966209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898202668666881",title:"协助进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898339931459586",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898472584712194",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898590658564097",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898719952179201",title:"准备餐具",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898979948695554",title:"协助进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899086840532993",title:"协助进餐",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899214838108162",title:"鼻胃管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899325014085633",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899587028062210",title:"食物加工",tagName:null}],levle:"2",title:"加餐饮食",key:"1902596129720864770",parentId:"1902280495747317762",url:de("/static/index/diet","snack_",7,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281139677839362",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902281522340970498",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281654100836354",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281870434648066",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902654960639381506",title:"鼻肠管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902655101874180097",title:"轮椅进餐",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902892199009030145",title:"轮椅进餐",tagName:null}],levle:"2",title:"正餐饮食",key:"1902601263850950657",parentId:"1902280495747317762",url:de("/static/index/diet","dinner_",8,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893231608926209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893551978254337",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893716466274306",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894369850757122",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894528533860354",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"辅餐饮食",key:"1902601382595891202",parentId:"1902280495747317762",url:de("/static/index/diet","food_",6,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894832176304129",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894954117304322",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895077522116609",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895233407619073",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895569912434689",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"果汁饮食",key:"1902601427168759809",parentId:"1902280495747317762",url:de("/static/index/diet","juice_",9,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895878508351489",title:"准备水杯",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895984053817346",title:"协助饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896136835534850",title:"协助饮水",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896508421509122",title:"鼻胃管饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896636553302017",title:"鼻肠管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902896855802155010",title:"准备水杯",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897018344017921",title:"协助饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897464936730626",title:"协助饮水",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897675813752834",title:"鼻胃管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897803417063426",title:"鼻肠管饮水",tagName:null}],levle:"2",title:"饮水饮食",key:"1902601487625457665",parentId:"1902280495747317762",url:de("/static/index/diet","drink_",5,"png",1,!1)}],levle:"1",title:"3 饮食照料",key:"1902280495747317762"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902653177363927041",title:"巡视",tagName:null}],levle:"2",title:"巡视",key:"1902564741860790273",parentId:"1902560466095017986",url:de("/static/index/diet","posture_",6,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653325481578497",title:"防坠床",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653497066360833",title:"被褥调整",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653650917625857",title:"睡姿调整",tagName:null}],levle:"2",title:"体位调整",key:"1902564818838851585",parentId:"1902560466095017986",url:de("/static/index/diet","visitation_",5,"png",1,!1)}],levle:"1",title:"4 睡眠照料",key:"1902560466095017986"},{children:[{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904277308510210",title:"更换尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904458779267073",title:"更换隔尿垫",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905631242424322",title:"使用尿盆",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905824973131777",title:"使用尿壶",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906220483416065",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906459051233281",title:"坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906610562076674",title:"留置尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906783325458434",title:"更换纸尿裤",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908406344945665",title:"热敷抚触排尿",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908523827400705",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909645401067522",title:"更换尿片",tagName:null}],levle:"2",title:"小便",key:"1902596314152800257",parentId:"1902560510768549889",url:de("/static/index/diet","urinate_",4,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909835331735554",title:"床上排便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910002671882242",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910156154048514",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910361008050178",title:"人工取便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910524623654913",title:"造瘘袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910700176248834",title:"坐便椅",tagName:null}],levle:"2",title:"大便",key:"1902596399423000577",parentId:"1902560510768549889",url:de("/static/index/diet","stool_",3,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910899565072385",title:"口腔吸痰",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911047405899778",title:"气切吸痰",tagName:null}],levle:"2",title:"吸痰",key:"1902596461238652930",parentId:"1902560510768549889",url:de("/static/index/diet","Sputuma_",7,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911232974491650",title:"呕吐",tagName:null}],levle:"2",title:"呕吐",key:"1902596886771765250",parentId:"1902560510768549889",url:de("/static/index/diet","vomiting_",6,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902911378349068290",title:"腹腔引流护理",tagName:null}],levle:"2",title:"引流",key:"1902596940366581762",parentId:"1902560510768549889",url:de("/static/index/diet","drainage_",6,"png",1,!1)}],levle:"1",title:"5 排泄照料",key:"1902560510768549889"}],ue=s(e.defineComponent({__name:"index",props:{isshow:{type:Boolean,required:!0},darkFans:{type:Boolean},canmove:{type:Boolean},liang:{type:Object},isold:{type:Boolean,required:!0},propsmove:{type:Number},isMain:{type:Boolean}},emits:["vip","changeold"],setup(t,{expose:l,emit:a}){const i=t;e.watch((()=>i.isMain),((e,t)=>{i.isshow&&(!0===t&&!1===e?(Ne.value.index0=8,Ne.value.index1=0,Y.value=!0):!1===t&&!0===e&&(Ne.value.index0=-1,Ne.value.index1=-1))})),e.watch((()=>i.isold),(()=>{i.isold&&(ct(),B.value=1,z.value=1,e.nextTick((()=>{z.value=0,B.value=700})))})),e.watch((()=>i.canmove),(()=>{Le.value=!1})),e.watch((()=>i.isshow),((t,l)=>{t!==l&&(Le.value=!1,_e.value=!1,tt.value?tt.value--:(ct(),B.value=1,z.value=1,e.nextTick((()=>{z.value=0,B.value=775}))),pe.value=0,y.value=!y.value)}));const o=e.ref(!1),c=e.ref(-1),s=e.ref(!1),d=e.ref(-1);e.watch((()=>i.propsmove),(()=>{if(s.value)switch(i.propsmove){case 0:d.value-3>0?d.value=d.value-3:d.value=0;break;case 1:d.value>5||d.value++;break;case 2:d.value+3>5?d.value=6:d.value=d.value+3;break;case 3:d.value&&d.value--;break;case 4:f(d.value);break;case 5:u.value=!1,v.value=!1,s.value=!1,o.value=!1,Z.value=1}else if(o.value)switch(i.propsmove){case 0:c.value-3>0?c.value=c.value-3:c.value=0;break;case 1:c.value>3||c.value++;break;case 2:c.value+3>3?c.value=4:c.value=c.value+3;break;case 3:c.value&&c.value--;break;case 4:h(c.value);break;case 5:u.value=!1,v.value=!1,s.value=!1,o.value=!1,Z.value=0}else if(4===i.propsmove)if(Y.value)Je();else switch(Z.value){case 0:v.value=!1,u.value=!u.value,o.value=!0,c.value=0;break;case 1:u.value=!1,v.value=!v.value,s.value=!0,d.value=0;break;case 2:Qe();break;default:Se()}else Y.value?X(i.propsmove):H(i.propsmove)}));const m=e.ref(!1),u=e.ref(!1),v=e.ref(!1);e.watch((()=>u.value),(()=>{setTimeout((()=>{m.value=u.value,fe("vip",m.value)}),50)}));const p=e.ref(!1);e.watch((()=>v.value),(()=>{setTimeout((()=>{p.value=v.value,fe("vip",p.value)}),50)}));const g=e.ref([]),w=e.ref([]),h=e=>{g.value.includes(e)?g.value=g.value.filter((t=>t!==e)):g.value.length>1?uni.showToast({title:"标签最多只能添加两个",icon:"none",duration:2e3}):g.value.push(e)},f=e=>{w.value.includes(e)?w.value=w.value.filter((t=>t!==e)):w.value.length>1?uni.showToast({title:"标签最多只能添加两个",icon:"none",duration:2e3}):w.value.push(e)},N=e.ref(!1),y=e.ref(!1),x=e.ref([{name:"纸尿裤",url:"/static/index/niao.png",target:"#fff",id:-1},{name:"呕吐",url:"/static/index/tu.png",target:"#fff",id:-1},{name:"吸痰",url:"/static/index/ou.png",target:"#fff",id:-1},{name:"大便",url:"/static/index/baba.png",target:"#fff",id:-1},{name:"纸尿裤",url:"/static/index/niao.png",target:"#fff",id:-1},{name:"呕吐",url:"/static/index/tu.png",target:"#fff",id:-1},{name:"吸痰",url:"/static/index/ou.png",target:"#fff",id:-1},{name:"大便",url:"/static/index/baba.png",target:"#fff",id:-1}]),E=["标准","超重","强直","偏瘫","佝偻","稳定","焦虑","抑郁","暴力","恐惧","烦躁","易怒","臆想"],V=["周一","周二","周三","周四","周五","周六","周日"],b=Array.from({length:31},((e,t)=>(t+1).toString().padStart(2,"0"))),k=e.ref(!0),T=e.ref(!1),D=e.ref(0),C=e.ref(0),S=e.ref(0),B=e.ref(678),z=e.ref(0),I=e.ref();e.ref([]);const U=e.ref(!1),M=e.ref([]),F=e.ref(!1);e.ref(!1);const $=e.ref(!1);e.ref(!1),e.ref(!1),e.ref(""),e.ref(!1);const A=e.ref(!1);e.ref("");const L=e.ref(!1);e.ref(0),e.ref(0),e.ref(6),e.ref(11),e.ref(0),e.ref(3);const O=e.ref(!1),P=e.computed((()=>Be.value[0]&&Be.value[1]?"left-bottom":!Be.value[0]&&Be.value[1]?"right-bottom":Be.value[0]&&!Be.value[1]?"left-top":"right-top"));e.onMounted((()=>{we.value=0}));const j=e.ref(0);const q=()=>{let e=JSON.parse(JSON.stringify(it.value[ke.value.index0].children[ke.value.index1]));qe.value=[Ne.value.index0,Ne.value.index1];let t=it.value[ke.value.index0].children[ke.value.index1].typeName;it.value[ke.value.index0].children[ke.value.index1]={directiveName:"",typeName:t};let l=it.value[qe.value[0]].children[qe.value[1]].typeName;it.value[qe.value[0]].children[qe.value[1]]=e,it.value[qe.value[0]].children[qe.value[1]].typeName=l;let a=it.value[qe.value[0]].children[qe.value[1]].startTime,i=it.value[qe.value[0]].children[qe.value[1]].endTime,n=it.value[qe.value[0]].positioning;const r=a.split(":")[1],o=i.split(":")[1];let c=Number(o)-Number(r),s=l,d=Number(s)+c;it.value[qe.value[0]].children[qe.value[1]].startTime=n+":"+s.padStart(2,"0"),it.value[qe.value[0]].children[qe.value[1]].endTime=n+":"+String(d%60).padStart(2,"0"),ke.value.index0=-1,ke.value.index1=-1,O.value=!1;let m={index0:Ne.value.index0,index1:Ne.value.index1};lt(m)},R=t=>{5!==t?(T.value=!1,Q.value=-1,ee.value=-1,G.value="",K.value="",C.value=1,D.value=1,we.value=-1,e.nextTick((()=>{C.value=0,D.value=0,we.value=0})),ge.value=0,pe.value=t,I.value=M.value[t].children,he.value=0):uni.navigateTo({url:"/pages/watch/index"})},W=()=>{te.value=!1,O.value?q():it.value[Ne.value.index0].children[Ne.value.index1].directiveName&&(ke.value.index0=Ne.value.index0,ke.value.index1=Ne.value.index1,O.value=!0)};e.ref(!0),e.ref(!1);const Y=e.ref(!1),J=e.ref(-1),X=e=>{switch(te.value=!1,e){case 0:Ne.value.index1?(Ne.value.index1--,ct(),F.value=!1,N.value&&setTimeout((()=>{ze(it.value[Ne.value.index0].children[Ne.value.index1],Ne.value.index0,Ne.value.index1)}),50)):(Z.value=0,J.value=Ne.value.index0,Y.value=!1);break;case 1:if(23==Ne.value.index0)return;Ne.value.index0++,ct(),F.value=!1,N.value&&setTimeout((()=>{ze(it.value[Ne.value.index0].children[Ne.value.index1],Ne.value.index0,Ne.value.index1)}),50);break;case 2:if(11==Ne.value.index1)return;Ne.value.index1++,ct(),F.value=!1,N.value&&setTimeout((()=>{ze(it.value[Ne.value.index0].children[Ne.value.index1],Ne.value.index0,Ne.value.index1)}),50);break;case 3:if(0==Ne.value.index0)return;Ne.value.index0--,ct(),F.value=!1,N.value&&setTimeout((()=>{ze(it.value[Ne.value.index0].children[Ne.value.index1],Ne.value.index0,Ne.value.index1)}),50)}},Z=e.ref(-1),H=e=>{switch(te.value=!1,e){case 0:break;case 1:Z.value<3&&Z.value++;break;case 2:u.value=!1,v.value=!1,Z.value=-1,Ne.value.index0=J.value,Y.value=!0;break;case 3:Z.value&&Z.value--}},G=e.ref(""),Q=e.ref(-1),K=e.ref(""),ee=e.ref(-1),te=e.ref(!1),le=()=>{ke.value.index0=-1,ke.value.index1=-1,O.value=!1,it.value[Ne.value.index0].children[Ne.value.index1].directiveName&&(te.value?(te.value=!1,Ue(Ne.value.index0,Ne.value.index1)):te.value=!0)};function ae(e,t){return 2*function(e,t){const l=55.9898*e+78.233*t;return Math.abs(43758.5453*Math.sin(l))%1}(e,t)}e.ref(!1),e.ref(0);const ie=e.ref(0),ne=e.ref(0);function re(e){let t=e.detail.scrollTop;ie.value=e.detail.scrollTop;let l=parseFloat(t.toFixed(2));ne.value=l}const oe=e.ref(0);function ce(e){oe.value=e.detail.scrollLeft}e.ref(!0);const de=(e,t,l)=>"日常"===e.cycleType?ke.value.index0===t&&ke.value.index1===l?"title-time-border-yellow-active-transparent":_e.value?"title-time-border-yellow-active":"title-time-border-yellow":e.cycleType?ke.value.index0===t&&ke.value.index1===l?"title-time-border-pouple-active-transparent":_e.value?"title-time-border-pouple-active":"title-time-border-pouple":"title-time-border";function ue(e,t,l,a="png",i=0,n=!1){return Array.from({length:l},((l,r)=>{const o=n?String(r+i).padStart(2,"0"):r+i;return`${e}/${t}${o}.${a}`}))}const ve=e.ref([{url:ue("/static/index/newruler","daily_",6,"png",1,!1),name:"日常"},{url:ue("/static/index/newruler","clean_",8,"png",1,!1),name:"清洁"},{url:ue("/static/index/newruler","diet_",7,"png",1,!1),name:"饮食"},{url:ue("/static/index/newruler","sleep_",5,"png",1,!1),name:"睡眠"},{url:ue("/static/index/newruler","defecate_",5,"png",1,!1),name:"排泻"}]),pe=e.ref(1),ge=e.ref(0),we=e.ref(-1),he=e.ref(0);e.ref(!1),e.ref([]);const fe=a;e.ref(!1);const Ne=e.ref({index0:-1,index1:-1});e.ref(0),e.ref([]);const ye=e.ref(null);e.ref({});const xe=e.ref(0),Ee=e.ref(0),Ve=e.ref(0),be=e.ref(0),ke=e.ref({index0:999,index1:999,typeName:""});e.ref(-1),e.ref(!1);const Te=e.ref(!1),De=e.ref(-1),Ce=e.ref(!1),Se=()=>{Ce.value=!0,Te.value=!1,setTimeout((()=>{Te.value=!0}),100)},Be=e.ref([!1,!1]),ze=(t,l,a)=>{if(t.directiveName){De.value=a;uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.left>100&&t.left<1067&&t.top<670&&t.top>50&&t.dataset.index0==l&&t.dataset.index1==a&&(t.left>100&&t.left<500?(Ve.value=Math.floor(t.left)+528,Be.value[0]=!0):(Ve.value=Math.floor(t.left)-18,Be.value[0]=!1),t.top>500?(be.value=Math.floor(t.top)+100,Be.value[1]=!0):(be.value=Math.floor(t.top)+180,Be.value[1]=!1),await e.nextTick(),F.value=!0,$.value=!1,setTimeout((()=>{$.value=!0}),100))}))})).exec()}},_e=e.ref(!1);e.ref([]);const Ie=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-xe.value)>0||Math.abs(l-Ee.value)>0)&&ye.value&&(clearTimeout(ye.value),ye.value=null)},Ue=(e,t)=>{let l=it.value[e].children[t].typeName;it.value[e].children[t]={directiveName:"",typeName:l}};e.ref(null),e.ref(!1),e.ref(!1);const Me=e.ref(0),Fe=e.ref(0),$e=e.ref(!1);e.ref(""),e.ref("");const Ae=e.ref(null),Le=e.ref(!1),Oe=e=>{Me.value=Math.floor(e.touches[0].pageX),Fe.value=Math.floor(e.touches[0].pageY),Ae.value=setTimeout((()=>{Le.value=!0}),500)},Pe=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-Me.value)>0||Math.abs(l-Fe.value)>0)&&Ae.value&&(clearTimeout(Ae.value),Ae.value=null)},je=()=>{Ae.value&&(clearTimeout(Ae.value),Ae.value=null)};e.ref({time:"",minute:"",array:[]}),e.ref({op:{name:"",index:[-1,-1,-1]},startTime:"",weekTimeNumber:-1,monthTimeNumber:-1,monthTime:"",weekTime:""}),e.ref(0);const qe=e.ref([-1,-1]);e.ref(null);const Re=()=>{L.value=!1,A.value=!0,setTimeout((()=>{L.value=!0}),50)},We=e.ref(!1);let Ye=null;async function Je(){Ye&&(clearTimeout(Ye),Ye=null),We.value=!1,await e.nextTick(),We.value=!0,Xe(),Ye=setTimeout((()=>{We.value=!1,Ye=null}),1e3)}e.onBeforeUnmount((()=>{Ye&&clearTimeout(Ye)}));const Xe=()=>{if(-1===Ne.value.index1&&-1===Ne.value.index0)return;if(te.value)return te.value=!1,void Ue(Ne.value.index0,Ne.value.index1);if(O.value)return void q();ke.value.index0=-1,ke.value.index1=-1,O.value=!1;let t=!1,l=M.value[pe.value].children[ge.value].children[he.value];if("即时护理"===l.cycleType)return S.value=1,x.value.forEach(((e,a)=>{e.id===l.id&&(t=!0)})),void e.nextTick((()=>{t?(clearTimeout(He.value),U.value=!0,He.value=setTimeout((()=>{U.value=!1}),1500)):(S.value=0,x.value.length&&"#03a4ff"===x.value[0].target&&(x.value[0].target="#fff",clearTimeout(Ze.value)),x.value.unshift({name:l.title,url:"/static/index/ou.png",target:"#03a4ff",id:l.id}),Ze.value=setTimeout((()=>{x.value[0].target="#fff"}),1500))}));if("周期护理"===l.cycleType&&T.value&&-1==Q.value&&-1==ee.value)return;if("周期护理"===l.cycleType&&!T.value)return void(T.value=!0);let a="";"日常护理"===l.cycleType?a="日常":(a=-1!==Q.value?G.value:K.value+"号",T.value=!1,Q.value=-1,ee.value=-1,G.value="",K.value="");const i=Number(Ne.value.index0),n=Number(it.value[Ne.value.index0].children[Ne.value.index1].typeName),r=n+10,o=i+Math.floor(r/60),c=`${String(i)}:${String(n).padStart(2,"0")}`,s=`${String(o)}:${String(r%60).padStart(2,"0")}`;it.value[Ne.value.index0].children[Ne.value.index1].startTime=c,it.value[Ne.value.index0].children[Ne.value.index1].endTime=s;let d={directiveId:l.id,directiveName:l.title,startTime:c,endTime:s,positioning:Ne.value.index0.toString(),positioningLong:Ne.value.index1.toString(),tagName:l.tagName,cycleType:a,nuId:"1",customerId:"1",id:"",typeName:it.value[Ne.value.index0].children[Ne.value.index1].typeName};it.value[Ne.value.index0].children[Ne.value.index1]=d;let m={index0:Ne.value.index0,index1:Ne.value.index1};lt(m),Ge()},Ze=e.ref(null),He=e.ref(null),Ge=()=>{it.value.forEach(((e,t)=>{e.children.forEach(((e,l)=>{let a="";if(e.directiveName||e.id)e.positioning=t,e.positioningLong=l;else{let i={};e.typeName&&(a=e.typeName),i=JSON.parse(JSON.stringify(rt.value)),a&&(i.typeName=a),i.positioning=t,i.positioningLong=l}}))}))},Qe=()=>{uni.setStorage({key:"myArray",data:it.value,success:function(){uni.navigateTo({url:"/pages/timeMatrix/indexnew"})}})},Ke=e.ref({index0:-1,index1:-1}),et=e.ref({index0:-1,index1:-1,current:-1,bordershow:!0}),tt=e.ref(0),lt=e=>{Ne.value.index0=e.index0,Ne.value.index1=e.index1,ct(),et.value.index0=e.index0,et.value.index1=e.index1,Ke.value.index0=et.value.index0,Ke.value.index1=et.value.index1,et.value.bordershow=!1,setTimeout((()=>{et.value.index0=-1,et.value.index1=-1,et.value.current=-1}),400),setTimeout((()=>{et.value.bordershow=!0,Ke.value.index0=-1,Ke.value.index1=-1}),1e3)},at=["00","05","10","15","20","25","30","35","40","45","50","55"],it=e.ref(Array.from({length:24},((e,t)=>({positioning:t.toString(),children:at.map((e=>({typeName:e,directiveName:""})))}))));function nt(e){tt.value=3,lt(e)}n((()=>{M.value=me,I.value=M.value[0].children,uni.$on("where",nt)})),r((()=>{uni.$off("where",nt)})),l({rulerMoveEnd:e=>{if(999!==i.liang.index0&&e.cycleType){qe.value=[i.liang.index0,i.liang.index1];let t=it.value[ke.value.index0].children[ke.value.index1].typeName;it.value[ke.value.index0].children[ke.value.index1]={directiveName:"",typeName:t};let l=it.value[qe.value[0]].children[qe.value[1]].typeName;it.value[qe.value[0]].children[qe.value[1]]=e,it.value[qe.value[0]].children[qe.value[1]].typeName=l;let a=it.value[qe.value[0]].children[qe.value[1]].startTime,n=it.value[qe.value[0]].children[qe.value[1]].endTime,r=it.value[qe.value[0]].positioning;const o=a.split(":")[1],c=n.split(":")[1];let s=Number(c)-Number(o),d=l,m=Number(d)+s;it.value[qe.value[0]].children[qe.value[1]].startTime=r+":"+d.padStart(2,"0"),it.value[qe.value[0]].children[qe.value[1]].endTime=r+":"+String(m%60).padStart(2,"0")}}}),e.ref({index0:999,index1:999});const rt=e.ref({directiveId:"",directiveName:"",startTime:"",endTime:"",positioning:"",positioningLong:"",tagName:"",cycleType:"",nuId:"1",customerId:"1",id:"",typeName:""});function ot(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}function ct(){if(Ne.value.index0>=0&&Ne.value.index0<=24&&Ne.value.index1>=0&&Ne.value.index1<=11){const e=259*(Ne.value.index0+.5),t=250.5*(Ne.value.index1-1);B.value=e-650,z.value=t-250;const l=6216,a=2755.5;B.value=Math.max(0,Math.min(B.value,l-1300))/2,z.value=Math.max(0,Math.min(z.value,a-500))/2}}return(l,a)=>{var i,n;const r=e.resolveComponent("donghua");return e.openBlock(),e.createElementBlock("view",{class:"right-container",style:e.normalizeStyle(t.isshow?{opacity:"1"}:{opacity:"0"}),onClick:a[15]||(a[15]=e=>{Le.value=!1,_e.value=!1})},[e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{style:{"margin-left":"30rpx"}}," NUID:2508000001 "),e.createElementVNode("text",{class:"new-weight"}," 护理单元01 "),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-right":"25rpx",padding:"0 15rpx"},class:e.normalizeClass(Z.value||o.value||s.value?"":"firsttarget")},[e.createElementVNode("view",{class:"mark"},[e.createElementVNode("view",{style:{"margin-right":"15rpx"}}," 体型标签: "),e.withDirectives(e.createElementVNode("view",{class:"mark-bgc",style:e.normalizeStyle({opacity:m.value?1:0})},[e.createElementVNode("view",{style:{"margin-top":"40rpx","margin-bottom":"30rpx","margin-left":"50rpx","font-size":"32rpx"}},[e.createElementVNode("view",null," 体型标签 ")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E.slice(0,5),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>h(l)},[e.createElementVNode("view",{class:e.normalizeClass(["tags-father",c.value===l?"secondtarget":""])},[e.createElementVNode("image",{class:"tags-img",src:g.value.includes(l)?`/static/index/tagNames/${l}1.png`:`/static/index/tagNames/${l}0.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font",style:e.normalizeStyle(g.value.includes(l)?{color:"rgb(54, 159, 239)"}:{})},e.toDisplayString(t),5)],2)],8,["onClick"])))),128))])],4),[[e.vShow,u.value]])]),e.createElementVNode("view",{class:"marknone",onClick:a[0]||(a[0]=e=>{u.value=!u.value,v.value=!1})},[g.value.length?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,style:{"margin-top":"-3rpx"}}," 未选择 ")),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("image",{class:"tags-img",style:{width:"40rpx",height:"40rpx",margin:"0 10rpx"},src:`/static/index/tagNames/${t}0.png`},null,8,["src"])])))),128))]),e.createElementVNode("view",{class:"tri-down",onClick:a[1]||(a[1]=e=>{u.value=!u.value,v.value=!1})})],2),e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-right":"15rpx",padding:"0 15rpx"},class:e.normalizeClass(1!==Z.value||o.value||s.value?"":"firsttarget")},[e.createElementVNode("view",{class:"mark"},[e.createTextVNode(" 情绪标签: "),e.withDirectives(e.createElementVNode("view",{class:"mark-bgc",style:e.normalizeStyle({opacity:p.value?1:0})},[e.createElementVNode("view",{style:{"margin-top":"40rpx","margin-bottom":"30rpx","margin-left":"50rpx","font-size":"32rpx"}},[e.createElementVNode("view",null," 情绪标签 ")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E.slice(5,12),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>f(l)},[e.createElementVNode("view",{class:e.normalizeClass(["tags-father",d.value===l?"secondtarget":""])},[e.createElementVNode("image",{class:"tags-img",src:w.value.includes(l)?`/static/index/tagNames/${l+5}1.png`:`/static/index/tagNames/${l+5}0.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font",style:e.normalizeStyle(w.value.includes(l)?{color:"rgb(54, 159, 239)"}:{})},e.toDisplayString(t),5)],2)],8,["onClick"])))),128))])],4),[[e.vShow,v.value]])]),e.createElementVNode("view",{class:"marknone",onClick:a[2]||(a[2]=e=>{v.value=!v.value,u.value=!1})},[w.value.length?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,style:{"margin-top":"-3rpx"}}," 未选择 ")),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(w.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("image",{class:"tags-img",style:{width:"40rpx",height:"40rpx",margin:"0 10rpx"},src:`/static/index/tagNames/${t+5}0.png`},null,8,["src"])])))),128))]),e.createElementVNode("view",{class:"tri-down",onClick:a[3]||(a[3]=e=>{v.value=!v.value,u.value=!1})})],2),e.createElementVNode("view",{class:e.normalizeClass(["white-button",2===Z.value?"firsttarget":""]),onClick:Qe},[e.createElementVNode("image",{class:"white-img",src:"/static/index/newruler/yulan.png"},null,8,["src"]),e.createTextVNode(" 预览 ")],2),e.createElementVNode("view",{class:e.normalizeClass(["white-button",3===Z.value?"firsttarget":""]),onClick:Se},[e.createElementVNode("image",{class:"white-img",src:"/static/index/newruler/fenxiang.png"},null,8,["src"]),e.createTextVNode(" 分享 ")],2)])]),e.createElementVNode("view",{class:"doctorsay-container-view"},[e.createElementVNode("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"boom-father"},[e.createElementVNode("view",{class:"boom"},[e.createElementVNode("view",{style:e.normalizeStyle({marginTop:`-${2*ne.value}rpx`})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(it.value[0].children,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.withDirectives(e.createElementVNode("view",{class:"boom-son"},[e.createElementVNode("text",{class:"boom-text"},e.toDisplayString(t.typeName),1)],512),[[e.vShow,t.typeName]])])))),128))],4)])]),e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("scroll-view",{style:{height:"1330rpx",width:"100%",border:"2rpx solid balck"},"scroll-left":B.value,"scroll-x":"",onScroll:ce,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",width:"4824rpx"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(it.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time"},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),1)])))),128))]),e.createElementVNode("view",{style:{display:"flex",height:"calc(100% - 80rpx)",position:"relative"}},[e.createElementVNode("view",{class:"xian-bian"}),e.createElementVNode("scroll-view",{style:{height:"100%",width:"6744rpx"},"scroll-top":z.value,"scroll-y":!0,onScroll:re,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(it.value,((l,i)=>(e.openBlock(),e.createElementBlock("view",{key:i},[e.createElementVNode("view",{class:"super-card-time-und"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.children,((l,n)=>(e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:n},[e.createElementVNode("view",{class:e.normalizeClass(et.value.index0===i&&et.value.index1===n?et.value.index1?"title-time-border-big":"title-time-border-big-top":"super-card-time-card"),style:e.normalizeStyle([et.value.bordershow||Ke.value.index0!==i||Ke.value.index1!==n?{borderBottom:"1rpx solid transparent"}:{zIndex:999},{position:"relative"}]),id:`a${i}_${n}`,onClick:e=>ze(l,i,n),onTouchstart:e=>{},onTouchmove:Ie,onTouchend:a[4]||(a[4]=e=>($e.value=!1,void(ye.value&&(clearTimeout(ye.value),ye.value=null)))),"data-index0":i,"data-index1":n},[ke.value.index0===i&&ke.value.index1===n&&0==n?(e.openBlock(),e.createElementBlock("view",{key:0,class:"time-button-orange-spe",style:e.normalizeStyle({left:ke.value.index0?"-130rpx":"0"})}," 请选择服务指令迁移的目标单元格 ",4)):e.createCommentVNode("",!0),ke.value.index0===i&&ke.value.index1===n&&n?(e.openBlock(),e.createElementBlock("view",{key:1,class:"time-button-orange",style:e.normalizeStyle({left:ke.value.index0?"-130rpx":"0"})}," 请选择服务指令迁移的目标单元格 ",4)):e.createCommentVNode("",!0),Ne.value.index0==i&&Ne.value.index1==n&&0==n&&te.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"time-button-black-spe",style:e.normalizeStyle({left:Ne.value.index0?"-220rpx":"0"})}," 是否确认删除该服务指令 ",4)):e.createCommentVNode("",!0),Ne.value.index0==i&&Ne.value.index1==n&&n&&te.value?(e.openBlock(),e.createElementBlock("view",{key:3,class:"time-button-black",style:e.normalizeStyle({left:Ne.value.index0?"-220rpx":"0"})}," 是否确认删除该服务指令 ",4)):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{class:"title-time-blue"},null,512),[[e.vShow,Ne.value.index0==i&&Ne.value.index1==n&&Y.value]]),e.createElementVNode("view",{class:e.normalizeClass(de(l,i,n)),style:e.normalizeStyle([{"font-size":"30rpx",overflow:"hidden"},{animationDelay:`-${ae(i,n).toFixed(2)}s`}])},[l.startTime?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"flex-direction":"column"}},[e.withDirectives(e.createElementVNode("image",{style:{width:"60rpx",height:"60rpx",margin:"0 auto","margin-top":"30rpx"},src:_},null,512),[[e.vShow,l.startTime]]),e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(l.startTime+"-"+l.endTime),1),"日常"!=l.cycleType?(e.openBlock(),e.createElementBlock("image",{key:0,class:"title-time-button",style:{width:"80rpx",height:"48rpx"},src:se})):e.createCommentVNode("",!0),"日常"!=l.cycleType?(e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font",style:{right:"10rpx",top:"5rpx","font-size":"23rpx"}},e.toDisplayString(l.cycleType),1)):e.createCommentVNode("",!0)],512)),[[e.vShow,t.liang.index0!==i||t.liang.index1!==n||t.canmove]]):e.createCommentVNode("",!0),l.startTime?(e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font-rel"},e.toDisplayString(ot(l.directiveName)[0]),1)):e.createCommentVNode("",!0)],6)],46,["id","onClick","onTouchstart","data-index0","data-index1"])])))),128))])])))),128))])],40,["scroll-top"])])],40,["scroll-left"])]),e.createElementVNode("view",{class:"right-cards"},[e.createElementVNode("view",{style:{"margin-top":"60rpx","margin-left":"30rpx"}},[e.createElementVNode("view",{class:""}," 即时指令 "),e.createElementVNode("view",{style:{width:"30rpx",height:"6rpx","background-color":"black","margin-left":"40rpx","margin-top":"3rpx","border-radius":"20rpx"}})]),e.createElementVNode("scroll-view",{"scroll-x":"",class:"scroll-box","scroll-left":S.value},[e.createElementVNode("view",{class:"right-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(x.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"right-box-item",onTouchstart:Oe,onTouchmove:Pe,onTouchend:je,style:e.normalizeStyle(t.target?{background:t.target,transition:"all 1.5s ease-in-out"}:{transition:"all 1.5s ease-in-out"})},[e.createElementVNode("view",{style:e.normalizeStyle({animationDelay:`-${.1*l}s`}),class:e.normalizeClass(Le.value?"super-end-items-img-father-active":"super-end-items-img-father")},[e.createElementVNode("image",{class:"right-box-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"right-box-font"},e.toDisplayString(t.name),1)],6),e.withDirectives(e.createElementVNode("view",{class:"super-end-items-father-close-father",onClick:e.withModifiers((e=>x.value.splice(l,1)),["stop"])}," - ",8,["onClick"]),[[e.vShow,Le.value]])],36)])))),128))])],8,["scroll-left"]),e.createElementVNode("view",{class:"middle-box"},[e.createElementVNode("view",{class:"middle-left-box"},[e.createElementVNode("view",{class:"first-contant"},[e.withDirectives(e.createElementVNode("view",{class:"time-father"},[e.withDirectives(e.createElementVNode("view",{class:"time-button"},[e.createElementVNode("view",{class:"time-button-month"},"周"),e.createElementVNode("view",{class:"time-button-week",onClick:a[5]||(a[5]=e=>{k.value=!1,Q.value=-1,G.value=""})},"月")],512),[[e.vShow,k.value]]),e.withDirectives(e.createElementVNode("view",{class:"time-button"},[e.createElementVNode("view",{class:"time-button-month-target",onClick:a[6]||(a[6]=e=>{k.value=!0,ee.value=-1,K.value=""})},"周"),e.createElementVNode("view",{class:"time-button-week-target"},"月")],512),[[e.vShow,!k.value]]),e.createElementVNode("scroll-view",{"scroll-y":"",style:{width:"100%",height:"600rpx"},"show-scrollbar":!1,"scroll-top":D.value},[k.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},e.renderList(V,((t,l)=>e.createElementVNode("view",{key:l,onClick:e=>((e,t)=>{const l=Date.now();l-j.value<300?(G.value=e,Q.value=t,Xe(),j.value=0):(G.value=e,Q.value=t,j.value=l)})(t,l)},[e.createElementVNode("view",{class:e.normalizeClass(Q.value===l?"items-card-target":"items-card")},e.toDisplayString(t),3)],8,["onClick"]))),64)):e.createCommentVNode("",!0),k.value?e.createCommentVNode("",!0):(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(e.unref(b),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>((e,t)=>{const l=Date.now();l-j.value<300?(K.value=e,ee.value=t,Xe(),j.value=0):(K.value=e,ee.value=t,j.value=l)})(t,l)},[e.createElementVNode("view",{class:e.normalizeClass(ee.value===l?"items-card-target":"items-card")},e.toDisplayString(t),3)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"40rpx"}})],8,["scroll-top"])],512),[[e.vShow,T.value]]),e.withDirectives(e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%",width:"100%"},"show-scrollbar":!1,"scroll-top":D.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(M.value[pe.value].children[ge.value].children,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>function(e){const t=Date.now();he.value=e,t-j.value<300?(he.value=e,Xe(),j.value=0):(he.value=e,j.value=t)}(l)},[e.createElementVNode("view",{class:"right-box-item",style:e.normalizeStyle(he.value==l?{border:"2rpx solid rgb(229, 233, 249)",backgroundColor:"#fff"}:{border:"2rpx solid rgb(229, 233, 249)"})},[e.withDirectives(e.createElementVNode("view",{class:"title-time-button-font"}," 周期 ",512),[[e.vShow,"周期护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("view",{class:"title-time-button-font"}," 即时 ",512),[[e.vShow,"即时护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:se},null,512),[[e.vShow,"周期护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:se},null,512),[[e.vShow,"即时护理"===t.cycleType]]),e.createElementVNode("image",{class:"right-box-img",src:_}),e.createElementVNode("view",{class:"right-box-font",style:e.normalizeStyle([{"font-size":"20rpx","margin-top":"2rpx"},he.value==l?{color:"rgb(54, 159, 239)"}:{}])},e.toDisplayString(t.title),5)],4)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"20rpx"}})],8,["scroll-top"]),[[e.vShow,!T.value]])]),e.createElementVNode("view",{class:"second-contant"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%",width:"100%"},"show-scrollbar":!1,"scroll-top":C.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(I.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(we.value==l?"downList-box-target":"downList-box"),onClick:t=>(t=>{T.value=!1,Q.value=-1,ee.value=-1,G.value="",K.value="",ge.value=t,we.value=t,he.value=0,D.value=1,e.nextTick((()=>{D.value=0}))})(l)},[e.createVNode(r,{width:"55rpx",height:"55rpx",links:t.url,playing:we.value==l,interval:120},null,8,["links","playing"]),e.createElementVNode("view",{class:"downList-box-text"},e.toDisplayString(t.title),1)],10,["onClick"])])))),128)),e.createElementVNode("view",{style:{height:"20rpx"}})],8,["scroll-top"])])]),e.createElementVNode("view",{class:"middle-right-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(ve.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>R(l)},[e.createElementVNode("view",{class:"doctorsay-container-card"},[e.createVNode(r,{width:"55rpx",height:"55rpx",links:t.url,playing:l===pe.value,interval:120},null,8,["links","playing"]),e.createElementVNode("view",{class:e.normalizeClass(l===pe.value?"doctorsay-container-card-font-dark":"doctorsay-container-card-font")},e.toDisplayString(t.name),3)])],8,["onClick"])))),128))])]),e.createElementVNode("view",{class:"under-button"},[U.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"under-button-black"}," 不能重复添加相同的即时服务指令 ")):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"white-circle",onClick:W},[e.createElementVNode("image",{class:"white-circle-img",src:`/static/index/keyimg/movebutton${O.value?"blue":""}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"white-circle",onClick:le},[e.createElementVNode("image",{class:"white-circle-img",src:`/static/index/keyimg/deletebutton${te.value?"blue":""}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"white-circle",onClick:Re},[e.createElementVNode("image",{class:"white-circle-img",src:`/static/index/keyimg/notebutton${A.value?"blue":""}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"white-circle",onClick:a[7]||(a[7]=e=>N.value=!N.value)},[e.createElementVNode("image",{class:"white-circle-img",src:`/static/index/keyimg/open${N.value?"blue":""}.png`},null,8,["src"])]),e.createElementVNode("view",{style:{position:"relative"}},[e.createElementVNode("view",{ref:"btnRef",class:e.normalizeClass(["white-circle-click-father",{anim:We.value}]),style:e.normalizeStyle({color:We.value?"#fff":""}),onClick:Je},[e.createElementVNode("view",{style:{"z-index":"999"}}," 确定 ")],6),e.createElementVNode("view",{class:"white-circle-click-father-spec",onClick:a[8]||(a[8]=e=>R(5))},[e.createElementVNode("view",{class:"other-father"},[e.createElementVNode("image",{style:{width:"55rpx",height:"55rpx"},src:"/static/index/newruler/monitor_1.png"}),e.createElementVNode("view",{style:{"z-index":"999","font-size":"25rpx"}}," 监控 ")])])])])])])])]),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay",onClick:a[10]||(a[10]=e=>{F.value=!1,ke.value.index0=999,De.value=-1})},[e.createElementVNode("view",{class:e.normalizeClass(["popup-overlay-content",P.value]),style:e.normalizeStyle({top:2*be.value-350+"rpx",left:2*Ve.value-780+"rpx",opacity:$.value?1:0}),onClick:a[9]||(a[9]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"},e.toDisplayString(null==(n=null==(i=it.value[ke.value.index0])?void 0:i.children[ke.value.index1])?void 0:n.value),1)]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],6)],512),[[e.vShow,F.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-say",onClick:a[12]||(a[12]=e=>A.value=!1)},[e.createElementVNode("view",{class:"popup-say-content",style:e.normalizeStyle([{padding:"30rpx 0"},{opacity:L.value?1:0}]),onClick:a[11]||(a[11]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{style:{"margin-top":"20rpx","margin-bottom":"20rpx","margin-left":"30rpx","font-size":"32rpx"}},[e.createElementVNode("view",null," 体型标签 ")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E.slice(0,5),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"tags-father"},[e.createElementVNode("image",{class:"tags-img",src:`/static/index/tagNames/${l}0.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font"},e.toDisplayString(t),1)])])))),128))]),e.createElementVNode("view",{style:{"margin-top":"40rpx","margin-bottom":"20rpx","margin-left":"30rpx","font-size":"32rpx"}},[e.createElementVNode("view",null," 情绪标签 ")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E.slice(5,12),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"tags-father"},[e.createElementVNode("image",{class:"tags-img",src:`/static/index/tagNames/${l+5}0.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font"},e.toDisplayString(t),1)])])))),128))]),e.createElementVNode("view",{class:"popup-say-three"})],4)],512),[[e.vShow,A.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-share",onClick:a[14]||(a[14]=e=>Ce.value=!1)},[e.createElementVNode("view",{class:"popup-share-content",style:e.normalizeStyle({opacity:Te.value?1:0}),onClick:a[13]||(a[13]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"share-other"},[e.createElementVNode("view",{class:"share-title"},[e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx"},src:"/static/index/sharelogo.png"}),e.createElementVNode("view",{style:{"font-weight":"600","margin-left":"15rpx"}}," 护理单元 ")]),e.createElementVNode("view",{class:"share-others"},[e.createElementVNode("view",{style:{"font-weight":"600","font-size":"45rpx"}}," 护理流程 "),e.createElementVNode("view",{style:{"margin-top":"30rpx"}},[e.createTextVNode(" 护理单元01 "),e.createElementVNode("text",{style:{color:"#1083F8"}}," 王金凤 ")]),e.createElementVNode("view",{class:"blue-button"}," 分享 ")])])],4)],512),[[e.vShow,Ce.value]])],4)}}}),[["__scopeId","data-v-42a31c2e"]]),ve=s(e.defineComponent({__name:"index",setup(l){e.onMounted((()=>{o.value=-1,e.nextTick((()=>o.value=0)),m.value=2,uni.getSystemInfoSync(),uni.pageScrollTo,a.value=uni.getStorageSync("realname")}));const a=e.ref("");function i(e,t,l,a="png",i=0,n=!1){return Array.from({length:l},((l,r)=>{const o=n?String(r+i).padStart(2,"0"):r+i;return`${e}/${t}${o}.${a}`}))}const r=e.ref([{url:i("/static/index/newindex/curve","home_",5,"png",1,!1),name:"首页"},{url:i("/static/index/newindex/curve","nurse_",8,"png",1,!1),name:"护嘱"},{url:i("/static/index/newindex/curve","doctor_",6,"png",1,!1),name:"医嘱"},{url:i("/static/index/newindex/curve","lead_",12,"png",1,!1),name:"请领"},{url:i("/static/index/newindex/curve","device_",7,"png",1,!1),name:"设备"}]);e.ref([{url:"/static/index/lefticon/index.png",name:"首页"},{url:"/static/index/lefticon/nurse.png",name:"护嘱"},{url:"/static/index/lefticon/doctor.png",name:"医嘱"},{url:"/static/index/lefticon/give.png",name:"请领"},{url:"/static/index/lefticon/wifi.png",name:"设备"},{url:"/static/index/lefticon/back.png",name:"返回"}]),e.ref([{url:"/static/index/lefticon/index.png",targetUrl:"/static/index/lefticontarget/blueindex.png"},{url:"/static/index/lefticon/nurse.png",targetUrl:"/static/index/lefticontarget/bluenurse.png"},{url:"/static/index/lefticon/doctor.png",targetUrl:"/static/index/lefticontarget/bluedoctor.png"},{url:"/static/index/lefticon/give.png",targetUrl:"/static/index/lefticontarget/givedark.png"},{url:"/static/index/lefticon/wifi.png",targetUrl:"/static/index/lefticontarget/bluewifi.png"},{url:"/static/index/lefticon/back.png",targetUrl:"/static/index/lefticontarget/blueback.png"}]);const o=e.ref(-1),c=e.ref(!1),s=e.ref(!1),d=e.ref(!1),m=e.ref(-1);function u(){t("TestModule").gotoNativePage({deviceId:"4",deviceName:"sdfsfsdf"})}e.ref([]),e.ref(0),e.ref(0),e.ref(0),e.ref(0),e.ref(0);const v=e=>{o.value!==e&&(o.value=e,c.value=!1,s.value=!1,setTimeout((()=>{switch(e){case 0:c.value=!0;break;case 1:s.value=!0}}),50))},p=e=>{z.value=!0,_.value=e,o.value=e,c.value=!1,s.value=!1,5!==e?setTimeout((()=>{switch(e){case 0:c.value=!0;break;case 1:s.value=!0}}),50):uni.navigateBack()},g=e.ref(0),w=e.ref(0),h=e.ref(""),f=e.ref(!0),y=e.ref({index0:999,index1:999}),x=e.ref(!0),E=uni.createAnimation({duration:0,timingFunction:"linear",delay:0}),V=e.ref({}),b=function(e,t){let l=0;return function(...a){const i=Date.now();i-l>=t&&(l=i,e.apply(this,a))}}((e=>{var t;const l=e.touches[0];g.value=2*(Math.floor(l.clientX)-100),w.value=2*(Math.floor(l.clientY)-55),E.translate3d(g.value/2,w.value/2,0).step({duration:0}),V.value=E.export();const a=Math.floor(l.clientX)-50,i=Math.floor(l.clientY)-25,n=k.value.find((e=>a>=Math.floor(e.left)&&a<=Math.floor(e.right)&&i>=Math.floor(e.top)&&i<=Math.floor(e.bottom)));if(n){const{index0:e,index1:l}=n.dataset;y.value.index0=e,y.value.index1=l,g.value<200&&x.value&&!m.value&&(null==(t=D.value)||t.nextItems(),x.value=!1,setTimeout((()=>{x.value=!0}),1e3))}else y.value.index0=999,y.value.index1=999}),40),k=e.ref([]),T=e.ref({directiveName:"",cycleType:"",positioningLong:"0",typeName:"",startTime:"",id:"",endTime:"",tagName:null}),D=e.ref(null),C=e.ref(null),S=()=>{var e,t,l;g.value=9999,w.value=9999,E.translate3d(g.value/2,w.value/2,0).step({duration:0}),V.value=E.export(),f.value=!0,y.value={index0:999,index1:999},h.value?m.value||null==(e=D.value)||e.rulerEnd(h.value):T.value.typeName&&(0===m.value?null==(t=D.value)||t.rulerMoveEnd(T.value):null==(l=C.value)||l.rulerMoveEnd(T.value)),h.value="",T.value={directiveName:"",cycleType:"",positioningLong:"0",typeName:"",startTime:"",id:"",endTime:"",tagName:null}};function B(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}n((()=>{setTimeout((()=>{p(o.value)}),50),c.value=!1,setTimeout((()=>{c.value=!0}),50)}));const z=e.ref(!0),_=e.ref(0),I=e.ref(-1),U=e.ref(!1),M=e=>{U.value=e},F=t=>{if(5===t)return U.value?(I.value=-1,void e.nextTick((()=>I.value=t))):void(z.value?uni.navigateBack():(z.value=!0,_.value=o.value));if(z.value)switch(t){case 0:_.value&&(_.value--,v(_.value));break;case 1:z.value=!1,_.value=-1;break;case 2:_.valueI.value=t))};return(t,l)=>{const a=e.resolveComponent("donghua"),i=e.resolveComponent("arrowkeys");return e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(d.value?"darkbackgroundContainer":"backgroundContainer"),onTouchmove:l[1]||(l[1]=(...t)=>e.unref(b)&&e.unref(b)(...t)),onTouchend:S},[e.withDirectives(e.createElementVNode("view",{class:"move-font",animation:V.value},e.toDisplayString(h.value),9,["animation"]),[[e.vShow,h.value&&g.value]]),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass("日常"==T.value.cycleType?"title-time-border-yellow":"title-time-border-pouple"),animation:V.value,style:{"font-size":"30rpx",overflow:"hidden"}},[e.withDirectives(e.createElementVNode("view",{class:"title-time",style:{"margin-top":"5rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(T.value.startTime+"-"+T.value.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==T.value.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(T.value.cycleType),1)],512),[[e.vShow,T.value.startTime]]),e.createElementVNode("view",{style:{"margin-top":"20rpx","font-weight":"700"}},e.toDisplayString(B(T.value.directiveName)[0]),1),e.withDirectives(e.createElementVNode("view",{class:"down-icons",style:e.normalizeStyle("日常"!=T.value.cycleType?{backgroundColor:"rgb(212,203,255)"}:{})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(B(T.value.directiveName).slice(1),((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:l},[e.createElementVNode("view",{class:"icon",style:e.normalizeStyle("日常"!=T.value.cycleType?{backgroundColor:"rgb(123,97,255)"}:{})},e.toDisplayString(B(T.value.directiveName)[1]),5)])))),128))],4),[[e.vShow,B(T.value.directiveName)[1]]])],10,["animation"]),[[e.vShow,T.value.cycleType]]),e.createElementVNode("view",{class:"left-container"},[e.createElementVNode("view",{class:"left-head",onClick:u},[e.createElementVNode("image",{class:"left-head-img",src:N}),e.createElementVNode("text",{class:e.normalizeClass(d.value?"left-head-font-dark":"left-head-font")}," 王金福 ",2)]),e.createElementVNode("view",{class:"menus-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["menu",_.value===l?"target":""]),style:e.normalizeStyle(_.value===l?{backgroundColor:"#ddf0ff"}:l===o.value?{backgroundColor:"#fff"}:{}),onClick:e=>p(l)},[e.createVNode(a,{width:"65rpx",height:"65rpx",links:t.url,playing:l===o.value},null,8,["links","playing"]),e.createElementVNode("text",{style:{"font-size":"31rpx","margin-left":"15rpx"}},e.toDisplayString(t.name),1)],14,["onClick"])))),128))])]),o.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(ce,{key:0,isShow:c.value,propsmove:I.value,isMain:z.value,onBack:l[0]||(l[0]=e=>F(5))},null,8,["isShow","propsmove","isMain"])),1==o.value&&2===m.value?(e.openBlock(),e.createBlock(ue,{key:1,isold:2===m.value,liang:y.value,isshow:s.value,propsmove:I.value,isMain:z.value,onVip:M},null,8,["isold","liang","isshow","propsmove","isMain"])):e.createCommentVNode("",!0),e.createVNode(i,{onMovecard:F})],34)}}}),[["__scopeId","data-v-8ad00f91"]]),pe=s(e.defineComponent({__name:"index",setup(t){const l=e.ref("");return(t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"请购清单")]),e.createElementVNode("view",{class:"draw-blue"}," 请购单号:A0120250301001 ")]),e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("image",{class:"swiper-card-top-img",src:"/static/index/project3.png"},null,8,["src"]),e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"}," 纸尿裤-拉拉裤 "),e.createElementVNode("view",{class:"weight-right",style:{width:"40%"}}," 采购数量:50 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-black"}," 800mm*690mm ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购单位: "),e.createElementVNode("view",{class:"swiper-black"}," 片 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 库存数量: "),e.createElementVNode("view",{class:"swiper-black"}," 50 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 库存下限: "),e.createElementVNode("view",{class:"swiper-black"}," 10 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 库存上限: "),e.createElementVNode("view",{class:"swiper-black"}," 1000 ")])])])]),e.createElementVNode("view",{class:"swiper-card-down"},[e.createElementVNode("view",{class:"down-left"},[e.createElementVNode("view",{class:"down-left-weight"}," 供应商: "),e.createElementVNode("view",{class:"down-left-font"}," 长春市永佳利商贸有限公司1 ")]),e.createElementVNode("image",{class:"delete-img",src:"/static/index/deleteIt.png"},null,8,["src"])])])]))),64))])])]),e.createElementVNode("view",{class:"down-note"},[e.withDirectives(e.createElementVNode("textarea",{class:"down-note-title-input","onUpdate:modelValue":a[0]||(a[0]=e=>l.value=e),maxlength:"300","placeholder-style":"color:#999",placeholder:"请输入备注"},null,512),[[e.vModelText,l.value]]),e.createElementVNode("text",{class:"char-count"},e.toDisplayString(l.value.length)+"/300",1)]),e.createElementVNode("view",{class:"down-button"},[e.createElementVNode("view",{class:"swiper-left-button-orange"}," 清空 "),e.createElementVNode("view",{class:"swiper-left-button-blue"}," 保存 "),e.createElementVNode("view",{class:"swiper-left-button-blue",style:{"margin-right":"40rpx"}}," 提交 ")])])]))}}),[["__scopeId","data-v-e15809eb"]]),ge=s(e.defineComponent({__name:"index",setup(t){const l=e.ref("");return(t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"请购清单")]),e.createElementVNode("view",{class:"draw-blue"}," 请购单号:A0120250301001 ")]),e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("image",{class:"swiper-card-top-img",src:"/static/index/project3.png"},null,8,["src"]),e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"}," 纸尿裤-拉拉裤 "),e.createElementVNode("view",{class:"weight-right",style:{width:"40%"}}," 采购数量:50 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-black"}," 800mm*690mm ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购单位: "),e.createElementVNode("view",{class:"swiper-black"}," 片 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 库存数量: "),e.createElementVNode("view",{class:"swiper-black"}," 50 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 库存下限: "),e.createElementVNode("view",{class:"swiper-black"}," 10 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 库存上限: "),e.createElementVNode("view",{class:"swiper-black"}," 1000 ")])])])]),e.createElementVNode("view",{class:"swiper-card-down"},[e.createElementVNode("view",{class:"down-left"},[e.createElementVNode("view",{class:"down-left-weight"}," 供应商: "),e.createElementVNode("view",{class:"down-left-font"}," 长春市永佳利商贸有限公司1 ")])])])]))),64))])])]),e.createElementVNode("view",{class:"down-note"},[e.withDirectives(e.createElementVNode("textarea",{disabled:"",class:"down-note-title-input","onUpdate:modelValue":a[0]||(a[0]=e=>l.value=e),maxlength:"300","placeholder-style":"color:#999",placeholder:"该请购单未备注"},null,512),[[e.vModelText,l.value]]),e.createElementVNode("text",{class:"char-count"},e.toDisplayString(l.value.length)+"/300",1)])])]))}}),[["__scopeId","data-v-c8dcc752"]]),we=s(e.defineComponent({__name:"index",setup(t){e.ref("");const l=e.ref(0),a=e.ref(0),i=e.ref(!1),n=e.ref(!1),r=e.ref("全部"),o=e.ref("日期从近到远"),c=e.ref([{value:0,label:"全部"},{value:1,label:"出库"},{value:2,label:"入库"}]),s=e.ref([{value:0,label:"日期从近到远"},{value:1,label:"日期从远到近"}]),d=e.ref([{name:"生活用品请领",add:-20},{name:"采购入库",add:10},{name:"生活用品请领",add:-20},{name:"生活用品请领",add:20},{name:"生活用品请领",add:-20},{name:"生活用品请领",add:100},{name:"生活用品请领",add:9999}]),m=e=>{a.value=e.detail.scrollTop.toFixed(2)};return(t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"出入库")])]),e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("image",{class:"swiper-card-top-img",src:"/static/index/project3.png"},null,8,["src"]),e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"}," 纸尿裤-拉拉裤 "),e.createElementVNode("view",{class:"weight-right",style:{"margin-right":"30rpx"}}," 当前库存:96 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"20rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 物料编码: "),e.createElementVNode("view",{class:"swiper-black"}," ZHYP044 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"20rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-black"}," 800mm*690mm ")])])])])]),e.createElementVNode("view",{class:"select-width"},[e.createElementVNode("view",{class:"select-blue",onClick:a[1]||(a[1]=e=>i.value=!i.value)},[e.createElementVNode("image",{class:"select-blue-img",src:"/static/index/warehouseCard/selectblue.png"}),e.createElementVNode("view",{class:"select-blue-font"},e.toDisplayString(r.value),1),e.createElementVNode("div",{class:"triangle-down"}),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(["dropdown-list",i.value?"open":"close"]),onClick:a[0]||(a[0]=e.withModifiers((()=>{}),["stop"]))},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["dropdown-item",t.label==r.value?"active":""]),onClick:e=>{r.value=t.label,i.value=!1}},e.toDisplayString(t.label),11,["onClick"])))),128))],2),[[e.vShow,i.value]])]),e.createElementVNode("view",{class:"select-white",onClick:a[3]||(a[3]=e=>n.value=!n.value)},[e.createElementVNode("image",{class:"select-blue-img",src:"/static/index/warehouseCard/selectwhite.png"}),e.createElementVNode("view",{class:"select-blue-font"},e.toDisplayString(o.value),1),e.createElementVNode("div",{class:"triangle-down"}),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(["dropdown-list",n.value?"open":"close"]),onClick:a[2]||(a[2]=e.withModifiers((()=>{}),["stop"]))},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["dropdown-item",t.label==o.value?"active":""]),onClick:e=>{o.value=t.label,n.value=!1}},e.toDisplayString(t.label),11,["onClick"])))),128))],2),[[e.vShow,n.value]])])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("view",{class:"scroll-view-title"},[e.createElementVNode("view",{class:"amount"}," 总计:100笔 "),e.createElementVNode("view",{class:"outhouse"},[e.createElementVNode("image",{class:"outhouse-img",src:"/static/index/warehouseCard/orangeicon.png"}),e.createElementVNode("view",{class:"outhouse-left"}," 出库: "),e.createElementVNode("view",{class:"outhouse-right"}," 50笔 ")]),e.createElementVNode("view",{class:"inhouse"},[e.createElementVNode("image",{class:"inhouse-img",src:"/static/index/warehouseCard/blueicon.png"}),e.createElementVNode("view",{class:"inhouse-left"}," 出库: "),e.createElementVNode("view",{class:"inhouse-right"}," 50笔 ")])]),e.createElementVNode("scroll-view",{"scroll-y":"","scroll-top":l.value,onScroll:m,style:{height:"770rpx","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(d.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"swiper-card-spec"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},e.toDisplayString(t.name),1),e.createElementVNode("view",{class:"weight-right",style:{color:"#59657A","font-weight":"400"}}," 摘要:服务指令 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 服务指令:生活用品请领 ")]),e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray",style:e.normalizeStyle([t.add<0?{color:"#FF6600"}:{color:"#008AFF"},{"font-weight":"700","font-size":"35rpx"}])},e.toDisplayString(t.add>0?"+"+t.add:t.add),5)])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-black"}," 2025-02-13 17:29:18 ")]),e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-black"}," 库存: "),e.createElementVNode("view",{class:"swiper-black"}," 96 ")])])])]),e.createElementVNode("view",{class:"swiper-card-down"},[e.createElementVNode("view",{class:"down-left"},[e.createElementVNode("view",{class:"down-left-weight"}," 供应商: "),e.createElementVNode("view",{class:"down-left-font"}," 长春市永佳利商贸有限公司1 ")]),e.createElementVNode("image",{class:"delete-img",src:"/static/index/deleteIt.png"},null,8,["src"])])])])))),128))])],40,["scroll-top"])])])]))}}),[["__scopeId","data-v-a22273dc"]]);const he=s({name:"u-icon",emits:["click","touchstart"],props:{name:{type:String,default:""},color:{type:[String,null],default:""},size:{type:[Number,String],default:"inherit"},bold:{type:Boolean,default:!1},index:{type:[Number,String],default:""},hoverClass:{type:String,default:""},customPrefix:{type:String,default:"uicon"},label:{type:[String,Number],default:""},labelPos:{type:String,default:"right"},labelSize:{type:[String,Number],default:"28"},labelColor:{type:String,default:"#606266"},marginLeft:{type:[String,Number],default:"6"},marginTop:{type:[String,Number],default:"6"},marginRight:{type:[String,Number],default:"6"},marginBottom:{type:[String,Number],default:"6"},imgMode:{type:String,default:"widthFix"},customStyle:{type:Object,default:()=>({})},width:{type:[String,Number],default:""},height:{type:[String,Number],default:""},top:{type:[String,Number],default:0},showDecimalIcon:{type:Boolean,default:!1},inactiveColor:{type:String,default:"#ececec"},percent:{type:[Number,String],default:"50"}},computed:{customClass(){let e=[],{customPrefix:t,name:l}=this,a=l.indexOf("-icon-");return a>-1?(t=l.substring(0,a+5),e.push(l)):e.push(`${t}-${l}`),"uicon"===t?e.push("u-iconfont"):e.push(t),this.showDecimalIcon&&this.inactiveColor&&this.$u.config.type.includes(this.inactiveColor)?e.push("u-icon__icon--"+this.inactiveColor):this.color&&this.$u.config.type.includes(this.color)&&e.push("u-icon__icon--"+this.color),e},iconStyle(){let e={};return e={fontSize:"inherit"==this.size?"inherit":this.$u.addUnit(this.size),fontWeight:this.bold?"bold":"normal",top:this.$u.addUnit(this.top)},this.showDecimalIcon&&this.inactiveColor&&!this.$u.config.type.includes(this.inactiveColor)?e.color=this.inactiveColor:this.color&&!this.$u.config.type.includes(this.color)&&(e.color=this.color),e},isImg(){return-1!==this.name.indexOf("/")},imgStyle(){let e={};return e.width=this.width?this.$u.addUnit(this.width):this.$u.addUnit(this.size),e.height=this.height?this.$u.addUnit(this.height):this.$u.addUnit(this.size),e},decimalIconStyle(){let e={};return e={fontSize:"inherit"==this.size?"inherit":this.$u.addUnit(this.size),fontWeight:this.bold?"bold":"normal",top:this.$u.addUnit(this.top),width:this.percent+"%"},this.color&&!this.$u.config.type.includes(this.color)&&(e.color=this.color),e},decimalIconClass(){let e=[];return e.push(this.customPrefix+"-"+this.name),"uicon"==this.customPrefix?e.push("u-iconfont"):e.push(this.customPrefix),this.color&&this.$u.config.type.includes(this.color)?e.push("u-icon__icon--"+this.color):e.push("u-icon__icon--primary"),e}},methods:{click(){this.$emit("click",this.index)},touchstart(){this.$emit("touchstart",this.index)}}},[["render",function(t,l,a,i,n,r){return e.openBlock(),e.createElementBlock("view",{style:e.normalizeStyle([a.customStyle]),class:e.normalizeClass(["u-icon",["u-icon--"+a.labelPos]]),onClick:l[1]||(l[1]=(...e)=>r.click&&r.click(...e))},[r.isImg?(e.openBlock(),e.createElementBlock("image",{key:0,class:"u-icon__img",src:a.name,mode:a.imgMode,style:e.normalizeStyle([r.imgStyle])},null,12,["src","mode"])):(e.openBlock(),e.createElementBlock("view",{key:1,class:e.normalizeClass(["u-icon__icon",r.customClass]),style:e.normalizeStyle([r.iconStyle]),"hover-class":a.hoverClass,onTouchstart:l[0]||(l[0]=(...e)=>r.touchstart&&r.touchstart(...e))},[a.showDecimalIcon?(e.openBlock(),e.createElementBlock("text",{key:0,style:e.normalizeStyle([r.decimalIconStyle]),class:e.normalizeClass([r.decimalIconClass,"u-icon__decimal"]),"hover-class":a.hoverClass},null,14,["hover-class"])):e.createCommentVNode("",!0)],46,["hover-class"])),""!==a.label&&null!==a.label?(e.openBlock(),e.createElementBlock("text",{key:2,class:"u-icon__label",style:e.normalizeStyle({color:a.labelColor,fontSize:t.$u.addUnit(a.labelSize),marginLeft:"right"==a.labelPos?t.$u.addUnit(a.marginLeft):0,marginTop:"bottom"==a.labelPos?t.$u.addUnit(a.marginTop):0,marginRight:"left"==a.labelPos?t.$u.addUnit(a.marginRight):0,marginBottom:"top"==a.labelPos?t.$u.addUnit(a.marginBottom):0})},e.toDisplayString(a.label),5)):e.createCommentVNode("",!0)],6)}],["__scopeId","data-v-32e6a46e"]]);const fe=s({name:"u-button",emits:["click","getphonenumber","getuserinfo","error","opensetting","launchapp","chooseavatar"],props:{hairLine:{type:Boolean,default:!0},type:{type:String,default:"default"},size:{type:String,default:"default"},shape:{type:String,default:"square"},plain:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},openType:{type:String,default:""},formType:{type:String,default:""},appParameter:{type:String,default:""},hoverStopPropagation:{type:Boolean,default:!1},lang:{type:String,default:"en"},sessionFrom:{type:String,default:""},sendMessageTitle:{type:String,default:""},sendMessagePath:{type:String,default:""},sendMessageImg:{type:String,default:""},showMessageCard:{type:Boolean,default:!1},hoverBgColor:{type:String,default:""},rippleBgColor:{type:String,default:""},ripple:{type:Boolean,default:!1},hoverClass:{type:String,default:""},customStyle:{type:Object,default:()=>({})},dataName:{type:String,default:""},throttleTime:{type:[String,Number],default:500},hoverStartTime:{type:[String,Number],default:20},hoverStayTime:{type:[String,Number],default:150},timerId:{type:[String,Number]}},computed:{getHoverClass(){if(this.loading||this.disabled||this.ripple||this.hoverClass)return"";let e="";return e=this.plain?"u-"+this.type+"-plain-hover":"u-"+this.type+"-hover",e},showHairLineBorder(){return["primary","success","error","warning"].indexOf(this.type)>=0&&!this.plain?"":"u-hairline-border"}},data(){return{btnTimerId:this.timerId||"button_"+Math.floor(1e8*Math.random()+0),rippleTop:0,rippleLeft:0,fields:{},waveActive:!1}},methods:{click(e){this.$u.throttle((()=>{!0!==this.loading&&!0!==this.disabled&&(this.ripple&&(this.waveActive=!1,this.$nextTick((function(){this.getWaveQuery(e)}))),this.$emit("click",e))}),this.throttleTime,!0,this.btnTimerId)},getWaveQuery(e){this.getElQuery().then((t=>{let l=t[0];if(!l.width||!l.width)return;if(l.targetWidth=l.height>l.width?l.height:l.width,!l.targetWidth)return;this.fields=l;let a="",i="";a=e.touches[0].clientX,i=e.touches[0].clientY,this.rippleTop=i-l.top-l.targetWidth/2,this.rippleLeft=a-l.left-l.targetWidth/2,this.$nextTick((()=>{this.waveActive=!0}))}))},getElQuery(){return new Promise((e=>{let t="";t=uni.createSelectorQuery().in(this),t.select(".u-btn").boundingClientRect(),t.exec((t=>{e(t)}))}))},getphonenumber(e){this.$emit("getphonenumber",e)},getuserinfo(e){this.$emit("getuserinfo",e)},error(e){this.$emit("error",e)},opensetting(e){this.$emit("opensetting",e)},launchapp(e){this.$emit("launchapp",e)},chooseavatar(e){this.$emit("chooseavatar",e)}}},[["render",function(t,l,a,i,n,r){return e.openBlock(),e.createElementBlock("button",{id:"u-wave-btn",class:e.normalizeClass(["u-btn u-line-1 u-fix-ios-appearance",["u-size-"+a.size,a.plain?"u-btn--"+a.type+"--plain":"",a.loading?"u-loading":"","circle"==a.shape?"u-round-circle":"",a.hairLine?r.showHairLineBorder:"u-btn--bold-border","u-btn--"+a.type,a.disabled?`u-btn--${a.type}--disabled`:""]]),"hover-start-time":Number(a.hoverStartTime),"hover-stay-time":Number(a.hoverStayTime),disabled:a.disabled,"form-type":a.formType,"open-type":a.openType,"app-parameter":a.appParameter,"hover-stop-propagation":a.hoverStopPropagation,"send-message-title":a.sendMessageTitle,"send-message-path":"sendMessagePath",lang:a.lang,"data-name":a.dataName,"session-from":a.sessionFrom,"send-message-img":a.sendMessageImg,"show-message-card":a.showMessageCard,onGetphonenumber:l[0]||(l[0]=(...e)=>r.getphonenumber&&r.getphonenumber(...e)),onGetuserinfo:l[1]||(l[1]=(...e)=>r.getuserinfo&&r.getuserinfo(...e)),onError:l[2]||(l[2]=(...e)=>r.error&&r.error(...e)),onOpensetting:l[3]||(l[3]=(...e)=>r.opensetting&&r.opensetting(...e)),onLaunchapp:l[4]||(l[4]=(...e)=>r.launchapp&&r.launchapp(...e)),onChooseavatar:l[5]||(l[5]=(...e)=>r.chooseavatar&&r.chooseavatar(...e)),style:e.normalizeStyle([a.customStyle,{overflow:a.ripple?"hidden":"visible"}]),onClick:l[6]||(l[6]=e.withModifiers((e=>r.click(e)),["stop"])),"hover-class":r.getHoverClass,loading:a.loading},[e.renderSlot(t.$slots,"default",{},void 0,!0),a.ripple?(e.openBlock(),e.createElementBlock("view",{key:0,class:e.normalizeClass(["u-wave-ripple",[n.waveActive?"u-wave-active":""]]),style:e.normalizeStyle({top:n.rippleTop+"px",left:n.rippleLeft+"px",width:n.fields.targetWidth+"px",height:n.fields.targetWidth+"px","background-color":a.rippleBgColor||"rgba(0, 0, 0, 0.15)"})},null,6)):e.createCommentVNode("",!0)],46,["hover-start-time","hover-stay-time","disabled","form-type","open-type","app-parameter","hover-stop-propagation","send-message-title","lang","data-name","session-from","send-message-img","show-message-card","hover-class","loading"])}],["__scopeId","data-v-942515d8"]]);const Ne=s({name:"u-mask",emits:["click"],props:{show:{type:Boolean,default:!1},zIndex:{type:[Number,String],default:""},customStyle:{type:Object,default:()=>({})},zoom:{type:Boolean,default:!0},duration:{type:[Number,String],default:300},maskClickAble:{type:Boolean,default:!0},blur:{type:[Number,String],default:0}},data:()=>({zoomStyle:{transform:""},scale:"scale(1.2, 1.2)"}),watch:{show(e){e&&this.zoom?this.zoomStyle.transform="scale(1, 1)":!e&&this.zoom&&(this.zoomStyle.transform=this.scale)}},computed:{maskStyle(){let e={backgroundColor:"rgba(0, 0, 0, 0.6)"};return this.show?e.zIndex=this.zIndex?this.zIndex:this.$u.zIndex.mask:e.zIndex=-1,e.transition=`all ${this.duration/1e3}s ease-in-out`,Object.keys(this.customStyle).length&&(e={...e,...this.customStyle}),e},filterStyle(){let{blur:e}=this,t={};return e&&(t.backdropFilter=`blur(${e}rpx)`),t}},methods:{click(){this.maskClickAble&&this.$emit("click")}}},[["render",function(t,l,a,i,n,r){return e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["u-mask",{"u-mask-zoom":a.zoom,"u-mask-show":a.show}]),"hover-stop-propagation":"",style:e.normalizeStyle([r.maskStyle,n.zoomStyle,r.filterStyle]),onClick:l[0]||(l[0]=(...e)=>r.click&&r.click(...e)),onTouchmove:e.withModifiers((()=>{}),["stop","prevent"])},[e.renderSlot(t.$slots,"default",{},void 0,!0)],38)}],["__scopeId","data-v-005d3602"]]);const ye=s({name:"u-popup",emits:["update:modelValue","input","open","close"],props:{value:{type:Boolean,default:!1},modelValue:{type:Boolean,default:!1},show:{type:Boolean,default:!1},mode:{type:String,default:"left"},mask:{type:Boolean,default:!0},length:{type:[Number,String],default:"auto"},zoom:{type:Boolean,default:!0},safeAreaInsetBottom:{type:Boolean,default:!1},maskCloseAble:{type:Boolean,default:!0},customStyle:{type:Object,default:()=>({})},popup:{type:Boolean,default:!0},borderRadius:{type:[Number,String],default:0},zIndex:{type:[Number,String],default:""},closeable:{type:Boolean,default:!1},closeIcon:{type:String,default:"close"},closeIconPos:{type:String,default:"top-right"},closeIconColor:{type:String,default:"#909399"},closeIconSize:{type:[String,Number],default:"30"},width:{type:String,default:""},height:{type:String,default:""},negativeTop:{type:[String,Number],default:0},maskCustomStyle:{type:Object,default:()=>({})},duration:{type:[String,Number],default:250},blur:{type:[String,Number],default:0}},data:()=>({visibleSync:!1,showDrawer:!1,timer:null,closeFromInner:!1}),computed:{valueCom(){return this.modelValue},style(){let e={};if("left"==this.mode||"right"==this.mode?e={width:this.width?this.getUnitValue(this.width):this.getUnitValue(this.length),height:"100%",transform:`translate3D(${"left"==this.mode?"-100%":"100%"},0px,0px)`}:"top"!=this.mode&&"bottom"!=this.mode||(e={width:"100%",height:this.height?this.getUnitValue(this.height):this.getUnitValue(this.length),transform:`translate3D(0px,${"top"==this.mode?"-100%":"100%"},0px)`}),e.zIndex=this.uZindex,this.borderRadius){switch(this.mode){case"left":e.borderRadius=`0 ${this.borderRadius}rpx ${this.borderRadius}rpx 0`;break;case"top":e.borderRadius=`0 0 ${this.borderRadius}rpx ${this.borderRadius}rpx`;break;case"right":e.borderRadius=`${this.borderRadius}rpx 0 0 ${this.borderRadius}rpx`;break;case"bottom":e.borderRadius=`${this.borderRadius}rpx ${this.borderRadius}rpx 0 0`}e.overflow="hidden"}return this.duration&&(e.transition=`all ${this.duration/1e3}s linear`),e},centerStyle(){let e={};return e.width=this.width?this.getUnitValue(this.width):this.getUnitValue(this.length),e.height=this.height?this.getUnitValue(this.height):"auto",e.zIndex=this.uZindex,e.marginTop=`-${this.$u.addUnit(this.negativeTop)}`,this.borderRadius&&(e.borderRadius=`${this.borderRadius}rpx`,e.overflow="hidden"),e},uZindex(){return this.zIndex?this.zIndex:this.$u.zIndex.popup}},watch:{valueCom:{handler(e){e?this.open():this.closeFromInner||this.close(),this.closeFromInner=!1}}},mounted(){this.valueCom&&this.open()},methods:{getUnitValue:e=>/(%|px|rpx|auto)$/.test(e)?e:e+"rpx",maskClick(){this.close()},close(){this.closeFromInner=!0,this.change("showDrawer","visibleSync",!1)},modeCenterClose(e){"center"==e&&this.maskCloseAble&&this.close()},open(){this.change("visibleSync","showDrawer",!0)},change(e,t,l){1==this.popup&&(this.$emit("input",l),this.$emit("update:modelValue",l)),this[e]=l,l?this.$nextTick((()=>{this[t]=l,this.$emit(l?"open":"close")})):this.timer=setTimeout((()=>{this[t]=l,this.$emit(l?"open":"close")}),this.duration)}}},[["render",function(t,l,i,n,r,o){const c=a(e.resolveDynamicComponent("u-mask"),Ne),s=a(e.resolveDynamicComponent("u-icon"),he);return r.visibleSync?(e.openBlock(),e.createElementBlock("view",{key:0,style:e.normalizeStyle([i.customStyle,{zIndex:o.uZindex-1}]),class:"u-drawer","hover-stop-propagation":""},[e.createVNode(c,{blur:i.blur,duration:i.duration,"custom-style":i.maskCustomStyle,maskClickAble:i.maskCloseAble,"z-index":o.uZindex-2,show:r.showDrawer&&i.mask,onClick:o.maskClick},null,8,["blur","duration","custom-style","maskClickAble","z-index","show","onClick"]),e.createElementVNode("view",{class:e.normalizeClass(["u-drawer-content",[i.safeAreaInsetBottom?"safe-area-inset-bottom":"","u-drawer-"+i.mode,r.showDrawer?"u-drawer-content-visible":"",i.zoom&&"center"==i.mode?"u-animation-zoom":""]]),onClick:l[3]||(l[3]=e=>o.modeCenterClose(i.mode)),onTouchmove:l[4]||(l[4]=e.withModifiers((()=>{}),["stop","prevent"])),style:e.normalizeStyle([o.style])},["center"==i.mode?(e.openBlock(),e.createElementBlock("view",{key:0,class:"u-mode-center-box",onClick:l[0]||(l[0]=e.withModifiers((()=>{}),["stop","prevent"])),onTouchmove:l[1]||(l[1]=e.withModifiers((()=>{}),["stop","prevent"])),style:e.normalizeStyle([o.centerStyle])},[i.closeable?(e.openBlock(),e.createBlock(s,{key:0,onClick:o.close,class:e.normalizeClass(["u-close",["u-close--"+i.closeIconPos]]),name:i.closeIcon,color:i.closeIconColor,size:i.closeIconSize},null,8,["onClick","class","name","color","size"])):e.createCommentVNode("",!0),e.createElementVNode("scroll-view",{class:"u-drawer__scroll-view","scroll-y":"true"},[e.renderSlot(t.$slots,"default",{},void 0,!0)])],36)):(e.openBlock(),e.createElementBlock("scroll-view",{key:1,class:"u-drawer__scroll-view","scroll-y":"true"},[e.renderSlot(t.$slots,"default",{},void 0,!0)])),e.createElementVNode("view",{onClick:l[2]||(l[2]=(...e)=>o.close&&o.close(...e)),class:e.normalizeClass(["u-close",["u-close--"+i.closeIconPos]])},["center"!=i.mode&&i.closeable?(e.openBlock(),e.createBlock(s,{key:0,name:i.closeIcon,color:i.closeIconColor,size:i.closeIconSize},null,8,["name","color","size"])):e.createCommentVNode("",!0)],2)],38)],4)):e.createCommentVNode("",!0)}],["__scopeId","data-v-98075be7"]]);const xe=s({name:"u-calendar",emits:["update:modelValue","input","change"],props:{value:{type:Boolean,default:!1},modelValue:{type:Boolean,default:!1},safeAreaInsetBottom:{type:Boolean,default:!1},maskCloseAble:{type:Boolean,default:!0},zIndex:{type:[String,Number],default:0},changeYear:{type:Boolean,default:!0},changeMonth:{type:Boolean,default:!0},mode:{type:String,default:"date"},maxYear:{type:[Number,String],default:2050},minYear:{type:[Number,String],default:1950},minDate:{type:[Number,String],default:"1950-01-01"},maxDate:{type:[Number,String],default:""},borderRadius:{type:[String,Number],default:20},monthArrowColor:{type:String,default:"#606266"},yearArrowColor:{type:String,default:"#909399"},color:{type:String,default:"#303133"},activeBgColor:{type:String,default:"#2979ff"},activeColor:{type:String,default:"#ffffff"},rangeBgColor:{type:String,default:"rgba(41,121,255,0.13)"},rangeColor:{type:String,default:"#2979ff"},startText:{type:String,default:"开始"},endText:{type:String,default:"结束"},btnType:{type:String,default:"primary"},isActiveCurrent:{type:Boolean,default:!0},isChange:{type:Boolean,default:!1},closeable:{type:Boolean,default:!0},toolTip:{type:String,default:"选择日期"},blur:{type:[Number,String],default:0},confirmText:{type:String,default:"确定"},toText:{type:String,default:"至"},yearText:{type:String,default:"年"},monthText:{type:String,default:"月"}},data:()=>({popupValue:!1,weekday:1,weekdayArr:[],days:0,daysArr:[],showTitle:"",year:2020,month:0,day:0,startYear:0,startMonth:0,startDay:0,endYear:0,endMonth:0,endDay:0,today:"",activeDate:"",startDate:"",endDate:"",isStart:!0,min:null,max:null,weekDayZh:["日","一","二","三","四","五","六"]}),computed:{valueCom(){return this.modelValue},dataChange(){return`${this.mode}-${this.minDate}-${this.maxDate}`},uZIndex(){return this.zIndex?this.zIndex:this.$u.zIndex.popup}},watch:{dataChange(e){this.init()},valueCom:{immediate:!0,handler(e){this.popupValue=e}}},created(){this.init()},methods:{getColor(e,t){let l=1==t?"":this.color,a=e+1,i=`${this.year}-${this.month}-${a}`,n=new Date(i.replace(/\-/g,"/")).getTime(),r=this.startDate.replace(/\-/g,"/"),o=this.endDate.replace(/\-/g,"/");return this.isActiveCurrent&&this.activeDate==i||this.startDate==i||this.endDate==i?l=1==t?null:this.activeColor:this.endDate&&n>new Date(r).getTime()&&n=new Date(n).getTime()&&o<=new Date(r).getTime()&&(a=!1),a},generateArray:function(e,t){return Array.from(new Array(t+1).keys()).slice(e)},formatNum:function(e){return e<10?"0"+e:e+""},getMonthDay:(e,t)=>new Date(e,t,0).getDate(),getWeekday:(e,t)=>new Date(`${e}/${t}/01 00:00:00`).getDay(),checkRange(e){let t=!1;return(ethis.maxYear)&&(uni.showToast({title:"日期超出范围啦~",icon:"none"}),t=!0),t},changeMonthHandler(e){if(e){let e=this.month+1,t=e>12?this.year+1:this.year;this.checkRange(t)||(this.month=e>12?1:e,this.year=t,this.changeData())}else{let e=this.month-1,t=e<1?this.year-1:this.year;this.checkRange(t)||(this.month=e<1?12:e,this.year=t,this.changeData())}},changeYearHandler(e){let t=e?this.year+1:this.year-1;this.checkRange(t)||(this.year=t,this.changeData())},changeData(){this.days=this.getMonthDay(this.year,this.month),this.daysArr=this.generateArray(1,this.days),this.weekday=this.getWeekday(this.year,this.month),this.weekdayArr=this.generateArray(1,this.weekday),this.showTitle=`${this.year}${this.yearText}${this.month}${this.monthText}`,this.isChange&&"date"==this.mode&&this.btnFix(!0)},dateClick:function(e){if(e+=1,!this.openDisAbled(this.year,this.month,e)){this.day=e;let t=`${this.year}-${this.month}-${e}`;if("date"==this.mode)this.activeDate=t;else{let e=new Date(t.replace(/\-/g,"/")).getTime()"星期"+["日","一","二","三","四","五","六"][(e=new Date(`${e.replace(/\-/g,"/")} 00:00:00`)).getDay()],btnFix(e){if(e||this.close(),"date"==this.mode){let e=this.activeDate.split("-"),t=this.isChange?this.year:Number(e[0]),l=this.isChange?this.month:Number(e[1]),a=this.isChange?this.day:Number(e[2]),i=this.getMonthDay(t,l),n=`${t}-${this.formatNum(l)}-${this.formatNum(a)}`,r=this.getWeekText(n),o=!1;`${t}-${l}-${a}`==this.today&&(o=!0),this.$emit("change",{year:t,month:l,day:a,days:i,result:n,week:r,isToday:o})}else{if(!this.startDate||!this.endDate)return;let e=this.formatNum(this.startMonth),t=this.formatNum(this.startDay),l=`${this.startYear}-${e}-${t}`,a=this.getWeekText(l),i=this.formatNum(this.endMonth),n=this.formatNum(this.endDay),r=`${this.endYear}-${i}-${n}`,o=this.getWeekText(r);this.$emit("change",{startYear:this.startYear,startMonth:this.startMonth,startDay:this.startDay,startDate:l,startWeek:a,endYear:this.endYear,endMonth:this.endMonth,endDay:this.endDay,endDate:r,endWeek:o})}}}},[["render",function(t,l,i,n,r,o){const c=a(e.resolveDynamicComponent("u-icon"),he),s=a(e.resolveDynamicComponent("u-button"),fe),d=a(e.resolveDynamicComponent("u-popup"),ye);return e.openBlock(),e.createBlock(d,{blur:i.blur,closeable:"",maskCloseAble:i.maskCloseAble,mode:"bottom",popup:!1,modelValue:r.popupValue,"onUpdate:modelValue":l[5]||(l[5]=e=>r.popupValue=e),length:"auto",safeAreaInsetBottom:i.safeAreaInsetBottom,onClose:o.close,"z-index":o.uZIndex,"border-radius":i.borderRadius},{default:e.withCtx((()=>[e.createElementVNode("view",{class:"u-calendar"},[e.createElementVNode("view",{class:"u-calendar__action u-flex u-row-center"},[e.createElementVNode("view",{class:"u-calendar__action__icon"},[i.changeYear?(e.openBlock(),e.createBlock(c,{key:0,name:"arrow-left-double",color:i.yearArrowColor,onClick:l[0]||(l[0]=e=>o.changeYearHandler(0))},null,8,["color"])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"u-calendar__action__icon"},[i.changeMonth?(e.openBlock(),e.createBlock(c,{key:0,name:"arrow-left",color:i.monthArrowColor,onClick:l[1]||(l[1]=e=>o.changeMonthHandler(0))},null,8,["color"])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"u-calendar__action__text"},e.toDisplayString(r.showTitle),1),e.createElementVNode("view",{class:"u-calendar__action__icon"},[i.changeMonth?(e.openBlock(),e.createBlock(c,{key:0,name:"arrow-right",color:i.monthArrowColor,onClick:l[2]||(l[2]=e=>o.changeMonthHandler(1))},null,8,["color"])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"u-calendar__action__icon"},[i.changeYear?(e.openBlock(),e.createBlock(c,{key:0,name:"arrow-right-double",color:i.yearArrowColor,onClick:l[3]||(l[3]=e=>o.changeYearHandler(1))},null,8,["color"])):e.createCommentVNode("",!0)])]),e.createElementVNode("view",{class:"u-calendar__week-day"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.weekDayZh,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"u-calendar__week-day__text",key:l},e.toDisplayString(t),1)))),128))]),e.createElementVNode("view",{class:"u-calendar__content"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.weekdayArr,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"u-calendar__content__item"})))),128)),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.daysArr,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["u-calendar__content__item",{"u-hover-class":o.openDisAbled(r.year,r.month,l+1),"u-calendar__content--start-date":"range"==i.mode&&r.startDate==`${r.year}-${r.month}-${l+1}`||"date"==i.mode,"u-calendar__content--end-date":"range"==i.mode&&r.endDate==`${r.year}-${r.month}-${l+1}`||"date"==i.mode}]),style:e.normalizeStyle([o.getStyle(l),{"border-radius":"30rpx"}]),key:l,onClick:e=>o.dateClick(l)},[e.createElementVNode("view",{class:"u-calendar__content__item__inner",style:e.normalizeStyle({color:o.getColor(l,2)})},[e.createElementVNode("view",null,e.toDisplayString(l+1),1)],4),"range"==i.mode&&r.startDate==`${r.year}-${r.month}-${l+1}`&&r.startDate!=r.endDate?(e.openBlock(),e.createElementBlock("view",{key:0,class:"u-calendar__content__item__tips",style:e.normalizeStyle({color:i.activeColor})},e.toDisplayString(i.startText),5)):e.createCommentVNode("",!0),"range"==i.mode&&r.endDate==`${r.year}-${r.month}-${l+1}`?(e.openBlock(),e.createElementBlock("view",{key:1,class:"u-calendar__content__item__tips",style:e.normalizeStyle({color:i.activeColor})},e.toDisplayString(i.endText),5)):e.createCommentVNode("",!0)],14,["onClick"])))),128)),e.createElementVNode("view",{class:"u-calendar__content__bg-month"},e.toDisplayString(r.month),1)]),e.createElementVNode("view",{class:"u-calendar__bottom"},[e.createElementVNode("view",{class:"u-calendar__bottom__choose"},[e.createElementVNode("text",null,e.toDisplayString("date"==i.mode?r.activeDate:r.startDate),1),r.endDate?(e.openBlock(),e.createElementBlock("text",{key:0},e.toDisplayString(i.toText)+e.toDisplayString(r.endDate),1)):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"u-calendar__bottom__btn"},[e.createVNode(s,{type:i.btnType,shape:"circle",size:"default",onClick:l[4]||(l[4]=e=>o.btnFix(!1)),disabled:"range"==i.mode&&!r.endDate},{default:e.withCtx((()=>[e.createTextVNode(e.toDisplayString(i.confirmText),1)])),_:1},8,["type","disabled"])])])])])),_:1},8,["blur","maskCloseAble","modelValue","safeAreaInsetBottom","onClose","z-index","border-radius","closeable"])}],["__scopeId","data-v-d354e4bf"]]),Ee=s(e.defineComponent({__name:"index",emits:["opendetail"],setup(t,{emit:l}){e.ref("");const i=e.ref(!1),n=e.ref(""),r=e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]),o=l,c=e=>{n.value=e.result},s=()=>{o("opendetail")};return(t,l)=>{const o=a(e.resolveDynamicComponent("u-calendar"),xe);return e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"index-right-height"}),e.createElementVNode("view",{class:"index-right-title"},[e.createElementVNode("view",{class:"index-right-name"}," 请购单号: "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入请购单号"}),e.createElementVNode("view",{class:"index-right-name"}," 请购人: "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入请购人"}),e.createElementVNode("view",{class:"index-right-name"}," 请购日期: "),e.createElementVNode("view",{onClick:l[0]||(l[0]=e.withModifiers((e=>i.value=!0),["stop"]))},[e.createElementVNode("view",{class:"index-right-input",style:e.normalizeStyle([{width:"300rpx",height:"66rpx"},n.value?{}:{color:"#999"}])},e.toDisplayString(n.value?n.value:"请输入请购日期"),5)]),e.createVNode(o,{style:{width:"40%","margin-left":"30%"},"border-radius":"40",modelValue:i.value,"onUpdate:modelValue":l[1]||(l[1]=e=>i.value=e),mode:"date",onChange:c},null,8,["modelValue"]),e.createElementVNode("view",{class:"index-right-button-all"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"index-right-button"},[e.createElementVNode("image",{class:"index-right-button-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"index-right-button-font"},e.toDisplayString(t.name),1)])])))),128))])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"请购单号"),e.createElementVNode("view",{class:"blue-number"},"A0120250301001")]),e.createElementVNode("view",{class:"index-right-button-blue",onClick:s}," 详情 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 请购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.01 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 请购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")])])])])])]))),64))])])])])])}}}),[["__scopeId","data-v-cb386bfb"]]),Ve=s({__name:"ball",props:{isShow:{type:Boolean,required:!0}},emits:["clickBall"],setup(t,{emit:l}){const a=l,i=e.ref(1090),n=e.ref(120),r=e.ref(!1);let o=0,c=0,s=0,d=0,m=null,u=0,v=0;function p(e){const t=e.touches[0];o=t.clientX.toFixed(2),c=t.clientY.toFixed(2),s=i.value,d=n.value,m=setTimeout((()=>{r.value=!0}),300)}function g(e){if(!r.value){const t=e.touches[0],l=Math.abs(t.clientX.toFixed(2)-o),a=Math.abs(t.clientY.toFixed(2)-c);(l>5||a>5)&&(clearTimeout(m),r.value=!0)}if(r.value){const t=e.touches[0];let l=s+(t.clientX.toFixed(2)-o),a=d+(t.clientY.toFixed(2)-c);l=Math.max(0,Math.min(l,u-60)),a=Math.max(0,Math.min(a,v-60)),i.value=l,n.value=a}}function w(e){clearTimeout(m),r.value?r.value=!1:a("clickBall")}return e.onMounted((()=>{const e=uni.getSystemInfoSync();u=e.windowWidth,v=e.windowHeight})),(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"floating-ball",style:e.normalizeStyle({left:i.value+"px",top:n.value+"px"}),onTouchstart:p,onTouchmove:g,onTouchend:w,onTouchcancel:w},[e.createElementVNode("image",{class:"floating-ball-img",src:"/static/index/caigouqingdan.png"})],36)),[[e.vShow,t.isShow]])}},[["__scopeId","data-v-5147ae32"]]),be=s(e.defineComponent({__name:"info",emits:["qinggou","churuku"],setup(t,{emit:l}){const a=l,i=e=>{a(e)};return(t,l)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("view",{class:"popup-detail-left"},[e.createElementVNode("view",{class:"popup-detail-left-white"},[e.createElementVNode("image",{class:"popup-detail-left-white-img",src:"/static/index/project3.png"},null,8,["src"])]),e.createElementVNode("view",{class:"popup-detail-left-bottom"},[e.createElementVNode("view",{class:"popup-small-card"},[e.createElementVNode("view",{class:"popup-small-circle"},[e.createElementVNode("image",{class:"popup-small-circle-img",src:"/static/index/saveUp.png"})]),e.createElementVNode("view",{class:"popup-small-number"},"1000"),e.createElementVNode("view",{class:"popup-small-font"},"库存上限")]),e.createElementVNode("view",{class:"popup-small-shu"}),e.createElementVNode("view",{class:"popup-small-card"},[e.createElementVNode("view",{class:"popup-small-circle"},[e.createElementVNode("image",{class:"popup-small-circle-img",src:"/static/index/saveDown.png"})]),e.createElementVNode("view",{class:"popup-small-number"},"10"),e.createElementVNode("view",{class:"popup-small-font"},"库存下限")]),e.createElementVNode("view",{class:"popup-small-shu"}),e.createElementVNode("view",{class:"popup-small-card"},[e.createElementVNode("view",{class:"popup-small-circle"},[e.createElementVNode("image",{class:"popup-small-circle-img",src:"/static/index/saveNumber.png"})]),e.createElementVNode("view",{class:"popup-small-number"},"50"),e.createElementVNode("view",{class:"popup-small-font"},"库存数量")])])]),e.createElementVNode("view",{class:"popup-detail-right"},[e.createElementVNode("view",{class:"popup-detail-title"},[e.createElementVNode("view",{class:"popup-detail-weight"}," 纸尿裤-拉拉裤 "),e.createElementVNode("view",{class:"popup-detail-gray"}," ZHYP044 ")]),e.createElementVNode("view",{class:"popup-weight"}," 物料分类 "),e.createElementVNode("view",{class:"popup-right-father"},[e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 物料类别: "),e.createElementVNode("view",{class:"popup-font-right"}," 生活用品 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 物料类型: "),e.createElementVNode("view",{class:"popup-font-right"}," 照护用品 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 物料类别: "),e.createElementVNode("view",{class:"popup-font-right"}," - ")])]),e.createElementVNode("view",{class:"popup-weight"}," 物料信息 "),e.createElementVNode("view",{class:"popup-right-father"},[e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 物料品牌: "),e.createElementVNode("view",{class:"popup-font-right"}," 洁奴 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 采购单位: "),e.createElementVNode("view",{class:"popup-font-right"}," 片 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 参考单价: "),e.createElementVNode("view",{class:"popup-font-right"}," 1.175 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 采购单价: "),e.createElementVNode("view",{class:"popup-font-right"}," 2 ")]),e.createElementVNode("view",{class:"popup-right-font-contain",style:{width:"100%"}},[e.createElementVNode("view",{class:"popup-font-left"}," 规格型号: "),e.createElementVNode("view",{class:"popup-font-right"}," 800mm*690mm ")]),e.createElementVNode("view",{class:"popup-right-font-contain",style:{width:"100%"}},[e.createElementVNode("view",{class:"popup-font-left"}," 供 应 商 : "),e.createElementVNode("view",{class:"popup-font-right"}," 山东恒发卫生用品有限公司 ")])]),e.createElementVNode("view",{class:"popup-weight"}," 优惠信息 "),e.createElementVNode("view",{class:"popup-right-father"},[e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 医保报销: "),e.createElementVNode("view",{class:"popup-font-right"}," 是 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 机构优惠: "),e.createElementVNode("view",{class:"popup-font-right"}," 否 ")])]),e.createElementVNode("view",{class:"swiper-left-buttons-big"},[e.createElementVNode("view",{class:"swiper-left-button-blue",onClick:l[0]||(l[0]=e=>i("qinggou"))}," 请购 "),e.createElementVNode("view",{class:"swiper-left-button",onClick:l[1]||(l[1]=e=>i("churuku"))}," 出入库 ")])])],64))}}),[["__scopeId","data-v-a77dd54e"]]),ke=s(e.defineComponent({__name:"plsbuy",props:{saveIndex:{type:Number,required:!0},changeNumber:{type:Number,required:!0}},emits:["closeIt","openRight","closeRight"],setup(t,{emit:l}){const a=l,i=t;e.watch((()=>i.changeNumber),(()=>{o.value[i.saveIndex].many=i.changeNumber})),e.ref(50);const n=e.ref(0),r=e.ref({name:"长春市永佳利商贸有限公司",many:0,change:0}),o=e.ref([{name:"长春市永佳利商贸有限公司",many:9999,change:0},{name:"长春市永佳利商贸有限公司",many:0,change:0},{name:"长春市永佳利商贸有限公司",many:0,change:0}]),c=()=>{d(),m.value&&(o.value.push(JSON.parse(JSON.stringify(r.value))),n.value=998,e.nextTick((()=>{n.value=999})))},s=()=>{d(),a("closeIt")},d=()=>{a("closeRight")},m=e.ref(!0);return(l,i)=>(e.openBlock(),e.createElementBlock("view",{class:"plsbuy-contain"},[e.createElementVNode("view",{class:"plsbuy-title"},[e.createElementVNode("image",{class:"plsbuy-title-img",src:"/static/index/project3.png"},null,8,["src"]),e.createElementVNode("view",{class:"plsbuy-title-font"},[e.createElementVNode("view",{class:"plsbuy-title-weight"},"纸尿裤-拉拉裤"),e.createElementVNode("view",{class:"plsbuy-title-flex"},[e.createElementVNode("view",{class:"popup-right-font-contain",style:{width:"75%"}},[e.createElementVNode("view",{class:"popup-font-left"}," 规格型号: "),e.createElementVNode("view",{class:"popup-font-right"}," 800mm*690mm ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 采购单位: "),e.createElementVNode("view",{class:"popup-font-right"}," 片 ")])]),e.createElementVNode("view",{class:"plsbuy-title-flex"},[e.createElementVNode("view",{class:"popup-right-font-contain",style:{width:"75%"}},[e.createElementVNode("view",{class:"popup-font-left"}," 库存上限: "),e.createElementVNode("view",{class:"popup-font-right"}," 1000 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 库存下限: "),e.createElementVNode("view",{class:"popup-font-right"}," 10 ")])]),e.createElementVNode("view",{class:"plsbuy-title-flex"},[e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 库存数量: "),e.createElementVNode("view",{class:"popup-font-right"}," 50 ")])])])]),e.createElementVNode("view",{class:"plsbuy-card"},[e.createElementVNode("scroll-view",{"scroll-y":"","scroll-top":n.value,style:{height:"100%",width:"1150rpx"},"show-scrollbar":!0},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.value,((l,i)=>(e.openBlock(),e.createElementBlock("view",{key:i,class:e.normalizeClass(["plsbuy-card-heng",{"slide-out":l.sliding}])},[e.createElementVNode("view",{class:"card-flex"},[e.createElementVNode("image",{class:"plsbuy-card-img",src:"/static/index/subtract.png",onClick:e=>{return t=i,d(),void(m.value&&(m.value=!1,o.value[t].sliding=!0,setTimeout((()=>{o.value.splice(t,1),m.value=!0}),400)));var t}},null,8,["onClick"]),e.createElementVNode("view",{class:"plsbuy-weight"},"供应商:"),e.createElementVNode("view",{class:"plsbuy-font-right"},e.toDisplayString(l.name),1)]),e.createElementVNode("view",{class:"card-flex"},[e.createElementVNode("view",{class:"plsbuy-right-weight"},"采购数量"),e.createElementVNode("view",{class:e.normalizeClass(1===l.change?"plsbuy-jian-target":"plsbuy-jian"),onClick:e=>(e=>{d(),e.many&&e.many--,e.change=1,setTimeout((()=>{e.change=0}),300)})(l)}," -",10,["onClick"]),e.createElementVNode("view",{class:e.normalizeClass(t.saveIndex==i?"plsbuy-number-target":"plsbuy-number"),onClick:e=>((e,t)=>{a("openRight",e,t)})(l.many,i)},e.toDisplayString(l.many),11,["onClick"]),e.createElementVNode("view",{class:e.normalizeClass(2===l.change?"plsbuy-jia-target":"plsbuy-jia"),onClick:e=>(e=>{d(),e.many<9999&&e.many++,e.change=2,setTimeout((()=>{e.change=0}),300)})(l)},"+ ",10,["onClick"])])],2)))),128))],8,["scroll-top"])]),e.createElementVNode("view",{class:"plsbuy-amount"},[e.createElementVNode("view",{class:"plsbuy-amount-font"}," 合计: "),e.createElementVNode("view",{class:"plsbuy-amount-red"}," 100 ")]),e.createElementVNode("view",{class:"plsbuy-bottom"},[e.createElementVNode("view",{class:"plsbuy-bottom-blue",onClick:c}," 新增供应商 "),e.createElementVNode("view",{class:"plsbuy-bottom-blue",onClick:s}," 确认 "),e.createElementVNode("view",{class:"plsbuy-bottom-white",onClick:s}," 取消 ")])]))}}),[["__scopeId","data-v-5d6b5cea"]]),Te=s(e.defineComponent({__name:"calculator",props:{doOnce:{type:Number,required:!0},translateNumber:{type:Number,required:!0}},emits:["right"],setup(t,{emit:l}){const a=l,i=e.ref(-1),n=t;e.watch((()=>n.doOnce),(()=>{c.value=n.translateNumber,o.value=m(c.value)}));const r=[1,2,3,4,5,6,7,8,9,"AC",0,"CE"],o=e.ref("0000"),c=e.ref(0),s=(e,t)=>{return i.value=t,setTimeout((()=>{i.value=-1}),300),"AC"==e?(c.value=0,void(o.value="0000")):"CE"==e?(c.value=Math.trunc(c.value/10),void(o.value=m(c.value))):(l=c.value,void(Math.abs(l).toString().length>3||(c.value?c.value=10*c.value+e:c.value=e,o.value=m(c.value))));var l},d=()=>{a("right",c.value)};function m(e){const t=Math.floor(Math.abs(e));return String(t).padStart(4,"0")}return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"plsbuy-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"请购数量")])]),e.createElementVNode("view",{class:"calculator-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(r,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(i.value==l?"calculator-kuai-target":"calculator-kuai"),onClick:e=>s(t,l)},e.toDisplayString(t),11,["onClick"])]))),64))]),e.createElementVNode("view",{class:"qinggou-font"}," 请购数量 "),e.createElementVNode("view",{class:"stringShow-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"stringShow-kuai"},e.toDisplayString(t),1)])))),128))]),e.createElementVNode("view",{class:"plsbuy-bottom"},[e.createElementVNode("view",{class:"plsbuy-bottom-blue",onClick:d}," 确认 ")])]))}}),[["__scopeId","data-v-72274131"]]),De=s(e.defineComponent({__name:"index",props:{isShow:{type:Boolean,required:!0}},setup(t){const l=t,a=e.ref(!0),i=e.ref(null),n=e.ref(null),r=e.ref(null),o=e.ref(null),c=e.ref([{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2}]);e.watch((()=>l.isShow),((e,t)=>{!t&&e&&(a.value=!1,setTimeout((()=>{a.value=!0}),50))}));const s=e.ref(!1),d=e.ref(!1),m=e.ref(!1),u=e.ref(!1),v=e.ref(!1),p=e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]),g=()=>{s.value=!0,d.value=!1,setTimeout((()=>{d.value=!0}),100)},w=()=>{s.value=!1,m.value=!0,u.value=!1,setTimeout((()=>{u.value=!0}),100)},h=()=>{n.value.openDrawer()},f=()=>{o.value.openDrawer()},N=()=>{s.value=!1,r.value.openDrawer()},y=e.ref(-1),E=e.ref(0),V=e.ref(!1),b=e.ref(0),k=(e,t)=>{y.value=t,E.value=e,V.value=!0,b.value++},T=()=>{y.value=-1,E.value=0,V.value=!1},D=e.ref(0),C=e=>{V.value=!1,D.value=e};return(l,S)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.withDirectives(e.createElementVNode("view",{class:"index-content-other",style:e.normalizeStyle(a.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-right-height"}),e.createElementVNode("view",{class:"index-right-title"},[e.createElementVNode("view",{class:"index-right-name"}," 货品名称 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入货品名称"}),e.createElementVNode("view",{class:"index-right-name"}," 货品编码 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入货品编码"}),e.createElementVNode("view",{class:"index-right-name"}," 拼音检索 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入货品拼音"}),e.createElementVNode("view",{class:"index-right-button-all"},[e.createElementVNode("view",{class:"first-bgc"},[e.createElementVNode("image",{class:"bgc-img",src:"/static/index/Warehousing/firstbutton.png"})]),e.createElementVNode("view",{class:"second-bgc"},[e.createElementVNode("image",{class:"bgc-img",src:"/static/index/Warehousing/secondbutton.png"})]),e.createElementVNode("view",{class:e.normalizeClass(v.value?"bgc-white":"third-bgc"),onClick:S[0]||(S[0]=e=>v.value=!v.value)},[e.withDirectives(e.createElementVNode("view",{class:"red-pao"},e.toDisplayString("99+"),512),[[e.vShow,!v.value]]),e.createElementVNode("image",{class:"bgc-img",src:"/static/index/Warehousing/thirdbutton.png"})],2),e.createElementVNode("view",{class:"fourth-bgc",onClick:f},[e.createElementVNode("image",{class:"fourth-bgc-img",src:"/static/index/Warehousing/fourthbutton.png"}),e.createElementVNode("view",{class:"fourth-bgc-font"}," 请购单 ")]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"index-right-button"},[e.createElementVNode("image",{class:"index-right-button-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"index-right-button-font"},e.toDisplayString(t.name),1)])])))),128))])]),e.createElementVNode("view",{class:"swiper-contain"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"98%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"swiper-card",style:e.normalizeStyle(1===t.type?{background:"#00D6A9 url(/static/index/warehouseCard/bgcgreen.png) center/cover"}:2===t.type?{background:"#BD9AF8 url(/static/index/warehouseCard/bgcpouple.png) center/cover"}:{})},[e.createElementVNode("view",{class:"swiper-card-left"},[e.createElementVNode("view",{class:"swiper-card-left-white"},[e.createElementVNode("image",{class:e.normalizeClass(0===t.type?"swiper-card-left-white-img-first":1===t.type?"swiper-card-left-white-img-second":"swiper-card-left-white-img-third"),src:"/static/index/project3.png",onClick:g},null,10,["src"])])]),e.createElementVNode("view",{class:"swiper-card-right"},[e.createElementVNode("view",{class:"swiper-right-title"},[e.createElementVNode("view",{class:"swiper-title-font"},e.toDisplayString(t.name),1),e.createElementVNode("view",{class:"swiper-title-font-button"},e.toDisplayString(0===t.type?"护理类":1===t.type?"医疗类":"行政类"),1)]),e.createElementVNode("view",{class:"swiper-heng"}),e.createElementVNode("view",{class:"swiper-font"}," 规格型号:800mm*690mm "),e.createElementVNode("view",{class:"swiper-double"},[e.createElementVNode("view",{class:"swiper-littlefont"}," 采购单位:片 "),e.withDirectives(e.createElementVNode("view",{class:"swiper-littlefont",style:{"margin-left":"10rpx"}},[e.createTextVNode(" 库存 "),e.createElementVNode("view",{style:{color:"rgb(18,169,51)"}},"↑"),e.createTextVNode(" :1000 ")],512),[[e.vShow,v.value]])]),e.createElementVNode("view",{class:"swiper-double"},[e.createElementVNode("view",{class:"swiper-littlefont"},[e.createTextVNode(" 库存数量: "),e.createElementVNode("view",{class:"blackfont"}," 50 ")]),e.withDirectives(e.createElementVNode("view",{class:"swiper-littlefont",style:{"margin-left":"10rpx"}},[e.createTextVNode(" 库存 "),e.createElementVNode("view",{style:{color:"rgb(248,122,85)"}},"↓"),e.createTextVNode(" :5 ")],512),[[e.vShow,v.value]])]),e.createElementVNode("view",{class:"swiper-left-buttons"},[e.createElementVNode("view",{class:e.normalizeClass(0===t.type?"swiper-left-button-blue":1===t.type?"swiper-left-button-green":"swiper-left-button-pouple"),onClick:w}," 请购 ",2),e.createElementVNode("view",{class:"swiper-left-button",onClick:N}," 出入库 ")])])],4)])))),128))]),e.createElementVNode("view",{class:"bug-bottom"})])])]),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")],4),[[e.vShow,t.isShow]]),e.withDirectives(e.createElementVNode("view",{class:"popup-detail",onClick:S[2]||(S[2]=e=>s.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content",style:e.normalizeStyle({opacity:d.value?1:0}),onClick:S[1]||(S[1]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(be,{onQinggou:w,onChuruku:N})],4)],512),[[e.vShow,s.value&&t.isShow]]),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-plsbuy",onClick:S[6]||(S[6]=e=>m.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content-plsbuy",style:e.normalizeStyle({opacity:u.value?1:0}),onClick:S[4]||(S[4]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(ke,{saveIndex:y.value,changeNumber:D.value,onCloseIt:S[3]||(S[3]=e=>m.value=!1),onOpenRight:k,onCloseRight:T},null,8,["saveIndex","changeNumber"])],4),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-content-calculator",style:e.normalizeStyle({opacity:u.value?1:0}),onClick:S[5]||(S[5]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(Te,{doOnce:b.value,translateNumber:E.value,onRight:C},null,8,["doOnce","translateNumber"])],4),[[e.vShow,V.value]])],512),[[e.vShow,m.value&&t.isShow]]),e.createVNode(x,{ref_key:"drawer",ref:n},{default:e.withCtx((()=>[e.createVNode(pe)])),_:1},512),e.createVNode(x,{ref_key:"draweranther",ref:i,widNumber:45,style:{"z-index":"9999"}},{default:e.withCtx((()=>[e.createVNode(ge)])),_:1},512),e.createVNode(x,{ref_key:"goshopdrawer",ref:o},{default:e.withCtx((()=>[e.createVNode(Ee,{onOpendetail:S[7]||(S[7]=e=>i.value.openDrawer())})])),_:1},512),e.createVNode(x,{ref_key:"gobackdrawer",ref:r,widNumber:45},{default:e.withCtx((()=>[e.createVNode(we)])),_:1},512),e.createVNode(Ve,{isShow:t.isShow&&!s.value&&!m.value,onClick:h},null,8,["isShow"])],64))}}),[["__scopeId","data-v-912c10f8"]]),Ce="/static/index/guan.png",Se=s(e.defineComponent({__name:"index",props:{openType:{type:Number,required:!0}},emits:["closedetail","openDrawer"],setup(t,{emit:l}){const a=e.ref("");e.ref(!1),e.ref("");const i=["已作废","未确认","已确认","未完结","待结账","已结账"];e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const n=l,r=e=>{n("openDrawer",e)};return(l,n)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")]),e.createElementVNode("view",{class:e.normalizeClass(t.openType?"title-button":"title-button-red")},e.toDisplayString(i[t.openType]),3)]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"采购单号:"),e.createElementVNode("view",{class:"",style:{"font-weight":"700"}},"A0120250301001")]),e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"总金额:"),e.createElementVNode("view",{class:""},"100.00")])]),e.createElementVNode("view",{class:"weight-boom"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"物料信息")]),3===t.openType?(e.openBlock(),e.createElementBlock("view",{key:0,class:"draw-flex",style:{"margin-top":"-10rpx"}},[e.createElementVNode("view",{class:"button-first",onClick:n[0]||(n[0]=e=>r(0))}," 入库单 "),e.createElementVNode("view",{class:"button-second",onClick:n[1]||(n[1]=e=>r(1))}," 挂账单 "),e.createElementVNode("view",{class:"button-third",onClick:n[2]||(n[2]=e=>r(2))}," 销账单 ")])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("image",{class:"card-img",src:Ce})]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 货品名称: "),e.createElementVNode("view",{class:"title-black"}," 引流袋(医用透明) ")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 采购数量: "),e.createElementVNode("view",{class:"title-black"}," 10 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 货品编码: "),e.createElementVNode("view",{class:"title-black"}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 规格型号: "),e.createElementVNode("view",{class:"title-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单位: "),e.createElementVNode("view",{class:"title-black"}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-black"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-black"}," 10.12 ")])])])])])])]))),64))])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"10rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},e.toDisplayString(t.openType?"备注":"作废原因"),1),t.openType?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"draw-red"},"*"))])]),e.createElementVNode("view",{class:"down-note"},[e.withDirectives(e.createElementVNode("textarea",{class:"down-note-title-input","onUpdate:modelValue":n[3]||(n[3]=e=>a.value=e),maxlength:"300","placeholder-style":"color:#999",placeholder:t.openType?"请输入备注":"不予采购"},null,8,["placeholder"]),[[e.vModelText,a.value]]),e.createElementVNode("text",{class:"char-count"},e.toDisplayString(a.value.length)+"/300",1)])])]))}}),[["__scopeId","data-v-7e25ad7e"]]),Be=s(e.defineComponent({__name:"index",props:{},emits:["voidIt","closevoid"],setup(t,{emit:l}){const a=e.ref("");e.ref(!1),e.ref("");const i=l;e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")])]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"采购单号:"),e.createElementVNode("view",{class:"",style:{"font-weight":"700"}},"A0120250301001")]),e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"总金额:"),e.createElementVNode("view",{class:"",style:{color:"red"}},"100.00")])]),e.createElementVNode("view",{class:"weight-boom"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"物料信息")])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("image",{class:"card-img",src:Ce})]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 货品名称: "),e.createElementVNode("view",{class:"title-black"}," 引流袋(医用透明) ")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 采购数量: "),e.createElementVNode("view",{class:"title-black"}," 10 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 货品编码: "),e.createElementVNode("view",{class:"title-black"}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 规格型号: "),e.createElementVNode("view",{class:"title-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单位: "),e.createElementVNode("view",{class:"title-black"}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-red"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-red"}," 10.12 ")])])])])])])]))),64))])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"作废原因"),e.createElementVNode("view",{class:"draw-red"},"*")])]),e.createElementVNode("view",{class:"down-note"},[e.withDirectives(e.createElementVNode("textarea",{class:"down-note-title-input","onUpdate:modelValue":l[0]||(l[0]=e=>a.value=e),maxlength:"300","placeholder-style":"color:#999",placeholder:"请输入作废原因"},null,512),[[e.vModelText,a.value]]),e.createElementVNode("text",{class:"char-count"},e.toDisplayString(a.value.length)+"/300",1)]),e.createElementVNode("view",{class:"button-card"},[e.createElementVNode("view",{class:"swiper-button-blue",onClick:l[1]||(l[1]=e=>{i("voidIt")})}," 作废 ")])])]))}}),[["__scopeId","data-v-034b4de7"]]),ze="/static/index/Warehousing/goku.png",_e="/static/index/Warehousing/guazhang.png",Ie="/static/index/Warehousing/hexiao.png",Ue="/static/index/Warehousing/zuo.png",Me="/static/index/Warehousing/you.png",Fe=s(e.defineComponent({__name:"index",props:{dantype:{type:Number,required:!0}},emits:["opensuixing","closevoid"],setup(t,{emit:a}){e.ref(""),e.ref(!1),e.ref("");const i=a,n=e.ref(0);e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const r=()=>{i("opensuixing")},o=()=>{uni.previewImage({urls:["/static/index/Warehousing/photo.png"]}),l("log","at component/storeroom/drawer/storage/index.vue:294","????")};return(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:e.normalizeClass(t.dantype?"pouple-font":"green-font")},"采购单号:",2),e.createElementVNode("view",{class:e.normalizeClass(t.dantype?"pouple-font":"green-font"),style:{"font-weight":"700"}},"A0120250301001",2)])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},e.toDisplayString(t.dantype?"挂账单":"入库单"),1)])]),e.createElementVNode("view",{class:"radio-circle-top-father"},[e.createElementVNode("scroll-view",{"scroll-x":"",style:{height:"100%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(n.value?"radio-circle":"radio-circle-target"),onClick:a[0]||(a[0]=e=>n.value=0)},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[1]||(a[1]=e=>n.value=0)},e.toDisplayString(`${t.dantype?"挂账":"入库"}单号:A0120250301001555${t.dantype?"G":"R"}01`),1)]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(1==n.value?"radio-circle-target":"radio-circle"),onClick:a[2]||(a[2]=e=>{n.value=1})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[3]||(a[3]=e=>n.value=1)},e.toDisplayString(`${t.dantype?"挂账":"入库"}单号:A0120250301001555${t.dantype?"G":"R"}02`),1)]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(2==n.value?"radio-circle-target":"radio-circle"),onClick:a[4]||(a[4]=e=>{n.value=2})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[5]||(a[5]=e=>n.value=2)},e.toDisplayString(`${t.dantype?"挂账":"入库"}单号:A0120250301001555${t.dantype?"G":"R"}03`),1)])])])]),e.createElementVNode("view",{class:"ruku-time"},[e.createElementVNode("view",{style:{display:"flex","margin-left":"50rpx"}},[e.createElementVNode("view",{class:"ruku-time-font"},e.toDisplayString((t.dantype?"挂账":"入库")+"时间:"),1),e.createElementVNode("view",{class:"ruku-time-font"}," 2025.03.02 10:10:10 ")]),e.createElementVNode("view",{class:"button-first",onClick:r}," 随行单 ")]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("view",{class:"card-img-bgc"},[e.createElementVNode("image",{class:"card-img",src:Ce})])]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 采购数量: "),e.createElementVNode("view",{class:"title-black"}," 10 ")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 总金额: "),e.createElementVNode("view",{class:"title-black"}," 1150 ")])]),e.createElementVNode("view",{class:"card-right-bgc"},[e.createElementVNode("view",{class:"card-boom"},[e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%","margin-left":"30rpx"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 货品编码: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 规格型号: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 采购单位: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%","margin-left":"30rpx"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-black"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-black"}," 10.12 ")])])]),e.createElementVNode("view",{class:"boom-other"},[e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:ze}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量"),e.createElementVNode("view",{class:"boom-other-weight"},"10")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:_e}),e.createElementVNode("view",{class:"boom-other-font"},"挂账数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:Ie}),e.createElementVNode("view",{class:"boom-other-font"},"核销数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")])])])])])])])]))),64))])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"30rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"拣货拍照")])]),e.createElementVNode("view",{class:"down-note"},[e.createElementVNode("image",{class:"down-note-img",style:{"margin-left":"40rpx"},src:Ue}),e.createElementVNode("scroll-view",{"scroll-x":"",style:{height:"100%",width:"950rpx"},"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex"}},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l,onClick:o},[e.createElementVNode("image",{class:"down-note-photo",src:"/static/index/Warehousing/photo.png"})]))),64))])]),e.createElementVNode("image",{class:"down-note-img",src:Me})])])]))}}),[["__scopeId","data-v-4605a6eb"]]),$e=s(e.defineComponent({__name:"index",props:{},emits:["opensuixing","closevoid"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref(""),e.ref(0);const a=e.ref(["https://img-s.msn.cn/tenant/amp/entityid/AA1ECZ6y.img?w=768&h=960&m=6&x=355&y=171&s=47&d=47","https://img-s.msn.cn/tenant/amp/entityid/AA1ECtEb.img?w=768&h=436&m=6&x=280&y=134&s=200&d=200","/static/index/addphoto.png"]);e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const i=e=>{e==a.value.length-1?uni.chooseImage({count:9,sizeType:["original","compressed"],sourceType:["album","camera"],success:e=>{a.value.pop(),a.value=[...a.value,...e.tempFilePaths],a.value.push("/static/index/addphoto.png")}}):uni.previewImage({urls:a.value.slice(0,-1),current:a.value[e]})};return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"入库单")])]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:"green-font"},"采购单号:"),e.createElementVNode("view",{class:"green-font",style:{"font-weight":"700"}},"A0120250301001")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"50rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"随行单")])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%"},"show-scrollbar":!1},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"card-father",onClick:e=>i(l)},[e.createElementVNode("view",{class:"card-white"},[e.createElementVNode("image",{class:"card-white-photo",src:t},null,8,["src"])]),l!==a.value.length-1?(e.openBlock(),e.createElementBlock("view",{key:0,class:"down-title"},[e.createElementVNode("view",{class:"down-title-flex"},[e.createElementVNode("image",{class:"down-title-photo",src:"/static/index/Warehousing/shangchuanpeople.png"}),e.createElementVNode("view",{style:{"margin-left":"10rpx"}},"上传人:"),e.createElementVNode("view",{style:{"font-weight":"700"}},"王法")]),e.createElementVNode("view",{class:"down-title-flex"},[e.createElementVNode("image",{class:"down-title-photo",src:"/static/index/Warehousing/shangchuantime.png"}),e.createElementVNode("view",{style:{"margin-left":"10rpx"}},"上传时间:"),e.createElementVNode("view",{style:{"font-weight":"500"}},"2025.03.01 10:00:00")])])):e.createCommentVNode("",!0)],8,["onClick"])])))),128))])]),e.createElementVNode("view",{class:"button-card"})])]))}}),[["__scopeId","data-v-1773957a"]]),Ae=s(e.defineComponent({__name:"index",props:{},emits:["opensuixing","closehexiao"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref("");const a=e.ref(0);return e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]),(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:"green-font"},"采购单号:"),e.createElementVNode("view",{class:"green-font",style:{"font-weight":"700"}},"A0120250301001")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"销账单")])]),e.createElementVNode("view",{class:"radio-circle-top-father"},[e.createElementVNode("scroll-view",{"scroll-x":"",style:{height:"100%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(a.value?"radio-circle":"radio-circle-target"),onClick:l[0]||(l[0]=e=>a.value=0)},null,2),e.createElementVNode("view",{class:"radio-font",onClick:l[1]||(l[1]=e=>a.value=0)},"销账单号:A0120250301001555X01")]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(1==a.value?"radio-circle-target":"radio-circle"),onClick:l[2]||(l[2]=e=>{a.value=1})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:l[3]||(l[3]=e=>a.value=1)},"销账单号:A0120250301001555RX2")]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(2==a.value?"radio-circle-target":"radio-circle"),onClick:l[4]||(l[4]=e=>{a.value=2})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:l[5]||(l[5]=e=>a.value=2)},"销账单号:A0120250301001555X03")])])])]),e.createElementVNode("view",{class:"ruku-time"},[e.createElementVNode("view",{style:{display:"flex","margin-left":"50rpx"}},[e.createElementVNode("view",{class:"ruku-time-font"}," 销账时间: "),e.createElementVNode("view",{class:"ruku-time-font"}," 2025.03.02 10:10:10 ")])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("view",{class:"card-img-bgc"},[e.createElementVNode("image",{class:"card-img",src:Ce})])]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 采购数量: "),e.createElementVNode("view",{class:"title-black"}," 10 ")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 总金额: "),e.createElementVNode("view",{class:"title-black"}," 1150 ")])]),e.createElementVNode("view",{class:"card-right-bgc"},[e.createElementVNode("view",{class:"card-boom"},[e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%","margin-left":"30rpx"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 货品编码: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 规格型号: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 采购单位: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%","margin-left":"30rpx"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-black"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-black"}," 10.12 ")])])]),e.createElementVNode("view",{class:"boom-other"},[e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:ze}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量"),e.createElementVNode("view",{class:"boom-other-weight"},"10")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:_e}),e.createElementVNode("view",{class:"boom-other-font"},"挂账数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:Ie}),e.createElementVNode("view",{class:"boom-other-font"},"核销数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")])])])])])])])]))),64))])])])])]))}}),[["__scopeId","data-v-ee45895e"]]),Le=s(e.defineComponent({__name:"index",emits:["closedetail","openDrawer"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref("");const a=e.ref(0),i=e.ref([{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2}]);e.onMounted((()=>{c.value=JSON.parse(JSON.stringify(i.value))})),e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const n=l,r=e=>{n("openDrawer",e)},o=e.ref([]),c=e.ref([]),s=()=>{c.value=[],a.value?i.value.forEach((e=>{e.type===a.value-1&&c.value.push(e)})):c.value=JSON.parse(JSON.stringify(i.value))};return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")]),e.createElementVNode("view",{class:"draw-title-money"},[e.createElementVNode("view",{class:"draw-title-mon-left"},"总金额:"),e.createElementVNode("view",{class:"draw-title-mon-right"},"921.50")])]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"采购单号:"),e.createElementVNode("view",{class:"",style:{"font-weight":"700"}},"A0120250301001")]),e.createElementVNode("view",{class:"weight-right"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"button-blue",style:{"margin-left":"80rpx"},onClick:l[0]||(l[0]=e=>r(3))}," 拣货 "),e.createElementVNode("view",{class:"button-blue",onClick:l[1]||(l[1]=e=>r(4))}," 随行单 ")])])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"0rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"物料信息")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-target",style:e.normalizeStyle(0===a.value?{background:"#fff"}:{}),onClick:l[2]||(l[2]=e=>{a.value=0,s()})},[0===a.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"bad-circle-right"})):e.createCommentVNode("",!0),0===a.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"bad-circle-left"})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"kuai-blue"}),e.createElementVNode("view",{class:"kuai-font"},"全部")],4),e.createElementVNode("view",{class:"draw-target",style:e.normalizeStyle(1===a.value?{background:"#fff"}:{}),onClick:l[3]||(l[3]=e=>{a.value=1,s()})},[1===a.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"bad-circle-right"})):e.createCommentVNode("",!0),1===a.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"bad-circle-left"})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"kuai-pouple"}),e.createElementVNode("view",{class:"kuai-font"},"待入库")],4),e.createElementVNode("view",{class:"draw-target",style:e.normalizeStyle(2===a.value?{background:"#fff"}:{}),onClick:l[4]||(l[4]=e=>{a.value=2,s()})},[2===a.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"bad-circle-right"})):e.createCommentVNode("",!0),2===a.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"bad-circle-left"})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"kuai-green"}),e.createElementVNode("view",{class:"kuai-font"},"已入库")],4),e.createElementVNode("view",{class:"draw-target",style:e.normalizeStyle([{"margin-right":"120rpx"},3===a.value?{background:"#fff"}:{}]),onClick:l[5]||(l[5]=e=>{a.value=3,s()})},[3===a.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"bad-circle-right"})):e.createCommentVNode("",!0),3===a.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"bad-circle-left"})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"kuai-orange"}),e.createElementVNode("view",{class:"kuai-font"},"销账")],4)])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>(e=>{o.value.includes(e)?o.value=o.value.filter((t=>t!==e)):o.value.push(e)})(l)},[e.createElementVNode("view",{class:"swiper-card",style:e.normalizeStyle(1===t.type?{background:"#00D6A9 url(/static/index/warehouseCard/bgcgreengreen.png) center/cover"}:2===t.type?{background:"#FF6699 url(/static/index/warehouseCard/bgcorange.png) center/cover"}:{})},[e.createElementVNode("view",{class:"card-button",style:e.normalizeStyle(1===t.type?{background:"linear-gradient(to right, #E2FFFF, #83EBDC, #E2FFFF)"}:2===t.type?{background:"linear-gradient(to right, #FFFFFF , #FFCCC3, #FFE6FF )"}:{})},[e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:ze}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量"),e.createElementVNode("view",{class:"boom-other-weight"},"10")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:_e}),e.createElementVNode("view",{class:"boom-other-font"},"挂账数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:Ie}),e.createElementVNode("view",{class:"boom-other-font"},"销账数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")])],4),e.createElementVNode("view",{class:"swiper-card-title"},[o.value.includes(l)?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"swiper-card-img"},[e.createElementVNode("view",{class:"swiper-card-font-font"},"✓")])),o.value.includes(l)?(e.openBlock(),e.createElementBlock("view",{key:1,class:"swiper-card-img-target"},[e.createElementVNode("view",{class:"swiper-card-font-font"},"✓")])):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"swiper-card-title-name"},[e.createElementVNode("view",{class:"swiper-card-font"}," 采购数量: "),e.createElementVNode("view",{class:"swiper-card-weight"}," 10 "),e.createElementVNode("view",{class:"swiper-card-shu"}," | "),e.createElementVNode("view",{class:"swiper-card-font"}," 总金额: "),e.createElementVNode("view",{class:"swiper-card-weight"}," 1150 ")]),e.createElementVNode("view",{class:"swiper-right-title"},[2!==t.type?(e.openBlock(),e.createElementBlock("view",{key:0,class:"swiper-title-font-button"},e.toDisplayString(0===t.type?"待入库":1===t.type?"已入库":""),1)):e.createCommentVNode("",!0),2===t.type?(e.openBlock(),e.createElementBlock("view",{key:1,class:"swiper-title-font-button",style:{"margin-right":"45rpx","margin-left":"5rpx"}}," 销账 ")):e.createCommentVNode("",!0)])]),e.createElementVNode("view",{style:{display:"flex"}},[e.createElementVNode("view",{class:"swiper-card-left"},[e.createElementVNode("view",{class:"swiper-card-left-white"},[e.createElementVNode("image",{class:e.normalizeClass(0===t.type?"swiper-card-left-white-img-first":1===t.type?"swiper-card-left-white-img-second":"swiper-card-left-white-img-third"),src:"/static/index/project3.png"},null,10,["src"])])]),e.createElementVNode("view",{class:"swiper-card-right"},[e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"30rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 物料名称: "),e.createElementVNode("view",{class:"swiper-font-right"}," 胃管(进口) ")]),e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"10rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-font-right"}," CH/FR15,100cm ")]),e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"10rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 物料编码: "),e.createElementVNode("view",{class:"swiper-font-right"}," QXYP016 ")]),e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"10rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 采购单位: "),e.createElementVNode("view",{class:"swiper-font-right"}," 根 ")]),e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"10rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 采购单价: "),e.createElementVNode("view",{class:"swiper-font-right",style:{"margin-right":"20rpx"}}," 115.00 "),e.createElementVNode("view",{class:"swiper-font-left"}," 到货单价: "),e.createElementVNode("view",{class:"swiper-font-right"}," 115.00 ")])])])],4)],8,["onClick"])))),128))])])])])]))}}),[["__scopeId","data-v-72acf113"]]),Oe=s(e.defineComponent({__name:"index",props:{backnumber:{type:Number}},emits:["opensuixing","closehexiao","closepickingdrawer","openCal"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref("");const a=l,i=t;e.watch((()=>i.backnumber),(()=>{r.value[o.value].many=i.backnumber})),e.ref(0),e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const n=e.ref(["https://img-s.msn.cn/tenant/amp/entityid/AA1ECZ6y.img?w=768&h=960&m=6&x=355&y=171&s=47&d=47","https://img-s.msn.cn/tenant/amp/entityid/AA1ECtEb.img?w=768&h=436&m=6&x=280&y=134&s=200&d=200","/static/index/addphoto.png"]),r=e.ref([{name:"入库数量",many:9999,change:0},{name:"销账数量",many:0,change:0}]),o=e.ref(0),c=()=>{a("closepickingdrawer")},s=e=>{e==n.value.length-1?uni.chooseImage({count:9,sizeType:["original","compressed"],sourceType:["album","camera"],success:e=>{n.value.pop(),n.value=[...n.value,...e.tempFilePaths],n.value.push("/static/index/addphoto.png")}}):uni.previewImage({urls:n.value.slice(0,-1),current:n.value[e]})};return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"title-title"}," 留置针敷贴(医用透明敷料) "),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"10rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")])]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 货品名称: "),e.createElementVNode("view",{class:"swiper-black"}," 留置针敷贴(医用透明敷料) ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"45%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 货品编码: "),e.createElementVNode("view",{class:"swiper-black"}," FLYP001 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"45%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购单位: "),e.createElementVNode("view",{class:"swiper-black"}," 个 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购单价: "),e.createElementVNode("view",{class:"swiper-black"}," 0.1 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 到货单价: "),e.createElementVNode("view",{class:"swiper-black"}," 0.12 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购金额: "),e.createElementVNode("view",{class:"swiper-black"}," 10.12 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"10rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"入库信息")])]),e.createElementVNode("view",{class:"color-father"},[e.createElementVNode("view",{class:"color-pink",style:{"margin-left":"40rpx"}},[e.createElementVNode("view",{class:"color-weight"}," 10 "),e.createElementVNode("view",{class:"color-font"}," 采购数量 ")]),e.createElementVNode("view",{class:"color-green"},[e.createElementVNode("view",{class:"color-weight"}," 0 "),e.createElementVNode("view",{class:"color-font"}," 入库数量 ")]),e.createElementVNode("view",{class:"color-red"},[e.createElementVNode("view",{class:"color-weight"}," 0 "),e.createElementVNode("view",{class:"color-font"}," 销账数量 ")])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"10rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"拣货入库")])]),e.createElementVNode("view",{class:"swiper-card-once",style:{height:"240rpx"}},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx","flex-direction":"column"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"plsbuy-card-heng"},[e.createElementVNode("view",{class:"card-flex"},[e.createElementVNode("view",{class:"plsbuy-font-right"},e.toDisplayString(t.name),1)]),e.createElementVNode("view",{class:"card-flex"},[e.createElementVNode("view",{class:"plsbuy-right-weight"},e.toDisplayString(l?"销账数量":"入库数量"),1),e.createElementVNode("view",{class:e.normalizeClass(1===t.change?"plsbuy-jian-target":"plsbuy-jian"),onClick:e=>(e=>{e.many&&e.many--,e.change=1,setTimeout((()=>{e.change=0}),300)})(t)}," -",10,["onClick"]),e.createElementVNode("view",{class:"plsbuy-number",onClick:e=>((e,t)=>{o.value=e,a("openCal",t)})(l,t.many)},e.toDisplayString(t.many),9,["onClick"]),e.createElementVNode("view",{class:e.normalizeClass(2===t.change?"plsbuy-jia-target":"plsbuy-jia"),onClick:e=>(e=>{e.many<9999&&e.many++,e.change=2,setTimeout((()=>{e.change=0}),300)})(t)},"+ ",10,["onClick"])])])))),128))])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"拣货拍照")])]),e.createElementVNode("view",{class:"down-note"},[e.createElementVNode("image",{class:"down-note-img",style:{"margin-left":"40rpx"},src:Ue}),e.createElementVNode("scroll-view",{"scroll-x":"",style:{height:"100%",width:"950rpx"},"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("image",{class:"down-note-photo",src:t,onClick:e=>s(l)},null,8,["src","onClick"])])))),128))])]),e.createElementVNode("image",{class:"down-note-img",src:Me})]),e.createElementVNode("view",{class:"button-card"},[e.createElementVNode("view",{class:"swiper-button-white",onClick:c}," 取消 "),e.createElementVNode("view",{class:"swiper-button-blue",onClick:c}," 确定 ")])])]))}}),[["__scopeId","data-v-ab4efe77"]]),Pe=s(e.defineComponent({__name:"index",props:{doOnce:{type:Number,required:!0},translateNumber:{type:Number,required:!0}},emits:["right","close"],setup(t,{emit:l}){const a=l,i=e.ref(-1),n=t;e.watch((()=>n.doOnce),(()=>{c.value=n.translateNumber,o.value=d(c.value)}));const r=[1,2,3,4,5,6,7,8,9,"AC",0,"CE"],o=e.ref("0000"),c=e.ref(0),s=(e,t)=>{return i.value=t,setTimeout((()=>{i.value=-1}),300),"AC"==e?(c.value=0,void(o.value="0000")):"CE"==e?(c.value=Math.trunc(c.value/10),void(o.value=d(c.value))):(l=c.value,void(Math.abs(l).toString().length>3||(c.value?c.value=10*c.value+e:c.value=e,o.value=d(c.value))));var l};function d(e){const t=Math.floor(Math.abs(e));return String(t).padStart(4,"0")}return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{style:{"margin-left":"80rpx"}},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购数量")])]),e.createElementVNode("view",{class:"calculator-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(r,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(i.value==l?"calculator-kuai-target":"calculator-kuai"),onClick:e=>s(t,l)},e.toDisplayString(t),11,["onClick"])]))),64))]),e.createElementVNode("view",{class:"qinggou-font"}," 采购数量 "),e.createElementVNode("view",{class:"stringShow-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"stringShow-kuai"},e.toDisplayString(t),1)])))),128))])]),e.createElementVNode("view",{class:"button-card"},[e.createElementVNode("view",{class:"swiper-button-white",onClick:l[0]||(l[0]=e=>{a("close")})}," 关闭 "),e.createElementVNode("view",{class:"swiper-button-blue",onClick:l[1]||(l[1]=e=>{a("right",c.value)})}," 确定 ")])])]))}}),[["__scopeId","data-v-e7259b7d"]]),je=s(e.defineComponent({__name:"index",props:{savePrice:{type:Number,required:!0},changePrice:{type:Number,required:!0}},emits:["right","close","openCal","closeCal","rightclose"],setup(t,{emit:l}){const a=l;e.ref(-1);const i=t;return(l,n)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title-father"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-font"},"货品名称:"),e.createElementVNode("view",{class:"draw-weight"},"留置针敷贴(医用透明敷料)")])]),e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("image",{class:"card-img",src:Ce})]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 货品名称: "),e.createElementVNode("view",{class:"title-black"}," 引流袋(医用透明) ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"300rpx"}},[e.createElementVNode("view",{class:"title-gray"}," 货品编码: "),e.createElementVNode("view",{class:"title-black"}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"300rpx"}},[e.createElementVNode("view",{class:"title-gray"}," 规格型号: "),e.createElementVNode("view",{class:"title-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{}},[e.createElementVNode("view",{class:"title-gray"}," 采购单位: "),e.createElementVNode("view",{class:"title-black"}," 个 ")])])])])])]),e.createElementVNode("view",{class:"contant-mid"},[e.createElementVNode("view",{class:""},"改价前到货单价:"),e.createElementVNode("view",{class:"contant-mid-wight"},e.toDisplayString(t.savePrice),1)]),e.createElementVNode("view",{class:"contant-mid"},[e.createElementVNode("view",{class:""},"改价后到货单价:"),e.createElementVNode("view",{class:"contant-mid-wight-target",onClick:n[0]||(n[0]=e=>{return l=t.changePrice,void a("openCal",l);var l})},e.toDisplayString(t.changePrice),1)]),e.createElementVNode("view",{class:"button-card"},[e.createElementVNode("view",{class:"swiper-button-white",onClick:n[1]||(n[1]=e=>(a("close"),void a("closeCal")))}," 关闭 "),e.createElementVNode("view",{class:"swiper-button-blue",onClick:n[2]||(n[2]=e=>(a("close"),a("closeCal"),void a("rightclose",i.changePrice)))}," 确定 ")])])]))}}),[["__scopeId","data-v-2517b556"]]),qe=s(e.defineComponent({__name:"index",props:{openType:{type:Number,required:!0},valueBack:{type:Number,required:!0}},emits:["closedetail","openDrawer","openPen"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref("");const a=t,i=[{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1}],n=["已作废","未确认","已确认","未完结","待结账","已结账"];e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const r=l,o=e.ref(0);return e.watch((()=>a.valueBack),(()=>{-1!=a.valueBack&&(i[o.value].price=a.valueBack)}),{immediate:!0}),(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")]),e.createElementVNode("view",{class:e.normalizeClass(t.openType?"title-button":"title-button-red")},e.toDisplayString(n[t.openType]),3)]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"采购单号:"),e.createElementVNode("view",{class:"",style:{"font-weight":"700"}},"A0120250301001")]),e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"总金额:"),e.createElementVNode("view",{class:""},"100.00")])]),e.createElementVNode("view",{class:"weight-boom"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"物料信息")]),e.createElementVNode("view",{class:"draw-flex",style:{"margin-top":"-10rpx"}},[e.createElementVNode("view",{class:"button-blue",onClick:a[0]||(a[0]=e=>{r("openDrawer",4)})}," 随行单 ")])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(i,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-rightbox"},[e.createElementVNode("view",{class:"vertical-line"}),e.createElementVNode("view",{class:"rightbox-other"},[e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:ze}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量:"),e.createElementVNode("view",{class:"boom-other-weight"},"10")]),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:_e}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量:"),e.createElementVNode("view",{class:"boom-other-weight"},"0")]),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:Ie}),e.createElementVNode("view",{class:"boom-other-font"},"销账数量:"),e.createElementVNode("view",{class:"boom-other-weight"},"0")])])]),e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("image",{class:"card-img",src:Ce})]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 货品名称: "),e.createElementVNode("view",{class:"title-black"},e.toDisplayString(t.name),1)])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 货品编码: "),e.createElementVNode("view",{class:"title-black"}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 规格型号: "),e.createElementVNode("view",{class:"title-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单位: "),e.createElementVNode("view",{class:"title-black"}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-black"},e.toDisplayString(t.price),1),e.createElementVNode("image",{class:"title-img",src:"/static/index/Warehousing/pen.png",onClick:e=>(e=>{o.value=e,r("openPen",i[e].price)})(l)},null,8,["onClick"])]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-black"}," 10.12 ")])])])])])])]))),64))])])])])]))}}),[["__scopeId","data-v-d07b1c84"]]),Re=s(e.defineComponent({__name:"calculatorfly",props:{doOnce:{type:Number,required:!0},translateNumber:{type:[Number,String],required:!0}},emits:["right"],setup(t,{emit:l}){const a=l,i=t,n=e.ref(""),r=e.ref([]),o=e.ref(-1),c=[1,2,3,4,5,6,7,8,9,0,".","CE","AC"];function s(e,t){if(o.value=t,setTimeout((()=>{o.value=-1}),300),"AC"===e)n.value="";else if("CE"===e)n.value=n.value.slice(0,-1);else if("."===e)!n.value.includes(".")&&n.value.length<7&&(n.value=n.value||"0",n.value+=".");else{const t=e.toString();(function(e){const t=n.value+e,l=t.split(".");return!(l[1]&&l[1].length>2)&&t.length<=7})(t)&&(n.value+=t)}m()}function d(){const e=parseFloat(n.value)||0;a("right",e)}function m(){if("0"===n.value)return void(r.value=Array(7).fill(" "));if(!n.value)return void(r.value=Array(7).fill(" "));const e=function(e){let[t,l]=e.split(".");void 0!==l&&(l=l.slice(0,2));t=t.replace(/^0+/,""),""===t&&(t="0");let a=void 0!==l?`${t}.${l}`:t;a.length>7&&(a=a.slice(0,7));return a.padStart(7," ")}(n.value);r.value=e.split("")}return e.watch((()=>i.doOnce),(()=>{n.value=String(i.translateNumber),m()}),{immediate:!0}),(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"plsbuy-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"货品价格")])]),e.createElementVNode("view",{class:"calculator-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(c,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(o.value===l?"calculator-kuai-target":"calculator-kuai"),onClick:e=>s(t,l)},e.toDisplayString(t),11,["onClick"])]))),64))]),e.createElementVNode("view",{class:"qinggou-font"},"货品价格"),e.createElementVNode("view",{class:"stringShow-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"stringShow-kuai"},e.toDisplayString(t),1)])))),128))]),e.createElementVNode("view",{class:"plsbuy-bottom"},[e.createElementVNode("view",{class:"plsbuy-bottom-blue",onClick:d},"确认")])]))}}),[["__scopeId","data-v-86c43bb8"]]),We=s(e.defineComponent({__name:"orders",props:{isShow:{type:Boolean,required:!0}},setup(t){const l=t,i=e.ref(!0),n=e=>{switch(e){case 0:return"ball-red-big";case 1:return"ball-yellow-big";default:return"ball-green"}},r=e=>{switch(e){case 0:case 1:return"ball-white";case 2:case 3:return"ball-yellow-big";case 4:case 5:return"ball-green"}},o=e=>{switch(e){case 4:return"ball-yellow-big";case 5:return"ball-green";default:return"ball-white"}};e.watch((()=>l.isShow),((e,t)=>{!t&&e&&(i.value=!1,setTimeout((()=>{i.value=!0}),50))}));const c=e.ref(null),s=e.ref(null),d=e.ref(null),m=e.ref(null),u=e.ref(!1),v=e.ref(0),p=e.ref(0),g=e.ref(0),w=e.ref(!1),h=e.ref(-1),f=e.ref(null),N=()=>{f.value.openDrawer()},y=e.ref(-1),E=e.ref(null),V=()=>{E.value.openDrawer()},b=e.ref(0),k=e.ref(null),T=e=>{e?1===e?(d.value.openDrawer(),b.value=1):2===e?(b.value=2,m.value.openDrawer()):3===e?k.value.openDrawer():4===e&&E.value.openDrawer():(d.value.openDrawer(),b.value=0)},D=e.ref(0),C=e.ref(0),S=e.ref(-1),B=e=>{S.value=e},z=e=>{$.value=!1,C.value=e},_=e=>{D.value=e,C.value=e,u.value=!0,X.value=!0},I=e.ref(0),U=e.ref(0),M=e.ref(!1),F=()=>{M.value=!1},$=e.ref(!1),A=e=>{$.value=!0,U.value++,I.value=e},L=e.ref(0),O=e=>{M.value=!1,L.value=e},P=e=>{I.value=e,M.value=!0,X.value=!1,setTimeout((()=>{X.value=!0}),100),U.value++},j=()=>{k.value.closeDrawer()},q=e.ref(null),R=()=>{if(p.value=0,g.value=0,v.value<3?v.value++:v.value=0,v.value){let e=[];switch(v.value){case 1:Q.value.forEach((t=>{1==t.cardType&&e.push(t)})),K.value=e;break;case 2:Q.value.forEach((t=>{t.cardType>2&&e.push(t)})),K.value=e;break;case 3:Q.value.forEach((t=>{0==t.cardType&&e.push(t)})),K.value=e}}else K.value=Q.value},W=()=>{if(v.value=0,g.value=0,p.value<2?p.value++:p.value=0,p.value){let e=[];switch(p.value){case 1:Q.value.forEach((t=>{2!=t.cardType&&3!=t.cardType||e.push(t)})),K.value=e;break;case 2:Q.value.forEach((t=>{t.cardType>3&&e.push(t)})),K.value=e}}else K.value=Q.value},Y=()=>{if(p.value=0,v.value=0,g.value<2?g.value++:g.value=0,g.value){let e=[];switch(g.value){case 1:Q.value.forEach((t=>{4==t.cardType&&e.push(t)})),K.value=e;break;case 2:Q.value.forEach((t=>{5==t.cardType&&e.push(t)})),K.value=e}}else K.value=Q.value},J=e.ref(!1),X=e.ref(!1),Z=e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]),H=e.ref(""),G=e.ref(["已作废","未确认","已确认","未完结","待结账","已结账"]),Q=e.ref(Array.from({length:6},((e,t)=>({cardType:t})))),K=e.ref([]),ee=e=>{switch(e){case 0:return"ball-white";case 1:return"ball-yellow";case 2:return"ball-green";case 3:return"ball-red"}},te=()=>{J.value=!0,X.value=!1,setTimeout((()=>{X.value=!0}),200)},le=()=>{c.value.closeDrawer()},ae=()=>{d.value.closeDrawer()},ie=()=>{s.value.closeDrawer()},ne=()=>{m.value.closeDrawer()},re=e=>{H.value=e.result};return e.onMounted((()=>{K.value=Q.value})),(l,oe)=>{const ce=a(e.resolveDynamicComponent("u-calendar"),xe);return e.openBlock(),e.createElementBlock(e.Fragment,null,[e.withDirectives(e.createElementVNode("view",{class:"index-content-other",style:e.normalizeStyle(i.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-right-height"}),e.createElementVNode("view",{class:"index-right-title"},[e.createElementVNode("view",{class:"ball-bgc",style:{"box-shadow":"2rpx 2rpx 4rpx 0rpx rgba(0, 0, 0, 0.3)"},onClick:R},[e.createElementVNode("view",{class:e.normalizeClass(ee(v.value))}," 采购 ",2)]),e.createElementVNode("view",{class:"ball-bgc",style:{"box-shadow":"2rpx 2rpx 4rpx 0rpx rgba(0, 0, 0, 0.3)"},onClick:W},[e.createElementVNode("view",{class:e.normalizeClass(ee(p.value))}," 拣货 ",2)]),e.createElementVNode("view",{class:"ball-bgc",style:{"box-shadow":"2rpx 2rpx 4rpx 0rpx rgba(0, 0, 0, 0.3)"},onClick:Y},[e.createElementVNode("view",{class:e.normalizeClass(ee(g.value))}," 结账 ",2)]),e.createElementVNode("view",{class:"index-right-name"}," 采购单号 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入采购单号"}),e.createElementVNode("view",{class:"index-right-name"}," 供应商 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入供应商"}),e.createElementVNode("view",{class:"index-right-name"}," 采购日期 "),e.createElementVNode("view",{onClick:oe[0]||(oe[0]=e.withModifiers((e=>w.value=!0),["stop"]))},[e.createElementVNode("view",{class:"index-right-input",style:e.normalizeStyle([{width:"200rpx",height:"66rpx"},H.value?{}:{color:"#999"}])},e.toDisplayString(H.value?H.value:"请输入采购日期"),5)]),e.createVNode(ce,{style:{width:"40%","margin-left":"30%"},"border-radius":"40",modelValue:w.value,"onUpdate:modelValue":oe[1]||(oe[1]=e=>w.value=e),mode:"date",onChange:re},null,8,["modelValue"]),e.createElementVNode("view",{class:"index-right-button-all"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Z.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:l},[e.createElementVNode("view",{class:"index-right-button"},[e.createElementVNode("image",{class:"index-right-button-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"index-right-button-font"},e.toDisplayString(t.name),1)])])))),128))])]),e.createElementVNode("view",{class:"swiper-contain"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"98%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(K.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-title-contect"},[e.createElementVNode("view",{class:"swiper-states"},[e.createElementVNode("view",{class:e.normalizeClass(t.cardType>1?"swiper-states-heng-one-green":"swiper-states-heng-one")},null,2),e.createElementVNode("view",{class:e.normalizeClass(t.cardType>3?"swiper-states-heng-two-green":"swiper-states-heng-two")},null,2),e.createElementVNode("view",{class:"ball-bgc",style:e.normalizeStyle(0!==t.cardType&&1!==t.cardType?{}:{boxShadow:"8rpx 8rpx 16rpx 0rpx rgba(0, 0, 0, 0.3)",width:"110rpx",height:"110rpx"})},[e.createElementVNode("view",{class:e.normalizeClass(n(t.cardType))}," 采购 ",2)],4),e.createElementVNode("view",{class:"ball-bgc",style:e.normalizeStyle(2!=t.cardType&&3!=t.cardType?{}:{boxShadow:"8rpx 8rpx 16rpx 0rpx rgba(0, 0, 0, 0.3)",width:"110rpx",height:"110rpx"})},[e.createElementVNode("view",{class:e.normalizeClass(r(t.cardType))}," 拣货 ",2)],4),e.createElementVNode("view",{class:"ball-bgc",style:e.normalizeStyle(4!=t.cardType?{}:{boxShadow:"8rpx 8rpx 16rpx 0rpx rgba(0, 0, 0, 0.3)",width:"110rpx",height:"110rpx"})},[e.createElementVNode("view",{class:e.normalizeClass(o(t.cardType))}," 结账 ",2)],4)]),e.createElementVNode("view",{class:e.normalizeClass(t.cardType?"title-button":"title-button-red")},e.toDisplayString(G.value[t.cardType]),3)]),e.createElementVNode("view",{class:"swiper-down"},[e.createElementVNode("view",{class:"swiper-flex"},[e.createElementVNode("view",{class:"swiper-down-title"},"采购单号:"),e.createElementVNode("view",{class:"swiper-down-number"},"A0120250301001555")]),e.createElementVNode("view",{class:"swiper-down-card"},[e.createElementVNode("view",{class:"swiper-down-text"},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 采 购 人 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-down-text"},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 采购日期 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 2025.03.02 ")]),e.createElementVNode("view",{class:"swiper-down-text"},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 联 系 人 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 李月 ")]),e.createElementVNode("view",{class:"swiper-down-text"},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 联系电话 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 13355653333 ")]),e.createElementVNode("view",{class:"swiper-down-text",style:{width:"100%"}},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 供 应 商 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 宽城区珂爱个人卫生用品店 ")])]),e.createElementVNode("view",{class:"swiper-button"},[e.createElementVNode("view",{class:"button-father"},[e.createElementVNode("view",{class:"swiper-button-white",onClick:e=>{return l=t.cardType,h.value=l,void c.value.openDrawer();var l}}," 详情 ",8,["onClick"]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-blue",onClick:e=>(e=>{h.value=e,q.value.openDrawer()})(t.cardType)}," 结账 ",8,["onClick"]),[[e.vShow,4==t.cardType]]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-blue",onClick:N}," 拣货 ",512),[[e.vShow,3==t.cardType||2==t.cardType]]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-white",onClick:e=>(e=>{v.value=0,p.value=0,g.value=0,Q.value[e].cardType--,K.value=Q.value})(l)}," 回退 ",8,["onClick"]),[[e.vShow,t.cardType>=2&&5!==t.cardType]]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-blue",onClick:e=>(e=>{v.value=0,p.value=0,g.value=0,Q.value[e].cardType++,K.value=Q.value})(l)}," 确认 ",8,["onClick"]),[[e.vShow,1==t.cardType]]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-red",onClick:e=>(e=>{y.value=e,s.value.openDrawer()})(l)}," 作废 ",8,["onClick"]),[[e.vShow,1==t.cardType]])])])])])])))),128))])])])]),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")],4),[[e.vShow,t.isShow]]),e.withDirectives(e.createElementVNode("view",{class:"popup-detail",onClick:oe[3]||(oe[3]=e=>J.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content",style:e.normalizeStyle({opacity:X.value?1:0}),onClick:oe[2]||(oe[2]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-detail-left"},[e.createElementVNode("view",{class:"popup-detail-left-white"},[e.createElementVNode("image",{class:"popup-detail-left-white-img",src:"/static/index/project3.png",onClick:te},null,8,["src"])]),e.createElementVNode("view",{class:"popup-detail-left-bottom"},[e.createElementVNode("view",{class:"popup-small-card"})])]),e.createElementVNode("view",{class:"popup-detail-right"})],4)],512),[[e.vShow,J.value&&t.isShow]]),e.createVNode(x,{ref_key:"detaildrawer",ref:c,widNumber:60},{default:e.withCtx((()=>[e.createVNode(Se,{openType:h.value,onClosedetail:le,onOpenDrawer:T},null,8,["openType"])])),_:1},512),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-finish",onClick:oe[8]||(oe[8]=e=>u.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content",style:e.normalizeStyle({opacity:X.value?1:0}),onClick:oe[6]||(oe[6]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(je,{changePrice:C.value,savePrice:D.value,onRightclose:B,onClose:oe[4]||(oe[4]=e=>u.value=!1),onOpenCal:A,onCloseCal:oe[5]||(oe[5]=e=>$.value=!1)},null,8,["changePrice","savePrice"])],4),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-content-calculator",style:e.normalizeStyle({opacity:X.value?1:0}),onClick:oe[7]||(oe[7]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(Re,{doOnce:U.value,translateNumber:I.value,onRight:z},null,8,["doOnce","translateNumber"])],4),[[e.vShow,$.value]])],512),[[e.vShow,u.value&&t.isShow]]),e.createVNode(x,{ref_key:"finishAccountdrawer",ref:q,widNumber:60},{default:e.withCtx((()=>[e.createVNode(qe,{valueBack:S.value,openType:h.value,onClosedetail:le,onOpenDrawer:T,onOpenPen:_},null,8,["valueBack","openType"])])),_:1},512),e.createVNode(x,{ref_key:"storagedrawer",ref:d,widNumber:50,style:{"z-index":"1000"}},{default:e.withCtx((()=>[e.createVNode(Fe,{dantype:b.value,onOpensuixing:V,onClosevoid:ae},null,8,["dantype"])])),_:1},512),e.createVNode(x,{ref_key:"verificationdrawer",ref:m,widNumber:50,style:{"z-index":"1000"}},{default:e.withCtx((()=>[e.createVNode(Ae,{onClosehexiao:ne})])),_:1},512),e.createVNode(x,{ref_key:"suixingdrawer",ref:E,widNumber:40,style:{"z-index":"1001"}},{default:e.withCtx((()=>[e.createVNode($e)])),_:1},512),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-cal",onClick:oe[10]||(oe[10]=e=>M.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content",style:e.normalizeStyle({opacity:X.value?1:0}),onClick:oe[9]||(oe[9]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(Pe,{doOnce:U.value,translateNumber:I.value,onClose:F,onRight:O},null,8,["doOnce","translateNumber"])],4)],512),[[e.vShow,M.value&&t.isShow]]),e.createVNode(x,{ref_key:"voiddrawer",ref:s,widNumber:60},{default:e.withCtx((()=>[e.createVNode(Be,{onVoidIt:oe[11]||(oe[11]=e=>{return t=y.value,v.value=0,p.value=0,g.value=0,Q.value[t].cardType=0,K.value=Q.value,void s.value.closeDrawer();var t}),onClosevoid:ie})])),_:1},512),e.createVNode(x,{ref_key:"pickingGooddrawer",ref:f,widNumber:60,style:{"z-index":"998"}},{default:e.withCtx((()=>[e.createVNode(Le,{onOpenDrawer:T})])),_:1},512),e.createVNode(x,{ref_key:"pickingdrawer",ref:k,canclose:!1,widNumber:50,style:{"z-index":"998"}},{default:e.withCtx((()=>[e.createVNode(Oe,{backnumber:L.value,onOpenCal:P,onClosepickingdrawer:j},null,8,["backnumber"])])),_:1},512)],64)}}}),[["__scopeId","data-v-4e891f28"]]),Ye=s(e.defineComponent({__name:"index",setup(t){const l=e.ref(!1),a=e.ref(0);e.ref(!1),e.ref(!1);const i=e.ref([{url:"/static/index/lefticon/index.png",targetUrl:"/static/index/lefticontarget/blueindex.png",name:"首页",pao:0},{url:"/static/index/Warehousing/dingdan.png",targetUrl:"/static/index/Warehousing/dingdanblue.png",name:"订单",pao:0},{url:"/static/index/Warehousing/chuku.png",targetUrl:"/static/index/Warehousing/chukublue.png",name:"出库",pao:5},{url:"/static/index/Warehousing/pandian.png",targetUrl:"/static/index/Warehousing/pandianblue.png",name:"盘点",pao:0},{url:"/static/index/Warehousing/jiankong.png",targetUrl:"/static/index/Warehousing/jiankongblue.png",name:"监控",pao:0},{url:"/static/index/lefticon/back.png",targetUrl:"/static/index/lefticontarget/blueback.png",name:"返回",pao:0}]),n=e=>{5!==e?a.value=e:uni.navigateBack()};return(t,r)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(l.value?"darkbackgroundContainer":"backgroundContainer")},[e.createElementVNode("view",{class:"index-title"},[e.createElementVNode("view",{class:"index-title-left"},[e.createElementVNode("image",{class:"index-title-left-img",src:y}),e.createElementVNode("view",{class:"index-title-left-font"}," 王金福 "),e.createElementVNode("view",{class:"index-title-left-wel"}," 欢迎 "),e.createElementVNode("view",{class:"index-title-left-weight"}," 张春凤 "),e.createElementVNode("view",{class:""}," 登录护理单元操作台 ")]),e.createElementVNode("view",{class:"index-title-right"},[e.createElementVNode("view",{class:"index-title-right-circle"},[e.createElementVNode("image",{class:"index-title-right-circle-img",src:"/static/index/Warehousing/house.png"})]),e.createElementVNode("view",{class:"index-title-right-font"}," 生活用品库 ")])]),e.createElementVNode("view",{class:"index-content"},[e.createElementVNode("view",{class:"index-content-leftMenus"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"blue-circle-pos"},[e.withDirectives(e.createElementVNode("view",{class:"blue-circle"},[e.createElementVNode("image",{class:"blue-circle-size",src:"/static/index/ray.png"},null,8,["src"])],512),[[e.vShow,l===a.value]]),t.pao?(e.openBlock(),e.createElementBlock("view",{key:0,class:"red-pao",onClick:e=>n(l)},e.toDisplayString(t.pao>99?"99+":t.pao),9,["onClick"])):e.createCommentVNode("",!0),e.createElementVNode("image",{class:"left-img",src:l===a.value?t.targetUrl:t.url,onClick:e=>n(l)},null,8,["src","onClick"]),e.createElementVNode("view",{class:e.normalizeClass(l===a.value?"left-img-font-target":"left-img-font"),onClick:e=>n(l)},e.toDisplayString(t.name),11,["onClick"])])))),128))]),e.createVNode(De,{isShow:!a.value},null,8,["isShow"]),e.createVNode(We,{isShow:1===a.value},null,8,["isShow"])])],2))}}),[["__scopeId","data-v-77445644"]]),Je="/static/index/video/videoright/guang.png",Xe="/static/index/bed.png",Ze="/static/index/cardicons/zhixing.png",He="/static/index/cardicons/zhifa.png",Ge=s(e.defineComponent({__name:"fuwu",props:{isShow:{type:Boolean,required:!0}},emits:["nav"],setup(t,{emit:l}){const a=t,i=e.ref(["清晰度","分屏","画面旋转"]),n=e.ref([{url:"/static/index/video/videotopright/0.png",name:"入住",bgc:"linear-gradient(to right,#008AFF,#01BCFF)"},{url:"/static/index/video/videotopright/1.png",name:"预警",bgc:"linear-gradient(to right,#FF585D ,#FF4F52)"},{url:"/static/index/video/videotopright/2.png",name:"外出",bgc:"linear-gradient(to right,#709EE2 ,#A0BFEC )"},{url:"/static/index/video/videotopright/3.png",name:"空闲",bgc:"linear-gradient(to right,#B7BCD0,#B7BCD0)"}]),r=e.ref([{url:"/static/index/video/kufang/00.png",targeturl:"/static/index/video/kufang/01.png",name:"盘点"},{url:"/static/index/video/kufang/10.png",targeturl:"/static/index/video/kufang/11.png",name:"请领"},{url:"/static/index/video/kufang/20.png",targeturl:"/static/index/video/kufang/21.png",name:"退货"},{url:"/static/index/video/kufang/30.png",targeturl:"/static/index/video/kufang/31.png",name:"采购"},{url:"/static/index/video/kufang/40.png",targeturl:"/static/index/video/kufang/41.png",name:"指令"}]),c=e.ref([{url:"/static/index/video/videotopright/4.png",name:"启用",bgc:"linear-gradient(to right,#008AFF,#01BCFF)"},{url:"/static/index/video/videotopright/5.png",name:"停用",bgc:"linear-gradient(to right,#B7BCD0,#B7BCD0)"}]),s=e.ref([{url:"/static/index/video/videoright/00.png",targeturl:"/static/index/video/videoright/01.png"},{url:"/static/index/video/videoright/10.png",targeturl:"/static/index/video/videoright/11.png"},{url:"/static/index/video/videoright/20.png",targeturl:"/static/index/video/videoright/21.png"},{url:"/static/index/video/videoright/30.png",targeturl:"/static/index/video/videoright/31.png"},{url:"/static/index/video/videoright/40.png",targeturl:"/static/index/video/videoright/41.png"}]),d=e.ref([{cardtype:0,states:0,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:0,states:1,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:0,states:2,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:0,states:3,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:0,states:0,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:0,movestates:0,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:1,movestates:1,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:0,movestates:2,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:0,movestates:3,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:0,movestates:4,buttontarget:[!1,!1,!1,!1,!1]}]),m=e.ref([]),u=e.ref(!0);e.ref("");const v=e.ref(["全部"," 护理单元","配务室","库房"]);e.watch((()=>a.isShow),((e,t)=>{!t&&e&&(u.value=!1,setTimeout((()=>u.value=!0),50),g.value=0,m.value=JSON.parse(JSON.stringify(d.value)))}));const p=e.ref("");o((()=>{p.value=uni.getStorageSync("realname"),m.value=JSON.parse(JSON.stringify(d.value))}));const g=e.ref(0),w=()=>{uni.navigateTo({url:"/pages/NursingNew/index"})},h=()=>{uni.navigateTo({url:"/pages/Warehousing/index"})};return(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(u.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{style:{display:"flex",position:"relative","margin-left":"-30rpx"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(v.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"tab",onClick:e=>(e=>{if(g.value!==e)switch(g.value=e,e){case 0:m.value=JSON.parse(JSON.stringify(d.value));break;case 1:m.value=[],d.value.forEach((e=>{e.cardtype||m.value.push(e)}));break;case 2:m.value=[];break;case 3:m.value=[],d.value.forEach((e=>{1===e.cardtype&&m.value.push(e)}));break;default:return""}})(l)},[e.createElementVNode("view",{style:e.normalizeStyle([g.value===l?{fontWeight:800}:{},{"z-index":"1"}])},e.toDisplayString(t),5),e.withDirectives(e.createElementVNode("view",{class:"tab-heng"},null,512),[[e.vShow,g.value===l]])],8,["onClick"])))),128)),e.createElementVNode("view",{class:"right-title-father"},[e.createElementVNode("view",{style:{"margin-right":"20rpx"}}," 长春市朝阳区久泰开运养老服务有限公司 ")])]),e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"calc(100% - 10rpx)"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"scroll-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[t.cardtype?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"card",style:e.normalizeStyle(1===t.states?{border:"2rpx solid red",boxShadow:"none"}:{})},[e.createElementVNode("view",{class:"card-left"},[e.createElementVNode("view",{class:"card-left-title"},[e.createElementVNode("view",{class:"left-view"},[e.createElementVNode("image",{class:"left-view-img",src:N}),e.createElementVNode("view",null,[e.createElementVNode("view",{class:"top-font-line"},[e.createElementVNode("view",{class:"line-weight"},"王金凤"),e.createElementVNode("view",{class:"line-margin"}," 女 "),e.createElementVNode("view",null," 80岁 "),e.createElementVNode("view",{style:{"margin-left":"20rpx"}}," 2025.01.01 ")]),e.createElementVNode("view",{class:"top-font-line"},[e.createElementVNode("view",{class:"font-gray"}," 省医保 | 重度失能 | 正常缴费 ")])])]),e.createElementVNode("view",{class:"right-spec"}," 护理单元 ")]),e.createElementVNode("view",{class:"bottom-balls"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"one-ball-father"},e.toDisplayString(t),1)))),128))]),e.createElementVNode("view",{class:"topright-ball"},[e.createElementVNode("image",{class:"ball-righttop",src:`/static/index/video/videobottom/${1===t.states?1:0}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"right-balls"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,a)=>{var i,n;return e.openBlock(),e.createElementBlock("view",{key:a,class:"blue-ball-father",onClick:e=>d.value[l].buttontarget[a]=!d.value[l].buttontarget[a]},[e.createElementVNode("image",{class:"blue-ball",src:(null==(i=d.value[l])?void 0:i.buttontarget[a])?t.targeturl:t.url},null,8,["src"]),e.withDirectives(e.createElementVNode("image",{style:{position:"absolute",bottom:"0",left:"50%",transform:"translateX(-50%)",width:"100%",height:"80%"},src:Je},null,512),[[e.vShow,null==(n=d.value[l])?void 0:n.buttontarget[a]]])],8,["onClick"])})),128))]),e.createElementVNode("image",{class:"video-img",src:Xe}),e.createElementVNode("view",{class:"video-bottom"},[e.createElementVNode("view",{class:"blue-button"}," 服务指令 "),e.createElementVNode("view",{class:""}," NUID:2506000001 "),e.createElementVNode("view",{class:"bottom-shu"},"|"),e.createElementVNode("view",{class:""}," 未命名01 ")])]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"split-line-white-sec"}),e.createElementVNode("view",{class:"right-title"},[e.createElementVNode("view",{class:"right-other",style:e.normalizeStyle(`background: ${n.value[t.states].bgc};`)},[e.createElementVNode("image",{class:"other-class",src:n.value[t.states].url},null,8,["src"]),e.createElementVNode("view",{class:"other-font"},e.toDisplayString(n.value[t.states].name),1)],4)]),1!=t.states&&t.states?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,style:{width:"100%",position:"relative"}},[e.createElementVNode("view",{class:"time"},[e.createElementVNode("view",{class:"time-left"},[e.createElementVNode("view",{class:""}," 10:00~10:10 ")])]),e.createElementVNode("view",{style:{width:"100%",display:"flex","align-items":"center","flex-direction":"column",position:"relative"}},[e.createElementVNode("view",{class:"time-right"}," 待执行 "),e.createElementVNode("image",{class:"time-img",src:E,onClick:w}),e.createElementVNode("view",{class:"small-button"},[e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:j})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:q})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:R})])]),e.createElementVNode("view",{class:"time-weight"}," 准备洁具(口腔) ")]),e.createElementVNode("view",{class:"time-people-two",style:{"margin-top":"20rpx"}},[e.createElementVNode("image",{class:"time-people-img",src:Ze}),e.createElementVNode("text",{class:"time-people-font"}," 单人执行 ")]),e.createElementVNode("view",{class:"time-people-two"},[e.createElementVNode("image",{class:"time-people-img",src:He}),e.createElementVNode("text",{class:"time-people-font"}," 王金福 / 李贵田 ")])])),2==t.states?(e.openBlock(),e.createElementBlock("view",{key:1,style:{width:"100%",height:"100%",display:"flex","justify-content":"center","align-items":"center","flex-direction":"column"}},[e.createElementVNode("image",{class:"fail-img",src:"/static/index/video/videotopright/goto.png",onClick:w}),e.createElementVNode("view",{class:"fail-text"}," 长者外出 ")])):e.createCommentVNode("",!0),3==t.states?(e.openBlock(),e.createElementBlock("view",{key:2,style:{width:"100%",height:"100%",display:"flex","justify-content":"center","align-items":"center","flex-direction":"column"}},[e.createElementVNode("image",{class:"fail-img-spec",src:"/static/index/video/videotopright/none.png",onClick:w}),e.createElementVNode("view",{class:"fail-text-spec"}," 暂无长者入住 ")])):e.createCommentVNode("",!0)])],4)),t.cardtype?(e.openBlock(),e.createElementBlock("view",{key:1,class:"card"},[e.createElementVNode("view",{class:"card-left"},[e.createElementVNode("view",{class:"card-left-title"},[e.createElementVNode("view",{class:"left-view"},[e.createElementVNode("image",{class:"left-view-img",src:"/static/index/badman.png",style:{width:"70rpx",height:"80rpx"}}),e.createElementVNode("view",{style:{"margin-left":"10rpx",width:"150rpx"}},[e.createElementVNode("view",{style:{"font-size":"35rpx","font-weight":"600","margin-top":"20rpx","margin-left":"10rpx"}}," 欧阳三四")]),e.createElementVNode("view",{style:{display:"flex","align-items":"center",position:"absolute",top:"50%",transform:"translateY(-50%)",right:"0"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.value,((l,a)=>(e.openBlock(),e.createElementBlock("view",{style:{margin:"0 15rpx",display:"flex","flex-direction":"column","align-items":"center",position:"relative"},key:a},[e.createElementVNode("image",{class:"kufang-img",src:t.movestates===a?l.targeturl:l.url},null,8,["src"]),e.createElementVNode("view",{style:e.normalizeStyle([{"font-size":"20rpx"},t.movestates===a?{color:"#0096ff"}:{}])},e.toDisplayString(l.name),5)])))),128))])])]),e.createElementVNode("view",{class:"bottom-balls"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"one-ball-father"},e.toDisplayString(t),1)))),128))]),e.createElementVNode("view",{class:"topright-ball"},[e.createElementVNode("image",{class:"ball-righttop",src:`/static/index/video/videobottom/${1===t.states?1:0}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"right-balls"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,a)=>{var i,n,r;return e.openBlock(),e.createElementBlock("view",{key:a,class:e.normalizeClass((null==(i=d.value[l])?void 0:i.buttontarget[a])?"blue-ball-father-target":"blue-ball-father"),onClick:e=>d.value[l].buttontarget[a]=!d.value[l].buttontarget[a]},[e.createElementVNode("image",{class:"blue-ball",src:(null==(n=d.value[l])?void 0:n.buttontarget[a])?t.targeturl:t.url},null,8,["src"]),e.withDirectives(e.createElementVNode("image",{style:{position:"absolute",bottom:"0",left:"50%",transform:"translateX(-50%)",width:"100%",height:"80%"},src:Je},null,512),[[e.vShow,null==(r=d.value[l])?void 0:r.buttontarget[a]]])],10,["onClick"])})),128))]),e.createElementVNode("image",{class:"video-img",src:Xe}),e.createElementVNode("view",{class:"video-bottom"},[e.createElementVNode("view",{class:"font-bottom-weight"}," 库房 "),e.createElementVNode("view",{class:"bottom-shu"},"|"),e.createElementVNode("view",{class:""}," NUID:2506000001 "),e.createElementVNode("view",{class:"bottom-shu"},"|"),e.createElementVNode("view",{class:""}," 库房01 ")])]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"split-line-white-sec"}),e.createElementVNode("view",{class:"right-title"},[e.createElementVNode("view",{class:"right-other",style:e.normalizeStyle(`background: ${c.value[t.states].bgc};`)},[e.createElementVNode("image",{class:"other-class",src:c.value[t.states].url},null,8,["src"]),e.createElementVNode("view",{class:"other-font"},e.toDisplayString(c.value[t.states].name),1)],4)]),t.states?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,style:{width:"100%",position:"relative"}},[e.createElementVNode("view",{class:"time"},[e.createElementVNode("view",{class:"time-left"},[e.createElementVNode("view",{class:""}," 10:00~10:10 ")])]),e.createElementVNode("view",{style:{width:"100%",display:"flex","align-items":"center","flex-direction":"column",position:"relative"}},[e.createElementVNode("view",{class:"time-right"}," 待执行 "),e.createElementVNode("image",{class:"time-img",src:E,onClick:h}),e.createElementVNode("view",{class:"small-button"},[e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:j})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:q})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:R})])]),e.createElementVNode("view",{class:"time-weight"}," 准备洁具(口腔) ")]),e.createElementVNode("view",{class:"time-people-two",style:{"margin-top":"20rpx"}},[e.createElementVNode("image",{class:"time-people-img",src:Ze}),e.createElementVNode("text",{class:"time-people-font"}," 单人执行 ")]),e.createElementVNode("view",{class:"time-people-two"},[e.createElementVNode("image",{class:"time-people-img",src:He}),e.createElementVNode("text",{class:"time-people-font"}," 王金福 / 李贵田 ")])])),1==t.states?(e.openBlock(),e.createElementBlock("view",{key:1,style:{width:"100%",height:"100%",display:"flex","justify-content":"center","align-items":"center","flex-direction":"column"}},[e.createElementVNode("image",{class:"fail-img",style:{width:"150rpx",height:"180rpx"},src:"/static/index/video/videotopright/stop.png",onClick:h}),e.createElementVNode("view",{class:"fail-text"}," 库房已停用 ")])):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0)])))),128))])])])],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-01c2b33c"]]),Qe=s(e.defineComponent({__name:"settings",props:{isShow:{type:Boolean,required:!0}},emits:["jump"],setup(t,{emit:l}){const a=e.ref(null),i=e.ref(!1),n=e.ref(!1),r=e.ref(!1),o=e.ref(!1),s=e.ref(!1),v=l,p=t,g=e.ref(["雷达扫描","扫码添加","手动录入","修改密码","切换机构","检查更新","用户协议","隐私政策"]),w=e.ref(!0);e.ref(""),e.watch((()=>p.isShow),((e,t)=>{!t&&e&&(w.value=!1,setTimeout((()=>w.value=!0),50))}));const h=e.ref(!1),f=e=>{var t;switch(e){case 0:case 1:case 2:v("jump",e);break;case 3:s.value=!0;break;case 4:break;case 5:i.value=!0,null==(t=a.value)||t.check_update();break;case 6:n.value=!0,r.value=!0,h.value=!1,setTimeout((()=>{h.value=!0}),50);break;case 7:n.value=!0,r.value=!1,h.value=!1,setTimeout((()=>{h.value=!0}),50)}},N=()=>{p.isShow&&i.value&&uni.showToast({title:"已经是最新版了",icon:"none",duration:2e3})};return(l,i)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(w.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{style:{"margin-right":"40rpx"}},"长春市朝阳区久泰开运养老服务有限公司")]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value.slice(0,3),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>f(l)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"array-father",style:{margin:"30rpx 0"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value.slice(3,5),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>f(l+3)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l+3}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value.slice(5,8),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>f(l+5)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l+5}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"bottom-button",onClick:i[0]||(i[0]=e=>o.value=!0)}," 注销登录 "),e.createVNode(Q,{show:o.value,onClose:i[1]||(i[1]=e=>o.value=!1)},null,8,["show"]),e.createVNode(K,{show:s.value,onClose:i[2]||(i[2]=e=>s.value=!1)},null,8,["show"]),e.createVNode(d,{ref_key:"zyupgrade",ref:a,noticeflag:!0,theme:"blue",h5preview:!1,oldversion:"1.0.0",appstoreflag:!0,autocheckupdate:!0,onShowupdateTips:N},null,512),n.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-any",style:e.normalizeStyle(h.value?{opacity:1}:{opacity:0})},[e.createElementVNode("view",{class:"mask",onClick:i[3]||(i[3]=e=>n.value=!1)}),e.createElementVNode("view",{class:"box-any"},[e.createElementVNode("view",{class:"title-left"},[e.createElementVNode("image",{class:"back-img",src:c,onClick:i[4]||(i[4]=e=>n.value=!1)}),r.value?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"back-font"},"NU护理单元隐私信息保护政策")),r.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"back-font"},"NU护理单元用户服务协议")):e.createCommentVNode("",!0)]),r.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(u,{key:0})),r.value?(e.openBlock(),e.createBlock(m,{key:1})):e.createCommentVNode("",!0)])],4)):e.createCommentVNode("",!0)],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-db2cf42d"]]),Ke=s(e.defineComponent({__name:"leida",props:{isShow:{type:Boolean,required:!0}},emits:["nav"],setup(t,{emit:a}){const i=t,n=e.ref(""),r=e.ref(-1),o=e.ref(!0),c=e.ref(1),s=e.ref(0),d=e.ref(null),m=e.ref([{url:"/static/index/leida/00.png",targetUrl:"/static/index/leida/01.png",target:!1},{url:"/static/index/leida/10.png",targetUrl:"/static/index/leida/11.png",target:!1},{url:"/static/index/leida/20.png",targetUrl:"/static/index/leida/21.png",target:!1},{url:"/static/index/leida/30.png",targetUrl:"/static/index/leida/31.png",target:!1}]),u=e.ref([]),v=e.ref([]);function p(){if(1==c.value){r.value=-1,function(){const t=v.value.length;u.value=[];const l=Array.from({length:t},(()=>Math.random())),a=l.reduce(((e,t)=>e+t),0),i=l.map((e=>e/a*5e3));let n=0;for(let r=0;r{u.value.push(v.value[r]);const t=u.value.length;t>=5&&t%2==1&&(s.value=999,await e.nextTick(),s.value=99999)}),n)}(),c.value=0;const t=setInterval((()=>{c.value+=.01,c.value>=1&&(c.value=1,clearInterval(t))}),50)}}e.watch((()=>i.isShow),((e,t)=>{!t&&e&&(o.value=!1,setTimeout((()=>o.value=!0),50),re().then((e=>{e.result.records.forEach((e=>{e.menu=JSON.parse(JSON.stringify(m.value)),e.isNew=!0})),v.value=e.result.records,l("log","at component/Initialization/leida.vue:123","????",v.value),p()})))}));return e.onMounted((()=>{})),(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(o.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-content-title"},[e.createElementVNode("view",{class:"shu"}),e.createElementVNode("view",{class:"shu-font"},"长春市朝阳区久泰开运养老服务有限公司")]),e.createElementVNode("view",{class:"leida"},[e.createElementVNode("view",{class:"kutong-father"},[e.createElementVNode("image",{class:"kutong-img",src:"/static/index/leida/leidabgc.png"}),e.createElementVNode("image",{class:e.normalizeClass(["kutong-shan",c.value<1?"spin-anim":"no-anim"]),src:"/static/index/leida/shan.png"},null,2),e.createElementVNode("view",{class:"huan"},[e.createElementVNode("view",{class:e.normalizeClass(["quarter-ring",c.value<1?"spin-anim-spec":"no-anim-spec"])},null,2)])]),e.createElementVNode("view",{class:"jindutiao"},[e.createElementVNode("view",{class:"progress-fill",style:e.normalizeStyle({transform:`scaleX(${c.value})`})},null,4)]),e.createElementVNode("view",{class:"color-font",style:{"margin-top":"80rpx"}},e.toDisplayString(c.value>=1?"扫描完成。":"正在使用雷达区域扫描护理机构,"),1),e.createElementVNode("view",{class:"color-font"},e.toDisplayString(c.value>=1?"":"请稍后..."),1),e.createElementVNode("view",{class:"agagin-button",onClick:p},"重新扫描")]),e.createElementVNode("view",{class:"other"},[e.createElementVNode("scroll-view",{ref_key:"scrollViewRef",ref:d,"scroll-y":"",class:"other-father","scroll-top":s.value},[e.createElementVNode("view",{class:"card-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["card",{"fade-in":t.isNew}]),key:l,onAnimationend:e=>{t.isNew=!1}},[e.createElementVNode("view",{class:"card-title"},[e.createElementVNode("view",{style:{"font-size":"25rpx"}},"NUID:"+e.toDisplayString(t.nuId),1),e.createElementVNode("view",{class:"right-box"},"护理单元")]),e.createElementVNode("view",{class:"card-middle"},[e.createElementVNode("view",{class:"video-box",onClick:a[0]||(a[0]=e=>r.value=-1)},[e.createElementVNode("image",{class:"video-box-img",src:"/static/index/leida/video.png"})]),e.createElementVNode("view",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.menu,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>{t.target=!t.target,r.value=-1}},[e.createElementVNode("view",{class:"small-menu"},[e.createElementVNode("image",{class:"small-img",src:t.target?t.targetUrl:t.url},null,8,["src"])])],8,["onClick"])))),128))])]),e.createElementVNode("view",{class:"card-bottom"},[e.createTextVNode(e.toDisplayString(t.nuName)+" ",1),e.createElementVNode("image",{class:"bottom-img",src:"/static/index/leida/rename.png",onClick:e=>{r.value=l,n.value=t.nuName}},null,8,["onClick"])]),r.value==l?(e.openBlock(),e.createElementBlock("view",{key:0,class:"rename-father"},[e.createElementVNode("view",{class:"rename-title"}," 重命名 "),e.createElementVNode("view",{class:"rename-gray"}," NUID:20241001001 "),e.createElementVNode("view",{class:"rename-input"},[e.createElementVNode("image",{class:"left-img",src:"/static/index/click.png"}),e.withDirectives(e.createElementVNode("input",{class:"uni-input",placeholder:"请重新命名","onUpdate:modelValue":a[1]||(a[1]=e=>n.value=e)},null,512),[[e.vModelText,n.value]]),e.withDirectives(e.createElementVNode("image",{class:"right-img",src:ne,onClick:a[2]||(a[2]=e=>n.value="")},null,512),[[e.vShow,n.value]])]),e.createElementVNode("view",{class:"blue-button",onClick:e=>{return t=n.value,a=l,t&&(u.value[a].nuName=t),void(r.value=-1);var t,a}}," 确定 ",8,["onClick"])])):e.createCommentVNode("",!0)],42,["onAnimationend"])))),128))])],8,["scroll-top"])])])],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-08e03fe2"]]),et=s(e.defineComponent({__name:"saoma",props:{isShow:{type:Boolean,required:!0}},emits:["nav"],setup(t,{emit:l}){const a=t,i=e.ref(!0);function n(){uni.scanCode({onlyFromCamera:!0,scanType:["qrCode","barCode"],success(e){},fail(e){uni.showToast({title:"扫码失败:"+e.errMsg,icon:"none"})}})}return e.watch((()=>a.isShow),((e,t)=>{!t&&e&&(i.value=!1,setTimeout((()=>i.value=!0),50))})),(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(i.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-content-title"},[e.createElementVNode("view",{class:"shu"}),e.createElementVNode("view",{class:"shu-font"},"长春市朝阳区久泰开运养老服务有限公司")])]),e.createElementVNode("view",{class:"saomiao",onClick:n},[e.createElementVNode("view",{class:"saomiao-son"},[e.createElementVNode("view",{class:"saomiao-son-son"},[e.createElementVNode("view",{class:"saomiao-son-son-img"})])])])],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-3c477a5f"]]),tt=s(e.defineComponent({__name:"input",props:{isShow:{type:Boolean,required:!0}},emits:["nav"],setup(t,{emit:l}){const a=t,i=e.ref(!0),n=e.ref("");return e.watch((()=>a.isShow),((e,t)=>{!t&&e&&(i.value=!1,setTimeout((()=>i.value=!0),50))})),(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(i.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-content-title"},[e.createElementVNode("view",{class:"shu"}),e.createElementVNode("view",{class:"shu-font"},"长春市朝阳区久泰开运养老服务有限公司")])]),e.createElementVNode("view",{class:"saomiao"},[e.createElementVNode("view",{class:"big-ball"},[e.createElementVNode("view",{class:"ball"})]),e.createElementVNode("image",{class:"left-img",src:te}),e.withDirectives(e.createElementVNode("input",{class:"saoma-input",password:!1,"onUpdate:modelValue":a[0]||(a[0]=e=>n.value=e),placeholder:"请手动录入NUID"},null,512),[[e.vModelText,n.value]]),e.withDirectives(e.createElementVNode("image",{class:"right-img",src:le,onClick:a[1]||(a[1]=e=>n.value="")},null,512),[[e.vShow,n.value]]),e.createElementVNode("view",{class:"blue-button"}," 确定 ")]),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-5fc7e05c"]]),lt=s(e.defineComponent({__name:"index",setup(t){const a=e.ref(!1),i=e.ref(0);e.ref(!1),e.ref(!1);const n=e.ref([{url:"/static/index/relindex/index.png",targetUrl:"/static/index/relindex/indexblue.png",name:"首页",pao:0},{url:"/static/index/relindex/fuwu.png",targetUrl:"/static/index/relindex/fuwublue.png",name:"服务考核",pao:0},{url:"/static/index/relindex/jigou.png",targetUrl:"/static/index/relindex/jigoublue.png",name:"机构功能1",pao:0},{url:"/static/index/relindex/jigou.png",targetUrl:"/static/index/relindex/jigoublue.png",name:"机构功能2",pao:0},{url:"/static/index/relindex/shezhi.png",targetUrl:"/static/index/relindex/shezhiblue.png",name:"设置",pao:0},{url:"/static/index/newindex/curve/return_8.png",targetUrl:"/static/index/newindex/curve/return_1.png",name:"返回",pao:0}]);e.ref([{url:"/static/index/topright/title/0.png",name:"切换机构"},{url:"/static/index/topright/title/1.png",name:"修改密码"},{url:"/static/index/topright/title/2.png",name:"注销账号"}]),e.ref([{url:"/static/index/topright/scan/00.png",targetUrl:"/static/index/topright/scan/01.png",name:"雷达扫描"},{url:"/static/index/topright/scan/10.png",targetUrl:"/static/index/topright/scan/11.png",name:"扫码添加"},{url:"/static/index/topright/scan/20.png",targetUrl:"/static/index/topright/scan/21.png",name:"手动录入"}]);const r=e=>{5===e&&uni.navigateBack(),i.value=e},c=e=>{switch(e){case 0:i.value=-2;break;case 1:i.value=-3;break;case 2:i.value=-4}},s=e=>{switch(e){case 0:i.value=-2;break;case 1:i.value=-3;break;case 2:i.value=-4}},d=e.ref("");return o((e=>{l("log","at pages/Initialization/index.vue:135","???",e.menu),e.menu?i.value=e.menu:i.value=0,d.value=uni.getStorageSync("realname")})),(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(a.value?"darkbackgroundContainer":"backgroundContainer")},[e.createElementVNode("view",{class:"index-content"},[e.createElementVNode("view",{class:"index-content-leftMenus"},[e.createElementVNode("view",{class:"index-title-title"},[e.createElementVNode("image",{class:"index-title-left-img",src:y}),e.createElementVNode("view",{class:"index-title-left-font"},e.toDisplayString(d.value),1)]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"blue-circle-pos"},[e.withDirectives(e.createElementVNode("view",{class:"blue-circle"},[e.createElementVNode("image",{class:"blue-circle-size",src:"/static/index/ray.png"},null,8,["src"])],512),[[e.vShow,l===i.value]]),t.pao?(e.openBlock(),e.createElementBlock("view",{key:0,class:"red-pao",onClick:e=>r(l)},e.toDisplayString(t.pao>99?"99+":t.pao),9,["onClick"])):e.createCommentVNode("",!0),e.createElementVNode("image",{class:"left-img",src:l===i.value?t.targetUrl:t.url,onClick:e=>r(l)},null,8,["src","onClick"]),e.createElementVNode("view",{class:e.normalizeClass(l===i.value?"left-img-font-target":"left-img-font"),onClick:e=>r(l)},e.toDisplayString(t.name),11,["onClick"])])))),128))]),e.createVNode(Ge,{isShow:0==i.value},null,8,["isShow"]),e.createVNode(Qe,{isShow:4==i.value,onJump:c},null,8,["isShow"]),e.createVNode(Ge,{isShow:-1==i.value,onNav:s},null,8,["isShow"]),e.createVNode(Ke,{isShow:-2==i.value},null,8,["isShow"]),e.createVNode(et,{isShow:-3==i.value},null,8,["isShow"]),e.createVNode(tt,{isShow:-4==i.value},null,8,["isShow"])])],2))}}),[["__scopeId","data-v-aebf66be"]]);"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self&&self;function at(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var it={exports:{}};it.exports=function(e){function t(a){if(l[a])return l[a].exports;var i=l[a]={i:a,l:!1,exports:{}};return e[a].call(i.exports,i,i.exports,t),i.l=!0,i.exports}var l={};return t.m=e,t.c=l,t.d=function(e,l,a){t.o(e,l)||Object.defineProperty(e,l,{configurable:!1,enumerable:!0,get:a})},t.n=function(e){var l=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(l,"a",l),l},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=0)}([function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0});var a,i=l(1),n=(a=i)&&a.__esModule?a:{default:a};t.default=n.default,e.exports=t.default},function(e,t,l){function a(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=a(l(2)),n=a(l(3)),r=a(l(4)),o=a(l(5)),c=a(l(6)),s=a(l(7)),d=a(l(8)),m=a(l(9)),u=a(l(10)),v=a(l(11)),p=a(l(12)),g={lunarInfo:i.default,solarMonth:n.default,gan:r.default,zhi:o.default,animals:c.default,lunarTerm:s.default,lTermInfo:d.default,nStr1:m.default,nStr2:u.default,nStr3:v.default,nStr4:p.default,lYearDays:function(e){var t,l=348;for(t=32768;t>8;t>>=1)l+=g.lunarInfo[e-1900]&t?1:0;return l+g.leapDays(e)},leapMonth:function(e){return 15&g.lunarInfo[e-1900]},leapDays:function(e){return g.leapMonth(e)?65536&g.lunarInfo[e-1900]?30:29:0},monthDays:function(e,t){return t>12||t<1?-1:g.lunarInfo[e-1900]&65536>>t?30:29},solarDays:function(e,t){if(t>12||t<1)return-1;var l=t-1;return 1==l?e%4==0&&e%100!=0||e%400==0?29:28:g.solarMonth[l]},toGanZhi:function(e){return g.gan[e%10]+g.zhi[e%12]},getTerm:function(e,t){if(e<1900||e>2100)return-1;if(t<1||t>24)return-1;var l=g.lTermInfo[e-1900],a=[parseInt("0x"+l.substr(0,5)).toString(),parseInt("0x"+l.substr(5,5)).toString(),parseInt("0x"+l.substr(10,5)).toString(),parseInt("0x"+l.substr(15,5)).toString(),parseInt("0x"+l.substr(20,5)).toString(),parseInt("0x"+l.substr(25,5)).toString()],i=[a[0].substr(0,1),a[0].substr(1,2),a[0].substr(3,1),a[0].substr(4,2),a[1].substr(0,1),a[1].substr(1,2),a[1].substr(3,1),a[1].substr(4,2),a[2].substr(0,1),a[2].substr(1,2),a[2].substr(3,1),a[2].substr(4,2),a[3].substr(0,1),a[3].substr(1,2),a[3].substr(3,1),a[3].substr(4,2),a[4].substr(0,1),a[4].substr(1,2),a[4].substr(3,1),a[4].substr(4,2),a[5].substr(0,1),a[5].substr(1,2),a[5].substr(3,1),a[5].substr(4,2)];return parseInt(i[t-1])},toChinaYear:function(e){var t=parseInt(e/1e3),l=parseInt(e%1e3/100),a=parseInt(e%100/10),i=e%10;return g.nStr4[t]+g.nStr4[l]+g.nStr4[a]+g.nStr4[i]+"年"},toChinaMonth:function(e){return e>12||e<1?-1:g.nStr3[e-1]+"月"},toChinaDay:function(e){var t;switch(e){case 10:t="初十";break;case 20:t="二十";break;case 30:t="三十";break;default:t=g.nStr2[Math.floor(e/10)],t+=g.nStr1[e%10]}return t},getAnimal:function(e){return g.animals[(e-4)%12]},solar2lunar:function(e,t,l){if(e<1900||e>2100)return-1;if(1900==e&&1==t&&l<31)return-1;if(e)var a=new Date(e,parseInt(t)-1,l);else a=new Date;var i,n=0,r=0,o=(e=a.getFullYear(),t=a.getMonth()+1,l=a.getDate(),(Date.UTC(a.getFullYear(),a.getMonth(),a.getDate())-Date.UTC(1900,0,31))/864e5);for(i=1900;i<2101&&o>0;i++)o-=r=g.lYearDays(i);o<0&&(o+=r,i--);var c=new Date,s=!1;c.getFullYear()==e&&c.getMonth()+1==t&&c.getDate()==l&&(s=!0);var d=a.getDay(),m=g.nStr1[d];0==d&&(d=7);var u=i,v=(n=g.leapMonth(i),!1);for(i=1;i<13&&o>0;i++)n>0&&i==n+1&&0==v?(--i,v=!0,r=g.leapDays(u)):r=g.monthDays(u,i),1==v&&i==n+1&&(v=!1),o-=r;0==o&&n>0&&i==n+1&&(v?v=!1:(v=!0,--i)),o<0&&(o+=r,--i);var p=i,w=o+1,h=t-1,f=g.getTerm(e,3),N=g.toGanZhi(e-4),y=new Date(e,1,f).getTime();new Date(e,h,l).getTime()=x&&(V=g.toGanZhi(12*(e-1900)+t+12));var b=!1,k="";x==l&&(b=!0,k=g.lunarTerm[2*t-2]),E==l&&(b=!0,k=g.lunarTerm[2*t-1]);var T=Date.UTC(e,h,1,0,0,0,0)/864e5+25567+10,D=g.toGanZhi(T+l-1);return{lYear:u,lMonth:p,lDay:w,animal:g.getAnimal(u),yearCn:g.toChinaYear(u),monthCn:(v&&n===p?"闰":"")+g.toChinaMonth(p),dayCn:g.toChinaDay(w),cYear:e,cMonth:t,cDay:l,gzYear:N,gzMonth:V,gzDay:D,isToday:s,isLeap:v,nWeek:d,ncWeek:"星期"+m,isTerm:b,term:k}},lunar2solar:function(e,t,l,a){var i=g.leapMonth(e);if(g.leapDays(e),a&&i!=t)return-1;if(2100==e&&12==t&&l>1||1900==e&&1==t&&l<31)return-1;var n=g.monthDays(e,t);if(e<1900||e>2100||l>n)return-1;for(var r=0,o=1900;o0&&(r+=g.leapDays(e),s=!0),r+=g.monthDays(e,o);a&&(r+=n);var d=Date.UTC(1900,1,30,0,0,0),m=new Date(864e5*(r+l-31)+d),u=m.getUTCFullYear(),v=m.getUTCMonth()+1,p=m.getUTCDate();return g.solar2lunar(u,v,p)}};t.default=g,e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=[19416,19168,42352,21717,53856,55632,91476,22176,39632,21970,19168,42422,42192,53840,119381,46400,54944,44450,38320,84343,18800,42160,46261,27216,27968,109396,11104,38256,21234,18800,25958,54432,59984,28309,23248,11104,100067,37600,116951,51536,54432,120998,46416,22176,107956,9680,37584,53938,43344,46423,27808,46416,86869,19872,42416,83315,21168,43432,59728,27296,44710,43856,19296,43748,42352,21088,62051,55632,23383,22176,38608,19925,19152,42192,54484,53840,54616,46400,46752,103846,38320,18864,43380,42160,45690,27216,27968,44870,43872,38256,19189,18800,25776,29859,59984,27480,23232,43872,38613,37600,51552,55636,54432,55888,30034,22176,43959,9680,37584,51893,43344,46240,47780,44368,21977,19360,42416,86390,21168,43312,31060,27296,44368,23378,19296,42726,42208,53856,60005,54576,23200,30371,38608,19195,19152,42192,118966,53840,54560,56645,46496,22224,21938,18864,42359,42160,43600,111189,27936,44448,84835,37744,18936,18800,25776,92326,59984,27424,108228,43744,37600,53987,51552,54615,54432,55888,23893,22176,42704,21972,21200,43448,43344,46240,46758,44368,21920,43940,42416,21168,45683,26928,29495,27296,44368,84821,19296,42352,21732,53600,59752,54560,55968,92838,22224,19168,43476,42192,53584,62034,54560],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=[31,28,31,30,31,30,31,31,30,31,30,31],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["甲","乙","丙","丁","戊","己","庚","辛","壬","癸"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["子","丑","寅","卯","辰","巳","午","未","申","酉","戌","亥"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["鼠","牛","虎","兔","龙","蛇","马","羊","猴","鸡","狗","猪"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["小寒","大寒","立春","雨水","惊蛰","春分","清明","谷雨","立夏","小满","芒种","夏至","小暑","大暑","立秋","处暑","白露","秋分","寒露","霜降","立冬","小雪","大雪","冬至"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c3598082c95f8c965cc920f","97bd0b06bdb0722c965ce1cfcc920f","b027097bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd0b06bdb0722c965ce1cfcc920f","b027097bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd0b06bdb0722c965ce1cfcc920f","b027097bd097c36b0b6fc9274c91aa","9778397bd19801ec9210c965cc920e","97b6b97bd19801ec95f8c965cc920f","97bd09801d98082c95f8e1cfcc920f","97bd097bd097c36b0b6fc9210c8dc2","9778397bd197c36c9210c9274c91aa","97b6b97bd19801ec95f8c965cc920e","97bd09801d98082c95f8e1cfcc920f","97bd097bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c91aa","97b6b97bd19801ec95f8c965cc920e","97bcf97c3598082c95f8e1cfcc920f","97bd097bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c3598082c95f8c965cc920f","97bd097bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c3598082c95f8c965cc920f","97bd097bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd097bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd097bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd097bd07f595b0b6fc920fb0722","9778397bd097c36b0b6fc9210c8dc2","9778397bd19801ec9210c9274c920e","97b6b97bd19801ec95f8c965cc920f","97bd07f5307f595b0b0bc920fb0722","7f0e397bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c920e","97b6b97bd19801ec95f8c965cc920f","97bd07f5307f595b0b0bc920fb0722","7f0e397bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c91aa","97b6b97bd19801ec9210c965cc920e","97bd07f1487f595b0b0bc920fb0722","7f0e397bd097c36b0b6fc9210c8dc2","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf7f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf7f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf7f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf7f1487f531b0b0bb0b6fb0722","7f0e397bd07f595b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c9274c920e","97bcf7f0e47f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9210c91aa","97b6b97bd197c36c9210c9274c920e","97bcf7f0e47f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c920e","97b6b7f0e47f531b0723b0b6fb0722","7f0e37f5307f595b0b0bc920fb0722","7f0e397bd097c36b0b6fc9210c8dc2","9778397bd097c36b0b70c9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e37f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc9210c8dc2","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e27f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0787b0721","7f0e27f0e47f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9210c91aa","97b6b7f0e47f149b0723b0787b0721","7f0e27f0e47f531b0723b0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9210c8dc2","977837f0e37f149b0723b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e37f5307f595b0b0bc920fb0722","7f0e397bd097c35b0b6fc9210c8dc2","977837f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0721","7f0e37f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc9210c8dc2","977837f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","977837f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","977837f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","977837f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","977837f0e37f14998082b0787b06bd","7f07e7f0e47f149b0723b0787b0721","7f0e27f0e47f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","977837f0e37f14998082b0723b06bd","7f07e7f0e37f149b0723b0787b0721","7f0e27f0e47f531b0723b0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","977837f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e37f1487f595b0b0bb0b6fb0722","7f0e37f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e37f1487f531b0b0bb0b6fb0722","7f0e37f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e37f1487f531b0b0bb0b6fb0722","7f0e37f0e37f14898082b072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e37f0e37f14898082b072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e37f0e366aa89801eb072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f149b0723b0787b0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e37f0e366aa89801eb072297c35","7ec967f0e37f14998082b0723b06bd","7f07e7f0e47f149b0723b0787b0721","7f0e27f0e47f531b0723b0b6fb0722","7f0e37f0e366aa89801eb072297c35","7ec967f0e37f14998082b0723b06bd","7f07e7f0e37f14998083b0787b0721","7f0e27f0e47f531b0723b0b6fb0722","7f0e37f0e366aa89801eb072297c35","7ec967f0e37f14898082b0723b02d5","7f07e7f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e36665b66aa89801e9808297c35","665f67f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e36665b66a449801e9808297c35","665f67f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e36665b66a449801e9808297c35","665f67f0e37f14898082b072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e26665b66a449801e9808297c35","665f67f0e37f1489801eb072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["日","一","二","三","四","五","六","七","八","九","十"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["初","十","廿","卅"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["正","二","三","四","五","六","七","八","九","十","冬","腊"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["零","一","二","三","四","五","六","七","八","九","十"],e.exports=t.default}]);const nt=at(it.exports),rt=s({__name:"calendar",setup(t){const a=new Date,i=e.ref(a.getFullYear()),n=e.ref(a.getMonth()),r=e.ref(null),o=["一","二","三","四","五","六","日"],c=e.computed((()=>{const e=[],t=new Date(i.value,n.value,0),l=t.getFullYear(),a=t.getMonth(),r=t.getDate(),o=(c=i.value,s=n.value,(new Date(c,s,1).getDay()+6)%7);var c,s;for(let i=0;i(e.openBlock(),e.createElementBlock("view",{class:"calendar"},[e.createElementVNode("view",{class:"header"},[e.createElementVNode("view",{class:"header-title"},[e.createElementVNode("view",{class:"year-month"},e.toDisplayString(i.value)+"年"+e.toDisplayString(n.value+1)+"月",1),e.createElementVNode("view",{class:"botton-father"},[e.createElementVNode("view",{class:"click-button",onClick:s},"上个月"),e.createElementVNode("view",{class:"click-button",onClick:d},"下个月")])]),e.createElementVNode("view",{class:"weekdays"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(o,((t,l)=>e.createElementVNode("view",{key:l,class:"weekday"},e.toDisplayString(t),1))),64))])]),e.createElementVNode("view",{class:"days"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,(t=>{return e.openBlock(),e.createElementBlock("view",{key:t.key,class:e.normalizeClass(["day-cell",{"prev-month":t.prev,"next-month":t.next,selected:(a=t.key,r.value===a)}]),onClick:e=>function(e){e.prev||(r.value=e.key,l("log","at component/public/calendar.vue:91","Selected date:",e.key))}(t)},[e.createElementVNode("view",{class:"gregorian"},e.toDisplayString(t.dateText),1),t.lunarText?(e.openBlock(),e.createElementBlock("view",{key:0,class:"lunar"},e.toDisplayString(t.lunarText),1)):e.createCommentVNode("",!0)],10,["onClick"]);var a})),128))])]))}},[["__scopeId","data-v-0bf11501"]]),ot=s(e.defineComponent({__name:"index",setup(t){const l=e.ref(!1),a=e.ref(null),i=e=>{uni.navigateBack()};return o((e=>{})),n((()=>{var e;null==(e=a.value)||e.check_update()})),(t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"backgroundContainer"},[e.createElementVNode("view",{class:"assess-title"},[e.createElementVNode("view",{class:"left-icons"},[e.createElementVNode("image",{class:"left-icons-img",src:"/static/index/undericons/doublekuai.png"},null,8,["src"]),e.createElementVNode("view",{class:"right-icons-font"},"服务考核-"),e.createElementVNode("view",{class:"right-icons-text"},"批量考核")]),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(l.value?"right-icons-font-dark":"right-icons-font")},"王金福",2),e.createElementVNode("image",{class:"right-icons-img-icon",src:l.value?"/static/index/undericons/face.png":"/static/index/undericons/facelight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:l.value?"/static/index/undericons/hand.png":"/static/index/undericons/handlight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",onClick:i,src:l.value?"/static/index/undericons/out.png":"/static/index/undericons/outlight.png"},null,8,["src"])])]),e.createElementVNode("view",{class:"assess-another"},[e.createElementVNode("view",{class:"left-contain"},[e.createElementVNode("view",{class:"calendar"},[e.createVNode(rt)])])])]))}}),[["__scopeId","data-v-65a124ce"]]),ct=s(e.defineComponent({__name:"index",setup(t){e.ref(!1);const l=e.ref([]),a=e.ref(["全部","日常","周期"]),i=e.ref(0),n=e.ref(0);function r(e){let t=e.detail.scrollTop,l=parseFloat(t.toFixed(2));n.value=l}const c=e=>{if(i.value!==e)return"titlebutton";switch(e){case 0:return"titlebutton-target";case 1:return"titlebutton-target-yellow";case 2:return"titlebutton-target-pouple"}};function s(e){if(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}return[]}const d=e.ref(0),m=e.ref([]);o((e=>{let t=uni.getStorageSync("myArray");l.value=t,l.value[0].children.length<8&&l.value.forEach((e=>{for(;e.children.length<8;)e.children.push({directiveName:""})})),m.value=JSON.parse(JSON.stringify(l.value)),e.currentNumber&&(d.value=745*e.currentNumber)}));const u=e.ref(0),v=e.ref(0),p=e.ref(!1),g=e.ref(!1),w=e.ref(-1),h=e.ref(-1),f=()=>{uni.navigateBack()},N=()=>{let e=[];m.value.forEach(((t,l)=>{e=[],t.children.forEach(((t,l)=>{if(null===t.directiveName||""===t.directiveName||void 0===t.directiveName){m.value.every((e=>""===e.children[l].directiveName))&&e.push(l)}}))}));const t=[...e].sort(((e,t)=>t-e));m.value.forEach((e=>{t.forEach((t=>{e.children.splice(t,1)}))})),m.value[0].children.length<8&&m.value.forEach((e=>{for(;e.children.length<8;)e.children.push({directiveName:""})}))},y=e.ref(0),x=e.ref(null);function E(t,l,a,i){const n=Date.now();null!=x.value&&clearTimeout(x.value),n-y.value<250?(((e,t)=>{uni.navigateBack({delta:1,success:()=>{uni.$emit("where",{index0:e,index1:t})}})})(l,a),y.value=0):(x.value=setTimeout((()=>{((t,l,a,i)=>{t.directiveName&&(w.value=l,h.value=a,uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.dataset.index0==l&&t.dataset.index1==a&&(t.left<500?u.value=Math.floor(t.left)+510:u.value=Math.floor(t.left)-10,t.top<300?v.value=Math.floor(t.top)+250:v.value=Math.floor(t.top),await e.nextTick(),p.value=!0,g.value=!1,setTimeout((()=>{g.value=!0}),100))}))})).exec())})(t,l,a)}),250),y.value=n)}return(t,o)=>{var y,x,V;return e.openBlock(),e.createElementBlock("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"doctorsay-container-title"},[e.createElementVNode("view",{class:"doctorsay-container-left"},[e.createElementVNode("view",{class:"doctorsay-container-left-gun"}),e.createElementVNode("view",{class:"doctorsay-container-left-font"},"时间矩阵")]),e.createElementVNode("view",{class:"doctorsay-container-right"},[e.createElementVNode("view",{class:"titlebutton-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.value,((t,a)=>(e.openBlock(),e.createElementBlock("view",{key:a},[e.createElementVNode("view",{class:e.normalizeClass(c(a)),onClick:e=>(e=>{if(i.value!==e)switch(m.value=[],i.value=e,e){case 0:m.value=JSON.parse(JSON.stringify(l.value));break;case 1:m.value=JSON.parse(JSON.stringify(l.value)),m.value.forEach((e=>{e.children.forEach((e=>{e.directiveName&&"日常"!==e.cycleType&&(e.directiveName="",e.cycleType="",e.startTime="")}))})),N();break;case 2:m.value=JSON.parse(JSON.stringify(l.value)),m.value.forEach((e=>{e.children.forEach((e=>{e.directiveName&&"日常"===e.cycleType&&(e.directiveName="",e.cycleType="",e.startTime="")}))})),N()}})(a)},e.toDisplayString(t),11,["onClick"])])))),128))]),e.createElementVNode("view",{class:"doctorsay-container-right-kuai-cheng"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"日常"),e.createElementVNode("view",{class:"doctorsay-container-right-kuai-zi"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"周期"),e.createElementVNode("view",{class:"doctorsay-container-juzhen",onClick:f}," 返回 ")])]),e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("view",{class:"boom"},[e.createElementVNode("view",{style:e.normalizeStyle({marginTop:`-${2*n.value}rpx`})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(null==(y=m.value[0])?void 0:y.children,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(h.value===l?"boom-son-target":"boom-son")},e.toDisplayString(t.typeName),3),[[e.vShow,t.typeName]])])))),128))],4)]),e.createElementVNode("scroll-view",{style:{height:"100%",width:"100%"},"scroll-left":d.value,"scroll-x":"","show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",width:"5945rpx","box-shadow":"10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1)",background:"linear-gradient(to right, #c4dbf4,#c9c2ef, #c6dcf3)"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time"},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),1)])))),128))]),e.createElementVNode("view",{style:{display:"flex",height:"calc(100% - 80rpx)",width:"5945rpx"}},[e.createElementVNode("scroll-view",{"scroll-y":"","show-scrollbar":!1,onScroll:r},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time-und"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.children,((t,a)=>{return e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:a},[e.createElementVNode("view",{class:e.normalizeClass([w.value===l&&h.value===a?"title-time-border-blue":"","super-card-time-card"]),style:{position:"relative"},onTouchend:e=>E(t,l,a),"data-index0":l,"data-index1":a},[e.createElementVNode("view",{class:e.normalizeClass((i=t,"日常"===i.cycleType?"title-time-border-yellow":i.cycleType?"title-time-border-pouple":"title-time-border")),style:{"font-size":"30rpx",overflow:"hidden"}},[t.startTime?(e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"margin-top":"0rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"25rpx"}},e.toDisplayString(t.startTime+"-"+t.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==t.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(t.cycleType),1)])):e.createCommentVNode("",!0),e.createElementVNode("view",{style:e.normalizeStyle([s(t.directiveName)[1]?{}:{marginTop:"20rpx"},{"font-weight":"700","font-size":"24rpx"}])},e.toDisplayString(s(t.directiveName)[0]),5),s(t.directiveName)[1]?(e.openBlock(),e.createElementBlock("view",{key:1,class:"down-icons",style:e.normalizeStyle("日常"!=t.cycleType?{backgroundColor:"rgb(212,203,255)"}:{})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s(t.directiveName).slice(1),((l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:a},[e.createElementVNode("view",{class:"icon",style:e.normalizeStyle("日常"!=t.cycleType?{backgroundColor:"rgb(123,97,255)"}:{})},e.toDisplayString(s(t.directiveName)[a+1]),5)])))),128))],4)):e.createCommentVNode("",!0)],2)],42,["onTouchend","data-index0","data-index1"])]);var i})),128))])])))),128))])],32)])],8,["scroll-left"])])]),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay",onClick:o[1]||(o[1]=e=>p.value=!1)},[e.createElementVNode("view",{class:"popup-overlay-content",style:e.normalizeStyle({top:2*v.value-350+"rpx",left:2*u.value-780+"rpx",opacity:g.value?1:0,backgroundColor:"日常"===(null==(V=null==(x=l.value[h.value])?void 0:x.children[w.value])?void 0:V.type)?"#fffcf6":"rgb(246, 244, 254)"}),onClick:o[0]||(o[0]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"}," 占个位置 ")]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],4)],512),[[e.vShow,p.value]])])}}}),[["__scopeId","data-v-70d077f4"]]),st=s({__name:"specialDrawer",props:{widNumber:{type:Number,default:17}},setup(t,{expose:l}){const a=e.ref(!1),i=t,n=e.ref(0);e.onMounted((()=>{const e=uni.getSystemInfoSync();n.value=e.screenWidth})),e.ref(0);const r=e.ref(!0),o=e.ref(0),c=e.computed((()=>{const e=`${i.widNumber}%`;if(r.value){return{width:e,transform:`translateX(${o.value}px)`,transition:"none"}}return{width:e}}));function s(e){}function d(e){}function m(){}l({openDrawer:function(){a.value=!0},closeDrawer:function(){a.value=!0}});const u=e.ref(0);return e.computed((()=>({transform:`rotate(${u.value}deg)`,transition:"transform 0.6s ease"}))),(t,l)=>(e.openBlock(),e.createElementBlock("view",null,[e.createElementVNode("view",{class:e.normalizeClass(["drawer",{"drawer-open":a.value}]),style:e.normalizeStyle(c.value)},[e.createElementVNode("view",{class:"drawer-content",onTouchstartPassive:s,onTouchmovePassive:d,onTouchend:m,onTouchcancel:m},[e.renderSlot(t.$slots,"default",{},void 0,!0)],32)],6)]))}},[["__scopeId","data-v-7979ddf3"]]),dt=s(e.defineComponent({__name:"index",props:{changerightbottom:{type:String,default:"标准"}},emits:["clickball"],setup(t,{emit:l}){const a=e.ref([{name:"周期",url:""},{name:"放大",url:"/static/index/getbig.png"},{name:"日常",url:""},{name:"缩小",url:"/static/index/getsmall.png"},{name:"全部",url:""},{name:"标准",url:""}]),i=l;return(l,n)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"button-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.value,((l,a)=>(e.openBlock(),e.createElementBlock("view",{key:a,class:"white-ball",onClick:e=>(e=>{i("clickball",e)})(a)},[l.url?(e.openBlock(),e.createElementBlock("image",{key:0,style:{width:"50%",height:"50%"},src:l.url},null,8,["src"])):(e.openBlock(),e.createElementBlock("view",{key:1},e.toDisplayString(5===a?t.changerightbottom:l.name),1))],8,["onClick"])))),128))])]))}}),[["__scopeId","data-v-a6bada18"]]),mt=s(e.defineComponent({__name:"indexnew",setup(t){e.ref(!1);const l=e.ref([]);e.ref(["全部","日常","周期"]),e.ref(["放大","缩小"]);const a=e.ref(0);uni.getSystemInfoSync().windowWidth;const i=e=>{switch(e){case 0:b(2);break;case 1:v(0);break;case 2:b(1);break;case 3:v(1);break;case 4:b(0);break;case 5:7===d.value?T(!1):T(!0)}};function n(e){if(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}return[]}const r=e.ref(0),c=e.ref(0),s=e.ref([]),d=e.ref(0),m=e.ref(247),u=e.ref(180);e.ref(0),e.ref(0),o((e=>{let t=uni.getStorageSync("myArray");l.value=t,l.value[0].children.length<8&&l.value.forEach((e=>{for(;e.children.length<8;)e.children.push({directiveName:""})})),s.value=JSON.parse(JSON.stringify(l.value)),d.value=7,p()}));const v=e=>{e?d.value<24&&d.value++:d.value>7&&d.value--};function p(){if(g.value>=0&&g.value<=24&&w.value>=0&&w.value<=11){const e=(g.value+.5)*m.value,t=(w.value-.5)*u.value;r.value=e-1110,c.value=t-281.25;const l=24*m.value,a=11*u.value;r.value=Math.max(0,Math.min(r.value,l-2220))/2,c.value=Math.max(0,Math.min(c.value,a-562.5))/2}}const g=e.ref(10),w=e.ref(0);e.watch([g,w],(()=>{p()})),e.watch(d,((e,t)=>{if(t===e);else{switch(e){case 24:m.value=92.5,u.value=107;break;case 23:m.value=96.5,u.value=107;break;case 22:m.value=101,u.value=107;break;case 21:m.value=106,u.value=116;break;case 20:m.value=112,u.value=116;break;case 19:m.value=117,u.value=116;break;case 18:m.value=124,u.value=121;break;case 17:m.value=131,u.value=128;break;case 16:m.value=139,u.value=133;break;case 15:m.value=148,u.value=142;break;case 14:m.value=159,u.value=150;break;case 13:m.value=171,u.value=160;break;case 12:m.value=185,u.value=170;break;case 11:m.value=202,u.value=183;break;case 10:m.value=222,u.value=195;break;case 9:m.value=247,u.value=213;break;case 8:m.value=280,u.value=235;break;case 7:m.value=320,u.value=256}p()}}));const h=e.ref(0),f=e.ref(null);const N=e.ref(0),y=e.ref(0),x=e.ref(!1),E=e.ref(!1);e.ref(null);const V=(e,t)=>{uni.navigateBack({delta:1,success:()=>{uni.$emit("where",{index0:e,index1:t})}})},b=e=>{if(a.value!==e)switch(s.value=[],a.value=e,e){case 0:s.value=JSON.parse(JSON.stringify(l.value));break;case 1:s.value=JSON.parse(JSON.stringify(l.value)),s.value.forEach((e=>{e.children.forEach((e=>{e.directiveName&&"日常"!==e.cycleType&&(e.directiveName="",e.cycleType="",e.startTime="")}))}));break;case 2:s.value=JSON.parse(JSON.stringify(l.value)),s.value.forEach((e=>{e.children.forEach((e=>{e.directiveName&&"日常"===e.cycleType&&(e.directiveName="",e.cycleType="",e.startTime="")}))}))}},k=t=>{switch(x.value=!1,t){case 0:w.value>0&&w.value--;break;case 1:g.value<23&&g.value++;break;case 2:w.value<11&&w.value++;break;case 3:g.value>0&&g.value--;break;case 4:l=s.value[g.value].children[w.value],a=g.value,i=w.value,l.directiveName&&e.nextTick((()=>{uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.dataset.index0==a&&t.dataset.index1==i&&(t.left<500?N.value=Math.floor(t.left)+510:N.value=Math.floor(t.left)-10,t.top<300?y.value=Math.floor(t.top)+250:y.value=Math.floor(t.top),await e.nextTick(),x.value=!0,E.value=!1,setTimeout((()=>{E.value=!0}),100))}))})).exec()}));break;case 5:uni.navigateBack()}var l,a,i};function T(e){d.value=e?7:24}return(t,a)=>{var o,v;const p=e.resolveComponent("arrowkeys");return e.openBlock(),e.createElementBlock("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("scroll-view",{style:{height:"100%",width:"100%"},"scroll-left":r.value,"scroll-x":"","show-scrollbar":!1},[e.createElementVNode("view",{style:e.normalizeStyle([{width:24*m.value+"rpx"},{display:"flex"}])},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time",style:e.normalizeStyle({width:m.value+"rpx"})},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),5)])))),128))],4),e.createElementVNode("view",{style:e.normalizeStyle([{display:"flex",height:"calc(100% - 80rpx)",position:"relative"},{width:24*m.value+"rpx"}])},[e.createElementVNode("view",{class:"xian-bian"}),e.createElementVNode("scroll-view",{"scroll-y":"","show-scrollbar":!1,"scroll-top":c.value},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time-und",style:e.normalizeStyle({width:m.value+"rpx"})},[e.createElementVNode("view",{class:"bottom-bian"}),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.children,((t,a)=>{return e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:a},[e.createElementVNode("view",{style:e.normalizeStyle({height:u.value+"rpx"}),class:"super-card-time-card",onTouchend:e=>function(e,t,l){const a=Date.now();null!=f.value&&clearTimeout(f.value),a-h.value<250?(e.startTime&&V(t,l),h.value=0):(e.directiveName&&(g.value=t,w.value=l),h.value=a)}(t,l,a),"data-index0":l,"data-index1":a},[e.createElementVNode("view",{class:e.normalizeClass((i=t,"日常"===i.cycleType?"title-time-border-yellow":i.cycleType?"title-time-border-pouple":"title-time-border")),style:e.normalizeStyle([d.value>=11&&"日常"!==t.cycleType&&t.startTime?{backgroundColor:"#c5e5ff"}:{},{"font-size":"30rpx",position:"relative"}])},[e.withDirectives(e.createElementVNode("view",{class:"title-time-blue"},null,512),[[e.vShow,g.value==l&&w.value==a]]),t.startTime?(e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"flex-direction":"column",overflow:"hidden"}},[e.withDirectives(e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx",margin:"0 auto"},src:_},null,512),[[e.vShow,t.startTime]]),e.withDirectives(e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(t.startTime+"-"+t.endTime),513),[[e.vShow,d.value<10]]),"日常"!=t.cycleType?e.withDirectives((e.openBlock(),e.createElementBlock("image",{key:0,class:"title-time-button",style:{width:"80rpx",height:"48rpx"},src:se},null,512)),[[e.vShow,d.value<11]]):e.createCommentVNode("",!0),"日常"!=t.cycleType?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font",style:{right:"10rpx",top:"5rpx","font-size":"20rpx"}},e.toDisplayString(t.cycleType),513)),[[e.vShow,d.value<11]]):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0),t.startTime?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font-rel"},e.toDisplayString(n(t.directiveName)[0]),513)),[[e.vShow,d.value<11]]):e.createCommentVNode("",!0)],6)],44,["onTouchend","data-index0","data-index1"])]);var i})),128))],4)])))),128))])],8,["scroll-top"])],4)],8,["scroll-left"])])]),e.createVNode(st,{ref:"gobackdrawer"},{default:e.withCtx((()=>[e.createVNode(dt,{onClickball:i,changerightbottom:7===d.value?"缩略图":"标准"},null,8,["changerightbottom"])])),_:1},512),e.createVNode(p,{onMovecard:k}),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay-content",style:e.normalizeStyle({top:2*y.value-350+"rpx",left:2*N.value-780+"rpx",opacity:E.value?1:0,backgroundColor:"日常"===(null==(v=null==(o=l.value[w.value])?void 0:o.children[g.value])?void 0:v.type)?"#fffcf6":"rgb(246, 244, 254)"}),onClick:a[0]||(a[0]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"}," 占个位置 ")]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],4),[[e.vShow,x.value]])])}}}),[["__scopeId","data-v-7e3cfa67"]]);__definePage("pages/login/login",w),__definePage("pages/denglu",h),__definePage("pages/index/index",f),__definePage("pages/Nursing/index",F),__definePage("pages/watch/index",G),__definePage("pages/watch/settings/settings",ee),__definePage("pages/watch/settings/input",ae),__definePage("pages/watch/settings/saoma",ie),__definePage("pages/watch/settings/leida",oe),__definePage("pages/NursingNew/index",ve),__definePage("pages/Warehousing/index",Ye),__definePage("pages/Initialization/index",lt),__definePage("pages/assess/index",ot),__definePage("pages/timeMatrix/index",ct),__definePage("pages/timeMatrix/indexnew",mt);const ut={onLaunch:function(){l("log","at App.vue:4","App Launch")},onShow:function(){l("log","at App.vue:7","App Show")},onHide:function(){l("log","at App.vue:10","App Hide")}},vt={data:()=>({}),onLoad(){this.$u.getRect=this.$uGetRect},methods:{$uGetRect(e,t){return new Promise((l=>{uni.createSelectorQuery().in(this)[t?"selectAll":"select"](e).boundingClientRect((e=>{t&&Array.isArray(e)&&e.length&&l(e),!t&&e&&l(e)})).exec()}))},getParentData(e=""){this.parent||(this.parent=!1),this.parent=this.$u.$parent.call(this,e),this.parent&&(Object.keys(this.parentData).map((e=>{this.parentData[e]=this.parent[e]})),this.parentData.value=this.parent.modelValue)},preventEvent(e){e&&e.stopPropagation&&e.stopPropagation()}},onReachBottom(){uni.$emit("uOnReachBottom")},beforeUnmount(){if(this.parent&&uni.$u.test.array(this.parent.children)){const e=this.parent.children;e.map(((t,l)=>{t===this&&e.splice(l,1)}))}}};function pt(e){if([null,void 0,NaN,!1].includes(e))return e;if("object"!=typeof e&&"function"!=typeof e)return e;var t,l=(t=e,"[object Array]"===Object.prototype.toString.call(t)?[]:{});for(let a in e)e.hasOwnProperty(a)&&(l[a]="object"==typeof e[a]?pt(e[a]):e[a]);return l}function gt(e={},t={}){if("object"!=typeof(e=pt(e))||"object"!=typeof t)return!1;for(var l in t)t.hasOwnProperty(l)&&(l in e?"object"!=typeof e[l]||"object"!=typeof t[l]?e[l]=t[l]:e[l].concat&&t[l].concat?e[l]=e[l].concat(t[l]):e[l]=gt(e[l],t[l]):e[l]=t[l]);return e}function wt(e){return/^(?:-?\d+|-?\d{1,3}(?:,\d{3})+)?(?:\.\d+)?$/.test(e)}function ht(e){switch(typeof e){case"undefined":return!0;case"string":if(0==e.replace(/(^[ \t\n\r]*)|([ \t\n\r]*$)/g,"").length)return!0;break;case"boolean":if(!e)return!0;break;case"number":if(0===e||isNaN(e))return!0;break;case"object":if(null===e||0===e.length)return!0;for(var t in e)return!1;return!0}return!1}function ft(e){return"[object Object]"===Object.prototype.toString.call(e)}function Nt(e){return"function"==typeof e}const yt={email:function(e){return/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/.test(e)},mobile:function(e){return/^1[23456789]\d{9}$/.test(e)},url:function(e){return/http(s)?:\/\/([\w-]+\.)+[\w-]+(\/[\w-.\/?%&=]*)?/.test(e)},date:function(e){return!!e&&(wt(e)&&(e=+e),!/Invalid|NaN/.test(new Date(e).toString()))},dateISO:function(e){return/^\d{4}[\/\-](0?[1-9]|1[012])[\/\-](0?[1-9]|[12][0-9]|3[01])$/.test(e)},number:wt,digits:function(e){return/^\d+$/.test(e)},idCard:function(e){return/^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}([0-9]|X)$/.test(e)},carNo:function(e){const t=/^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}(([0-9]{5}[DF]$)|([DF][A-HJ-NP-Z0-9][0-9]{4}$))/,l=/^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}[A-HJ-NP-Z0-9]{4}[A-HJ-NP-Z0-9挂学警港澳]{1}$/;return 7===e.length?l.test(e):8===e.length&&t.test(e)},amount:function(e){return/^[1-9]\d*(,\d{3})*(\.\d{1,2})?$|^0\.\d{1,2}$/.test(e)},chinese:function(e){return/^[\u4e00-\u9fa5]+$/gi.test(e)},letter:function(e){return/^[a-zA-Z]*$/.test(e)},enOrNum:function(e){return/^[0-9a-zA-Z]*$/g.test(e)},contains:function(e,t){return e.indexOf(t)>=0},range:function(e,t){return e>=t[0]&&e<=t[1]},rangeLength:function(e,t){return e.length>=t[0]&&e.length<=t[1]},empty:ht,isEmpty:ht,jsonString:function(e){if("string"==typeof e)try{var t=JSON.parse(e);return!("object"!=typeof t||!t)}catch(l){return!1}return!1},landline:function(e){return/^\d{3,4}-\d{7,8}(-\d{3,4})?$/.test(e)},object:ft,array:function(e){return"function"==typeof Array.isArray?Array.isArray(e):"[object Array]"===Object.prototype.toString.call(e)},code:function(e,t=6){return new RegExp(`^\\d{${t}}$`).test(e)},func:Nt,promise:function(e){return ft(e)&&Nt(e.then)&&Nt(e.catch)},video:function(e){const t=e.split("?")[0];return new RegExp(/\.(mp4|mpg|mpeg|dat|asf|avi|rm|rmvb|mov|wmv|flv|mkv|m3u8|3gp)$/).test(t)},image:function(e){const t=e.split("?")[0];return new RegExp(/\.(jpeg|jpg|gif|png|svg|webp|jfif|bmp|dpg)$/).test(t)},regExp:function(e){return e&&"[object RegExp]"===Object.prototype.toString.call(e)},string:function(e){return"string"==typeof e}};const xt=new class{setConfig(e){this.config=gt(this.config,e)}request(e={}){if(this.interceptor.request&&"function"==typeof this.interceptor.request){let t=this.interceptor.request(e);if(!1===t)return new Promise((()=>{}));this.options=t}return e.dataType=e.dataType||this.config.dataType,e.responseType=e.responseType||this.config.responseType,e.url=e.url||"",e.params=e.params||{},e.header=Object.assign({},this.config.header,e.header),e.method=e.method||this.config.method,new Promise(((t,l)=>{e.complete=e=>{if(uni.hideLoading(),clearTimeout(this.config.timer),this.config.timer=null,this.config.originalData)if(this.interceptor.response&&"function"==typeof this.interceptor.response){let a=this.interceptor.response(e);!1!==a?t(a):l(e)}else t(e);else if(200==e.statusCode)if(this.interceptor.response&&"function"==typeof this.interceptor.response){let a=this.interceptor.response(e.data);!1!==a?t(a):l(e.data)}else t(e.data);else l(e)},e.url=yt.url(e.url)?e.url:this.config.baseUrl+(0==e.url.indexOf("/")?e.url:"/"+e.url),this.config.showLoading&&!this.config.timer&&(this.config.timer=setTimeout((()=>{uni.showLoading({title:this.config.loadingText,mask:this.config.loadingMask}),this.config.timer=null}),this.config.loadingTime)),uni.request(e)}))}constructor(){this.config={baseUrl:"",header:{},method:"POST",dataType:"json",responseType:"text",showLoading:!0,loadingText:"请求中...",loadingTime:800,timer:null,originalData:!1,loadingMask:!0},this.interceptor={request:null,response:null},this.get=(e,t={},l={})=>this.request({method:"GET",url:e,header:l,data:t}),this.post=(e,t={},l={})=>this.request({url:e,method:"POST",header:l,data:t}),this.put=(e,t={},l={})=>this.request({url:e,method:"PUT",header:l,data:t}),this.delete=(e,t={},l={})=>this.request({url:e,method:"DELETE",header:l,data:t})}};const Et=(new class{constructor(){this.config={type:"navigateTo",url:"",delta:1,params:{},animationType:"pop-in",animationDuration:300,intercept:!1},this.route=this.route.bind(this)}addRootPath(e){return"/"===e[0]?e:`/${e}`}mixinParam(e,t){e=e&&this.addRootPath(e);let l="";return/.*\/.*\?.*=.*/.test(e)?(l=uni.$u.queryParams(t,!1),e+"&"+l):(l=uni.$u.queryParams(t),e+l)}async route(e={},t={}){let l={};if("string"==typeof e?(l.url=this.mixinParam(e,t),l.type="navigateTo"):(l=uni.$u.deepClone(e,this.config),l.url=this.mixinParam(e.url,e.params)),t.intercept&&(this.config.intercept=t.intercept),l.params=t,l=uni.$u.deepMerge(this.config,l),"function"==typeof uni.$u.routeIntercept){await new Promise(((e,t)=>{uni.$u.routeIntercept(l,e)}))&&this.openPage(l)}else this.openPage(l)}openPage(e){const{url:t,type:l,delta:a,animationType:i,animationDuration:n}=e;"navigateTo"!=e.type&&"to"!=e.type||uni.navigateTo({url:t,animationType:i,animationDuration:n}),"redirectTo"!=e.type&&"redirect"!=e.type||uni.redirectTo({url:t}),"switchTab"!=e.type&&"tab"!=e.type||uni.switchTab({url:t}),"reLaunch"!=e.type&&"launch"!=e.type||uni.reLaunch({url:t}),"navigateBack"!=e.type&&"back"!=e.type||uni.navigateBack({delta:a})}}).route;function Vt(e=null,t="yyyy-mm-dd"){e||(e=Number(new Date)),10==e.toString().length&&(e*=1e3);let l,a=new Date(e),i={"y+":a.getFullYear().toString(),"m+":(a.getMonth()+1).toString(),"d+":a.getDate().toString(),"h+":a.getHours().toString(),"M+":a.getMinutes().toString(),"s+":a.getSeconds().toString()};for(let n in i)l=new RegExp("("+n+")").exec(t),l&&(t=t.replace(l[1],1==l[1].length?i[n]:i[n].padStart(l[1].length,"0")));return t}function bt(e,t=!0){if((e=e.toLowerCase())&&/^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/.test(e)){if(4===e.length){let t="#";for(let l=1;l<4;l+=1)t+=e.slice(l,l+1).concat(e.slice(l,l+1));e=t}let l=[];for(let t=1;t<7;t+=2)l.push(parseInt("0x"+e.slice(t,t+2)));return t?`rgb(${l[0]},${l[1]},${l[2]})`:l}if(/^(rgb|RGB)/.test(e)){return e.replace(/(?:\(|\)|rgb|RGB)*/g,"").split(",").map((e=>Number(e)))}return e}function kt(e){let t=e;if(/^(rgb|RGB)/.test(t)){let e=t.replace(/(?:\(|\)|rgb|RGB)*/g,"").split(","),l="#";for(let t=0;t=e)return String(l);let a=e-l.length,i=Math.ceil(a/t.length);for(;i>>=1;)t+=t,1===i&&(t+=t);return t.slice(0,a)+l});const Tt={colorGradient:function(e="rgb(0, 0, 0)",t="rgb(255, 255, 255)",l=10){let a=bt(e,!1),i=a[0],n=a[1],r=a[2],o=bt(t,!1),c=(o[0]-i)/l,s=(o[1]-n)/l,d=(o[2]-r)/l,m=[];for(let u=0;u=0))if(t.constructor===Array)switch(l){case"indices":for(let l=0;l{i.push(n+"[]="+e)}));break;case"repeat":t.forEach((e=>{i.push(n+"="+e)}));break;case"comma":let e="";t.forEach((t=>{e+=(e?",":"")+t})),i.push(n+"="+e)}else i.push(n+"="+t)}return i.length?a+i.join("&"):""},route:Et,timeFormat:Vt,date:Vt,timeFrom:function(e=null,t="yyyy-mm-dd"){e||(e=Number(new Date)),10==e.toString().length&&(e*=1e3);let l=+new Date(Number(e)),a=(Number(new Date)-l)/1e3,i="";switch(!0){case a<300:i="刚刚";break;case a>=300&&a<3600:i=parseInt(a/60)+"分钟前";break;case a>=3600&&a<86400:i=parseInt(a/3600)+"小时前";break;case a>=86400&&a<2592e3:i=parseInt(a/86400)+"天前";break;default:i=!1===t?a>=2592e3&&a<31536e3?parseInt(a/2592e3)+"个月前":parseInt(a/31536e3)+"年前":Vt(l,t)}return i},colorGradient:Tt.colorGradient,colorToRgba:Tt.colorToRgba,guid:function(e=32,t=!0,l=null){let a="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".split(""),i=[];if(l=l||a.length,e)for(let n=0;nMath.random()-.5))},wranning:function(e){},get:xt.get,post:xt.post,put:xt.put,delete:xt.delete,hexToRgb:Tt.hexToRgb,rgbToHex:Tt.rgbToHex,test:yt,random:function(e,t){if(e>=0&&t>0&&t>=e){let l=t-e+1;return Math.floor(Math.random()*l+e)}return 0},deepClone:pt,deepMerge:gt,getParent:function(e,t){let l=this.$parent;for(;l;){if(l.$options.name===e){let e={};if(Array.isArray(t))t.map((t=>{e[t]=l[t]?l[t]:""}));else for(let a in t)Array.isArray(t[a])?t[a].length?e[a]=t[a]:e[a]=l[a]:t[a].constructor===Object?Object.keys(t[a]).length?e[a]=t[a]:e[a]=l[a]:e[a]=t[a]||!1===t[a]?t[a]:l[a];return e}l=l.$parent}return{}},$parent:function(e){let t=this.$parent;for(;t;){if(!t.$options||t.$options.name===e)return t;t=t.$parent}return!1},addUnit:function(e="auto",t="rpx"){return e=String(e),yt.number(e)?`${e}${t}`:e},trim:function(e,t="both"){return"both"==t?e.replace(/^\s+|\s+$/g,""):"left"==t?e.replace(/^\s*/,""):"right"==t?e.replace(/(\s*$)/g,""):"all"==t?e.replace(/\s+/g,""):e},type:["primary","success","error","warning","info"],http:xt,toast:function(e,t=1500){uni.showToast({title:e,icon:"none",duration:t})},config:_t,zIndex:{toast:10090,noNetwork:10080,popup:10075,mask:10070,navbar:980,topTips:975,sticky:970,indexListSticky:965},debounce:function(e,t=500,l=!1){if(null!==Dt&&clearTimeout(Dt),l){var a=!Dt;Dt=setTimeout((function(){Dt=null}),t),a&&"function"==typeof e&&e()}else Dt=setTimeout((function(){"function"==typeof e&&e()}),t)},throttle:function(e,t=500,l=!0,a="default"){Ct[a]||(Ct[a]=null),l?St[a]||(St[a]=!0,"function"==typeof e&&e(),Ct[a]=setTimeout((()=>{St[a]=!1}),t)):St[a]||(St[a]=!0,Ct[a]=setTimeout((()=>{St[a]=!1,"function"==typeof e&&e()}),t))},addStyle:function(e,t="object"){if(yt.empty(e)||"object"==typeof e&&"object"===t||"string"===t&&"string"==typeof e)return e;if("object"===t){const t=(e=Bt(e)).split(";"),l={};for(let e=0;e{e.mixin(vt),e.config.globalProperties.$u=It}},Mt={__name:"donghua",props:{links:{type:Array,default:()=>[]},width:{type:String,default:"65rpx"},height:{type:String,default:"65rpx"},objectFit:{type:String,default:"aspectFill"},defaultImage:{type:String,default:""},interval:{type:Number,default:80},playing:{type:Boolean,default:!1},showButton:{type:Boolean,default:!1},loop:{type:Boolean,default:!1}},emits:["update:playing"],setup(t,{emit:l}){const a=t,i=e.ref(0),n=e.ref(!1),r=e.ref(!1);let o=null;const c=()=>{n.value=!1,clearInterval(o)};return e.watch((()=>a.playing),(e=>{i.value=0,e?n.value||(n.value=!0,o=setInterval((()=>{a.loop?(i.value=(i.value+1)%a.links.length,r.value=!1):i.valuei.value=0),50))})),e.watch((()=>a.links),(()=>{i.value=0,r.value=!1,n.value&&c()}),{deep:!0}),e.onUnmounted((()=>{c()})),(l,a)=>(e.openBlock(),e.createElementBlock("view",null,[e.createElementVNode("image",{src:r.value?t.defaultImage:t.links[i.value],style:e.normalizeStyle({width:t.width,height:t.height}),mode:t.objectFit,onError:a[0]||(a[0]=e=>r.value=!0),onLoad:a[1]||(a[1]=e=>r.value=!1)},null,44,["src","mode"]),t.showButton?(e.openBlock(),e.createElementBlock("button",{key:0,onClick:a[2]||(a[2]=e=>l.$emit("update:playing",!t.playing))},e.toDisplayString(t.playing?"停止播放":"开始播放"),1)):e.createCommentVNode("",!0)]))}},Ft=s(e.defineComponent({__name:"arrowkeys",props:{movebottom:{type:Number,default:30},moveleft:{type:Number,default:10},leftbuttonname:{type:String,default:"返回"},rightbuttonname:{type:String,default:"确定"}},emits:["movecard"],setup(t,{emit:l}){const a=l;let i=null,n=null,r=!1;const o=e.ref(-1);let c=null;function s(){i&&(clearTimeout(i),i=null)}function d(){n&&(clearTimeout(n),n=null),r=!1,c=null}function m(e){d(),s(),o.value=e,a("movecard",e),i=setTimeout((()=>{o.value=-1,i=null}),500)}function u(e){s(),d(),o.value=e,a("movecard",e),c=e,r=!0,n=setTimeout((function e(){r&&null!==c&&(n=setTimeout(e,500))}),500)}function v(){r&&(d(),s(),i=setTimeout((()=>{o.value=-1,i=null}),500))}return e.onBeforeUnmount((()=>{s(),d()})),(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"move-circle",style:e.normalizeStyle({bottom:`${t.movebottom}rpx`,left:`${t.moveleft}rpx`})},[e.createElementVNode("view",{class:e.normalizeClass(5===o.value?"click-box-target":"click-box"),onClick:a[0]||(a[0]=e=>m(5)),onLongpress:a[1]||(a[1]=()=>u(5)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${5===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("span",{style:{"z-index":"1","font-size":"30rpx"},class:e.normalizeClass(5===o.value?"grad-text":"")},e.toDisplayString(t.leftbuttonname),3)],34),e.createElementVNode("view",{class:e.normalizeClass(0===o.value?"click-box-target":"click-box"),onClick:a[2]||(a[2]=e=>m(0)),onLongpress:a[3]||(a[3]=()=>u(0)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${0===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("image",{src:`/static/index/newruler/fangxiang${0===o.value?"target":""}.png`,class:"image-photo"},null,8,["src"])],34),e.createElementVNode("view",{class:e.normalizeClass(4===o.value?"click-box-target":"click-box"),onClick:a[4]||(a[4]=e=>m(4)),onLongpress:a[5]||(a[5]=()=>u(4)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${4===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("span",{style:{"z-index":"1","font-size":"30rpx"},class:e.normalizeClass(4===o.value?"grad-text":"")},e.toDisplayString(t.rightbuttonname),3)],34),e.createElementVNode("view",{class:e.normalizeClass(3===o.value?"click-box-target":"click-box"),onClick:a[6]||(a[6]=e=>m(3)),onLongpress:a[7]||(a[7]=()=>u(3)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${3===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("image",{style:{transform:"rotate(270deg)","transform-origin":"center"},src:`/static/index/newruler/fangxiang${3===o.value?"target":""}.png`,class:"image-photo"},null,8,["src"])],34),e.createElementVNode("view",{class:e.normalizeClass(2===o.value?"click-box-target":"click-box"),onClick:a[8]||(a[8]=e=>m(2)),onLongpress:a[9]||(a[9]=()=>u(2)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${2===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("image",{style:{transform:"rotate(180deg)","transform-origin":"center"},src:`/static/index/newruler/fangxiang${2===o.value?"target":""}.png`,class:"image-photo"},null,8,["src"])],34),e.createElementVNode("view",{class:e.normalizeClass(1===o.value?"click-box-target":"click-box"),onClick:a[10]||(a[10]=e=>m(1)),onLongpress:a[11]||(a[11]=()=>u(1)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${1===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("image",{style:{transform:"rotate(90deg)","transform-origin":"center"},src:`/static/index/newruler/fangxiang${1===o.value?"target":""}.png`,class:"image-photo"},null,8,["src"])],34)],4))}}),[["__scopeId","data-v-4057d511"]]);const{app:$t,Vuex:At,Pinia:Lt}=function(){const t=e.createVueApp(ut);return t.use(Ut),t.component("donghua",Mt),t.component("arrowkeys",Ft),{app:t}}();uni.Vuex=At,uni.Pinia=Lt,$t.provide("__globalStyles",__uniConfig.styles),$t._component.mpType="app",$t._component.render=()=>{},$t.mount("#app")}(Vue);
+if("undefined"==typeof Promise||Promise.prototype.finally||(Promise.prototype.finally=function(e){const t=this.constructor;return this.then((l=>t.resolve(e()).then((()=>l))),(l=>t.resolve(e()).then((()=>{throw l}))))}),"undefined"!=typeof uni&&uni&&uni.requireGlobal){const e=uni.requireGlobal();ArrayBuffer=e.ArrayBuffer,Int8Array=e.Int8Array,Uint8Array=e.Uint8Array,Uint8ClampedArray=e.Uint8ClampedArray,Int16Array=e.Int16Array,Uint16Array=e.Uint16Array,Int32Array=e.Int32Array,Uint32Array=e.Uint32Array,Float32Array=e.Float32Array,Float64Array=e.Float64Array,BigInt64Array=e.BigInt64Array,BigUint64Array=e.BigUint64Array}uni.restoreGlobal&&uni.restoreGlobal(Vue,weex,plus,setTimeout,clearTimeout,setInterval,clearInterval),function(e){"use strict";function t(e){return weex.requireModule(e)}function l(e,t,...l){uni.__log__?uni.__log__(e,t,...l):console[e].apply(console,[...l,t])}function a(e,t){return"string"==typeof e?t:e}const i=(t,l=0)=>(l,a=e.getCurrentInstance())=>{!e.isInSSRComponentSetup&&e.injectHook(t,l,a)},r=i("onShow",3),n=i("onHide",3),o=i("onLoad",2),c="/static/left.png",s=(e,t)=>{const l=e.__vccOpts||e;for(const[a,i]of t)l[a]=i;return l};const d=s({name:"ZyUpgrade",props:{theme:{type:String,default:"green"},updateurl:{type:String,default:""},h5preview:{type:Boolean,default:!1},oldversion:{type:String,default:""},oldcode:{type:Number,default:0},appstoreflag:{type:Boolean,default:!1},noticeflag:{type:Boolean,default:!1},autocheckupdate:{type:Boolean,default:!0}},data(){return{update_flag:!1,dshow:!1,update_process:0,downloadTask:[],updated2version:"",version_url:"",update_tips:"",forceupgrade:!1,currentversion:this.oldversion,versionname:"",vesioncode:this.oldcode,wgt_flag:0,wgt_url:"",size:0,header:{Authorization:uni.getStorageSync("token")||"token"}}},mounted(){let e=!1;e=!0,this.h5preview,this.autocheckupdate&&this.check_update()},computed:{version(){let e="";return e=this.currentversion+(""!=this.currentversion&&""!=this.updated2version?"->":"")+this.updated2version,e}},methods:{check_update(){let e=this;plus.runtime.getProperty(plus.runtime.appid,(function(t){e.currentversion=t.version,e.versionname=t.name,e.versioncode=t.versionCode,e.updatebusiness(e)}))},updatebusiness:function(e){uni.request({url:`https://www.focusnu.com/devopsapi/api/pad/versionUpdate?platform=1&version=${e.currentversion}`,method:"GET",dataType:"json",success:t=>{404!==t.statusCode&&(100==t.data.code?t.data.data.update_url?(e.dshow=!0,e.update_tips=t.data.data.update_tips,e.forceupgrade=1==t.data.data.forceupdate,e.version_url=t.data.data.update_url,e.updated2version=t.data.data.version,e.wgt_flag=t.data.data.wgt_flag,e.wgt_url=t.data.data.wgt_url,e.size=t.data.data.size,e.getnewbanben()):e.noticeflag&&e.$emit("showupdateTips",0):uni.showToast({title:"请求升级出错:"+data.msg,icon:"none"}))},fail(){this.loading=!1}})},getnewbanben:function(){this.$emit("chuandinew",this.updated2version)},upgrade_checked:function(){uni.removeStorageSync("token"),this.update_flag=!0,this.updateversion()},upgrade_cancel:function(){this.dshow=!1},upgrade_break:function(){this.downloadTask.abort(),this.update_flag=!1},updateversion:function(){let e=this;if("ios"==uni.getSystemInfoSync().platform&&this.appstoreflag&&1!=e.wgt_flag)e.dshow=!1,plus.runtime.launchApplication({action:e.version_url},(function(e){uni.showToast({title:"打开appstore失败",icon:"none"})}));else{let e=this,t="https://www.focusnu.com/devopsapi/sys/common/static/"+(1==e.wgt_flag?e.wgt_url:e.version_url);this.update_confirm=!0,this.downloadTask=uni.downloadFile({url:t,header:this.header,success:function(e){l("log","at component/zy-upgrade/zy-upgrade.vue:223","!!!",e),200==e.statusCode?plus.runtime.install(e.tempFilePath,{force:!1},(function(){plus.runtime.restart()}),(function(e){l("error","at component/zy-upgrade/zy-upgrade.vue:232","install fail...",JSON.stringify(e)),uni.showToast({title:"升级失败",icon:"none"})})):uni.showToast({title:"下载失败,网络错误",icon:"none"})},fail:function(e){uni.showToast({title:"下载失败:"+e.errMsg,icon:"none"}),this.update_flag=!1},complete:function(){}}),this.downloadTask.onProgressUpdate((function(t){if(e.update_process=t.progress,t.progress==1/0){let l=t.totalBytesWritten/e.size*100;l>100&&(l=100),e.update_process=l}}))}}}},[["render",function(t,l,a,i,r,n){return e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["zy-modal",r.dshow?"show":""])},[e.createElementVNode("view",{style:{position:"absolute",top:"300rpx",left:"1040rpx","z-index":"9999"}},[e.createElementVNode("image",{style:{width:"300rpx",height:"400rpx",position:"absolute",top:"0rpx",left:"0rpx"},src:"/static/index/update/fly.png"})]),e.createElementVNode("view",{class:"zy-dialog",style:{"background-color":"#fff","border-radius":"40rpx"}},[e.createElementVNode("view",{style:{height:"400rpx",width:"100%",position:"relative"}},[e.createElementVNode("image",{style:{width:"1800rpx",height:"1600rpx",position:"absolute",top:"-370rpx",left:"-220rpx"},src:"/static/index/update/bgc.png"})]),e.createElementVNode("view",{class:e.normalizeClass("zy-upgrade-topbg-"+a.theme)},[e.createElementVNode("view",null,[e.createElementVNode("text",{class:"zy-upgrade-title"}," 发现新版本 ")]),e.createElementVNode("text",{class:"flex-wrap",style:{"margin-top":"10rpx"}},e.toDisplayString(n.version),1)],2),e.createElementVNode("view",{class:"padding-xl bg-white text-left"},[r.update_flag?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("scroll-view",{key:0,style:{"max-height":"200rpx","text-align":"center"},"scroll-y":"auto"},[e.createElementVNode("text",null,e.toDisplayString(r.update_tips),1)])),r.update_flag?(e.openBlock(),e.createElementBlock("view",{key:1,class:"zy-progress radius striped active"},[e.createElementVNode("view",{class:e.normalizeClass("bg-"+a.theme),style:e.normalizeStyle("width: "+r.update_process+"%;")},e.toDisplayString(r.update_process),7)])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"zy-bar bg-white",style:{"justify-content":"center",display:"flex","margin-bottom":"60rpx"}},[r.update_flag?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"action"},[e.createElementVNode("button",{class:e.normalizeClass(["zy-btn","bg-"+a.theme]),onClick:l[0]||(l[0]=(...e)=>n.upgrade_checked&&n.upgrade_checked(...e))},"确认升级",2),r.forceupgrade?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("button",{key:0,class:e.normalizeClass(["zy-btn margin-left","line-"+a.theme]),onClick:l[1]||(l[1]=(...e)=>n.upgrade_cancel&&n.upgrade_cancel(...e))},"取消升级",2))])),r.update_flag&&!r.forceupgrade?(e.openBlock(),e.createElementBlock("view",{key:1,class:"action text-center"},[e.createElementVNode("button",{class:e.normalizeClass(["zy-btn","bg-"+a.theme]),onClick:l[2]||(l[2]=(...e)=>n.upgrade_break&&n.upgrade_break(...e))},"中断升级",2)])):e.createCommentVNode("",!0)])])],2)}],["__scopeId","data-v-cd70e807"]]);const m=s({},[["render",function(t,l){return e.openBlock(),e.createElementBlock("view",{class:"all"},[e.createElementVNode("scroll-view",{"scroll-y":"",class:"all-content"},[e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 特别提示 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 欢迎使用NU护理单元为您提供的NU护理单元平台。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"请您务必审慎并完整阅读以下内容,特别是免除或者限制NU护理单元责任的条款、对用户权利进行限制的条款、规定本协议的适用法律及有权解决争议的司法管辖区的条款。限制、免责条款或者其他涉及您重大权益的条款可能以加粗等形式提示您重点注意。请注意,目前在您的地区可能无法使用NU护理单元平台上的某些服务和功能(特别是涉及身份认证和支付的功能)。给您带来的不便,我们深表歉意,并正在努力尽快(如可能)提供这些服务和功能。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 如您未满18周岁或未满您居住所在地要求可使用NU护理单元平台的年龄,请不要使用NU护理单元平台。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 除非您已充分阅读并接受本协议所有条款,否则您无权使用NU护理单元平台。如您不同意本协议或其中任何条款,您应立即停止使用NU护理单元平台。您点击“同意”,或者您使用NU护理单元平台,或者以其他任何明示或者默示方式表示接受本协议的,均视为您已阅读并同意本协议。本协议即在您与NU护理单元之间产生法律效力,成为对双方均具有约束力的法律文件。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 一、定义及协议范围 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 1.1 定义 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," NU护理单元平台:指吉林省捌零信创有限公司(以下简称“NU护理单元”或“我们”)合法拥有并运营的名称为“NU护理单元” 和/或小程序、客户端应用程序以及我们不时提供的其他形式。“我们的”应相应地进行理解。为免疑义,我们亦保留调整NU护理单元平台名称的所有权利。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," NU护理单元账号或账号:指用户在使用NU护理单元平台时可能需要注册的账号。我们为用户提供NU护理单元平台注册通道,您可通过移动电话号码或我们允许的其他方式注册NU护理单元账号。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 用户:指NU护理单元平台的使用人,在本协议中更多地称为“您”。“您的”应相应地进行理解。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 不良信息:指含有下列内容的信息: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 违反中国宪法确定的基本原则,煽动抗拒或者破坏中国宪法等法律法规实施的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 危害中国国家统一、主权和领土完整,泄露中国国家秘密,危害中国国家安全,损害中国国家尊严、荣誉和利益,宣扬恐怖主义、极端主义的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 诋毁中华民族优秀文化传统,煽动民族仇恨、民族歧视,侵害中华民族风俗习惯,歪曲中华民族历史和民族历史人物,伤害民族感情,破坏民族团结的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 煽动破坏中国国家宗教政策,宣扬宗教狂热,危害宗教和睦,伤害信教公民宗教感情,破坏信教公民和不信教公民团结,宣扬邪教、迷信的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 危害中国社会公德,扰乱中国社会秩序,破坏中国社会稳定,宣扬淫秽、赌博、吸毒,渲染暴力、恐怖,教唆犯罪或者传授犯罪方法的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 侵害未成年人合法权益或者损害未成年人身心健康的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 侮辱、诽谤他人或者散布他人隐私,侵害他人合法权益的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 违反法律法规底线、中国社会主义制度底线、中国国家利益底线、中国公民合法权益底线、中国社会公共秩序底线、道德风尚底线和信息真实性底线的“七条底线”要求的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 法律法规禁止的其他内容。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 1.2 协议范围 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 本协议是您与NU护理单元之间关于您下载、安装、使用NU护理单元平台所订立的协议,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"包括本协议正文、《NU护理单元用户隐私政策》《NU护理单元未成年人个人信息保护规则》《NU护理单元社区公约》《NU护理单元社区规范》及NU护理单元已经发布的或将来可能发布/更新的并采取合理途径通知的各类规则、规范、通知等。"),e.createTextVNode("所有规则均为本协议不可分割的组成部分,且具有同等法律效力。 ")]),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 二、账号管理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 2.1 账号获得 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," NU护理单元平台为您提供注册及登录通道,您可按照页面提示填写信息、阅读并同意本协议,在完成全部注册登录程序后,成为NU护理单元平台用户。您还需要根据法律法规的规定(如有)填写您真实的身份信息,否则您可能无法使用NU护理单元平台服务或在使用NU护理单元平台服务过程中受到限制。您了解并同意,您有义务保持您向我们提供的信息的真实性、有效性、准确性及完整性。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您注册获得的账号、设置的密码是您登录并以用户身份使用NU护理单元平台的凭证,您应当谨慎使用、妥善保管。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您须对账号进行的所有活动和行为负责。若因您保管不善导致的盗号、密码丢失、账号被非法使用的责任将由您自行承担。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您不得恶意注册NU护理单元账号,包括但不限于通过频繁注册、批量注册、使用他人身份注册或其他不以正常使用NU护理单元平台为目的的账号注册行为。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 2.2 账号信息设置 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您在注册或使用NU护理单元平台时提供的信息资料(包括但不限于昵称、头像及简介)须遵守法律法规、社会道德风尚和信息真实性等原则,不得出现不良信息,不得冒用他人姓名、名称、字号、头像或使用其他足以引起混淆的方式设置账号,不得侵害第三方的合法权益。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 2.3 账号使用及权属 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 部分第三方网站或者服务可以用NU护理单元账号作为其登录途径之一。您知晓,除非NU护理单元特别说明外,这些网站或者服务并非NU护理单元运营,您应自行判断此类第三方网站或者服务的安全性和可用性,并自行承担相关风险和责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 由于您的账号关联您的个人信息及NU护理单元平台商业信息,您的账号仅限您本人使用。未经NU护理单元同意,授权第三方使用您账号或获取您账号项下信息的行为无效。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"如NU护理单元判断您账号的使用可能违反法律法规或本协议、危及您的账号安全及/或NU护理单元平台信息安全的,NU护理单元可拒绝提供相应服务,采取包括但不限于暂停、封禁、注销、收回您的账号,或终止本协议的措施,由此带来的包括但不限于您账号中的内容以及虚拟物品的清空等损失由您自行承担。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 2.4 账号注销及回收 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 您可以依照NU护理单元平台的流程申请注销您的NU护理单元账号,但您仍应对您在注销账号前和使用NU护理单元平台期间的行为承担相应责任。注销成功后,除非法律法规另有规定,NU护理单元不会为您提供账号记录、内容或虚拟财产恢复等服务,请您谨慎操作。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您理解并同意,为了充分利用账号资源,如您在注册后未及时进行初次登录使用或连续超过六个月未登录账号并使用,且不存在未到期或未履行完毕的持续性NU护理单元平台服务的,NU护理单元有权收回您的账号。如您的账号被收回,您无法通过您此前持有被收回的账号登录并使用NU护理单元平台,您账号下保存的内容、权限、个性化设置和使用记录等信息也将无法恢复。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 2.5 账号违规处置 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 若您在注册或使用NU护理单元账号时,存在任何违反法律法规或不符合本协议约定的行为,NU护理单元有权不予注册;已经注册的,NU护理单元有权视情况要求用户限期改正,或采取短期封禁、永久封禁、注销账号等措施。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 三、NU护理单元平台服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.1 内容浏览 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您可通过NU护理单元平台浏览订阅各类信息和内容。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您对NU护理单元平台中的内容须自行加以判断,并自行承担因依赖或使用该等内容而引起的风险。在适用法律允许的最大限度内,您应对基于该等内容进行的所有支付或交易,或因前述内容而造成的任何损害或损失由您自行承担。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.2 内容发布 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 在遵守本协议的前提下,您可使用NU护理单元平台发表属于您原创或您有权发表的观点看法、文字、信息、图片、音视频等内容。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您在NU护理单元平台发布的任何内容均不代表NU护理单元的观点、立场或政策,您自行对您所发布内容承担全部责任。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您通过NU护理单元平台发布内容时必须遵守全部法律法规,不得利用NU护理单元平台制作、复制、发布、传播、储存任何违反法律法规、危害中国国家安全、可能对用户财产安全或信息安全造成损失的信息、营销信息、低俗不当信息或其他我们认为不应发布的信息不良信息以及不实信息等内容。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 用户不得利用基于深度学习、虚拟现实、生成式人工智能等新技术新应用制作、上传、复制、传送或传播虚假新闻信息等法律法规禁止的信息内容,或将合成内容谎称为真实或自然内容。您在发布或传播利用基于深度学习、虚拟现实、生成式人工智能等新技术新应用制作的非真实信息时,应当以显著方式予以标识,否则我们有权对相关内容和账号采取包括但不限于增加标识、限制、封禁等措施。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.3 商品与服务交易 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},[e.createTextVNode(" 您可使用NU护理单元平台进行商品与服务的交易,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"如您是未成年人或限制民事行为能力人,请在监护人同意后进行交易。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 进行交易时请您务必仔细确认所购商品的品名、价格、数量、型号、规格、尺寸或服务的时间、内容,以及该服务的限制性要求等重要事项,并在下单时核实您的联系地址、电话、收货人等信息。如您填写的收货人非您本人,则该收货人的行为和意思表示产生的法律后果均由您承担。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},[e.createTextVNode(" 您的交易行为应当基于真实的消费需求,不得存在对商品或服务实施恶意购买、恶意维权等扰乱NU护理单元平台正常交易秩序的行为。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"基于维护NU护理单元平台交易秩序及交易安全的需要,NU护理单元发现上述情形时可主动执行关闭相关交易订单等操作。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 如您的交易相对方存在利用NU护理单元平台系统漏洞、规则漏洞,不正当获取NU护理单元平台补贴等任何利益的行为,基于维护NU护理单元平台交易秩序、交易安全及NU护理单元合法权益的需要,NU护理单元发现上述情形时可主动执行关闭相关交易订单等操作。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本协议终止后,对于您在本协议存续期间产生的交易订单,NU护理单元可通知交易相对方,并有权自主决定或者根据交易相对方的意愿决定是否关闭未完成的交易订单;如NU护理单元未关闭交易订单,则您应当就该等交易订单继续履行本协议及交易订单的约定,并承担因此产生的法律责任及损失。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.4 内容分享与转发 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您可对NU护理单元平台的信息内容进行分享、转发,但未经NU护理单元书面许可,您不得复制、读取、采用、统计NU护理单元平台的信息内容及相关数据,或者进行任何形式的销售和商业使用,或者向第三方泄露、提供或允许第三方为任何方式的使用。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.5 活动参与 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您可通过NU护理单元平台参与NU护理单元不定期组织的各类线上、线下互动活动,但您"),e.createElementVNode("text",{style:{"font-weight":"600"}},"不得采取任何不正当或作弊的违规手段参与活动,否则NU护理单元有权限制或取消您参与活动的资格,并有权取消、追讨您已获得、领取的奖励,并保留追究您法律责任的权利。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 3.6 服务费用 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" NU护理单元为向您提供的NU护理单元平台服务付出了大量的成本,除NU护理单元平台明示的收费业务外,NU护理单元向您提供的NU护理单元平台服务是免费的。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"如未来NU护理单元向您收取合理费用,NU护理单元会采取合理方式并以合理的期限提前通知您,确保您有充分选择的权利。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 在NU护理单元降低收费服务的收费标准或者将收费服务改为免费服务提供时,NU护理单元保留不对原付费用户提供退费或者费用调整之权利。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 四、权利与许可 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 4.1 平台声明 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"平台知识产权。"),e.createTextVNode("NU护理单元平台所提供的内容,包括但不限于视频、图文、文字表述及其组合、界面设计、版面框架、图标、商标等,均由NU护理单元所有或授权使用,受中华人民共和国著作权法、商标法、专利法、反不正当竞争法及国际条约,以及其他国家或司法管辖区的知识产权法律法规的保护。未经NU护理单元书面允许,用户不得为任何目的擅自使用、复制、再造这些内容、或创造与内容有关的派生产品。我们保留本条款中未明确授予您的所有权利。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"平台使用规范。"),e.createTextVNode("您不得从事下列行为: ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 对NU护理单元平台或NU护理单元平台服务进行反向工程、反向汇编、反向编译,或者以其他方式尝试发现NU护理单元平台的源代码; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 以任何方式(包括但不限于盗链、冗余盗取、非法抓取、模拟下载、深度链接、假冒注册等)直接或间接盗取NU护理单元平台的视频、图文、用户信息等信息内容; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 通过非NU护理单元开发、授权、许可的第三方软件、插件、外挂、系统,登录或使用NU护理单元平台,或对NU护理单元平台的正常运行进行干扰、破坏、修改或施加其他影响; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 利用或针对NU护理单元平台进行任何危害我们或任何第三方计算机网络安全的行为,或暴露我们或任何第三方计算机网络安全弱点的行为,包括但不限于:非法侵入网络、干扰网络正常功能、窃取网络数据等危害网络安全、为上述行为提供程序、工具或其他支持与帮助;干涉、破坏NU护理单元平台系统、软件或网站的正常运行,故意传播恶意程序或病毒和其他破坏干扰正常网络信息服务的行为; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 其他以任何不合法的方式、为任何不合法的目的、或与NU护理单元为此制定的其他规范和标准不一致的方式使用NU护理单元平台或NU护理单元平台服务。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 4.2 用户内容及信息授权 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您在NU护理单元平台发布、上传的内容(包括但不限于文字、图片、视频、音频等)应有合法来源,相关内容为您所有或您已获得必要的授权。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 除非有相反证明,您理解并同意,为使用户内容得到更好的分享及推广,提高其传播价值及影响力,您授予NU护理单元免费的、不可撤销的、非排他的、全球无地域限制的许可使用,包括:存储、使用、传播、复制、修订、改编、汇编、出版、展示、翻译、表演用户内容或制作派生作品,以已知或日后开发的形式、媒体或技术将内容纳入其它作品,再许可第三方按照前述方式使用的权利,以及以自身名义或委托专业第三方对侵犯您上传发布的享有知识产权的内容进行取证、发起投诉或提起诉讼的权利。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 为免歧义,上述许可包括使用、复制和展示用户内容中的个人形象、肖像、姓名、商标、品牌、标识及其他营销推广素材、物料的权利和许可。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 4.3 侵权投诉 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 我们尊重并保护您及他人的知识产权、名誉权、姓名权、隐私权等合法权益。您保证,在NU护理单元平台上传的文字、图片、视频、音频、链接等不侵犯任何第三方的知识产权、名誉权、姓名权、隐私权等合法权益。否则,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元有权在收到权利方或者相关方通知的情况下移除该涉嫌侵权内容。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您认为NU护理单元平台上的内容侵犯您的合法权益,应当向我们发送侵权通知,具体通知方式和要求按侵权投诉指引执行。我们将在收到有效通知后进行审核,对可以初步证明构成侵权的内容采取必要措施。对无法认定为侵权的内容,您也将收到相应告知,如果您仍然认为侵权事实存在,新的侵权通知中应当补充证明侵权的证据。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 在适用法律允许的最大限度内,NU护理单元储存在其服务器上的数据是用户使用NU护理单元平台和NU护理单元平台服务的唯一有效证据。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 五、法律责任 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 5.1 违约处理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 如您违反本协议约定,NU护理单元有权作出独立判断,立即暂停或终止向您提供部分或全部NU护理单元平台服务,包括采取禁言、屏蔽信息、删除发布内容、封禁账号、注销账号等措施。您应对与该等措施相关的任何损失和损害(包括但不限于您账号的内容、虚拟财产和权限清空、无法正常使用账号及相关NU护理单元平台服务或任何其他后果)承担全部责任和义务。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 5.2 责任承担 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 您承担法律责任的形式包括但不限于:对受到侵害者充分赔偿损失、赔礼道歉、补救负面影响、返还财产等。如您的行为给NU护理单元造成损失的,您应承担全部赔偿责任,包括行政处罚或损害赔偿款等直接损失以及商誉损失、和解款、律师费、诉讼费等间接损失。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 5.3 反商业贿赂 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您充分了解,任何向NU护理单元的雇员或顾问等提供实物、现金、现金等价物、劳务、旅游等价值明显超出正常商务洽谈范畴的利益,均视为商业贿赂行为。发生前述情形的,NU护理单元可立即终止与您的所有合作并追究您的法律责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 5.4 关联处理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您因违约导致NU护理单元终止本协议时,出于维护NU护理单元平台秩序的目的,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元可终止与您在其他协议(如有)项下的合作。如您违反任何NU护理单元与您订立的其他协议,NU护理单元亦有权终止本协议。除前述协议终止外,NU护理单元亦可追究您在本协议或其他协议下的违约责任。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 5.5 信息公示 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 我们可将对您上述违约行为的处置信息,以及其他经国家行政或司法机关生效法律文书确认的违法信息,在"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元平台"),e.createTextVNode("上予以公示。对涉嫌违反法律法规的行为,我们有义务保存有关记录,向国家有关机关报告并配合调查。 ")]),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 六、责任限制、免责事由和赔偿 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 由于各国家或地区的法律与其他一些法律不同,本协议包括仅适用于您位于欧洲经济区(“EEA”)、英国和瑞士(统称 “EEA+”)内情况的条款(第6.1 条)、仅适用于您位于中国内情况的条款(第 6.2 条)(为免疑义,仅为第6.2条之目的,中国不包含香港特别行政区、澳门特别行政区和中国台湾)和仅适用于您位于其他国家或地区的情况的条款(第 6.3 条)。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.1 如您位于 EEA+内 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本第6.1条仅适用于您位于EEA+内的情况。在我们已尽专业勤勉义务的前提下,我们不对任何损失或损害承担责任,除非其:(1)是由于我们对本协议的违反而造成的;或(2)在签订本协议时可被合理预见,即其显然会发生,或在您与我们签订本协议时已知可能会发生。本协议无意排除或限制我们对死亡或人身伤害、欺诈、欺诈性虚假陈述或任何法律规定不能排除的责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 尽管本协议另有规定,如果我们怀疑您违反了本协议,我们将遵循以下步骤。首先,我们可能会进行调查,在调查期间,我们可能会暂停您对NU护理单元平台的访问,并根据涉嫌违规行为的严重程度,在适用法律允许的范围内,根据任何法律义务,合理客观地采取行动。在下列情况下,我们可能决定暂时中止或永久终止您对NU护理单元平台的访问:(1) 我们根据法律法规合理客观地认定您严重或多次违反本协议;(2) 我们有客观理由合理地认为您即将严重违反本协议;(3) 法律要求我们如此行事;或 (4) 我们有客观理由合理地认为在处理严重的技术或安全问题时需要如此行事。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.2 如您位于中国 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本第6.2条仅适用于您位于中国内的情况。仅为第6.2条之目的,中国不包含香港特别行政区、澳门特别行政区和中国台湾。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 除适用法律另有明确规定外,在任何情况下,我们均不对任何间接性、后果性、惩罚性、偶然性、特殊性或刑罚性的损害承担责任,该等损害包括但不限于您因使用NU护理单元平台或NU护理单元平台服务而遭受的利润损失。除适用法律另有明确规定外,我们对您承担的全部责任,无论因何原因或何种行为方式,始终不超过您因使用NU护理单元平台或NU护理单元平台服务期间而支付给我们的费用(如有)。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.3 如您位于其他国家或地区 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本第6.3条仅适用于您位于第6.1条所述EEA+和第6.2条所述中国外的情况。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 无陈述或保证:NU护理单元平台和NU护理单元平台服务按“现状”“可用”提供,且您“风险自担”。在法律允许的最大范围内,我们明确不作对NU护理单元平台和NU护理单元平台服务的任何及所有明示或默示的陈述和保证,包括对适销性的默示保证、针对特定用途的适用性或非侵权性。我们不保证NU护理单元平台和NU护理单元平台服务能够满足您的要求,也不保证NU护理单元平台和NU护理单元平台服务的运行不会中断或没有错误。与NU护理单元平台和NU护理单元平台服务相关的信息、内容和服务可能包含漏洞、错误、问题或其他限制。在法律允许的最大范围内,我们、我们的关联公司、我们或其各自的董事、高级职员、雇员、代理、服务提供商和许可方(统称 “NU护理单元方”)对您使用NU护理单元平台和NU护理单元平台服务不承担任何责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 责任限制:在法律允许的最大范围内,NU护理单元方不对任何因本协议、NU护理单元平台或NU护理单元平台服务引起的或与之相关的任何间接的、附带的、结果性的、特殊的、法定的、约定的、惩罚性的或其他类似的损害赔偿,或任何超出实际损害的损害赔偿,包括收入损失、利润损失、数据丢失、业务中断或其他无形损失(无论此类损失如何定性)承担责任,无论是否基于合同、侵权行为或任何其他法律理论,也无论各方是否已被告知此类损失的可能性。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"访问由我们自行决定:"),e.createTextVNode("在法律允许的最大范围内,我们可随时自行决定,不经另行通知,限制、暂停、修改或终止您对NU护理单元平台或NU护理单元平台服务的访问,包括在您未能遵守或我们怀疑您未能遵守或即将未能遵守本协议的任何规定,或实际或涉嫌非法或不当情况下。任何此类终止或暂停将不影响我们根据适用法律可能享有的任何其他权利。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"辩护和赔偿:"),e.createTextVNode("对于因您使用NU护理单元平台和NU护理单元平台服务或您违反本协议而导致或引起的任何第三方主张的任何索赔、要求、指控、调查、诉讼、程序或其他争议,您同意为NU护理单元方辩护。并且您同意赔偿NU护理单元方因任何此类争议而产生的任何损害、责任、估定、损失、成本和其他费用(包括合理的律师费和法律费用),并使其免受损害。我们将及时通知您任何此类争议,并将向您提供合理协助,费用由您承担,以就任何此类争议进行抗辩,但未提供此类通知并不免除您在本协议项下的任何义务,除非您因未被提供此类通知而受到重大损害。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"例外:"),e.createTextVNode("本协议中的任何内容均不排除或限制因我们的严重疏忽或故意不当行为而导致的任何责任,或法律不能排除的任何责任。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.4 第三方服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您在使用NU护理单元平台某一特定服务时,该服务可能会另有单独的协议或规则,您在使用该项服务前请阅读并同意相关的单独协议或规则。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您在NU护理单元平台使用第三方提供的产品或服务时,除遵守本协议及其他相关规则外,还可能需要您仔细阅读、同意并遵守第三方的协议、相关规则。如因第三方产品或服务产生的争议、损失或损害,需由您自行与第三方依据相关协议解决。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.5 平台责任承担 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 我们仅按照适用法律法规规定承担平台责任。我们不对任何第三方的诽谤、犯罪或其他非法行为承担责任,也不赔偿因此造成的您的损失。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 6.6 服务变更、中断、终止 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," NU护理单元始终在不断变更和改进NU护理单元平台服务,我们会尽最大努力向您提供服务,确保服务的连贯性和安全性。基于此,我们可能会对NU护理单元平台进行更新,您应将软件更新到最新版本,否则我们不保证您可正常使用NU护理单元平台。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您理解并同意,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元根据自身商业决策、政府行为、不可抗力等原因可能会选择中止、中断及终止NU护理单元平台的部分或全部服务。"),e.createTextVNode("如有此等情形发生,我们会采取合理的方式并以合理的期限提前通知您,除法律法规另有规定外,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"我们不承担由此对您造成的损失。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 在NU护理单元发生合并、分立、收购、资产转让时,NU护理单元可将本协议下部分或全部NU护理单元平台服务及相应的权利义务转交由第三方运营或履行。具体受让主体以NU护理单元通知为准。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如发生下列任何一种情形,我们有权不经通知而中断或终止向您提供服务: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 根据法律法规规定您应提交真实信息,而您提供的个人资料不真实、或与注册时信息不一致又未能提供合理证明。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您违反相关法律法规的规定或违反本协议的约定。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 按照法律法规规定,或司法机关或主管部门的要求。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 出于安全的原因或其他必要的情形。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 七、协议变更与终止 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 7.1 协议变更通知 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"我们有权在必要时,修改本协议内容,并将通过合理的方式(包括但不限于NU护理单元平台公告、系统消息、站内信、手机短信、电子邮件或其他类似方式)及合理的期限提前通知您,该等通知于发送之日视为已送达您。"),e.createTextVNode("您可以通过NU护理单元平台相关页面查阅最新版本的协议内容。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 7.2 变更协议生效 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"本协议变更生效后,如您继续使用NU护理单元平台或NU护理单元平台服务,即视为您已接受修改后的协议。如您不接受修改后的协议,应当停止使用NU护理单元平台或NU护理单元平台服务。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 7.3 协议终止 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您注销您的NU护理单元账号或NU护理单元通知您终止为您提供NU护理单元平台服务(包括但不限于封禁账号、注销账号或其他类似措施)时,本协议将同时终止,NU护理单元将不再另行通知您终止本协议。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 八、法律适用与管辖 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 8.1 本协议的订立、生效、履行、解释、修订、终止及纠纷解决,适用中华人民共和国法律法规(仅为本协议之目的,不包括香港特别行政区及澳门特别行政区法律法规,和中国台湾地区有关规定)。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 8.2 若您与NU护理单元之间发生任何纠纷或争议,由NU护理单元与您协商解决。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"协商不成的,您同意将纠纷或争议提交被告所在地人民法院管辖。")]),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 九、其他 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 9.1 本协议所有条款的标题仅为阅读和理解方便,本身并无实际涵义,不能作为本协议涵义解释的依据。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 9.2 本协议条款无论因何种原因部分无效或不可执行,其余条款仍有效,并对双方具有约束力。如果某条款规定我们在特定情况下有特定权利,这并不意味着该权利是我们在该等特定情况下可以行使的唯一权利,也不意味着该条款取消或使涉及相同情况或主旨事项的任何其他条款无效或失效。任何一方未能执行或延迟执行本协议项下的任何权利、救济或条款,不应被视为放弃该权利、救济或条款。任何弃权必须明确以书面形式作出并由弃权方签署。任何权利或救济的单次或部分行使,不应妨碍该权利或补救措施或任何其他权利或补救措施的进一步或其他行使。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 9.3 如您对本协议有任何意见或建议,您可向NU护理单元平台(service@blxinchuang.com)反馈,我们会给予您必要的帮助。 ")])])}],["__scopeId","data-v-8b11c490"]]);const u=s({},[["render",function(t,l){return e.openBlock(),e.createElementBlock("view",{class:"all"},[e.createElementVNode("scroll-view",{"scroll-y":"",class:"all-content"},[e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx"}}," 为了更好地保障您的权益,我们于近日更新了《NU护理单元隐私信息保护政策》。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx"}}," 请您在使用/继续使用NU护理单元产品/或服务前仔细阅读、充分理解全文,并在同意全部内容后使用/继续使用。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 前言 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1. NU护理单元/或服务指由吉林省捌零信创科技有限公司及其关联公司(以下称为“NU护理单元”或者“我们”)运营,并由吉林省捌零信创科技有限公司开发及维护的产品和服务(以下亦称“我们的产品/或服务”)。我们非常重视您的隐私保护和个人信息保护,鉴于此,我们制定本《NU护理单元隐私信息保护政策》(以下称为“本政策”),与您确认关于您在使用我们的产品/或服务期间,NU护理单元收集、存储、使用、披露和保护您的个人信息的相关事宜。如您对本政策内容有任何疑问、意见或建议,您可通过我们提供的各种联系方式与我们联系。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 2. 在使用我们的各项产品和/或服务前,请您务必仔细阅读并透彻理解本政策,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"特别是以粗体、粗体加下划线标识的条款,您应重点阅读,在确认充分理解并同意后开始使用。如果您/您的监护人不同意本政策的任何内容,您应该立即停止使用。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3. 本政策为NU护理单元统一适用的一般性隐私政策条款,适用于NU护理单元提供的所有产品和服务。当我们及关联公司就其向您提供的特定产品和/或服务单独设立隐私政策的,则优先适用该产品和/或服务的隐私政策。该产品和/或服务的隐私政策未涵盖的内容,以本政策内容为准;该产品和/或服务的隐私政策与本政策存在冲突的,以该产品和/或服务的隐私政策为准。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 4. "),e.createElementVNode("text",{style:{"font-weight":"600"}},"请您注意,本政策不适用于与我们的平台、产品和/或服务集成的任何第三方应用程序或软件,或者任何其他第三方产品、服务或业务(统称为“第三方服务”)。第三方服务由第三方负责运营,您使用第三方服务应遵守第三方为此制定的隐私政策或其他个人信息处理规则,我们提示您仔细识别实际服务的提供方,并在使用任何第三方服务之前仔细查看相关规则。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 5. 您同意本政策表示您已经了解并同意在相关场景下,为实现功能运行,我们将对您的相关个人信息进行处理。但这并不代表只要您开始使用我们的产品和/或服务,我们即开始处理本政策中涉及的您的全部个人信息。只有当您使用特定功能时,我们才会根据“最小必要”原则,为实现向您提供产品功能及服务的目的,处理您的相关个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 6. 您理解并同意,基于不断完善产品和服务的目的,我们将不时推出新增和/或优化功能,可能增加或变更收集、使用个人信息的范围、目的和方式。对此,我们将通过更新本政策、页面提示、新签署文件、弹窗、网站公告或站内信等即时通知方式另行向您明确说明,并为您提供同意与否的选项。该等即时通知是本政策的有效组成部分,与本政策具有同等法律效力。您有权拒绝同意该等即时通知,但您同时知悉并理解,一旦您拒绝我们收集、处理您的个人信息属于实现更新服务或功能所必要的情形时,我们将可能无法为您提供更新后的服务与功能,或者无法达到更新服务的效果,但您原有正常使用的基础功能不受影响。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 关于我们 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们的主要运营公司基本情况如下:长春市经济开发区长吉南线以东、吉林大路以南东方广场中意国际大厦B座1431号。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 联系电话:18043530712。如您想更详细的了解我们的公司、平台,您可以通过本政策提供的联系方式与我们联系。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 第一部分 定义 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"1. 个人信息:"),e.createTextVNode("是以电子或者其他方式记录的与已识别或者可识别的自然人有关的各种信息,不包括匿名化处理后的信息。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"2. 敏感个人信息:"),e.createTextVNode("是一旦泄露或者非法使用,容易导致自然人的人格尊严受到侵害或者人身、财产安全受到危害的个人信息,包括"),e.createElementVNode("text",{style:{"font-weight":"600"}},"生物识别、宗教信仰、特定身份、金融账户、行踪轨迹等信息,以及不满十四周岁未成年人的个人信息。敏感信息在本政策中会做加粗加下划线提示。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"3. 个人信息的处理:"),e.createTextVNode("包括个人信息的收集、存储、使用、加工、传输、提供、公开、删除等。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"4.个人信息处理者:"),e.createTextVNode("是指在个人信息处理活动中自主决定处理目的、处理方式的组织、个人。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"5.个人信息主体:"),e.createTextVNode("指个人信息所标识或者关联的自然人。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"6.自动化决策:"),e.createTextVNode("是指通过计算机程序自动分析、评估个人的行为习惯、兴趣爱好或者经济、健康、信用状况等,并进行决策的活动。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"7.去标识化:"),e.createTextVNode("指个人信息经过处理,使其在不借助额外信息的情况下,无法识别特定自然人的过程。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"8.匿名化:"),e.createTextVNode("指个人信息经过处理无法识别特定自然人且不能复原的过程。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"9. NU护理单元:"),e.createTextVNode("是指NU护理单元或其关联公司发布和/或运营的包括但不限于NU护理单元相关的网络平台。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"10. NU护理单元产品和/或服务:"),e.createTextVNode("指我们基于互联网,以包含NU护理单元网站、客户端(含APP\\APK\\小程序)及其他产品形态(如SDK\\API等,以及未来技术发展出现的新的形态)向您提供的包括但不限于内容分发、信息网络传播、互联网音视频业务等各项产品和服务。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"11. 平台规则:"),e.createTextVNode("包括在所有NU护理单元网站、客户端内已经发布及后续发布的全部规则、用户服务协议、解读、公告、其他内容以及各平台在频道、活动页面、帮助中心发布的各类规则、实施细则、产品说明、公告及各形式的平台规范。 ")]),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 第二部分 隐私保护政策 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本政策将帮助您了解以下内容: "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 一、我们如何收集和使用您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 二、我们如何使用 Cookie 和同类技术 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 三、我们如何共享、转让和披露您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 四、我们如何存储您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 五、我们如何保护您的个人信息安全 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 六、我们如何保护未成年人的个人信息 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 七、您如何行使您的个人信息权利 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 八、如何联系我们 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 一、我们如何收集和使用您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 因向您提供的产品和服务种类众多,我们将根据具体产品/服务范围和不同功能,遵循合法、正当和必要原则收集和使用您的个人信息。以下我们向您逐一告知各功能需要的必要个人信息类型及需授权的权限。 "),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (一) 帮助您注册、登录和维护平台账号 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1. 注册与登录 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" (1) 手机号或账号密码注册/登录:当您注册、登录我们的产品和/或服务时,为了帮您顺利完成注册/登录流程,您需要提供: "),e.createElementVNode("text",{style:{"font-weight":"600"}},"手机号码、短信验证码信息或NU护理单元登录账号及密码信息。"),e.createTextVNode("同时,我们还提供 “一键登录”功能,与我们建立合作关系的运营商或其合作伙伴会将您设备中的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"手机号码"),e.createTextVNode("提供给我们作为您的注册、登录账号并免于动态验证码核验,便于我们为您提供快捷的注册、登录服务。如果您不希望使用“一键登录”功能,可以选择其他方式进行注册、登录。收集手机号码信息是为了满足相关法律法规的网络实名制要求,如您拒绝提供手机号码进行核验,将导致注册/登录失败,但您仍可在游客模式下使用音视频的浏览、搜索、播放功能。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" (2) 扫码登录:当您通过扫码方式进行登录时,我们会请求您授权设备的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"相机、相册/存储权限"),e.createTextVNode(",以实现通过扫描二维码方式完成登录。如您不需要使用扫码登录服务,您也可以选择其他登录方式。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2. 资料维护和账号找回 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" (1) 为维护您的基本资料,提升您的服务体验,您可以选择填写完善您的个人信息,包括您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"电子邮箱、性别、所在地、头像、昵称、生日、个人简介;"),e.createTextVNode("在相关儿童页面,您也可以选择在宝贝信息界面内填写您宝贝的性别和生日,当您选择上传头像时,我们会请求您授权"),e.createElementVNode("text",{style:{"font-weight":"600"}},"相机、相册/存储权限"),e.createTextVNode(",以实现头像拍摄或选择后完成上传。当您选择一键同步第三方账号昵称和头像时,经您授权,第三方平台将与我们同步您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"第三方账号信息(如头像、昵称,具体以您的授权范围为准)。"),e.createTextVNode("如您选择不提供这些信息,不会影响您使用基础服务功能。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," (2) 若您希望绑定或者解绑您所关联的第三方平台账号,您可以随时在“我的-设置-账号与安全-账号绑定”进行设置,第三方平台账号的绑定或解绑不会影响您使用基础服务功能。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" (3) 如果您的账号遗失,您可以找回账号。如果您遗忘账号密码,您可以通过手机短信验证,或联系客服找回密码或重置密码;您也可以换绑已注册手机号码。但在此过程中,我们可能需要您提供必要的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"身份信息、手机号码、经常登录地点、经常登录设备、经常收听内容、注册时间和城市信息"),e.createTextVNode("等相关信息以验证您的身份;为了核验您的真实身份,必要时还可能通过静态或动态的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"人脸识别"),e.createTextVNode("验证您的真实身份。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3. 账号权益与资金 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," (1) 账号权益:基于NU护理单元统一账号体系和便于您在我们的产品和/或服务中使用相关权益与资产,我们会收集您在NU护理单元账号下的权益及资产信息,同时,我们会在应用内向您展示您的部分或全部前述信息,具体以页面实际展示为准。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" (2) 资产提现:当您使用我们的提现功能时,需要您提供"),e.createElementVNode("text",{style:{"font-weight":"600"}},"结算主体相关信息(姓名/名称、身份证号/统一社会信用代码)、结算账户相关信息(持卡人/户名、银行卡信息/支付宝账号信息),"),e.createTextVNode("以完成结算主体认证及资金结算账户绑定;若您是境外用户,可能还需要您提供"),e.createElementVNode("text",{style:{"font-weight":"600"}},"境外用户主体身份证明材料(如护照号、手持证照照片等"),e.createTextVNode(")。我们会在应用内向您展示您的部分或全部前述信息,具体以页面实际展示为准。您可以在我们产品的相关页面修改您已绑定的结算账户。如您拒绝提供前述结算账户相关信息,您将无法顺利提现,不影响您使用我们的其他功能与服务。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 4. 若您还未成为平台注册用户,您可以游客身份使用我们提供的基本功能,主要包括音频作品的搜索、浏览和播放。为保障上述功能实现、履行网络系统运营安全义务,我们将收取您的必要"),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备信息(设备型号、设备MAC地址、操作系统版本、唯一移动设备识别码(IMEI、Android ID、IDFA、IDFV、HarmonyOS UUID、SIM卡序列号和IMSI信息))"),e.createTextVNode(",为您分配专属标识符,并基于此标识符记录您游客身份下的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"操作信息"),e.createTextVNode(",即您浏览、播放等记录,并以日志文件的形式进行保存。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 5. 根据相关法律法规对互联网账号的管理要求、维护网络安全和良好的网络内容生态,我们会在您的个人主页以及您发布的内容、信息页面展示您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"IP属地"),e.createTextVNode("(境内IP地址展示至省/自治区/直辖市、境外IP地址展示至国家/地区,具体信息以网络运营商数据为准)。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 6."),e.createElementVNode("text",{style:{"font-weight":"600"}}," 为更好地保护未成年人隐私权益,我们特别提醒您慎重发布包含未成年人素材的内容,一经发布,即视为您已获得权利人同意在我们的产品和/或服务展示未成年人的肖像、声音等信息,且允许我们依据平台协议及本政策使用、处理该等与未成年人相关的内容。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 通讯录权限保持默认关闭状态。如您不希望被推荐给您的通讯录好友,您也可以通过设备权限管理关闭此前向NU护理单元开放的通讯录授权。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 7. 您在使用我们的服务时,若您想分享您喜欢的内容至第三方平台或应用,我们需要从您的设备终端读取"),e.createElementVNode("text",{style:{"font-weight":"600"}},"已安装的移动应用列表"),e.createTextVNode(",用以判断您是否安装了第三方应用,以便为您提供正确的分享功能。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 您在使用我们的服务时所共享的内容和信息,可能会涉及他人的个人信息,请您确认已获得他人的合法授权。与此同时,您有义务妥善保护自己的个人信息,仅在必要的情形下向他人提供、展示自己的信息。如您发现自己的个人信息泄露,尤其是您的账户或密码发生泄露,请您立即联系NU护理单元客服。 "),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (二)为您提供充值服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 为向您展示充值服务,帮助您完成交易,以及向您提供客户服务,同时基于维护支付安全、追溯网络交易行为等相关法律法规要求,当您在使用订阅或购买商品/服务时,我们会收集如下信息: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 1. 当您充值时,我们将收集您在完成交易时的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"服务信息"),e.createTextVNode("生成您的账单明细,此外,我们还需记录并保存"),e.createElementVNode("text",{style:{"font-weight":"600"}},"与订单相关的信息"),e.createTextVNode(",包括:"),e.createElementVNode("text",{style:{"font-weight":"600"}},"交易金额、下单时间、订单编号、订单状态、支付方式、支付流水号、支付状态"),e.createTextVNode(",我们收集这些信息是为了帮助您顺利完成交易、保障您的交易安全、查询订单信息,配合网络交易监管的法定义务。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 上述所有信息构成您的订单信息,我们(包括与为您提供上述服务的第三方)将使用您的订单信息进行您的身份核验、确定交易、支付结算、完成配送、为您查询订单以及提供客服咨询与售后服务。我们还会使用您的订单信息来判断您的交易是否存在异常以保障您的交易安全。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 2. 当您通过扫一扫参加活动时,我们会请求您授权您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"相机权限、相册/存储权限"),e.createTextVNode(",用于识别、保存或上传活动及分享二维码。我们可能会通过您所上传的照片/图片来识别您需要参与的活动链接或者音视频服务链接。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 3. 此外,为判断您是否满足活动要求的参与资格或者为了保障活动的正常秩序、防范作弊与欺诈等违法违规情况,我们同时可能需要收集和使用您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备信息(如:设备型号、设备MAC地址、操作系统版本、唯一移动设备识别码(IMEI、Android ID、IDFA、IDFV、HarmonyOS UUID、SIM卡序列号和IMSI信息))。")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (三)为您提供个性化内容推荐 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 1."),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备信息:"),e.createTextVNode("我们会根据您在软件安装和使用中的具体操作,接收并记录您所使用的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备相关信息(包括设备型号、硬件序列号、设备MAC地址、操作系统版本、设备设置、唯一设备识别码(IMEI、Android ID、IDFA、IDFV、GAID、HarmonyOS UUID、SIM卡序列号和IMSI信息)、UUID、必要的移动应用列表信息、软硬件及设备、设备环境信息、传感器信息)、设备所在位置相关信息"),e.createTextVNode("(为了识别判断您所在地区的内容版权,需要收集您授权的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"GPS精准位置"),e.createTextVNode("以及"),e.createElementVNode("text",{style:{"font-weight":"600"}},"WLAN接入点"),e.createTextVNode("(如SSID、BSSID)和"),e.createElementVNode("text",{style:{"font-weight":"600"}},"基站、传感器"),e.createTextVNode("信息)。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 2."),e.createElementVNode("text",{style:{"font-weight":"600"}},"日志信息:"),e.createTextVNode("当您使用我们的网站或客户端提供的产品或服务时,我们会自动收集您的详细使用情况,并作为网络日志保存。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"日志信息"),e.createTextVNode("包括您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"搜索和浏览记录"),e.createTextVNode("、关注、播放记录、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"购买消费记录"),e.createTextVNode("、访问量、播放时长、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"IP地址"),e.createTextVNode("、WIFI网络、运营商信息、电信运营商网络、使用的语言、访问日期和时间。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们将会在收集上述信息的基础上提取您的偏好特征,并基于特征标签产出间接人群画像,用于为您展示、推送个性化内容和您可能感兴趣的商业广告。但我们努力保障您的产品使用体验。如您对我们推荐的个性化内容不感兴趣或希望不再接收此类个性化服务,您可通过“我的-设置-我的隐私管理-个性化内容推荐/个性化广告推荐”选择关闭。关闭后首页向您展示和推荐的内容将可能与您的偏好相关度降低。 "),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (四)为您提供残障用户专享服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 为履行企业责任、体现社会关怀,当您享受我们为残障人士定向提供的“专享礼包”服务时,您需要提供您的姓名、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"身份证号"),e.createTextVNode("以及"),e.createElementVNode("text",{style:{"font-weight":"600"}},"残疾人证信息"),e.createTextVNode("以实现身份认证,我们会将您提供的前述信息与中国残疾人联合会的数据库进行比对和信息验证,以验证您的身份。如您拒绝提供上述信息,将使您无法享受残障用户专享服务,但不影响您正常使用NU护理单元的其他功能。 ")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (五) 帮助您连接智能设备 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您如希望将App与您所使用的智能设备相连接,您需要开启"),e.createElementVNode("text",{style:{"font-weight":"600"}},"蓝牙权限"),e.createTextVNode(",以使得我们能够搜索到您的智能设备。此外我们可能会收集您的Wi-Fi信息、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"位置信息"),e.createTextVNode("、智能设备信息。这些信息将用于为您提供智能设备快连、连接、发现附近设备和设备管理的功能。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"如您拒绝提供上述信息,我们将无法帮助您连接智能设备,但不影响您正常使用NU护理单元的其他功能。")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (六)为您提供客户服务及处理争议 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 当您向我们发起投诉、申诉或进行咨询时,为了您的账号与系统安全,我们可能需要您先行提供账号信息,并与您之前的个人信息相匹配以验证您的用户身份。同时,为了方便与您联系或帮助您解决问题,我们可能还需要您提供"),e.createElementVNode("text",{style:{"font-weight":"600"}},"姓名、手机号码、电子邮件"),e.createTextVNode("及其他联系方式等个人信息,并通过第三方客服系统保存"),e.createElementVNode("text",{style:{"font-weight":"600"}},"通话录音"),e.createTextVNode(",其中可能包含"),e.createElementVNode("text",{style:{"font-weight":"600"}},"通信/通话记录"),e.createTextVNode(",用于与您联系和帮助您解决问题,或记录相关问题的处理方案及结果。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 为确认交易状态及为您提供商品/服务的售后与争议解决服务,我们会通过您基于交易所选择的支付机构、支付方式等收集与"),e.createElementVNode("text",{style:{"font-weight":"600"}},"交易相关的信息"),e.createTextVNode(",包括iOS端IAP支付交易凭证和收费凭证。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 如您拒绝提供上述信息,我们将无法为您提供完整的客户服务及处理争议,但不影响您正常使用NU护理单元的其他功能。 "),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (七)为您提供安全保障功能 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 为履行维护网络安全义务,提高您使用服务的安全性,确保操作环境安全,预防钓鱼网站、欺诈、网络漏洞、计算机病毒、网络攻击、网络侵入等安全风险,以用于识别设备是否存在篡改设备信息行为,预防、发现和调查潜在的违法违规或违反用户服务协议、政策或规则的行为,如会员账号活动异常、多端登录、流量异常、经常性退款请求或低价转让会员卡等,我们以及在应用程序中嵌入的应用安全SDK将在后台自动收集您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备信息(包括设备型号、硬件序列号、设备MAC地址、操作系统版本、设备设置、唯一移动设备识别码(IMEI、Android ID、IDFA、IDFV、MEID、HarmonyOS UUID、OAID、SIM卡序列号和IMSI信息)、UUID、WLAN接入点(如SSID、BSSID)和基站、必要的移动应用列表信息、运行中的进程信息、软硬件及设备、设备环境信息、设备传感器信息 "),e.createTextVNode("(如磁场传感器、光传感器、压力传感器、旋转矢量传感器、方向传感器、重力传感器、加速度传感器、陀螺仪传感器,请您知悉,单纯的传感器数据并非个人信息))、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"日志信息(包括您的搜索和浏览记录、关注、播放记录、访问量、播放时长、IP地址、WIFI扫描列表、WIFI名称、运营商信息、电信运营商网络、使用的语言、访问日期和时间)"),e.createTextVNode(",并可能使用或整合您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"账户信息、交易信息、支付信息"),e.createTextVNode("以及其他取得您授权或依据法律共享的信息,综合判断您账户及交易风险、完成身份验证、检测,防范安全事件,并依法采取必要的记录、审计、分析、处置措施,保护各方合法权益稳定不受侵害。 ")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (八)其他附加服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 为向您提供个性化的产品和服务,提升用户体验,我们还会向您提供以下附加服务,并仅在您使用到相关功能时向您获取个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"1.驾驶模式:"),e.createTextVNode("当您开启驾驶模式后,我们会在获得您的同意后为您开启语音助手功能,我们会申请访问"),e.createElementVNode("text",{style:{"font-weight":"600"}},"麦克风权限"),e.createTextVNode("并收集您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"语音信息"),e.createTextVNode(",用于提供对应的语音服务,帮助您在驾驶时通过语音控制播放您喜欢的音频。即便您已同意开启麦克风权限,麦克风仍保持默认关闭状态,仅会在您主动点击客户端内麦克风图标或录制音频时通过麦克风获取语音信息。我们收集的语音信息仅作操作指令识别(或者语音转换文字识别),我们不会主动留存您的语音指令信息,更不会用作其他语音控制播放功能以外的用途。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"2.本地内容及生活服务推荐:"),e.createTextVNode("为向您提供或推荐您所在地附近的资讯和所在地相关音视频内容、本地广播和相关电影周边观影场所推荐、经常访问地周边的点餐和其他本地生活服务推荐信息,我们需要您授权"),e.createElementVNode("text",{style:{"font-weight":"600"}},"位置权限(精准地理位置)"),e.createTextVNode("以为您提供上述服务。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"3. 信息预填:"),e.createTextVNode("在部分需要填写您的信息的场景中(如广告落地页等),为优化您的使用体验、简化操作步骤,取得您的授权同意后,我们会将您在NU护理单元绑定的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"手机号码、姓名(如有)"),e.createTextVNode("等信息在相关页面进行预填。若您认为预填信息不准确的,您可以手动进行修改。请您知悉,预填的信息只有在您确认提交后才会被页面指向的个人信息处理者所获取。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 部分情况下该行为可能会被误判为应用自启动,但该行为属于合理使用并非侵犯用户权益的自启动行为。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您可在您的设备设置中逐项查看上述权限的状态,并可自行决定这些权限随时的开启或关闭。请您注意,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您开启任一权限即代表您授权我们可以收集和使用相关个人信息来为您提供对应服务,您一旦关闭任一权限即代表您取消了授权,我们将不再基于对应权限继续收集和使用相关个人信息,也无法为您提供该权限所对应的服务。"),e.createTextVNode("但是,您关闭权限的决定不会影响此前基于您的授权所进行的信息收集及使用,亦不影响您使用其他服务。 ")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (九)收集和使用您的个人信息的特别说明 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 1.若你提供的信息中含有其他用户的个人信息,在向我们提供这些个人信息之前,您需确保您已经取得合法的授权。若其中涉及未成年人个人信息的,您需在发布前取得对应未成年人监护人的同意,前述情形下监护人有权通过本政策第九条的途径联系我们,要求更正或删除涉及未成年人个人信息的内容。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2.若我们将您的个人信息用于本政策未载明的其他用途,或者我们超出了与收集您的个人信息时所声称的目的及具有直接或合理关联范围的,均会事先获得您的同意。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3. 若我们从第三方处间接获取(如从第三方处共享)您的信息,我们会在收集前明确以书面形式要求该第三方在已依法取得您同意后共享您的个人信息,并向您告知共享的您的个人信息的类型、使用目的、方式、授权同意范围,并要求第三方对个人信息来源的合法性和合规性作出承诺,如第三方存在违反行为,我们会明确要求对方承担相应法律责任。同时,我们的专业安全团队对个人信息会进行安全加固(包括敏感信息报备、敏感信息加密存储、访问权限控制)。我们会使用不低于我们对自身用户个人信息同等的保护手段与措施保护间接获取的个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 4.征得授权同意的例外 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 您充分理解并同意,根据法律法规要求,我们在以下情况下收集、使用您的个人信息无需征得您的授权同意: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (1) 为订立、履行个人作为一方当事人的合同所必需; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (2) 为履行法定职责或者法定义务所必需; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (3) 为应对突发公共卫生事件,或者紧急情况下为保护自然人的生命健康和财产安全所必需; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (4) 为公共利益实施新闻报道、舆论监督等行为,在合理的范围内处理个人信息; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (5)在合理的范围内处理个人自行公开或者其他已经合法公开的个人信息; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (6) 法律、行政法规规定的其他情形。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 二、 我们如何使用 Cookie 和同类技术 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 为确保网站正常运转、为您获得更轻松的访问体验、向您推荐您可能感兴趣的内容,我们和第三方合作伙伴可能借助于 Cookie或同类技术收集和使用您访问以及使用我们产品和/或服务的信息,并将该信息进行存储。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 如果您的浏览器或浏览器附加服务允许,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您可修改对Cookie的接受程度或拒绝我们的Cookie。"),e.createTextVNode("但如果您这么做,在某些情况下可能会影响您安全访问我们的网站,且可能需要在每一次访问我们的网站时更改用户设置。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 当您使用网页浏览使用我们的产品和/或服务时,您可以选择在浏览器的设置中清除Cookie数据,大部分浏览器均为用户提供了该等功能。但请您知悉,当您选择清除后,可能无法使用由我们提供的依赖于Cookie的功能或服务。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 三、我们如何共享、转让和披露您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (一) 共享 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 除下列情形外,我们不会与任何其他第三方共享您的个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 1. 在获得您的明确同意或授权或您主动选择的情况下共享。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"2. 在法定情形下的共享。"),e.createTextVNode("我们可能会根据法律法规规定、诉讼争议解决需要,或按行政、司法机关依法提出的要求,对外共享您的个人信息。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"3. 统一账号体系下的共享。"),e.createTextVNode("为便于我们基于统一账号体系为您带来标准化的服务体验、实现安全风控及客户服务之需要,您可以使用NU护理单元账号登录适用统一账号体系下的关联应用产品。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"4. 与合作伙伴共享。"),e.createTextVNode("您授权并同意我们可能委托合作伙伴为您提供某些服务或代表我们履行职能,我们仅会出于本隐私信息保护政策声明的合法、正当、必要、特定、明确的目的共享您的信息。我们将通过协议约束我们的合作伙伴只能接触到为其履行职责所需信息,要求其履行严格的保密和与风险相适应的安全措施来处理您的个人信息、包括但不限于数据保护协议或条款、承诺函等,且不得将您的个人信息用于其他任何目的。如超出共享目的使用您个人信息,我们将要求其另行遵循您的明确同意。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 5. 安全运营。我们将部分个人信息提供给支持我们业务的供应商、服务提供商和其他合作伙伴,以提供技术基础设施服务、分析用户使用方式、支付便利或进行学术研究和调查,进行Bug或者崩溃统计、提升登录体验,实现网关取号。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 6. 商业推广。为了您能更方便地了解和触达我们的资讯、产品/服务促销等信息,我们会向某些第三方网站和应用程序提供"),e.createElementVNode("text",{style:{"font-weight":"600"}},"加密后的设备信息"),e.createTextVNode(",进而在第三方平台为您提供我们的上述市场推广信息,并衡量优化有关我们产品和/或服务的市场推广效果。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 7. 留资广告。当第三方合作伙伴使用我们提供的技术服务向您提供商业信息或其他服务时,经取得您的授权同意,我们将基于第三方合作伙伴的委托处理您主动填写或提供的个人信息,请以相应页面内的信息收集使用提示文本为准。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"请您知悉,该等情形下,第三方合作伙伴为个人信息处理者。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 请您放心,除得到您的明确同意,我们不会将可以联系或识别您身份的个人信息与授权合作伙伴共享,我们将能够识别您身份的个人信息进行去标识化处理,以便授权合作伙伴无法识别您的具体身份。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" NU护理单元产品中包含我们的合作伙伴提供的SDK插件。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"当您在NU护理单元中使用该授权合作伙伴提供的相关服务,该等服务插件将收集和处理您的相关个人信息,详见附件:《NU护理单元与第三方共享个人信息清单》,我们强烈建议您在使用在使用我们的产品和/或服务前先行查看并了解其隐私条款。"),e.createTextVNode("我们会对合作伙伴获取有关信息的应用程序接口(API)、软件工具开发包(SDK)进行严格的安全检测,审慎评估服务提供商使用您个人信息的目的,并与合作伙伴通过签署协议的方式约定严格的数据保护措施,要求其按照我们的委托目的、服务说明以及其他任何相关的保密和安全措施来处理个人信息。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (二) 转让、公开披露 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们不会将您的个人信息转让给任何公司、组织和个人,但以下情况除外: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1. 在获取您明确同意的情况下转让; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2. 在NU护理单元及其关联公司发生重组、合并、分立、收购、资产出售或破产清算情形或其他类似情形时,如涉及到个人信息转让,我们将要求受让方采用与本政策相同或更高的标准和要求进行处理和保护,否则我们将要求受让方重新向您征求同意。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 除符合法律法规的规定进行公开披露或获得您单独同意外,我们不会公开披露您未自行公开或者其他未合法公开的个人信息。且在我们公开披露您的个人信息前会进行个人信息保护影响评估,并采用符合行业内标准的安全保护措施进行处理。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (三) 共享、转让、披露个人信息时事先征得授权同意的例外 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 以下情形中,共享、转让、公开披露您的个人信息无需事先征得您的授权同意: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1.与国家安全、国防安全有关的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2.与公共安全、公共卫生、重大公共利益有关的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3.与犯罪侦查、起诉、审判和判决执行有关的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 4.出于维护您或其他个人的生命、财产重大合法权益但又很难得到本人同意的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 5.您自行向社会公众公开的个人信息; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 6.从合法公开披露的信息中收集个人信息的,包括合法的新闻报道、政府信息公开渠道; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 7.履行其他履行法律法规规定的相关义务,如促成在线知识产权纠纷解决。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 根据法律规定,当共享、转让经采取技术措施处理的个人信息,使得数据接收方无法复原并重新识别特定个人身份时,我们将不会另行向您通知并征得您的同意。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 四、 我们如何存储您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (一) 存储地点 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们在中华人民共和国境内运营中收集和产生的个人信息,存储在中国境内。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 目前我们暂时不存在跨境存储您的个人信息或向境外提供您的个人信息的情况。如果确有必要进行数据的跨境传输,我们会单独向您明确告知(包括数据出境的目的、接收方、使用方式与范围、使用内容、安全保障措施、安全风险等),并征得您的明确授权同意,我们会确保数据接收方有充足的数据保护能力来保护您的个人信息,并严格按照适用法律法规的规定执行。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 针对以上情形,我们会确保依据本政策对您的个人信息提供足够的保护。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (二)存储期限 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们只会在达成本政策所述目的所需的最短期限内保留您的个人信息,除非法律法规有强制的存留要求,例如,根据《电子商务法》及配套法规的要求,您的订单类交易数据的保存时间自交易完成之日起不少于三年。我们判断前述期限的标准主要包括并以其中较长者为准: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1、完成与您相关的服务目的、维护相应服务及业务记录、应对您可能的查询或投诉; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2、保证我们为您提供服务的安全和质量; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3、您是否同意更长的留存期间; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 4、是否存在保留期限的其他特别约定。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 在您的个人信息超出保留期限后,我们会根据适用法律的要求删除或者匿名化处理您的个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (三) 删除和匿名化处理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如本平台服务决定停止运营时,我们将在相关服务停止运营后停止继续收集您的个人信息。我们将以公告形式将停止运营通知向您送达。对已持有您的个人信息,我们将进行删除或匿名化处理,除非法律法规另有规定。涉及未成年人个人信息的,我们会采取必要合理方式及时将停止运营的通知及时告知未成年人监护人。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 五、我们如何保护您的个人信息安全 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 为保障您的信息安全,我们努力采取各种符合业界标准的合理的物理、电子和管理方面的安全措施来保护您的信息,使您的信息不会被泄漏、毁损或者丢失。为确保您的个人信息安全,我们承诺将尽合理商业努力达到通行或者更高的安全水平: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (一) 技术安全防护 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们将采取的技术安全措施包括但不限于SSL、信息加密存储、数据中心的访问控制。我们会使用加密技术提高个人信息的安全性;使用受信赖的保护机制防止个人信息遭到恶意攻击。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (二) 安全体系保证 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们有行业先进的以数据为核心,围绕数据生命周期进行的数据安全管理体系,从组织建设、制度设计、人员管理、产品技术方面多维度提升整个系统的安全性。目前,NU护理单元已通过网络安全等级保护的三级测评。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (三) 人员安全管理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们对可能接触到您的信息的员工或外包人员采取了严格管理,包括但不限于根据不同岗位分配不同访问权限的控制机制,并签署保密协议,实时记录并掌握操作情况等。我们会举办安全和隐私保护培训课程,加强员工对于保护个人信息重要性的认识。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (四) 敏感信息及密码保护提示 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"1. 敏感个人信息保护:"),e.createTextVNode("您在使用我们服务时自愿共享甚至公开分享的信息,可能会涉及您或他人的个人信息甚至"),e.createElementVNode("text",{style:{"font-weight":"600"}},"敏感个人信息,例如您上传的头像图片,您在评论、发弹幕时选择上传包含个人信息的图片。"),e.createTextVNode("请您更加谨慎地考虑,是否在使用我们的服务时共享甚至公开分享相关信息。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"2. 您的账户均有安全保护功能,请妥善保管您的账户及密码信息。"),e.createTextVNode("我们将通过向其它服务器备份、对用户密码进行加密以及其他安全措施确保您的信息不丢失,不被滥用和变造。此外,请您尽量使用"),e.createElementVNode("text",{style:{"font-weight":"600"}},"复杂密码"),e.createTextVNode(",协助我们保证您的账号安全。我们将尽力保障您发送给我们的任何信息的安全性。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" "),e.createElementVNode("text",{style:{"font-weight":"600"}},"但请您知悉,互联网并非绝对安全的环境。"),e.createTextVNode("尽管有前述安全措施,但同时也请您理解在网络上不存在“完善的安全措施”。故请您妥善保护自己的个人信息,仅在必要的情形下向他人提供。如您发现自己的个人信息泄露,尤其是您的账户及密码发生泄露,请您立即联络我们客服,以便我们采取相应措施。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (五) 信息安全事件处理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 在不幸发生个人信息安全事件时,我们将按照法律法规的要求向您告知:安全事件的基本情况和可能的影响、我们已采取或将要采取的处置措施、您可自主防范和降低风险的建议、对您的补救措施。事件相关情况我们将以邮件、电话、推送通知、短消息的方式告知您,难以逐一告知个人信息主体时,我们会采取合理、有效的方式发布公告。同时,我们还将按照监管部门要求,上报个人信息安全事件的处置情况。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 六、 我们如何保护未成年人的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 若您是未满18周岁的未成年人,您应在您的监护人监护、指导下并获得监护人同意的情况下,认真阅读并同意本政策后,方可使用我们的服务或向我们提供信息。若您未取得监护人的同意,监护人可以通过联系本政策第九节中提供的联系方式通知我们处理相关账号,我们有权对相关账号的功能、使用进行限制,包括但不限于浏览、发布信息、互动交流等功能。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 我们非常重视对未成年人的个人信息保护,未成年用户在填写个人信息时,请加强个人保护意识并谨慎对待,并应在取得监护人的同意以及在监护人指导下正确使用我们提供的产品及相关服务。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 未成年人用户及其监护人理解并确认,如您违反法律法规、本政策内容,则您及您的监护人应依照法律规定承担因此而可能导致的全部法律责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 我们在应用内专门为未成年人提供了青少年模式,监护人应为未成年人选择使用青少年模式。同时,我们为14周岁以下的儿童制定了专门的隐私保护政策,如您为儿童,我们要求您请您的父母或其他监护人仔细阅读本隐私信息保护政策及《儿童隐私政策》,并在征得您的父母或其他监护人明确同意的前提下使用我们的服务或向我们提供信息。对于经父母或其他监护人同意使用我们的产品或服务而收集儿童个人信息的情况,我们只会在法律法规允许、父母或监护人明确同意或者保护未成年人所必要的情况下使用、共享、转让或披露此信息。如您的父母或其他监护人不同意您按照本政策使用我们的服务或向我们提供信息,请立即终止使用我们的服务并及时通知我们,以便我们采取相应的措施,如果监护人发现我们在未获监护人同意的情况下收集了未成年人的个人信息,可通过第九节中的联系方式与我们联系,我们会设法尽快删除相关数据。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 未成年人个人信息的保护将同样适用于严格的个人信息访问权限控制制度和个人信息处理记录与管控措施我们始终遵循最小够用的授权原则,采取相应技术措施以尽可能避免未成年人个人信息被违法复制、下载。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们已制定的个人信息安全事件应急预案将同样适用于对未成年人个人信息的保护。我们定期组织内部相关人员进行应急响应培训和应急演练,使其掌握岗位职责和应急处置策略和规程。在不幸发生未成年人个人信息安全事件后,我们将按照法律法规的要求,及时向未成年人及其监护人告知:安全事件的基本情况和可能的影响、我们已采取或将要采取的处置措施、未成年人及其监护人可自主防范和降低风险的建议、对未成年人及其监护人的补救措施。我们将及时将事件相关情况以APP推送通知、发送邮件/短消息的方式告知未成年人及其监护人。难以逐一告知时,我们会采取合理、有效的方式发布相关警示信息。同时,我们还将按照监管部门要求,主动上报未成年人个人信息安全事件的处置情况。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 若您是未成年人的父母或其他监护人,请您关注您监护的未成年人是否是在取得您的授权同意之后使用我们的服务。如您对您所监护的未成年人的个人信息有疑问,请通过第九节中的联系方式与我们联系。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 七、 您如何行使您的个人信息权利 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们通过提供便捷的方法,让您可以访问、更正及删除自己的账户信息或使用我们的服务时您提供的其他个人信息。您可以通过如下方式访问及管理您的个人信息,但我们在不同的版本或操作系统中提供的管理方式路径可能存在差异,请以实际为准。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (一) 访问您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您有权访问您的个人信息,但法律法规规定的例外情况除外。您可以通过以下方式自行访问您的个人信息: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 账户信息——如果您希望访问或编辑您的账户中的账户信息、更改您的密码或关闭您的账户,您可以登录账号通过“账号管理”执行此类操作;例如您可以登录PC端或APP端“我的-设置-账号与安全”查询、修改自己的账号绑定情况、设置/修改密码、查看最近登录设备。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 资料信息——如果您希望访问或编辑您的账户中的个人资料,您可以通过在App端“我的-头像-编辑资料”来添加、修改、删除您的头像、昵称、性别、生日、地区、声音签名、简介。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如果您无法通过上述方式访问您的个人信息,您可以随时通过本政策披露的联系方式联系我们,我们将在十五个工作日内回复您的请求。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (二) 更正或补充您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 当您发现我们处理的关于您的个人信息有错误时,您有权要求我们做出更正或补充。您可以通过“(一)访问您的个人信息”中列明的方式提出更正或补充申请。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如果您无法通过上述方式访问您的个人信息或者其他可能目前无法向您提供在线自行更正/修改服务的,您可以随时通过本政策披露的联系方式联系我们,我们将在十五个工作日内回复您的请求。经过对您身份的验证,且更正/修改不影响信息的客观性和准确性的情况下,您有权对错误或不完整的信息作出更正或修改,但法律法规另有规定的除外。出于安全性和身份识别的考虑,您可能无法修改注册时提交的某些初始注册信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (三) 删除您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您有权通过“(一)访问您的个人信息”中列明的方式对已经填写的信息进行删除。同时,在以下情形中,您可以通过本政策披露的联系方式联系我们,向我们提出删除个人信息的请求,我们将在十五个工作日内回复您的请求: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1.如果我们处理个人信息的行为违反法律法规; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2.如果我们收集、使用您的个人信息,却未征得您的明确同意; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3.如果我们处理个人信息的行为严重违反与您的约定; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 4.如果您不再使用我们的产品或服务,或您主动注销账号; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 5.如果我们永久不再为您提供产品或服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 若我们决定响应您的删除请求,我们还将同时尽可能通知从我们处获得您的个人信息的主体,要求其及时删除,除非法律法规另有规定,例如您所提供的订单类交易数据,将会基于法律法规要求至少保留3年,或这些主体获得您的独立授权。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (四) 个人信息副本获取 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如您需要您的个人信息的副本,您可以通过本隐私政策文末提供的方式联系我们,在核实您的身份后,我们将向您提供您在我们的服务中的个人信息副本(包括基本资料、身份信息),但法律法规另有规定的或本政策另有约定的除外。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (五) 改变您授权同意的范围 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您可在您的设备系统设置-应用-APP名称-权限中逐项查看您授权同意权限的状态,或在NU护理单元App内通过“我的-设置-隐私管理-系统权限”查看并可自行决定这些权限随时的开启或关闭。对于不同功能服务中个人信息的收集和使用,您也可以与NU护理单元客服联系给予或收回您的授权同意,我们将在十五个工作日内回复您的请求。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"当您撤回同意后,我们将不再处理相应的个人信息,我们将无法继续为您提供撤回同意或授权所对应的服务。但您撤回同意的决定,不会影响此前基于您的授权而开展的个人信息处理。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (六) 注销账户 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 当您注销账号后,您将无法再以该账号登录和使用我们的产品与服务;且该账号在使用我们的产品与服务期间已产生的但未消耗完毕的权益及未来的预期利益等全部权益将被清除;该账号下的内容、信息、数据、记录等将会被删除或匿名化处理,但法律法规另有规定或监管部门另有要求的除外;您的账号注销完成后,将无法恢复。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如您在谨慎考虑后仍决定注销您的账号的,您可以在您使用的我们的产品与/或服务的相关功能设置页面或根据操作指引向我们提交注销申请,例如,您可以通过“我的-设置-账号与安全-注销账户”自行在“注销账户”页面提交账户注销申请。若未能申请成功,您也可联系NU护理单元客服,我们将在十五个工作日内回复您的请求。在您主动注销账户之后,我们将停止为您提供产品或服务。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (七) 限制自动化决策 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 在NU护理单元App端,您可以通过“我的-设置-隐私管理-个性化内容推荐/个性化广告推荐”选择是否使用我们提供的个性化服务。此外,在某些业务功能中,经向您告知并取得同意后,我们可能仅依据信息系统、算法在内的非人工自动决策机制做出决定。如果您认为这些决定显著影响您的合法权益,您有权通过本政策披露的联系方式要求我们做出解释,我们也将在十五个工作日内回复您的请求,为您提供申诉方法。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (八) 退订 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 如您发现收到了不属于您主动搜索、浏览的视频内容和产品、服务信息推送。如您不希望接收上述信息,可通过原路径进行退订,例如短信推送可以直接回复相关的退订口令。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (九) 投诉 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您有权通过本政策披露的联系方式联系我们进行投诉。我们将在收到您投诉之日起十五个工作日内做出答复。如果您对我们的答复不满意,特别是我们的个人信息处理行为损害了您的合法权益,您还可以向网信、公安、工商等监管部门进行投诉或举报,或向有管辖权法院提起诉讼,但我们希望您能够首先就相关问题与我们取得联系。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," (十) 响应您的上述请求 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 为保障安全,您可能需要提供书面请求,或以其他方式证明您的身份。我们可能会先要求您验证自己的身份,然后再处理您的请求。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 对于您合理的请求,我们原则上不收取费用。但对多次重复、超出合理限度的请求,我们将视情收取一定成本费用。对于那些无端重复、需要过多技术手段(例如需要开发新系统或从根本上改变现行管理)、给他人合法权益带来风险或者非常不切实际的请求,我们可能会予以拒绝。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 此外,如果您的请求直接涉及国家安全、国防安全、公共卫生、犯罪侦查等和公共利益直接相关的事由,或者可能导致您或者其他个人、组织的合法权益受到严重损害,或者基于NU护理单元履行法律法规规定的义务相关的情形,或者有充分证据标明您存在主观恶意或滥用权利,或者响应您的请求将导致您或者其他个人、组织的合法权益受到严重损害的,我们将无法响应您的请求。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 如果您无法通过上述方式访问您的个人信息,您都可以通过第九节中的联系方式与我们取得联系,我们将在十五个工作日内回复您的权利响应请求。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 七:您如何行使您的个人信息权利 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode(" 您理解,您与NU护理单元签署的本政策所列明的条款,并不能完全涵盖您与NU护理单元所有的关于个人信息的权利和义务。因此,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元公布其他声明(包括但不限于页面提示、新签署文件、弹窗、网站公告或站内信等)、各形式规则均视为本政策之补充条款,为本政策不可分割的组成部分,与本政策具有同等法律效力。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 未经您明确同意,我们不会限制您按照本政策所应享有的权利。我们将在NU护理单元专门链接上发布对隐私权政策所做的任何变更和更新。对于重大变更,我们还会提供更为显著的通知(包括通过平台公示通知甚至向您进行弹窗提示)。本政策所指的重大变更包括但不限于: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 1.我们的服务模式发生重大变化。如处理个人信息的目的、处理的个人信息类型、个人信息的使用方式; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 2.我们在控制权方面发生重大变化。如并购重组引起的所有者变更; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 3.个人信息共享、转让或公开披露的主要对象发生变化; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 4.您参与个人信息处理方面的权利及其行使方式发生重大变化; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 5.我们负责处理个人信息安全的责任部门、联络方式及投诉渠道发生变化时。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},' 为了您能及时接收到通知,建议您在您个人的联系方式更新时及时通知我们。如您在本政策更新生效后继续使用我们的服务,即代表您已充分阅读、理解并接受更新后的政策并愿意受更新后的政策约束。我们鼓励您在每次使用我们服务时都查阅本政策。您可以在NU护理单元APP通过"首页-我的-设置-隐私政策"中查看本政策。 '),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 八、如何联系我们 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 您可以通过以下方式与我们联系,我们将在十五个工作日内回复您的请求: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们设立了个人信息保护专职部门,如您对NU护理单元隐私信息保护政策、儿童个人信息有任何疑问、意见或建议,或有关于网络信息安全的投诉和举报,您可通过以下方式与我们取得联系: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 我们收件地址:长春市经济开发区长吉南线以东、吉林大路以南东方广场中意国际大厦B座1431号; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 联系人:NU护理单元客服部 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 联系方式:18043530712 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 联系邮箱:service@blxinchuang.com "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 本政策签订地为中华人民共和国吉林省长春市,因本政策生效、履行、解释及使用NU护理单元产品和/或服务而产生或与本政策相关的一切争议、权利主张或其他事项,均适用中华人民共和国法律(为本政策之目的,港澳台地区法律不在此列)。您与NU护理单元及其关联公司或NU护理单元发生的一切争议,应友好协商,如协商不成的,您同意双方通过将争议提交本政策签订地有管辖权的法院解决。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 请您再次确认您已全部阅读并充分理解上述条款。 ")])])}],["__scopeId","data-v-842c1160"]]),v="https://www.focusnu.com/opeapi",p=e=>{let t=e.url,a=e.method||"get",i=e.data||{},r={"X-Access-Token":uni.getStorageSync("token")||"","Content-Type":"application/json;charset=UTF-8",Authorization:"Basic c2FiZXI6c2FiZXJfc2VjcmV0",...e.header};return new Promise(((e,n)=>{uni.request({url:/^https?:\/\//.test(t)?t:v+t,method:a,header:r,data:i,timeout:5e3,success(a){const r=a;if(200==r.statusCode)e(r.data);else switch(l("log","at request/index.js:34","http",/^https?:\/\//.test(t)?t:v+t),l("log","at request/index.js:35","res",a),l("log","at request/index.js:36","data",i),r.statusCode){case 401:uni.showModal({title:"提示",content:"登录过期",showCancel:!1,success(){uni.clearStorageSync(),setTimeout((()=>{uni.navigateTo({url:"/pages/login/login"})}),1e3)}});break;case 404:uni.showToast({title:"请求地址不存在...",duration:2e3});break;default:uni.showToast({title:"请重试...",duration:2e3})}},fail(e){l("log","at request/index.js:69",e),-1!==e.errMsg.indexOf("request:fail")?uni.showToast({title:"网络异常",icon:"error",duration:2e3}):uni.showToast({title:"未知异常",duration:2e3}),n(e)},complete(){uni.hideLoading(),uni.hideToast()}})})).catch((()=>{}))},g=s({__name:"huakuai",emits:["success"],setup(t,{emit:a}){const i=a,r=100,n=e.ref(400),o=e.ref(400),c=e.ref(0),s=e.ref(0),d=e.ref(0),m=e.ref(!1),u=e.ref(0),v=e.ref(""),p=e.getCurrentInstance();const g=`path('${w=r,`\n M20 0\n h${w/3-20}\n a20 20 0 0 1 0 40\n h${w/3}\n a20 20 0 0 0 0 -40\n h${w/3-20}\n v${w/3-20}\n a20 20 0 0 1 -40 0\n v${w/3}\n a20 20 0 0 0 40 0\n v${w/3-20}\n h-${w/3-20}\n a20 20 0 0 1 0 -40\n h-${w/3}\n a20 20 0 0 0 0 40\n h-${w/3-20}\n z\n `}')`;var w;function h(){e.nextTick((()=>{p?uni.createSelectorQuery().in(p.proxy).select(".bg-image").boundingClientRect((e=>{e?(n.value=2*e.width,o.value=2*e.height,c.value=Math.random()*(n.value-200)+r,c.value<100&&(c.value=100),c.value>400&&(c.value=400),s.value=o.value/2,d.value=0):l("error","at component/public/huakuai.vue:115","无法获取图片尺寸")})).exec():l("error","at component/public/huakuai.vue:107","无法获取组件实例")}))}function f(e){m.value=!0,u.value=2*e.touches[0].clientX}function N(e){if(!m.value)return;let t=2*e.touches[0].clientX-u.value;t=Math.max(0,Math.min(t,n.value-r)),d.value=t}function y(){m.value=!1,Math.abs(d.value+47-c.value)<20?(uni.showToast({title:"验证成功",icon:"none",duration:2e3}),i("success")):(d.value=0,uni.showToast({title:"验证失败",icon:"none",duration:2e3}))}return e.onMounted((()=>{const e=["https://www.focusnu.com/media/directive/login/0.png","https://www.focusnu.com/media/directive/login/1.png","https://www.focusnu.com/media/directive/login/2.png"];v.value=e[Math.floor(Math.random()*e.length)],l("log","at component/public/huakuai.vue:172","加载图片:",v.value)})),(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"captcha-container",id:"container"},[e.createElementVNode("view",{class:"font-title"},"请通过滑块验证"),e.createElementVNode("view",{class:"captcha-image",style:{position:"relative",width:"100%",height:"400rpx",overflow:"hidden"}},[e.createElementVNode("image",{src:v.value,class:"bg-image",mode:"widthFix",onLoad:h},null,40,["src"]),e.createElementVNode("view",{class:"overlay",style:e.normalizeStyle({width:n.value+"rpx",height:o.value+"rpx"})},[e.createElementVNode("view",{class:"hole",style:e.normalizeStyle({top:s.value+"rpx",left:c.value+"rpx",width:"100rpx",height:"100rpx",clipPath:g,transform:"translate(-50%, -50%)",backgroundColor:"rgba(0,0,0,0.6)"})},null,4),e.createElementVNode("view",{class:"piece",style:e.normalizeStyle({top:s.value+"rpx",left:d.value+47+"rpx",width:"100rpx",height:"100rpx",backgroundImage:`url(${v.value})`,backgroundSize:n.value+"rpx "+o.value+"rpx",backgroundPosition:`-${c.value-45}rpx -${s.value-50}rpx`,clipPath:g,transform:"translate(-50%, -50%)"})},null,4)],4)]),e.createElementVNode("view",{class:"slider-bar"},[e.createElementVNode("view",{class:"slider-bar-font"},"向右滑动滑块填充拼图"),e.createElementVNode("view",{class:"slider-button",ref:"btn",onTouchstart:f,onTouchmove:N,onTouchend:y,style:e.normalizeStyle({left:d.value+"rpx",maxWidth:n.value-r+"rpx"})},[e.createElementVNode("image",{src:"https://www.focusnu.com/media/directive/login/right.png",style:{width:"50rpx",height:"50rpx"},mode:"widthFix"})],36)])]))}},[["__scopeId","data-v-ca7ea5fb"]]),w=s(e.defineComponent({__name:"login",setup(a){const i=e.ref(null),n=e.ref(!1),s=e.ref(!1),v=e.reactive({username:"",password:"",captcha:"",checkKey:0}),w=e.reactive({oldpassword:"",newpassword:""}),h=e.computed((()=>{return v.password&&("string"==typeof(e=v.username)&&11===e.length);var e})),f=e.ref(!1);function N(){T.value=!1,n.value=!0,B()}function y(){f.value=!1,uni.setStorageSync("appWgtVersion",uni.getSystemInfoSync().appWgtVersion)}function x(){plus.runtime.quit()}const E=e=>{uni.navigateTo({url:e})},V=e.ref(!1),b=e.ref(0),k=()=>{var e;/^\d{11}$/.test(v.username)?(e=v.username,p({url:`/api/pad/loginApi/getAdvisoryInfo?tel=${encodeURIComponent(e)}`,method:"get"})).then((e=>{null!==e.result&&e.result.serverUrl?(uni.setStorageSync("serverUrl",e.result.serverUrl),l("log","at pages/login/login.vue:195","url",e.result.serverUrl),b.value=Date.now(),(e=>p({url:`${uni.getStorageSync("serverUrl")}/sys/randomCode/${e}`,method:"get"}))(b.value).then((e=>{v.captcha=e.message,V.value=!0}))):(uni.setStorageSync("serverUrl",""),uni.showToast({title:"该手机号未绑定机构",icon:"none",duration:2e3}),V.value=!1)})):v.username&&uni.showToast({title:"手机号不足11位",icon:"none",duration:2e3})},T=e.ref(!1),D=e.ref(!1),C=e.ref(!1),S=e.ref(!1),B=()=>{n.value?s.value=!0:T.value=!0},z=e.ref(!1),_=()=>{z.value||(2===I.value?setTimeout((()=>{E("/pages/watch/index")}),500):I.value++,z.value=!0)},I=e.ref(0),U=()=>{var e;v.checkKey=b.value,s.value=!1,(e=v,p({url:`${uni.getStorageSync("serverUrl")}/sys/login`,method:"post",data:e})).then((e=>{e.success?(uni.showToast({title:e.message,icon:"none",duration:500}),uni.setStorageSync("token",e.result.token),uni.setStorageSync("username",v.username),uni.setStorageSync("realname",e.result.userInfo.realname),2===I.value?setTimeout((()=>{E("/pages/watch/index")}),500):I.value++):uni.showToast({title:e.message,icon:"none",duration:2e3})}))};return o((()=>{var e,a;uni.getStorageSync("appWgtVersion")!=uni.getSystemInfoSync().appWgtVersion&&(f.value=!0),uni.getStorageSync("token")&&1!==uni.getStorageSync("token")&&(2===I.value?setTimeout((()=>{E("/pages/watch/index")}),500):I.value++),t("MonitorModule").initSMBCloudSDK(),e=t("MonitorModule"),a={userName:"admin",password:"Bl20230518",serverAddress:"121.36.88.64",port:8888},e.cloudLoginIn(a,(e=>{l("log","at pages/login/login.vue:322","?????",e),2===I.value?setTimeout((()=>{E("/pages/watch/index")}),500):I.value++}))})),r((()=>{var e;null==(e=i.value)||e.check_update()})),(t,l)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("view",{class:"backgroundContainer"},[e.createElementVNode("image",{class:"title-img",src:"/static/index/superNu.png"}),e.createElementVNode("view",{class:"input-father"},[e.createElementVNode("view",{class:"add"},"+86"),e.createElementVNode("view",{class:"shu"}),e.withDirectives(e.createElementVNode("input",{style:{"font-size":"27rpx",height:"350rpx"},type:"number","onUpdate:modelValue":l[0]||(l[0]=e=>v.username=e),maxlength:"11",placeholder:"请输入手机号",onBlur:k},null,544),[[e.vModelText,v.username]])]),e.createElementVNode("view",{class:"input-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:"",type:"text","onUpdate:modelValue":l[1]||(l[1]=e=>v.password=e),maxlength:"15",placeholder:"请输入密码"},null,512),[[e.vModelText,v.password]])]),e.withDirectives(e.createElementVNode("view",{class:"input-father-gray"}," 验证并登录 ",512),[[e.vShow,!h.value||!V.value]]),e.withDirectives(e.createElementVNode("view",{class:"input-father-blue",onClick:l[2]||(l[2]=e=>B())}," 验证并登录 ",512),[[e.vShow,h.value&&V.value]]),e.createElementVNode("view",{class:"under-container-title"},[e.createElementVNode("view",{class:e.normalizeClass(n.value?"radio-circle-target":"radio-circle"),onClick:l[3]||(l[3]=e=>n.value=!n.value)},null,2),e.createElementVNode("view",{style:{"margin-left":"17rpx"},class:"radio-circle-font",onClick:l[4]||(l[4]=e=>n.value=!n.value)},"我已阅读并同意"),e.createElementVNode("view",{class:"radio-circle-blue",onClick:l[5]||(l[5]=e=>{C.value=!0,S.value=!0})}," 《用户协议》 "),e.createElementVNode("view",{class:"radio-circle-blue",onClick:l[6]||(l[6]=e=>{C.value=!0,S.value=!1})}," 《隐私政策》 ")])]),f.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-wrapper",style:{"z-index":"999"}},[e.createElementVNode("view",{class:"mask"}),e.createElementVNode("view",{class:"box"},[e.createElementVNode("view",{class:"box-title"}," 服务条款和隐私保护提示 "),e.createElementVNode("view",{class:"font-father"},[e.createElementVNode("view",{class:""}," 欢迎使用护理单元app! "),e.createElementVNode("view",{style:{"text-indent":"2em"}},[e.createTextVNode(" 我们将通过"),e.createElementVNode("text",{class:"text-blue",onClick:l[7]||(l[7]=e=>{C.value=!0,S.value=!0})},"《用户协议》"),e.createTextVNode("和"),e.createElementVNode("text",{class:"text-blue",onClick:l[8]||(l[8]=e=>{C.value=!0,S.value=!1})},"《隐私政策》"),e.createTextVNode(",帮助您了解我们为您提供的服务、我们如何处理个人信息以及您享有的权利。我们会严格按照相关法律法规要求,采取各种安全措施来保护您的个人信息。 ")]),e.createElementVNode("view",{style:{margin:"30rpx 0"}}," 点击“同意”按钮,表示您已知情并同意以上协议和以下约定。 ")]),e.createElementVNode("view",{class:"gray-box-bgc"},[e.createElementVNode("scroll-view",{style:{width:"100%",height:"100%"},"scroll-y":"","show-scrollbar":!0},[e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 1、服务条款与隐私政策确认:登录即表示您已阅读并同意《NU 护理单元用户服务协议》及《NU 护理单元隐私信息保护政策》,其中包含对您权利义务、个人信息处理的详细说明。 "),e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 2、账号使用规范:账号仅限本人使用,禁止恶意注册、转借或泄露。请妥善保管账号密码,因保管不善导致的账号安全问题,由您自行承担责任。 "),e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 3、内容发布责任:您在平台发布的内容需遵守法律法规,不得包含不良信息或侵犯他人权益的内容。发布利用新技术制作的非真实信息时,须显著标识。 "),e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 4、个人信息保护:我们将依法收集、使用您的个人信息(如手机号用于注册登录),您可通过 “我的 - 设置 - 隐私管理” 查看、修改授权,也可申请注销账号(注销后相关数据将按规定处理)。 "),e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 5、未成年人使用提示:未满 18 周岁用户需在监护人同意后使用,监护人可联系客服人员处理未成年人账号相关事宜,我们将严格保护未成年人信息。 ")])]),e.createElementVNode("view",{class:"blue-button",onClick:y},"同意"),e.createElementVNode("view",{class:"white-button",onClick:x},"不同意")])])):e.createCommentVNode("",!0),C.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"popup-any"},[e.createElementVNode("view",{class:"mask",onClick:l[9]||(l[9]=e=>C.value=!1)}),e.createElementVNode("view",{class:"box-any"},[e.createElementVNode("view",{class:"title-left"},[e.createElementVNode("image",{class:"back-img",src:c,onClick:l[10]||(l[10]=e=>C.value=!1)}),S.value?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"back-font"},"NU护理单元隐私信息保护政策")),S.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"back-font"},"NU护理单元用户服务协议")):e.createCommentVNode("",!0)]),S.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(u,{key:0})),S.value?(e.openBlock(),e.createBlock(m,{key:1})):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0),T.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"popup-wrapper"},[e.createElementVNode("view",{class:"mask",onClick:l[11]||(l[11]=e=>T.value=!1)}),e.createElementVNode("view",{class:"box-small"},[e.createElementVNode("view",{class:"box-title",style:{"margin-top":"30rpx"}}," 请阅读并同意以下条款 "),e.createElementVNode("view",{class:"font-father"},[e.createElementVNode("text",{class:"text-blue",onClick:l[12]||(l[12]=e=>{C.value=!0,S.value=!0})},"《用户协议》"),e.createElementVNode("text",{class:"text-blue",onClick:l[13]||(l[13]=e=>{C.value=!0,S.value=!1})},"《隐私政策》")]),e.createElementVNode("view",{class:"blue-button",onClick:N},"同意并继续")])])):e.createCommentVNode("",!0),D.value?(e.openBlock(),e.createElementBlock("view",{key:3,class:"popup-wrapper"},[e.createElementVNode("view",{class:"mask"}),e.createElementVNode("view",{class:"box-change"},[e.createElementVNode("view",{class:"box-title"}," 修改账户登录密码 "),e.createElementVNode("view",{class:"input-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":l[14]||(l[14]=e=>w.oldpassword=e),maxlength:"15",placeholder:"请输入新密码"},null,512),[[e.vModelText,w.oldpassword]])]),e.createElementVNode("view",{class:"input-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":l[15]||(l[15]=e=>w.newpassword=e),maxlength:"15",placeholder:"请再次输入新密码"},null,512),[[e.vModelText,w.newpassword]])]),e.createElementVNode("view",{class:"blue-button",style:{"margin-top":"80rpx"},onClick:l[16]||(l[16]=e=>D.value=!1)},"确定")])])):e.createCommentVNode("",!0),e.createVNode(d,{ref_key:"zyupgrade",ref:i,noticeflag:!0,theme:"blue",h5preview:!1,oldversion:"1.0.0",appstoreflag:!0,autocheckupdate:!0,onShowupdateTips:_},null,512),s.value?(e.openBlock(),e.createElementBlock("view",{key:4,class:"bg-mask",onClick:l[18]||(l[18]=e=>s.value=!1)},[e.createVNode(g,{onClick:l[17]||(l[17]=e.withModifiers((()=>{}),["stop"])),onSuccess:U})])):e.createCommentVNode("",!0)],64))}}),[["__scopeId","data-v-e979d453"]]);const h=s({data:()=>({title:"Hello"}),onLoad(){t("globalEvent").addEventListener("myEvent",(function(e){l("log","at pages/denglu.vue:20","myEvent"+JSON.stringify(e)),uni.showToast({title:"myEvent"+JSON.stringify(e),duration:2e3})}))},methods:{testAsyncFunc(){t("MonitorModule").gotoNativePage({deviceId:"4",deviceName:"sdfsfsdf"})},jumptonve(){uni.navigateTo({url:"/pages/ceshianzhuo"})},init(e){t("MonitorModule").initSMBCloudSDK()},login(e){t("MonitorModule").cloudLoginIn({userName:"admin",password:"Bl20230518",serverAddress:"121.36.88.64",port:8888},(e=>{l("log","at pages/denglu.vue:58","loginResult",e.code),uni.showToast({title:"操作成功",duration:2e3})}))},logout(e){t("MonitorModule").cloudLoginOut((e=>{l("log","at pages/denglu.vue:68","loginResult",e.code)}))}}},[["render",function(t,l,a,i,r,n){return e.openBlock(),e.createElementBlock("view",{class:"content"},[e.createElementVNode("button",{class:"typebutton",type:"primary",onClick:l[0]||(l[0]=(...e)=>n.init&&n.init(...e))},"初始化sdk"),e.createElementVNode("button",{class:"typebutton",type:"primary",onClick:l[1]||(l[1]=(...e)=>n.login&&n.login(...e))},"登陆"),e.createElementVNode("button",{class:"typebutton",type:"primary",onClick:l[2]||(l[2]=(...e)=>n.logout&&n.logout(...e))},"退出登陆"),e.createElementVNode("button",{class:"typebutton",type:"primary",onClick:l[3]||(l[3]=(...e)=>n.jumptonve&&n.jumptonve(...e))},"跳到nvue")])}]]),f=s(e.defineComponent({__name:"index",setup(t){e.ref(!1);const l=e.ref(null),a=[{name:"初始化",url:"/pages/Initialization/index"},{name:"护理单元",url:"/pages/Nursing/index"},{name:"仓库",url:"/pages/Warehousing/index"}];return o((e=>{})),r((()=>{var e;null==(e=l.value)||e.check_update()})),(t,i)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("view",{class:"backgroundContainer"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(a,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"menuCard",onClick:e=>{return l=t.url,void uni.navigateTo({url:l});var l}},e.toDisplayString(t.name),9,["onClick"])]))),64))]),e.createVNode(d,{ref_key:"zyupgrade",ref:l,noticeflag:!0,theme:"blue",h5preview:!1,oldversion:"1.0.0",appstoreflag:!0,autocheckupdate:!0},null,512)],64))}}),[["__scopeId","data-v-bd6792ac"]]),N="/static/index/oldman.png",y="/static/index/customer.png",x=s({__name:"Drawer",props:{widNumber:{type:Number,default:85},canclose:{type:Boolean,default:!0}},setup(t,{expose:l}){const a=e.ref(!1),i=t,r=e.computed((()=>({width:`${i.widNumber}%`})));function n(){i.canclose&&(a.value=!1)}return l({openDrawer:function(){a.value=!0},closeDrawer:function(){a.value=!1}}),(l,i)=>(e.openBlock(),e.createElementBlock("view",null,[e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(["overlay",{"overlay-show":a.value}]),onClick:n},null,2),[[e.vShow,a.value]]),e.createElementVNode("view",{class:e.normalizeClass(["drawer",{"drawer-open":a.value}]),style:e.normalizeStyle(r.value)},[e.createElementVNode("view",{class:"drawer-content"},[e.withDirectives(e.createElementVNode("view",{class:"drawer-content-circle",onClick:n},[e.createElementVNode("image",{class:"drawer-img",src:"/static/index/zuoyuan.png"})],512),[[e.vShow,a.value&&t.canclose]]),e.renderSlot(l.$slots,"default",{},void 0,!0)])],6)]))}},[["__scopeId","data-v-8cdafce2"]]),E="/static/index/teeth.png",V="/static/index/helpdo/xian.png",b=s(e.defineComponent({__name:"index",setup(t){const l=e=>{},a=e.ref(!1);e.ref(null);const i=e.ref(-1),r=e.ref(0),n=uni.createVideoContext("myVideo"),o=()=>{n.pause(),a.value=!1};e.computed((()=>{switch(c.value){case 0:return"0";case 1:return"calc(100% - 600rpx)";case 2:return"calc(100% - 120rpx)";default:return"100%"}}));const c=e.ref(0);return(t,n)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"转单执行")]),e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"downitems-father"},[e.createElementVNode("view",{class:"downitems-left"},[e.createElementVNode("view",{class:"downitems-left-mar"},[e.createElementVNode("image",{class:"downitems-left-img",src:E}),e.createElementVNode("view",{class:"downitems-left-father"},[e.createElementVNode("image",{class:"downitems-father-img",src:"/static/index/helpdo/zero.png"}),e.createElementVNode("view",{class:"downitems-father-font"},"清洁照料")]),e.createElementVNode("view",{class:"downitems-left-father"},[e.createElementVNode("image",{class:"downitems-father-img",src:"/static/index/helpdo/one.png"}),e.createElementVNode("view",{class:"downitems-father-font"},"四肢清洁")]),e.createElementVNode("view",{class:"downitems-left-father"},[e.createElementVNode("image",{class:"downitems-father-img",src:"/static/index/helpdo/two.png"}),e.createElementVNode("view",{class:"downitems-father-font-laba"},"协助清洁(四肢)"),e.createElementVNode("image",{class:"downitems-father-img-laba",src:"/static/index/helpdo/laba.png"})]),e.createElementVNode("view",{class:"downitems-left-father"},[e.createElementVNode("image",{class:"downitems-father-img",src:"/static/index/helpdo/three.png"}),e.createElementVNode("view",{class:"downitems-father-font-small"},"准备清水,一次性面巾,香皂,清洁后涂身体保湿乳。")]),e.createElementVNode("view",{class:"downitems-kuai",onClick:n[0]||(n[0]=e=>a.value=!0)},[e.createElementVNode("image",{class:"downitems-kuai-img",src:"/static/index/helpdo/video.png"})]),e.createElementVNode("view",{class:"downitems-says"}," 视频讲解 ")])]),e.createElementVNode("image",{class:"downitems-shu",src:V}),e.createElementVNode("view",{class:"downitems-center"},[e.createElementVNode("view",{class:"downitems-center-title"},[e.createElementVNode("view",{class:"downitems-center-title-gun"}),e.createElementVNode("view",{class:"downitems-center-title-font"},"转单原因"),e.createElementVNode("view",{class:"downitems-center-says"},[e.createElementVNode("view",{class:"downitems-center-father"},[e.createElementVNode("image",{class:"downitems-center-says-maike",src:"/static/index/helpdo/maike.png"})]),e.createElementVNode("view",{class:""},"语音输入")])]),e.createElementVNode("view",{class:"downitems-textarea"},[e.createElementVNode("textarea",{class:"custom-textarea",onBlur:l,placeholder:"请输入"},null,32)]),e.createElementVNode("view",{class:"downitems-center-title"},[e.createElementVNode("view",{class:"downitems-center-title-gun"}),e.createElementVNode("view",{class:"downitems-center-title-font"},"转单方式")]),e.createElementVNode("view",{class:"radio-circle-top-father"},[e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(r.value?"radio-circle":"radio-circle-target"),onClick:n[1]||(n[1]=e=>r.value=0)},null,2),e.createElementVNode("view",{class:"radio-font",onClick:n[2]||(n[2]=e=>r.value=0)},"重新派单")]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(r.value?"radio-circle-target":"radio-circle"),onClick:n[3]||(n[3]=e=>{r.value=1})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:n[4]||(n[4]=e=>r.value=1)},"定向派单")])]),e.createElementVNode("view",{class:"downitems-button"}," 确认 ")]),e.createElementVNode("image",{class:"downitems-shu",style:{transform:"rotate(180deg)","margin-left":"0rpx"},src:V}),e.createElementVNode("view",{class:"downitems-right"},[e.withDirectives(e.createElementVNode("view",{class:"downitems-all"},[e.createElementVNode("view",{class:"downitems-center-title"},[e.createElementVNode("view",{class:"downitems-center-title-gun"}),e.createElementVNode("view",{class:"downitems-center-title-font"},"重新派单")]),e.createElementVNode("view",{class:"downitems-all-font"}," 选择重新派单,平台自动将服务指令重新派发给其他员工,等待执行。 ")],512),[[e.vShow,!r.value]]),e.withDirectives(e.createElementVNode("view",{class:"downitems-all"},[e.createElementVNode("view",{class:"downitems-center-title"},[e.createElementVNode("view",{class:"downitems-center-title-gun"}),e.createElementVNode("view",{class:"downitems-center-title-font"},"定向派单")]),e.createElementVNode("view",{class:"downitems-all-font"}," 选择定向转单,请选择要执行服务指令的员工。 "),e.createElementVNode("view",{class:"downitems-card-all"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([0,1,2,3,4,5,6,7],((t,l)=>e.createElementVNode("view",{class:"downitems-card"},[e.createElementVNode("view",{class:e.normalizeClass(i.value===l?"downitems-card-one-target":"downitems-card-one"),onClick:e=>(e=>{i.value=e})(l)},[e.createElementVNode("view",{class:"downitems-card-father"},[e.createElementVNode("image",{class:"downitems-card-img",src:"/static/index/helpdo/people.png"})]),e.createElementVNode("view",{class:"downitems-card-font"}," 李金福 ")],10,["onClick"])]))),64))])],512),[[e.vShow,r.value]])])])]),e.withDirectives(e.createElementVNode("view",{class:"modal",onClick:o},[e.createElementVNode("view",{class:"modal-content",onClick:n[5]||(n[5]=e.withModifiers((()=>{}),["stop"]))})],512),[[e.vShow,a.value]])]))}}),[["__scopeId","data-v-6070efba"]]),k=s(e.defineComponent({__name:"index",props:{isshow:{type:Boolean,required:!0},darkFans:{type:Boolean,required:!0}},emits:["darkchange"],setup(t,{emit:l}){const a=e.ref(null),i=t,r=e.ref(!1),n=e.ref(!1),o=e.ref(!1),c=e.ref(!1),s=e.ref(!1),d=e.ref(!1),m=e.ref(""),u=e.ref(""),v=e.ref(""),p=e.ref([{url:"/static/index/undericons/alarm.png",targetUrl:"/static/index/undericons/alarmdark.png",name:"服务考核"},{url:"/static/index/undericons/linshitime.png",targetUrl:"/static/index/undericons/linshitimedark.png",name:"护理流程"},{url:"/static/index/darkicon/zhaomingdark.png",targetUrl:"/static/index/roomicons/zhaomingtar.png",name:"电子医嘱"},{url:"/static/index/darkicon/kontiaodark.png",targetUrl:"/static/index/roomicons/kongtiaotar.png",name:"进销存"},{url:"/static/index/darkicon/nuanfengdark.png",targetUrl:"/static/index/roomicons/nuanfengtar.png",name:"实时监控"},{url:"/static/index/darkicon/dianqidark.png",targetUrl:"/static/index/roomicons/dianqitar.png",name:"我的指令"}]),g=e.ref([{url:"/static/index/hulilist/zhuandan.png",name:"转单执行"},{url:"/static/index/hulilist/xiezhu.png",name:"协助执行"},{url:"/static/index/hulilist/zhongdian.png",name:"重点追踪"}]),w=e.ref([{url:"/static/index/darkicon/zhuandandark.png",name:"转单执行"},{url:"/static/index/darkicon/xiezhudark.png",name:"协助执行"},{url:"/static/index/darkicon/zhongdiandark.png",name:"重点追踪"}]),h=e.ref([{url:"/static/index/medium/yaopin.png",name:"药品信息",number:0},{url:"/static/index/medium/qingling.png",name:"请领指令",number:60},{url:"/static/index/medium/peiyao.png",name:"配药指令",number:100},{url:"/static/index/medium/xinxi.png",name:"信息反馈",number:0},{url:"/static/index/medium/xinxi.png",name:"信息反馈2",number:0}]),f=e.ref([{url:"/static/index/darkicon/yaopindark.png",name:"药品信息",number:55},{url:"/static/index/darkicon/qinglingdark.png",name:"请领指令",number:10},{url:"/static/index/darkicon/peiyaodark.png",name:"配药指令",number:100},{url:"/static/index/darkicon/xinxidark.png",name:"信息反馈",number:15},{url:"/static/index/darkicon/xinxidark.png",name:"信息反馈2",number:20}]),N=e.ref([{url:"/static/index/roomicons/zhaoming.png",targetUrl:"/static/index/roomicons/zhaomingtar.png",name:"照明"},{url:"/static/index/roomicons/kongtiao.png",targetUrl:"/static/index/roomicons/kongtiaotar.png",name:"空调"},{url:"/static/index/roomicons/nuanfeng.png",targetUrl:"/static/index/roomicons/nuanfengtar.png",name:"暖风"},{url:"/static/index/roomicons/dianqi.png",targetUrl:"/static/index/roomicons/dianqitar.png",name:"电器"}]),E=e.ref([{url:"/static/index/darkicon/zhaomingdark.png",targetUrl:"/static/index/roomicons/zhaomingtar.png",name:"照明"},{url:"/static/index/darkicon/kontiaodark.png",targetUrl:"/static/index/roomicons/kongtiaotar.png",name:"空调"},{url:"/static/index/darkicon/nuanfengdark.png",targetUrl:"/static/index/roomicons/nuanfengtar.png",name:"暖风"},{url:"/static/index/darkicon/dianqidark.png",targetUrl:"/static/index/roomicons/dianqitar.png",name:"电器"}]);e.ref(0);const V=e.ref(0);e.ref(!1);const k=e.ref([]),T=e.ref(0),D=e.ref(0),C=e.ref(0),S=e.ref(0);e.ref(0);const B=l,z=()=>{uni.navigateTo({url:"/pages/NursingNew/index"})},_=()=>{B("darkchange",!i.darkFans)},I=e=>{if(k.value.includes(e)){let t=[];k.value.forEach((l=>{l!==e&&t.push(l)})),k.value=t}else k.value.push(e)},U=()=>{const e=new Date,t=e.getHours().toString().padStart(2,"0"),l=e.getMinutes().toString().padStart(2,"0");m.value=`${t}:${l}`;const a=e.getFullYear(),i=(e.getMonth()+1).toString().padStart(2,"0"),r=e.getDate().toString().padStart(2,"0");u.value=`${a}年${i}月${r}日`;const n=["星期日","星期一","星期二","星期三","星期四","星期五","星期六"][e.getDay()];v.value=n},F=e=>{D.value=e.detail.current},$=e=>{C.value=e.detail.current},M=()=>{r.value=!r.value,n.value=!0,o.value=!1,s.value=!1,setTimeout((()=>{n.value=!1}),500)},A=()=>{o.value=!o.value,r.value=!1,s.value=!1,c.value=!0,setTimeout((()=>{c.value=!1}),500)},L=()=>{s.value=!s.value,d.value=!0,r.value=!1,o.value=!1,setTimeout((()=>{d.value=!1}),500)};let O=null;return e.onMounted((()=>{O=U(),setInterval(U,1e3)})),e.onBeforeUnmount((()=>{clearInterval(O)})),(l,i)=>(e.openBlock(),e.createElementBlock("view",{class:"right-container",style:e.normalizeStyle(t.isshow?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," ID:12345678 ",2),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," 名称:未命名01 ",2),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"right-icons-font-dark":"right-icons-font")},"王金福",2),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/face.png":"/static/index/undericons/facelight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/hand.png":"/static/index/undericons/handlight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/out.png":"/static/index/undericons/outlight.png"},null,8,["src"])]),e.withDirectives(e.createElementVNode("view",{class:"right-container-title-class-anhei-button",onClick:i[0]||(i[0]=e=>_())},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 切换到暗黑模式 ")],512),[[e.vShow,!t.darkFans]]),e.withDirectives(e.createElementVNode("view",{class:"right-container-title-class-anhei-button",style:e.normalizeStyle(t.darkFans?{backgroundColor:"#fff"}:{}),onClick:i[1]||(i[1]=e=>_())},[e.createElementVNode("text",{class:"right-container-title-class-anhei",style:e.normalizeStyle(t.darkFans?{color:"black"}:{})}," 取消暗黑模式 ",4)],4),[[e.vShow,t.darkFans]]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button",style:{"background-color":"#fff"}},[e.createElementVNode("text",{class:"right-container-title-class-anhei",style:{color:"black"},onClick:z}," 切换到新版主页 ")])]),e.createElementVNode("view",{class:"right-container-fir"},[e.createElementVNode("view",{class:e.normalizeClass([r.value?"right-container-big":"right-container-small","right-container-fir-left-nav"]),style:e.normalizeStyle(n.value||r.value?{zIndex:999}:{zIndex:998})},[e.createElementVNode("view",{style:e.normalizeStyle(r.value?{borderRadius:"30rpx"}:{borderRadius:"50rpx"}),class:e.normalizeClass(t.darkFans?"right-container-fir-left-card-dark":"right-container-fir-left-card")},[e.createElementVNode("image",{class:"right-container-fir-left-card-hulilei",src:"/static/index/hulilei.png"},null,8,["src"]),e.createElementVNode("div",{class:"right-container-fir-left-card-hulilei-font",onClick:M},"护理类"),t.darkFans?(e.openBlock(),e.createElementBlock("image",{key:0,class:"card-upfaguang",src:"/static/index/cardbgc/uplight.png"},null,8,["src"])):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"right-container-fir-left-carousel"},[e.createElementVNode("view",{class:"carousel"},[e.createElementVNode("view",{class:"dots"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("span",{key:a,class:e.normalizeClass(t.darkFans?"dot-dark":"dot"),style:e.normalizeStyle(a===D.value?{backgroundColor:"#01A0FE"}:{})},null,6))),64))])])]),e.createElementVNode("view",{class:"right-container-fir-left-card-main"},[e.createElementVNode("swiper",{current:D.value,class:"swiper savehundred",circular:"","indicator-dots":!1,vertical:!0,interval:4e3,duration:500,onChange:F},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("view",{class:"right-container-fir-left-card-flex"},[e.createElementVNode("view",{class:"uni-margin-wrap-fir"},[e.createElementVNode("swiper",{current:T.value,class:"swiper",circular:"","indicator-dots":!1,interval:4e3,duration:500},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("view",{class:"right-container-fir-left-card-card"},[e.createElementVNode("view",{class:"right-container-fir-left-card-zhixing"},[e.createElementVNode("div",{class:"right-container-fir-left-card-zhixing-font"},"待执行 ")]),e.createElementVNode("image",{class:"right-container-fir-left-card-img",src:"/static/index/teeth.png",onClick:M},null,8,["src"]),e.createElementVNode("view",{class:"right-container-fir-left-card-main-laba-video"},[e.createElementVNode("image",{class:"right-container-fir-left-card-main-laba",src:t.darkFans?"/static/index/darkicon/labadark.png":"/static/index/laba.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-fir-left-card-main-font-dark":"right-container-fir-left-card-main-font")}," 准备洁具(口腔) ",2),e.createElementVNode("image",{class:"right-container-fir-left-card-main-video",src:(t.darkFans,"/static/index/indexvideo.png")},null,8,["src"])])]),e.createElementVNode("view",{class:"split-line"}),e.createElementVNode("view",{class:"time-tra-fir"},[e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-font-dark":"time-font")}," 10:00 - 10:10 ",2),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-text-dark":"time-text")}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ",2),e.createElementVNode("view",{class:"time-people-two"},[e.createElementVNode("view",{class:"time-people-fir"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/darkicon/zhixingpeopledark.png":"/static/index/cardicons/zhixing.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 单人执行 ",2)]),e.createElementVNode("view",{class:"time-people-sec"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/dopeopledark.png":"/static/index/cardicons/zhifa.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," -- ",2)])]),e.createElementVNode("view",{class:"time-button-view"},[e.createElementVNode("view",{class:"time-button-start"}," 开始服务 "),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-button-end-dark":"time-button-end")}," 服务结束 ",2)])])]))),64))],8,["current"])]),e.createElementVNode("view",{class:"split-line-white-right-left",style:e.normalizeStyle(t.darkFans?"background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #386997 50%, rgba(0, 0, 0, 0) 100%);":"")},[t.darkFans?(e.openBlock(),e.createElementBlock("image",{key:0,class:"split-line-white-img",src:"/static/index/cardbgc/leftlight.png"},null,8,["src"])):e.createCommentVNode("",!0)],4)])]))),64))],40,["current"]),e.createElementVNode("view",{class:"right-huli-sec"},[e.createElementVNode("image",{class:"right-huli-shang",src:"/static/index/hulilist/shang.png"},null,8,["src"]),t.darkFans?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("scroll-view",{key:0,"show-scrollbar":!1,"scroll-y":"true",class:"right-huli-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-huli-view-dis",onClick:e=>{a.value.openDrawer()}},[e.createElementVNode("image",{class:"right-huli-img",src:t.url},null,8,["src"]),e.createElementVNode("text",{class:"right-huli-text"},e.toDisplayString(t.name),1)],8,["onClick"])))),128))])),t.darkFans?(e.openBlock(),e.createElementBlock("scroll-view",{key:1,"show-scrollbar":!1,"scroll-y":"true",class:"right-huli-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(w.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-huli-view-dis"},[e.createElementVNode("image",{class:"right-huli-img",src:t.url},null,8,["src"]),e.createElementVNode("text",{class:"right-huli-text-dark"},e.toDisplayString(t.name),1)])))),128))])):e.createCommentVNode("",!0),e.createElementVNode("image",{class:"right-huli-xia",src:"/static/index/hulilist/xia.png"},null,8,["src"])])])],6)],6),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"right-container-fir-right-dark":"right-container-fir-right")},[e.createElementVNode("view",{class:"right-container-card"},[e.createElementVNode("view",{class:"right-container-card-right"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3,4],((t,l)=>e.createElementVNode("view",{class:"",key:l},[e.createElementVNode("image",{class:"right-container-card-right-img",src:y})]))),64))]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-dark":"right-container-title")},e.toDisplayString(m.value),3),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-date-dark":"right-container-date")},e.toDisplayString(u.value),3),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-day-dark":"right-container-day")},e.toDisplayString(v.value),3),e.createElementVNode("view",{class:"right-container-tem"},[e.createElementVNode("image",{class:"right-container-tem-img",src:t.darkFans?"/static/index/darkicon/wendudark.png":"/static/index/roomicons/wendu.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-tem-text-dark":"right-container-tem-text")},"23°C",2),e.createElementVNode("image",{class:"right-container-tem-img",src:t.darkFans?"/static/index/roomicons/shidu.png":"/static/index/darkicon/shidudark.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-tem-text-dark":"right-container-tem-text")},"39%",2)]),e.createElementVNode("view",{class:"right-container-fenge"}),t.darkFans?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"right-container-button"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(N.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-container-button-any"},[e.withDirectives(e.createElementVNode("image",{class:"right-container-button-ray",src:"/static/index/cardicons/ray2.png"},null,8,["src"]),[[e.vShow,k.value.includes(l)]]),e.createElementVNode("image",{class:"right-container-button-img",src:k.value.includes(l)?t.targetUrl:t.url,onClick:e=>I(l)},null,8,["src","onClick"]),e.createElementVNode("text",{class:"right-container-button-text",style:e.normalizeStyle(k.value.includes(l)?{color:"#167ED7"}:{})},e.toDisplayString(t.name),5)])))),128))])),t.darkFans?(e.openBlock(),e.createElementBlock("view",{key:1,class:"right-container-button"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-container-button-any"},[e.withDirectives(e.createElementVNode("image",{class:"right-container-button-ray",src:"/static/index/cardicons/ray2.png"},null,8,["src"]),[[e.vShow,k.value.includes(l)]]),e.createElementVNode("image",{class:"right-container-button-img",src:k.value.includes(l)?t.targetUrl:t.url,onClick:e=>I(l)},null,8,["src","onClick"]),e.createElementVNode("text",{class:"right-container-button-text",style:e.normalizeStyle(k.value.includes(l)?{color:"#167ED7"}:{color:"#fff"})},e.toDisplayString(t.name),5)])))),128))])):e.createCommentVNode("",!0)])],2)]),e.createElementVNode("view",{class:"right-container-sec"},[e.createElementVNode("view",{class:e.normalizeClass(o.value?"right-container-left-big":"right-container-left-small"),style:e.normalizeStyle(c.value||o.value?{zIndex:999}:{zIndex:0})},[e.createElementVNode("view",{style:e.normalizeStyle(o.value?{borderRadius:"29rpx"}:{borderRadius:"50rpx"}),class:e.normalizeClass(t.darkFans?"right-container-left-dark":"right-container-left")},[e.createElementVNode("image",{class:"right-container-left-type",src:"/static/index/yiliao/yiliaolei.png"},null,8,["src"]),e.createElementVNode("div",{class:"right-container-left-font",onClick:A},"医疗类"),e.createElementVNode("view",{class:"right-container-fir-left-carousel"},[e.createElementVNode("view",{class:"carousel"},[e.createElementVNode("view",{class:"dots"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("span",{key:a,class:e.normalizeClass(t.darkFans?"dot-dark":"dot"),style:e.normalizeStyle(a===C.value?{backgroundColor:"#01A0FE"}:{})},null,6))),64))])])]),t.darkFans?(e.openBlock(),e.createElementBlock("image",{key:0,class:"card-upfaguang-down",src:"/static/index/cardbgc/uplight.png"},null,8,["src"])):e.createCommentVNode("",!0),e.createElementVNode("swiper",{current:C.value,class:"swiper savehundred",circular:"","indicator-dots":!1,vertical:!0,interval:4e3,duration:500,onChange:$},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("div",{class:"right-container-fir-left-card-flex-sec"},[e.createElementVNode("view",{class:"uni-margin-wrap"},[e.createElementVNode("swiper",{current:S.value,class:"swiper",circular:"","indicator-dots":!1,autoplay:!1,interval:4e3,duration:500},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("div",{class:"right-container-left-font-spec"},"进行中 "),e.createElementVNode("view",{class:"time-tra-sec"},[e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-font-dark":"time-font")}," 10:00 - 10:10 ",2),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/doctorsaydark.png":"/static/index/medium/doctorsay.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 医嘱类型:药品 ",2)]),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/howtododark.png":"/static/index/medium/howtodo.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 处置方式:肌肉注射 ",2)]),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/useMed.png":"/static/index/medium/yongyao.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 用药类型:抗生素类 ",2)]),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/domanydark.png":"/static/index/medium/domany.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 执行方式:周期一日执行一次 ",2)]),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/darkicon/zhixingpeopledark.png":"/static/index/cardicons/zhixing.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 单人执行 ",2),e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/dopeopledark.png":"/static/index/cardicons/zhifa.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 赵宇 ",2)]),e.createElementVNode("view",{class:"time-button-view"},[e.createElementVNode("view",{class:"time-button-start"}," 开始服务 "),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-button-end-dark":"time-button-end")}," 服务结束 ",2)])]),e.createElementVNode("view",{class:"right-container-photo"},[e.createElementVNode("image",{class:"right-container-photo-img",src:"/static/index/yiliao/project2.png",onClick:A},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-photo-text-dark":"right-container-photo-text")}," 脑膜炎(1/2) ",2)])]))),64))],8,["current"])])])]))),64))],40,["current"]),e.createElementVNode("view",{class:"split-line-white-sec",style:e.normalizeStyle(t.darkFans?"background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #386997 50%, rgba(0, 0, 0, 0) 100%);":"")},[t.darkFans?(e.openBlock(),e.createElementBlock("image",{key:0,class:"split-line-white-img",src:"/static/index/cardbgc/leftlight.png"},null,8,["src"])):e.createCommentVNode("",!0)],4),e.createElementVNode("view",{class:"right-huli-fir"},[e.createElementVNode("image",{class:"right-huli-shang",src:"/static/index/hulilist/shang.png"},null,8,["src"]),t.darkFans?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("scroll-view",{key:0,"show-scrollbar":!1,"scroll-y":"true",class:"right-huli-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(h.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-huli-view-dis"},[e.createElementVNode("image",{class:"right-huli-img",src:t.url},null,8,["src"]),e.createElementVNode("text",{class:"right-huli-text"},e.toDisplayString(t.name),1),e.withDirectives(e.createElementVNode("div",{class:"progress-bar-container"},[e.createElementVNode("div",{style:e.normalizeStyle({width:`${t.number}%`}),class:"progress-bar"},null,4)],512),[[e.vShow,0!==t.number]])])))),128))])),t.darkFans?(e.openBlock(),e.createElementBlock("scroll-view",{key:1,"show-scrollbar":!1,"scroll-y":"true",class:"right-huli-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(f.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-huli-view-dis"},[e.createElementVNode("image",{class:"right-huli-img",src:t.url},null,8,["src"]),e.createElementVNode("text",{class:"right-huli-text-dark"},e.toDisplayString(t.name),1),e.withDirectives(e.createElementVNode("div",{class:"progress-bar-container"},[e.createElementVNode("div",{style:e.normalizeStyle({width:`${t.number}%`}),class:"progress-bar"},null,4)],512),[[e.vShow,0!==t.number]])])))),128))])):e.createCommentVNode("",!0),e.createElementVNode("image",{class:"right-huli-xia",src:"/static/index/hulilist/xia.png"},null,8,["src"])])],6)],6),e.createElementVNode("view",{style:e.normalizeStyle(d.value||s.value?{zIndex:999}:{zIndex:0}),class:e.normalizeClass([s.value?"right-container-right-big":"right-container-right-small"])},[e.createElementVNode("view",{style:e.normalizeStyle(s.value?{borderRadius:"29rpx"}:{borderRadius:"50rpx"}),class:e.normalizeClass([t.darkFans?"right-container-right-father-dark":"right-container-right-father"])},[e.createElementVNode("view",{class:"right-container-right-down-father"},[e.createElementVNode("div",{class:"right-container-fir-left-card-flex-sec"},[e.createElementVNode("image",{class:"right-container-fir-left-card-flex-sec-img",src:"/static/index/baojielei.png"},null,8,["src"]),e.createElementVNode("div",{class:"right-container-fir-left-card-flex-sec-font",onClick:L},"保洁类"),e.createElementVNode("image",{class:"right-container-fir-left-card-flex-sec-imgright-fir",src:"/static/index/baojieleft.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-container-fir-left-card-flex-sec-imgright-sec",src:"/static/index/baojieright.png"},null,8,["src"]),e.createElementVNode("view",{class:"uni-margin-wrap"},[e.createElementVNode("swiper",{current:S.value,class:"swiper",circular:"","indicator-dots":!1,autoplay:!1,interval:4e3,duration:500},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("view",{class:"time-tra-thi"},[e.createElementVNode("view",{class:"time-tra-thi-zhixing"},[e.createElementVNode("div",{class:"time-tra-thi-zhixing-font"},"待执行 ")]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-font-dark":"time-font")}," 10:00 - 10:10 ",2),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-text-dark":"time-text")}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ",2),e.createElementVNode("view",{class:"time-people-two"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/darkicon/zhixingpeopledark.png":"/static/index/cardicons/zhixing.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 单人执行 ",2),e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/dopeopledark.png":"/static/index/cardicons/zhifa.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 王金福 / 李贵田 ",2)]),e.createElementVNode("view",{class:"time-button-view"},[e.createElementVNode("view",{class:"time-button-start"}," 开始服务 "),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-button-end-dark":"time-button-end")}," 服务结束 ",2)])]),e.createElementVNode("view",{class:"time-tra-thi-photo"},[e.createElementVNode("image",{class:"time-tra-thi-photo-img",src:"/static/index/project3.png",onClick:L},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-tra-thi-photo-font-dark":"time-tra-thi-photo-font")}," 更换纸尿裤 ",2)])]))),64))],8,["current"])])])])],6)],6),e.createElementVNode("view",{class:"under-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.value,((l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"under-father-view",key:a,onClick:e=>(e=>{V.value=e})(a)},[e.withDirectives(e.createElementVNode("image",{class:"under-father-light",src:"/static/index/undericons/upguang.png"},null,512),[[e.vShow,a===V.value]]),e.createElementVNode("image",{class:"under-father-img",src:a===V.value?l.targetUrl:l.url},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"under-father-img-font-dark":"under-father-img-font")},e.toDisplayString(l.name),3)],8,["onClick"])))),128))])]),e.createVNode(x,{ref_key:"drawer",ref:a},{default:e.withCtx((()=>[e.createVNode(b)])),_:1},512)],4))}}),[["__scopeId","data-v-6d6a66c6"]]),T="/static/index/deleteicon.png",D="/static/index/NU.png",C=[{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706886",title:"协助喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604232524795905",title:"鼻饲喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604428667228162",title:"注射器/吸管喂药",tagName:"头部,大体重"}],levle:"2",title:"协助喂药",key:"1900114812020310017",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605892869394433",title:"一级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606105021485058",title:"二级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606339931869185",title:"三级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606614344208386",title:"一级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606869953482753",title:"二级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607023431454722",title:"三级压疮防护",tagName:"大体重"}],levle:"2",title:"压疮防护",key:"1900115034452639746",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706887",title:"床椅转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706888",title:"床椅转移",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605073730211842",title:"床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605223185846273",title:"床椅转移",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605365393723393",title:"协助床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605496071458818",title:"协助床椅转移",tagName:null}],levle:"2",title:"床椅转移",key:"1902248363784159233",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607507626102786",title:"轮椅防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607677415723010",title:"轮椅防护",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902607817589362689",title:"轮椅防护",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902608061588803585",title:"轮椅防护",tagName:"大体重"}],levle:"2",title:"轮椅防护",key:"1902280900178886657",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608564582322178",title:"约束位按摩",tagName:"手"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608974609092610",title:"约束位按摩",tagName:"足"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618507855237121",title:"约束位按摩",tagName:"全"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618751548493825",title:"防护网约束",tagName:null}],levle:"2",title:"约束防护",key:"1902280933364219906",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620309090701314",title:"协助行走",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620486044192769",title:"放松按摩",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902625161569079298",title:"心灵慰藉",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902625402468929537",title:"狂躁",tagName:null}],levle:"2",title:"按摩保健",key:"1902564031454744577",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902625872432304130",title:"准备衣物",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626005538541569",title:"协助更换",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626664711163905",title:"肢体障碍",tagName:"半侧"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626800510144513",title:"肢体障碍",tagName:"全身"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627064688381953",title:"准备衣物",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627280716009474",title:"协助更换",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627416598876161",title:"肢体障碍",tagName:"半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627522404388866",title:"肢体障碍",tagName:"全身"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902627711806574593",title:"协助更换",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628058591629313",title:"肢体障碍",tagName:"半侧,大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628650718302209",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628837725540354",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628966847188993",title:"肢体障碍",tagName:"大体重,半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902629129879785474",title:"协助更换",tagName:"大体重"}],levle:"2",title:"更换衣物",key:"1902564088417587201",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629344456183809",title:"坐起",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629492301205506",title:"躺下",tagName:null}],levle:"2",title:"调整坐卧",key:"1902564199830884354",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902630862769065985",title:"遗体净身",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902631162275926017",title:"遗体穿衣",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631422431825921",title:"遗体转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631602463936514",title:"床位消毒",tagName:null}],levle:"2",title:"殡仪服务",key:"1902564263743688705",parentId:"1900112597427793921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902631830441136129",title:"更换床上用品",tagName:"全部"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632063828987905",title:"隔尿褥子更换",tagName:null}],levle:"2",title:"更换床上用品",key:"1902564446648897538",parentId:"1900112597427793921"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632288270389250",title:"临终护理",tagName:null}],levle:"2",title:"临终服务",key:"1902564503783706625",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"40",id:"1902632678701371393",title:"制氧机吸氧",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902632799853842433",title:"制氧机维护",tagName:null}],levle:"2",title:"制氧机应用",key:"1902564586101116930",parentId:"1900112597427793921"}],levle:"1",title:"1 日常照料",key:"1900112597427793921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900376187661553665",title:"准备洁具",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900420873478553602",title:"棉球清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706881",title:"协助清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706885",title:"义齿清洁",tagName:"口腔"}],levle:"2",title:"口腔清洁",key:"1902597070889127938",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902636771540963329",title:"准备洁具",tagName:"头部"},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637623425077250",title:"协助洗头",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637985234128898",title:"卧式洗头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902638122949906433",title:"擦头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902638304739430401",title:"刮头",tagName:null}],levle:"2",title:"头部清洁",key:"1902597497344987137",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902641763073101826",title:"准备洁具",tagName:"面部"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642254465175553",title:"协助洁面",tagName:null}],levle:"2",title:"面部清洁",key:"1902597651405967361",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642508145070081",title:"准备洁具",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642672796667905",title:"协助清洁",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642822885642242",title:"卧床清洁",tagName:"躯干"}],levle:"2",title:"躯干清洁",key:"1902597718082818050",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643318811758594",title:"准备洁具",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643483320750082",title:"协助清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643630888947713",title:"卧床清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643837525528578",title:"肌张力高",tagName:"清洁"}],levle:"2",title:"四肢清洁",key:"1902597811565465601",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645148199391234",title:"会阴清洁",tagName:"男"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645295457210369",title:"会阴清洁",tagName:"女"}],levle:"2",title:"会阴清洁",key:"1902597873964126209",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645493185089537",title:"肛周清洁",tagName:null}],levle:"2",title:"肛周清洁",key:"1902597930020999170",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645693211447298",title:"洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647316134465538",title:"泡手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647529817477122",title:"准备洁具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647673212342274",title:"协助洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647905878773762",title:"强直屈曲洗手",tagName:null}],levle:"2",title:"手清洁",key:"1902597991698239489",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648101203316737",title:"泡脚",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648239091060737",title:"卧式泡脚",tagName:null}],levle:"2",title:"足清洁",key:"1902598178588037121",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648426383511553",title:"修睫毛",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648548777496577",title:"剃须",tagName:null}],levle:"2",title:"剃须",key:"1902598258573414401",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648962444922882",title:"角质增生",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649132536532994",title:"灰指甲",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649302149992449",title:"正常",tagName:"修甲"}],levle:"2",title:"修甲",key:"1902598354606198785",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902649683919736834",title:"理发",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"25",id:"1902649860344745985",title:"理发",tagName:"颅骨缺损"}],levle:"2",title:"理发",key:"1902598400382832642",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902650121280786434",title:"床上沐浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650408884211713",title:"深度清洁",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650763722330113",title:"浴间洗浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"30",id:"1902651229122301954",title:"床上沐浴",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651366317985794",title:"深度清洁",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651555363655682",title:"浴间洗浴",tagName:"大体重"}],levle:"2",title:"沐浴",key:"1902598454782955522",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651778777452545",title:"内套管清洁",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651924047171586",title:"更换气切纱布",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"10",id:"1902652055928672258",title:"更换气切纱布",tagName:null}],levle:"2",title:"气切消毒",key:"1902598509522817026",parentId:"1900112615777873921"}],levle:"1",title:"2 清洁照料",key:"1900112615777873921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898057679966209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898202668666881",title:"协助进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898339931459586",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898472584712194",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898590658564097",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898719952179201",title:"准备餐具",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898979948695554",title:"协助进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899086840532993",title:"协助进餐",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899214838108162",title:"鼻胃管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899325014085633",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899587028062210",title:"食物加工",tagName:null}],levle:"2",title:"加餐饮食",key:"1902596129720864770",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281139677839362",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902281522340970498",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281654100836354",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281870434648066",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902654960639381506",title:"鼻肠管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902655101874180097",title:"轮椅进餐",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902892199009030145",title:"轮椅进餐",tagName:null}],levle:"2",title:"正餐饮食",key:"1902601263850950657",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893231608926209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893551978254337",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893716466274306",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894369850757122",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894528533860354",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"辅餐饮食",key:"1902601382595891202",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894832176304129",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894954117304322",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895077522116609",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895233407619073",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895569912434689",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"果汁饮食",key:"1902601427168759809",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895878508351489",title:"准备水杯",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895984053817346",title:"协助饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896136835534850",title:"协助饮水",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896508421509122",title:"鼻胃管饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896636553302017",title:"鼻肠管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902896855802155010",title:"准备水杯",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897018344017921",title:"协助饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897464936730626",title:"协助饮水",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897675813752834",title:"鼻胃管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897803417063426",title:"鼻肠管饮水",tagName:null}],levle:"2",title:"饮水饮食",key:"1902601487625457665",parentId:"1902280495747317762"}],levle:"1",title:"3 饮食照料",key:"1902280495747317762"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902653177363927041",title:"巡视",tagName:null}],levle:"2",title:"巡视",key:"1902564741860790273",parentId:"1902560466095017986"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653325481578497",title:"防坠床",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653497066360833",title:"被褥调整",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653650917625857",title:"睡姿调整",tagName:null}],levle:"2",title:"体位调整",key:"1902564818838851585",parentId:"1902560466095017986"}],levle:"1",title:"4 睡眠照料",key:"1902560466095017986"},{children:[{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904277308510210",title:"更换尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904458779267073",title:"更换隔尿垫",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905631242424322",title:"使用尿盆",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905824973131777",title:"使用尿壶",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906220483416065",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906459051233281",title:"坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906610562076674",title:"留置尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906783325458434",title:"更换纸尿裤",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908406344945665",title:"热敷抚触排尿",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908523827400705",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909645401067522",title:"更换尿片",tagName:null}],levle:"2",title:"小便",key:"1902596314152800257",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909835331735554",title:"床上排便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910002671882242",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910156154048514",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910361008050178",title:"人工取便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910524623654913",title:"造瘘袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910700176248834",title:"坐便椅",tagName:null}],levle:"2",title:"大便",key:"1902596399423000577",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910899565072385",title:"口腔吸痰",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911047405899778",title:"气切吸痰",tagName:null}],levle:"2",title:"吸痰",key:"1902596461238652930",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911232974491650",title:"呕吐",tagName:null}],levle:"2",title:"呕吐",key:"1902596886771765250",parentId:"1902560510768549889"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902911378349068290",title:"腹腔引流护理",tagName:null}],levle:"2",title:"引流",key:"1902596940366581762",parentId:"1902560510768549889"}],levle:"1",title:"5 排泄照料",key:"1902560510768549889"}],S=s(e.defineComponent({__name:"index",props:{isshow:{type:Boolean,required:!0},darkFans:{type:Boolean,required:!0},canmove:{type:Boolean,required:!0},liang:{type:Object}},emits:["darkchange","savename","saveruler","closename","changefangkuang","changeold"],setup(t,{expose:a,emit:i}){const o=t;e.watch((()=>o.canmove),(()=>{Ee.value=!1})),e.watch((()=>o.isshow),(()=>{Ee.value=!1,ae.value=!1})),e.onMounted((()=>{}));const c=e.ref([{name:"纸尿裤",url:"/static/index/niao.png"},{name:"呕吐",url:"/static/index/tu.png"},{name:"吸痰",url:"/static/index/ou.png"},{name:"大便",url:"/static/index/baba.png"},{name:"纸尿裤",url:"/static/index/niao.png"},{name:"呕吐",url:"/static/index/tu.png"},{name:"吸痰",url:"/static/index/ou.png"},{name:"大便",url:"/static/index/baba.png"},{name:"纸尿裤",url:"/static/index/niao.png"},{name:"呕吐",url:"/static/index/tu.png"},{name:"吸痰",url:"/static/index/ou.png"},{name:"大便",url:"/static/index/baba.png"},{name:"纸尿裤",url:"/static/index/niao.png"},{name:"呕吐",url:"/static/index/tu.png"},{name:"吸痰",url:"/static/index/ou.png"},{name:"大便",url:"/static/index/baba.png"}]),s=["00","05","10","15","20","25","30","35","40","45","50","55"],d=["周一","周二","周三","周四","周五","周六","周日"],m=Array.from({length:31},((e,t)=>(t+1).toString().padStart(2,"0"))),u=e.ref(!0),v=e.ref(0),p=e.ref(0),g=e.ref(),w=e.ref([]),h=e.ref([]),f=e.ref(!1),N=e.ref(!1),y=e.ref(!1),x=e.ref(!1),E=e.ref(!1),V=e.ref(""),b=e.ref(!1),k=e.ref(1);function S(e,t){return 2*function(e,t){const l=55.9898*e+78.233*t;return Math.abs(43758.5453*Math.sin(l))%1}(e,t)}e.ref(0);const B=t=>{k.value=t.detail.current,e.nextTick((()=>{p.value=z.value}))};e.ref(0);const z=e.ref(0);function _(e){let t=e.detail.scrollTop,l=parseFloat(t.toFixed(2));z.value=l}e.ref(!0);const I=(e,t)=>!(o.canmove||o.liang.index0!==e||o.liang.index1!==t||!pe.value.includes(e+6*k.value)&&ge.value==t),U=(e,t)=>!o.canmove&&o.liang.index0===e&&o.liang.index1===t,F=(e,t,l)=>"日常"===e.cycleType?J.value.index0===t+6*k.value&&J.value.index1===l&&ae.value?"title-time-border-yellow-active-transparent":ae.value?"title-time-border-yellow-active":"title-time-border-yellow":e.cycleType?J.value.index0===t+6*k.value&&J.value.index1===l&&ae.value?"title-time-border-pouple-active-transparent":ae.value?"title-time-border-pouple-active":"title-time-border-pouple":"title-time-border",$=e.ref([{url:"/static/index/doctorsay/light/use.png",targetUrl:"/static/index/doctorsay/dark/use.png",name:"日常"},{url:"/static/index/doctorsay/light/clean.png",targetUrl:"/static/index/doctorsay/dark/clean.png",name:"清洁"},{url:"/static/index/doctorsay/light/drink.png",targetUrl:"/static/index/doctorsay/dark/drink.png",name:"饮食"},{url:"/static/index/doctorsay/light/bed.png",targetUrl:"/static/index/doctorsay/dark/bed.png",name:"睡眠"},{url:"/static/index/doctorsay/light/shi.png",targetUrl:"/static/index/doctorsay/dark/shi.png",name:"排泻"}]),M=e.ref(1),A=e.ref(0),L=e.ref(999);e.ref(!1),e.ref([]);const O=i,P=e=>{O("changeold",e)},j=e.ref(null);e.ref({});const q=e.ref(0),R=e.ref(0),W=e.ref(0),Y=e.ref(0),J=e.ref({index0:999,index1:999,typeName:""}),X=e.ref(-1),Z=e.ref(!1),H=e.ref(!1),G=e.ref([-1,-1]),Q=e.ref(""),K=e.ref(-1),ee=e.ref(!1),te=()=>{ee.value=!0,H.value=!1,setTimeout((()=>{H.value=!0}),100)},le=()=>{uni.share({provider:"weixin",scene:"WXSceneSession",type:0,href:"http://192.168.2.31:3101/daytoday",title:"护理日程分享",summary:"九泰护理日程测试",imageUrl:"https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/uni@2x.png",success:function(e){l("log","at component/rightItemssecond/index.vue:740","success:")},fail:function(e){l("log","at component/rightItemssecond/index.vue:743","fail:")}})},ae=e.ref(!1),ie=e.ref([]),re=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-q.value)>0||Math.abs(l-R.value)>0)&&j.value&&(clearTimeout(j.value),j.value=null)},ne=e.ref(null),oe=e.ref(!1);let ce=null;function se(e){oe.value=!0,ce&&clearTimeout(ce),ce=setTimeout((()=>{oe.value=!1}),400)}const de=e.ref(!1),me=e.ref(0),ue=e.ref(0),ve=e.ref(!1),pe=e.ref([]),ge=e.ref(-1),we=e.ref(""),he=e.ref("");function fe(){return!!(!Ce.value&&De.value.startTime||1===Ce.value&&De.value.startTime&&(De.value.weekTime||De.value.monthTime)||2===Ce.value)}const Ne=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-me.value)>0||Math.abs(l-ue.value)>0)&&ne.value&&(clearTimeout(ne.value),ne.value=null)},ye=()=>{ve.value=!1,ne.value&&(clearTimeout(ne.value),ne.value=null)},xe=e.ref(null),Ee=e.ref(!1),Ve=e=>{me.value=Math.floor(e.touches[0].pageX),ue.value=Math.floor(e.touches[0].pageY),xe.value=setTimeout((()=>{Ee.value=!0}),500)},be=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-me.value)>0||Math.abs(l-ue.value)>0)&&xe.value&&(clearTimeout(xe.value),xe.value=null)},ke=()=>{xe.value&&(clearTimeout(xe.value),xe.value=null)},Te=e.ref({time:"",array:[]}),De=e.ref({op:{name:"",index:[-1,-1,-1]},startTime:"",monthTime:"",weekTime:""}),Ce=e.ref(0),Se=(e,t)=>{if(we.value=t.id,he.value=t.tagName,De.value.op.index[2]===e)De.value.op.index[2]=-1,De.value.op.name="",Ce.value=-1;else switch(De.value.op.index[2]=e,De.value.op.name=t.relName,t.cycleType){case"日常护理":Ce.value=0;break;case"周期护理":Ce.value=1;break;case"即时护理":Ce.value=2}},Be=e.ref([-1,-1]);e.ref(null);const ze=async()=>{N.value=!1,u.value=!0;let t=-1,l=[];if(2===Ce.value)return v.value=1,void e.nextTick((()=>{v.value=0,c.value.unshift({name:De.value.op.name,url:"/static/index/ou.png",target:"#00a8ff"}),setTimeout((()=>{c.value[0].target="#fff"}),1500),setTimeout((()=>{c.value[0].target=""}),3e3)}));Ae.value.forEach(((e,a)=>{l=[],e.children.forEach(((e,t)=>{if(null===e.directiveName||""===e.directiveName||void 0===e.directiveName){Ae.value.every((e=>{const l=e.children[t];return void 0===l||null===l.directiveName||""===l.directiveName||void 0===l.directiveName}))&&l.push(t)}})),e.children.forEach(((e,l)=>{e.typeName==h.value[De.value.op.index[0]].children[De.value.op.index[1]].title&&(t=l)}))})),-1===t&&(t=l[0]);let a=h.value[De.value.op.index[0]].children[De.value.op.index[1]].title;await e.nextTick(),Ae.value.forEach(((e,l)=>{e.children[t].typeName=a}));let i="";Ce.value?1===Ce.value&&(i=De.value.weekTime||De.value.monthTime+"号"):i="日常";const r=Number(Te.value.time),n=Number(De.value.startTime),o=n+10,s=r+Math.floor(o/60),d=`${String(r)}:${String(n).padStart(2,"0")}`,m=`${String(s)}:${String(o%60).padStart(2,"0")}`;-1!==t?(Ae.value[Be.value[0]].children[t].startTime=d,Ae.value[Be.value[0]].children[t].endTime=m):(Ae.value[Be.value[0]].children[Be.value[1]].startTime=d,Ae.value[Be.value[0]].children[Be.value[1]].endTime=m);let g={directiveId:we.value,directiveName:De.value.op.name,startTime:d,endTime:m,positioning:Be.value[0].toString(),positioningLong:Be.value[1].toString(),tagName:he.value,cycleType:i,nuId:"1",customerId:"1",id:"",typeName:a};Ae.value[Be.value[0]].children[t]=g,Ae.value.forEach((e=>{e.children.forEach((e=>{}))}));let w={index0:Be.value[0],index1:t};$e(w);Ae.value.some((e=>{const t=e.children;return""!==t[t.length-1].directiveName.trim()}))&&(Ae.value.forEach((e=>{e.children.push({directiveName:""})})),p.value=999,e.nextTick(),p.value=9999),_e()},_e=()=>{Ae.value.forEach(((e,t)=>{e.children.forEach(((e,l)=>{let a="";if(e.directiveName||e.id)e.positioning=t,e.positioningLong=l;else{let i={};e.typeName&&(a=e.typeName),i=JSON.parse(JSON.stringify(Me.value)),a&&(i.typeName=a),i.positioning=t,i.positioningLong=l}}))}))},Ie=()=>{uni.setStorage({key:"myArray",data:Ae.value,success:function(){uni.navigateTo({url:`/pages/timeMatrix/index?currentNumber=${k.value}`})}})},Ue=e.ref({index0:-1,index1:-1}),Fe=e.ref({index0:-1,index1:-1,current:-1,bordershow:!0}),$e=e=>{p.value=0,p.value=104*e.index1,k.value===Math.floor(e.index0/6)?(Fe.value.index0=e.index0-6*k.value,Fe.value.index1=e.index1,Ue.value.index0=Fe.value.index0,Ue.value.index1=Fe.value.index1,Fe.value.current=k.value,Fe.value.bordershow=!1,setTimeout((()=>{Fe.value.index0=-1,Fe.value.index1=-1,Fe.value.current=-1}),400),setTimeout((()=>{Fe.value.bordershow=!0,Ue.value.index0=-1,Ue.value.index1=-1}),1e3)):(setTimeout((()=>{k.value=Math.floor(e.index0/6)}),100),setTimeout((()=>{Fe.value.index0=e.index0-6*k.value,Fe.value.index1=e.index1,Ue.value.index0=Fe.value.index0,Ue.value.index1=Fe.value.index1,Fe.value.current=k.value,Fe.value.bordershow=!1}),800),setTimeout((()=>{Fe.value.index0=-1,Fe.value.index1=-1,Fe.value.current=-1}),1400),setTimeout((()=>{Fe.value.bordershow=!0,Ue.value.index0=-1,Ue.value.index1=-1}),2200))};r((()=>{h.value=C,g.value=h.value[0].children,uni.$on("where",$e)})),n((()=>{uni.$off("where",$e)})),a({rulerEnd:async e=>{de.value=!1,999!==o.liang.index0&&e&&(De.value={op:{name:"",index:[-1,-1,-1]},startTime:"",monthTime:"",weekTime:""},x.value=!1,N.value=!0,setTimeout((()=>{x.value=!0}),100),De.value.op.index[0]=A.value,De.value.op.index[1]=L.value,Te.value.time=Ae.value[o.liang.index0+6*k.value].positioning,Te.value.array=h.value[A.value].children[L.value].children,Te.value.array.forEach((e=>{e.relName=e.title+(e.tagName?e.tagName.split(",").map((e=>`(${e})`)).join(""):"")})),Be.value=[o.liang.index0+6*k.value,o.liang.index1],Se(0,Te.value.array[0]))},rulerMoveEnd:e=>{if(999!==o.liang.index0&&e.cycleType){if(pe.value.includes(o.liang.index0+6*k.value)||ge.value!==o.liang.index1)return!1;Be.value=[o.liang.index0+6*k.value,o.liang.index1];let t=-1,l=[];Ae.value.forEach(((a,i)=>{l=[],a.children.forEach(((e,t)=>{if(null===e.directiveName||""===e.directiveName||void 0===e.directiveName){Ae.value.every((e=>{const l=e.children[t];return void 0===l||null===l.directiveName||""===l.directiveName||void 0===l.directiveName}))&&l.push(t)}})),a.children.forEach(((l,a)=>{l.typeName==e.typeName&&(t=a)}))})),-1===t&&(t=l[0]);let a=0,i="";Ae.value.forEach((e=>{e.children[0].value&&(a++,i=e.children[0].typeName)})),Ae.value[J.value.index0].children[J.value.index1]=a>1?{directiveName:"",typeName:i}:{directiveName:""},Ae.value[Be.value[0]].children[t]=e;let r=Ae.value[Be.value[0]].children[t].startTime,n=Ae.value[Be.value[0]].children[t].endTime,c=Ae.value[Be.value[0]].positioning;const s=r.substring(r.indexOf(":")),d=n.substring(n.indexOf(":"));Ae.value[Be.value[0]].children[t].startTime=c+s,Ae.value[Be.value[0]].children[t].endTime=c+d;Ae.value.some((e=>{const t=e.children;return""!==t[t.length-1].directiveName.trim()}))&&(Ae.value.forEach((e=>{e.children.push({directiveName:""})})),p.value=999,p.value=9999),_e()}},nextItems:()=>{0==k.value?k.value=3:k.value--}}),e.ref({index0:999,index1:999});const Me=e.ref({directiveId:"",directiveName:"",startTime:"",endTime:"",positioning:"",positioningLong:"",tagName:"",cycleType:"",nuId:"1",customerId:"1",id:"",typeName:""}),Ae=e.ref(Array.from({length:24},((e,t)=>({positioning:t.toString(),children:Array.from({length:4},(()=>({directiveName:""})))}))));function Le(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}return(l,a)=>{var i,r,n,o;return e.openBlock(),e.createElementBlock("view",{class:"right-container",style:e.normalizeStyle(t.isshow?{opacity:"1"}:{opacity:"0"}),onClick:a[22]||(a[22]=e=>{Ee.value=!1,ae.value=!1})},[e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," ID:12345678 ",2),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," 名称:未命名01 ",2),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"right-icons-font-dark":"right-icons-font")},"王金福",2),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/face.png":"/static/index/undericons/facelight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/hand.png":"/static/index/undericons/handlight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/out.png":"/static/index/undericons/outlight.png"},null,8,["src"])]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button",onClick:a[0]||(a[0]=e=>P(0))},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 拖动模式 ")]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button-wrong",onClick:a[1]||(a[1]=e=>P(2))},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 手柄模式 ")])]),e.createElementVNode("view",{class:"doctorsay-container-view"},[e.createElementVNode("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"doctorsay-container-title"},[e.createElementVNode("view",{class:"doctorsay-container-left"},[e.createElementVNode("view",{class:"doctorsay-container-left-gun"}),e.createElementVNode("view",{class:"doctorsay-container-left-font"},"时间矩阵"),e.createElementVNode("view",{class:"doctorsay-container-share",onClick:te}," 分享 ")]),e.createElementVNode("view",{class:"doctorsay-container-right"},[e.createElementVNode("view",{class:"doctorsay-container-right-kuai-cheng"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"日常"),e.createElementVNode("view",{class:"doctorsay-container-right-kuai-zi"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"周期"),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(w.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"doctorsay-container-button-father",key:l},[e.createElementVNode("view",{class:e.normalizeClass(M.value===l?"doctorsay-container-button-target":"doctorsay-container-button"),onClick:e=>(e=>{M.value=e})(l)},e.toDisplayString(t),11,["onClick"])])))),128)),e.createElementVNode("view",{class:"doctorsay-container-juzhen",onClick:Ie}," 预览 ")])]),e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("view",{class:"boom"},[e.createElementVNode("view",{style:e.normalizeStyle({marginTop:`-${2*z.value}rpx`})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Ae.value[0].children,((l,a)=>(e.openBlock(),e.createElementBlock("view",{key:a},[e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(K.value===a||t.liang.index1===a&&!t.canmove||J.value.index1===a&&ae.value?"boom-son-target":"boom-son")},e.toDisplayString(l.typeName),3),[[e.vShow,l.typeName]])])))),128))],4)]),e.createElementVNode("swiper",{"disable-touch":!t.canmove||ae.value,current:k.value,class:"scroll-x",circular:"","indicator-dots":!1,onChange:B,interval:4e3,duration:500},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3,4],((l,i)=>e.createElementVNode("swiper-item",{key:i},[e.createElementVNode("view",{style:{display:"flex","box-shadow":"10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1)",background:"linear-gradient(to right, #c4dbf4,#c9c2ef, #c6dcf3)"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Ae.value.slice(6*i,6*(i+1)),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time",style:e.normalizeStyle(M.value?{width:"274rpx"}:{width:"206rpx"})},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),5)])))),128))]),e.createElementVNode("view",{style:{display:"flex",height:"calc(100% - 80rpx)"}},[e.createElementVNode("scroll-view",{style:e.normalizeStyle([{height:"100%"},M.value?{width:"6700rpx"}:{width:"5000rpx"}]),"scroll-top":p.value,"scroll-y":t.canmove&&!ae.value,onScroll:_,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Ae.value.slice(6*i,6*(i+1)),((l,i)=>(e.openBlock(),e.createElementBlock("view",{key:i},[e.createElementVNode("view",{class:"super-card-time-und",style:e.normalizeStyle(M.value?{width:"274rpx"}:{width:"206rpx"})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.children,((l,r)=>(e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:r},[e.createElementVNode("view",{class:e.normalizeClass(Fe.value.current===k.value&&Fe.value.index0===i&&Fe.value.index1===r?Fe.value.index1?"title-time-border-big":"title-time-border-big-top":"super-card-time-card"),style:e.normalizeStyle([Fe.value.bordershow||Ue.value.index0!==i||Ue.value.index1!==r?{borderTop:"1rpx solid transparent"}:{zIndex:999},{position:"relative"}]),id:`a${i}_${r}`,onClick:t=>((t,l,a,i)=>{t.directiveName&&(K.value=a,uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.left>100&&t.left<900&&t.top<570&&t.top>140&&t.dataset.index0==l&&t.dataset.index1==a&&(t.left>100&&t.left<400?W.value=Math.floor(t.left)+520:W.value=Math.floor(t.left),t.top>140&&t.top<300?Y.value=Math.floor(t.top)+250:Y.value=Math.floor(t.top),await e.nextTick(),f.value=!0,y.value=!1,setTimeout((()=>{y.value=!0}),100))}))})).exec())})(l,i,r),onTouchstart:e=>((e,t,l,a)=>{p.value=z.value,pe.value=[];let i=-1;q.value=Math.floor(a.touches[0].pageX),R.value=Math.floor(a.touches[0].pageY),j.value=setTimeout((()=>{e.directiveName&&(Ae.value.forEach(((t,l)=>{t.children.forEach((t=>{t.typeName===e.typeName&&t.directiveName&&pe.value.push(l),t.directiveName&&(i=l)}))})),pe.value.length?ge.value=l:ge.value=i+1,J.value.typeName=e.typeName,J.value.index0=t+6*k.value,J.value.index1=l,Be.value=[-1,-1],ie.value=[],ve.value=!0,uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((e=>{e.forEach((async e=>{e.left>100&&e.left<900&&e.top<570&&e.top>140&&ie.value.push(e)}))})).exec(),O("saveruler",e,ie.value),ae.value=!0)}),100)})(l,i,r,e),onTouchmove:re,onTouchend:a[2]||(a[2]=e=>(ve.value=!1,void(j.value&&(clearTimeout(j.value),j.value=null)))),"data-index0":i,"data-index1":r},[l.directiveName&&ae.value?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time-delete",onClick:e.withModifiers((e=>((e,t,l)=>{G.value=[-1,-1],ae.value=!1,Ee.value=!1,b.value=!1,E.value=!0,G.value=[t+6*k.value,l],V.value=e.directiveName,Q.value=e.id,setTimeout((()=>{b.value=!0}),100)})(l,i,r)),["stop"])}," - ",8,["onClick"])),[[e.vShow,t.liang.index0!==i||t.liang.index1!==r||t.canmove]]):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{class:"title-time-blue"},[e.createElementVNode("image",{class:"title-time-blue-img",src:I(i,r)?"/static/index/movemode/targetcheng.png":"/static/index/movemode/target.png"},null,8,["src"])],512),[[e.vShow,U(i,r)]]),e.createElementVNode("view",{class:e.normalizeClass(F(l,i,r)),style:e.normalizeStyle([{"font-size":"30rpx",overflow:"hidden"},{animationDelay:`-${S(i,r).toFixed(2)}s`}])},[l.startTime?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"margin-top":"5rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(l.startTime+"-"+l.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==l.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(l.cycleType),1)],512)),[[e.vShow,t.liang.index0!==i||t.liang.index1!==r||t.canmove]]):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{style:{"margin-top":"20rpx","font-weight":"700"}},e.toDisplayString(Le(l.directiveName)[0]),513),[[e.vShow,t.liang.index0!==i||t.liang.index1!==r||t.canmove]]),Le(l.directiveName)[1]?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:1,class:"down-icons",style:e.normalizeStyle("日常"!=l.cycleType?{backgroundColor:"rgb(212,203,255)"}:{})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Le(l.directiveName).slice(1),((t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:a},[e.createElementVNode("view",{class:"icon",style:e.normalizeStyle("日常"!=l.cycleType?{backgroundColor:"rgb(123,97,255)"}:{})},e.toDisplayString(Le(l.directiveName)[a+1]),5)])))),128))],4)),[[e.vShow,t.liang.index0!==i||t.liang.index1!==r||t.canmove]]):e.createCommentVNode("",!0)],6)],46,["id","onClick","onTouchstart","data-index0","data-index1"])])))),128))],4)])))),128))])],44,["scroll-top","scroll-y"])])]))),64))],40,["disable-touch","current"])])]),e.createElementVNode("view",{class:"super-card-end"},[e.createElementVNode("view",{class:"super-end-father"},[e.createElementVNode("view",{class:"super-end-font-father"},[e.createElementVNode("view",{class:"super-end-font-gun"}),e.createElementVNode("view",{class:"super-end-font-font"},"即时指令")]),e.createElementVNode("scroll-view",{"scroll-x":"",class:"super-end-items-all","scroll-left":v.value},[e.createElementVNode("view",{class:"super-end-items"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{onTouchstart:Ve,onTouchmove:be,onTouchend:ke,style:e.normalizeStyle(t.target?{background:t.target,transition:"all 1.5s ease-in-out"}:{transition:"all 1.5s ease-in-out"}),class:"super-end-items-father"},[e.withDirectives(e.createElementVNode("view",{class:"super-end-items-father-close-father",onClick:e.withModifiers((e=>((e,t)=>{Ee.value=!1,X.value=e,ae.value=!1,H.value=!1,Z.value=!0,V.value=t,setTimeout((()=>{H.value=!0}),100)})(l,t.name)),["stop"])}," - ",8,["onClick"]),[[e.vShow,Ee.value]]),e.createElementVNode("view",{style:e.normalizeStyle({animationDelay:`-${.1*l}s`}),class:e.normalizeClass(Ee.value?"super-end-items-img-father-active":"super-end-items-img-father")},[e.createElementVNode("image",{class:"super-end-items-img",src:t.url},null,8,["src"])],6),e.createElementVNode("view",{class:"super-end-items-font"},e.toDisplayString(t.name),1)],36)])))),128))])],8,["scroll-left"])])])]),e.createElementVNode("view",{class:"doctorsay-container-items"},[e.createElementVNode("view",{class:"doctorsay-container-up"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList($.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>(e=>{A.value=e,g.value=h.value[e].children,L.value=999})(l)},[e.createElementVNode("view",{class:"doctorsay-container-card",style:e.normalizeStyle(l===A.value?{background:"linear-gradient(to right bottom, #00c9ff, #0076ff)"}:{})},[e.createElementVNode("image",{class:"doctorsay-container-card-img",src:l===A.value?t.targetUrl:t.url},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(l===A.value?"doctorsay-container-card-font-dark":"doctorsay-container-card-font")},e.toDisplayString(t.name),3)],4)],8,["onClick"])))),128)),e.createElementVNode("view",null,[e.createElementVNode("view",{class:"doctorsay-container-card",style:{background:"linear-gradient(135deg, #01e7be 0%, #0080dd 100%)"}},[e.createElementVNode("image",{class:"doctorsay-container-card-img",src:"/static/index/shexiang.png"}),e.createElementVNode("view",{class:"doctorsay-container-card-font-dark"}," 监控 ")])])]),e.createElementVNode("view",{class:"doctorsay-container-down"},[e.createElementVNode("view",{class:"doctorsay-top"},[e.createElementVNode("view",{class:"doctorsay-top-gun"}),e.createElementVNode("view",{class:"doctorsay-top-font"},"服务类型")]),e.createElementVNode("scroll-view",{"scroll-y":t.canmove,class:"doctorsay-container-scroll",onScroll:se},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"doctorsay-container-button",onClick:e=>L.value=l,onTouchstart:e=>((e,t,l)=>{p.value=z.value,ae.value=!1,me.value=Math.floor(l.touches[0].pageX),ue.value=Math.floor(l.touches[0].pageY),ne.value=setTimeout((()=>{if(pe.value=[],oe.value)return;let l=-1,a=-1;Ae.value.forEach(((t,i)=>{t.children.forEach(((t,r)=>{t.typeName===e.title&&t.directiveName&&(pe.value.push(i),l=r),t.directiveName&&r>a&&(a=r)}))})),pe.value.length?ge.value=l:ge.value=a+1,de.value=!0,L.value=t,Be.value=[-1,-1],ve.value=!0,ie.value=[],uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((e=>{e.forEach((e=>{e.left>100&&e.left<900&&e.top<570&&e.top>140&&ie.value.push(e)}))})).exec(),O("savename",e.title,ie.value)}),200)})(t,l,e),onTouchmove:Ne,onTouchend:ye},[e.createElementVNode("text",{class:e.normalizeClass(L.value===l?"doctorsay-container-text-target":"doctorsay-container-text"),style:e.normalizeStyle({backgroundColor:t.color?t.color:"",...de.value?{}:{width:"250rpx",height:"75rpx",fontSize:"30rpx",borderRadius:"25rpx"}})},e.toDisplayString(t.title),7),e.withDirectives(e.createElementVNode("image",{class:"doctorsay-container-button-uplight",style:e.normalizeStyle(de.value?{}:{top:"30rpx"}),src:"/static/index/cardicons/uplight.png"},null,12,["src"]),[[e.vShow,L.value===l]])],40,["onClick","onTouchstart"])])))),128))],40,["scroll-y"])])])]),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay",onClick:a[4]||(a[4]=e=>{f.value=!1,J.value.index0=999,K.value=-1})},[e.createElementVNode("view",{class:"popup-overlay-content",style:e.normalizeStyle({top:2*Y.value-350+"rpx",left:2*W.value-780+"rpx",opacity:y.value?1:0,backgroundColor:"日常"===(null==(r=null==(i=Ae.value[J.value.index0])?void 0:i.children[J.value.index1])?void 0:r.type)?"#fffcf6":"rgb(246, 244, 254)"}),onClick:a[3]||(a[3]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"},e.toDisplayString(null==(o=null==(n=Ae.value[J.value.index0])?void 0:n.children[J.value.index1])?void 0:o.value),1)]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],4)],512),[[e.vShow,f.value]]),N.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-song",onClick:a[11]||(a[11]=e=>N.value=!1)},[e.createElementVNode("view",{class:"popup-song-contain",style:e.normalizeStyle({opacity:x.value?1:0}),onClick:a[10]||(a[10]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-song-father"},[e.createElementVNode("image",{class:"shu-up-img",src:"/static/index/cheng.png"}),e.createElementVNode("view",{class:"shu-up-font"},[e.createElementVNode("view",{class:""}," 服务时段:"+e.toDisplayString(Te.value.time+":00"),1),e.createElementVNode("view",{style:{"margin-left":"30rpx"}}," 护理时长:10分钟 ")]),e.createElementVNode("view",{class:"shu-container-left"},[e.createElementVNode("view",{class:"shu-container-left-gun"}),e.createElementVNode("view",{class:"shu-container-left-font"},"服务指令")]),e.createElementVNode("view",{class:"arrayindex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Te.value.array,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{style:{position:"relative","box-shadow":"10rpx 10rpx 20rpx rgba(105, 129, 178, 0.4)"},class:e.normalizeClass(De.value.op.index[2]===l?"arrayindex-one-target":"arrayindex-one"),onClick:e=>Se(l,t)},[e.withDirectives(e.createElementVNode("image",{class:"ri-img",src:De.value.op.index[2]!==l?"/static/index/ridark.png":"/static/index/ri.png"},null,8,["src"]),[[e.vShow,"日常护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"ri-img",src:De.value.op.index[2]==l?"/static/index/zhoudark.png":"/static/index/zhou.png"},null,8,["src"]),[[e.vShow,"周期护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"ri-img",src:De.value.op.index[2]==l?"/static/index/jidark.png":"/static/index/ji.png"},null,8,["src"]),[[e.vShow,"即时护理"===t.cycleType]]),e.createTextVNode(" "+e.toDisplayString(t.relName),1)],10,["onClick"])])))),128))]),e.withDirectives(e.createElementVNode("view",{class:"shu-container-left",style:{"margin-top":"50rpx"}},[e.createElementVNode("view",{class:"shu-container-left-gun"}),e.createElementVNode("view",{class:"shu-container-left-font"},"开始分钟")],512),[[e.vShow,2!=Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"time-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(s,((t,l)=>e.createElementVNode("view",{key:l},[e.withDirectives(e.createElementVNode("view",{class:"time-one-hui"},e.toDisplayString(t),513),[[e.vShow,Number(t)>=50]]),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(De.value.startTime===t?"time-one-target":"time-one"),onClick:e=>(e=>{De.value.startTime==e?De.value.startTime="":De.value.startTime=e})(t)},e.toDisplayString(t),11,["onClick"]),[[e.vShow,Number(t)<50]])]))),64))],512),[[e.vShow,2!=Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"shu-container-left",style:{"margin-top":"50rpx"}},[e.createElementVNode("view",{class:"shu-container-left-gun"}),e.createElementVNode("view",{class:"shu-container-left-font"},"周期类型")],512),[[e.vShow,1==Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"radio-father"},[e.createElementVNode("view",{class:e.normalizeClass(u.value?"radio-circle-target":"radio-circle"),onClick:a[5]||(a[5]=e=>{u.value=!0,De.value.monthTime=""})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[6]||(a[6]=e=>{u.value=!0,De.value.monthTime=""})},"每周"),e.createElementVNode("view",{class:e.normalizeClass(u.value?"radio-circle":"radio-circle-target"),onClick:a[7]||(a[7]=e=>{u.value=!1,De.value.weekTime=""})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[8]||(a[8]=e=>{u.value=!1,De.value.weekTime=""})},"每月")],512),[[e.vShow,1==Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"week-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(d,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(De.value.weekTime===t?"week-one-target":"week-one"),onClick:e=>(e=>{De.value.weekTime==e?De.value.weekTime="":De.value.weekTime=e})(t)},e.toDisplayString(t),11,["onClick"])]))),64))],512),[[e.vShow,u.value&&1==Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"month-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(m),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(De.value.monthTime===t?"month-one-target":"month-one"),onClick:e=>(e=>{De.value.monthTime==e?De.value.monthTime="":De.value.monthTime=e})(t)},e.toDisplayString(t),11,["onClick"])])))),128))],512),[[e.vShow,!u.value&&1==Ce.value]]),e.createElementVNode("view",{class:"button-father"},[e.createElementVNode("view",{style:{display:"flex"}},[e.withDirectives(e.createElementVNode("view",{class:"button-father-right",onClick:ze}," 确定 ",512),[[e.vShow,fe()]]),e.withDirectives(e.createElementVNode("view",{class:"button-father-wrong"}," 确定 ",512),[[e.vShow,!fe()]]),e.createElementVNode("view",{class:"button-father-wrong",onClick:a[9]||(a[9]=e=>N.value=!1),style:{"margin-left":"20rpx"}}," 取消 ")])])])],4)])):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{class:"popup-delete",onClick:a[15]||(a[15]=e=>E.value=!1)},[e.createElementVNode("view",{class:"popup-delete-content",style:e.normalizeStyle({opacity:b.value?1:0}),onClick:a[14]||(a[14]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("image",{class:"popup-delete-img",src:T}),e.createElementVNode("view",{class:"popup-delete-text"}," 确定要删除 "+e.toDisplayString(V.value)+" 吗? ",1),e.createElementVNode("view",{class:"popup-delete-button"},[e.createElementVNode("view",{class:"popup-delete-button-right",onClick:a[12]||(a[12]=e=>E.value=!1)}," 取消 "),e.createElementVNode("view",{class:"popup-delete-button-left",onClick:a[13]||(a[13]=e=>((e,t)=>{Ae.value[e].children[t]={directiveName:""},f.value=!1,J.value.index0=999,J.value.index1=999;let l=[],a=0;Ae.value.forEach(((e,t)=>{l=[],a=e.children.length,e.children.forEach(((e,t)=>{null!==e.directiveName&&""!==e.directiveName&&void 0!==e.directiveName||Ae.value.every((e=>{const l=e.children[t];return void 0===l||null===l.directiveName||""===l.directiveName||void 0===l.directiveName}))&&l.push(t)}))})),a>4&&l.length>1?Ae.value.forEach(((e,t)=>{e.children.splice(l[0],1)})):Ae.value.forEach(((e,t)=>{e.children.splice(l[0],1),e.children.push({directiveName:""})})),E.value=!1,_e()})(G.value[0],G.value[1]))}," 确定 ")])],4)],512),[[e.vShow,E.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-delete",onClick:a[19]||(a[19]=e=>Z.value=!1)},[e.createElementVNode("view",{class:"popup-delete-content",style:e.normalizeStyle({opacity:H.value?1:0}),onClick:a[18]||(a[18]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("image",{class:"popup-delete-img",src:T}),e.createElementVNode("view",{class:"popup-delete-text"}," 确定要删除 "+e.toDisplayString(V.value)+" 吗? ",1),e.createElementVNode("view",{class:"popup-delete-button"},[e.createElementVNode("view",{class:"popup-delete-button-right",onClick:a[16]||(a[16]=e=>Z.value=!1)}," 取消 "),e.createElementVNode("view",{class:"popup-delete-button-left",onClick:a[17]||(a[17]=e=>{c.value.splice(X.value,1),Z.value=!1})}," 确定 ")])],4)],512),[[e.vShow,Z.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-share",onClick:a[21]||(a[21]=e=>ee.value=!1)},[e.createElementVNode("view",{class:"popup-share-content",style:e.normalizeStyle({opacity:H.value?1:0}),onClick:a[20]||(a[20]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-share-title"},[e.createTextVNode(" 护理日程分享 "),e.createElementVNode("image",{class:"popup-share-img",src:D})]),e.createElementVNode("view",{class:"popup-share-upcontent"},[e.createElementVNode("view",{class:"popup-share-font"},"久泰护理日程分享测试")]),e.createElementVNode("view",{class:"popup-share-gray"}),e.createElementVNode("view",{class:"popup-share-downcontent"},[e.createElementVNode("view",{class:"popup-share-downcontent-left"},[e.createElementVNode("image",{class:"popup-downcontent-img",src:D}),e.createElementVNode("view",{class:"popup-downcontent-font"},"久泰护理")]),e.createElementVNode("view",{class:"popup-share-downcontent-button",onClick:le}," 分享 ")])],4)],512),[[e.vShow,ee.value]])],4)}}}),[["__scopeId","data-v-81c0d68b"]]),B="/static/index/ku.png",z="/static/index/ren.png",_="/static/index/tu.png",I=[{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706886",title:"协助喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604232524795905",title:"鼻饲喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604428667228162",title:"注射器/吸管喂药",tagName:"头部,大体重"}],levle:"2",title:"协助喂药",key:"1900114812020310017",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605892869394433",title:"一级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606105021485058",title:"二级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606339931869185",title:"三级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606614344208386",title:"一级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606869953482753",title:"二级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607023431454722",title:"三级压疮防护",tagName:"大体重"}],levle:"2",title:"压疮防护",key:"1900115034452639746",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706887",title:"床椅转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706888",title:"床椅转移",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605073730211842",title:"床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605223185846273",title:"床椅转移",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605365393723393",title:"协助床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605496071458818",title:"协助床椅转移",tagName:null}],levle:"2",title:"床椅转移",key:"1902248363784159233",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607507626102786",title:"轮椅防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607677415723010",title:"轮椅防护",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902607817589362689",title:"轮椅防护",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902608061588803585",title:"轮椅防护",tagName:"大体重"}],levle:"2",title:"轮椅防护",key:"1902280900178886657",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608564582322178",title:"约束位按摩",tagName:"手"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608974609092610",title:"约束位按摩",tagName:"足"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618507855237121",title:"约束位按摩",tagName:"全"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618751548493825",title:"防护网约束",tagName:null}],levle:"2",title:"约束防护",key:"1902280933364219906",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620309090701314",title:"协助行走",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620486044192769",title:"放松按摩",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902625161569079298",title:"心灵慰藉",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902625402468929537",title:"狂躁",tagName:null}],levle:"2",title:"按摩保健",key:"1902564031454744577",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902625872432304130",title:"准备衣物",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626005538541569",title:"协助更换",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626664711163905",title:"肢体障碍",tagName:"半侧"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626800510144513",title:"肢体障碍",tagName:"全身"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627064688381953",title:"准备衣物",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627280716009474",title:"协助更换",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627416598876161",title:"肢体障碍",tagName:"半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627522404388866",title:"肢体障碍",tagName:"全身"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902627711806574593",title:"协助更换",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628058591629313",title:"肢体障碍",tagName:"半侧,大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628650718302209",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628837725540354",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628966847188993",title:"肢体障碍",tagName:"大体重,半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902629129879785474",title:"协助更换",tagName:"大体重"}],levle:"2",title:"更换衣物",key:"1902564088417587201",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629344456183809",title:"坐起",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629492301205506",title:"躺下",tagName:null}],levle:"2",title:"调整坐卧",key:"1902564199830884354",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902630862769065985",title:"遗体净身",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902631162275926017",title:"遗体穿衣",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631422431825921",title:"遗体转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631602463936514",title:"床位消毒",tagName:null}],levle:"2",title:"殡仪服务",key:"1902564263743688705",parentId:"1900112597427793921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902631830441136129",title:"更换床上用品",tagName:"全部"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632063828987905",title:"隔尿褥子更换",tagName:null}],levle:"2",title:"更换床上用品",key:"1902564446648897538",parentId:"1900112597427793921"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632288270389250",title:"临终护理",tagName:null}],levle:"2",title:"临终服务",key:"1902564503783706625",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"40",id:"1902632678701371393",title:"制氧机吸氧",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902632799853842433",title:"制氧机维护",tagName:null}],levle:"2",title:"制氧机应用",key:"1902564586101116930",parentId:"1900112597427793921"}],levle:"1",title:"1 日常照料",key:"1900112597427793921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900376187661553665",title:"准备洁具",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900420873478553602",title:"棉球清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706881",title:"协助清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706885",title:"义齿清洁",tagName:"口腔"}],levle:"2",title:"口腔清洁",key:"1902597070889127938",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902636771540963329",title:"准备洁具",tagName:"头部"},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637623425077250",title:"协助洗头",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637985234128898",title:"卧式洗头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902638122949906433",title:"擦头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902638304739430401",title:"刮头",tagName:null}],levle:"2",title:"头部清洁",key:"1902597497344987137",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902641763073101826",title:"准备洁具",tagName:"面部"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642254465175553",title:"协助洁面",tagName:null}],levle:"2",title:"面部清洁",key:"1902597651405967361",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642508145070081",title:"准备洁具",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642672796667905",title:"协助清洁",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642822885642242",title:"卧床清洁",tagName:"躯干"}],levle:"2",title:"躯干清洁",key:"1902597718082818050",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643318811758594",title:"准备洁具",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643483320750082",title:"协助清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643630888947713",title:"卧床清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643837525528578",title:"肌张力高",tagName:"清洁"}],levle:"2",title:"四肢清洁",key:"1902597811565465601",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645148199391234",title:"会阴清洁",tagName:"男"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645295457210369",title:"会阴清洁",tagName:"女"}],levle:"2",title:"会阴清洁",key:"1902597873964126209",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645493185089537",title:"肛周清洁",tagName:null}],levle:"2",title:"肛周清洁",key:"1902597930020999170",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645693211447298",title:"洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647316134465538",title:"泡手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647529817477122",title:"准备洁具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647673212342274",title:"协助洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647905878773762",title:"强直屈曲洗手",tagName:null}],levle:"2",title:"手清洁",key:"1902597991698239489",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648101203316737",title:"泡脚",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648239091060737",title:"卧式泡脚",tagName:null}],levle:"2",title:"足清洁",key:"1902598178588037121",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648426383511553",title:"修睫毛",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648548777496577",title:"剃须",tagName:null}],levle:"2",title:"剃须",key:"1902598258573414401",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648962444922882",title:"角质增生",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649132536532994",title:"灰指甲",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649302149992449",title:"正常",tagName:"修甲"}],levle:"2",title:"修甲",key:"1902598354606198785",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902649683919736834",title:"理发",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"25",id:"1902649860344745985",title:"理发",tagName:"颅骨缺损"}],levle:"2",title:"理发",key:"1902598400382832642",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902650121280786434",title:"床上沐浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650408884211713",title:"深度清洁",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650763722330113",title:"浴间洗浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"30",id:"1902651229122301954",title:"床上沐浴",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651366317985794",title:"深度清洁",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651555363655682",title:"浴间洗浴",tagName:"大体重"}],levle:"2",title:"沐浴",key:"1902598454782955522",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651778777452545",title:"内套管清洁",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651924047171586",title:"更换气切纱布",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"10",id:"1902652055928672258",title:"更换气切纱布",tagName:null}],levle:"2",title:"气切消毒",key:"1902598509522817026",parentId:"1900112615777873921"}],levle:"1",title:"2 清洁照料",key:"1900112615777873921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898057679966209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898202668666881",title:"协助进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898339931459586",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898472584712194",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898590658564097",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898719952179201",title:"准备餐具",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898979948695554",title:"协助进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899086840532993",title:"协助进餐",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899214838108162",title:"鼻胃管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899325014085633",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899587028062210",title:"食物加工",tagName:null}],levle:"2",title:"加餐饮食",key:"1902596129720864770",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281139677839362",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902281522340970498",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281654100836354",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281870434648066",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902654960639381506",title:"鼻肠管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902655101874180097",title:"轮椅进餐",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902892199009030145",title:"轮椅进餐",tagName:null}],levle:"2",title:"正餐饮食",key:"1902601263850950657",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893231608926209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893551978254337",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893716466274306",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894369850757122",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894528533860354",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"辅餐饮食",key:"1902601382595891202",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894832176304129",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894954117304322",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895077522116609",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895233407619073",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895569912434689",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"果汁饮食",key:"1902601427168759809",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895878508351489",title:"准备水杯",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895984053817346",title:"协助饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896136835534850",title:"协助饮水",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896508421509122",title:"鼻胃管饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896636553302017",title:"鼻肠管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902896855802155010",title:"准备水杯",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897018344017921",title:"协助饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897464936730626",title:"协助饮水",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897675813752834",title:"鼻胃管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897803417063426",title:"鼻肠管饮水",tagName:null}],levle:"2",title:"饮水饮食",key:"1902601487625457665",parentId:"1902280495747317762"}],levle:"1",title:"3 饮食照料",key:"1902280495747317762"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902653177363927041",title:"巡视",tagName:null}],levle:"2",title:"巡视",key:"1902564741860790273",parentId:"1902560466095017986"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653325481578497",title:"防坠床",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653497066360833",title:"被褥调整",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653650917625857",title:"睡姿调整",tagName:null}],levle:"2",title:"体位调整",key:"1902564818838851585",parentId:"1902560466095017986"}],levle:"1",title:"4 睡眠照料",key:"1902560466095017986"},{children:[{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904277308510210",title:"更换尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904458779267073",title:"更换隔尿垫",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905631242424322",title:"使用尿盆",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905824973131777",title:"使用尿壶",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906220483416065",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906459051233281",title:"坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906610562076674",title:"留置尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906783325458434",title:"更换纸尿裤",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908406344945665",title:"热敷抚触排尿",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908523827400705",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909645401067522",title:"更换尿片",tagName:null}],levle:"2",title:"小便",key:"1902596314152800257",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909835331735554",title:"床上排便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910002671882242",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910156154048514",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910361008050178",title:"人工取便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910524623654913",title:"造瘘袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910700176248834",title:"坐便椅",tagName:null}],levle:"2",title:"大便",key:"1902596399423000577",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910899565072385",title:"口腔吸痰",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911047405899778",title:"气切吸痰",tagName:null}],levle:"2",title:"吸痰",key:"1902596461238652930",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911232974491650",title:"呕吐",tagName:null}],levle:"2",title:"呕吐",key:"1902596886771765250",parentId:"1902560510768549889"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902911378349068290",title:"腹腔引流护理",tagName:null}],levle:"2",title:"引流",key:"1902596940366581762",parentId:"1902560510768549889"}],levle:"1",title:"5 排泄照料",key:"1902560510768549889"}],U=s(e.defineComponent({__name:"joysticknew",props:{getblue:{type:Boolean,default:!1},movebottom:{type:Number,default:0},moveright:{type:Number,default:110},pao:{type:Boolean,default:!0},notext:{type:Boolean,default:!1}},emits:["movecard"],setup(t,{emit:l}){const a=l,i=e.ref(-1);let r=null,n=null,o=!1;const c=e.ref(-1),s=e.reactive({x:0,y:0}),d=e.ref(!1),m=e.ref(!1),u=e.ref(0),v=uni.upx2px(175),p=uni.upx2px(350);uni.upx2px(-50);const g=uni.upx2px(100),w=uni.getSystemInfoSync().windowHeight-g-p,h=t,f=e.ref(!1),N=e.ref(0);function y(e,t){if(!o){if(V(),i.value=e,a("movecard",e),(null==t?void 0:t.touches)&&t.touches.length){const e=t.touches[0];k(e.pageX,e.pageY)}m.value=!1,u.value++,c.value=e,setTimeout((()=>{c.value=-1}),300),setTimeout((()=>{m.value=!0}),16),r=setTimeout((()=>{i.value=-1,r=null}),300)}}function x(e,t){b(),o=!0,d.value=!0,c.value=e;const l=((null==t?void 0:t.touches)||[])[0];l&&k(l.pageX,l.pageY),i.value=e,a("movecard",e),n=setInterval((()=>{i.value=e,a("movecard",e)}),500)}function E(){V(),b(),o=!1,d.value=!1,i.value=-1,c.value=-1}function V(){r&&(clearTimeout(r),r=null)}function b(){n&&(clearInterval(n),n=null)}function k(e,t){let l=e,a=t-w-50+h.movebottom/2;const i=l-v,r=a-v;if(Math.sqrt(i*i+r*r)>v){const e=Math.atan2(r,i);l=v+v*Math.cos(e),a=v+v*Math.sin(e)}s.x=l,s.y=a}function T(e){var t;if(!o)return;const l=((null==(t=e.detail)?void 0:t.touches)||e.touches||[])[0];l&&k(l.pageX,l.pageY)}return e.ref(0),e.watch((()=>h.getblue),(e=>{})),e.onBeforeUnmount((()=>{})),(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"move-circle",style:e.normalizeStyle({bottom:`${t.movebottom}rpx`,right:`${t.moveright}rpx`}),onTouchmove:T,onTouchend:E,onTouchcancel:E},[e.withDirectives(e.createElementVNode("image",{src:"/static/index/camera/arrow1.png",class:"move-circle-all"},null,512),[[e.vShow,-1==c.value||4==c.value]]),e.withDirectives(e.createElementVNode("image",{src:"/static/index/camera/arrow3.png",class:"move-circle-all"},null,512),[[e.vShow,3==c.value]]),e.withDirectives(e.createElementVNode("image",{src:"/static/index/camera/arrow5.png",class:"move-circle-all"},null,512),[[e.vShow,2==c.value]]),e.withDirectives(e.createElementVNode("image",{src:"/static/index/camera/arrow4.png",class:"move-circle-all"},null,512),[[e.vShow,0==c.value]]),e.withDirectives(e.createElementVNode("image",{src:"/static/index/camera/arrow2.png",class:"move-circle-all"},null,512),[[e.vShow,1==c.value]]),f.value?(e.openBlock(),e.createElementBlock("view",{class:"pulse-circle",key:N.value})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"click-box-top",onClick:a[0]||(a[0]=e=>y(0,e)),onLongpress:a[1]||(a[1]=e=>x(0,e))},null,32),e.createElementVNode("view",{class:"click-box-left",onClick:a[2]||(a[2]=e=>y(3,e)),onLongpress:a[3]||(a[3]=e=>x(3,e))},null,32),e.createElementVNode("view",{class:"click-box-bottom",onClick:a[4]||(a[4]=e=>y(2,e)),onLongpress:a[5]||(a[5]=e=>x(2,e))},null,32),e.createElementVNode("view",{class:"click-box-right",onClick:a[6]||(a[6]=e=>y(1,e)),onLongpress:a[7]||(a[7]=e=>x(1,e))},null,32),e.createElementVNode("view",{class:"click-box-center",onClick:a[8]||(a[8]=e=>y(4,e)),onLongpress:a[9]||(a[9]=e=>x(4,e))},null,32)],36))}}),[["__scopeId","data-v-a880c760"]]),F=s(e.defineComponent({__name:"index",props:{isshow:{type:Boolean,required:!0},darkFans:{type:Boolean,required:!0},canmove:{type:Boolean,required:!0},liang:{type:Object},isold:{type:Boolean,required:!0}},emits:["darkchange","savename","saveruler","closename","changefangkuang","changeold"],setup(t,{expose:a,emit:i}){const o=t;e.watch((()=>o.isold),(()=>{o.isold&&(te.value.index0=9,te.value.index1=0,Oe(),h.value=1,f.value=1,e.nextTick((()=>{f.value=0,h.value=605})))})),e.watch((()=>o.canmove),(()=>{ye.value=!1})),e.watch((()=>o.isshow),((t,l)=>{t!==l&&(ye.value=!1,ve.value=!1,Ie.value?Ie.value--:(te.value.index0=9,te.value.index1=0,Oe(),h.value=1,f.value=1,e.nextTick((()=>{f.value=0,h.value=605}))))}));const c=e.ref([{name:"纸尿裤",url:"/static/index/niao.png",target:"#fff",id:-1},{name:"呕吐",url:"/static/index/tu.png",target:"#fff",id:-1},{name:"吸痰",url:"/static/index/ou.png",target:"#fff",id:-1},{name:"大便",url:"/static/index/baba.png",target:"#fff",id:-1},{name:"纸尿裤",url:"/static/index/niao.png",target:"#fff",id:-1},{name:"呕吐",url:"/static/index/tu.png",target:"#fff",id:-1},{name:"吸痰",url:"/static/index/ou.png",target:"#fff",id:-1},{name:"大便",url:"/static/index/baba.png",target:"#fff",id:-1}]),s=["狂躁","正常","大体重","口腔","小体重","头部","面部","躯干","四肢","修甲","颅骨缺损"],d=["周一","周二","周三","周四","周五","周六","周日"],m=Array.from({length:31},((e,t)=>(t+1).toString().padStart(2,"0"))),u=e.ref(!0),v=e.ref(!1),p=e.ref(0),g=e.ref(0),w=e.ref(0),h=e.ref(678),f=e.ref(0),N=e.ref();e.ref([]);const y=e.ref(!1),x=e.ref([]),E=e.ref(!1);e.ref(!1);const V=e.ref(!1);e.ref(!1),e.ref(!1),e.ref(""),e.ref(!1);const b=e.ref(!1);e.ref("");const k=e.ref(!1);e.ref(0),e.ref(0),e.ref(6),e.ref(11),e.ref(0),e.ref(3);const T=e.ref(!1);e.onMounted((()=>{}));const C=e.ref(0);const S=()=>{let e=JSON.parse(JSON.stringify($e.value[oe.value.index0].children[oe.value.index1]));be.value=[te.value.index0,te.value.index1];let t=$e.value[oe.value.index0].children[oe.value.index1].typeName;$e.value[oe.value.index0].children[oe.value.index1]={directiveName:"",typeName:t};let l=$e.value[be.value[0]].children[be.value[1]].typeName;$e.value[be.value[0]].children[be.value[1]]=e,$e.value[be.value[0]].children[be.value[1]].typeName=l;let a=$e.value[be.value[0]].children[be.value[1]].startTime,i=$e.value[be.value[0]].children[be.value[1]].endTime,r=$e.value[be.value[0]].positioning;const n=a.split(":")[1],o=i.split(":")[1];let c=Number(o)-Number(n),s=l,d=Number(s)+c;$e.value[be.value[0]].children[be.value[1]].startTime=r+":"+s.padStart(2,"0"),$e.value[be.value[0]].children[be.value[1]].endTime=r+":"+String(d%60).padStart(2,"0"),oe.value.index0=-1,oe.value.index1=-1,T.value=!1;let m={index0:te.value.index0,index1:te.value.index1};Ue(m)},F=()=>{P.value=!1,T.value?S():$e.value[te.value.index0].children[te.value.index1].directiveName&&(oe.value.index0=te.value.index0,oe.value.index1=te.value.index1,T.value=!0)};e.ref(!0),e.ref(!1);const $=e=>{switch(P.value=!1,e){case 0:te.value.index1&&(te.value.index1--,Oe());break;case 1:if(23==te.value.index0)return;te.value.index0++,Oe();break;case 2:if(11==te.value.index1)return;te.value.index1++,Oe();break;case 3:if(0==te.value.index0)return;te.value.index0--,Oe()}},M=e.ref(""),A=e.ref(-1),L=e.ref(""),O=e.ref(-1),P=e.ref(!1),j=()=>{$e.value[te.value.index0].children[te.value.index1].directiveName&&(P.value?(P.value=!1,ge(te.value.index0,te.value.index1)):P.value=!0)};function q(e,t){return 2*function(e,t){const l=55.9898*e+78.233*t;return Math.abs(43758.5453*Math.sin(l))%1}(e,t)}e.ref(!1),e.ref(0);const R=e.ref(0),W=e.ref(0);function Y(e){let t=e.detail.scrollTop;R.value=e.detail.scrollTop;let l=parseFloat(t.toFixed(2));W.value=l}const J=e.ref(0);function X(e){J.value=e.detail.scrollLeft}e.ref(!0);const Z=(e,t,l)=>"日常"===e.cycleType?oe.value.index0===t&&oe.value.index1===l?"title-time-border-yellow-active-transparent":ve.value?"title-time-border-yellow-active":"title-time-border-yellow":e.cycleType?oe.value.index0===t&&oe.value.index1===l?"title-time-border-pouple-active-transparent":ve.value?"title-time-border-pouple-active":"title-time-border-pouple":"title-time-border",H=e.ref([{url:"/static/index/firstTags/30.png",targetUrl:"/static/index/firstTags/21.png",name:"日常"},{url:"/static/index/firstTags/10.png",targetUrl:"/static/index/firstTags/99.png",name:"清洁"},{url:"/static/index/firstTags/40.png",targetUrl:"/static/index/firstTags/31.png",name:"饮食"},{url:"/static/index/firstTags/00.png",targetUrl:"/static/index/firstTags/01.png",name:"睡眠"},{url:"/static/index/firstTags/20.png",targetUrl:"/static/index/firstTags/11.png",name:"排泻"},{url:"/static/index/firstTags/50.png",targetUrl:"/static/index/firstTags/41.png",name:"影像"}]),G=e.ref(0),Q=e.ref(0),K=e.ref(0);e.ref(!1),e.ref([]);const ee=i;e.ref(!1);const te=e.ref({index0:9,index1:0});e.ref(0),e.ref([]);const le=e.ref(null);e.ref({});const ae=e.ref(0),ie=e.ref(0),re=e.ref(0),ne=e.ref(0),oe=e.ref({index0:999,index1:999,typeName:""});e.ref(-1),e.ref(!1);const ce=e.ref(!1),se=e.ref(-1),de=e.ref(!1),me=()=>{de.value=!0,ce.value=!1,setTimeout((()=>{ce.value=!0}),100)},ue=()=>{uni.share({provider:"weixin",scene:"WXSceneSession",type:0,href:"http://192.168.2.31:3101/daytoday",title:"护理日程分享",summary:"九泰护理日程测试",imageUrl:"https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/uni@2x.png",success:function(e){l("log","at component/rightItemssecondrelnew/index.vue:943","success:")},fail:function(e){l("log","at component/rightItemssecondrelnew/index.vue:946","fail:")}})},ve=e.ref(!1);e.ref([]);const pe=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-ae.value)>0||Math.abs(l-ie.value)>0)&&le.value&&(clearTimeout(le.value),le.value=null)},ge=(e,t)=>{let l=$e.value[e].children[t].typeName;$e.value[e].children[t]={directiveName:"",typeName:l}};e.ref(null),e.ref(!1),e.ref(!1);const we=e.ref(0),he=e.ref(0),fe=e.ref(!1);e.ref(""),e.ref("");const Ne=e.ref(null),ye=e.ref(!1),xe=e=>{we.value=Math.floor(e.touches[0].pageX),he.value=Math.floor(e.touches[0].pageY),Ne.value=setTimeout((()=>{ye.value=!0}),500)},Ee=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-we.value)>0||Math.abs(l-he.value)>0)&&Ne.value&&(clearTimeout(Ne.value),Ne.value=null)},Ve=()=>{Ne.value&&(clearTimeout(Ne.value),Ne.value=null)};e.ref({time:"",minute:"",array:[]}),e.ref({op:{name:"",index:[-1,-1,-1]},startTime:"",weekTimeNumber:-1,monthTimeNumber:-1,monthTime:"",weekTime:""}),e.ref(0);const be=e.ref([-1,-1]);e.ref(null);const ke=()=>{k.value=!1,b.value=!0,setTimeout((()=>{k.value=!0}),50)},Te=()=>{if(P.value)return P.value=!1,void ge(te.value.index0,te.value.index1);if(T.value)return void S();oe.value.index0=-1,oe.value.index1=-1,T.value=!1;let t=!1,a=x.value[G.value].children[Q.value].children[K.value];if("即时护理"===a.cycleType)return w.value=1,c.value.forEach(((e,l)=>{e.id===a.id&&(t=!0)})),void e.nextTick((()=>{t?(clearTimeout(Ce.value),y.value=!0,Ce.value=setTimeout((()=>{y.value=!1}),1e3)):(w.value=0,c.value.length&&"#00a8ff"===c.value[0].target&&(c.value[0].target="#fff",clearTimeout(De.value)),c.value.unshift({name:a.title,url:"/static/index/ou.png",target:"#00a8ff",id:a.id}),l("log","at component/rightItemssecondrelnew/index.vue:1188","!!!!",c.value),De.value=setTimeout((()=>{c.value[0].target="#fff"}),1500))}));if("周期护理"===a.cycleType&&v.value&&-1==A.value&&-1==O.value)return;if("周期护理"===a.cycleType&&!v.value)return void(v.value=!0);let i="";"日常护理"===a.cycleType?i="日常":(i=-1!==A.value?M.value:L.value+"号",v.value=!1,A.value=-1,O.value=-1,M.value="",L.value="");const r=Number(te.value.index0),n=Number($e.value[te.value.index0].children[te.value.index1].typeName),o=n+10,s=r+Math.floor(o/60),d=`${String(r)}:${String(n).padStart(2,"0")}`,m=`${String(s)}:${String(o%60).padStart(2,"0")}`;$e.value[te.value.index0].children[te.value.index1].startTime=d,$e.value[te.value.index0].children[te.value.index1].endTime=m;let u={directiveId:a.id,directiveName:a.title,startTime:d,endTime:m,positioning:te.value.index0.toString(),positioningLong:te.value.index1.toString(),tagName:a.tagName,cycleType:i,nuId:"1",customerId:"1",id:"",typeName:$e.value[te.value.index0].children[te.value.index1].typeName};$e.value[te.value.index0].children[te.value.index1]=u;let p={index0:te.value.index0,index1:te.value.index1};Ue(p),Se()},De=e.ref(null),Ce=e.ref(null),Se=()=>{$e.value.forEach(((e,t)=>{e.children.forEach(((e,l)=>{let a="";if(e.directiveName||e.id)e.positioning=t,e.positioningLong=l;else{let i={};e.typeName&&(a=e.typeName),i=JSON.parse(JSON.stringify(Ae.value)),a&&(i.typeName=a),i.positioning=t,i.positioningLong=l}}))}))},Be=()=>{uni.setStorage({key:"myArray",data:$e.value,success:function(){uni.navigateTo({url:"/pages/timeMatrix/indexnew"})}})},ze=e.ref({index0:-1,index1:-1}),_e=e.ref({index0:-1,index1:-1,current:-1,bordershow:!0}),Ie=e.ref(0),Ue=e=>{te.value.index0=e.index0,te.value.index1=e.index1,Oe(),_e.value.index0=e.index0,_e.value.index1=e.index1,ze.value.index0=_e.value.index0,ze.value.index1=_e.value.index1,_e.value.bordershow=!1,setTimeout((()=>{_e.value.index0=-1,_e.value.index1=-1,_e.value.current=-1}),400),setTimeout((()=>{_e.value.bordershow=!0,ze.value.index0=-1,ze.value.index1=-1}),1e3)},Fe=["00","05","10","15","20","25","30","35","40","45","50","55"],$e=e.ref(Array.from({length:24},((e,t)=>({positioning:t.toString(),children:Fe.map((e=>({typeName:e,directiveName:""})))}))));function Me(e){Ie.value=3,Ue(e)}r((()=>{x.value=I,N.value=x.value[0].children,uni.$on("where",Me)})),n((()=>{uni.$off("where",Me)})),a({rulerMoveEnd:e=>{if(999!==o.liang.index0&&e.cycleType){be.value=[o.liang.index0,o.liang.index1];let t=$e.value[oe.value.index0].children[oe.value.index1].typeName;$e.value[oe.value.index0].children[oe.value.index1]={directiveName:"",typeName:t};let l=$e.value[be.value[0]].children[be.value[1]].typeName;$e.value[be.value[0]].children[be.value[1]]=e,$e.value[be.value[0]].children[be.value[1]].typeName=l;let a=$e.value[be.value[0]].children[be.value[1]].startTime,i=$e.value[be.value[0]].children[be.value[1]].endTime,r=$e.value[be.value[0]].positioning;const n=a.split(":")[1],c=i.split(":")[1];let s=Number(c)-Number(n),d=l,m=Number(d)+s;$e.value[be.value[0]].children[be.value[1]].startTime=r+":"+d.padStart(2,"0"),$e.value[be.value[0]].children[be.value[1]].endTime=r+":"+String(m%60).padStart(2,"0")}}}),e.ref({index0:999,index1:999});const Ae=e.ref({directiveId:"",directiveName:"",startTime:"",endTime:"",positioning:"",positioningLong:"",tagName:"",cycleType:"",nuId:"1",customerId:"1",id:"",typeName:""});function Le(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}function Oe(){if(te.value.index0>=0&&te.value.index0<=24&&te.value.index1>=0&&te.value.index1<=11){const e=201*(te.value.index0+.5),t=167*(te.value.index1-.5);h.value=e-702.5,f.value=t-240;const l=4824,a=1837;h.value=Math.max(0,Math.min(h.value,l-1405))/2,f.value=Math.max(0,Math.min(f.value,a-480))/2}}return(l,a)=>{var i,r,n,o;return e.openBlock(),e.createElementBlock("view",{class:"right-container",style:e.normalizeStyle(t.isshow?{opacity:"1"}:{opacity:"0"}),onClick:a[10]||(a[10]=e=>{ye.value=!1,ve.value=!1})},[e.createVNode(U,{onMovecard:$}),e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," ID:12345678 ",2),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," 名称:未命名01 ",2),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"right-icons-font-dark":"right-icons-font")},"王金福",2),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/face.png":"/static/index/undericons/facelight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/hand.png":"/static/index/undericons/handlight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/out.png":"/static/index/undericons/outlight.png"},null,8,["src"])]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button-wrong",onClick:a[0]||(a[0]=e=>{ee("changeold",0)})},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 拖动模式 ")]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button"},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 手柄模式 ")])]),e.createElementVNode("view",{class:"doctorsay-container-view"},[e.createElementVNode("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"doctorsay-container-title"},[e.createElementVNode("view",{class:"doctorsay-container-left"},[e.createElementVNode("view",{class:"doctorsay-container-left-gun"}),e.createElementVNode("view",{class:"doctorsay-container-left-font"},"护理流程"),e.createElementVNode("view",{class:"doctorsay-container-share",onClick:me}," 分享 "),e.createElementVNode("view",{class:"doctorsay-container-share"}," 立即生效 ")]),e.createElementVNode("view",{class:"doctorsay-container-right"},[e.createElementVNode("view",{class:"doctorsay-container-right-kuai-cheng"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"日常"),e.createElementVNode("view",{class:"doctorsay-container-right-kuai-zi"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"周期"),e.createElementVNode("view",{class:"doctorsay-container-juzhen",onClick:Be}," 预览 ")])]),e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"boom-title"},[e.createElementVNode("view",{class:"boom-title-left"}," 分 "),e.createElementVNode("view",{class:"boom-title-right"}," 时 ")]),e.createElementVNode("view",{class:"boom-father"},[e.createElementVNode("view",{class:"boom"},[e.createElementVNode("view",{style:e.normalizeStyle({marginTop:`-${2*W.value}rpx`})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList($e.value[0].children,((l,a)=>(e.openBlock(),e.createElementBlock("view",{key:a},[e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(se.value===a||t.liang.index1===a&&!t.canmove||oe.value.index1===a&&ve.value?"boom-son-target":"boom-son")},e.toDisplayString(l.typeName),3),[[e.vShow,l.typeName]])])))),128))],4)])]),e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("scroll-view",{style:{height:"920rpx",width:"100%"},"scroll-left":h.value,"scroll-x":"",onScroll:X,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex","box-shadow":"10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1)",width:"4824rpx",background:"linear-gradient(to right, #c4dbf4,#c9c2ef, #c6dcf3)"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList($e.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time"},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),1)])))),128))]),e.createElementVNode("view",{style:{display:"flex",height:"calc(100% - 80rpx)"}},[e.createElementVNode("scroll-view",{style:{height:"100%",width:"4824rpx"},"scroll-top":f.value,"scroll-y":t.canmove&&!ve.value,onScroll:Y,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList($e.value,((l,i)=>(e.openBlock(),e.createElementBlock("view",{key:i},[e.createElementVNode("view",{class:"super-card-time-und"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.children,((l,r)=>(e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:r},[e.createElementVNode("view",{class:e.normalizeClass(_e.value.index0===i&&_e.value.index1===r?_e.value.index1?"title-time-border-big":"title-time-border-big-top":"super-card-time-card"),style:e.normalizeStyle([_e.value.bordershow||ze.value.index0!==i||ze.value.index1!==r?{borderBottom:"1rpx solid transparent"}:{zIndex:999},{position:"relative"}]),id:`a${i}_${r}`,onClick:t=>((t,l,a,i)=>{t.directiveName&&(se.value=a,uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.left>100&&t.left<1067&&t.top<570&&t.top>140&&t.dataset.index0==l&&t.dataset.index1==a&&(t.left>100&&t.left<500?re.value=Math.floor(t.left)+520:re.value=Math.floor(t.left),t.top>140&&t.top<300?ne.value=Math.floor(t.top)+250:ne.value=Math.floor(t.top),await e.nextTick(),E.value=!0,V.value=!1,setTimeout((()=>{V.value=!0}),100))}))})).exec())})(l,i,r),onTouchstart:e=>{},onTouchmove:pe,onTouchend:a[1]||(a[1]=e=>(fe.value=!1,void(le.value&&(clearTimeout(le.value),le.value=null)))),"data-index0":i,"data-index1":r},[oe.value.index0===i&&oe.value.index1===r&&0==r?(e.openBlock(),e.createElementBlock("view",{key:0,class:"time-button-orange-spe"},[e.createTextVNode(" 请选择服务指令迁移的目标单元格 "),e.createElementVNode("view",{class:"under-button-three"})])):e.createCommentVNode("",!0),oe.value.index0===i&&oe.value.index1===r&&r?(e.openBlock(),e.createElementBlock("view",{key:1,class:"time-button-orange"},[e.createTextVNode(" 请选择服务指令迁移的目标单元格 "),e.createElementVNode("view",{class:"under-button-three"})])):e.createCommentVNode("",!0),te.value.index0==i&&te.value.index1==r&&0==r&&P.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"time-button-black-spe"},[e.createTextVNode(" 是否确认删除该服务指令 "),e.createElementVNode("view",{class:"under-button-three"})])):e.createCommentVNode("",!0),te.value.index0==i&&te.value.index1==r&&r&&P.value?(e.openBlock(),e.createElementBlock("view",{key:3,class:"time-button-black"},[e.createTextVNode(" 是否确认删除该服务指令 "),e.createElementVNode("view",{class:"under-button-three"})])):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{class:"title-time-blue"},[e.createElementVNode("image",{class:"title-time-blue-img",src:T.value?"/static/index/movemode/targetcheng.png":"/static/index/movemode/target.png"},null,8,["src"])],512),[[e.vShow,te.value.index0==i&&te.value.index1==r]]),e.createElementVNode("view",{class:e.normalizeClass(Z(l,i,r)),style:e.normalizeStyle([{"font-size":"30rpx",overflow:"hidden"},{animationDelay:`-${q(i,r).toFixed(2)}s`}])},[l.startTime?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"margin-top":"5rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"25rpx","margin-top":"20rpx"}},e.toDisplayString(l.startTime+"-"+l.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==l.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(l.cycleType),1)],512)),[[e.vShow,t.liang.index0!==i||t.liang.index1!==r||t.canmove]]):e.createCommentVNode("",!0),l.startTime?(e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font-rel"},e.toDisplayString(Le(l.directiveName)[0]),1)):e.createCommentVNode("",!0),l.startTime?(e.openBlock(),e.createElementBlock("view",{key:2,class:"title-time-items"},[e.createElementVNode("image",{class:"right-box-items-button",src:B}),e.createElementVNode("image",{class:"right-box-items-button",src:z})])):e.createCommentVNode("",!0)],6)],46,["id","onClick","onTouchstart","data-index0","data-index1"])])))),128))])])))),128))])],40,["scroll-top","scroll-y"])])],40,["scroll-left"]),e.createElementVNode("view",{class:"scroll-bottom-bgc"})]),e.createElementVNode("view",{class:"right-cards"},[e.createElementVNode("scroll-view",{"scroll-x":"",class:"scroll-box","scroll-left":w.value},[e.createElementVNode("view",{class:"right-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"right-box-item",onTouchstart:xe,onTouchmove:Ee,onTouchend:Ve,style:e.normalizeStyle(t.target?{background:t.target,transition:"all 1.5s ease-in-out"}:{transition:"all 1.5s ease-in-out"})},[e.createElementVNode("image",{class:"title-time-button",src:"/static/index/redbian.png"}),e.createElementVNode("view",{class:"title-time-font"}," 即时 "),e.createElementVNode("view",{style:e.normalizeStyle({animationDelay:`-${.1*l}s`}),class:e.normalizeClass(ye.value?"super-end-items-img-father-active":"super-end-items-img-father")},[e.createElementVNode("image",{class:"right-box-img",src:t.url},null,8,["src"])],6),e.createElementVNode("view",{class:"right-box-font"},e.toDisplayString(t.name),1),e.createElementVNode("view",{class:"right-box-items"},[e.createElementVNode("image",{class:"right-box-items-button",src:B}),e.createElementVNode("image",{class:"right-box-items-button",src:z})]),e.withDirectives(e.createElementVNode("view",{class:"super-end-items-father-close-father",onClick:e.withModifiers((e=>c.value.splice(l,1)),["stop"])}," - ",8,["onClick"]),[[e.vShow,ye.value]])],36)])))),128))])],8,["scroll-left"]),e.createElementVNode("view",{class:"middle-box"},[e.createElementVNode("view",{class:"middle-left-box"},[e.createElementVNode("view",{class:"first-contant"},[e.withDirectives(e.createElementVNode("view",{class:"time-father"},[e.withDirectives(e.createElementVNode("view",{class:"time-button"},[e.createElementVNode("view",{class:"time-button-month"},"周"),e.createElementVNode("view",{class:"time-button-week",onClick:a[2]||(a[2]=e=>{u.value=!1,A.value=-1,M.value=""})},"月")],512),[[e.vShow,u.value]]),e.withDirectives(e.createElementVNode("view",{class:"time-button"},[e.createElementVNode("view",{class:"time-button-month-target",onClick:a[3]||(a[3]=e=>{u.value=!0,O.value=-1,L.value=""})},"周"),e.createElementVNode("view",{class:"time-button-week-target"},"月")],512),[[e.vShow,!u.value]]),e.createElementVNode("scroll-view",{"scroll-y":"",style:{width:"100%",height:"600rpx"},"show-scrollbar":!1,"scroll-top":p.value},[u.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},e.renderList(d,((t,l)=>e.createElementVNode("view",{key:l,onClick:e=>((e,t)=>{const l=Date.now();l-C.value<300?(M.value=e,A.value=t,Te(),C.value=0):(M.value=e,A.value=t,C.value=l)})(t,l)},[e.createElementVNode("view",{class:e.normalizeClass(A.value===l?"items-card-target":"items-card")},e.toDisplayString(t),3)],8,["onClick"]))),64)):e.createCommentVNode("",!0),u.value?e.createCommentVNode("",!0):(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(e.unref(m),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>((e,t)=>{const l=Date.now();l-C.value<300?(L.value=e,O.value=t,Te(),C.value=0):(L.value=e,O.value=t,C.value=l)})(t,l)},[e.createElementVNode("view",{class:e.normalizeClass(O.value===l?"items-card-target":"items-card")},e.toDisplayString(t),3)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"40rpx"}})],8,["scroll-top"])],512),[[e.vShow,v.value]]),e.withDirectives(e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%",width:"100%"},"show-scrollbar":!1,"scroll-top":p.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(x.value[G.value].children[Q.value].children,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>function(e){const t=Date.now();t-C.value<300?(K.value=e,Te(),C.value=0):(K.value=e,C.value=t)}(l)},[e.createElementVNode("view",{class:"right-box-item",style:e.normalizeStyle(K.value==l?{border:"2rpx solid rgb(54, 159, 239)",backgroundColor:"#fff"}:{border:"2rpx solid rgb(229, 233, 249)"})},[e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:"/static/index/ri.png"},null,512),[[e.vShow,"日常护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:"/static/index/zhou.png"},null,512),[[e.vShow,"周期护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:"/static/index/ji.png"},null,512),[[e.vShow,"即时护理"===t.cycleType]]),e.createElementVNode("image",{class:"right-box-img",src:_}),e.createElementVNode("view",{class:"right-box-font",style:e.normalizeStyle(K.value==l?{color:"rgb(54, 159, 239)"}:{})},e.toDisplayString(t.title),5),e.createElementVNode("view",{class:"right-box-items"},[e.createElementVNode("image",{class:"right-box-items-button",src:B}),e.createElementVNode("image",{class:"right-box-items-button",src:z})])],4)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"20rpx"}})],8,["scroll-top"]),[[e.vShow,!v.value]])]),e.createElementVNode("view",{class:"second-contant"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%",width:"100%"},"show-scrollbar":!1,"scroll-top":g.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(N.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:t=>(t=>{v.value=!1,A.value=-1,O.value=-1,M.value="",L.value="",Q.value=t,K.value=0,p.value=1,e.nextTick((()=>{p.value=0}))})(l)},[e.createElementVNode("view",{class:e.normalizeClass(Q.value==l?"downList-box-target":"downList-box")},[e.createElementVNode("image",{class:"downList-box-img",src:_}),e.createElementVNode("view",{class:"downList-box-text"},e.toDisplayString(t.title),1)],2)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"20rpx"}})],8,["scroll-top"])])]),e.createElementVNode("view",{class:"middle-right-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(H.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:t=>(t=>{5!==t&&(v.value=!1,A.value=-1,O.value=-1,M.value="",L.value="",g.value=1,p.value=1,e.nextTick((()=>{g.value=0,p.value=0})),G.value=t,N.value=x.value[t].children,Q.value=0,K.value=0)})(l)},[e.createElementVNode("view",{class:e.normalizeClass(l===G.value?"doctorsay-container-card-target":"doctorsay-container-card")},[e.createElementVNode("image",{class:"doctorsay-container-card-img",src:l===G.value?t.targetUrl:t.url},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(l===G.value?"doctorsay-container-card-font-dark":"doctorsay-container-card-font")},e.toDisplayString(t.name),3)],2)],8,["onClick"])))),128))])]),e.createElementVNode("view",{class:"under-button"},[e.createElementVNode("view",{class:"under-button-black",style:e.normalizeStyle(y.value?{opacity:1}:{opacity:0})}," 不能重复添加相同的即时服务指令 ",4),e.createElementVNode("view",{class:"white-circle",onClick:F},[e.createElementVNode("image",{class:"white-circle-img",src:"/static/index/keyimg/movebutton.png"})]),e.createElementVNode("view",{class:"white-circle",onClick:j},[e.createElementVNode("image",{class:"white-circle-img",src:"/static/index/keyimg/deletebutton.png"})]),e.createElementVNode("view",{class:"white-circle",onClick:ke},[e.createElementVNode("image",{class:"white-circle-img",src:"/static/index/keyimg/notebutton.png"})]),e.createElementVNode("view",{class:"white-circle-click-father",onClick:Te},[e.createElementVNode("image",{class:"white-circle-click",src:"/static/index/keyimg/okbutton.png"}),e.createElementVNode("view",{class:"white-circle-font"}," 确定 ")])])])])])]),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay",onClick:a[5]||(a[5]=e=>{E.value=!1,oe.value.index0=999,se.value=-1})},[e.createElementVNode("view",{class:"popup-overlay-content",style:e.normalizeStyle({top:2*ne.value-350+"rpx",left:2*re.value-780+"rpx",opacity:V.value?1:0,backgroundColor:"日常"===(null==(r=null==(i=$e.value[oe.value.index0])?void 0:i.children[oe.value.index1])?void 0:r.type)?"#fffcf6":"rgb(246, 244, 254)"}),onClick:a[4]||(a[4]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"},e.toDisplayString(null==(o=null==(n=$e.value[oe.value.index0])?void 0:n.children[oe.value.index1])?void 0:o.value),1)]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],4)],512),[[e.vShow,E.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-say",onClick:a[7]||(a[7]=e=>b.value=!1)},[e.createElementVNode("view",{class:"popup-say-content",style:e.normalizeStyle([{"padding-top":"30rpx"},{opacity:k.value?1:0}]),onClick:a[6]||(a[6]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-say-content-flex"},[e.createElementVNode("view",{class:"popup-say-content-gun"}),e.createElementVNode("view",{class:"popup-say-content-font"},"情绪标签")]),e.createElementVNode("view",{style:{display:"flex"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.slice(0,2),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"tags-father"},[e.createElementVNode("image",{class:"tags-img",src:`/static/index/tagNames/${l}.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font"},e.toDisplayString(t),1)])])))),128))]),e.createElementVNode("view",{class:"popup-say-content-flex",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"popup-say-content-gun"}),e.createElementVNode("view",{class:"popup-say-content-font"},"体型标签")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.slice(2,11),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"tags-father"},[e.createElementVNode("image",{class:"tags-img",src:`/static/index/tagNames/${l+2}.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font"},e.toDisplayString(t),1)])])))),128))]),e.createElementVNode("view",{class:"popup-say-three"})],4)],512),[[e.vShow,b.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-share",onClick:a[9]||(a[9]=e=>de.value=!1)},[e.createElementVNode("view",{class:"popup-share-content",style:e.normalizeStyle({opacity:ce.value?1:0}),onClick:a[8]||(a[8]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-share-title"},[e.createTextVNode(" 护理日程分享 "),e.createElementVNode("image",{class:"popup-share-img",src:D})]),e.createElementVNode("view",{class:"popup-share-upcontent"},[e.createElementVNode("view",{class:"popup-share-font"},"久泰护理日程分享测试")]),e.createElementVNode("view",{class:"popup-share-gray"}),e.createElementVNode("view",{class:"popup-share-downcontent"},[e.createElementVNode("view",{class:"popup-share-downcontent-left"},[e.createElementVNode("image",{class:"popup-downcontent-img",src:D}),e.createElementVNode("view",{class:"popup-downcontent-font"},"久泰护理")]),e.createElementVNode("view",{class:"popup-share-downcontent-button",onClick:ue}," 分享 ")])],4)],512),[[e.vShow,de.value]])],4)}}}),[["__scopeId","data-v-bd7a2b2a"]]),$=s(e.defineComponent({__name:"index",setup(t){e.onMounted((()=>{c.value=2,uni.getSystemInfoSync(),uni.pageScrollTo}));const l=e.ref([{url:"/static/index/lefticon/index.png",targetUrl:"/static/index/lefticontarget/blueindex.png"},{url:"/static/index/lefticon/nurse.png",targetUrl:"/static/index/lefticontarget/bluenurse.png"},{url:"/static/index/lefticon/doctor.png",targetUrl:"/static/index/lefticontarget/bluedoctor.png"},{url:"/static/index/lefticon/give.png",targetUrl:"/static/index/lefticontarget/givedark.png"},{url:"/static/index/lefticon/wifi.png",targetUrl:"/static/index/lefticontarget/bluewifi.png"},{url:"/static/index/lefticon/back.png",targetUrl:"/static/index/lefticontarget/blueback.png"}]),a=e.ref(0),i=e.ref(!1),n=e.ref(!1),o=e.ref(!1),c=e.ref(-1);e.ref([]),e.ref(0),e.ref(0),e.ref(0),e.ref(0),e.ref(0);const s=e=>{o.value=e},d=e=>{c.value=e},m=e=>{if(3===e)return i.value=!1,n.value=!1,void uni.navigateTo({url:`/pages/somethingmove/index?darkFans=${o.value}`,animationType:"slide-in-right",animationDuration:400});5!==e?(a.value=e,i.value=!1,n.value=!1,setTimeout((()=>{switch(e){case 0:i.value=!0;break;case 1:n.value=!0}}),50)):uni.navigateBack()},u=e.ref(0),v=e.ref(0),p=e.ref(""),g=e.ref(!0),w=e.ref({index0:999,index1:999}),h=e.ref(!0),f=uni.createAnimation({duration:0,timingFunction:"linear",delay:0}),y=e.ref({}),x=function(e,t){let l=0;return function(...a){const i=Date.now();i-l>=t&&(l=i,e.apply(this,a))}}((e=>{var t;const l=e.touches[0];u.value=2*(Math.floor(l.clientX)-100),v.value=2*(Math.floor(l.clientY)-55),f.translate3d(u.value/2,v.value/2,0).step({duration:0}),y.value=f.export();const a=Math.floor(l.clientX)-50,i=Math.floor(l.clientY)-25,r=E.value.find((e=>a>=Math.floor(e.left)&&a<=Math.floor(e.right)&&i>=Math.floor(e.top)&&i<=Math.floor(e.bottom)));if(r){const{index0:e,index1:l}=r.dataset;w.value.index0=e,w.value.index1=l,u.value<200&&h.value&&!c.value&&(null==(t=B.value)||t.nextItems(),h.value=!1,setTimeout((()=>{h.value=!0}),1e3))}else w.value.index0=999,w.value.index1=999}),40),E=e.ref([]),V=(e,t)=>{p.value=e,g.value=!1,E.value=t},b=e=>{E.value=e},T=e.ref({directiveName:"",cycleType:"",positioningLong:"0",typeName:"",startTime:"",id:"",endTime:"",tagName:null}),D=(e,t)=>{T.value=e,g.value=!1,E.value=t},C=()=>{p.value="",g.value=!0},B=e.ref(null),z=e.ref(null),_=()=>{var e,t,l;u.value=9999,v.value=9999,f.translate3d(u.value/2,v.value/2,0).step({duration:0}),y.value=f.export(),g.value=!0,w.value={index0:999,index1:999},p.value?c.value||null==(e=B.value)||e.rulerEnd(p.value):T.value.typeName&&(0===c.value?null==(t=B.value)||t.rulerMoveEnd(T.value):null==(l=z.value)||l.rulerMoveEnd(T.value)),p.value="",T.value={directiveName:"",cycleType:"",positioningLong:"0",typeName:"",startTime:"",id:"",endTime:"",tagName:null}};function I(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}return r((()=>{setTimeout((()=>{m(a.value)}),50)})),(t,r)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(o.value?"darkbackgroundContainer":"backgroundContainer"),onTouchmove:r[0]||(r[0]=(...t)=>e.unref(x)&&e.unref(x)(...t)),onTouchend:_},[e.withDirectives(e.createElementVNode("view",{class:"move-font",animation:y.value},e.toDisplayString(p.value),9,["animation"]),[[e.vShow,p.value&&u.value]]),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass("日常"==T.value.cycleType?"title-time-border-yellow":"title-time-border-pouple"),animation:y.value,style:{"font-size":"30rpx",overflow:"hidden"}},[e.withDirectives(e.createElementVNode("view",{class:"title-time",style:{"margin-top":"5rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(T.value.startTime+"-"+T.value.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==T.value.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(T.value.cycleType),1)],512),[[e.vShow,T.value.startTime]]),e.createElementVNode("view",{style:{"margin-top":"20rpx","font-weight":"700"}},e.toDisplayString(I(T.value.directiveName)[0]),1),e.withDirectives(e.createElementVNode("view",{class:"down-icons",style:e.normalizeStyle("日常"!=T.value.cycleType?{backgroundColor:"rgb(212,203,255)"}:{})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(I(T.value.directiveName).slice(1),((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:l},[e.createElementVNode("view",{class:"icon",style:e.normalizeStyle("日常"!=T.value.cycleType?{backgroundColor:"rgb(123,97,255)"}:{})},e.toDisplayString(I(T.value.directiveName)[1]),5)])))),128))],4),[[e.vShow,I(T.value.directiveName)[1]]])],10,["animation"]),[[e.vShow,T.value.cycleType]]),e.createElementVNode("view",{class:"left-container"},[e.createElementVNode("view",{class:"left-head"},[e.createElementVNode("image",{class:"left-head-img",src:N}),e.createElementVNode("text",{class:e.normalizeClass(o.value?"left-head-font-dark":"left-head-font")}," 王金凤 ",2)]),e.createElementVNode("view",{class:"left-img-container"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"blue-circle-pos"},[e.withDirectives(e.createElementVNode("view",{class:"blue-circle"},[e.createElementVNode("image",{class:"blue-circle-size",src:"/static/index/ray.png"},null,8,["src"])],512),[[e.vShow,l===a.value]]),e.createElementVNode("image",{class:"left-img",src:l===a.value?t.targetUrl:t.url,onClick:e=>m(l)},null,8,["src","onClick"])])))),128))])]),e.withDirectives(e.createVNode(k,{isshow:i.value,darkFans:o.value,onDarkchange:s},null,8,["isshow","darkFans"]),[[e.vShow,!a.value]]),e.withDirectives(e.createVNode(S,{ref_key:"ruler",ref:B,liang:w.value,isshow:n.value,canmove:g.value,darkFans:o.value,onDarkchange:s,onSavename:V,onSaveruler:D,onChangefangkuang:b,onCleanname:C,onChangeold:d},null,8,["liang","isshow","canmove","darkFans"]),[[e.vShow,1==a.value&&!c.value]]),e.withDirectives(e.createVNode(F,{ref_key:"rulernew",ref:z,isold:2===c.value,liang:w.value,isshow:n.value,canmove:g.value,darkFans:o.value,onDarkchange:s,onSavename:V,onSaveruler:D,onChangefangkuang:b,onCleanname:C,onChangeold:d},null,8,["isold","liang","isshow","canmove","darkFans"]),[[e.vShow,1==a.value&&2===c.value]])],34))}}),[["__scopeId","data-v-ee189f8b"]]),M="/static/index/newindex/wendu/0.png",A="/static/index/newindex/wendu/1.png",L="https://www.focusnu.com/devopsapi",O=(e,t)=>(e=>{let t=e.url,a=e.method||"get",i=e.data||{},r={"X-Access-Token":uni.getStorageSync("token")||"","Content-Type":"application/json;charset=UTF-8",Authorization:"Basic c2FiZXI6c2FiZXJfc2VjcmV0",...e.header};return new Promise(((e,n)=>{uni.request({url:/^https?:\/\//.test(t)?t:L+t,method:a,header:r,data:i,timeout:5e3,success(a){const r=a;if(200==r.statusCode)e(r.data);else switch(l("log","at request/guanli.js:34","http",/^https?:\/\//.test(t)?t:L+t),l("log","at request/guanli.js:35","res",a),l("log","at request/guanli.js:36","data",i),r.statusCode){case 401:uni.showModal({title:"提示",content:"登录过期",showCancel:!1,success(){uni.clearStorageSync(),setTimeout((()=>{uni.navigateTo({url:"/pages/login/login"})}),1e3)}});break;case 404:uni.showToast({title:"请求地址不存在...",duration:2e3});break;default:uni.showToast({title:"请重试...",duration:2e3})}},fail(e){l("log","at request/guanli.js:69",e),-1!==e.errMsg.indexOf("request:fail")?uni.showToast({title:"网络异常",icon:"error",duration:2e3}):uni.showToast({title:"未知异常",duration:2e3}),n(e)},complete(){uni.hideLoading(),uni.hideToast()}})})).catch((()=>{}))})({url:`/iot/tplink/cameraInfo/motionCtrl?deviceIndex=5&direction=${e}&startOrNot=${t}&speed=1`,method:"get"}),P=100,j=400,q=s(e.defineComponent({__name:"index",setup(t){const l=e.ref([]);o((()=>{l.value=h})),e.ref(null);const a=e.ref(-1),i=e.ref(-1),n=e.ref(!1),c=e.ref(!1),s=e.ref(null),d=e.ref(null),m=e.ref(0),u=e.ref(3),v=[{name:"左右翻转",url:"/static/index/camera/800.png",target:"/static/index/camera/801.png"},{name:"上下翻转",url:"/static/index/camera/810.png",target:"/static/index/camera/811.png"},{name:"中心翻转",url:"/static/index/camera/820.png",target:"/static/index/camera/821.png"},{name:"不翻转",url:"/static/index/camera/830.png",target:"/static/index/camera/831.png"}],p=["原图","全景拉伸","四分屏","180°全景","360°全景"],g=e.ref([]),w=["截图","录制","对讲","静音","预警","更多","图片","视频","清晰度","翻转"],h=["截图","录制","对讲","静音","预警","更多"],f=e.ref(0),N=e.ref(5),y=e.ref(0),x=()=>{s.value.openDrawer()};function E(e,t,l){return Math.max(t,Math.min(l,e))}function V(e){const t=e*P,l=m.value,a=l+j;if(ta){const e=t+P-j;m.value=E(e,0,ie.value.length*P-j)}}function b(e,t,l,a="png",i=0,r=!1){return Array.from({length:l},((l,n)=>{const o=r?String(n+i).padStart(2,"0"):n+i;return`${e}/${t}${o}.${a}`}))}const k=b("/static/index/newindex/curve","curve_",9,"png",1,!1),T=e.ref([...k,...[...k].reverse()]),D=b("/static/index/newindex/curve","breathe_",9,"png",1,!1),C=e.ref([...D,...[...D].reverse()]);e.ref([{name:"王金福",url:"/static/index/watch/people0.png"},{name:"李宝田",url:"/static/index/watch/people1.png"}]);const S=e.ref([{name:"省医保",url:"/static/index/watch/00.png",error:!1},{name:"重度失能",url:"/static/index/watch/01.png",error:!1},{name:"欠费",url:"/static/index/watch/03.png",error:!0}]),B=e.ref([{name:"护理单元",url:b("/static/index/watch","nurs_",10,"png",1,!1)},{name:"仓库",url:b("/static/index/watch","warehouse_",6,"png",1,!1)},{name:"配务室",url:b("/static/index/watch","delivery_",5,"png",1,!1)},{name:"服务大厅",url:b("/static/index/watch","service_",5,"png",1,!1)},{name:"",url:""}]),z=e.ref([{name:"护理单元01",NUID:"2508000001",url:b("/static/index/watch","nurs_",10,"png",1,!1),warning:!1,type:0},{name:"护理单元02",NUID:"2508000002",url:b("/static/index/watch","nurs_",10,"png",1,!1),warning:!1,type:0},{name:"护理单元03",NUID:"2508000003",url:b("/static/index/watch","nurs_",10,"png",1,!1),warning:!0,type:0},{name:"仓库01",NUID:"2508000001",url:b("/static/index/watch","warehouse_",6,"png",1,!1),warning:!1,type:1},{name:"配务室",NUID:"2508000001",url:b("/static/index/watch","delivery_",5,"png",1,!1),warning:!1,type:2},{name:"服务大厅",NUID:"2508000001",url:b("/static/index/watch","service_",5,"png",1,!1),warning:!1,type:3}]);e.onMounted((()=>{a.value=0,i.value=0,n.value=!0,c.value=!0}));const _=e.ref(0),I=e.ref(-1),F=e.ref(!1),$=e.ref(!1),L=e.ref(!1),q=e.ref(!1),R=e=>{ce(e)},W=e=>{if(-1!==_.value)switch(e){case 0:a.value>0?(a.value--,i.value=0,_.value=a.value,V(a.value)):(I.value=i.value,_.value=-1);break;case 1:I.value=i.value,_.value=-1;break;case 2:a.value{for(const e of Y.values())clearTimeout(e);Y.clear()}));const J=e=>{const t=g.value.indexOf(e);-1!==t&&g.value.splice(t,1)},X=e.ref(!1),Z=ae((()=>{var e;return null==(e=d.value)?void 0:e.moveFirstUp()}),400),H=ae((()=>{var e;return null==(e=d.value)?void 0:e.moveFirstDown()}),400),G=ae((()=>{var e;return null==(e=d.value)?void 0:e.moveSecondUp()}),400),Q=ae((()=>{var e;return null==(e=d.value)?void 0:e.moveSecondDown()}),400),K=ae((()=>function(){var e;null==(e=d.value)||e.startchange(),0===N.value&&(y.value,uni.$emit("monitor:toggleVolume"));1===N.value&&(y.value?uni.$emit("monitor:stopTalk"):uni.$emit("monitor:openTalk"));2===N.value&&uni.$emit("monitor:doSnapshot");3===N.value&&(y.value?uni.$emit("monitor:stopRecord"):uni.$emit("monitor:startRecord"));4===N.value&&(y.value||(le.value=N.value,N.value=-1,te.value=!0));5===N.value&&ee.value!==y.value&&(ee.value=y.value,uni.$emit("monitor:changeQuality"));6===N.value&&uni.$emit("monitor:switchDisplay",y.value);7===N.value&&(3===y.value?uni.$emit("monitor:flipImage",6):uni.$emit("monitor:flipImage",y.value));8===N.value&&(y.value?uni.$emit("monitor:stopAlarm"):uni.$emit("monitor:startAlarm"))}()),700),ee=e.ref(0),te=e.ref(!1),le=e.ref(-1);function ae(e,t=1e3){let l=!1;return()=>{l||(e(),l=!0,setTimeout((()=>{l=!1}),t))}}const ie=e.computed((()=>(a.value=-1,setTimeout((()=>a.value=0),50),z.value.filter((e=>e.type===i.value))))),re=()=>{uni.navigateTo({url:"/pages/watch/settings/settings"})};r((()=>{}));let ne=-1;const oe={};function ce(e){switch(e){case 0:se(1,0);break;case 1:se(5,1);break;case 2:se(7,2);break;case 3:se(3,3);break;case 4:case 5:N.value=le.value,te.value=!1,le.value=-1,G(),K()}}function se(e,t){-1!==ne&&ne!==t&&de(ne),ne=t,O(e,1),oe[t]&&clearTimeout(oe[t]),oe[t]=setTimeout((()=>{de(t)}),550)}function de(e){if(-1===e)return;let t=0;switch(e){case 0:t=1;break;case 1:t=5;break;case 2:t=7;break;case 3:t=3}O(t,0).then((e=>{})),clearTimeout(oe[e]),oe[e]=null,ne===e&&(ne=-1)}return(t,r)=>{const o=e.resolveComponent("donghua"),s=e.resolveComponent("arrowkeys");return e.openBlock(),e.createElementBlock("view",{class:"view"},[e.createElementVNode("view",{class:"view-left"},[e.createElementVNode("view",{class:"title-father"},[e.createElementVNode("image",{class:"title-img",src:"/static/index/watch/uni.png"}),e.createElementVNode("view",{class:"title-font"}," 护理单元 ")]),e.createElementVNode("view",{class:"zhezhao-top"}),e.createElementVNode("view",{class:"zhezhao-bottom"}),e.createElementVNode("scroll-view",{class:"menus-father","scroll-y":"","scroll-top":m.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(ie.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["menu",{warning:t.warning,target:l===_.value}]),style:e.normalizeStyle([l===a.value?{backgroundColor:"#fff"}:{},_.value===l?{backgroundColor:"#ddf0ff"}:{}]),onClick:e=>{a.value=l}},[e.createElementVNode("view",{class:"menu-img"},[e.createVNode(o,{width:"65rpx",height:"65rpx",links:t.url,playing:a.value===l},null,8,["links","playing"])]),e.createElementVNode("view",{style:{"margin-left":"10rpx"}},[e.createElementVNode("view",{style:e.normalizeStyle([{"font-size":"31rpx",overflow:"hidden","white-space":"nowrap","text-overflow":"ellipsis",width:"200rpx"},l===a.value?{color:"#017DE9 "}:{}])},e.toDisplayString(t.name),5)])],14,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"45rpx"}})],8,["scroll-top"])]),e.createElementVNode("view",{class:"view-right"},[e.createElementVNode("view",{class:"scroll-vi"},[e.createElementVNode("view",{class:"zhezhao-left"}),e.createElementVNode("view",{class:"zhezhao-right"}),e.createElementVNode("scroll-view",{"scroll-x":"true",style:{width:"66%",height:"100%"}},[e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-top":"5rpx"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(B.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["menu",{target:l===I.value}]),style:e.normalizeStyle(I.value===l?{backgroundColor:"#ddf0ff"}:{}),onClick:e=>{i.value=l}},[t.url?(e.openBlock(),e.createBlock(o,{key:0,links:t.url,playing:i.value===l},null,8,["links","playing"])):e.createCommentVNode("",!0),t.url?(e.openBlock(),e.createElementBlock("text",{key:1,class:e.normalizeClass(["menu-font",{zoom:i.value===l}]),style:e.normalizeStyle(i.value===l?{color:"#008FF5"}:{})},e.toDisplayString(t.name),7)):e.createCommentVNode("",!0),t.url?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:2},[e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx"},src:"/static/index/watch/more.png"})]))],14,["onClick"])))),128))])]),e.createElementVNode("view",{class:"right-father"},[e.createElementVNode("view",{style:{"font-weight":"600","font-size":"90rpx","margin-right":"15rpx"}}," 10:18 "),e.createElementVNode("view",{class:"",style:{"font-weight":"600","margin-right":"50rpx"}},[e.createElementVNode("view",{class:""},"7-25"),e.createElementVNode("view",{class:""},"星期三")]),e.createElementVNode("view",{class:e.normalizeClass({targetbutton:F.value}),style:{display:"flex","align-items":"center"}},[e.createElementVNode("image",{style:{width:"65rpx",height:"65rpx"},src:"/static/index/newindex/curve/shezhi.png",onClick:re}),e.createElementVNode("view",{style:{"font-size":"32rpx","margin-left":"10rpx"},onClick:re}," 设置 ")],2)])]),e.createElementVNode("view",{class:"big-bgc"},[e.createElementVNode("view",{style:{width:"100%",position:"absolute",top:"0",left:"0","z-index":"1",display:"flex","align-items":"center"}},[e.createElementVNode("text",{style:{"margin-top":"40rpx","font-size":"32rpx","margin-left":"50rpx"}}," NUID:2508000001 "),e.createElementVNode("text",{class:"new-weight"}," 护理单元01 "),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("view",{class:"right-container-tem"},[e.createElementVNode("image",{class:"right-container-tem-img",src:M}),e.createElementVNode("text",{class:"right-container-tem-text"},"23°C"),e.createElementVNode("image",{class:"right-container-tem-img",src:A}),e.createElementVNode("text",{class:"right-container-tem-text"},"39%")])])])]),e.createElementVNode("view",{class:"picture"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(p,((t,l)=>e.createElementVNode("view",{class:"picture-card",key:l,style:e.normalizeStyle({color:f.value===l?"#1486EB":""}),onClick:e=>(e=>{switch(f.value=e,e){case 0:uni.$emit("monitor:switchDisplay",0);break;case 1:uni.$emit("monitor:switchDisplay",4);break;case 2:uni.$emit("monitor:switchDisplay",1);break;case 3:uni.$emit("monitor:switchDisplay",2);break;case 4:uni.$emit("monitor:switchDisplay",3)}})(l)},[e.createElementVNode("view",{class:"bgc-card",style:e.normalizeStyle({background:f.value===l?"#E2EDFC":""})},[e.createElementVNode("image",{style:{width:"90rpx",height:"90rpx"},src:`/static/index/picture/${l}${f.value===l?1:0}.png`},null,8,["src"])],4),e.createTextVNode(" "+e.toDisplayString(t),1)],12,["onClick"]))),64))]),e.createElementVNode("view",{class:"right-right"},[0===i.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"red-kuang"},[e.createElementVNode("image",{style:{width:"75rpx",height:"90rpx","margin-left":"40rpx","margin-top":"-10rpx"},src:"/static/index/watch/laotai.png"}),e.createElementVNode("view",{class:""},[e.createElementVNode("view",{style:{"margin-left":"20rpx",display:"flex","align-items":"center","margin-bottom":"5rpx"}},[e.createElementVNode("view",{class:"font-weight"}," 王金凤 "),e.createElementVNode("view",{class:"font-small",style:{"margin-left":"30rpx"}}," 女 80岁 "),e.createElementVNode("view",{class:"blue-bgc"}," 当日指令 ")]),e.createElementVNode("view",{class:"font-small",style:{"margin-left":"20rpx","margin-top":"0rpx"}}," 入住时间:2025.01.01 ")])])):e.createCommentVNode("",!0),1===i.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"red-kuang"},[e.createElementVNode("image",{style:{width:"110rpx",height:"140rpx","margin-left":"40rpx","margin-top":"-10rpx"},src:"/static/index/watch/laotou.png"}),e.createElementVNode("view",{class:""},[e.createElementVNode("view",{style:{"margin-left":"20rpx",display:"flex","align-items":"center","margin-bottom":"5rpx","margin-top":"25rpx",height:"60rpx"}},[e.createElementVNode("view",{class:"font-weight"}," 李树奎 "),e.createElementVNode("view",{class:"font-small",style:{"margin-left":"10rpx"}}," 男 50岁 ")]),e.createElementVNode("view",{class:"font-small",style:{"margin-left":"20rpx","margin-top":"25rpx"}}," 入职时间:2025.01.15 ")])])):e.createCommentVNode("",!0),0===i.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"states-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(S.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["states",t.error?"warning":""]),key:l},[e.createElementVNode("image",{style:{width:"40rpx",height:"40rpx"},src:t.url},null,8,["src"]),e.createElementVNode("view",{style:{color:"#555555","margin-left":"5rpx","font-size":"25rpx"}},e.toDisplayString(t.name),1)],2)))),128))])):e.createCommentVNode("",!0),1===i.value?(e.openBlock(),e.createElementBlock("view",{key:3,class:"states-father"},[e.createElementVNode("view",{class:"phone-number"},[e.createElementVNode("image",{class:"bgc-image",src:"/static/index/watch/phonebgc.png"}),e.createElementVNode("image",{style:{width:"20rpx",height:"35rpx","margin-left":"40rpx"},src:"/static/index/watch/phone.png"}),e.createElementVNode("view",{class:"font-phone"},"15533556676"),e.createElementVNode("image",{class:"phone-ball",src:"/static/index/watch/phoneball.png"})])])):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"big-view"},[e.createElementVNode("view",{class:"font-weight"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"pao"},[e.createElementVNode("image",{style:{width:"100%",height:"100%",position:"absolute",top:"0",left:"0"},src:"/static/index/watch/pao.png"}),e.createElementVNode("view",{style:{"font-size":"20rpx","z-index":"1"}}," 待进行 ")]),e.createElementVNode("view",{class:"juzhong",style:{top:"-120rpx"}},[e.createVNode(o,{width:"600rpx",height:"500rpx",links:T.value,playing:n.value,loop:!0,interval:120},null,8,["links","playing"])]),e.createElementVNode("view",{class:"juzhong",style:{"z-index":"2","margin-top":"50rpx"}},[e.createVNode(o,{width:"300rpx",height:"200rpx",links:C.value,playing:n.value,loop:!0,interval:120},null,8,["links","playing"])]),e.createElementVNode("image",{style:{width:"300rpx",height:"200rpx"},src:"/static/index/newindex/wendu/2.png"}),e.createElementVNode("view",{style:{"font-size":"25rpx"}}," 一级压疮防护 ")]),e.createElementVNode("view",{class:"bottom-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.value,((t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"button-father",onClick:e=>(e=>{switch(e){case 0:uni.$emit("monitor:doSnapshot"),g.value.includes(e)||g.value.push(e),Y.has(e)&&clearTimeout(Y.get(e));const t=setTimeout((()=>{const t=g.value.indexOf(e);-1!==t&&g.value.splice(t,1),Y.delete(e)}),500);Y.set(e,t);break;case 1:g.value.includes(e)?(uni.$emit("monitor:stopRecord"),J(e)):(uni.$emit("monitor:startRecord"),g.value.push(e));break;case 2:g.value.includes(e)?(uni.$emit("monitor:stopTalk"),J(e)):(uni.$emit("monitor:openTalk"),g.value.push(e));break;case 3:g.value.includes(e)?(uni.$emit("monitor:toggleVolume"),J(e)):(uni.$emit("monitor:toggleVolume"),g.value.push(e));break;case 4:g.value.includes(e)?(uni.$emit("monitor:stopAlarm"),J(e)):(uni.$emit("monitor:startAlarm"),g.value.push(e));break;case 5:g.value.includes(e)?(l.value=h,J(e)):(l.value=w,g.value.push(e)),X.value=!1;break;case 6:case 7:g.value.includes(e)?J(e):g.value.push(e);break;case 8:g.value.includes(e)?(uni.$emit("monitor:changeQuality"),J(e)):(uni.$emit("monitor:changeQuality"),g.value.push(e));break;case 9:X.value=!0}})(a)},[e.createElementVNode("view",{class:"bottom-button",style:e.normalizeStyle({backgroundColor:g.value.includes(a)?"#DDE9F0":""})},[e.createElementVNode("image",{style:{width:"70%",height:"70%"},src:`/static/index/camera/${a}${g.value.includes(a)?1:0}.png`},null,8,["src"])],4),e.createElementVNode("view",{style:e.normalizeStyle([{"font-size":"25rpx"},{color:g.value.includes(a)?"#0E86EA":""}])},e.toDisplayString(t),5)],8,["onClick"])))),256)),e.withDirectives(e.createElementVNode("view",{class:"jump-white"},[e.createElementVNode("view",{style:{display:"flex","justify-content":"space-around",height:"100rpx",width:"100%","align-items":"center"}},[e.createElementVNode("view",{class:""}," 清晰度 "),e.createElementVNode("image",{style:{width:"40rpx",height:"40rpx"},src:"/static/index/camera/back.png",onClick:r[0]||(r[0]=e=>X.value=!1)})]),(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(v,((t,l)=>e.createElementVNode("view",{class:"jump-item",key:l,onClick:e=>(e=>{u.value=e,3===e?(uni.$emit("monitor:flipImage",6),J(9)):(uni.$emit("monitor:flipImage",e),g.value.push(9))})(l),style:e.normalizeStyle({backgroundColor:u.value===l?"#E5E8EE":""})},[e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx","margin-right":"10rpx","margin-left":"-10rpx"},src:u.value===l?t.target:t.url},null,8,["src"]),e.createElementVNode("view",{style:e.normalizeStyle({color:u.value===l?"#0E86EA":""})},e.toDisplayString(t.name),5)],12,["onClick"]))),64))],512),[[e.vShow,X.value]])])])]),e.createVNode(s,{onMovecard:W,getblue:c.value,moveleft:5},null,8,["getblue"]),e.withDirectives(e.createVNode(U,{onMovecard:R},null,512),[[e.vShow,!g.value.includes(5)]])])}}}),[["__scopeId","data-v-bd9aba2f"]]),R=s({__name:"exit",props:{show:{type:Boolean,default:!0}},emits:["close"],setup(t,{emit:l}){const a=t,i=e.ref(!1);e.watch((()=>a.show),((e,t)=>{!t&&e&&(i.value=!1,setTimeout((()=>i.value=!0),50))}));const r=l;function n(){r("close")}const o=()=>{uni.setStorageSync("token",1),uni.redirectTo({url:"/pages/login/login"})};return(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["neuro-wrapper",i.value?"is-active":""])},[e.createElementVNode("view",{class:"neuro-mask",onClick:n}),e.createElementVNode("view",{class:"neuro-box",onClick:a[0]||(a[0]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"button-father"},[e.createElementVNode("view",{class:"button-white",onClick:n},"取消"),e.createElementVNode("view",{class:"button",onClick:o},"确定")]),e.createElementVNode("view",{class:"title"},"退出登录"),e.createElementVNode("view",{class:"card-font"}," 确定要注销130******31账户吗 ")])],2)),[[e.vShow,t.show]])}},[["__scopeId","data-v-9117e9d1"]]),W=s({__name:"reset",props:{show:{type:Boolean,default:!0}},emits:["close"],setup(t,{emit:a}){const i=t,r=e.reactive({username:uni.getStorageSync("username"),oldpassword:"",password:"",confirmpassword:""}),n=e.ref(!1);e.watch((()=>i.show),((e,t)=>{!t&&e&&(n.value=!1,setTimeout((()=>n.value=!0),50))}));const o=a;function c(){o("close")}const s=()=>{r.username&&r.oldpassword&&r.password&&r.confirmpassword?r.password.length<6||r.confirmpassword.length<6?uni.showToast({title:"密码要多于六位",icon:"none",duration:2e3}):r.password===r.confirmpassword?(e=>p({url:`${uni.getStorageSync("serverUrl")}/sys/user/updatePassword`,method:"put",data:{username:e.username,oldpassword:e.oldpassword,password:e.password,confirmpassword:e.confirmpassword}}))(r).then((e=>{l("log","at component/public/reset.vue:105","res",e),e.success?(uni.showToast({title:e.message,icon:"none",duration:2e3}),setTimeout((()=>{uni.setStorageSync("token",1),uni.reLaunch({url:"/pages/login/login"})}),1e3)):uni.showToast({title:e.message,icon:"none",duration:2e3})})):uni.showToast({title:"新密码与确认密码不一致",icon:"none",duration:2e3}):uni.showToast({title:"请完善信息",icon:"error",duration:2e3})};return(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["neuro-wrapper",n.value?"is-active":""])},[e.createElementVNode("view",{class:"neuro-mask",onClick:c}),e.createElementVNode("view",{class:"neuro-box",onClick:a[3]||(a[3]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"button-father"},[e.createElementVNode("view",{class:"button",onClick:s},"确定")]),e.createElementVNode("view",{class:"title"},"修改账号登录密码"),e.createElementVNode("view",{class:"password-father",style:{"margin-top":"50rpx"}},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":a[0]||(a[0]=e=>r.oldpassword=e),maxlength:"15",placeholder:"请输入旧密码"},null,512),[[e.vModelText,r.oldpassword]])]),e.createElementVNode("view",{class:"password-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":a[1]||(a[1]=e=>r.password=e),maxlength:"15",placeholder:"请输入新密码"},null,512),[[e.vModelText,r.password]])]),e.createElementVNode("view",{class:"password-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":a[2]||(a[2]=e=>r.confirmpassword=e),maxlength:"15",placeholder:"请再次输入新密码"},null,512),[[e.vModelText,r.confirmpassword]])]),e.createElementVNode("view",{class:"card-font"})])],2)),[[e.vShow,t.show]])}},[["__scopeId","data-v-8de7e110"]]),Y=s(e.defineComponent({__name:"settings",emits:["jump"],setup(t,{emit:l}){const a=e.ref(null),i=e.ref(!1),r=e.ref(!1),n=e.ref(!1),o=e.ref(!1),c=e.ref(!1),s=e.ref(["雷达扫描","扫码添加","手动录入","修改密码","切换机构","检查更新","用户协议","隐私政策"]);e.ref(!0),e.ref("");const v=e.ref(!1),p=e=>{var t;switch(e){case 0:uni.navigateTo({url:"/pages/watch/settings/leida"});break;case 1:uni.navigateTo({url:"/pages/watch/settings/saoma"});break;case 2:uni.navigateTo({url:"/pages/watch/settings/input"});break;case 3:c.value=!0;break;case 4:break;case 5:i.value=!0,null==(t=a.value)||t.check_update();break;case 6:r.value=!0,n.value=!0,v.value=!1,setTimeout((()=>{v.value=!0}),50);break;case 7:r.value=!0,n.value=!1,v.value=!1,setTimeout((()=>{v.value=!0}),50)}},g=()=>{i.value&&uni.showToast({title:"已经是最新版了",icon:"none",duration:2e3})},w=()=>{uni.navigateBack()};return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"index-content-other"},[e.createElementVNode("view",{class:"index-content-right",onClick:w},[e.createElementVNode("image",{class:"back-img",src:"/static/index/settings/back.png"},null,8,["src"]),e.createTextVNode(" 返回 ")]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value.slice(0,3),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>p(l)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value.slice(3,5),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>p(l+3)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l+3}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value.slice(5,8),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>p(l+5)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l+5}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"bottom-button",onClick:l[0]||(l[0]=e=>o.value=!0)}," 注销登录 "),e.createElementVNode("view",{class:"text-center"},[e.createElementVNode("view",null,"长春市朝阳区久泰开运养老服务有限公司")]),e.createVNode(R,{show:o.value,onClose:l[1]||(l[1]=e=>o.value=!1)},null,8,["show"]),e.createVNode(W,{show:c.value,onClose:l[2]||(l[2]=e=>c.value=!1)},null,8,["show"]),e.createVNode(d,{ref_key:"zyupgrade",ref:a,noticeflag:!0,theme:"blue",h5preview:!1,oldversion:"1.0.0",appstoreflag:!0,autocheckupdate:!0,onShowupdateTips:g},null,512),r.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-any",style:e.normalizeStyle(v.value?{opacity:1}:{opacity:0})},[e.createElementVNode("view",{class:"mask",onClick:l[3]||(l[3]=e=>r.value=!1)}),e.createElementVNode("view",{class:"box-any"},[e.createElementVNode("view",{class:"title-left"},[n.value?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"back-font"},"NU护理单元隐私信息保护政策")),n.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"back-font"},"NU护理单元用户服务协议")):e.createCommentVNode("",!0)]),n.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(u,{key:0})),n.value?(e.openBlock(),e.createBlock(m,{key:1})):e.createCommentVNode("",!0)])],4)):e.createCommentVNode("",!0)]))}}),[["__scopeId","data-v-ccb4084b"]]),J="/static/click.png",X="/static/x.png",Z=s(e.defineComponent({__name:"input",setup(t){const l=()=>{uni.navigateBack()},a=e.ref("");return(t,i)=>(e.openBlock(),e.createElementBlock("view",{class:"index-content-other"},[e.createElementVNode("view",{class:"index-content-right",onClick:l},[e.createElementVNode("image",{class:"back-img",src:"/static/index/settings/back.png"},null,8,["src"]),e.createTextVNode(" 返回 ")]),e.createElementVNode("view",{class:"saomiao"},[e.createElementVNode("view",{class:"big-ball"},[e.createElementVNode("view",{class:"ball"})]),e.createElementVNode("image",{class:"left-img",src:J}),e.withDirectives(e.createElementVNode("input",{class:"saoma-input",password:!1,"onUpdate:modelValue":i[0]||(i[0]=e=>a.value=e),placeholder:"请手动录入NUID"},null,512),[[e.vModelText,a.value]]),e.withDirectives(e.createElementVNode("image",{class:"right-img",src:X,onClick:i[1]||(i[1]=e=>a.value="")},null,512),[[e.vShow,a.value]]),e.createElementVNode("view",{class:"blue-button"}," 确定 ")]),e.createElementVNode("image",{class:"big-bgc",src:"/static/bgc.png"}),e.createElementVNode("image",{class:"big-img",src:"/static/qiu.png"}),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")]))}}),[["__scopeId","data-v-87f7dd57"]]),H=s(e.defineComponent({__name:"saoma",setup(t){const l=()=>{uni.navigateBack()};function a(){uni.scanCode({onlyFromCamera:!0,scanType:["qrCode","barCode"],success(e){},fail(e){}})}return e.ref(""),(t,i)=>(e.openBlock(),e.createElementBlock("view",{class:"index-content-other"},[e.createElementVNode("view",{class:"index-content-right",onClick:l},[e.createElementVNode("image",{class:"back-img",src:"/static/index/settings/back.png"},null,8,["src"]),e.createTextVNode(" 返回 ")]),e.createElementVNode("view",{class:"saomiao"}),e.createElementVNode("image",{class:"big-bgc",src:"/static/kuai.png"}),e.createElementVNode("view",{class:"big-img",onClick:a},[e.createElementVNode("image",{style:{width:"100%",height:"100%"},src:"/static/sao.png"}),e.createElementVNode("view",{class:"big-font"}," 点击扫描区域二维码 ")]),e.createElementVNode("image",{class:"big-QR",src:"/static/qr.png",onClick:a}),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")]))}}),[["__scopeId","data-v-33cdb877"]]),G="/static/index/quxiao.png",Q=()=>p({url:`${uni.getStorageSync("serverUrl")}/api/pad/baseInfo/queryPadPageList?token=${uni.getStorageSync("token")}`,method:"get"}),K=s(e.defineComponent({__name:"leida",setup(t){const l=()=>{uni.navigateBack()},a=e.ref(!0),i=e.ref(0),r=e.ref(100),n=e.ref(-1),o=e.ref(""),c=e.ref(),s=e.ref(!1),d=e.ref([{url:"/static/index/leida/00.png",targetUrl:"/static/index/leida/01.png",target:!1},{url:"/static/index/leida/10.png",targetUrl:"/static/index/leida/11.png",target:!1},{url:"/static/index/leida/20.png",targetUrl:"/static/index/leida/21.png",target:!1},{url:"/static/index/leida/30.png",targetUrl:"/static/index/leida/31.png",target:!1}]),m=e.ref([]),u=e.ref([]),v=e.ref(0);let p=null;function g(e){return"function"==typeof globalThis.requestAnimationFrame?globalThis.requestAnimationFrame(e):setTimeout((()=>e(Date.now())),16)}function w(e){var t;return"number"==typeof e?e:(null==(t=globalThis.performance)?void 0:t.now)?globalThis.performance.now():Date.now()}let h=null;function f(e){const t=w(e);h||(h=t);const l=(t-h)/1e3;h=t,a.value&&(i.value=(i.value+r.value*l)%360),p=g(f)}function N(){100===D.value&&(C(),y())}function y(){a.value=!a.value,a.value?(h=w(),k()):T()}const x=e.computed((()=>({transform:`rotate(${i.value}deg)`}))),E=e.ref([]);let V=null,b=0;function k(){V||(V=setInterval((()=>{!function(){const e=1*Math.random()+5,t=Math.random()*(200-e),l=Math.random()*(200-e),a=b++,i={id:a,size:e,left:t,top:l,color:"#02a9ff",opacity:0};E.value.push(i),setTimeout((()=>{i.opacity=1}),20),setTimeout((()=>{i.opacity=0,setTimeout((()=>{E.value=E.value.filter((e=>e.id!==a))}),500)}),2e3)}()}),500))}function T(){clearInterval(V),V=null}const D=e.ref(0);function C(){let e=Date.now(),t=Math.floor(30*Math.random())+30,l=!1,a=Math.floor(500*Math.random())+300,i=0;Q().then((e=>{e.result.records.forEach((e=>{e.menu=JSON.parse(JSON.stringify(d.value)),e.isNew=!0})),u.value=[],u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),function(){const e=u.value.length;m.value=[];const t=Array.from({length:e},(()=>Math.random())),l=t.reduce(((e,t)=>e+t),0),a=t.map((e=>e/l*4e3));let i=0;for(let r=0;r{m.value.push(u.value[r]),m.value.length}),i)}()})),setTimeout((function r(){let n=Date.now()-e;if(!l&&D.value>=t&&(l=!0,i=Date.now()),l){if(!(Date.now()-i>=a))return void setTimeout(r,16);l=!1}let o=Math.min(n/4e3,1);D.value=Math.floor(100*o),100===D.value&&y(),D.value<100&&setTimeout(r,16)}),16)}const S=(e,t)=>{n.value=e,o.value=t.nuName,c.value=t.nuId,s.value=!1,setTimeout((()=>{s.value=!0}),50)};e.onMounted((()=>{B()}));const B=()=>{h=w(),p=g(f),k(),C()},z=e.ref(-1),_=e.ref(-1),I=e=>{if(100===D.value)switch(e){case 0:if(0===_.value)return void(_.value=1);if(1===_.value)return void(_.value=0);z.value-2<-1?z.value=-1:(z.value=z.value-2,U(z.value));break;case 1:if(0===_.value)return void(_.value=1);if(1===_.value)return void(_.value=0);z.value+1>m.value.length-1||(z.value++,U(z.value));break;case 2:if(0===_.value)return void(_.value=1);if(1===_.value)return void(_.value=0);z.value+1===m.value.length-1||-1===z.value?(z.value++,U(z.value)):z.value+2>m.value.length-1||(z.value=z.value+2,U(z.value));break;case 3:if(0===_.value)return void(_.value=1);if(1===_.value)return void(_.value=0);-1!==z.value&&(z.value--,U(z.value));break;case 4:if(1===_.value)return void S(z.value,m.value[z.value]);-1===z.value?N():_.value=0;break;case 5:-1!==_.value?_.value=-1:l()}};function U(t){const l=m.value.length;t<0&&(t=0),t>=l&&(t=l-1),e.nextTick((()=>{const e=245*Math.floor(t/2),a=e+245,i=v.value,r=i+475;let n=v.value;er&&(n=a-475);const o=245*Math.ceil(l/2),c=Math.max(0,o-475);n<0&&(n=0),n>c&&(n=c),v.value=Math.round(n)}))}return e.onBeforeUnmount((()=>{var e;null!=p&&(e=p,"function"==typeof globalThis.cancelAnimationFrame?globalThis.cancelAnimationFrame(e):clearTimeout(e)),T()})),(t,a)=>{const i=e.resolveComponent("arrowkeys");return e.openBlock(),e.createElementBlock("view",{class:"index-content-other"},[e.createElementVNode("view",{class:"index-content-right",onClick:l},[e.createElementVNode("image",{class:"back-img",src:"/static/index/settings/back.png"},null,8,["src"]),e.createTextVNode(" 返回 ")]),e.createElementVNode("view",{class:"left-contain"},[e.createElementVNode("view",{class:"blue-bgc"},[e.createElementVNode("image",{class:"all-img",src:"/static/index/leida/leftbgc.png"}),e.createElementVNode("image",{class:"all-img",style:{width:"90%",height:"90%","margin-top":"5%","margin-left":"5%"},src:"/static/index/leida/bigball.png"}),e.createElementVNode("view",{class:"inset-img",style:e.normalizeStyle(x.value)},[e.createElementVNode("image",{class:"all-img",style:{"z-index":"2"},src:"/static/index/leida/biao.png"}),e.createElementVNode("image",{class:"all-img",style:{"z-index":"1"},src:"/static/index/leida/ball.png"}),e.createElementVNode("image",{class:"all-img",src:"/static/index/leida/shallow.png"})],4),e.createElementVNode("view",{class:"ball-layer"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E.value,(t=>(e.openBlock(),e.createElementBlock("view",{key:t.id,class:"ball",style:e.normalizeStyle({width:t.size+"px",height:t.size+"px",top:t.top+"px",left:t.left+"px",backgroundColor:t.color,opacity:t.opacity})},null,4)))),128))])]),e.createElementVNode("view",{style:{width:"100%",display:"flex","flex-direction":"column","align-items":"center"}},[e.createElementVNode("view",{class:e.normalizeClass(["blue-button",-1==z.value?"zerotarget":""]),style:{"margin-top":"0"},onClick:N},e.toDisplayString((D.value,"扫描")),3),e.createElementVNode("view",{class:"progress-wrap"},[e.createElementVNode("view",{class:"progress-inner",style:e.normalizeStyle({width:D.value+"%"})},null,4)]),e.createElementVNode("view",{class:"progress-text"},e.toDisplayString(D.value)+"%",1)])]),e.createElementVNode("view",{class:"other"},[e.createElementVNode("scroll-view",{ref:"scrollViewRef","scroll-y":"",class:"other-father","scroll-top":v.value},[e.createElementVNode("view",{class:"card-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["card",[z.value===l&&-1===_.value?"zerotarget":"",{"fade-in":t.isNew}]]),key:l,onAnimationend:e=>{t.isNew=!1}},[e.createElementVNode("view",{class:"main-title"},[e.createElementVNode("view",{class:"main-title-font",style:{"font-weight":"600","font-size":"40rpx"}},e.toDisplayString(t.nuName),1),e.createElementVNode("view",{class:e.normalizeClass(["video-father",z.value===l&&0===_.value?"zerotarget":""])},[e.createElementVNode("image",{class:"edit-img",onClick:a[0]||(a[0]=()=>{}),src:"/static/index/leida/play.png"})],2)]),e.createElementVNode("view",{class:e.normalizeClass(["blue-button",z.value===l&&1===_.value?"zerotarget":""]),style:{width:"200rpx",height:"70rpx","margin-top":"50rpx"},onClick:e=>S(l,t)}," 重命名 ",10,["onClick"]),e.createElementVNode("view",{class:"card-tags"},[e.createElementVNode("view",{style:{"margin-left":"80rpx"}}," NUID:"+e.toDisplayString(t.nuId),1)]),e.createElementVNode("view",{class:"play-img"}," 护理单元 ")],42,["onAnimationend"])))),128)),-1!==n.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-any",style:e.normalizeStyle(s.value?{opacity:1}:{opacity:0})},[e.createElementVNode("view",{class:"mask",onClick:a[1]||(a[1]=e=>n.value=-1)}),e.createElementVNode("view",{class:"rename-father"},[e.createElementVNode("view",{class:"rename-title"}," 重命名 "),e.createElementVNode("view",{style:{width:"100%","margin-left":"5rpx","margin-bottom":"20rpx"}}," NUID:"+e.toDisplayString(c.value),1),e.createElementVNode("view",{class:"rename-input"},[e.withDirectives(e.createElementVNode("input",{class:"uni-input",placeholder:"请重新命名","onUpdate:modelValue":a[2]||(a[2]=e=>o.value=e)},null,512),[[e.vModelText,o.value]]),e.withDirectives(e.createElementVNode("image",{class:"right-img",src:G,onClick:a[3]||(a[3]=e=>o.value="")},null,512),[[e.vShow,o.value]])]),e.createElementVNode("view",{class:"blue-button",style:{width:"200rpx",height:"70rpx","margin-top":"40rpx"},onClick:a[4]||(a[4]=e=>{return t=o.value,l=n.value,t&&(m.value[l].nuName=t),void(n.value=-1);var t,l})}," 确定 ")])],4)):e.createCommentVNode("",!0)])],8,["scroll-top"])]),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 "),e.createVNode(i,{onMovecard:I})])}}}),[["__scopeId","data-v-2b7adbee"]]),ee=s(e.defineComponent({__name:"index",props:{isShow:{type:Boolean,required:!0},propsmove:{type:Number},isMain:{type:Boolean}},emits:["back"],setup(t,{emit:l}){const a=t,i=e.ref(-1);e.watch((()=>a.isMain),((e,t)=>{"boolean"==typeof t&&a.isShow&&(!0===t&&!1===e?(i.value=0,r.value=0,o.value=r.value):!1===t&&!0===e&&(i.value=-1,r.value=-1,o.value=0))}));const r=e.ref(-1),n=l;e.watch((()=>a.propsmove),(()=>{if(-1!=i.value)switch(i.value){case 0:switch(a.propsmove){case 0:i.value=-1,r.value=-1,n("back");break;case 1:r.value{const o=r?String(n+i).padStart(2,"0"):n+i;return`${e}/${t}${o}.${a}`}))}const u=e.ref([{url:"/static/index/newindex/rightmenu/0.png",name:"重点追踪"},{url:"/static/index/newindex/rightmenu/1.png",name:"转单执行"},{url:"/static/index/newindex/rightmenu/2.png",name:"协助执行"}]),v=e.ref([{url:"/static/index/newindex/states/0.png",name:"狂躁"},{url:"/static/index/newindex/states/1.png",name:"易怒"},{url:"/static/index/newindex/states/2.png",name:"大体重"},{url:"/static/index/newindex/states/3.png",name:"四肢"}]),p=e.ref(m("/static/index/newindex/leftmenu","",3,"png",0,!1));e.ref(m("/static/index/newindex/huli","care",9,"png",0,!1));const g=m("/static/index/newindex/curve","curve_",9,"png",1,!1),w=e.ref([...g,...[...g].reverse()]),h=m("/static/index/newindex/curve","breathe_",9,"png",1,!1),f=e.ref([...h,...[...h].reverse()]),N=e.ref([{url:m("/static/index/newindex/huli","care",8,"png",0,!1),name:"护理类"},{url:m("/static/index/newindex/yiliao","health_",9,"png",1,!1),name:"医疗类"},{url:m("/static/index/newindex/kufang","storeroom_",11,"png",1,!1),name:"库房类"},{url:m("/static/index/newindex/baojie","clean_",12,"png",1,!1),name:"保洁类"},{url:m("/static/index/newindex/xiaoxi","wash_",14,"png",1,!1),name:"消洗类"},{url:m("/static/index/newindex/kangfu","recovery_",6,"png",1,!1),name:"康复类"}]),y=e.ref(!1);e.watch((()=>a.isShow),((e,t)=>{!t&&e?(y.value=!1,setTimeout((()=>{y.value=!0}),50)):y.value=!1}));const x=e.ref("");return e.onMounted((()=>{x.value=uni.getStorageSync("realname"),o.value=0,c.value=!0})),(t,l)=>{const a=e.resolveComponent("donghua");return e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(y.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{style:{"margin-left":"30rpx"}}," NUID:2508000001 "),e.createElementVNode("text",{class:"new-weight"}," 护理单元01 "),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("view",{class:"right-container-tem"},[e.createElementVNode("image",{class:"right-container-tem-img",src:M}),e.createElementVNode("text",{class:"right-container-tem-text"},"23°C"),e.createElementVNode("image",{class:"right-container-tem-img",src:A}),e.createElementVNode("text",{class:"right-container-tem-text"},"39%")]),e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",null,e.toDisplayString(x.value),1)])]),e.createElementVNode("view",{class:"scroll-vi"},[e.createElementVNode("view",{class:"zhezhao-left"}),e.createElementVNode("view",{class:"zhezhao-right"}),e.createElementVNode("scroll-view",{"scroll-x":"true",style:{width:"100%",height:"100%"}},[e.createElementVNode("view",{style:{display:"flex","align-items":"center"}},[e.createElementVNode("view",{style:{width:"100rpx"}}),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(N.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass([{zerotarget:0===i.value&&r.value===l},"menu"]),style:e.normalizeStyle({backgroundColor:0===i.value&&r.value===l?"#ddf0ff":""}),onClick:e=>{o.value=l,r.value=l}},[e.createVNode(a,{links:t.url,playing:o.value===l},null,8,["links","playing"]),e.createElementVNode("text",{class:e.normalizeClass(["menu-font",{zoom:o.value===l}]),style:e.normalizeStyle(o.value===l?{color:"#008FF5"}:{})},e.toDisplayString(t.name),7)],14,["onClick"])))),128)),e.createElementVNode("view",{style:{width:"100rpx"}})])])]),e.createElementVNode("view",{class:"photo-father"},[e.createElementVNode("view",{class:"juzhong",style:{"margin-left":"-50rpx"}},[e.createVNode(a,{width:"1500rpx",height:"1000rpx",links:w.value,playing:c.value,loop:!0,interval:120},null,8,["links","playing"])]),e.createElementVNode("view",{class:"juzhong",style:{"z-index":"2","margin-top":"120rpx"}},[e.createVNode(a,{width:"800rpx",height:"500rpx",links:f.value,playing:c.value,loop:!0,interval:120},null,8,["links","playing"])]),e.createElementVNode("view",{class:"weight-time"},[e.createTextVNode(" 10:00 - 10:10 "),e.createElementVNode("view",{class:"pao-father"},[e.createElementVNode("image",{class:"pao-img",src:"/static/index/newindex/states/pao.png"},null,8,["src"]),e.createElementVNode("view",{style:{"z-index":"1"}}," 待执行 ")])]),e.createElementVNode("image",{class:"big-img",src:"/static/index/newindex/wendu/2.png"},null,8,["src"]),e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-top":"5rpx"}},[e.createElementVNode("view",{class:"server-name"}," 一级压疮防护 ")]),e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-top":"40rpx"}},[e.createElementVNode("image",{class:"down-img",src:"/static/index/newindex/states/left.png"},null,8,["src"]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(v.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"states-father"},[e.createElementVNode("image",{class:"icon-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{style:{"margin-top":"15rpx","margin-left":"10rpx"}},e.toDisplayString(t.name),1)])))),128)),e.createElementVNode("image",{class:"down-img",src:"/static/index/newindex/states/right.png"},null,8,["src"])]),e.createElementVNode("view",{style:{display:"flex","margin-top":"60rpx"}},[e.createElementVNode("view",{class:e.normalizeClass({thirdtarget:3===i.value&&0===r.value}),style:{width:"240rpx",height:"90rpx","margin-right":"40rpx"}},[e.createElementVNode("view",{class:"start-button"}," 开始服务 ")],2),e.createElementVNode("view",{class:e.normalizeClass({thirdtarget:3===i.value&&1===r.value}),style:{width:"240rpx",height:"90rpx"}},[e.createElementVNode("view",{class:"end-button"}," 结束服务 ")],2)])]),e.createElementVNode("view",{class:"left-menu"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,style:{margin:"30rpx 0"},class:e.normalizeClass({firsttarget:1===i.value&&r.value===l})},[e.createElementVNode("view",{class:"left-ball",style:e.normalizeStyle({backgroundColor:1===i.value&&r.value===l?"#ddf0ff":""})},[e.createElementVNode("image",{class:"left-menu-img",src:t},null,8,["src"])],4)],2)))),128))]),e.createElementVNode("view",{class:"right-menu"},[e.createElementVNode("view",{class:"zhezhao-top",onClick:l[0]||(l[0]=e=>s.value-=115)}),e.createElementVNode("view",{class:"zhezhao-bottom",onClick:l[1]||(l[1]=e=>s.value+=115)}),e.createElementVNode("image",{class:"top-img",src:"/static/index/newindex/rightmenu/top.png",onClick:l[2]||(l[2]=e=>s.value>0?s.value-=115:s.value=0)},null,8,["src"]),e.createElementVNode("scroll-view",{"scroll-y":"true",class:"right-scroll","scroll-top":s.value,onScroll:d},[e.createElementVNode("view",{style:{height:"30rpx"}}),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass({secondtarget:2===i.value&&r.value===l}),style:{margin:"20rpx auto",width:"110rpx"}},[e.createElementVNode("view",{class:"white-circle",style:e.normalizeStyle({backgroundColor:2===i.value&&r.value===l?"#ddf0ff":""})},[e.createElementVNode("image",{class:"right-menu-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"right-menu-name"},e.toDisplayString(t.name),1)],4)],2)))),256)),e.createElementVNode("view",{style:{height:"30rpx"}})],40,["scroll-top"]),e.createElementVNode("image",{class:"top-img",src:"/static/index/newindex/rightmenu/bottom.png",onClick:l[3]||(l[3]=e=>s.value>55*u.value.length?s.value=55*u.value.length:s.value+=115)},null,8,["src"])])],4)}}}),[["__scopeId","data-v-9c8806b6"]]),te="/static/index/newruler/jiao.png";function le(e,t,l,a="png",i=0,r=!1){return Array.from({length:l},((l,n)=>{const o=r?String(n+i).padStart(2,"0"):n+i;return`${e}/${t}${o}.${a}`}))}const ae=[{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706886",title:"协助喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604232524795905",title:"鼻饲喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604428667228162",title:"注射器/吸管喂药",tagName:"头部,大体重"}],levle:"2",title:"协助喂药",key:"1900114812020310017",parentId:"1900112597427793921",url:le("/static/index/diet","medicine_",7,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605892869394433",title:"一级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606105021485058",title:"二级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606339931869185",title:"三级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606614344208386",title:"一级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606869953482753",title:"二级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607023431454722",title:"三级压疮防护",tagName:"大体重"}],levle:"2",title:"压疮防护",key:"1900115034452639746",parentId:"1900112597427793921",url:le("/static/index/diet","knead_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706887",title:"床椅转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706888",title:"床椅转移",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605073730211842",title:"床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605223185846273",title:"床椅转移",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605365393723393",title:"协助床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605496071458818",title:"协助床椅转移",tagName:null}],levle:"2",title:"床椅转移",key:"1902248363784159233",parentId:"1900112597427793921",url:le("/static/index/diet","chair_",8,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607507626102786",title:"轮椅防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607677415723010",title:"轮椅防护",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902607817589362689",title:"轮椅防护",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902608061588803585",title:"轮椅防护",tagName:"大体重"}],levle:"2",title:"轮椅防护",key:"1902280900178886657",parentId:"1900112597427793921",url:le("/static/index/diet","wheelchair_",10,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608564582322178",title:"约束位按摩",tagName:"手"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608974609092610",title:"约束位按摩",tagName:"足"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618507855237121",title:"约束位按摩",tagName:"全"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618751548493825",title:"防护网约束",tagName:null}],levle:"2",title:"约束防护",key:"1902280933364219906",parentId:"1900112597427793921",url:le("/static/index/diet","constraint_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620309090701314",title:"协助行走",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620486044192769",title:"放松按摩",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902625161569079298",title:"心灵慰藉",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902625402468929537",title:"狂躁",tagName:null}],levle:"2",title:"按摩保健",key:"1902564031454744577",parentId:"1900112597427793921",url:le("/static/index/diet","massage_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902625872432304130",title:"准备衣物",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626005538541569",title:"协助更换",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626664711163905",title:"肢体障碍",tagName:"半侧"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626800510144513",title:"肢体障碍",tagName:"全身"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627064688381953",title:"准备衣物",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627280716009474",title:"协助更换",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627416598876161",title:"肢体障碍",tagName:"半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627522404388866",title:"肢体障碍",tagName:"全身"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902627711806574593",title:"协助更换",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628058591629313",title:"肢体障碍",tagName:"半侧,大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628650718302209",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628837725540354",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628966847188993",title:"肢体障碍",tagName:"大体重,半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902629129879785474",title:"协助更换",tagName:"大体重"}],levle:"2",title:"更换衣物",key:"1902564088417587201",parentId:"1900112597427793921",url:le("/static/index/diet","replace_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629344456183809",title:"坐起",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629492301205506",title:"躺下",tagName:null}],levle:"2",title:"调整坐卧",key:"1902564199830884354",parentId:"1900112597427793921",url:le("/static/index/diet","adjust_",7,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902630862769065985",title:"遗体净身",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902631162275926017",title:"遗体穿衣",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631422431825921",title:"遗体转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631602463936514",title:"床位消毒",tagName:null}],levle:"2",title:"殡仪服务",key:"1902564263743688705",parentId:"1900112597427793921",url:le("/static/index/diet","exequy_",4,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902631830441136129",title:"更换床上用品",tagName:"全部"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632063828987905",title:"隔尿褥子更换",tagName:null}],levle:"2",title:"更换床上用品",key:"1902564446648897538",parentId:"1900112597427793921",url:le("/static/index/diet","change_",6,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632288270389250",title:"临终护理",tagName:null}],levle:"2",title:"临终服务",key:"1902564503783706625",parentId:"1900112597427793921",url:le("/static/index/diet","funeral_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"40",id:"1902632678701371393",title:"制氧机吸氧",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902632799853842433",title:"制氧机维护",tagName:null}],levle:"2",title:"制氧机应用",key:"1902564586101116930",parentId:"1900112597427793921",url:le("/static/index/diet","oxygen_",6,"png",1,!1)}],levle:"1",title:"1 日常照料",key:"1900112597427793921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900376187661553665",title:"准备洁具",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900420873478553602",title:"棉球清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706881",title:"协助清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706885",title:"义齿清洁",tagName:"口腔"}],levle:"2",title:"口腔清洁",key:"1902597070889127938",parentId:"1900112615777873921",url:le("/static/index/diet","oral_",7,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902636771540963329",title:"准备洁具",tagName:"头部"},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637623425077250",title:"协助洗头",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637985234128898",title:"卧式洗头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902638122949906433",title:"擦头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902638304739430401",title:"刮头",tagName:null}],levle:"2",title:"头部清洁",key:"1902597497344987137",parentId:"1900112615777873921",url:le("/static/index/diet","head_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902641763073101826",title:"准备洁具",tagName:"面部"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642254465175553",title:"协助洁面",tagName:null}],levle:"2",title:"面部清洁",key:"1902597651405967361",parentId:"1900112615777873921",url:le("/static/index/diet","wash_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642508145070081",title:"准备洁具",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642672796667905",title:"协助清洁",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642822885642242",title:"卧床清洁",tagName:"躯干"}],levle:"2",title:"躯干清洁",key:"1902597718082818050",parentId:"1900112615777873921",url:le("/static/index/diet","limbs_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643318811758594",title:"准备洁具",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643483320750082",title:"协助清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643630888947713",title:"卧床清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643837525528578",title:"肌张力高",tagName:"清洁"}],levle:"2",title:"四肢清洁",key:"1902597811565465601",parentId:"1900112615777873921",url:le("/static/index/diet","torso_",6,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645148199391234",title:"会阴清洁",tagName:"男"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645295457210369",title:"会阴清洁",tagName:"女"}],levle:"2",title:"会阴清洁",key:"1902597873964126209",parentId:"1900112615777873921",url:le("/static/index/diet","perineum_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645493185089537",title:"肛周清洁",tagName:null}],levle:"2",title:"肛周清洁",key:"1902597930020999170",parentId:"1900112615777873921",url:le("/static/index/diet","perianal_",7,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645693211447298",title:"洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647316134465538",title:"泡手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647529817477122",title:"准备洁具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647673212342274",title:"协助洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647905878773762",title:"强直屈曲洗手",tagName:null}],levle:"2",title:"手清洁",key:"1902597991698239489",parentId:"1900112615777873921",url:le("/static/index/diet","hands_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648101203316737",title:"泡脚",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648239091060737",title:"卧式泡脚",tagName:null}],levle:"2",title:"足清洁",key:"1902598178588037121",parentId:"1900112615777873921",url:le("/static/index/diet","feet_",4,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648426383511553",title:"修睫毛",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648548777496577",title:"剃须",tagName:null}],levle:"2",title:"剃须",key:"1902598258573414401",parentId:"1900112615777873921",url:le("/static/index/diet","shave_",6,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648962444922882",title:"角质增生",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649132536532994",title:"灰指甲",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649302149992449",title:"正常",tagName:"修甲"}],levle:"2",title:"修甲",key:"1902598354606198785",parentId:"1900112615777873921",url:le("/static/index/diet","clippers_",6,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902649683919736834",title:"理发",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"25",id:"1902649860344745985",title:"理发",tagName:"颅骨缺损"}],levle:"2",title:"理发",key:"1902598400382832642",parentId:"1900112615777873921",url:le("/static/index/diet","haircut_",5,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902650121280786434",title:"床上沐浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650408884211713",title:"深度清洁",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650763722330113",title:"浴间洗浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"30",id:"1902651229122301954",title:"床上沐浴",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651366317985794",title:"深度清洁",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651555363655682",title:"浴间洗浴",tagName:"大体重"}],levle:"2",title:"沐浴",key:"1902598454782955522",parentId:"1900112615777873921",url:le("/static/index/diet","bathe_",9,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651778777452545",title:"内套管清洁",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651924047171586",title:"更换气切纱布",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"10",id:"1902652055928672258",title:"更换气切纱布",tagName:null}],levle:"2",title:"气切消毒",key:"1902598509522817026",parentId:"1900112615777873921",url:le("/static/index/diet","omy_",4,"png",1,!1)}],levle:"1",title:"2 清洁照料",key:"1900112615777873921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898057679966209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898202668666881",title:"协助进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898339931459586",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898472584712194",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898590658564097",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898719952179201",title:"准备餐具",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898979948695554",title:"协助进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899086840532993",title:"协助进餐",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899214838108162",title:"鼻胃管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899325014085633",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899587028062210",title:"食物加工",tagName:null}],levle:"2",title:"加餐饮食",key:"1902596129720864770",parentId:"1902280495747317762",url:le("/static/index/diet","snack_",7,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281139677839362",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902281522340970498",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281654100836354",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281870434648066",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902654960639381506",title:"鼻肠管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902655101874180097",title:"轮椅进餐",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902892199009030145",title:"轮椅进餐",tagName:null}],levle:"2",title:"正餐饮食",key:"1902601263850950657",parentId:"1902280495747317762",url:le("/static/index/diet","dinner_",8,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893231608926209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893551978254337",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893716466274306",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894369850757122",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894528533860354",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"辅餐饮食",key:"1902601382595891202",parentId:"1902280495747317762",url:le("/static/index/diet","food_",6,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894832176304129",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894954117304322",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895077522116609",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895233407619073",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895569912434689",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"果汁饮食",key:"1902601427168759809",parentId:"1902280495747317762",url:le("/static/index/diet","juice_",9,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895878508351489",title:"准备水杯",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895984053817346",title:"协助饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896136835534850",title:"协助饮水",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896508421509122",title:"鼻胃管饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896636553302017",title:"鼻肠管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902896855802155010",title:"准备水杯",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897018344017921",title:"协助饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897464936730626",title:"协助饮水",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897675813752834",title:"鼻胃管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897803417063426",title:"鼻肠管饮水",tagName:null}],levle:"2",title:"饮水饮食",key:"1902601487625457665",parentId:"1902280495747317762",url:le("/static/index/diet","drink_",5,"png",1,!1)}],levle:"1",title:"3 饮食照料",key:"1902280495747317762"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902653177363927041",title:"巡视",tagName:null}],levle:"2",title:"巡视",key:"1902564741860790273",parentId:"1902560466095017986",url:le("/static/index/diet","posture_",6,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653325481578497",title:"防坠床",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653497066360833",title:"被褥调整",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653650917625857",title:"睡姿调整",tagName:null}],levle:"2",title:"体位调整",key:"1902564818838851585",parentId:"1902560466095017986",url:le("/static/index/diet","visitation_",5,"png",1,!1)}],levle:"1",title:"4 睡眠照料",key:"1902560466095017986"},{children:[{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904277308510210",title:"更换尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904458779267073",title:"更换隔尿垫",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905631242424322",title:"使用尿盆",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905824973131777",title:"使用尿壶",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906220483416065",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906459051233281",title:"坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906610562076674",title:"留置尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906783325458434",title:"更换纸尿裤",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908406344945665",title:"热敷抚触排尿",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908523827400705",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909645401067522",title:"更换尿片",tagName:null}],levle:"2",title:"小便",key:"1902596314152800257",parentId:"1902560510768549889",url:le("/static/index/diet","urinate_",4,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909835331735554",title:"床上排便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910002671882242",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910156154048514",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910361008050178",title:"人工取便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910524623654913",title:"造瘘袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910700176248834",title:"坐便椅",tagName:null}],levle:"2",title:"大便",key:"1902596399423000577",parentId:"1902560510768549889",url:le("/static/index/diet","stool_",3,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910899565072385",title:"口腔吸痰",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911047405899778",title:"气切吸痰",tagName:null}],levle:"2",title:"吸痰",key:"1902596461238652930",parentId:"1902560510768549889",url:le("/static/index/diet","Sputuma_",7,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911232974491650",title:"呕吐",tagName:null}],levle:"2",title:"呕吐",key:"1902596886771765250",parentId:"1902560510768549889",url:le("/static/index/diet","vomiting_",6,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902911378349068290",title:"腹腔引流护理",tagName:null}],levle:"2",title:"引流",key:"1902596940366581762",parentId:"1902560510768549889",url:le("/static/index/diet","drainage_",6,"png",1,!1)}],levle:"1",title:"5 排泄照料",key:"1902560510768549889"}],ie=s(e.defineComponent({__name:"index",props:{isshow:{type:Boolean,required:!0},darkFans:{type:Boolean},canmove:{type:Boolean},liang:{type:Object},isold:{type:Boolean,required:!0},propsmove:{type:Number},isMain:{type:Boolean}},emits:["vip","changeold"],setup(t,{expose:a,emit:i}){const o=t;e.watch((()=>o.isMain),((e,t)=>{o.isshow&&(!0===t&&!1===e?(xe.value.index0=8,xe.value.index1=0,X.value=!0):!1===t&&!0===e&&(xe.value.index0=-1,xe.value.index1=-1))})),e.watch((()=>o.isold),(()=>{o.isold&&(dt(),I.value=1,U.value=1,e.nextTick((()=>{U.value=0,I.value=700})))})),e.watch((()=>o.canmove),(()=>{Pe.value=!1})),e.watch((()=>o.isshow),((t,l)=>{t!==l&&(Pe.value=!1,Ue.value=!1,at.value?at.value--:(dt(),I.value=1,U.value=1,e.nextTick((()=>{U.value=0,I.value=775}))),we.value=0,E.value=!E.value)}));const c=e.ref(!1),s=e.ref(-1),d=e.ref(!1),m=e.ref(-1);e.watch((()=>o.propsmove),(()=>{if(d.value)switch(o.propsmove){case 0:m.value-3>0?m.value=m.value-3:m.value=0;break;case 1:m.value>5||m.value++;break;case 2:m.value+3>5?m.value=6:m.value=m.value+3;break;case 3:m.value&&m.value--;break;case 4:y(m.value);break;case 5:v.value=!1,g.value=!1,d.value=!1,c.value=!1,G.value=1}else if(c.value)switch(o.propsmove){case 0:s.value-3>0?s.value=s.value-3:s.value=0;break;case 1:s.value>3||s.value++;break;case 2:s.value+3>3?s.value=4:s.value=s.value+3;break;case 3:s.value&&s.value--;break;case 4:N(s.value);break;case 5:v.value=!1,g.value=!1,d.value=!1,c.value=!1,G.value=0}else if(4===o.propsmove)if(X.value)Ze();else switch(G.value){case 0:g.value=!1,v.value=!v.value,c.value=!0,s.value=0;break;case 1:v.value=!1,g.value=!g.value,d.value=!0,m.value=0;break;case 2:et();break;default:ze()}else X.value?H(o.propsmove):Q(o.propsmove)}));const u=e.ref(!1),v=e.ref(!1),g=e.ref(!1);e.watch((()=>v.value),(()=>{setTimeout((()=>{u.value=v.value,ye("vip",u.value)}),50)}));const w=e.ref(!1);e.watch((()=>g.value),(()=>{setTimeout((()=>{w.value=g.value,ye("vip",w.value)}),50)}));const h=e.ref([]),f=e.ref([]),N=e=>{h.value.includes(e)?h.value=h.value.filter((t=>t!==e)):h.value.length>1?uni.showToast({title:"标签最多只能添加两个",icon:"none",duration:2e3}):h.value.push(e)},y=e=>{f.value.includes(e)?f.value=f.value.filter((t=>t!==e)):f.value.length>1?uni.showToast({title:"标签最多只能添加两个",icon:"none",duration:2e3}):f.value.push(e)},x=e.ref(!1),E=e.ref(!1),V=e.ref([{name:"纸尿裤",url:"/static/index/niao.png",target:"#fff",id:-1},{name:"呕吐",url:"/static/index/tu.png",target:"#fff",id:-1},{name:"吸痰",url:"/static/index/ou.png",target:"#fff",id:-1},{name:"大便",url:"/static/index/baba.png",target:"#fff",id:-1},{name:"纸尿裤",url:"/static/index/niao.png",target:"#fff",id:-1},{name:"呕吐",url:"/static/index/tu.png",target:"#fff",id:-1},{name:"吸痰",url:"/static/index/ou.png",target:"#fff",id:-1},{name:"大便",url:"/static/index/baba.png",target:"#fff",id:-1}]),b=["标准","超重","强直","偏瘫","佝偻","稳定","焦虑","抑郁","暴力","恐惧","烦躁","易怒","臆想"],k=["周一","周二","周三","周四","周五","周六","周日"],T=Array.from({length:31},((e,t)=>(t+1).toString().padStart(2,"0"))),D=e.ref(!0),C=e.ref(!1),S=e.ref(0),B=e.ref(0),z=e.ref(0),I=e.ref(678),U=e.ref(0),F=e.ref();e.ref([]);const $=e.ref(!1),M=e.ref([]),A=e.ref(!1);e.ref(!1);const L=e.ref(!1);e.ref(!1),e.ref(!1),e.ref(""),e.ref(!1);const O=e.ref(!1);e.ref("");const P=e.ref(!1);e.ref(0),e.ref(0),e.ref(6),e.ref(11),e.ref(0),e.ref(3);const j=e.ref(!1),q=e.computed((()=>_e.value[0]&&_e.value[1]?"left-bottom":!_e.value[0]&&_e.value[1]?"right-bottom":_e.value[0]&&!_e.value[1]?"left-top":"right-top"));e.onMounted((()=>{fe.value=0,p({url:`${uni.getStorageSync("serverUrl")}/nuIpadApi/nuConfigServiceCategory/getServiceTree`,method:"get"}).then((e=>{l("log","at pages/NursingNew/component/nurse/index.vue:930","res",e)}))}));const R=e.ref(0);const W=()=>{let e=JSON.parse(JSON.stringify(nt.value[De.value.index0].children[De.value.index1]));We.value=[xe.value.index0,xe.value.index1];let t=nt.value[De.value.index0].children[De.value.index1].typeName;nt.value[De.value.index0].children[De.value.index1]={directiveName:"",typeName:t};let l=nt.value[We.value[0]].children[We.value[1]].typeName;nt.value[We.value[0]].children[We.value[1]]=e,nt.value[We.value[0]].children[We.value[1]].typeName=l;let a=nt.value[We.value[0]].children[We.value[1]].startTime,i=nt.value[We.value[0]].children[We.value[1]].endTime,r=nt.value[We.value[0]].positioning;const n=a.split(":")[1],o=i.split(":")[1];let c=Number(o)-Number(n),s=l,d=Number(s)+c;nt.value[We.value[0]].children[We.value[1]].startTime=r+":"+s.padStart(2,"0"),nt.value[We.value[0]].children[We.value[1]].endTime=r+":"+String(d%60).padStart(2,"0"),De.value.index0=-1,De.value.index1=-1,j.value=!1;let m={index0:xe.value.index0,index1:xe.value.index1};it(m)},Y=t=>{5!==t?(C.value=!1,ee.value=-1,ie.value=-1,K.value="",le.value="",B.value=1,S.value=1,fe.value=-1,e.nextTick((()=>{B.value=0,S.value=0,fe.value=0})),he.value=0,we.value=t,F.value=M.value[t].children,Ne.value=0):uni.navigateTo({url:"/pages/watch/index"})},J=()=>{re.value=!1,j.value?W():nt.value[xe.value.index0].children[xe.value.index1].directiveName&&(De.value.index0=xe.value.index0,De.value.index1=xe.value.index1,j.value=!0)};e.ref(!0),e.ref(!1);const X=e.ref(!1),Z=e.ref(-1),H=e=>{switch(re.value=!1,e){case 0:xe.value.index1?(xe.value.index1--,dt(),A.value=!1,x.value&&setTimeout((()=>{Ie(nt.value[xe.value.index0].children[xe.value.index1],xe.value.index0,xe.value.index1)}),50)):(G.value=0,Z.value=xe.value.index0,X.value=!1);break;case 1:if(23==xe.value.index0)return;xe.value.index0++,dt(),A.value=!1,x.value&&setTimeout((()=>{Ie(nt.value[xe.value.index0].children[xe.value.index1],xe.value.index0,xe.value.index1)}),50);break;case 2:if(11==xe.value.index1)return;xe.value.index1++,dt(),A.value=!1,x.value&&setTimeout((()=>{Ie(nt.value[xe.value.index0].children[xe.value.index1],xe.value.index0,xe.value.index1)}),50);break;case 3:if(0==xe.value.index0)return;xe.value.index0--,dt(),A.value=!1,x.value&&setTimeout((()=>{Ie(nt.value[xe.value.index0].children[xe.value.index1],xe.value.index0,xe.value.index1)}),50)}},G=e.ref(-1),Q=e=>{switch(re.value=!1,e){case 0:break;case 1:G.value<3&&G.value++;break;case 2:v.value=!1,g.value=!1,G.value=-1,xe.value.index0=Z.value,X.value=!0;break;case 3:G.value&&G.value--}},K=e.ref(""),ee=e.ref(-1),le=e.ref(""),ie=e.ref(-1),re=e.ref(!1),ne=()=>{De.value.index0=-1,De.value.index1=-1,j.value=!1,nt.value[xe.value.index0].children[xe.value.index1].directiveName&&(re.value?(re.value=!1,$e(xe.value.index0,xe.value.index1)):re.value=!0)};function oe(e,t){return 2*function(e,t){const l=55.9898*e+78.233*t;return Math.abs(43758.5453*Math.sin(l))%1}(e,t)}e.ref(!1),e.ref(0);const ce=e.ref(0),se=e.ref(0);function de(e){let t=e.detail.scrollTop;ce.value=e.detail.scrollTop;let l=parseFloat(t.toFixed(2));se.value=l}const me=e.ref(0);function ue(e){me.value=e.detail.scrollLeft}e.ref(!0);const ve=(e,t,l)=>"日常"===e.cycleType?De.value.index0===t&&De.value.index1===l?"title-time-border-yellow-active-transparent":Ue.value?"title-time-border-yellow-active":"title-time-border-yellow":e.cycleType?De.value.index0===t&&De.value.index1===l?"title-time-border-pouple-active-transparent":Ue.value?"title-time-border-pouple-active":"title-time-border-pouple":"title-time-border";function pe(e,t,l,a="png",i=0,r=!1){return Array.from({length:l},((l,n)=>{const o=r?String(n+i).padStart(2,"0"):n+i;return`${e}/${t}${o}.${a}`}))}const ge=e.ref([{url:pe("/static/index/newruler","daily_",6,"png",1,!1),name:"日常"},{url:pe("/static/index/newruler","clean_",8,"png",1,!1),name:"清洁"},{url:pe("/static/index/newruler","diet_",7,"png",1,!1),name:"饮食"},{url:pe("/static/index/newruler","sleep_",5,"png",1,!1),name:"睡眠"},{url:pe("/static/index/newruler","defecate_",5,"png",1,!1),name:"排泻"}]),we=e.ref(1),he=e.ref(0),fe=e.ref(-1),Ne=e.ref(0);e.ref(!1),e.ref([]);const ye=i;e.ref(!1);const xe=e.ref({index0:-1,index1:-1});e.ref(0),e.ref([]);const Ee=e.ref(null);e.ref({});const Ve=e.ref(0),be=e.ref(0),ke=e.ref(0),Te=e.ref(0),De=e.ref({index0:999,index1:999,typeName:""});e.ref(-1),e.ref(!1);const Ce=e.ref(!1),Se=e.ref(-1),Be=e.ref(!1),ze=()=>{Be.value=!0,Ce.value=!1,setTimeout((()=>{Ce.value=!0}),100)},_e=e.ref([!1,!1]),Ie=(t,l,a)=>{if(t.directiveName){Se.value=a;uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.left>100&&t.left<1067&&t.top<670&&t.top>50&&t.dataset.index0==l&&t.dataset.index1==a&&(t.left>100&&t.left<500?(ke.value=Math.floor(t.left)+528,_e.value[0]=!0):(ke.value=Math.floor(t.left)-18,_e.value[0]=!1),t.top>500?(Te.value=Math.floor(t.top)+100,_e.value[1]=!0):(Te.value=Math.floor(t.top)+180,_e.value[1]=!1),await e.nextTick(),A.value=!0,L.value=!1,setTimeout((()=>{L.value=!0}),100))}))})).exec()}},Ue=e.ref(!1);e.ref([]);const Fe=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-Ve.value)>0||Math.abs(l-be.value)>0)&&Ee.value&&(clearTimeout(Ee.value),Ee.value=null)},$e=(e,t)=>{let l=nt.value[e].children[t].typeName;nt.value[e].children[t]={directiveName:"",typeName:l}};e.ref(null),e.ref(!1),e.ref(!1);const Me=e.ref(0),Ae=e.ref(0),Le=e.ref(!1);e.ref(""),e.ref("");const Oe=e.ref(null),Pe=e.ref(!1),je=e=>{Me.value=Math.floor(e.touches[0].pageX),Ae.value=Math.floor(e.touches[0].pageY),Oe.value=setTimeout((()=>{Pe.value=!0}),500)},qe=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-Me.value)>0||Math.abs(l-Ae.value)>0)&&Oe.value&&(clearTimeout(Oe.value),Oe.value=null)},Re=()=>{Oe.value&&(clearTimeout(Oe.value),Oe.value=null)};e.ref({time:"",minute:"",array:[]}),e.ref({op:{name:"",index:[-1,-1,-1]},startTime:"",weekTimeNumber:-1,monthTimeNumber:-1,monthTime:"",weekTime:""}),e.ref(0);const We=e.ref([-1,-1]);e.ref(null);const Ye=()=>{P.value=!1,O.value=!0,setTimeout((()=>{P.value=!0}),50)},Je=e.ref(!1);let Xe=null;async function Ze(){Xe&&(clearTimeout(Xe),Xe=null),Je.value=!1,await e.nextTick(),Je.value=!0,He(),Xe=setTimeout((()=>{Je.value=!1,Xe=null}),1e3)}e.onBeforeUnmount((()=>{Xe&&clearTimeout(Xe)}));const He=()=>{if(-1===xe.value.index1&&-1===xe.value.index0)return;if(re.value)return re.value=!1,void $e(xe.value.index0,xe.value.index1);if(j.value)return void W();De.value.index0=-1,De.value.index1=-1,j.value=!1;let t=!1,l=M.value[we.value].children[he.value].children[Ne.value];if("即时护理"===l.cycleType)return z.value=1,V.value.forEach(((e,a)=>{e.id===l.id&&(t=!0)})),void e.nextTick((()=>{t?(clearTimeout(Qe.value),$.value=!0,Qe.value=setTimeout((()=>{$.value=!1}),1500)):(z.value=0,V.value.length&&"#03a4ff"===V.value[0].target&&(V.value[0].target="#fff",clearTimeout(Ge.value)),V.value.unshift({name:l.title,url:"/static/index/ou.png",target:"#03a4ff",id:l.id}),Ge.value=setTimeout((()=>{V.value[0].target="#fff"}),1500))}));if("周期护理"===l.cycleType&&C.value&&-1==ee.value&&-1==ie.value)return;if("周期护理"===l.cycleType&&!C.value)return void(C.value=!0);let a="";"日常护理"===l.cycleType?a="日常":(a=-1!==ee.value?K.value:le.value+"号",C.value=!1,ee.value=-1,ie.value=-1,K.value="",le.value="");const i=Number(xe.value.index0),r=Number(nt.value[xe.value.index0].children[xe.value.index1].typeName),n=r+10,o=i+Math.floor(n/60),c=`${String(i)}:${String(r).padStart(2,"0")}`,s=`${String(o)}:${String(n%60).padStart(2,"0")}`;nt.value[xe.value.index0].children[xe.value.index1].startTime=c,nt.value[xe.value.index0].children[xe.value.index1].endTime=s;let d={directiveId:l.id,directiveName:l.title,startTime:c,endTime:s,positioning:xe.value.index0.toString(),positioningLong:xe.value.index1.toString(),tagName:l.tagName,cycleType:a,nuId:"1",customerId:"1",id:"",typeName:nt.value[xe.value.index0].children[xe.value.index1].typeName};nt.value[xe.value.index0].children[xe.value.index1]=d;let m={index0:xe.value.index0,index1:xe.value.index1};it(m),Ke()},Ge=e.ref(null),Qe=e.ref(null),Ke=()=>{nt.value.forEach(((e,t)=>{e.children.forEach(((e,l)=>{let a="";if(e.directiveName||e.id)e.positioning=t,e.positioningLong=l;else{let i={};e.typeName&&(a=e.typeName),i=JSON.parse(JSON.stringify(ct.value)),a&&(i.typeName=a),i.positioning=t,i.positioningLong=l}}))}))},et=()=>{uni.setStorage({key:"myArray",data:nt.value,success:function(){uni.navigateTo({url:"/pages/timeMatrix/indexnew"})}})},tt=e.ref({index0:-1,index1:-1}),lt=e.ref({index0:-1,index1:-1,current:-1,bordershow:!0}),at=e.ref(0),it=e=>{xe.value.index0=e.index0,xe.value.index1=e.index1,dt(),lt.value.index0=e.index0,lt.value.index1=e.index1,tt.value.index0=lt.value.index0,tt.value.index1=lt.value.index1,lt.value.bordershow=!1,setTimeout((()=>{lt.value.index0=-1,lt.value.index1=-1,lt.value.current=-1}),400),setTimeout((()=>{lt.value.bordershow=!0,tt.value.index0=-1,tt.value.index1=-1}),1e3)},rt=["00","05","10","15","20","25","30","35","40","45","50","55"],nt=e.ref(Array.from({length:24},((e,t)=>({positioning:t.toString(),children:rt.map((e=>({typeName:e,directiveName:""})))}))));function ot(e){at.value=3,it(e)}r((()=>{M.value=ae,F.value=M.value[0].children,uni.$on("where",ot)})),n((()=>{uni.$off("where",ot)})),a({rulerMoveEnd:e=>{if(999!==o.liang.index0&&e.cycleType){We.value=[o.liang.index0,o.liang.index1];let t=nt.value[De.value.index0].children[De.value.index1].typeName;nt.value[De.value.index0].children[De.value.index1]={directiveName:"",typeName:t};let l=nt.value[We.value[0]].children[We.value[1]].typeName;nt.value[We.value[0]].children[We.value[1]]=e,nt.value[We.value[0]].children[We.value[1]].typeName=l;let a=nt.value[We.value[0]].children[We.value[1]].startTime,i=nt.value[We.value[0]].children[We.value[1]].endTime,r=nt.value[We.value[0]].positioning;const n=a.split(":")[1],c=i.split(":")[1];let s=Number(c)-Number(n),d=l,m=Number(d)+s;nt.value[We.value[0]].children[We.value[1]].startTime=r+":"+d.padStart(2,"0"),nt.value[We.value[0]].children[We.value[1]].endTime=r+":"+String(m%60).padStart(2,"0")}}}),e.ref({index0:999,index1:999});const ct=e.ref({directiveId:"",directiveName:"",startTime:"",endTime:"",positioning:"",positioningLong:"",tagName:"",cycleType:"",nuId:"1",customerId:"1",id:"",typeName:""});function st(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}function dt(){if(xe.value.index0>=0&&xe.value.index0<=24&&xe.value.index1>=0&&xe.value.index1<=11){const e=259*(xe.value.index0+.5),t=250.5*(xe.value.index1-1);I.value=e-650,U.value=t-250;const l=6216,a=2755.5;I.value=Math.max(0,Math.min(I.value,l-1300))/2,U.value=Math.max(0,Math.min(U.value,a-500))/2}}return(l,a)=>{var i,r;const n=e.resolveComponent("donghua");return e.openBlock(),e.createElementBlock("view",{class:"right-container",style:e.normalizeStyle(t.isshow?{opacity:"1"}:{opacity:"0"}),onClick:a[15]||(a[15]=e=>{Pe.value=!1,Ue.value=!1})},[e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{style:{"margin-left":"30rpx"}}," NUID:2508000001 "),e.createElementVNode("text",{class:"new-weight"}," 护理单元01 "),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-right":"25rpx",padding:"0 15rpx"},class:e.normalizeClass(G.value||c.value||d.value?"":"firsttarget")},[e.createElementVNode("view",{class:"mark"},[e.createElementVNode("view",{style:{"margin-right":"15rpx"}}," 体型标签: "),e.withDirectives(e.createElementVNode("view",{class:"mark-bgc",style:e.normalizeStyle({opacity:u.value?1:0})},[e.createElementVNode("view",{style:{"margin-top":"40rpx","margin-bottom":"30rpx","margin-left":"50rpx","font-size":"32rpx"}},[e.createElementVNode("view",null," 体型标签 ")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(b.slice(0,5),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>N(l)},[e.createElementVNode("view",{class:e.normalizeClass(["tags-father",s.value===l?"secondtarget":""])},[e.createElementVNode("image",{class:"tags-img",src:h.value.includes(l)?`/static/index/tagNames/${l}1.png`:`/static/index/tagNames/${l}0.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font",style:e.normalizeStyle(h.value.includes(l)?{color:"rgb(54, 159, 239)"}:{})},e.toDisplayString(t),5)],2)],8,["onClick"])))),128))])],4),[[e.vShow,v.value]])]),e.createElementVNode("view",{class:"marknone",onClick:a[0]||(a[0]=e=>{v.value=!v.value,g.value=!1})},[h.value.length?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,style:{"margin-top":"-3rpx"}}," 未选择 ")),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(h.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("image",{class:"tags-img",style:{width:"40rpx",height:"40rpx",margin:"0 10rpx"},src:`/static/index/tagNames/${t}0.png`},null,8,["src"])])))),128))]),e.createElementVNode("view",{class:"tri-down",onClick:a[1]||(a[1]=e=>{v.value=!v.value,g.value=!1})})],2),e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-right":"15rpx",padding:"0 15rpx"},class:e.normalizeClass(1!==G.value||c.value||d.value?"":"firsttarget")},[e.createElementVNode("view",{class:"mark"},[e.createTextVNode(" 情绪标签: "),e.withDirectives(e.createElementVNode("view",{class:"mark-bgc",style:e.normalizeStyle({opacity:w.value?1:0})},[e.createElementVNode("view",{style:{"margin-top":"40rpx","margin-bottom":"30rpx","margin-left":"50rpx","font-size":"32rpx"}},[e.createElementVNode("view",null," 情绪标签 ")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(b.slice(5,12),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>y(l)},[e.createElementVNode("view",{class:e.normalizeClass(["tags-father",m.value===l?"secondtarget":""])},[e.createElementVNode("image",{class:"tags-img",src:f.value.includes(l)?`/static/index/tagNames/${l+5}1.png`:`/static/index/tagNames/${l+5}0.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font",style:e.normalizeStyle(f.value.includes(l)?{color:"rgb(54, 159, 239)"}:{})},e.toDisplayString(t),5)],2)],8,["onClick"])))),128))])],4),[[e.vShow,g.value]])]),e.createElementVNode("view",{class:"marknone",onClick:a[2]||(a[2]=e=>{g.value=!g.value,v.value=!1})},[f.value.length?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,style:{"margin-top":"-3rpx"}}," 未选择 ")),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(f.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("image",{class:"tags-img",style:{width:"40rpx",height:"40rpx",margin:"0 10rpx"},src:`/static/index/tagNames/${t+5}0.png`},null,8,["src"])])))),128))]),e.createElementVNode("view",{class:"tri-down",onClick:a[3]||(a[3]=e=>{g.value=!g.value,v.value=!1})})],2),e.createElementVNode("view",{class:e.normalizeClass(["white-button",2===G.value?"firsttarget":""]),onClick:et},[e.createElementVNode("image",{class:"white-img",src:"/static/index/newruler/yulan.png"},null,8,["src"]),e.createTextVNode(" 预览 ")],2),e.createElementVNode("view",{class:e.normalizeClass(["white-button",3===G.value?"firsttarget":""]),onClick:ze},[e.createElementVNode("image",{class:"white-img",src:"/static/index/newruler/fenxiang.png"},null,8,["src"]),e.createTextVNode(" 分享 ")],2)])]),e.createElementVNode("view",{class:"doctorsay-container-view"},[e.createElementVNode("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"boom-father"},[e.createElementVNode("view",{class:"boom"},[e.createElementVNode("view",{style:e.normalizeStyle({marginTop:`-${2*se.value}rpx`})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(nt.value[0].children,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.withDirectives(e.createElementVNode("view",{class:"boom-son"},[e.createElementVNode("text",{class:"boom-text"},e.toDisplayString(t.typeName),1)],512),[[e.vShow,t.typeName]])])))),128))],4)])]),e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("scroll-view",{style:{height:"1330rpx",width:"100%",border:"2rpx solid balck"},"scroll-left":I.value,"scroll-x":"",onScroll:ue,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",width:"4824rpx"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(nt.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time"},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),1)])))),128))]),e.createElementVNode("view",{style:{display:"flex",height:"calc(100% - 80rpx)",position:"relative"}},[e.createElementVNode("view",{class:"xian-bian"}),e.createElementVNode("scroll-view",{style:{height:"100%",width:"6744rpx"},"scroll-top":U.value,"scroll-y":!0,onScroll:de,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(nt.value,((l,i)=>(e.openBlock(),e.createElementBlock("view",{key:i},[e.createElementVNode("view",{class:"super-card-time-und"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.children,((l,r)=>(e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:r},[e.createElementVNode("view",{class:e.normalizeClass(lt.value.index0===i&<.value.index1===r?lt.value.index1?"title-time-border-big":"title-time-border-big-top":"super-card-time-card"),style:e.normalizeStyle([lt.value.bordershow||tt.value.index0!==i||tt.value.index1!==r?{borderBottom:"1rpx solid transparent"}:{zIndex:999},{position:"relative"}]),id:`a${i}_${r}`,onClick:e=>Ie(l,i,r),onTouchstart:e=>{},onTouchmove:Fe,onTouchend:a[4]||(a[4]=e=>(Le.value=!1,void(Ee.value&&(clearTimeout(Ee.value),Ee.value=null)))),"data-index0":i,"data-index1":r},[De.value.index0===i&&De.value.index1===r&&0==r?(e.openBlock(),e.createElementBlock("view",{key:0,class:"time-button-orange-spe",style:e.normalizeStyle({left:De.value.index0?"-130rpx":"0"})}," 请选择服务指令迁移的目标单元格 ",4)):e.createCommentVNode("",!0),De.value.index0===i&&De.value.index1===r&&r?(e.openBlock(),e.createElementBlock("view",{key:1,class:"time-button-orange",style:e.normalizeStyle({left:De.value.index0?"-130rpx":"0"})}," 请选择服务指令迁移的目标单元格 ",4)):e.createCommentVNode("",!0),xe.value.index0==i&&xe.value.index1==r&&0==r&&re.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"time-button-black-spe",style:e.normalizeStyle({left:xe.value.index0?"-220rpx":"0"})}," 是否确认删除该服务指令 ",4)):e.createCommentVNode("",!0),xe.value.index0==i&&xe.value.index1==r&&r&&re.value?(e.openBlock(),e.createElementBlock("view",{key:3,class:"time-button-black",style:e.normalizeStyle({left:xe.value.index0?"-220rpx":"0"})}," 是否确认删除该服务指令 ",4)):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{class:"title-time-blue"},null,512),[[e.vShow,xe.value.index0==i&&xe.value.index1==r&&X.value]]),e.createElementVNode("view",{class:e.normalizeClass(ve(l,i,r)),style:e.normalizeStyle([{"font-size":"30rpx",overflow:"hidden"},{animationDelay:`-${oe(i,r).toFixed(2)}s`}])},[l.startTime?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"flex-direction":"column"}},[e.withDirectives(e.createElementVNode("image",{style:{width:"60rpx",height:"60rpx",margin:"0 auto","margin-top":"30rpx"},src:_},null,512),[[e.vShow,l.startTime]]),e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(l.startTime+"-"+l.endTime),1),"日常"!=l.cycleType?(e.openBlock(),e.createElementBlock("image",{key:0,class:"title-time-button",style:{width:"80rpx",height:"48rpx"},src:te})):e.createCommentVNode("",!0),"日常"!=l.cycleType?(e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font",style:{right:"10rpx",top:"5rpx","font-size":"23rpx"}},e.toDisplayString(l.cycleType),1)):e.createCommentVNode("",!0)],512)),[[e.vShow,t.liang.index0!==i||t.liang.index1!==r||t.canmove]]):e.createCommentVNode("",!0),l.startTime?(e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font-rel"},e.toDisplayString(st(l.directiveName)[0]),1)):e.createCommentVNode("",!0)],6)],46,["id","onClick","onTouchstart","data-index0","data-index1"])])))),128))])])))),128))])],40,["scroll-top"])])],40,["scroll-left"])]),e.createElementVNode("view",{class:"right-cards"},[e.createElementVNode("view",{style:{"margin-top":"60rpx","margin-left":"30rpx"}},[e.createElementVNode("view",{class:""}," 即时指令 "),e.createElementVNode("view",{style:{width:"30rpx",height:"6rpx","background-color":"black","margin-left":"40rpx","margin-top":"3rpx","border-radius":"20rpx"}})]),e.createElementVNode("scroll-view",{"scroll-x":"",class:"scroll-box","scroll-left":z.value},[e.createElementVNode("view",{class:"right-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(V.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"right-box-item",onTouchstart:je,onTouchmove:qe,onTouchend:Re,style:e.normalizeStyle(t.target?{background:t.target,transition:"all 1.5s ease-in-out"}:{transition:"all 1.5s ease-in-out"})},[e.createElementVNode("view",{style:e.normalizeStyle({animationDelay:`-${.1*l}s`}),class:e.normalizeClass(Pe.value?"super-end-items-img-father-active":"super-end-items-img-father")},[e.createElementVNode("image",{class:"right-box-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"right-box-font"},e.toDisplayString(t.name),1)],6),e.withDirectives(e.createElementVNode("view",{class:"super-end-items-father-close-father",onClick:e.withModifiers((e=>V.value.splice(l,1)),["stop"])}," - ",8,["onClick"]),[[e.vShow,Pe.value]])],36)])))),128))])],8,["scroll-left"]),e.createElementVNode("view",{class:"middle-box"},[e.createElementVNode("view",{class:"middle-left-box"},[e.createElementVNode("view",{class:"first-contant"},[e.withDirectives(e.createElementVNode("view",{class:"time-father"},[e.withDirectives(e.createElementVNode("view",{class:"time-button"},[e.createElementVNode("view",{class:"time-button-month"},"周"),e.createElementVNode("view",{class:"time-button-week",onClick:a[5]||(a[5]=e=>{D.value=!1,ee.value=-1,K.value=""})},"月")],512),[[e.vShow,D.value]]),e.withDirectives(e.createElementVNode("view",{class:"time-button"},[e.createElementVNode("view",{class:"time-button-month-target",onClick:a[6]||(a[6]=e=>{D.value=!0,ie.value=-1,le.value=""})},"周"),e.createElementVNode("view",{class:"time-button-week-target"},"月")],512),[[e.vShow,!D.value]]),e.createElementVNode("scroll-view",{"scroll-y":"",style:{width:"100%",height:"600rpx"},"show-scrollbar":!1,"scroll-top":S.value},[D.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},e.renderList(k,((t,l)=>e.createElementVNode("view",{key:l,onClick:e=>((e,t)=>{const l=Date.now();l-R.value<300?(K.value=e,ee.value=t,He(),R.value=0):(K.value=e,ee.value=t,R.value=l)})(t,l)},[e.createElementVNode("view",{class:e.normalizeClass(ee.value===l?"items-card-target":"items-card")},e.toDisplayString(t),3)],8,["onClick"]))),64)):e.createCommentVNode("",!0),D.value?e.createCommentVNode("",!0):(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(e.unref(T),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>((e,t)=>{const l=Date.now();l-R.value<300?(le.value=e,ie.value=t,He(),R.value=0):(le.value=e,ie.value=t,R.value=l)})(t,l)},[e.createElementVNode("view",{class:e.normalizeClass(ie.value===l?"items-card-target":"items-card")},e.toDisplayString(t),3)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"40rpx"}})],8,["scroll-top"])],512),[[e.vShow,C.value]]),e.withDirectives(e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%",width:"100%"},"show-scrollbar":!1,"scroll-top":S.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(M.value[we.value].children[he.value].children,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>function(e){const t=Date.now();Ne.value=e,t-R.value<300?(Ne.value=e,He(),R.value=0):(Ne.value=e,R.value=t)}(l)},[e.createElementVNode("view",{class:"right-box-item",style:e.normalizeStyle(Ne.value==l?{border:"2rpx solid rgb(229, 233, 249)",backgroundColor:"#fff"}:{border:"2rpx solid rgb(229, 233, 249)"})},[e.withDirectives(e.createElementVNode("view",{class:"title-time-button-font"}," 周期 ",512),[[e.vShow,"周期护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("view",{class:"title-time-button-font"}," 即时 ",512),[[e.vShow,"即时护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:te},null,512),[[e.vShow,"周期护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:te},null,512),[[e.vShow,"即时护理"===t.cycleType]]),e.createElementVNode("image",{class:"right-box-img",src:_}),e.createElementVNode("view",{class:"right-box-font",style:e.normalizeStyle([{"font-size":"20rpx","margin-top":"2rpx"},Ne.value==l?{color:"rgb(54, 159, 239)"}:{}])},e.toDisplayString(t.title),5)],4)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"20rpx"}})],8,["scroll-top"]),[[e.vShow,!C.value]])]),e.createElementVNode("view",{class:"second-contant"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%",width:"100%"},"show-scrollbar":!1,"scroll-top":B.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(F.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(fe.value==l?"downList-box-target":"downList-box"),onClick:t=>(t=>{C.value=!1,ee.value=-1,ie.value=-1,K.value="",le.value="",he.value=t,fe.value=t,Ne.value=0,S.value=1,e.nextTick((()=>{S.value=0}))})(l)},[e.createVNode(n,{width:"55rpx",height:"55rpx",links:t.url,playing:fe.value==l,interval:120},null,8,["links","playing"]),e.createElementVNode("view",{class:"downList-box-text"},e.toDisplayString(t.title),1)],10,["onClick"])])))),128)),e.createElementVNode("view",{style:{height:"20rpx"}})],8,["scroll-top"])])]),e.createElementVNode("view",{class:"middle-right-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(ge.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>Y(l)},[e.createElementVNode("view",{class:"doctorsay-container-card"},[e.createVNode(n,{width:"55rpx",height:"55rpx",links:t.url,playing:l===we.value,interval:120},null,8,["links","playing"]),e.createElementVNode("view",{class:e.normalizeClass(l===we.value?"doctorsay-container-card-font-dark":"doctorsay-container-card-font")},e.toDisplayString(t.name),3)])],8,["onClick"])))),128))])]),e.createElementVNode("view",{class:"under-button"},[$.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"under-button-black"}," 不能重复添加相同的即时服务指令 ")):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"white-circle",onClick:J},[e.createElementVNode("image",{class:"white-circle-img",src:`/static/index/keyimg/movebutton${j.value?"blue":""}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"white-circle",onClick:ne},[e.createElementVNode("image",{class:"white-circle-img",src:`/static/index/keyimg/deletebutton${re.value?"blue":""}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"white-circle",onClick:Ye},[e.createElementVNode("image",{class:"white-circle-img",src:`/static/index/keyimg/notebutton${O.value?"blue":""}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"white-circle",onClick:a[7]||(a[7]=e=>x.value=!x.value)},[e.createElementVNode("image",{class:"white-circle-img",src:`/static/index/keyimg/open${x.value?"blue":""}.png`},null,8,["src"])]),e.createElementVNode("view",{style:{position:"relative"}},[e.createElementVNode("view",{ref:"btnRef",class:e.normalizeClass(["white-circle-click-father",{anim:Je.value}]),style:e.normalizeStyle({color:Je.value?"#fff":""}),onClick:Ze},[e.createElementVNode("view",{style:{"z-index":"999"}}," 确定 ")],6),e.createElementVNode("view",{class:"white-circle-click-father-spec",onClick:a[8]||(a[8]=e=>Y(5))},[e.createElementVNode("view",{class:"other-father"},[e.createElementVNode("image",{style:{width:"55rpx",height:"55rpx"},src:"/static/index/newruler/monitor_1.png"}),e.createElementVNode("view",{style:{"z-index":"999","font-size":"25rpx"}}," 监控 ")])])])])])])])]),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay",onClick:a[10]||(a[10]=e=>{A.value=!1,De.value.index0=999,Se.value=-1})},[e.createElementVNode("view",{class:e.normalizeClass(["popup-overlay-content",q.value]),style:e.normalizeStyle({top:2*Te.value-350+"rpx",left:2*ke.value-780+"rpx",opacity:L.value?1:0}),onClick:a[9]||(a[9]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"},e.toDisplayString(null==(r=null==(i=nt.value[De.value.index0])?void 0:i.children[De.value.index1])?void 0:r.value),1)]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],6)],512),[[e.vShow,A.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-say",onClick:a[12]||(a[12]=e=>O.value=!1)},[e.createElementVNode("view",{class:"popup-say-content",style:e.normalizeStyle([{padding:"30rpx 0"},{opacity:P.value?1:0}]),onClick:a[11]||(a[11]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{style:{"margin-top":"20rpx","margin-bottom":"20rpx","margin-left":"30rpx","font-size":"32rpx"}},[e.createElementVNode("view",null," 体型标签 ")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(b.slice(0,5),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"tags-father"},[e.createElementVNode("image",{class:"tags-img",src:`/static/index/tagNames/${l}0.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font"},e.toDisplayString(t),1)])])))),128))]),e.createElementVNode("view",{style:{"margin-top":"40rpx","margin-bottom":"20rpx","margin-left":"30rpx","font-size":"32rpx"}},[e.createElementVNode("view",null," 情绪标签 ")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(b.slice(5,12),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"tags-father"},[e.createElementVNode("image",{class:"tags-img",src:`/static/index/tagNames/${l+5}0.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font"},e.toDisplayString(t),1)])])))),128))]),e.createElementVNode("view",{class:"popup-say-three"})],4)],512),[[e.vShow,O.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-share",onClick:a[14]||(a[14]=e=>Be.value=!1)},[e.createElementVNode("view",{class:"popup-share-content",style:e.normalizeStyle({opacity:Ce.value?1:0}),onClick:a[13]||(a[13]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"share-other"},[e.createElementVNode("view",{class:"share-title"},[e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx"},src:"/static/index/sharelogo.png"}),e.createElementVNode("view",{style:{"font-weight":"600","margin-left":"15rpx"}}," 护理单元 ")]),e.createElementVNode("view",{class:"share-others"},[e.createElementVNode("view",{style:{"font-weight":"600","font-size":"45rpx"}}," 护理流程 "),e.createElementVNode("view",{style:{"margin-top":"30rpx"}},[e.createTextVNode(" 护理单元01 "),e.createElementVNode("text",{style:{color:"#1083F8"}}," 王金凤 ")]),e.createElementVNode("view",{class:"blue-button"}," 分享 ")])])],4)],512),[[e.vShow,Be.value]])],4)}}}),[["__scopeId","data-v-08249c72"]]),re=s(e.defineComponent({__name:"index",setup(l){e.onMounted((()=>{o.value=-1,e.nextTick((()=>o.value=0)),m.value=2,uni.getSystemInfoSync(),uni.pageScrollTo,a.value=uni.getStorageSync("realname")}));const a=e.ref("");function i(e,t,l,a="png",i=0,r=!1){return Array.from({length:l},((l,n)=>{const o=r?String(n+i).padStart(2,"0"):n+i;return`${e}/${t}${o}.${a}`}))}const n=e.ref([{url:i("/static/index/newindex/curve","home_",5,"png",1,!1),name:"首页"},{url:i("/static/index/newindex/curve","nurse_",8,"png",1,!1),name:"护嘱"},{url:i("/static/index/newindex/curve","doctor_",6,"png",1,!1),name:"医嘱"},{url:i("/static/index/newindex/curve","lead_",12,"png",1,!1),name:"请领"},{url:i("/static/index/newindex/curve","device_",7,"png",1,!1),name:"设备"}]);e.ref([{url:"/static/index/lefticon/index.png",name:"首页"},{url:"/static/index/lefticon/nurse.png",name:"护嘱"},{url:"/static/index/lefticon/doctor.png",name:"医嘱"},{url:"/static/index/lefticon/give.png",name:"请领"},{url:"/static/index/lefticon/wifi.png",name:"设备"},{url:"/static/index/lefticon/back.png",name:"返回"}]),e.ref([{url:"/static/index/lefticon/index.png",targetUrl:"/static/index/lefticontarget/blueindex.png"},{url:"/static/index/lefticon/nurse.png",targetUrl:"/static/index/lefticontarget/bluenurse.png"},{url:"/static/index/lefticon/doctor.png",targetUrl:"/static/index/lefticontarget/bluedoctor.png"},{url:"/static/index/lefticon/give.png",targetUrl:"/static/index/lefticontarget/givedark.png"},{url:"/static/index/lefticon/wifi.png",targetUrl:"/static/index/lefticontarget/bluewifi.png"},{url:"/static/index/lefticon/back.png",targetUrl:"/static/index/lefticontarget/blueback.png"}]);const o=e.ref(-1),c=e.ref(!1),s=e.ref(!1),d=e.ref(!1),m=e.ref(-1);function u(){t("TestModule").gotoNativePage({deviceId:"4",deviceName:"sdfsfsdf"})}e.ref([]),e.ref(0),e.ref(0),e.ref(0),e.ref(0),e.ref(0);const v=e=>{o.value!==e&&(o.value=e,c.value=!1,s.value=!1,setTimeout((()=>{switch(e){case 0:c.value=!0;break;case 1:s.value=!0}}),50))},p=e=>{z.value=!0,_.value=e,o.value=e,c.value=!1,s.value=!1,5!==e?setTimeout((()=>{switch(e){case 0:c.value=!0;break;case 1:s.value=!0}}),50):uni.navigateBack()},g=e.ref(0),w=e.ref(0),h=e.ref(""),f=e.ref(!0),y=e.ref({index0:999,index1:999}),x=e.ref(!0),E=uni.createAnimation({duration:0,timingFunction:"linear",delay:0}),V=e.ref({}),b=function(e,t){let l=0;return function(...a){const i=Date.now();i-l>=t&&(l=i,e.apply(this,a))}}((e=>{var t;const l=e.touches[0];g.value=2*(Math.floor(l.clientX)-100),w.value=2*(Math.floor(l.clientY)-55),E.translate3d(g.value/2,w.value/2,0).step({duration:0}),V.value=E.export();const a=Math.floor(l.clientX)-50,i=Math.floor(l.clientY)-25,r=k.value.find((e=>a>=Math.floor(e.left)&&a<=Math.floor(e.right)&&i>=Math.floor(e.top)&&i<=Math.floor(e.bottom)));if(r){const{index0:e,index1:l}=r.dataset;y.value.index0=e,y.value.index1=l,g.value<200&&x.value&&!m.value&&(null==(t=D.value)||t.nextItems(),x.value=!1,setTimeout((()=>{x.value=!0}),1e3))}else y.value.index0=999,y.value.index1=999}),40),k=e.ref([]),T=e.ref({directiveName:"",cycleType:"",positioningLong:"0",typeName:"",startTime:"",id:"",endTime:"",tagName:null}),D=e.ref(null),C=e.ref(null),S=()=>{var e,t,l;g.value=9999,w.value=9999,E.translate3d(g.value/2,w.value/2,0).step({duration:0}),V.value=E.export(),f.value=!0,y.value={index0:999,index1:999},h.value?m.value||null==(e=D.value)||e.rulerEnd(h.value):T.value.typeName&&(0===m.value?null==(t=D.value)||t.rulerMoveEnd(T.value):null==(l=C.value)||l.rulerMoveEnd(T.value)),h.value="",T.value={directiveName:"",cycleType:"",positioningLong:"0",typeName:"",startTime:"",id:"",endTime:"",tagName:null}};function B(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}r((()=>{setTimeout((()=>{p(o.value)}),50),c.value=!1,setTimeout((()=>{c.value=!0}),50)}));const z=e.ref(!0),_=e.ref(0),I=e.ref(-1),U=e.ref(!1),F=e=>{U.value=e},$=t=>{if(5===t)return U.value?(I.value=-1,void e.nextTick((()=>I.value=t))):void(z.value?uni.navigateBack():(z.value=!0,_.value=o.value));if(z.value)switch(t){case 0:_.value&&(_.value--,v(_.value));break;case 1:z.value=!1,_.value=-1;break;case 2:_.valueI.value=t))};return(t,l)=>{const a=e.resolveComponent("donghua"),i=e.resolveComponent("arrowkeys");return e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(d.value?"darkbackgroundContainer":"backgroundContainer"),onTouchmove:l[1]||(l[1]=(...t)=>e.unref(b)&&e.unref(b)(...t)),onTouchend:S},[e.withDirectives(e.createElementVNode("view",{class:"move-font",animation:V.value},e.toDisplayString(h.value),9,["animation"]),[[e.vShow,h.value&&g.value]]),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass("日常"==T.value.cycleType?"title-time-border-yellow":"title-time-border-pouple"),animation:V.value,style:{"font-size":"30rpx",overflow:"hidden"}},[e.withDirectives(e.createElementVNode("view",{class:"title-time",style:{"margin-top":"5rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(T.value.startTime+"-"+T.value.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==T.value.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(T.value.cycleType),1)],512),[[e.vShow,T.value.startTime]]),e.createElementVNode("view",{style:{"margin-top":"20rpx","font-weight":"700"}},e.toDisplayString(B(T.value.directiveName)[0]),1),e.withDirectives(e.createElementVNode("view",{class:"down-icons",style:e.normalizeStyle("日常"!=T.value.cycleType?{backgroundColor:"rgb(212,203,255)"}:{})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(B(T.value.directiveName).slice(1),((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:l},[e.createElementVNode("view",{class:"icon",style:e.normalizeStyle("日常"!=T.value.cycleType?{backgroundColor:"rgb(123,97,255)"}:{})},e.toDisplayString(B(T.value.directiveName)[1]),5)])))),128))],4),[[e.vShow,B(T.value.directiveName)[1]]])],10,["animation"]),[[e.vShow,T.value.cycleType]]),e.createElementVNode("view",{class:"left-container"},[e.createElementVNode("view",{class:"left-head",onClick:u},[e.createElementVNode("image",{class:"left-head-img",src:N}),e.createElementVNode("text",{class:e.normalizeClass(d.value?"left-head-font-dark":"left-head-font")}," 王金福 ",2)]),e.createElementVNode("view",{class:"menus-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["menu",_.value===l?"target":""]),style:e.normalizeStyle(_.value===l?{backgroundColor:"#ddf0ff"}:l===o.value?{backgroundColor:"#fff"}:{}),onClick:e=>p(l)},[e.createVNode(a,{width:"65rpx",height:"65rpx",links:t.url,playing:l===o.value},null,8,["links","playing"]),e.createElementVNode("text",{style:{"font-size":"31rpx","margin-left":"15rpx"}},e.toDisplayString(t.name),1)],14,["onClick"])))),128))])]),o.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(ee,{key:0,isShow:c.value,propsmove:I.value,isMain:z.value,onBack:l[0]||(l[0]=e=>$(5))},null,8,["isShow","propsmove","isMain"])),1==o.value&&2===m.value?(e.openBlock(),e.createBlock(ie,{key:1,isold:2===m.value,liang:y.value,isshow:s.value,propsmove:I.value,isMain:z.value,onVip:F},null,8,["isold","liang","isshow","propsmove","isMain"])):e.createCommentVNode("",!0),e.createVNode(i,{onMovecard:$})],34)}}}),[["__scopeId","data-v-8ad00f91"]]),ne=s(e.defineComponent({__name:"index",setup(t){const l=e.ref("");return(t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"请购清单")]),e.createElementVNode("view",{class:"draw-blue"}," 请购单号:A0120250301001 ")]),e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("image",{class:"swiper-card-top-img",src:"/static/index/project3.png"},null,8,["src"]),e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"}," 纸尿裤-拉拉裤 "),e.createElementVNode("view",{class:"weight-right",style:{width:"40%"}}," 采购数量:50 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-black"}," 800mm*690mm ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购单位: "),e.createElementVNode("view",{class:"swiper-black"}," 片 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 库存数量: "),e.createElementVNode("view",{class:"swiper-black"}," 50 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 库存下限: "),e.createElementVNode("view",{class:"swiper-black"}," 10 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 库存上限: "),e.createElementVNode("view",{class:"swiper-black"}," 1000 ")])])])]),e.createElementVNode("view",{class:"swiper-card-down"},[e.createElementVNode("view",{class:"down-left"},[e.createElementVNode("view",{class:"down-left-weight"}," 供应商: "),e.createElementVNode("view",{class:"down-left-font"}," 长春市永佳利商贸有限公司1 ")]),e.createElementVNode("image",{class:"delete-img",src:"/static/index/deleteIt.png"},null,8,["src"])])])]))),64))])])]),e.createElementVNode("view",{class:"down-note"},[e.withDirectives(e.createElementVNode("textarea",{class:"down-note-title-input","onUpdate:modelValue":a[0]||(a[0]=e=>l.value=e),maxlength:"300","placeholder-style":"color:#999",placeholder:"请输入备注"},null,512),[[e.vModelText,l.value]]),e.createElementVNode("text",{class:"char-count"},e.toDisplayString(l.value.length)+"/300",1)]),e.createElementVNode("view",{class:"down-button"},[e.createElementVNode("view",{class:"swiper-left-button-orange"}," 清空 "),e.createElementVNode("view",{class:"swiper-left-button-blue"}," 保存 "),e.createElementVNode("view",{class:"swiper-left-button-blue",style:{"margin-right":"40rpx"}}," 提交 ")])])]))}}),[["__scopeId","data-v-e15809eb"]]),oe=s(e.defineComponent({__name:"index",setup(t){const l=e.ref("");return(t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"请购清单")]),e.createElementVNode("view",{class:"draw-blue"}," 请购单号:A0120250301001 ")]),e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("image",{class:"swiper-card-top-img",src:"/static/index/project3.png"},null,8,["src"]),e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"}," 纸尿裤-拉拉裤 "),e.createElementVNode("view",{class:"weight-right",style:{width:"40%"}}," 采购数量:50 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-black"}," 800mm*690mm ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购单位: "),e.createElementVNode("view",{class:"swiper-black"}," 片 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 库存数量: "),e.createElementVNode("view",{class:"swiper-black"}," 50 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 库存下限: "),e.createElementVNode("view",{class:"swiper-black"}," 10 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 库存上限: "),e.createElementVNode("view",{class:"swiper-black"}," 1000 ")])])])]),e.createElementVNode("view",{class:"swiper-card-down"},[e.createElementVNode("view",{class:"down-left"},[e.createElementVNode("view",{class:"down-left-weight"}," 供应商: "),e.createElementVNode("view",{class:"down-left-font"}," 长春市永佳利商贸有限公司1 ")])])])]))),64))])])]),e.createElementVNode("view",{class:"down-note"},[e.withDirectives(e.createElementVNode("textarea",{disabled:"",class:"down-note-title-input","onUpdate:modelValue":a[0]||(a[0]=e=>l.value=e),maxlength:"300","placeholder-style":"color:#999",placeholder:"该请购单未备注"},null,512),[[e.vModelText,l.value]]),e.createElementVNode("text",{class:"char-count"},e.toDisplayString(l.value.length)+"/300",1)])])]))}}),[["__scopeId","data-v-c8dcc752"]]),ce=s(e.defineComponent({__name:"index",setup(t){e.ref("");const l=e.ref(0),a=e.ref(0),i=e.ref(!1),r=e.ref(!1),n=e.ref("全部"),o=e.ref("日期从近到远"),c=e.ref([{value:0,label:"全部"},{value:1,label:"出库"},{value:2,label:"入库"}]),s=e.ref([{value:0,label:"日期从近到远"},{value:1,label:"日期从远到近"}]),d=e.ref([{name:"生活用品请领",add:-20},{name:"采购入库",add:10},{name:"生活用品请领",add:-20},{name:"生活用品请领",add:20},{name:"生活用品请领",add:-20},{name:"生活用品请领",add:100},{name:"生活用品请领",add:9999}]),m=e=>{a.value=e.detail.scrollTop.toFixed(2)};return(t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"出入库")])]),e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("image",{class:"swiper-card-top-img",src:"/static/index/project3.png"},null,8,["src"]),e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"}," 纸尿裤-拉拉裤 "),e.createElementVNode("view",{class:"weight-right",style:{"margin-right":"30rpx"}}," 当前库存:96 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"20rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 物料编码: "),e.createElementVNode("view",{class:"swiper-black"}," ZHYP044 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"20rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-black"}," 800mm*690mm ")])])])])]),e.createElementVNode("view",{class:"select-width"},[e.createElementVNode("view",{class:"select-blue",onClick:a[1]||(a[1]=e=>i.value=!i.value)},[e.createElementVNode("image",{class:"select-blue-img",src:"/static/index/warehouseCard/selectblue.png"}),e.createElementVNode("view",{class:"select-blue-font"},e.toDisplayString(n.value),1),e.createElementVNode("div",{class:"triangle-down"}),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(["dropdown-list",i.value?"open":"close"]),onClick:a[0]||(a[0]=e.withModifiers((()=>{}),["stop"]))},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["dropdown-item",t.label==n.value?"active":""]),onClick:e=>{n.value=t.label,i.value=!1}},e.toDisplayString(t.label),11,["onClick"])))),128))],2),[[e.vShow,i.value]])]),e.createElementVNode("view",{class:"select-white",onClick:a[3]||(a[3]=e=>r.value=!r.value)},[e.createElementVNode("image",{class:"select-blue-img",src:"/static/index/warehouseCard/selectwhite.png"}),e.createElementVNode("view",{class:"select-blue-font"},e.toDisplayString(o.value),1),e.createElementVNode("div",{class:"triangle-down"}),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(["dropdown-list",r.value?"open":"close"]),onClick:a[2]||(a[2]=e.withModifiers((()=>{}),["stop"]))},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["dropdown-item",t.label==o.value?"active":""]),onClick:e=>{o.value=t.label,r.value=!1}},e.toDisplayString(t.label),11,["onClick"])))),128))],2),[[e.vShow,r.value]])])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("view",{class:"scroll-view-title"},[e.createElementVNode("view",{class:"amount"}," 总计:100笔 "),e.createElementVNode("view",{class:"outhouse"},[e.createElementVNode("image",{class:"outhouse-img",src:"/static/index/warehouseCard/orangeicon.png"}),e.createElementVNode("view",{class:"outhouse-left"}," 出库: "),e.createElementVNode("view",{class:"outhouse-right"}," 50笔 ")]),e.createElementVNode("view",{class:"inhouse"},[e.createElementVNode("image",{class:"inhouse-img",src:"/static/index/warehouseCard/blueicon.png"}),e.createElementVNode("view",{class:"inhouse-left"}," 出库: "),e.createElementVNode("view",{class:"inhouse-right"}," 50笔 ")])]),e.createElementVNode("scroll-view",{"scroll-y":"","scroll-top":l.value,onScroll:m,style:{height:"770rpx","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(d.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"swiper-card-spec"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},e.toDisplayString(t.name),1),e.createElementVNode("view",{class:"weight-right",style:{color:"#59657A","font-weight":"400"}}," 摘要:服务指令 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 服务指令:生活用品请领 ")]),e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray",style:e.normalizeStyle([t.add<0?{color:"#FF6600"}:{color:"#008AFF"},{"font-weight":"700","font-size":"35rpx"}])},e.toDisplayString(t.add>0?"+"+t.add:t.add),5)])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-black"}," 2025-02-13 17:29:18 ")]),e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-black"}," 库存: "),e.createElementVNode("view",{class:"swiper-black"}," 96 ")])])])]),e.createElementVNode("view",{class:"swiper-card-down"},[e.createElementVNode("view",{class:"down-left"},[e.createElementVNode("view",{class:"down-left-weight"}," 供应商: "),e.createElementVNode("view",{class:"down-left-font"}," 长春市永佳利商贸有限公司1 ")]),e.createElementVNode("image",{class:"delete-img",src:"/static/index/deleteIt.png"},null,8,["src"])])])])))),128))])],40,["scroll-top"])])])]))}}),[["__scopeId","data-v-a22273dc"]]);const se=s({name:"u-icon",emits:["click","touchstart"],props:{name:{type:String,default:""},color:{type:[String,null],default:""},size:{type:[Number,String],default:"inherit"},bold:{type:Boolean,default:!1},index:{type:[Number,String],default:""},hoverClass:{type:String,default:""},customPrefix:{type:String,default:"uicon"},label:{type:[String,Number],default:""},labelPos:{type:String,default:"right"},labelSize:{type:[String,Number],default:"28"},labelColor:{type:String,default:"#606266"},marginLeft:{type:[String,Number],default:"6"},marginTop:{type:[String,Number],default:"6"},marginRight:{type:[String,Number],default:"6"},marginBottom:{type:[String,Number],default:"6"},imgMode:{type:String,default:"widthFix"},customStyle:{type:Object,default:()=>({})},width:{type:[String,Number],default:""},height:{type:[String,Number],default:""},top:{type:[String,Number],default:0},showDecimalIcon:{type:Boolean,default:!1},inactiveColor:{type:String,default:"#ececec"},percent:{type:[Number,String],default:"50"}},computed:{customClass(){let e=[],{customPrefix:t,name:l}=this,a=l.indexOf("-icon-");return a>-1?(t=l.substring(0,a+5),e.push(l)):e.push(`${t}-${l}`),"uicon"===t?e.push("u-iconfont"):e.push(t),this.showDecimalIcon&&this.inactiveColor&&this.$u.config.type.includes(this.inactiveColor)?e.push("u-icon__icon--"+this.inactiveColor):this.color&&this.$u.config.type.includes(this.color)&&e.push("u-icon__icon--"+this.color),e},iconStyle(){let e={};return e={fontSize:"inherit"==this.size?"inherit":this.$u.addUnit(this.size),fontWeight:this.bold?"bold":"normal",top:this.$u.addUnit(this.top)},this.showDecimalIcon&&this.inactiveColor&&!this.$u.config.type.includes(this.inactiveColor)?e.color=this.inactiveColor:this.color&&!this.$u.config.type.includes(this.color)&&(e.color=this.color),e},isImg(){return-1!==this.name.indexOf("/")},imgStyle(){let e={};return e.width=this.width?this.$u.addUnit(this.width):this.$u.addUnit(this.size),e.height=this.height?this.$u.addUnit(this.height):this.$u.addUnit(this.size),e},decimalIconStyle(){let e={};return e={fontSize:"inherit"==this.size?"inherit":this.$u.addUnit(this.size),fontWeight:this.bold?"bold":"normal",top:this.$u.addUnit(this.top),width:this.percent+"%"},this.color&&!this.$u.config.type.includes(this.color)&&(e.color=this.color),e},decimalIconClass(){let e=[];return e.push(this.customPrefix+"-"+this.name),"uicon"==this.customPrefix?e.push("u-iconfont"):e.push(this.customPrefix),this.color&&this.$u.config.type.includes(this.color)?e.push("u-icon__icon--"+this.color):e.push("u-icon__icon--primary"),e}},methods:{click(){this.$emit("click",this.index)},touchstart(){this.$emit("touchstart",this.index)}}},[["render",function(t,l,a,i,r,n){return e.openBlock(),e.createElementBlock("view",{style:e.normalizeStyle([a.customStyle]),class:e.normalizeClass(["u-icon",["u-icon--"+a.labelPos]]),onClick:l[1]||(l[1]=(...e)=>n.click&&n.click(...e))},[n.isImg?(e.openBlock(),e.createElementBlock("image",{key:0,class:"u-icon__img",src:a.name,mode:a.imgMode,style:e.normalizeStyle([n.imgStyle])},null,12,["src","mode"])):(e.openBlock(),e.createElementBlock("view",{key:1,class:e.normalizeClass(["u-icon__icon",n.customClass]),style:e.normalizeStyle([n.iconStyle]),"hover-class":a.hoverClass,onTouchstart:l[0]||(l[0]=(...e)=>n.touchstart&&n.touchstart(...e))},[a.showDecimalIcon?(e.openBlock(),e.createElementBlock("text",{key:0,style:e.normalizeStyle([n.decimalIconStyle]),class:e.normalizeClass([n.decimalIconClass,"u-icon__decimal"]),"hover-class":a.hoverClass},null,14,["hover-class"])):e.createCommentVNode("",!0)],46,["hover-class"])),""!==a.label&&null!==a.label?(e.openBlock(),e.createElementBlock("text",{key:2,class:"u-icon__label",style:e.normalizeStyle({color:a.labelColor,fontSize:t.$u.addUnit(a.labelSize),marginLeft:"right"==a.labelPos?t.$u.addUnit(a.marginLeft):0,marginTop:"bottom"==a.labelPos?t.$u.addUnit(a.marginTop):0,marginRight:"left"==a.labelPos?t.$u.addUnit(a.marginRight):0,marginBottom:"top"==a.labelPos?t.$u.addUnit(a.marginBottom):0})},e.toDisplayString(a.label),5)):e.createCommentVNode("",!0)],6)}],["__scopeId","data-v-32e6a46e"]]);const de=s({name:"u-button",emits:["click","getphonenumber","getuserinfo","error","opensetting","launchapp","chooseavatar"],props:{hairLine:{type:Boolean,default:!0},type:{type:String,default:"default"},size:{type:String,default:"default"},shape:{type:String,default:"square"},plain:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},openType:{type:String,default:""},formType:{type:String,default:""},appParameter:{type:String,default:""},hoverStopPropagation:{type:Boolean,default:!1},lang:{type:String,default:"en"},sessionFrom:{type:String,default:""},sendMessageTitle:{type:String,default:""},sendMessagePath:{type:String,default:""},sendMessageImg:{type:String,default:""},showMessageCard:{type:Boolean,default:!1},hoverBgColor:{type:String,default:""},rippleBgColor:{type:String,default:""},ripple:{type:Boolean,default:!1},hoverClass:{type:String,default:""},customStyle:{type:Object,default:()=>({})},dataName:{type:String,default:""},throttleTime:{type:[String,Number],default:500},hoverStartTime:{type:[String,Number],default:20},hoverStayTime:{type:[String,Number],default:150},timerId:{type:[String,Number]}},computed:{getHoverClass(){if(this.loading||this.disabled||this.ripple||this.hoverClass)return"";let e="";return e=this.plain?"u-"+this.type+"-plain-hover":"u-"+this.type+"-hover",e},showHairLineBorder(){return["primary","success","error","warning"].indexOf(this.type)>=0&&!this.plain?"":"u-hairline-border"}},data(){return{btnTimerId:this.timerId||"button_"+Math.floor(1e8*Math.random()+0),rippleTop:0,rippleLeft:0,fields:{},waveActive:!1}},methods:{click(e){this.$u.throttle((()=>{!0!==this.loading&&!0!==this.disabled&&(this.ripple&&(this.waveActive=!1,this.$nextTick((function(){this.getWaveQuery(e)}))),this.$emit("click",e))}),this.throttleTime,!0,this.btnTimerId)},getWaveQuery(e){this.getElQuery().then((t=>{let l=t[0];if(!l.width||!l.width)return;if(l.targetWidth=l.height>l.width?l.height:l.width,!l.targetWidth)return;this.fields=l;let a="",i="";a=e.touches[0].clientX,i=e.touches[0].clientY,this.rippleTop=i-l.top-l.targetWidth/2,this.rippleLeft=a-l.left-l.targetWidth/2,this.$nextTick((()=>{this.waveActive=!0}))}))},getElQuery(){return new Promise((e=>{let t="";t=uni.createSelectorQuery().in(this),t.select(".u-btn").boundingClientRect(),t.exec((t=>{e(t)}))}))},getphonenumber(e){this.$emit("getphonenumber",e)},getuserinfo(e){this.$emit("getuserinfo",e)},error(e){this.$emit("error",e)},opensetting(e){this.$emit("opensetting",e)},launchapp(e){this.$emit("launchapp",e)},chooseavatar(e){this.$emit("chooseavatar",e)}}},[["render",function(t,l,a,i,r,n){return e.openBlock(),e.createElementBlock("button",{id:"u-wave-btn",class:e.normalizeClass(["u-btn u-line-1 u-fix-ios-appearance",["u-size-"+a.size,a.plain?"u-btn--"+a.type+"--plain":"",a.loading?"u-loading":"","circle"==a.shape?"u-round-circle":"",a.hairLine?n.showHairLineBorder:"u-btn--bold-border","u-btn--"+a.type,a.disabled?`u-btn--${a.type}--disabled`:""]]),"hover-start-time":Number(a.hoverStartTime),"hover-stay-time":Number(a.hoverStayTime),disabled:a.disabled,"form-type":a.formType,"open-type":a.openType,"app-parameter":a.appParameter,"hover-stop-propagation":a.hoverStopPropagation,"send-message-title":a.sendMessageTitle,"send-message-path":"sendMessagePath",lang:a.lang,"data-name":a.dataName,"session-from":a.sessionFrom,"send-message-img":a.sendMessageImg,"show-message-card":a.showMessageCard,onGetphonenumber:l[0]||(l[0]=(...e)=>n.getphonenumber&&n.getphonenumber(...e)),onGetuserinfo:l[1]||(l[1]=(...e)=>n.getuserinfo&&n.getuserinfo(...e)),onError:l[2]||(l[2]=(...e)=>n.error&&n.error(...e)),onOpensetting:l[3]||(l[3]=(...e)=>n.opensetting&&n.opensetting(...e)),onLaunchapp:l[4]||(l[4]=(...e)=>n.launchapp&&n.launchapp(...e)),onChooseavatar:l[5]||(l[5]=(...e)=>n.chooseavatar&&n.chooseavatar(...e)),style:e.normalizeStyle([a.customStyle,{overflow:a.ripple?"hidden":"visible"}]),onClick:l[6]||(l[6]=e.withModifiers((e=>n.click(e)),["stop"])),"hover-class":n.getHoverClass,loading:a.loading},[e.renderSlot(t.$slots,"default",{},void 0,!0),a.ripple?(e.openBlock(),e.createElementBlock("view",{key:0,class:e.normalizeClass(["u-wave-ripple",[r.waveActive?"u-wave-active":""]]),style:e.normalizeStyle({top:r.rippleTop+"px",left:r.rippleLeft+"px",width:r.fields.targetWidth+"px",height:r.fields.targetWidth+"px","background-color":a.rippleBgColor||"rgba(0, 0, 0, 0.15)"})},null,6)):e.createCommentVNode("",!0)],46,["hover-start-time","hover-stay-time","disabled","form-type","open-type","app-parameter","hover-stop-propagation","send-message-title","lang","data-name","session-from","send-message-img","show-message-card","hover-class","loading"])}],["__scopeId","data-v-942515d8"]]);const me=s({name:"u-mask",emits:["click"],props:{show:{type:Boolean,default:!1},zIndex:{type:[Number,String],default:""},customStyle:{type:Object,default:()=>({})},zoom:{type:Boolean,default:!0},duration:{type:[Number,String],default:300},maskClickAble:{type:Boolean,default:!0},blur:{type:[Number,String],default:0}},data:()=>({zoomStyle:{transform:""},scale:"scale(1.2, 1.2)"}),watch:{show(e){e&&this.zoom?this.zoomStyle.transform="scale(1, 1)":!e&&this.zoom&&(this.zoomStyle.transform=this.scale)}},computed:{maskStyle(){let e={backgroundColor:"rgba(0, 0, 0, 0.6)"};return this.show?e.zIndex=this.zIndex?this.zIndex:this.$u.zIndex.mask:e.zIndex=-1,e.transition=`all ${this.duration/1e3}s ease-in-out`,Object.keys(this.customStyle).length&&(e={...e,...this.customStyle}),e},filterStyle(){let{blur:e}=this,t={};return e&&(t.backdropFilter=`blur(${e}rpx)`),t}},methods:{click(){this.maskClickAble&&this.$emit("click")}}},[["render",function(t,l,a,i,r,n){return e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["u-mask",{"u-mask-zoom":a.zoom,"u-mask-show":a.show}]),"hover-stop-propagation":"",style:e.normalizeStyle([n.maskStyle,r.zoomStyle,n.filterStyle]),onClick:l[0]||(l[0]=(...e)=>n.click&&n.click(...e)),onTouchmove:e.withModifiers((()=>{}),["stop","prevent"])},[e.renderSlot(t.$slots,"default",{},void 0,!0)],38)}],["__scopeId","data-v-005d3602"]]);const ue=s({name:"u-popup",emits:["update:modelValue","input","open","close"],props:{value:{type:Boolean,default:!1},modelValue:{type:Boolean,default:!1},show:{type:Boolean,default:!1},mode:{type:String,default:"left"},mask:{type:Boolean,default:!0},length:{type:[Number,String],default:"auto"},zoom:{type:Boolean,default:!0},safeAreaInsetBottom:{type:Boolean,default:!1},maskCloseAble:{type:Boolean,default:!0},customStyle:{type:Object,default:()=>({})},popup:{type:Boolean,default:!0},borderRadius:{type:[Number,String],default:0},zIndex:{type:[Number,String],default:""},closeable:{type:Boolean,default:!1},closeIcon:{type:String,default:"close"},closeIconPos:{type:String,default:"top-right"},closeIconColor:{type:String,default:"#909399"},closeIconSize:{type:[String,Number],default:"30"},width:{type:String,default:""},height:{type:String,default:""},negativeTop:{type:[String,Number],default:0},maskCustomStyle:{type:Object,default:()=>({})},duration:{type:[String,Number],default:250},blur:{type:[String,Number],default:0}},data:()=>({visibleSync:!1,showDrawer:!1,timer:null,closeFromInner:!1}),computed:{valueCom(){return this.modelValue},style(){let e={};if("left"==this.mode||"right"==this.mode?e={width:this.width?this.getUnitValue(this.width):this.getUnitValue(this.length),height:"100%",transform:`translate3D(${"left"==this.mode?"-100%":"100%"},0px,0px)`}:"top"!=this.mode&&"bottom"!=this.mode||(e={width:"100%",height:this.height?this.getUnitValue(this.height):this.getUnitValue(this.length),transform:`translate3D(0px,${"top"==this.mode?"-100%":"100%"},0px)`}),e.zIndex=this.uZindex,this.borderRadius){switch(this.mode){case"left":e.borderRadius=`0 ${this.borderRadius}rpx ${this.borderRadius}rpx 0`;break;case"top":e.borderRadius=`0 0 ${this.borderRadius}rpx ${this.borderRadius}rpx`;break;case"right":e.borderRadius=`${this.borderRadius}rpx 0 0 ${this.borderRadius}rpx`;break;case"bottom":e.borderRadius=`${this.borderRadius}rpx ${this.borderRadius}rpx 0 0`}e.overflow="hidden"}return this.duration&&(e.transition=`all ${this.duration/1e3}s linear`),e},centerStyle(){let e={};return e.width=this.width?this.getUnitValue(this.width):this.getUnitValue(this.length),e.height=this.height?this.getUnitValue(this.height):"auto",e.zIndex=this.uZindex,e.marginTop=`-${this.$u.addUnit(this.negativeTop)}`,this.borderRadius&&(e.borderRadius=`${this.borderRadius}rpx`,e.overflow="hidden"),e},uZindex(){return this.zIndex?this.zIndex:this.$u.zIndex.popup}},watch:{valueCom:{handler(e){e?this.open():this.closeFromInner||this.close(),this.closeFromInner=!1}}},mounted(){this.valueCom&&this.open()},methods:{getUnitValue:e=>/(%|px|rpx|auto)$/.test(e)?e:e+"rpx",maskClick(){this.close()},close(){this.closeFromInner=!0,this.change("showDrawer","visibleSync",!1)},modeCenterClose(e){"center"==e&&this.maskCloseAble&&this.close()},open(){this.change("visibleSync","showDrawer",!0)},change(e,t,l){1==this.popup&&(this.$emit("input",l),this.$emit("update:modelValue",l)),this[e]=l,l?this.$nextTick((()=>{this[t]=l,this.$emit(l?"open":"close")})):this.timer=setTimeout((()=>{this[t]=l,this.$emit(l?"open":"close")}),this.duration)}}},[["render",function(t,l,i,r,n,o){const c=a(e.resolveDynamicComponent("u-mask"),me),s=a(e.resolveDynamicComponent("u-icon"),se);return n.visibleSync?(e.openBlock(),e.createElementBlock("view",{key:0,style:e.normalizeStyle([i.customStyle,{zIndex:o.uZindex-1}]),class:"u-drawer","hover-stop-propagation":""},[e.createVNode(c,{blur:i.blur,duration:i.duration,"custom-style":i.maskCustomStyle,maskClickAble:i.maskCloseAble,"z-index":o.uZindex-2,show:n.showDrawer&&i.mask,onClick:o.maskClick},null,8,["blur","duration","custom-style","maskClickAble","z-index","show","onClick"]),e.createElementVNode("view",{class:e.normalizeClass(["u-drawer-content",[i.safeAreaInsetBottom?"safe-area-inset-bottom":"","u-drawer-"+i.mode,n.showDrawer?"u-drawer-content-visible":"",i.zoom&&"center"==i.mode?"u-animation-zoom":""]]),onClick:l[3]||(l[3]=e=>o.modeCenterClose(i.mode)),onTouchmove:l[4]||(l[4]=e.withModifiers((()=>{}),["stop","prevent"])),style:e.normalizeStyle([o.style])},["center"==i.mode?(e.openBlock(),e.createElementBlock("view",{key:0,class:"u-mode-center-box",onClick:l[0]||(l[0]=e.withModifiers((()=>{}),["stop","prevent"])),onTouchmove:l[1]||(l[1]=e.withModifiers((()=>{}),["stop","prevent"])),style:e.normalizeStyle([o.centerStyle])},[i.closeable?(e.openBlock(),e.createBlock(s,{key:0,onClick:o.close,class:e.normalizeClass(["u-close",["u-close--"+i.closeIconPos]]),name:i.closeIcon,color:i.closeIconColor,size:i.closeIconSize},null,8,["onClick","class","name","color","size"])):e.createCommentVNode("",!0),e.createElementVNode("scroll-view",{class:"u-drawer__scroll-view","scroll-y":"true"},[e.renderSlot(t.$slots,"default",{},void 0,!0)])],36)):(e.openBlock(),e.createElementBlock("scroll-view",{key:1,class:"u-drawer__scroll-view","scroll-y":"true"},[e.renderSlot(t.$slots,"default",{},void 0,!0)])),e.createElementVNode("view",{onClick:l[2]||(l[2]=(...e)=>o.close&&o.close(...e)),class:e.normalizeClass(["u-close",["u-close--"+i.closeIconPos]])},["center"!=i.mode&&i.closeable?(e.openBlock(),e.createBlock(s,{key:0,name:i.closeIcon,color:i.closeIconColor,size:i.closeIconSize},null,8,["name","color","size"])):e.createCommentVNode("",!0)],2)],38)],4)):e.createCommentVNode("",!0)}],["__scopeId","data-v-98075be7"]]);const ve=s({name:"u-calendar",emits:["update:modelValue","input","change"],props:{value:{type:Boolean,default:!1},modelValue:{type:Boolean,default:!1},safeAreaInsetBottom:{type:Boolean,default:!1},maskCloseAble:{type:Boolean,default:!0},zIndex:{type:[String,Number],default:0},changeYear:{type:Boolean,default:!0},changeMonth:{type:Boolean,default:!0},mode:{type:String,default:"date"},maxYear:{type:[Number,String],default:2050},minYear:{type:[Number,String],default:1950},minDate:{type:[Number,String],default:"1950-01-01"},maxDate:{type:[Number,String],default:""},borderRadius:{type:[String,Number],default:20},monthArrowColor:{type:String,default:"#606266"},yearArrowColor:{type:String,default:"#909399"},color:{type:String,default:"#303133"},activeBgColor:{type:String,default:"#2979ff"},activeColor:{type:String,default:"#ffffff"},rangeBgColor:{type:String,default:"rgba(41,121,255,0.13)"},rangeColor:{type:String,default:"#2979ff"},startText:{type:String,default:"开始"},endText:{type:String,default:"结束"},btnType:{type:String,default:"primary"},isActiveCurrent:{type:Boolean,default:!0},isChange:{type:Boolean,default:!1},closeable:{type:Boolean,default:!0},toolTip:{type:String,default:"选择日期"},blur:{type:[Number,String],default:0},confirmText:{type:String,default:"确定"},toText:{type:String,default:"至"},yearText:{type:String,default:"年"},monthText:{type:String,default:"月"}},data:()=>({popupValue:!1,weekday:1,weekdayArr:[],days:0,daysArr:[],showTitle:"",year:2020,month:0,day:0,startYear:0,startMonth:0,startDay:0,endYear:0,endMonth:0,endDay:0,today:"",activeDate:"",startDate:"",endDate:"",isStart:!0,min:null,max:null,weekDayZh:["日","一","二","三","四","五","六"]}),computed:{valueCom(){return this.modelValue},dataChange(){return`${this.mode}-${this.minDate}-${this.maxDate}`},uZIndex(){return this.zIndex?this.zIndex:this.$u.zIndex.popup}},watch:{dataChange(e){this.init()},valueCom:{immediate:!0,handler(e){this.popupValue=e}}},created(){this.init()},methods:{getColor(e,t){let l=1==t?"":this.color,a=e+1,i=`${this.year}-${this.month}-${a}`,r=new Date(i.replace(/\-/g,"/")).getTime(),n=this.startDate.replace(/\-/g,"/"),o=this.endDate.replace(/\-/g,"/");return this.isActiveCurrent&&this.activeDate==i||this.startDate==i||this.endDate==i?l=1==t?null:this.activeColor:this.endDate&&r>new Date(n).getTime()&&r=new Date(r).getTime()&&o<=new Date(n).getTime()&&(a=!1),a},generateArray:function(e,t){return Array.from(new Array(t+1).keys()).slice(e)},formatNum:function(e){return e<10?"0"+e:e+""},getMonthDay:(e,t)=>new Date(e,t,0).getDate(),getWeekday:(e,t)=>new Date(`${e}/${t}/01 00:00:00`).getDay(),checkRange(e){let t=!1;return(ethis.maxYear)&&(uni.showToast({title:"日期超出范围啦~",icon:"none"}),t=!0),t},changeMonthHandler(e){if(e){let e=this.month+1,t=e>12?this.year+1:this.year;this.checkRange(t)||(this.month=e>12?1:e,this.year=t,this.changeData())}else{let e=this.month-1,t=e<1?this.year-1:this.year;this.checkRange(t)||(this.month=e<1?12:e,this.year=t,this.changeData())}},changeYearHandler(e){let t=e?this.year+1:this.year-1;this.checkRange(t)||(this.year=t,this.changeData())},changeData(){this.days=this.getMonthDay(this.year,this.month),this.daysArr=this.generateArray(1,this.days),this.weekday=this.getWeekday(this.year,this.month),this.weekdayArr=this.generateArray(1,this.weekday),this.showTitle=`${this.year}${this.yearText}${this.month}${this.monthText}`,this.isChange&&"date"==this.mode&&this.btnFix(!0)},dateClick:function(e){if(e+=1,!this.openDisAbled(this.year,this.month,e)){this.day=e;let t=`${this.year}-${this.month}-${e}`;if("date"==this.mode)this.activeDate=t;else{let e=new Date(t.replace(/\-/g,"/")).getTime()"星期"+["日","一","二","三","四","五","六"][(e=new Date(`${e.replace(/\-/g,"/")} 00:00:00`)).getDay()],btnFix(e){if(e||this.close(),"date"==this.mode){let e=this.activeDate.split("-"),t=this.isChange?this.year:Number(e[0]),l=this.isChange?this.month:Number(e[1]),a=this.isChange?this.day:Number(e[2]),i=this.getMonthDay(t,l),r=`${t}-${this.formatNum(l)}-${this.formatNum(a)}`,n=this.getWeekText(r),o=!1;`${t}-${l}-${a}`==this.today&&(o=!0),this.$emit("change",{year:t,month:l,day:a,days:i,result:r,week:n,isToday:o})}else{if(!this.startDate||!this.endDate)return;let e=this.formatNum(this.startMonth),t=this.formatNum(this.startDay),l=`${this.startYear}-${e}-${t}`,a=this.getWeekText(l),i=this.formatNum(this.endMonth),r=this.formatNum(this.endDay),n=`${this.endYear}-${i}-${r}`,o=this.getWeekText(n);this.$emit("change",{startYear:this.startYear,startMonth:this.startMonth,startDay:this.startDay,startDate:l,startWeek:a,endYear:this.endYear,endMonth:this.endMonth,endDay:this.endDay,endDate:n,endWeek:o})}}}},[["render",function(t,l,i,r,n,o){const c=a(e.resolveDynamicComponent("u-icon"),se),s=a(e.resolveDynamicComponent("u-button"),de),d=a(e.resolveDynamicComponent("u-popup"),ue);return e.openBlock(),e.createBlock(d,{blur:i.blur,closeable:"",maskCloseAble:i.maskCloseAble,mode:"bottom",popup:!1,modelValue:n.popupValue,"onUpdate:modelValue":l[5]||(l[5]=e=>n.popupValue=e),length:"auto",safeAreaInsetBottom:i.safeAreaInsetBottom,onClose:o.close,"z-index":o.uZIndex,"border-radius":i.borderRadius},{default:e.withCtx((()=>[e.createElementVNode("view",{class:"u-calendar"},[e.createElementVNode("view",{class:"u-calendar__action u-flex u-row-center"},[e.createElementVNode("view",{class:"u-calendar__action__icon"},[i.changeYear?(e.openBlock(),e.createBlock(c,{key:0,name:"arrow-left-double",color:i.yearArrowColor,onClick:l[0]||(l[0]=e=>o.changeYearHandler(0))},null,8,["color"])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"u-calendar__action__icon"},[i.changeMonth?(e.openBlock(),e.createBlock(c,{key:0,name:"arrow-left",color:i.monthArrowColor,onClick:l[1]||(l[1]=e=>o.changeMonthHandler(0))},null,8,["color"])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"u-calendar__action__text"},e.toDisplayString(n.showTitle),1),e.createElementVNode("view",{class:"u-calendar__action__icon"},[i.changeMonth?(e.openBlock(),e.createBlock(c,{key:0,name:"arrow-right",color:i.monthArrowColor,onClick:l[2]||(l[2]=e=>o.changeMonthHandler(1))},null,8,["color"])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"u-calendar__action__icon"},[i.changeYear?(e.openBlock(),e.createBlock(c,{key:0,name:"arrow-right-double",color:i.yearArrowColor,onClick:l[3]||(l[3]=e=>o.changeYearHandler(1))},null,8,["color"])):e.createCommentVNode("",!0)])]),e.createElementVNode("view",{class:"u-calendar__week-day"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.weekDayZh,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"u-calendar__week-day__text",key:l},e.toDisplayString(t),1)))),128))]),e.createElementVNode("view",{class:"u-calendar__content"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.weekdayArr,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"u-calendar__content__item"})))),128)),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.daysArr,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["u-calendar__content__item",{"u-hover-class":o.openDisAbled(n.year,n.month,l+1),"u-calendar__content--start-date":"range"==i.mode&&n.startDate==`${n.year}-${n.month}-${l+1}`||"date"==i.mode,"u-calendar__content--end-date":"range"==i.mode&&n.endDate==`${n.year}-${n.month}-${l+1}`||"date"==i.mode}]),style:e.normalizeStyle([o.getStyle(l),{"border-radius":"30rpx"}]),key:l,onClick:e=>o.dateClick(l)},[e.createElementVNode("view",{class:"u-calendar__content__item__inner",style:e.normalizeStyle({color:o.getColor(l,2)})},[e.createElementVNode("view",null,e.toDisplayString(l+1),1)],4),"range"==i.mode&&n.startDate==`${n.year}-${n.month}-${l+1}`&&n.startDate!=n.endDate?(e.openBlock(),e.createElementBlock("view",{key:0,class:"u-calendar__content__item__tips",style:e.normalizeStyle({color:i.activeColor})},e.toDisplayString(i.startText),5)):e.createCommentVNode("",!0),"range"==i.mode&&n.endDate==`${n.year}-${n.month}-${l+1}`?(e.openBlock(),e.createElementBlock("view",{key:1,class:"u-calendar__content__item__tips",style:e.normalizeStyle({color:i.activeColor})},e.toDisplayString(i.endText),5)):e.createCommentVNode("",!0)],14,["onClick"])))),128)),e.createElementVNode("view",{class:"u-calendar__content__bg-month"},e.toDisplayString(n.month),1)]),e.createElementVNode("view",{class:"u-calendar__bottom"},[e.createElementVNode("view",{class:"u-calendar__bottom__choose"},[e.createElementVNode("text",null,e.toDisplayString("date"==i.mode?n.activeDate:n.startDate),1),n.endDate?(e.openBlock(),e.createElementBlock("text",{key:0},e.toDisplayString(i.toText)+e.toDisplayString(n.endDate),1)):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"u-calendar__bottom__btn"},[e.createVNode(s,{type:i.btnType,shape:"circle",size:"default",onClick:l[4]||(l[4]=e=>o.btnFix(!1)),disabled:"range"==i.mode&&!n.endDate},{default:e.withCtx((()=>[e.createTextVNode(e.toDisplayString(i.confirmText),1)])),_:1},8,["type","disabled"])])])])])),_:1},8,["blur","maskCloseAble","modelValue","safeAreaInsetBottom","onClose","z-index","border-radius","closeable"])}],["__scopeId","data-v-d354e4bf"]]),pe=s(e.defineComponent({__name:"index",emits:["opendetail"],setup(t,{emit:l}){e.ref("");const i=e.ref(!1),r=e.ref(""),n=e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]),o=l,c=e=>{r.value=e.result},s=()=>{o("opendetail")};return(t,l)=>{const o=a(e.resolveDynamicComponent("u-calendar"),ve);return e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"index-right-height"}),e.createElementVNode("view",{class:"index-right-title"},[e.createElementVNode("view",{class:"index-right-name"}," 请购单号: "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入请购单号"}),e.createElementVNode("view",{class:"index-right-name"}," 请购人: "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入请购人"}),e.createElementVNode("view",{class:"index-right-name"}," 请购日期: "),e.createElementVNode("view",{onClick:l[0]||(l[0]=e.withModifiers((e=>i.value=!0),["stop"]))},[e.createElementVNode("view",{class:"index-right-input",style:e.normalizeStyle([{width:"300rpx",height:"66rpx"},r.value?{}:{color:"#999"}])},e.toDisplayString(r.value?r.value:"请输入请购日期"),5)]),e.createVNode(o,{style:{width:"40%","margin-left":"30%"},"border-radius":"40",modelValue:i.value,"onUpdate:modelValue":l[1]||(l[1]=e=>i.value=e),mode:"date",onChange:c},null,8,["modelValue"]),e.createElementVNode("view",{class:"index-right-button-all"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"index-right-button"},[e.createElementVNode("image",{class:"index-right-button-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"index-right-button-font"},e.toDisplayString(t.name),1)])])))),128))])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"请购单号"),e.createElementVNode("view",{class:"blue-number"},"A0120250301001")]),e.createElementVNode("view",{class:"index-right-button-blue",onClick:s}," 详情 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 请购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.01 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 请购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")])])])])])]))),64))])])])])])}}}),[["__scopeId","data-v-cb386bfb"]]),ge=s({__name:"ball",props:{isShow:{type:Boolean,required:!0}},emits:["clickBall"],setup(t,{emit:l}){const a=l,i=e.ref(1090),r=e.ref(120),n=e.ref(!1);let o=0,c=0,s=0,d=0,m=null,u=0,v=0;function p(e){const t=e.touches[0];o=t.clientX.toFixed(2),c=t.clientY.toFixed(2),s=i.value,d=r.value,m=setTimeout((()=>{n.value=!0}),300)}function g(e){if(!n.value){const t=e.touches[0],l=Math.abs(t.clientX.toFixed(2)-o),a=Math.abs(t.clientY.toFixed(2)-c);(l>5||a>5)&&(clearTimeout(m),n.value=!0)}if(n.value){const t=e.touches[0];let l=s+(t.clientX.toFixed(2)-o),a=d+(t.clientY.toFixed(2)-c);l=Math.max(0,Math.min(l,u-60)),a=Math.max(0,Math.min(a,v-60)),i.value=l,r.value=a}}function w(e){clearTimeout(m),n.value?n.value=!1:a("clickBall")}return e.onMounted((()=>{const e=uni.getSystemInfoSync();u=e.windowWidth,v=e.windowHeight})),(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"floating-ball",style:e.normalizeStyle({left:i.value+"px",top:r.value+"px"}),onTouchstart:p,onTouchmove:g,onTouchend:w,onTouchcancel:w},[e.createElementVNode("image",{class:"floating-ball-img",src:"/static/index/caigouqingdan.png"})],36)),[[e.vShow,t.isShow]])}},[["__scopeId","data-v-5147ae32"]]),we=s(e.defineComponent({__name:"info",emits:["qinggou","churuku"],setup(t,{emit:l}){const a=l,i=e=>{a(e)};return(t,l)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("view",{class:"popup-detail-left"},[e.createElementVNode("view",{class:"popup-detail-left-white"},[e.createElementVNode("image",{class:"popup-detail-left-white-img",src:"/static/index/project3.png"},null,8,["src"])]),e.createElementVNode("view",{class:"popup-detail-left-bottom"},[e.createElementVNode("view",{class:"popup-small-card"},[e.createElementVNode("view",{class:"popup-small-circle"},[e.createElementVNode("image",{class:"popup-small-circle-img",src:"/static/index/saveUp.png"})]),e.createElementVNode("view",{class:"popup-small-number"},"1000"),e.createElementVNode("view",{class:"popup-small-font"},"库存上限")]),e.createElementVNode("view",{class:"popup-small-shu"}),e.createElementVNode("view",{class:"popup-small-card"},[e.createElementVNode("view",{class:"popup-small-circle"},[e.createElementVNode("image",{class:"popup-small-circle-img",src:"/static/index/saveDown.png"})]),e.createElementVNode("view",{class:"popup-small-number"},"10"),e.createElementVNode("view",{class:"popup-small-font"},"库存下限")]),e.createElementVNode("view",{class:"popup-small-shu"}),e.createElementVNode("view",{class:"popup-small-card"},[e.createElementVNode("view",{class:"popup-small-circle"},[e.createElementVNode("image",{class:"popup-small-circle-img",src:"/static/index/saveNumber.png"})]),e.createElementVNode("view",{class:"popup-small-number"},"50"),e.createElementVNode("view",{class:"popup-small-font"},"库存数量")])])]),e.createElementVNode("view",{class:"popup-detail-right"},[e.createElementVNode("view",{class:"popup-detail-title"},[e.createElementVNode("view",{class:"popup-detail-weight"}," 纸尿裤-拉拉裤 "),e.createElementVNode("view",{class:"popup-detail-gray"}," ZHYP044 ")]),e.createElementVNode("view",{class:"popup-weight"}," 物料分类 "),e.createElementVNode("view",{class:"popup-right-father"},[e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 物料类别: "),e.createElementVNode("view",{class:"popup-font-right"}," 生活用品 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 物料类型: "),e.createElementVNode("view",{class:"popup-font-right"}," 照护用品 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 物料类别: "),e.createElementVNode("view",{class:"popup-font-right"}," - ")])]),e.createElementVNode("view",{class:"popup-weight"}," 物料信息 "),e.createElementVNode("view",{class:"popup-right-father"},[e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 物料品牌: "),e.createElementVNode("view",{class:"popup-font-right"}," 洁奴 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 采购单位: "),e.createElementVNode("view",{class:"popup-font-right"}," 片 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 参考单价: "),e.createElementVNode("view",{class:"popup-font-right"}," 1.175 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 采购单价: "),e.createElementVNode("view",{class:"popup-font-right"}," 2 ")]),e.createElementVNode("view",{class:"popup-right-font-contain",style:{width:"100%"}},[e.createElementVNode("view",{class:"popup-font-left"}," 规格型号: "),e.createElementVNode("view",{class:"popup-font-right"}," 800mm*690mm ")]),e.createElementVNode("view",{class:"popup-right-font-contain",style:{width:"100%"}},[e.createElementVNode("view",{class:"popup-font-left"}," 供 应 商 : "),e.createElementVNode("view",{class:"popup-font-right"}," 山东恒发卫生用品有限公司 ")])]),e.createElementVNode("view",{class:"popup-weight"}," 优惠信息 "),e.createElementVNode("view",{class:"popup-right-father"},[e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 医保报销: "),e.createElementVNode("view",{class:"popup-font-right"}," 是 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 机构优惠: "),e.createElementVNode("view",{class:"popup-font-right"}," 否 ")])]),e.createElementVNode("view",{class:"swiper-left-buttons-big"},[e.createElementVNode("view",{class:"swiper-left-button-blue",onClick:l[0]||(l[0]=e=>i("qinggou"))}," 请购 "),e.createElementVNode("view",{class:"swiper-left-button",onClick:l[1]||(l[1]=e=>i("churuku"))}," 出入库 ")])])],64))}}),[["__scopeId","data-v-a77dd54e"]]),he=s(e.defineComponent({__name:"plsbuy",props:{saveIndex:{type:Number,required:!0},changeNumber:{type:Number,required:!0}},emits:["closeIt","openRight","closeRight"],setup(t,{emit:l}){const a=l,i=t;e.watch((()=>i.changeNumber),(()=>{o.value[i.saveIndex].many=i.changeNumber})),e.ref(50);const r=e.ref(0),n=e.ref({name:"长春市永佳利商贸有限公司",many:0,change:0}),o=e.ref([{name:"长春市永佳利商贸有限公司",many:9999,change:0},{name:"长春市永佳利商贸有限公司",many:0,change:0},{name:"长春市永佳利商贸有限公司",many:0,change:0}]),c=()=>{d(),m.value&&(o.value.push(JSON.parse(JSON.stringify(n.value))),r.value=998,e.nextTick((()=>{r.value=999})))},s=()=>{d(),a("closeIt")},d=()=>{a("closeRight")},m=e.ref(!0);return(l,i)=>(e.openBlock(),e.createElementBlock("view",{class:"plsbuy-contain"},[e.createElementVNode("view",{class:"plsbuy-title"},[e.createElementVNode("image",{class:"plsbuy-title-img",src:"/static/index/project3.png"},null,8,["src"]),e.createElementVNode("view",{class:"plsbuy-title-font"},[e.createElementVNode("view",{class:"plsbuy-title-weight"},"纸尿裤-拉拉裤"),e.createElementVNode("view",{class:"plsbuy-title-flex"},[e.createElementVNode("view",{class:"popup-right-font-contain",style:{width:"75%"}},[e.createElementVNode("view",{class:"popup-font-left"}," 规格型号: "),e.createElementVNode("view",{class:"popup-font-right"}," 800mm*690mm ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 采购单位: "),e.createElementVNode("view",{class:"popup-font-right"}," 片 ")])]),e.createElementVNode("view",{class:"plsbuy-title-flex"},[e.createElementVNode("view",{class:"popup-right-font-contain",style:{width:"75%"}},[e.createElementVNode("view",{class:"popup-font-left"}," 库存上限: "),e.createElementVNode("view",{class:"popup-font-right"}," 1000 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 库存下限: "),e.createElementVNode("view",{class:"popup-font-right"}," 10 ")])]),e.createElementVNode("view",{class:"plsbuy-title-flex"},[e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 库存数量: "),e.createElementVNode("view",{class:"popup-font-right"}," 50 ")])])])]),e.createElementVNode("view",{class:"plsbuy-card"},[e.createElementVNode("scroll-view",{"scroll-y":"","scroll-top":r.value,style:{height:"100%",width:"1150rpx"},"show-scrollbar":!0},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.value,((l,i)=>(e.openBlock(),e.createElementBlock("view",{key:i,class:e.normalizeClass(["plsbuy-card-heng",{"slide-out":l.sliding}])},[e.createElementVNode("view",{class:"card-flex"},[e.createElementVNode("image",{class:"plsbuy-card-img",src:"/static/index/subtract.png",onClick:e=>{return t=i,d(),void(m.value&&(m.value=!1,o.value[t].sliding=!0,setTimeout((()=>{o.value.splice(t,1),m.value=!0}),400)));var t}},null,8,["onClick"]),e.createElementVNode("view",{class:"plsbuy-weight"},"供应商:"),e.createElementVNode("view",{class:"plsbuy-font-right"},e.toDisplayString(l.name),1)]),e.createElementVNode("view",{class:"card-flex"},[e.createElementVNode("view",{class:"plsbuy-right-weight"},"采购数量"),e.createElementVNode("view",{class:e.normalizeClass(1===l.change?"plsbuy-jian-target":"plsbuy-jian"),onClick:e=>(e=>{d(),e.many&&e.many--,e.change=1,setTimeout((()=>{e.change=0}),300)})(l)}," -",10,["onClick"]),e.createElementVNode("view",{class:e.normalizeClass(t.saveIndex==i?"plsbuy-number-target":"plsbuy-number"),onClick:e=>((e,t)=>{a("openRight",e,t)})(l.many,i)},e.toDisplayString(l.many),11,["onClick"]),e.createElementVNode("view",{class:e.normalizeClass(2===l.change?"plsbuy-jia-target":"plsbuy-jia"),onClick:e=>(e=>{d(),e.many<9999&&e.many++,e.change=2,setTimeout((()=>{e.change=0}),300)})(l)},"+ ",10,["onClick"])])],2)))),128))],8,["scroll-top"])]),e.createElementVNode("view",{class:"plsbuy-amount"},[e.createElementVNode("view",{class:"plsbuy-amount-font"}," 合计: "),e.createElementVNode("view",{class:"plsbuy-amount-red"}," 100 ")]),e.createElementVNode("view",{class:"plsbuy-bottom"},[e.createElementVNode("view",{class:"plsbuy-bottom-blue",onClick:c}," 新增供应商 "),e.createElementVNode("view",{class:"plsbuy-bottom-blue",onClick:s}," 确认 "),e.createElementVNode("view",{class:"plsbuy-bottom-white",onClick:s}," 取消 ")])]))}}),[["__scopeId","data-v-5d6b5cea"]]),fe=s(e.defineComponent({__name:"calculator",props:{doOnce:{type:Number,required:!0},translateNumber:{type:Number,required:!0}},emits:["right"],setup(t,{emit:l}){const a=l,i=e.ref(-1),r=t;e.watch((()=>r.doOnce),(()=>{c.value=r.translateNumber,o.value=m(c.value)}));const n=[1,2,3,4,5,6,7,8,9,"AC",0,"CE"],o=e.ref("0000"),c=e.ref(0),s=(e,t)=>{return i.value=t,setTimeout((()=>{i.value=-1}),300),"AC"==e?(c.value=0,void(o.value="0000")):"CE"==e?(c.value=Math.trunc(c.value/10),void(o.value=m(c.value))):(l=c.value,void(Math.abs(l).toString().length>3||(c.value?c.value=10*c.value+e:c.value=e,o.value=m(c.value))));var l},d=()=>{a("right",c.value)};function m(e){const t=Math.floor(Math.abs(e));return String(t).padStart(4,"0")}return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"plsbuy-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"请购数量")])]),e.createElementVNode("view",{class:"calculator-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(n,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(i.value==l?"calculator-kuai-target":"calculator-kuai"),onClick:e=>s(t,l)},e.toDisplayString(t),11,["onClick"])]))),64))]),e.createElementVNode("view",{class:"qinggou-font"}," 请购数量 "),e.createElementVNode("view",{class:"stringShow-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"stringShow-kuai"},e.toDisplayString(t),1)])))),128))]),e.createElementVNode("view",{class:"plsbuy-bottom"},[e.createElementVNode("view",{class:"plsbuy-bottom-blue",onClick:d}," 确认 ")])]))}}),[["__scopeId","data-v-72274131"]]),Ne=s(e.defineComponent({__name:"index",props:{isShow:{type:Boolean,required:!0}},setup(t){const l=t,a=e.ref(!0),i=e.ref(null),r=e.ref(null),n=e.ref(null),o=e.ref(null),c=e.ref([{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2}]);e.watch((()=>l.isShow),((e,t)=>{!t&&e&&(a.value=!1,setTimeout((()=>{a.value=!0}),50))}));const s=e.ref(!1),d=e.ref(!1),m=e.ref(!1),u=e.ref(!1),v=e.ref(!1),p=e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]),g=()=>{s.value=!0,d.value=!1,setTimeout((()=>{d.value=!0}),100)},w=()=>{s.value=!1,m.value=!0,u.value=!1,setTimeout((()=>{u.value=!0}),100)},h=()=>{r.value.openDrawer()},f=()=>{o.value.openDrawer()},N=()=>{s.value=!1,n.value.openDrawer()},y=e.ref(-1),E=e.ref(0),V=e.ref(!1),b=e.ref(0),k=(e,t)=>{y.value=t,E.value=e,V.value=!0,b.value++},T=()=>{y.value=-1,E.value=0,V.value=!1},D=e.ref(0),C=e=>{V.value=!1,D.value=e};return(l,S)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.withDirectives(e.createElementVNode("view",{class:"index-content-other",style:e.normalizeStyle(a.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-right-height"}),e.createElementVNode("view",{class:"index-right-title"},[e.createElementVNode("view",{class:"index-right-name"}," 货品名称 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入货品名称"}),e.createElementVNode("view",{class:"index-right-name"}," 货品编码 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入货品编码"}),e.createElementVNode("view",{class:"index-right-name"}," 拼音检索 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入货品拼音"}),e.createElementVNode("view",{class:"index-right-button-all"},[e.createElementVNode("view",{class:"first-bgc"},[e.createElementVNode("image",{class:"bgc-img",src:"/static/index/Warehousing/firstbutton.png"})]),e.createElementVNode("view",{class:"second-bgc"},[e.createElementVNode("image",{class:"bgc-img",src:"/static/index/Warehousing/secondbutton.png"})]),e.createElementVNode("view",{class:e.normalizeClass(v.value?"bgc-white":"third-bgc"),onClick:S[0]||(S[0]=e=>v.value=!v.value)},[e.withDirectives(e.createElementVNode("view",{class:"red-pao"},e.toDisplayString("99+"),512),[[e.vShow,!v.value]]),e.createElementVNode("image",{class:"bgc-img",src:"/static/index/Warehousing/thirdbutton.png"})],2),e.createElementVNode("view",{class:"fourth-bgc",onClick:f},[e.createElementVNode("image",{class:"fourth-bgc-img",src:"/static/index/Warehousing/fourthbutton.png"}),e.createElementVNode("view",{class:"fourth-bgc-font"}," 请购单 ")]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"index-right-button"},[e.createElementVNode("image",{class:"index-right-button-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"index-right-button-font"},e.toDisplayString(t.name),1)])])))),128))])]),e.createElementVNode("view",{class:"swiper-contain"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"98%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"swiper-card",style:e.normalizeStyle(1===t.type?{background:"#00D6A9 url(/static/index/warehouseCard/bgcgreen.png) center/cover"}:2===t.type?{background:"#BD9AF8 url(/static/index/warehouseCard/bgcpouple.png) center/cover"}:{})},[e.createElementVNode("view",{class:"swiper-card-left"},[e.createElementVNode("view",{class:"swiper-card-left-white"},[e.createElementVNode("image",{class:e.normalizeClass(0===t.type?"swiper-card-left-white-img-first":1===t.type?"swiper-card-left-white-img-second":"swiper-card-left-white-img-third"),src:"/static/index/project3.png",onClick:g},null,10,["src"])])]),e.createElementVNode("view",{class:"swiper-card-right"},[e.createElementVNode("view",{class:"swiper-right-title"},[e.createElementVNode("view",{class:"swiper-title-font"},e.toDisplayString(t.name),1),e.createElementVNode("view",{class:"swiper-title-font-button"},e.toDisplayString(0===t.type?"护理类":1===t.type?"医疗类":"行政类"),1)]),e.createElementVNode("view",{class:"swiper-heng"}),e.createElementVNode("view",{class:"swiper-font"}," 规格型号:800mm*690mm "),e.createElementVNode("view",{class:"swiper-double"},[e.createElementVNode("view",{class:"swiper-littlefont"}," 采购单位:片 "),e.withDirectives(e.createElementVNode("view",{class:"swiper-littlefont",style:{"margin-left":"10rpx"}},[e.createTextVNode(" 库存 "),e.createElementVNode("view",{style:{color:"rgb(18,169,51)"}},"↑"),e.createTextVNode(" :1000 ")],512),[[e.vShow,v.value]])]),e.createElementVNode("view",{class:"swiper-double"},[e.createElementVNode("view",{class:"swiper-littlefont"},[e.createTextVNode(" 库存数量: "),e.createElementVNode("view",{class:"blackfont"}," 50 ")]),e.withDirectives(e.createElementVNode("view",{class:"swiper-littlefont",style:{"margin-left":"10rpx"}},[e.createTextVNode(" 库存 "),e.createElementVNode("view",{style:{color:"rgb(248,122,85)"}},"↓"),e.createTextVNode(" :5 ")],512),[[e.vShow,v.value]])]),e.createElementVNode("view",{class:"swiper-left-buttons"},[e.createElementVNode("view",{class:e.normalizeClass(0===t.type?"swiper-left-button-blue":1===t.type?"swiper-left-button-green":"swiper-left-button-pouple"),onClick:w}," 请购 ",2),e.createElementVNode("view",{class:"swiper-left-button",onClick:N}," 出入库 ")])])],4)])))),128))]),e.createElementVNode("view",{class:"bug-bottom"})])])]),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")],4),[[e.vShow,t.isShow]]),e.withDirectives(e.createElementVNode("view",{class:"popup-detail",onClick:S[2]||(S[2]=e=>s.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content",style:e.normalizeStyle({opacity:d.value?1:0}),onClick:S[1]||(S[1]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(we,{onQinggou:w,onChuruku:N})],4)],512),[[e.vShow,s.value&&t.isShow]]),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-plsbuy",onClick:S[6]||(S[6]=e=>m.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content-plsbuy",style:e.normalizeStyle({opacity:u.value?1:0}),onClick:S[4]||(S[4]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(he,{saveIndex:y.value,changeNumber:D.value,onCloseIt:S[3]||(S[3]=e=>m.value=!1),onOpenRight:k,onCloseRight:T},null,8,["saveIndex","changeNumber"])],4),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-content-calculator",style:e.normalizeStyle({opacity:u.value?1:0}),onClick:S[5]||(S[5]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(fe,{doOnce:b.value,translateNumber:E.value,onRight:C},null,8,["doOnce","translateNumber"])],4),[[e.vShow,V.value]])],512),[[e.vShow,m.value&&t.isShow]]),e.createVNode(x,{ref_key:"drawer",ref:r},{default:e.withCtx((()=>[e.createVNode(ne)])),_:1},512),e.createVNode(x,{ref_key:"draweranther",ref:i,widNumber:45,style:{"z-index":"9999"}},{default:e.withCtx((()=>[e.createVNode(oe)])),_:1},512),e.createVNode(x,{ref_key:"goshopdrawer",ref:o},{default:e.withCtx((()=>[e.createVNode(pe,{onOpendetail:S[7]||(S[7]=e=>i.value.openDrawer())})])),_:1},512),e.createVNode(x,{ref_key:"gobackdrawer",ref:n,widNumber:45},{default:e.withCtx((()=>[e.createVNode(ce)])),_:1},512),e.createVNode(ge,{isShow:t.isShow&&!s.value&&!m.value,onClick:h},null,8,["isShow"])],64))}}),[["__scopeId","data-v-912c10f8"]]),ye="/static/index/guan.png",xe=s(e.defineComponent({__name:"index",props:{openType:{type:Number,required:!0}},emits:["closedetail","openDrawer"],setup(t,{emit:l}){const a=e.ref("");e.ref(!1),e.ref("");const i=["已作废","未确认","已确认","未完结","待结账","已结账"];e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const r=l,n=e=>{r("openDrawer",e)};return(l,r)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")]),e.createElementVNode("view",{class:e.normalizeClass(t.openType?"title-button":"title-button-red")},e.toDisplayString(i[t.openType]),3)]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"采购单号:"),e.createElementVNode("view",{class:"",style:{"font-weight":"700"}},"A0120250301001")]),e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"总金额:"),e.createElementVNode("view",{class:""},"100.00")])]),e.createElementVNode("view",{class:"weight-boom"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"物料信息")]),3===t.openType?(e.openBlock(),e.createElementBlock("view",{key:0,class:"draw-flex",style:{"margin-top":"-10rpx"}},[e.createElementVNode("view",{class:"button-first",onClick:r[0]||(r[0]=e=>n(0))}," 入库单 "),e.createElementVNode("view",{class:"button-second",onClick:r[1]||(r[1]=e=>n(1))}," 挂账单 "),e.createElementVNode("view",{class:"button-third",onClick:r[2]||(r[2]=e=>n(2))}," 销账单 ")])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("image",{class:"card-img",src:ye})]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 货品名称: "),e.createElementVNode("view",{class:"title-black"}," 引流袋(医用透明) ")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 采购数量: "),e.createElementVNode("view",{class:"title-black"}," 10 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 货品编码: "),e.createElementVNode("view",{class:"title-black"}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 规格型号: "),e.createElementVNode("view",{class:"title-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单位: "),e.createElementVNode("view",{class:"title-black"}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-black"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-black"}," 10.12 ")])])])])])])]))),64))])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"10rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},e.toDisplayString(t.openType?"备注":"作废原因"),1),t.openType?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"draw-red"},"*"))])]),e.createElementVNode("view",{class:"down-note"},[e.withDirectives(e.createElementVNode("textarea",{class:"down-note-title-input","onUpdate:modelValue":r[3]||(r[3]=e=>a.value=e),maxlength:"300","placeholder-style":"color:#999",placeholder:t.openType?"请输入备注":"不予采购"},null,8,["placeholder"]),[[e.vModelText,a.value]]),e.createElementVNode("text",{class:"char-count"},e.toDisplayString(a.value.length)+"/300",1)])])]))}}),[["__scopeId","data-v-7e25ad7e"]]),Ee=s(e.defineComponent({__name:"index",props:{},emits:["voidIt","closevoid"],setup(t,{emit:l}){const a=e.ref("");e.ref(!1),e.ref("");const i=l;e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")])]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"采购单号:"),e.createElementVNode("view",{class:"",style:{"font-weight":"700"}},"A0120250301001")]),e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"总金额:"),e.createElementVNode("view",{class:"",style:{color:"red"}},"100.00")])]),e.createElementVNode("view",{class:"weight-boom"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"物料信息")])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("image",{class:"card-img",src:ye})]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 货品名称: "),e.createElementVNode("view",{class:"title-black"}," 引流袋(医用透明) ")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 采购数量: "),e.createElementVNode("view",{class:"title-black"}," 10 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 货品编码: "),e.createElementVNode("view",{class:"title-black"}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 规格型号: "),e.createElementVNode("view",{class:"title-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单位: "),e.createElementVNode("view",{class:"title-black"}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-red"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-red"}," 10.12 ")])])])])])])]))),64))])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"作废原因"),e.createElementVNode("view",{class:"draw-red"},"*")])]),e.createElementVNode("view",{class:"down-note"},[e.withDirectives(e.createElementVNode("textarea",{class:"down-note-title-input","onUpdate:modelValue":l[0]||(l[0]=e=>a.value=e),maxlength:"300","placeholder-style":"color:#999",placeholder:"请输入作废原因"},null,512),[[e.vModelText,a.value]]),e.createElementVNode("text",{class:"char-count"},e.toDisplayString(a.value.length)+"/300",1)]),e.createElementVNode("view",{class:"button-card"},[e.createElementVNode("view",{class:"swiper-button-blue",onClick:l[1]||(l[1]=e=>{i("voidIt")})}," 作废 ")])])]))}}),[["__scopeId","data-v-034b4de7"]]),Ve="/static/index/Warehousing/goku.png",be="/static/index/Warehousing/guazhang.png",ke="/static/index/Warehousing/hexiao.png",Te="/static/index/Warehousing/zuo.png",De="/static/index/Warehousing/you.png",Ce=s(e.defineComponent({__name:"index",props:{dantype:{type:Number,required:!0}},emits:["opensuixing","closevoid"],setup(t,{emit:a}){e.ref(""),e.ref(!1),e.ref("");const i=a,r=e.ref(0);e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const n=()=>{i("opensuixing")},o=()=>{uni.previewImage({urls:["/static/index/Warehousing/photo.png"]}),l("log","at component/storeroom/drawer/storage/index.vue:294","????")};return(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:e.normalizeClass(t.dantype?"pouple-font":"green-font")},"采购单号:",2),e.createElementVNode("view",{class:e.normalizeClass(t.dantype?"pouple-font":"green-font"),style:{"font-weight":"700"}},"A0120250301001",2)])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},e.toDisplayString(t.dantype?"挂账单":"入库单"),1)])]),e.createElementVNode("view",{class:"radio-circle-top-father"},[e.createElementVNode("scroll-view",{"scroll-x":"",style:{height:"100%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(r.value?"radio-circle":"radio-circle-target"),onClick:a[0]||(a[0]=e=>r.value=0)},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[1]||(a[1]=e=>r.value=0)},e.toDisplayString(`${t.dantype?"挂账":"入库"}单号:A0120250301001555${t.dantype?"G":"R"}01`),1)]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(1==r.value?"radio-circle-target":"radio-circle"),onClick:a[2]||(a[2]=e=>{r.value=1})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[3]||(a[3]=e=>r.value=1)},e.toDisplayString(`${t.dantype?"挂账":"入库"}单号:A0120250301001555${t.dantype?"G":"R"}02`),1)]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(2==r.value?"radio-circle-target":"radio-circle"),onClick:a[4]||(a[4]=e=>{r.value=2})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[5]||(a[5]=e=>r.value=2)},e.toDisplayString(`${t.dantype?"挂账":"入库"}单号:A0120250301001555${t.dantype?"G":"R"}03`),1)])])])]),e.createElementVNode("view",{class:"ruku-time"},[e.createElementVNode("view",{style:{display:"flex","margin-left":"50rpx"}},[e.createElementVNode("view",{class:"ruku-time-font"},e.toDisplayString((t.dantype?"挂账":"入库")+"时间:"),1),e.createElementVNode("view",{class:"ruku-time-font"}," 2025.03.02 10:10:10 ")]),e.createElementVNode("view",{class:"button-first",onClick:n}," 随行单 ")]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("view",{class:"card-img-bgc"},[e.createElementVNode("image",{class:"card-img",src:ye})])]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 采购数量: "),e.createElementVNode("view",{class:"title-black"}," 10 ")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 总金额: "),e.createElementVNode("view",{class:"title-black"}," 1150 ")])]),e.createElementVNode("view",{class:"card-right-bgc"},[e.createElementVNode("view",{class:"card-boom"},[e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%","margin-left":"30rpx"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 货品编码: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 规格型号: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 采购单位: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%","margin-left":"30rpx"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-black"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-black"}," 10.12 ")])])]),e.createElementVNode("view",{class:"boom-other"},[e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:Ve}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量"),e.createElementVNode("view",{class:"boom-other-weight"},"10")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:be}),e.createElementVNode("view",{class:"boom-other-font"},"挂账数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:ke}),e.createElementVNode("view",{class:"boom-other-font"},"核销数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")])])])])])])])]))),64))])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"30rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"拣货拍照")])]),e.createElementVNode("view",{class:"down-note"},[e.createElementVNode("image",{class:"down-note-img",style:{"margin-left":"40rpx"},src:Te}),e.createElementVNode("scroll-view",{"scroll-x":"",style:{height:"100%",width:"950rpx"},"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex"}},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l,onClick:o},[e.createElementVNode("image",{class:"down-note-photo",src:"/static/index/Warehousing/photo.png"})]))),64))])]),e.createElementVNode("image",{class:"down-note-img",src:De})])])]))}}),[["__scopeId","data-v-4605a6eb"]]),Se=s(e.defineComponent({__name:"index",props:{},emits:["opensuixing","closevoid"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref(""),e.ref(0);const a=e.ref(["https://img-s.msn.cn/tenant/amp/entityid/AA1ECZ6y.img?w=768&h=960&m=6&x=355&y=171&s=47&d=47","https://img-s.msn.cn/tenant/amp/entityid/AA1ECtEb.img?w=768&h=436&m=6&x=280&y=134&s=200&d=200","/static/index/addphoto.png"]);e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const i=e=>{e==a.value.length-1?uni.chooseImage({count:9,sizeType:["original","compressed"],sourceType:["album","camera"],success:e=>{a.value.pop(),a.value=[...a.value,...e.tempFilePaths],a.value.push("/static/index/addphoto.png")}}):uni.previewImage({urls:a.value.slice(0,-1),current:a.value[e]})};return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"入库单")])]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:"green-font"},"采购单号:"),e.createElementVNode("view",{class:"green-font",style:{"font-weight":"700"}},"A0120250301001")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"50rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"随行单")])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%"},"show-scrollbar":!1},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"card-father",onClick:e=>i(l)},[e.createElementVNode("view",{class:"card-white"},[e.createElementVNode("image",{class:"card-white-photo",src:t},null,8,["src"])]),l!==a.value.length-1?(e.openBlock(),e.createElementBlock("view",{key:0,class:"down-title"},[e.createElementVNode("view",{class:"down-title-flex"},[e.createElementVNode("image",{class:"down-title-photo",src:"/static/index/Warehousing/shangchuanpeople.png"}),e.createElementVNode("view",{style:{"margin-left":"10rpx"}},"上传人:"),e.createElementVNode("view",{style:{"font-weight":"700"}},"王法")]),e.createElementVNode("view",{class:"down-title-flex"},[e.createElementVNode("image",{class:"down-title-photo",src:"/static/index/Warehousing/shangchuantime.png"}),e.createElementVNode("view",{style:{"margin-left":"10rpx"}},"上传时间:"),e.createElementVNode("view",{style:{"font-weight":"500"}},"2025.03.01 10:00:00")])])):e.createCommentVNode("",!0)],8,["onClick"])])))),128))])]),e.createElementVNode("view",{class:"button-card"})])]))}}),[["__scopeId","data-v-1773957a"]]),Be=s(e.defineComponent({__name:"index",props:{},emits:["opensuixing","closehexiao"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref("");const a=e.ref(0);return e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]),(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:"green-font"},"采购单号:"),e.createElementVNode("view",{class:"green-font",style:{"font-weight":"700"}},"A0120250301001")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"销账单")])]),e.createElementVNode("view",{class:"radio-circle-top-father"},[e.createElementVNode("scroll-view",{"scroll-x":"",style:{height:"100%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(a.value?"radio-circle":"radio-circle-target"),onClick:l[0]||(l[0]=e=>a.value=0)},null,2),e.createElementVNode("view",{class:"radio-font",onClick:l[1]||(l[1]=e=>a.value=0)},"销账单号:A0120250301001555X01")]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(1==a.value?"radio-circle-target":"radio-circle"),onClick:l[2]||(l[2]=e=>{a.value=1})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:l[3]||(l[3]=e=>a.value=1)},"销账单号:A0120250301001555RX2")]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(2==a.value?"radio-circle-target":"radio-circle"),onClick:l[4]||(l[4]=e=>{a.value=2})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:l[5]||(l[5]=e=>a.value=2)},"销账单号:A0120250301001555X03")])])])]),e.createElementVNode("view",{class:"ruku-time"},[e.createElementVNode("view",{style:{display:"flex","margin-left":"50rpx"}},[e.createElementVNode("view",{class:"ruku-time-font"}," 销账时间: "),e.createElementVNode("view",{class:"ruku-time-font"}," 2025.03.02 10:10:10 ")])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("view",{class:"card-img-bgc"},[e.createElementVNode("image",{class:"card-img",src:ye})])]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 采购数量: "),e.createElementVNode("view",{class:"title-black"}," 10 ")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 总金额: "),e.createElementVNode("view",{class:"title-black"}," 1150 ")])]),e.createElementVNode("view",{class:"card-right-bgc"},[e.createElementVNode("view",{class:"card-boom"},[e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%","margin-left":"30rpx"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 货品编码: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 规格型号: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 采购单位: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%","margin-left":"30rpx"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-black"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-black"}," 10.12 ")])])]),e.createElementVNode("view",{class:"boom-other"},[e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:Ve}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量"),e.createElementVNode("view",{class:"boom-other-weight"},"10")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:be}),e.createElementVNode("view",{class:"boom-other-font"},"挂账数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:ke}),e.createElementVNode("view",{class:"boom-other-font"},"核销数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")])])])])])])])]))),64))])])])])]))}}),[["__scopeId","data-v-ee45895e"]]),ze=s(e.defineComponent({__name:"index",emits:["closedetail","openDrawer"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref("");const a=e.ref(0),i=e.ref([{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2}]);e.onMounted((()=>{c.value=JSON.parse(JSON.stringify(i.value))})),e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const r=l,n=e=>{r("openDrawer",e)},o=e.ref([]),c=e.ref([]),s=()=>{c.value=[],a.value?i.value.forEach((e=>{e.type===a.value-1&&c.value.push(e)})):c.value=JSON.parse(JSON.stringify(i.value))};return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")]),e.createElementVNode("view",{class:"draw-title-money"},[e.createElementVNode("view",{class:"draw-title-mon-left"},"总金额:"),e.createElementVNode("view",{class:"draw-title-mon-right"},"921.50")])]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"采购单号:"),e.createElementVNode("view",{class:"",style:{"font-weight":"700"}},"A0120250301001")]),e.createElementVNode("view",{class:"weight-right"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"button-blue",style:{"margin-left":"80rpx"},onClick:l[0]||(l[0]=e=>n(3))}," 拣货 "),e.createElementVNode("view",{class:"button-blue",onClick:l[1]||(l[1]=e=>n(4))}," 随行单 ")])])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"0rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"物料信息")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-target",style:e.normalizeStyle(0===a.value?{background:"#fff"}:{}),onClick:l[2]||(l[2]=e=>{a.value=0,s()})},[0===a.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"bad-circle-right"})):e.createCommentVNode("",!0),0===a.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"bad-circle-left"})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"kuai-blue"}),e.createElementVNode("view",{class:"kuai-font"},"全部")],4),e.createElementVNode("view",{class:"draw-target",style:e.normalizeStyle(1===a.value?{background:"#fff"}:{}),onClick:l[3]||(l[3]=e=>{a.value=1,s()})},[1===a.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"bad-circle-right"})):e.createCommentVNode("",!0),1===a.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"bad-circle-left"})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"kuai-pouple"}),e.createElementVNode("view",{class:"kuai-font"},"待入库")],4),e.createElementVNode("view",{class:"draw-target",style:e.normalizeStyle(2===a.value?{background:"#fff"}:{}),onClick:l[4]||(l[4]=e=>{a.value=2,s()})},[2===a.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"bad-circle-right"})):e.createCommentVNode("",!0),2===a.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"bad-circle-left"})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"kuai-green"}),e.createElementVNode("view",{class:"kuai-font"},"已入库")],4),e.createElementVNode("view",{class:"draw-target",style:e.normalizeStyle([{"margin-right":"120rpx"},3===a.value?{background:"#fff"}:{}]),onClick:l[5]||(l[5]=e=>{a.value=3,s()})},[3===a.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"bad-circle-right"})):e.createCommentVNode("",!0),3===a.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"bad-circle-left"})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"kuai-orange"}),e.createElementVNode("view",{class:"kuai-font"},"销账")],4)])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>(e=>{o.value.includes(e)?o.value=o.value.filter((t=>t!==e)):o.value.push(e)})(l)},[e.createElementVNode("view",{class:"swiper-card",style:e.normalizeStyle(1===t.type?{background:"#00D6A9 url(/static/index/warehouseCard/bgcgreengreen.png) center/cover"}:2===t.type?{background:"#FF6699 url(/static/index/warehouseCard/bgcorange.png) center/cover"}:{})},[e.createElementVNode("view",{class:"card-button",style:e.normalizeStyle(1===t.type?{background:"linear-gradient(to right, #E2FFFF, #83EBDC, #E2FFFF)"}:2===t.type?{background:"linear-gradient(to right, #FFFFFF , #FFCCC3, #FFE6FF )"}:{})},[e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:Ve}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量"),e.createElementVNode("view",{class:"boom-other-weight"},"10")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:be}),e.createElementVNode("view",{class:"boom-other-font"},"挂账数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:ke}),e.createElementVNode("view",{class:"boom-other-font"},"销账数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")])],4),e.createElementVNode("view",{class:"swiper-card-title"},[o.value.includes(l)?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"swiper-card-img"},[e.createElementVNode("view",{class:"swiper-card-font-font"},"✓")])),o.value.includes(l)?(e.openBlock(),e.createElementBlock("view",{key:1,class:"swiper-card-img-target"},[e.createElementVNode("view",{class:"swiper-card-font-font"},"✓")])):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"swiper-card-title-name"},[e.createElementVNode("view",{class:"swiper-card-font"}," 采购数量: "),e.createElementVNode("view",{class:"swiper-card-weight"}," 10 "),e.createElementVNode("view",{class:"swiper-card-shu"}," | "),e.createElementVNode("view",{class:"swiper-card-font"}," 总金额: "),e.createElementVNode("view",{class:"swiper-card-weight"}," 1150 ")]),e.createElementVNode("view",{class:"swiper-right-title"},[2!==t.type?(e.openBlock(),e.createElementBlock("view",{key:0,class:"swiper-title-font-button"},e.toDisplayString(0===t.type?"待入库":1===t.type?"已入库":""),1)):e.createCommentVNode("",!0),2===t.type?(e.openBlock(),e.createElementBlock("view",{key:1,class:"swiper-title-font-button",style:{"margin-right":"45rpx","margin-left":"5rpx"}}," 销账 ")):e.createCommentVNode("",!0)])]),e.createElementVNode("view",{style:{display:"flex"}},[e.createElementVNode("view",{class:"swiper-card-left"},[e.createElementVNode("view",{class:"swiper-card-left-white"},[e.createElementVNode("image",{class:e.normalizeClass(0===t.type?"swiper-card-left-white-img-first":1===t.type?"swiper-card-left-white-img-second":"swiper-card-left-white-img-third"),src:"/static/index/project3.png"},null,10,["src"])])]),e.createElementVNode("view",{class:"swiper-card-right"},[e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"30rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 物料名称: "),e.createElementVNode("view",{class:"swiper-font-right"}," 胃管(进口) ")]),e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"10rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-font-right"}," CH/FR15,100cm ")]),e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"10rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 物料编码: "),e.createElementVNode("view",{class:"swiper-font-right"}," QXYP016 ")]),e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"10rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 采购单位: "),e.createElementVNode("view",{class:"swiper-font-right"}," 根 ")]),e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"10rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 采购单价: "),e.createElementVNode("view",{class:"swiper-font-right",style:{"margin-right":"20rpx"}}," 115.00 "),e.createElementVNode("view",{class:"swiper-font-left"}," 到货单价: "),e.createElementVNode("view",{class:"swiper-font-right"}," 115.00 ")])])])],4)],8,["onClick"])))),128))])])])])]))}}),[["__scopeId","data-v-72acf113"]]),_e=s(e.defineComponent({__name:"index",props:{backnumber:{type:Number}},emits:["opensuixing","closehexiao","closepickingdrawer","openCal"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref("");const a=l,i=t;e.watch((()=>i.backnumber),(()=>{n.value[o.value].many=i.backnumber})),e.ref(0),e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const r=e.ref(["https://img-s.msn.cn/tenant/amp/entityid/AA1ECZ6y.img?w=768&h=960&m=6&x=355&y=171&s=47&d=47","https://img-s.msn.cn/tenant/amp/entityid/AA1ECtEb.img?w=768&h=436&m=6&x=280&y=134&s=200&d=200","/static/index/addphoto.png"]),n=e.ref([{name:"入库数量",many:9999,change:0},{name:"销账数量",many:0,change:0}]),o=e.ref(0),c=()=>{a("closepickingdrawer")},s=e=>{e==r.value.length-1?uni.chooseImage({count:9,sizeType:["original","compressed"],sourceType:["album","camera"],success:e=>{r.value.pop(),r.value=[...r.value,...e.tempFilePaths],r.value.push("/static/index/addphoto.png")}}):uni.previewImage({urls:r.value.slice(0,-1),current:r.value[e]})};return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"title-title"}," 留置针敷贴(医用透明敷料) "),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"10rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")])]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 货品名称: "),e.createElementVNode("view",{class:"swiper-black"}," 留置针敷贴(医用透明敷料) ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"45%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 货品编码: "),e.createElementVNode("view",{class:"swiper-black"}," FLYP001 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"45%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购单位: "),e.createElementVNode("view",{class:"swiper-black"}," 个 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购单价: "),e.createElementVNode("view",{class:"swiper-black"}," 0.1 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 到货单价: "),e.createElementVNode("view",{class:"swiper-black"}," 0.12 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购金额: "),e.createElementVNode("view",{class:"swiper-black"}," 10.12 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"10rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"入库信息")])]),e.createElementVNode("view",{class:"color-father"},[e.createElementVNode("view",{class:"color-pink",style:{"margin-left":"40rpx"}},[e.createElementVNode("view",{class:"color-weight"}," 10 "),e.createElementVNode("view",{class:"color-font"}," 采购数量 ")]),e.createElementVNode("view",{class:"color-green"},[e.createElementVNode("view",{class:"color-weight"}," 0 "),e.createElementVNode("view",{class:"color-font"}," 入库数量 ")]),e.createElementVNode("view",{class:"color-red"},[e.createElementVNode("view",{class:"color-weight"}," 0 "),e.createElementVNode("view",{class:"color-font"}," 销账数量 ")])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"10rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"拣货入库")])]),e.createElementVNode("view",{class:"swiper-card-once",style:{height:"240rpx"}},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx","flex-direction":"column"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"plsbuy-card-heng"},[e.createElementVNode("view",{class:"card-flex"},[e.createElementVNode("view",{class:"plsbuy-font-right"},e.toDisplayString(t.name),1)]),e.createElementVNode("view",{class:"card-flex"},[e.createElementVNode("view",{class:"plsbuy-right-weight"},e.toDisplayString(l?"销账数量":"入库数量"),1),e.createElementVNode("view",{class:e.normalizeClass(1===t.change?"plsbuy-jian-target":"plsbuy-jian"),onClick:e=>(e=>{e.many&&e.many--,e.change=1,setTimeout((()=>{e.change=0}),300)})(t)}," -",10,["onClick"]),e.createElementVNode("view",{class:"plsbuy-number",onClick:e=>((e,t)=>{o.value=e,a("openCal",t)})(l,t.many)},e.toDisplayString(t.many),9,["onClick"]),e.createElementVNode("view",{class:e.normalizeClass(2===t.change?"plsbuy-jia-target":"plsbuy-jia"),onClick:e=>(e=>{e.many<9999&&e.many++,e.change=2,setTimeout((()=>{e.change=0}),300)})(t)},"+ ",10,["onClick"])])])))),128))])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"拣货拍照")])]),e.createElementVNode("view",{class:"down-note"},[e.createElementVNode("image",{class:"down-note-img",style:{"margin-left":"40rpx"},src:Te}),e.createElementVNode("scroll-view",{"scroll-x":"",style:{height:"100%",width:"950rpx"},"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("image",{class:"down-note-photo",src:t,onClick:e=>s(l)},null,8,["src","onClick"])])))),128))])]),e.createElementVNode("image",{class:"down-note-img",src:De})]),e.createElementVNode("view",{class:"button-card"},[e.createElementVNode("view",{class:"swiper-button-white",onClick:c}," 取消 "),e.createElementVNode("view",{class:"swiper-button-blue",onClick:c}," 确定 ")])])]))}}),[["__scopeId","data-v-ab4efe77"]]),Ie=s(e.defineComponent({__name:"index",props:{doOnce:{type:Number,required:!0},translateNumber:{type:Number,required:!0}},emits:["right","close"],setup(t,{emit:l}){const a=l,i=e.ref(-1),r=t;e.watch((()=>r.doOnce),(()=>{c.value=r.translateNumber,o.value=d(c.value)}));const n=[1,2,3,4,5,6,7,8,9,"AC",0,"CE"],o=e.ref("0000"),c=e.ref(0),s=(e,t)=>{return i.value=t,setTimeout((()=>{i.value=-1}),300),"AC"==e?(c.value=0,void(o.value="0000")):"CE"==e?(c.value=Math.trunc(c.value/10),void(o.value=d(c.value))):(l=c.value,void(Math.abs(l).toString().length>3||(c.value?c.value=10*c.value+e:c.value=e,o.value=d(c.value))));var l};function d(e){const t=Math.floor(Math.abs(e));return String(t).padStart(4,"0")}return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{style:{"margin-left":"80rpx"}},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购数量")])]),e.createElementVNode("view",{class:"calculator-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(n,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(i.value==l?"calculator-kuai-target":"calculator-kuai"),onClick:e=>s(t,l)},e.toDisplayString(t),11,["onClick"])]))),64))]),e.createElementVNode("view",{class:"qinggou-font"}," 采购数量 "),e.createElementVNode("view",{class:"stringShow-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"stringShow-kuai"},e.toDisplayString(t),1)])))),128))])]),e.createElementVNode("view",{class:"button-card"},[e.createElementVNode("view",{class:"swiper-button-white",onClick:l[0]||(l[0]=e=>{a("close")})}," 关闭 "),e.createElementVNode("view",{class:"swiper-button-blue",onClick:l[1]||(l[1]=e=>{a("right",c.value)})}," 确定 ")])])]))}}),[["__scopeId","data-v-e7259b7d"]]),Ue=s(e.defineComponent({__name:"index",props:{savePrice:{type:Number,required:!0},changePrice:{type:Number,required:!0}},emits:["right","close","openCal","closeCal","rightclose"],setup(t,{emit:l}){const a=l;e.ref(-1);const i=t;return(l,r)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title-father"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-font"},"货品名称:"),e.createElementVNode("view",{class:"draw-weight"},"留置针敷贴(医用透明敷料)")])]),e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("image",{class:"card-img",src:ye})]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 货品名称: "),e.createElementVNode("view",{class:"title-black"}," 引流袋(医用透明) ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"300rpx"}},[e.createElementVNode("view",{class:"title-gray"}," 货品编码: "),e.createElementVNode("view",{class:"title-black"}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"300rpx"}},[e.createElementVNode("view",{class:"title-gray"}," 规格型号: "),e.createElementVNode("view",{class:"title-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{}},[e.createElementVNode("view",{class:"title-gray"}," 采购单位: "),e.createElementVNode("view",{class:"title-black"}," 个 ")])])])])])]),e.createElementVNode("view",{class:"contant-mid"},[e.createElementVNode("view",{class:""},"改价前到货单价:"),e.createElementVNode("view",{class:"contant-mid-wight"},e.toDisplayString(t.savePrice),1)]),e.createElementVNode("view",{class:"contant-mid"},[e.createElementVNode("view",{class:""},"改价后到货单价:"),e.createElementVNode("view",{class:"contant-mid-wight-target",onClick:r[0]||(r[0]=e=>{return l=t.changePrice,void a("openCal",l);var l})},e.toDisplayString(t.changePrice),1)]),e.createElementVNode("view",{class:"button-card"},[e.createElementVNode("view",{class:"swiper-button-white",onClick:r[1]||(r[1]=e=>(a("close"),void a("closeCal")))}," 关闭 "),e.createElementVNode("view",{class:"swiper-button-blue",onClick:r[2]||(r[2]=e=>(a("close"),a("closeCal"),void a("rightclose",i.changePrice)))}," 确定 ")])])]))}}),[["__scopeId","data-v-2517b556"]]),Fe=s(e.defineComponent({__name:"index",props:{openType:{type:Number,required:!0},valueBack:{type:Number,required:!0}},emits:["closedetail","openDrawer","openPen"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref("");const a=t,i=[{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1}],r=["已作废","未确认","已确认","未完结","待结账","已结账"];e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const n=l,o=e.ref(0);return e.watch((()=>a.valueBack),(()=>{-1!=a.valueBack&&(i[o.value].price=a.valueBack)}),{immediate:!0}),(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")]),e.createElementVNode("view",{class:e.normalizeClass(t.openType?"title-button":"title-button-red")},e.toDisplayString(r[t.openType]),3)]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"采购单号:"),e.createElementVNode("view",{class:"",style:{"font-weight":"700"}},"A0120250301001")]),e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"总金额:"),e.createElementVNode("view",{class:""},"100.00")])]),e.createElementVNode("view",{class:"weight-boom"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"物料信息")]),e.createElementVNode("view",{class:"draw-flex",style:{"margin-top":"-10rpx"}},[e.createElementVNode("view",{class:"button-blue",onClick:a[0]||(a[0]=e=>{n("openDrawer",4)})}," 随行单 ")])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(i,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-rightbox"},[e.createElementVNode("view",{class:"vertical-line"}),e.createElementVNode("view",{class:"rightbox-other"},[e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:Ve}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量:"),e.createElementVNode("view",{class:"boom-other-weight"},"10")]),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:be}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量:"),e.createElementVNode("view",{class:"boom-other-weight"},"0")]),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:ke}),e.createElementVNode("view",{class:"boom-other-font"},"销账数量:"),e.createElementVNode("view",{class:"boom-other-weight"},"0")])])]),e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("image",{class:"card-img",src:ye})]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 货品名称: "),e.createElementVNode("view",{class:"title-black"},e.toDisplayString(t.name),1)])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 货品编码: "),e.createElementVNode("view",{class:"title-black"}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 规格型号: "),e.createElementVNode("view",{class:"title-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单位: "),e.createElementVNode("view",{class:"title-black"}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-black"},e.toDisplayString(t.price),1),e.createElementVNode("image",{class:"title-img",src:"/static/index/Warehousing/pen.png",onClick:e=>(e=>{o.value=e,n("openPen",i[e].price)})(l)},null,8,["onClick"])]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-black"}," 10.12 ")])])])])])])]))),64))])])])])]))}}),[["__scopeId","data-v-d07b1c84"]]),$e=s(e.defineComponent({__name:"calculatorfly",props:{doOnce:{type:Number,required:!0},translateNumber:{type:[Number,String],required:!0}},emits:["right"],setup(t,{emit:l}){const a=l,i=t,r=e.ref(""),n=e.ref([]),o=e.ref(-1),c=[1,2,3,4,5,6,7,8,9,0,".","CE","AC"];function s(e,t){if(o.value=t,setTimeout((()=>{o.value=-1}),300),"AC"===e)r.value="";else if("CE"===e)r.value=r.value.slice(0,-1);else if("."===e)!r.value.includes(".")&&r.value.length<7&&(r.value=r.value||"0",r.value+=".");else{const t=e.toString();(function(e){const t=r.value+e,l=t.split(".");return!(l[1]&&l[1].length>2)&&t.length<=7})(t)&&(r.value+=t)}m()}function d(){const e=parseFloat(r.value)||0;a("right",e)}function m(){if("0"===r.value)return void(n.value=Array(7).fill(" "));if(!r.value)return void(n.value=Array(7).fill(" "));const e=function(e){let[t,l]=e.split(".");void 0!==l&&(l=l.slice(0,2));t=t.replace(/^0+/,""),""===t&&(t="0");let a=void 0!==l?`${t}.${l}`:t;a.length>7&&(a=a.slice(0,7));return a.padStart(7," ")}(r.value);n.value=e.split("")}return e.watch((()=>i.doOnce),(()=>{r.value=String(i.translateNumber),m()}),{immediate:!0}),(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"plsbuy-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"货品价格")])]),e.createElementVNode("view",{class:"calculator-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(c,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(o.value===l?"calculator-kuai-target":"calculator-kuai"),onClick:e=>s(t,l)},e.toDisplayString(t),11,["onClick"])]))),64))]),e.createElementVNode("view",{class:"qinggou-font"},"货品价格"),e.createElementVNode("view",{class:"stringShow-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"stringShow-kuai"},e.toDisplayString(t),1)])))),128))]),e.createElementVNode("view",{class:"plsbuy-bottom"},[e.createElementVNode("view",{class:"plsbuy-bottom-blue",onClick:d},"确认")])]))}}),[["__scopeId","data-v-86c43bb8"]]),Me=s(e.defineComponent({__name:"orders",props:{isShow:{type:Boolean,required:!0}},setup(t){const l=t,i=e.ref(!0),r=e=>{switch(e){case 0:return"ball-red-big";case 1:return"ball-yellow-big";default:return"ball-green"}},n=e=>{switch(e){case 0:case 1:return"ball-white";case 2:case 3:return"ball-yellow-big";case 4:case 5:return"ball-green"}},o=e=>{switch(e){case 4:return"ball-yellow-big";case 5:return"ball-green";default:return"ball-white"}};e.watch((()=>l.isShow),((e,t)=>{!t&&e&&(i.value=!1,setTimeout((()=>{i.value=!0}),50))}));const c=e.ref(null),s=e.ref(null),d=e.ref(null),m=e.ref(null),u=e.ref(!1),v=e.ref(0),p=e.ref(0),g=e.ref(0),w=e.ref(!1),h=e.ref(-1),f=e.ref(null),N=()=>{f.value.openDrawer()},y=e.ref(-1),E=e.ref(null),V=()=>{E.value.openDrawer()},b=e.ref(0),k=e.ref(null),T=e=>{e?1===e?(d.value.openDrawer(),b.value=1):2===e?(b.value=2,m.value.openDrawer()):3===e?k.value.openDrawer():4===e&&E.value.openDrawer():(d.value.openDrawer(),b.value=0)},D=e.ref(0),C=e.ref(0),S=e.ref(-1),B=e=>{S.value=e},z=e=>{M.value=!1,C.value=e},_=e=>{D.value=e,C.value=e,u.value=!0,X.value=!0},I=e.ref(0),U=e.ref(0),F=e.ref(!1),$=()=>{F.value=!1},M=e.ref(!1),A=e=>{M.value=!0,U.value++,I.value=e},L=e.ref(0),O=e=>{F.value=!1,L.value=e},P=e=>{I.value=e,F.value=!0,X.value=!1,setTimeout((()=>{X.value=!0}),100),U.value++},j=()=>{k.value.closeDrawer()},q=e.ref(null),R=()=>{if(p.value=0,g.value=0,v.value<3?v.value++:v.value=0,v.value){let e=[];switch(v.value){case 1:Q.value.forEach((t=>{1==t.cardType&&e.push(t)})),K.value=e;break;case 2:Q.value.forEach((t=>{t.cardType>2&&e.push(t)})),K.value=e;break;case 3:Q.value.forEach((t=>{0==t.cardType&&e.push(t)})),K.value=e}}else K.value=Q.value},W=()=>{if(v.value=0,g.value=0,p.value<2?p.value++:p.value=0,p.value){let e=[];switch(p.value){case 1:Q.value.forEach((t=>{2!=t.cardType&&3!=t.cardType||e.push(t)})),K.value=e;break;case 2:Q.value.forEach((t=>{t.cardType>3&&e.push(t)})),K.value=e}}else K.value=Q.value},Y=()=>{if(p.value=0,v.value=0,g.value<2?g.value++:g.value=0,g.value){let e=[];switch(g.value){case 1:Q.value.forEach((t=>{4==t.cardType&&e.push(t)})),K.value=e;break;case 2:Q.value.forEach((t=>{5==t.cardType&&e.push(t)})),K.value=e}}else K.value=Q.value},J=e.ref(!1),X=e.ref(!1),Z=e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]),H=e.ref(""),G=e.ref(["已作废","未确认","已确认","未完结","待结账","已结账"]),Q=e.ref(Array.from({length:6},((e,t)=>({cardType:t})))),K=e.ref([]),ee=e=>{switch(e){case 0:return"ball-white";case 1:return"ball-yellow";case 2:return"ball-green";case 3:return"ball-red"}},te=()=>{J.value=!0,X.value=!1,setTimeout((()=>{X.value=!0}),200)},le=()=>{c.value.closeDrawer()},ae=()=>{d.value.closeDrawer()},ie=()=>{s.value.closeDrawer()},re=()=>{m.value.closeDrawer()},ne=e=>{H.value=e.result};return e.onMounted((()=>{K.value=Q.value})),(l,oe)=>{const ce=a(e.resolveDynamicComponent("u-calendar"),ve);return e.openBlock(),e.createElementBlock(e.Fragment,null,[e.withDirectives(e.createElementVNode("view",{class:"index-content-other",style:e.normalizeStyle(i.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-right-height"}),e.createElementVNode("view",{class:"index-right-title"},[e.createElementVNode("view",{class:"ball-bgc",style:{"box-shadow":"2rpx 2rpx 4rpx 0rpx rgba(0, 0, 0, 0.3)"},onClick:R},[e.createElementVNode("view",{class:e.normalizeClass(ee(v.value))}," 采购 ",2)]),e.createElementVNode("view",{class:"ball-bgc",style:{"box-shadow":"2rpx 2rpx 4rpx 0rpx rgba(0, 0, 0, 0.3)"},onClick:W},[e.createElementVNode("view",{class:e.normalizeClass(ee(p.value))}," 拣货 ",2)]),e.createElementVNode("view",{class:"ball-bgc",style:{"box-shadow":"2rpx 2rpx 4rpx 0rpx rgba(0, 0, 0, 0.3)"},onClick:Y},[e.createElementVNode("view",{class:e.normalizeClass(ee(g.value))}," 结账 ",2)]),e.createElementVNode("view",{class:"index-right-name"}," 采购单号 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入采购单号"}),e.createElementVNode("view",{class:"index-right-name"}," 供应商 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入供应商"}),e.createElementVNode("view",{class:"index-right-name"}," 采购日期 "),e.createElementVNode("view",{onClick:oe[0]||(oe[0]=e.withModifiers((e=>w.value=!0),["stop"]))},[e.createElementVNode("view",{class:"index-right-input",style:e.normalizeStyle([{width:"200rpx",height:"66rpx"},H.value?{}:{color:"#999"}])},e.toDisplayString(H.value?H.value:"请输入采购日期"),5)]),e.createVNode(ce,{style:{width:"40%","margin-left":"30%"},"border-radius":"40",modelValue:w.value,"onUpdate:modelValue":oe[1]||(oe[1]=e=>w.value=e),mode:"date",onChange:ne},null,8,["modelValue"]),e.createElementVNode("view",{class:"index-right-button-all"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Z.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:l},[e.createElementVNode("view",{class:"index-right-button"},[e.createElementVNode("image",{class:"index-right-button-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"index-right-button-font"},e.toDisplayString(t.name),1)])])))),128))])]),e.createElementVNode("view",{class:"swiper-contain"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"98%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(K.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-title-contect"},[e.createElementVNode("view",{class:"swiper-states"},[e.createElementVNode("view",{class:e.normalizeClass(t.cardType>1?"swiper-states-heng-one-green":"swiper-states-heng-one")},null,2),e.createElementVNode("view",{class:e.normalizeClass(t.cardType>3?"swiper-states-heng-two-green":"swiper-states-heng-two")},null,2),e.createElementVNode("view",{class:"ball-bgc",style:e.normalizeStyle(0!==t.cardType&&1!==t.cardType?{}:{boxShadow:"8rpx 8rpx 16rpx 0rpx rgba(0, 0, 0, 0.3)",width:"110rpx",height:"110rpx"})},[e.createElementVNode("view",{class:e.normalizeClass(r(t.cardType))}," 采购 ",2)],4),e.createElementVNode("view",{class:"ball-bgc",style:e.normalizeStyle(2!=t.cardType&&3!=t.cardType?{}:{boxShadow:"8rpx 8rpx 16rpx 0rpx rgba(0, 0, 0, 0.3)",width:"110rpx",height:"110rpx"})},[e.createElementVNode("view",{class:e.normalizeClass(n(t.cardType))}," 拣货 ",2)],4),e.createElementVNode("view",{class:"ball-bgc",style:e.normalizeStyle(4!=t.cardType?{}:{boxShadow:"8rpx 8rpx 16rpx 0rpx rgba(0, 0, 0, 0.3)",width:"110rpx",height:"110rpx"})},[e.createElementVNode("view",{class:e.normalizeClass(o(t.cardType))}," 结账 ",2)],4)]),e.createElementVNode("view",{class:e.normalizeClass(t.cardType?"title-button":"title-button-red")},e.toDisplayString(G.value[t.cardType]),3)]),e.createElementVNode("view",{class:"swiper-down"},[e.createElementVNode("view",{class:"swiper-flex"},[e.createElementVNode("view",{class:"swiper-down-title"},"采购单号:"),e.createElementVNode("view",{class:"swiper-down-number"},"A0120250301001555")]),e.createElementVNode("view",{class:"swiper-down-card"},[e.createElementVNode("view",{class:"swiper-down-text"},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 采 购 人 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-down-text"},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 采购日期 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 2025.03.02 ")]),e.createElementVNode("view",{class:"swiper-down-text"},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 联 系 人 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 李月 ")]),e.createElementVNode("view",{class:"swiper-down-text"},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 联系电话 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 13355653333 ")]),e.createElementVNode("view",{class:"swiper-down-text",style:{width:"100%"}},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 供 应 商 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 宽城区珂爱个人卫生用品店 ")])]),e.createElementVNode("view",{class:"swiper-button"},[e.createElementVNode("view",{class:"button-father"},[e.createElementVNode("view",{class:"swiper-button-white",onClick:e=>{return l=t.cardType,h.value=l,void c.value.openDrawer();var l}}," 详情 ",8,["onClick"]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-blue",onClick:e=>(e=>{h.value=e,q.value.openDrawer()})(t.cardType)}," 结账 ",8,["onClick"]),[[e.vShow,4==t.cardType]]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-blue",onClick:N}," 拣货 ",512),[[e.vShow,3==t.cardType||2==t.cardType]]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-white",onClick:e=>(e=>{v.value=0,p.value=0,g.value=0,Q.value[e].cardType--,K.value=Q.value})(l)}," 回退 ",8,["onClick"]),[[e.vShow,t.cardType>=2&&5!==t.cardType]]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-blue",onClick:e=>(e=>{v.value=0,p.value=0,g.value=0,Q.value[e].cardType++,K.value=Q.value})(l)}," 确认 ",8,["onClick"]),[[e.vShow,1==t.cardType]]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-red",onClick:e=>(e=>{y.value=e,s.value.openDrawer()})(l)}," 作废 ",8,["onClick"]),[[e.vShow,1==t.cardType]])])])])])])))),128))])])])]),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")],4),[[e.vShow,t.isShow]]),e.withDirectives(e.createElementVNode("view",{class:"popup-detail",onClick:oe[3]||(oe[3]=e=>J.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content",style:e.normalizeStyle({opacity:X.value?1:0}),onClick:oe[2]||(oe[2]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-detail-left"},[e.createElementVNode("view",{class:"popup-detail-left-white"},[e.createElementVNode("image",{class:"popup-detail-left-white-img",src:"/static/index/project3.png",onClick:te},null,8,["src"])]),e.createElementVNode("view",{class:"popup-detail-left-bottom"},[e.createElementVNode("view",{class:"popup-small-card"})])]),e.createElementVNode("view",{class:"popup-detail-right"})],4)],512),[[e.vShow,J.value&&t.isShow]]),e.createVNode(x,{ref_key:"detaildrawer",ref:c,widNumber:60},{default:e.withCtx((()=>[e.createVNode(xe,{openType:h.value,onClosedetail:le,onOpenDrawer:T},null,8,["openType"])])),_:1},512),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-finish",onClick:oe[8]||(oe[8]=e=>u.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content",style:e.normalizeStyle({opacity:X.value?1:0}),onClick:oe[6]||(oe[6]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(Ue,{changePrice:C.value,savePrice:D.value,onRightclose:B,onClose:oe[4]||(oe[4]=e=>u.value=!1),onOpenCal:A,onCloseCal:oe[5]||(oe[5]=e=>M.value=!1)},null,8,["changePrice","savePrice"])],4),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-content-calculator",style:e.normalizeStyle({opacity:X.value?1:0}),onClick:oe[7]||(oe[7]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode($e,{doOnce:U.value,translateNumber:I.value,onRight:z},null,8,["doOnce","translateNumber"])],4),[[e.vShow,M.value]])],512),[[e.vShow,u.value&&t.isShow]]),e.createVNode(x,{ref_key:"finishAccountdrawer",ref:q,widNumber:60},{default:e.withCtx((()=>[e.createVNode(Fe,{valueBack:S.value,openType:h.value,onClosedetail:le,onOpenDrawer:T,onOpenPen:_},null,8,["valueBack","openType"])])),_:1},512),e.createVNode(x,{ref_key:"storagedrawer",ref:d,widNumber:50,style:{"z-index":"1000"}},{default:e.withCtx((()=>[e.createVNode(Ce,{dantype:b.value,onOpensuixing:V,onClosevoid:ae},null,8,["dantype"])])),_:1},512),e.createVNode(x,{ref_key:"verificationdrawer",ref:m,widNumber:50,style:{"z-index":"1000"}},{default:e.withCtx((()=>[e.createVNode(Be,{onClosehexiao:re})])),_:1},512),e.createVNode(x,{ref_key:"suixingdrawer",ref:E,widNumber:40,style:{"z-index":"1001"}},{default:e.withCtx((()=>[e.createVNode(Se)])),_:1},512),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-cal",onClick:oe[10]||(oe[10]=e=>F.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content",style:e.normalizeStyle({opacity:X.value?1:0}),onClick:oe[9]||(oe[9]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(Ie,{doOnce:U.value,translateNumber:I.value,onClose:$,onRight:O},null,8,["doOnce","translateNumber"])],4)],512),[[e.vShow,F.value&&t.isShow]]),e.createVNode(x,{ref_key:"voiddrawer",ref:s,widNumber:60},{default:e.withCtx((()=>[e.createVNode(Ee,{onVoidIt:oe[11]||(oe[11]=e=>{return t=y.value,v.value=0,p.value=0,g.value=0,Q.value[t].cardType=0,K.value=Q.value,void s.value.closeDrawer();var t}),onClosevoid:ie})])),_:1},512),e.createVNode(x,{ref_key:"pickingGooddrawer",ref:f,widNumber:60,style:{"z-index":"998"}},{default:e.withCtx((()=>[e.createVNode(ze,{onOpenDrawer:T})])),_:1},512),e.createVNode(x,{ref_key:"pickingdrawer",ref:k,canclose:!1,widNumber:50,style:{"z-index":"998"}},{default:e.withCtx((()=>[e.createVNode(_e,{backnumber:L.value,onOpenCal:P,onClosepickingdrawer:j},null,8,["backnumber"])])),_:1},512)],64)}}}),[["__scopeId","data-v-4e891f28"]]),Ae=s(e.defineComponent({__name:"index",setup(t){const l=e.ref(!1),a=e.ref(0);e.ref(!1),e.ref(!1);const i=e.ref([{url:"/static/index/lefticon/index.png",targetUrl:"/static/index/lefticontarget/blueindex.png",name:"首页",pao:0},{url:"/static/index/Warehousing/dingdan.png",targetUrl:"/static/index/Warehousing/dingdanblue.png",name:"订单",pao:0},{url:"/static/index/Warehousing/chuku.png",targetUrl:"/static/index/Warehousing/chukublue.png",name:"出库",pao:5},{url:"/static/index/Warehousing/pandian.png",targetUrl:"/static/index/Warehousing/pandianblue.png",name:"盘点",pao:0},{url:"/static/index/Warehousing/jiankong.png",targetUrl:"/static/index/Warehousing/jiankongblue.png",name:"监控",pao:0},{url:"/static/index/lefticon/back.png",targetUrl:"/static/index/lefticontarget/blueback.png",name:"返回",pao:0}]),r=e=>{5!==e?a.value=e:uni.navigateBack()};return(t,n)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(l.value?"darkbackgroundContainer":"backgroundContainer")},[e.createElementVNode("view",{class:"index-title"},[e.createElementVNode("view",{class:"index-title-left"},[e.createElementVNode("image",{class:"index-title-left-img",src:y}),e.createElementVNode("view",{class:"index-title-left-font"}," 王金福 "),e.createElementVNode("view",{class:"index-title-left-wel"}," 欢迎 "),e.createElementVNode("view",{class:"index-title-left-weight"}," 张春凤 "),e.createElementVNode("view",{class:""}," 登录护理单元操作台 ")]),e.createElementVNode("view",{class:"index-title-right"},[e.createElementVNode("view",{class:"index-title-right-circle"},[e.createElementVNode("image",{class:"index-title-right-circle-img",src:"/static/index/Warehousing/house.png"})]),e.createElementVNode("view",{class:"index-title-right-font"}," 生活用品库 ")])]),e.createElementVNode("view",{class:"index-content"},[e.createElementVNode("view",{class:"index-content-leftMenus"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"blue-circle-pos"},[e.withDirectives(e.createElementVNode("view",{class:"blue-circle"},[e.createElementVNode("image",{class:"blue-circle-size",src:"/static/index/ray.png"},null,8,["src"])],512),[[e.vShow,l===a.value]]),t.pao?(e.openBlock(),e.createElementBlock("view",{key:0,class:"red-pao",onClick:e=>r(l)},e.toDisplayString(t.pao>99?"99+":t.pao),9,["onClick"])):e.createCommentVNode("",!0),e.createElementVNode("image",{class:"left-img",src:l===a.value?t.targetUrl:t.url,onClick:e=>r(l)},null,8,["src","onClick"]),e.createElementVNode("view",{class:e.normalizeClass(l===a.value?"left-img-font-target":"left-img-font"),onClick:e=>r(l)},e.toDisplayString(t.name),11,["onClick"])])))),128))]),e.createVNode(Ne,{isShow:!a.value},null,8,["isShow"]),e.createVNode(Me,{isShow:1===a.value},null,8,["isShow"])])],2))}}),[["__scopeId","data-v-77445644"]]),Le="/static/index/video/videoright/guang.png",Oe="/static/index/bed.png",Pe="/static/index/video/laba.png",je="/static/index/video/video.png",qe="/static/index/video/txt.png",Re="/static/index/cardicons/zhixing.png",We="/static/index/cardicons/zhifa.png",Ye=s(e.defineComponent({__name:"fuwu",props:{isShow:{type:Boolean,required:!0}},emits:["nav"],setup(t,{emit:l}){const a=t,i=e.ref(["清晰度","分屏","画面旋转"]),r=e.ref([{url:"/static/index/video/videotopright/0.png",name:"入住",bgc:"linear-gradient(to right,#008AFF,#01BCFF)"},{url:"/static/index/video/videotopright/1.png",name:"预警",bgc:"linear-gradient(to right,#FF585D ,#FF4F52)"},{url:"/static/index/video/videotopright/2.png",name:"外出",bgc:"linear-gradient(to right,#709EE2 ,#A0BFEC )"},{url:"/static/index/video/videotopright/3.png",name:"空闲",bgc:"linear-gradient(to right,#B7BCD0,#B7BCD0)"}]),n=e.ref([{url:"/static/index/video/kufang/00.png",targeturl:"/static/index/video/kufang/01.png",name:"盘点"},{url:"/static/index/video/kufang/10.png",targeturl:"/static/index/video/kufang/11.png",name:"请领"},{url:"/static/index/video/kufang/20.png",targeturl:"/static/index/video/kufang/21.png",name:"退货"},{url:"/static/index/video/kufang/30.png",targeturl:"/static/index/video/kufang/31.png",name:"采购"},{url:"/static/index/video/kufang/40.png",targeturl:"/static/index/video/kufang/41.png",name:"指令"}]),c=e.ref([{url:"/static/index/video/videotopright/4.png",name:"启用",bgc:"linear-gradient(to right,#008AFF,#01BCFF)"},{url:"/static/index/video/videotopright/5.png",name:"停用",bgc:"linear-gradient(to right,#B7BCD0,#B7BCD0)"}]),s=e.ref([{url:"/static/index/video/videoright/00.png",targeturl:"/static/index/video/videoright/01.png"},{url:"/static/index/video/videoright/10.png",targeturl:"/static/index/video/videoright/11.png"},{url:"/static/index/video/videoright/20.png",targeturl:"/static/index/video/videoright/21.png"},{url:"/static/index/video/videoright/30.png",targeturl:"/static/index/video/videoright/31.png"},{url:"/static/index/video/videoright/40.png",targeturl:"/static/index/video/videoright/41.png"}]),d=e.ref([{cardtype:0,states:0,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:0,states:1,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:0,states:2,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:0,states:3,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:0,states:0,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:0,movestates:0,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:1,movestates:1,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:0,movestates:2,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:0,movestates:3,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:0,movestates:4,buttontarget:[!1,!1,!1,!1,!1]}]),m=e.ref([]),u=e.ref(!0);e.ref("");const v=e.ref(["全部"," 护理单元","配务室","库房"]);e.watch((()=>a.isShow),((e,t)=>{!t&&e&&(u.value=!1,setTimeout((()=>u.value=!0),50),g.value=0,m.value=JSON.parse(JSON.stringify(d.value)))}));const p=e.ref("");o((()=>{p.value=uni.getStorageSync("realname"),m.value=JSON.parse(JSON.stringify(d.value))}));const g=e.ref(0),w=()=>{uni.navigateTo({url:"/pages/NursingNew/index"})},h=()=>{uni.navigateTo({url:"/pages/Warehousing/index"})};return(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(u.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{style:{display:"flex",position:"relative","margin-left":"-30rpx"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(v.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"tab",onClick:e=>(e=>{if(g.value!==e)switch(g.value=e,e){case 0:m.value=JSON.parse(JSON.stringify(d.value));break;case 1:m.value=[],d.value.forEach((e=>{e.cardtype||m.value.push(e)}));break;case 2:m.value=[];break;case 3:m.value=[],d.value.forEach((e=>{1===e.cardtype&&m.value.push(e)}));break;default:return""}})(l)},[e.createElementVNode("view",{style:e.normalizeStyle([g.value===l?{fontWeight:800}:{},{"z-index":"1"}])},e.toDisplayString(t),5),e.withDirectives(e.createElementVNode("view",{class:"tab-heng"},null,512),[[e.vShow,g.value===l]])],8,["onClick"])))),128)),e.createElementVNode("view",{class:"right-title-father"},[e.createElementVNode("view",{style:{"margin-right":"20rpx"}}," 长春市朝阳区久泰开运养老服务有限公司 ")])]),e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"calc(100% - 10rpx)"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"scroll-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[t.cardtype?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"card",style:e.normalizeStyle(1===t.states?{border:"2rpx solid red",boxShadow:"none"}:{})},[e.createElementVNode("view",{class:"card-left"},[e.createElementVNode("view",{class:"card-left-title"},[e.createElementVNode("view",{class:"left-view"},[e.createElementVNode("image",{class:"left-view-img",src:N}),e.createElementVNode("view",null,[e.createElementVNode("view",{class:"top-font-line"},[e.createElementVNode("view",{class:"line-weight"},"王金凤"),e.createElementVNode("view",{class:"line-margin"}," 女 "),e.createElementVNode("view",null," 80岁 "),e.createElementVNode("view",{style:{"margin-left":"20rpx"}}," 2025.01.01 ")]),e.createElementVNode("view",{class:"top-font-line"},[e.createElementVNode("view",{class:"font-gray"}," 省医保 | 重度失能 | 正常缴费 ")])])]),e.createElementVNode("view",{class:"right-spec"}," 护理单元 ")]),e.createElementVNode("view",{class:"bottom-balls"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"one-ball-father"},e.toDisplayString(t),1)))),128))]),e.createElementVNode("view",{class:"topright-ball"},[e.createElementVNode("image",{class:"ball-righttop",src:`/static/index/video/videobottom/${1===t.states?1:0}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"right-balls"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,a)=>{var i,r;return e.openBlock(),e.createElementBlock("view",{key:a,class:"blue-ball-father",onClick:e=>d.value[l].buttontarget[a]=!d.value[l].buttontarget[a]},[e.createElementVNode("image",{class:"blue-ball",src:(null==(i=d.value[l])?void 0:i.buttontarget[a])?t.targeturl:t.url},null,8,["src"]),e.withDirectives(e.createElementVNode("image",{style:{position:"absolute",bottom:"0",left:"50%",transform:"translateX(-50%)",width:"100%",height:"80%"},src:Le},null,512),[[e.vShow,null==(r=d.value[l])?void 0:r.buttontarget[a]]])],8,["onClick"])})),128))]),e.createElementVNode("image",{class:"video-img",src:Oe}),e.createElementVNode("view",{class:"video-bottom"},[e.createElementVNode("view",{class:"blue-button"}," 服务指令 "),e.createElementVNode("view",{class:""}," NUID:2506000001 "),e.createElementVNode("view",{class:"bottom-shu"},"|"),e.createElementVNode("view",{class:""}," 未命名01 ")])]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"split-line-white-sec"}),e.createElementVNode("view",{class:"right-title"},[e.createElementVNode("view",{class:"right-other",style:e.normalizeStyle(`background: ${r.value[t.states].bgc};`)},[e.createElementVNode("image",{class:"other-class",src:r.value[t.states].url},null,8,["src"]),e.createElementVNode("view",{class:"other-font"},e.toDisplayString(r.value[t.states].name),1)],4)]),1!=t.states&&t.states?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,style:{width:"100%",position:"relative"}},[e.createElementVNode("view",{class:"time"},[e.createElementVNode("view",{class:"time-left"},[e.createElementVNode("view",{class:""}," 10:00~10:10 ")])]),e.createElementVNode("view",{style:{width:"100%",display:"flex","align-items":"center","flex-direction":"column",position:"relative"}},[e.createElementVNode("view",{class:"time-right"}," 待执行 "),e.createElementVNode("image",{class:"time-img",src:E,onClick:w}),e.createElementVNode("view",{class:"small-button"},[e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:Pe})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:je})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:qe})])]),e.createElementVNode("view",{class:"time-weight"}," 准备洁具(口腔) ")]),e.createElementVNode("view",{class:"time-people-two",style:{"margin-top":"20rpx"}},[e.createElementVNode("image",{class:"time-people-img",src:Re}),e.createElementVNode("text",{class:"time-people-font"}," 单人执行 ")]),e.createElementVNode("view",{class:"time-people-two"},[e.createElementVNode("image",{class:"time-people-img",src:We}),e.createElementVNode("text",{class:"time-people-font"}," 王金福 / 李贵田 ")])])),2==t.states?(e.openBlock(),e.createElementBlock("view",{key:1,style:{width:"100%",height:"100%",display:"flex","justify-content":"center","align-items":"center","flex-direction":"column"}},[e.createElementVNode("image",{class:"fail-img",src:"/static/index/video/videotopright/goto.png",onClick:w}),e.createElementVNode("view",{class:"fail-text"}," 长者外出 ")])):e.createCommentVNode("",!0),3==t.states?(e.openBlock(),e.createElementBlock("view",{key:2,style:{width:"100%",height:"100%",display:"flex","justify-content":"center","align-items":"center","flex-direction":"column"}},[e.createElementVNode("image",{class:"fail-img-spec",src:"/static/index/video/videotopright/none.png",onClick:w}),e.createElementVNode("view",{class:"fail-text-spec"}," 暂无长者入住 ")])):e.createCommentVNode("",!0)])],4)),t.cardtype?(e.openBlock(),e.createElementBlock("view",{key:1,class:"card"},[e.createElementVNode("view",{class:"card-left"},[e.createElementVNode("view",{class:"card-left-title"},[e.createElementVNode("view",{class:"left-view"},[e.createElementVNode("image",{class:"left-view-img",src:"/static/index/badman.png",style:{width:"70rpx",height:"80rpx"}}),e.createElementVNode("view",{style:{"margin-left":"10rpx",width:"150rpx"}},[e.createElementVNode("view",{style:{"font-size":"35rpx","font-weight":"600","margin-top":"20rpx","margin-left":"10rpx"}}," 欧阳三四")]),e.createElementVNode("view",{style:{display:"flex","align-items":"center",position:"absolute",top:"50%",transform:"translateY(-50%)",right:"0"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,((l,a)=>(e.openBlock(),e.createElementBlock("view",{style:{margin:"0 15rpx",display:"flex","flex-direction":"column","align-items":"center",position:"relative"},key:a},[e.createElementVNode("image",{class:"kufang-img",src:t.movestates===a?l.targeturl:l.url},null,8,["src"]),e.createElementVNode("view",{style:e.normalizeStyle([{"font-size":"20rpx"},t.movestates===a?{color:"#0096ff"}:{}])},e.toDisplayString(l.name),5)])))),128))])])]),e.createElementVNode("view",{class:"bottom-balls"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"one-ball-father"},e.toDisplayString(t),1)))),128))]),e.createElementVNode("view",{class:"topright-ball"},[e.createElementVNode("image",{class:"ball-righttop",src:`/static/index/video/videobottom/${1===t.states?1:0}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"right-balls"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,a)=>{var i,r,n;return e.openBlock(),e.createElementBlock("view",{key:a,class:e.normalizeClass((null==(i=d.value[l])?void 0:i.buttontarget[a])?"blue-ball-father-target":"blue-ball-father"),onClick:e=>d.value[l].buttontarget[a]=!d.value[l].buttontarget[a]},[e.createElementVNode("image",{class:"blue-ball",src:(null==(r=d.value[l])?void 0:r.buttontarget[a])?t.targeturl:t.url},null,8,["src"]),e.withDirectives(e.createElementVNode("image",{style:{position:"absolute",bottom:"0",left:"50%",transform:"translateX(-50%)",width:"100%",height:"80%"},src:Le},null,512),[[e.vShow,null==(n=d.value[l])?void 0:n.buttontarget[a]]])],10,["onClick"])})),128))]),e.createElementVNode("image",{class:"video-img",src:Oe}),e.createElementVNode("view",{class:"video-bottom"},[e.createElementVNode("view",{class:"font-bottom-weight"}," 库房 "),e.createElementVNode("view",{class:"bottom-shu"},"|"),e.createElementVNode("view",{class:""}," NUID:2506000001 "),e.createElementVNode("view",{class:"bottom-shu"},"|"),e.createElementVNode("view",{class:""}," 库房01 ")])]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"split-line-white-sec"}),e.createElementVNode("view",{class:"right-title"},[e.createElementVNode("view",{class:"right-other",style:e.normalizeStyle(`background: ${c.value[t.states].bgc};`)},[e.createElementVNode("image",{class:"other-class",src:c.value[t.states].url},null,8,["src"]),e.createElementVNode("view",{class:"other-font"},e.toDisplayString(c.value[t.states].name),1)],4)]),t.states?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,style:{width:"100%",position:"relative"}},[e.createElementVNode("view",{class:"time"},[e.createElementVNode("view",{class:"time-left"},[e.createElementVNode("view",{class:""}," 10:00~10:10 ")])]),e.createElementVNode("view",{style:{width:"100%",display:"flex","align-items":"center","flex-direction":"column",position:"relative"}},[e.createElementVNode("view",{class:"time-right"}," 待执行 "),e.createElementVNode("image",{class:"time-img",src:E,onClick:h}),e.createElementVNode("view",{class:"small-button"},[e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:Pe})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:je})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:qe})])]),e.createElementVNode("view",{class:"time-weight"}," 准备洁具(口腔) ")]),e.createElementVNode("view",{class:"time-people-two",style:{"margin-top":"20rpx"}},[e.createElementVNode("image",{class:"time-people-img",src:Re}),e.createElementVNode("text",{class:"time-people-font"}," 单人执行 ")]),e.createElementVNode("view",{class:"time-people-two"},[e.createElementVNode("image",{class:"time-people-img",src:We}),e.createElementVNode("text",{class:"time-people-font"}," 王金福 / 李贵田 ")])])),1==t.states?(e.openBlock(),e.createElementBlock("view",{key:1,style:{width:"100%",height:"100%",display:"flex","justify-content":"center","align-items":"center","flex-direction":"column"}},[e.createElementVNode("image",{class:"fail-img",style:{width:"150rpx",height:"180rpx"},src:"/static/index/video/videotopright/stop.png",onClick:h}),e.createElementVNode("view",{class:"fail-text"}," 库房已停用 ")])):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0)])))),128))])])])],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-01c2b33c"]]),Je=s(e.defineComponent({__name:"settings",props:{isShow:{type:Boolean,required:!0}},emits:["jump"],setup(t,{emit:l}){const a=e.ref(null),i=e.ref(!1),r=e.ref(!1),n=e.ref(!1),o=e.ref(!1),s=e.ref(!1),v=l,p=t,g=e.ref(["雷达扫描","扫码添加","手动录入","修改密码","切换机构","检查更新","用户协议","隐私政策"]),w=e.ref(!0);e.ref(""),e.watch((()=>p.isShow),((e,t)=>{!t&&e&&(w.value=!1,setTimeout((()=>w.value=!0),50))}));const h=e.ref(!1),f=e=>{var t;switch(e){case 0:case 1:case 2:v("jump",e);break;case 3:s.value=!0;break;case 4:break;case 5:i.value=!0,null==(t=a.value)||t.check_update();break;case 6:r.value=!0,n.value=!0,h.value=!1,setTimeout((()=>{h.value=!0}),50);break;case 7:r.value=!0,n.value=!1,h.value=!1,setTimeout((()=>{h.value=!0}),50)}},N=()=>{p.isShow&&i.value&&uni.showToast({title:"已经是最新版了",icon:"none",duration:2e3})};return(l,i)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(w.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{style:{"margin-right":"40rpx"}},"长春市朝阳区久泰开运养老服务有限公司")]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value.slice(0,3),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>f(l)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"array-father",style:{margin:"30rpx 0"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value.slice(3,5),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>f(l+3)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l+3}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value.slice(5,8),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>f(l+5)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l+5}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"bottom-button",onClick:i[0]||(i[0]=e=>o.value=!0)}," 注销登录 "),e.createVNode(R,{show:o.value,onClose:i[1]||(i[1]=e=>o.value=!1)},null,8,["show"]),e.createVNode(W,{show:s.value,onClose:i[2]||(i[2]=e=>s.value=!1)},null,8,["show"]),e.createVNode(d,{ref_key:"zyupgrade",ref:a,noticeflag:!0,theme:"blue",h5preview:!1,oldversion:"1.0.0",appstoreflag:!0,autocheckupdate:!0,onShowupdateTips:N},null,512),r.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-any",style:e.normalizeStyle(h.value?{opacity:1}:{opacity:0})},[e.createElementVNode("view",{class:"mask",onClick:i[3]||(i[3]=e=>r.value=!1)}),e.createElementVNode("view",{class:"box-any"},[e.createElementVNode("view",{class:"title-left"},[e.createElementVNode("image",{class:"back-img",src:c,onClick:i[4]||(i[4]=e=>r.value=!1)}),n.value?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"back-font"},"NU护理单元隐私信息保护政策")),n.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"back-font"},"NU护理单元用户服务协议")):e.createCommentVNode("",!0)]),n.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(u,{key:0})),n.value?(e.openBlock(),e.createBlock(m,{key:1})):e.createCommentVNode("",!0)])],4)):e.createCommentVNode("",!0)],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-db2cf42d"]]),Xe=s(e.defineComponent({__name:"leida",props:{isShow:{type:Boolean,required:!0}},emits:["nav"],setup(t,{emit:a}){const i=t,r=e.ref(""),n=e.ref(-1),o=e.ref(!0),c=e.ref(1),s=e.ref(0),d=e.ref(null),m=e.ref([{url:"/static/index/leida/00.png",targetUrl:"/static/index/leida/01.png",target:!1},{url:"/static/index/leida/10.png",targetUrl:"/static/index/leida/11.png",target:!1},{url:"/static/index/leida/20.png",targetUrl:"/static/index/leida/21.png",target:!1},{url:"/static/index/leida/30.png",targetUrl:"/static/index/leida/31.png",target:!1}]),u=e.ref([]),v=e.ref([]);function p(){if(1==c.value){n.value=-1,function(){const t=v.value.length;u.value=[];const l=Array.from({length:t},(()=>Math.random())),a=l.reduce(((e,t)=>e+t),0),i=l.map((e=>e/a*5e3));let r=0;for(let n=0;n{u.value.push(v.value[n]);const t=u.value.length;t>=5&&t%2==1&&(s.value=999,await e.nextTick(),s.value=99999)}),r)}(),c.value=0;const t=setInterval((()=>{c.value+=.01,c.value>=1&&(c.value=1,clearInterval(t))}),50)}}e.watch((()=>i.isShow),((e,t)=>{!t&&e&&(o.value=!1,setTimeout((()=>o.value=!0),50),Q().then((e=>{e.result.records.forEach((e=>{e.menu=JSON.parse(JSON.stringify(m.value)),e.isNew=!0})),v.value=e.result.records,l("log","at component/Initialization/leida.vue:123","????",v.value),p()})))}));return e.onMounted((()=>{})),(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(o.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-content-title"},[e.createElementVNode("view",{class:"shu"}),e.createElementVNode("view",{class:"shu-font"},"长春市朝阳区久泰开运养老服务有限公司")]),e.createElementVNode("view",{class:"leida"},[e.createElementVNode("view",{class:"kutong-father"},[e.createElementVNode("image",{class:"kutong-img",src:"/static/index/leida/leidabgc.png"}),e.createElementVNode("image",{class:e.normalizeClass(["kutong-shan",c.value<1?"spin-anim":"no-anim"]),src:"/static/index/leida/shan.png"},null,2),e.createElementVNode("view",{class:"huan"},[e.createElementVNode("view",{class:e.normalizeClass(["quarter-ring",c.value<1?"spin-anim-spec":"no-anim-spec"])},null,2)])]),e.createElementVNode("view",{class:"jindutiao"},[e.createElementVNode("view",{class:"progress-fill",style:e.normalizeStyle({transform:`scaleX(${c.value})`})},null,4)]),e.createElementVNode("view",{class:"color-font",style:{"margin-top":"80rpx"}},e.toDisplayString(c.value>=1?"扫描完成。":"正在使用雷达区域扫描护理机构,"),1),e.createElementVNode("view",{class:"color-font"},e.toDisplayString(c.value>=1?"":"请稍后..."),1),e.createElementVNode("view",{class:"agagin-button",onClick:p},"重新扫描")]),e.createElementVNode("view",{class:"other"},[e.createElementVNode("scroll-view",{ref_key:"scrollViewRef",ref:d,"scroll-y":"",class:"other-father","scroll-top":s.value},[e.createElementVNode("view",{class:"card-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["card",{"fade-in":t.isNew}]),key:l,onAnimationend:e=>{t.isNew=!1}},[e.createElementVNode("view",{class:"card-title"},[e.createElementVNode("view",{style:{"font-size":"25rpx"}},"NUID:"+e.toDisplayString(t.nuId),1),e.createElementVNode("view",{class:"right-box"},"护理单元")]),e.createElementVNode("view",{class:"card-middle"},[e.createElementVNode("view",{class:"video-box",onClick:a[0]||(a[0]=e=>n.value=-1)},[e.createElementVNode("image",{class:"video-box-img",src:"/static/index/leida/video.png"})]),e.createElementVNode("view",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.menu,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>{t.target=!t.target,n.value=-1}},[e.createElementVNode("view",{class:"small-menu"},[e.createElementVNode("image",{class:"small-img",src:t.target?t.targetUrl:t.url},null,8,["src"])])],8,["onClick"])))),128))])]),e.createElementVNode("view",{class:"card-bottom"},[e.createTextVNode(e.toDisplayString(t.nuName)+" ",1),e.createElementVNode("image",{class:"bottom-img",src:"/static/index/leida/rename.png",onClick:e=>{n.value=l,r.value=t.nuName}},null,8,["onClick"])]),n.value==l?(e.openBlock(),e.createElementBlock("view",{key:0,class:"rename-father"},[e.createElementVNode("view",{class:"rename-title"}," 重命名 "),e.createElementVNode("view",{class:"rename-gray"}," NUID:20241001001 "),e.createElementVNode("view",{class:"rename-input"},[e.createElementVNode("image",{class:"left-img",src:"/static/index/click.png"}),e.withDirectives(e.createElementVNode("input",{class:"uni-input",placeholder:"请重新命名","onUpdate:modelValue":a[1]||(a[1]=e=>r.value=e)},null,512),[[e.vModelText,r.value]]),e.withDirectives(e.createElementVNode("image",{class:"right-img",src:G,onClick:a[2]||(a[2]=e=>r.value="")},null,512),[[e.vShow,r.value]])]),e.createElementVNode("view",{class:"blue-button",onClick:e=>{return t=r.value,a=l,t&&(u.value[a].nuName=t),void(n.value=-1);var t,a}}," 确定 ",8,["onClick"])])):e.createCommentVNode("",!0)],42,["onAnimationend"])))),128))])],8,["scroll-top"])])])],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-08e03fe2"]]),Ze=s(e.defineComponent({__name:"saoma",props:{isShow:{type:Boolean,required:!0}},emits:["nav"],setup(t,{emit:l}){const a=t,i=e.ref(!0);function r(){uni.scanCode({onlyFromCamera:!0,scanType:["qrCode","barCode"],success(e){},fail(e){uni.showToast({title:"扫码失败:"+e.errMsg,icon:"none"})}})}return e.watch((()=>a.isShow),((e,t)=>{!t&&e&&(i.value=!1,setTimeout((()=>i.value=!0),50))})),(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(i.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-content-title"},[e.createElementVNode("view",{class:"shu"}),e.createElementVNode("view",{class:"shu-font"},"长春市朝阳区久泰开运养老服务有限公司")])]),e.createElementVNode("view",{class:"saomiao",onClick:r},[e.createElementVNode("view",{class:"saomiao-son"},[e.createElementVNode("view",{class:"saomiao-son-son"},[e.createElementVNode("view",{class:"saomiao-son-son-img"})])])])],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-3c477a5f"]]),He=s(e.defineComponent({__name:"input",props:{isShow:{type:Boolean,required:!0}},emits:["nav"],setup(t,{emit:l}){const a=t,i=e.ref(!0),r=e.ref("");return e.watch((()=>a.isShow),((e,t)=>{!t&&e&&(i.value=!1,setTimeout((()=>i.value=!0),50))})),(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(i.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-content-title"},[e.createElementVNode("view",{class:"shu"}),e.createElementVNode("view",{class:"shu-font"},"长春市朝阳区久泰开运养老服务有限公司")])]),e.createElementVNode("view",{class:"saomiao"},[e.createElementVNode("view",{class:"big-ball"},[e.createElementVNode("view",{class:"ball"})]),e.createElementVNode("image",{class:"left-img",src:J}),e.withDirectives(e.createElementVNode("input",{class:"saoma-input",password:!1,"onUpdate:modelValue":a[0]||(a[0]=e=>r.value=e),placeholder:"请手动录入NUID"},null,512),[[e.vModelText,r.value]]),e.withDirectives(e.createElementVNode("image",{class:"right-img",src:X,onClick:a[1]||(a[1]=e=>r.value="")},null,512),[[e.vShow,r.value]]),e.createElementVNode("view",{class:"blue-button"}," 确定 ")]),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-5fc7e05c"]]),Ge=s(e.defineComponent({__name:"index",setup(t){const a=e.ref(!1),i=e.ref(0);e.ref(!1),e.ref(!1);const r=e.ref([{url:"/static/index/relindex/index.png",targetUrl:"/static/index/relindex/indexblue.png",name:"首页",pao:0},{url:"/static/index/relindex/fuwu.png",targetUrl:"/static/index/relindex/fuwublue.png",name:"服务考核",pao:0},{url:"/static/index/relindex/jigou.png",targetUrl:"/static/index/relindex/jigoublue.png",name:"机构功能1",pao:0},{url:"/static/index/relindex/jigou.png",targetUrl:"/static/index/relindex/jigoublue.png",name:"机构功能2",pao:0},{url:"/static/index/relindex/shezhi.png",targetUrl:"/static/index/relindex/shezhiblue.png",name:"设置",pao:0},{url:"/static/index/newindex/curve/return_8.png",targetUrl:"/static/index/newindex/curve/return_1.png",name:"返回",pao:0}]);e.ref([{url:"/static/index/topright/title/0.png",name:"切换机构"},{url:"/static/index/topright/title/1.png",name:"修改密码"},{url:"/static/index/topright/title/2.png",name:"注销账号"}]),e.ref([{url:"/static/index/topright/scan/00.png",targetUrl:"/static/index/topright/scan/01.png",name:"雷达扫描"},{url:"/static/index/topright/scan/10.png",targetUrl:"/static/index/topright/scan/11.png",name:"扫码添加"},{url:"/static/index/topright/scan/20.png",targetUrl:"/static/index/topright/scan/21.png",name:"手动录入"}]);const n=e=>{5===e&&uni.navigateBack(),i.value=e},c=e=>{switch(e){case 0:i.value=-2;break;case 1:i.value=-3;break;case 2:i.value=-4}},s=e=>{switch(e){case 0:i.value=-2;break;case 1:i.value=-3;break;case 2:i.value=-4}},d=e.ref("");return o((e=>{l("log","at pages/Initialization/index.vue:135","???",e.menu),e.menu?i.value=e.menu:i.value=0,d.value=uni.getStorageSync("realname")})),(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(a.value?"darkbackgroundContainer":"backgroundContainer")},[e.createElementVNode("view",{class:"index-content"},[e.createElementVNode("view",{class:"index-content-leftMenus"},[e.createElementVNode("view",{class:"index-title-title"},[e.createElementVNode("image",{class:"index-title-left-img",src:y}),e.createElementVNode("view",{class:"index-title-left-font"},e.toDisplayString(d.value),1)]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"blue-circle-pos"},[e.withDirectives(e.createElementVNode("view",{class:"blue-circle"},[e.createElementVNode("image",{class:"blue-circle-size",src:"/static/index/ray.png"},null,8,["src"])],512),[[e.vShow,l===i.value]]),t.pao?(e.openBlock(),e.createElementBlock("view",{key:0,class:"red-pao",onClick:e=>n(l)},e.toDisplayString(t.pao>99?"99+":t.pao),9,["onClick"])):e.createCommentVNode("",!0),e.createElementVNode("image",{class:"left-img",src:l===i.value?t.targetUrl:t.url,onClick:e=>n(l)},null,8,["src","onClick"]),e.createElementVNode("view",{class:e.normalizeClass(l===i.value?"left-img-font-target":"left-img-font"),onClick:e=>n(l)},e.toDisplayString(t.name),11,["onClick"])])))),128))]),e.createVNode(Ye,{isShow:0==i.value},null,8,["isShow"]),e.createVNode(Je,{isShow:4==i.value,onJump:c},null,8,["isShow"]),e.createVNode(Ye,{isShow:-1==i.value,onNav:s},null,8,["isShow"]),e.createVNode(Xe,{isShow:-2==i.value},null,8,["isShow"]),e.createVNode(Ze,{isShow:-3==i.value},null,8,["isShow"]),e.createVNode(He,{isShow:-4==i.value},null,8,["isShow"])])],2))}}),[["__scopeId","data-v-aebf66be"]]);"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self&&self;function Qe(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Ke={exports:{}};Ke.exports=function(e){function t(a){if(l[a])return l[a].exports;var i=l[a]={i:a,l:!1,exports:{}};return e[a].call(i.exports,i,i.exports,t),i.l=!0,i.exports}var l={};return t.m=e,t.c=l,t.d=function(e,l,a){t.o(e,l)||Object.defineProperty(e,l,{configurable:!1,enumerable:!0,get:a})},t.n=function(e){var l=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(l,"a",l),l},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=0)}([function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0});var a,i=l(1),r=(a=i)&&a.__esModule?a:{default:a};t.default=r.default,e.exports=t.default},function(e,t,l){function a(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=a(l(2)),r=a(l(3)),n=a(l(4)),o=a(l(5)),c=a(l(6)),s=a(l(7)),d=a(l(8)),m=a(l(9)),u=a(l(10)),v=a(l(11)),p=a(l(12)),g={lunarInfo:i.default,solarMonth:r.default,gan:n.default,zhi:o.default,animals:c.default,lunarTerm:s.default,lTermInfo:d.default,nStr1:m.default,nStr2:u.default,nStr3:v.default,nStr4:p.default,lYearDays:function(e){var t,l=348;for(t=32768;t>8;t>>=1)l+=g.lunarInfo[e-1900]&t?1:0;return l+g.leapDays(e)},leapMonth:function(e){return 15&g.lunarInfo[e-1900]},leapDays:function(e){return g.leapMonth(e)?65536&g.lunarInfo[e-1900]?30:29:0},monthDays:function(e,t){return t>12||t<1?-1:g.lunarInfo[e-1900]&65536>>t?30:29},solarDays:function(e,t){if(t>12||t<1)return-1;var l=t-1;return 1==l?e%4==0&&e%100!=0||e%400==0?29:28:g.solarMonth[l]},toGanZhi:function(e){return g.gan[e%10]+g.zhi[e%12]},getTerm:function(e,t){if(e<1900||e>2100)return-1;if(t<1||t>24)return-1;var l=g.lTermInfo[e-1900],a=[parseInt("0x"+l.substr(0,5)).toString(),parseInt("0x"+l.substr(5,5)).toString(),parseInt("0x"+l.substr(10,5)).toString(),parseInt("0x"+l.substr(15,5)).toString(),parseInt("0x"+l.substr(20,5)).toString(),parseInt("0x"+l.substr(25,5)).toString()],i=[a[0].substr(0,1),a[0].substr(1,2),a[0].substr(3,1),a[0].substr(4,2),a[1].substr(0,1),a[1].substr(1,2),a[1].substr(3,1),a[1].substr(4,2),a[2].substr(0,1),a[2].substr(1,2),a[2].substr(3,1),a[2].substr(4,2),a[3].substr(0,1),a[3].substr(1,2),a[3].substr(3,1),a[3].substr(4,2),a[4].substr(0,1),a[4].substr(1,2),a[4].substr(3,1),a[4].substr(4,2),a[5].substr(0,1),a[5].substr(1,2),a[5].substr(3,1),a[5].substr(4,2)];return parseInt(i[t-1])},toChinaYear:function(e){var t=parseInt(e/1e3),l=parseInt(e%1e3/100),a=parseInt(e%100/10),i=e%10;return g.nStr4[t]+g.nStr4[l]+g.nStr4[a]+g.nStr4[i]+"年"},toChinaMonth:function(e){return e>12||e<1?-1:g.nStr3[e-1]+"月"},toChinaDay:function(e){var t;switch(e){case 10:t="初十";break;case 20:t="二十";break;case 30:t="三十";break;default:t=g.nStr2[Math.floor(e/10)],t+=g.nStr1[e%10]}return t},getAnimal:function(e){return g.animals[(e-4)%12]},solar2lunar:function(e,t,l){if(e<1900||e>2100)return-1;if(1900==e&&1==t&&l<31)return-1;if(e)var a=new Date(e,parseInt(t)-1,l);else a=new Date;var i,r=0,n=0,o=(e=a.getFullYear(),t=a.getMonth()+1,l=a.getDate(),(Date.UTC(a.getFullYear(),a.getMonth(),a.getDate())-Date.UTC(1900,0,31))/864e5);for(i=1900;i<2101&&o>0;i++)o-=n=g.lYearDays(i);o<0&&(o+=n,i--);var c=new Date,s=!1;c.getFullYear()==e&&c.getMonth()+1==t&&c.getDate()==l&&(s=!0);var d=a.getDay(),m=g.nStr1[d];0==d&&(d=7);var u=i,v=(r=g.leapMonth(i),!1);for(i=1;i<13&&o>0;i++)r>0&&i==r+1&&0==v?(--i,v=!0,n=g.leapDays(u)):n=g.monthDays(u,i),1==v&&i==r+1&&(v=!1),o-=n;0==o&&r>0&&i==r+1&&(v?v=!1:(v=!0,--i)),o<0&&(o+=n,--i);var p=i,w=o+1,h=t-1,f=g.getTerm(e,3),N=g.toGanZhi(e-4),y=new Date(e,1,f).getTime();new Date(e,h,l).getTime()=x&&(V=g.toGanZhi(12*(e-1900)+t+12));var b=!1,k="";x==l&&(b=!0,k=g.lunarTerm[2*t-2]),E==l&&(b=!0,k=g.lunarTerm[2*t-1]);var T=Date.UTC(e,h,1,0,0,0,0)/864e5+25567+10,D=g.toGanZhi(T+l-1);return{lYear:u,lMonth:p,lDay:w,animal:g.getAnimal(u),yearCn:g.toChinaYear(u),monthCn:(v&&r===p?"闰":"")+g.toChinaMonth(p),dayCn:g.toChinaDay(w),cYear:e,cMonth:t,cDay:l,gzYear:N,gzMonth:V,gzDay:D,isToday:s,isLeap:v,nWeek:d,ncWeek:"星期"+m,isTerm:b,term:k}},lunar2solar:function(e,t,l,a){var i=g.leapMonth(e);if(g.leapDays(e),a&&i!=t)return-1;if(2100==e&&12==t&&l>1||1900==e&&1==t&&l<31)return-1;var r=g.monthDays(e,t);if(e<1900||e>2100||l>r)return-1;for(var n=0,o=1900;o0&&(n+=g.leapDays(e),s=!0),n+=g.monthDays(e,o);a&&(n+=r);var d=Date.UTC(1900,1,30,0,0,0),m=new Date(864e5*(n+l-31)+d),u=m.getUTCFullYear(),v=m.getUTCMonth()+1,p=m.getUTCDate();return g.solar2lunar(u,v,p)}};t.default=g,e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=[19416,19168,42352,21717,53856,55632,91476,22176,39632,21970,19168,42422,42192,53840,119381,46400,54944,44450,38320,84343,18800,42160,46261,27216,27968,109396,11104,38256,21234,18800,25958,54432,59984,28309,23248,11104,100067,37600,116951,51536,54432,120998,46416,22176,107956,9680,37584,53938,43344,46423,27808,46416,86869,19872,42416,83315,21168,43432,59728,27296,44710,43856,19296,43748,42352,21088,62051,55632,23383,22176,38608,19925,19152,42192,54484,53840,54616,46400,46752,103846,38320,18864,43380,42160,45690,27216,27968,44870,43872,38256,19189,18800,25776,29859,59984,27480,23232,43872,38613,37600,51552,55636,54432,55888,30034,22176,43959,9680,37584,51893,43344,46240,47780,44368,21977,19360,42416,86390,21168,43312,31060,27296,44368,23378,19296,42726,42208,53856,60005,54576,23200,30371,38608,19195,19152,42192,118966,53840,54560,56645,46496,22224,21938,18864,42359,42160,43600,111189,27936,44448,84835,37744,18936,18800,25776,92326,59984,27424,108228,43744,37600,53987,51552,54615,54432,55888,23893,22176,42704,21972,21200,43448,43344,46240,46758,44368,21920,43940,42416,21168,45683,26928,29495,27296,44368,84821,19296,42352,21732,53600,59752,54560,55968,92838,22224,19168,43476,42192,53584,62034,54560],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=[31,28,31,30,31,30,31,31,30,31,30,31],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["甲","乙","丙","丁","戊","己","庚","辛","壬","癸"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["子","丑","寅","卯","辰","巳","午","未","申","酉","戌","亥"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["鼠","牛","虎","兔","龙","蛇","马","羊","猴","鸡","狗","猪"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["小寒","大寒","立春","雨水","惊蛰","春分","清明","谷雨","立夏","小满","芒种","夏至","小暑","大暑","立秋","处暑","白露","秋分","寒露","霜降","立冬","小雪","大雪","冬至"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c3598082c95f8c965cc920f","97bd0b06bdb0722c965ce1cfcc920f","b027097bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd0b06bdb0722c965ce1cfcc920f","b027097bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd0b06bdb0722c965ce1cfcc920f","b027097bd097c36b0b6fc9274c91aa","9778397bd19801ec9210c965cc920e","97b6b97bd19801ec95f8c965cc920f","97bd09801d98082c95f8e1cfcc920f","97bd097bd097c36b0b6fc9210c8dc2","9778397bd197c36c9210c9274c91aa","97b6b97bd19801ec95f8c965cc920e","97bd09801d98082c95f8e1cfcc920f","97bd097bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c91aa","97b6b97bd19801ec95f8c965cc920e","97bcf97c3598082c95f8e1cfcc920f","97bd097bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c3598082c95f8c965cc920f","97bd097bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c3598082c95f8c965cc920f","97bd097bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd097bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd097bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd097bd07f595b0b6fc920fb0722","9778397bd097c36b0b6fc9210c8dc2","9778397bd19801ec9210c9274c920e","97b6b97bd19801ec95f8c965cc920f","97bd07f5307f595b0b0bc920fb0722","7f0e397bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c920e","97b6b97bd19801ec95f8c965cc920f","97bd07f5307f595b0b0bc920fb0722","7f0e397bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c91aa","97b6b97bd19801ec9210c965cc920e","97bd07f1487f595b0b0bc920fb0722","7f0e397bd097c36b0b6fc9210c8dc2","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf7f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf7f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf7f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf7f1487f531b0b0bb0b6fb0722","7f0e397bd07f595b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c9274c920e","97bcf7f0e47f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9210c91aa","97b6b97bd197c36c9210c9274c920e","97bcf7f0e47f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c920e","97b6b7f0e47f531b0723b0b6fb0722","7f0e37f5307f595b0b0bc920fb0722","7f0e397bd097c36b0b6fc9210c8dc2","9778397bd097c36b0b70c9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e37f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc9210c8dc2","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e27f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0787b0721","7f0e27f0e47f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9210c91aa","97b6b7f0e47f149b0723b0787b0721","7f0e27f0e47f531b0723b0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9210c8dc2","977837f0e37f149b0723b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e37f5307f595b0b0bc920fb0722","7f0e397bd097c35b0b6fc9210c8dc2","977837f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0721","7f0e37f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc9210c8dc2","977837f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","977837f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","977837f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","977837f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","977837f0e37f14998082b0787b06bd","7f07e7f0e47f149b0723b0787b0721","7f0e27f0e47f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","977837f0e37f14998082b0723b06bd","7f07e7f0e37f149b0723b0787b0721","7f0e27f0e47f531b0723b0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","977837f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e37f1487f595b0b0bb0b6fb0722","7f0e37f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e37f1487f531b0b0bb0b6fb0722","7f0e37f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e37f1487f531b0b0bb0b6fb0722","7f0e37f0e37f14898082b072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e37f0e37f14898082b072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e37f0e366aa89801eb072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f149b0723b0787b0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e37f0e366aa89801eb072297c35","7ec967f0e37f14998082b0723b06bd","7f07e7f0e47f149b0723b0787b0721","7f0e27f0e47f531b0723b0b6fb0722","7f0e37f0e366aa89801eb072297c35","7ec967f0e37f14998082b0723b06bd","7f07e7f0e37f14998083b0787b0721","7f0e27f0e47f531b0723b0b6fb0722","7f0e37f0e366aa89801eb072297c35","7ec967f0e37f14898082b0723b02d5","7f07e7f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e36665b66aa89801e9808297c35","665f67f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e36665b66a449801e9808297c35","665f67f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e36665b66a449801e9808297c35","665f67f0e37f14898082b072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e26665b66a449801e9808297c35","665f67f0e37f1489801eb072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["日","一","二","三","四","五","六","七","八","九","十"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["初","十","廿","卅"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["正","二","三","四","五","六","七","八","九","十","冬","腊"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["零","一","二","三","四","五","六","七","八","九","十"],e.exports=t.default}]);const et=Qe(Ke.exports),tt=s({__name:"calendar",setup(t){const a=new Date,i=e.ref(a.getFullYear()),r=e.ref(a.getMonth()),n=e.ref(null),o=["一","二","三","四","五","六","日"],c=e.computed((()=>{const e=[],t=new Date(i.value,r.value,0),l=t.getFullYear(),a=t.getMonth(),n=t.getDate(),o=(c=i.value,s=r.value,(new Date(c,s,1).getDay()+6)%7);var c,s;for(let i=0;i(e.openBlock(),e.createElementBlock("view",{class:"calendar"},[e.createElementVNode("view",{class:"header"},[e.createElementVNode("view",{class:"header-title"},[e.createElementVNode("view",{class:"year-month"},e.toDisplayString(i.value)+"年"+e.toDisplayString(r.value+1)+"月",1),e.createElementVNode("view",{class:"botton-father"},[e.createElementVNode("view",{class:"click-button",onClick:s},"上个月"),e.createElementVNode("view",{class:"click-button",onClick:d},"下个月")])]),e.createElementVNode("view",{class:"weekdays"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(o,((t,l)=>e.createElementVNode("view",{key:l,class:"weekday"},e.toDisplayString(t),1))),64))])]),e.createElementVNode("view",{class:"days"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,(t=>{return e.openBlock(),e.createElementBlock("view",{key:t.key,class:e.normalizeClass(["day-cell",{"prev-month":t.prev,"next-month":t.next,selected:(a=t.key,n.value===a)}]),onClick:e=>function(e){e.prev||(n.value=e.key,l("log","at component/public/calendar.vue:91","Selected date:",e.key))}(t)},[e.createElementVNode("view",{class:"gregorian"},e.toDisplayString(t.dateText),1),t.lunarText?(e.openBlock(),e.createElementBlock("view",{key:0,class:"lunar"},e.toDisplayString(t.lunarText),1)):e.createCommentVNode("",!0)],10,["onClick"]);var a})),128))])]))}},[["__scopeId","data-v-0bf11501"]]),lt=s(e.defineComponent({__name:"index",setup(t){const l=e.ref(!1),a=e.ref(null),i=e=>{uni.navigateBack()};return o((e=>{})),r((()=>{var e;null==(e=a.value)||e.check_update()})),(t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"backgroundContainer"},[e.createElementVNode("view",{class:"assess-title"},[e.createElementVNode("view",{class:"left-icons"},[e.createElementVNode("image",{class:"left-icons-img",src:"/static/index/undericons/doublekuai.png"},null,8,["src"]),e.createElementVNode("view",{class:"right-icons-font"},"服务考核-"),e.createElementVNode("view",{class:"right-icons-text"},"批量考核")]),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(l.value?"right-icons-font-dark":"right-icons-font")},"王金福",2),e.createElementVNode("image",{class:"right-icons-img-icon",src:l.value?"/static/index/undericons/face.png":"/static/index/undericons/facelight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:l.value?"/static/index/undericons/hand.png":"/static/index/undericons/handlight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",onClick:i,src:l.value?"/static/index/undericons/out.png":"/static/index/undericons/outlight.png"},null,8,["src"])])]),e.createElementVNode("view",{class:"assess-another"},[e.createElementVNode("view",{class:"left-contain"},[e.createElementVNode("view",{class:"calendar"},[e.createVNode(tt)])])])]))}}),[["__scopeId","data-v-65a124ce"]]),at=s(e.defineComponent({__name:"index",setup(t){e.ref(!1);const l=e.ref([]),a=e.ref(["全部","日常","周期"]),i=e.ref(0),r=e.ref(0);function n(e){let t=e.detail.scrollTop,l=parseFloat(t.toFixed(2));r.value=l}const c=e=>{if(i.value!==e)return"titlebutton";switch(e){case 0:return"titlebutton-target";case 1:return"titlebutton-target-yellow";case 2:return"titlebutton-target-pouple"}};function s(e){if(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}return[]}const d=e.ref(0),m=e.ref([]);o((e=>{let t=uni.getStorageSync("myArray");l.value=t,l.value[0].children.length<8&&l.value.forEach((e=>{for(;e.children.length<8;)e.children.push({directiveName:""})})),m.value=JSON.parse(JSON.stringify(l.value)),e.currentNumber&&(d.value=745*e.currentNumber)}));const u=e.ref(0),v=e.ref(0),p=e.ref(!1),g=e.ref(!1),w=e.ref(-1),h=e.ref(-1),f=()=>{uni.navigateBack()},N=()=>{let e=[];m.value.forEach(((t,l)=>{e=[],t.children.forEach(((t,l)=>{if(null===t.directiveName||""===t.directiveName||void 0===t.directiveName){m.value.every((e=>""===e.children[l].directiveName))&&e.push(l)}}))}));const t=[...e].sort(((e,t)=>t-e));m.value.forEach((e=>{t.forEach((t=>{e.children.splice(t,1)}))})),m.value[0].children.length<8&&m.value.forEach((e=>{for(;e.children.length<8;)e.children.push({directiveName:""})}))},y=e.ref(0),x=e.ref(null);function E(t,l,a,i){const r=Date.now();null!=x.value&&clearTimeout(x.value),r-y.value<250?(((e,t)=>{uni.navigateBack({delta:1,success:()=>{uni.$emit("where",{index0:e,index1:t})}})})(l,a),y.value=0):(x.value=setTimeout((()=>{((t,l,a,i)=>{t.directiveName&&(w.value=l,h.value=a,uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.dataset.index0==l&&t.dataset.index1==a&&(t.left<500?u.value=Math.floor(t.left)+510:u.value=Math.floor(t.left)-10,t.top<300?v.value=Math.floor(t.top)+250:v.value=Math.floor(t.top),await e.nextTick(),p.value=!0,g.value=!1,setTimeout((()=>{g.value=!0}),100))}))})).exec())})(t,l,a)}),250),y.value=r)}return(t,o)=>{var y,x,V;return e.openBlock(),e.createElementBlock("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"doctorsay-container-title"},[e.createElementVNode("view",{class:"doctorsay-container-left"},[e.createElementVNode("view",{class:"doctorsay-container-left-gun"}),e.createElementVNode("view",{class:"doctorsay-container-left-font"},"时间矩阵")]),e.createElementVNode("view",{class:"doctorsay-container-right"},[e.createElementVNode("view",{class:"titlebutton-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.value,((t,a)=>(e.openBlock(),e.createElementBlock("view",{key:a},[e.createElementVNode("view",{class:e.normalizeClass(c(a)),onClick:e=>(e=>{if(i.value!==e)switch(m.value=[],i.value=e,e){case 0:m.value=JSON.parse(JSON.stringify(l.value));break;case 1:m.value=JSON.parse(JSON.stringify(l.value)),m.value.forEach((e=>{e.children.forEach((e=>{e.directiveName&&"日常"!==e.cycleType&&(e.directiveName="",e.cycleType="",e.startTime="")}))})),N();break;case 2:m.value=JSON.parse(JSON.stringify(l.value)),m.value.forEach((e=>{e.children.forEach((e=>{e.directiveName&&"日常"===e.cycleType&&(e.directiveName="",e.cycleType="",e.startTime="")}))})),N()}})(a)},e.toDisplayString(t),11,["onClick"])])))),128))]),e.createElementVNode("view",{class:"doctorsay-container-right-kuai-cheng"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"日常"),e.createElementVNode("view",{class:"doctorsay-container-right-kuai-zi"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"周期"),e.createElementVNode("view",{class:"doctorsay-container-juzhen",onClick:f}," 返回 ")])]),e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("view",{class:"boom"},[e.createElementVNode("view",{style:e.normalizeStyle({marginTop:`-${2*r.value}rpx`})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(null==(y=m.value[0])?void 0:y.children,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(h.value===l?"boom-son-target":"boom-son")},e.toDisplayString(t.typeName),3),[[e.vShow,t.typeName]])])))),128))],4)]),e.createElementVNode("scroll-view",{style:{height:"100%",width:"100%"},"scroll-left":d.value,"scroll-x":"","show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",width:"5945rpx","box-shadow":"10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1)",background:"linear-gradient(to right, #c4dbf4,#c9c2ef, #c6dcf3)"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time"},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),1)])))),128))]),e.createElementVNode("view",{style:{display:"flex",height:"calc(100% - 80rpx)",width:"5945rpx"}},[e.createElementVNode("scroll-view",{"scroll-y":"","show-scrollbar":!1,onScroll:n},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time-und"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.children,((t,a)=>{return e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:a},[e.createElementVNode("view",{class:e.normalizeClass([w.value===l&&h.value===a?"title-time-border-blue":"","super-card-time-card"]),style:{position:"relative"},onTouchend:e=>E(t,l,a),"data-index0":l,"data-index1":a},[e.createElementVNode("view",{class:e.normalizeClass((i=t,"日常"===i.cycleType?"title-time-border-yellow":i.cycleType?"title-time-border-pouple":"title-time-border")),style:{"font-size":"30rpx",overflow:"hidden"}},[t.startTime?(e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"margin-top":"0rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"25rpx"}},e.toDisplayString(t.startTime+"-"+t.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==t.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(t.cycleType),1)])):e.createCommentVNode("",!0),e.createElementVNode("view",{style:e.normalizeStyle([s(t.directiveName)[1]?{}:{marginTop:"20rpx"},{"font-weight":"700","font-size":"24rpx"}])},e.toDisplayString(s(t.directiveName)[0]),5),s(t.directiveName)[1]?(e.openBlock(),e.createElementBlock("view",{key:1,class:"down-icons",style:e.normalizeStyle("日常"!=t.cycleType?{backgroundColor:"rgb(212,203,255)"}:{})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s(t.directiveName).slice(1),((l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:a},[e.createElementVNode("view",{class:"icon",style:e.normalizeStyle("日常"!=t.cycleType?{backgroundColor:"rgb(123,97,255)"}:{})},e.toDisplayString(s(t.directiveName)[a+1]),5)])))),128))],4)):e.createCommentVNode("",!0)],2)],42,["onTouchend","data-index0","data-index1"])]);var i})),128))])])))),128))])],32)])],8,["scroll-left"])])]),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay",onClick:o[1]||(o[1]=e=>p.value=!1)},[e.createElementVNode("view",{class:"popup-overlay-content",style:e.normalizeStyle({top:2*v.value-350+"rpx",left:2*u.value-780+"rpx",opacity:g.value?1:0,backgroundColor:"日常"===(null==(V=null==(x=l.value[h.value])?void 0:x.children[w.value])?void 0:V.type)?"#fffcf6":"rgb(246, 244, 254)"}),onClick:o[0]||(o[0]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"}," 占个位置 ")]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],4)],512),[[e.vShow,p.value]])])}}}),[["__scopeId","data-v-70d077f4"]]),it=s({__name:"specialDrawer",props:{widNumber:{type:Number,default:17}},setup(t,{expose:l}){const a=e.ref(!1),i=t,r=e.ref(0);e.onMounted((()=>{const e=uni.getSystemInfoSync();r.value=e.screenWidth})),e.ref(0);const n=e.ref(!0),o=e.ref(0),c=e.computed((()=>{const e=`${i.widNumber}%`;if(n.value){return{width:e,transform:`translateX(${o.value}px)`,transition:"none"}}return{width:e}}));function s(e){}function d(e){}function m(){}l({openDrawer:function(){a.value=!0},closeDrawer:function(){a.value=!0}});const u=e.ref(0);return e.computed((()=>({transform:`rotate(${u.value}deg)`,transition:"transform 0.6s ease"}))),(t,l)=>(e.openBlock(),e.createElementBlock("view",null,[e.createElementVNode("view",{class:e.normalizeClass(["drawer",{"drawer-open":a.value}]),style:e.normalizeStyle(c.value)},[e.createElementVNode("view",{class:"drawer-content",onTouchstartPassive:s,onTouchmovePassive:d,onTouchend:m,onTouchcancel:m},[e.renderSlot(t.$slots,"default",{},void 0,!0)],32)],6)]))}},[["__scopeId","data-v-7979ddf3"]]),rt=s(e.defineComponent({__name:"index",props:{changerightbottom:{type:String,default:"标准"}},emits:["clickball"],setup(t,{emit:l}){const a=e.ref([{name:"周期",url:""},{name:"放大",url:"/static/index/getbig.png"},{name:"日常",url:""},{name:"缩小",url:"/static/index/getsmall.png"},{name:"全部",url:""},{name:"标准",url:""}]),i=l;return(l,r)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"button-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.value,((l,a)=>(e.openBlock(),e.createElementBlock("view",{key:a,class:"white-ball",onClick:e=>(e=>{i("clickball",e)})(a)},[l.url?(e.openBlock(),e.createElementBlock("image",{key:0,style:{width:"50%",height:"50%"},src:l.url},null,8,["src"])):(e.openBlock(),e.createElementBlock("view",{key:1},e.toDisplayString(5===a?t.changerightbottom:l.name),1))],8,["onClick"])))),128))])]))}}),[["__scopeId","data-v-a6bada18"]]),nt=s(e.defineComponent({__name:"indexnew",setup(t){e.ref(!1);const l=e.ref([]);e.ref(["全部","日常","周期"]),e.ref(["放大","缩小"]);const a=e.ref(0);uni.getSystemInfoSync().windowWidth;const i=e=>{switch(e){case 0:b(2);break;case 1:v(0);break;case 2:b(1);break;case 3:v(1);break;case 4:b(0);break;case 5:7===d.value?T(!1):T(!0)}};function r(e){if(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}return[]}const n=e.ref(0),c=e.ref(0),s=e.ref([]),d=e.ref(0),m=e.ref(247),u=e.ref(180);e.ref(0),e.ref(0),o((e=>{let t=uni.getStorageSync("myArray");l.value=t,l.value[0].children.length<8&&l.value.forEach((e=>{for(;e.children.length<8;)e.children.push({directiveName:""})})),s.value=JSON.parse(JSON.stringify(l.value)),d.value=7,p()}));const v=e=>{e?d.value<24&&d.value++:d.value>7&&d.value--};function p(){if(g.value>=0&&g.value<=24&&w.value>=0&&w.value<=11){const e=(g.value+.5)*m.value,t=(w.value-.5)*u.value;n.value=e-1110,c.value=t-281.25;const l=24*m.value,a=11*u.value;n.value=Math.max(0,Math.min(n.value,l-2220))/2,c.value=Math.max(0,Math.min(c.value,a-562.5))/2}}const g=e.ref(10),w=e.ref(0);e.watch([g,w],(()=>{p()})),e.watch(d,((e,t)=>{if(t===e);else{switch(e){case 24:m.value=92.5,u.value=107;break;case 23:m.value=96.5,u.value=107;break;case 22:m.value=101,u.value=107;break;case 21:m.value=106,u.value=116;break;case 20:m.value=112,u.value=116;break;case 19:m.value=117,u.value=116;break;case 18:m.value=124,u.value=121;break;case 17:m.value=131,u.value=128;break;case 16:m.value=139,u.value=133;break;case 15:m.value=148,u.value=142;break;case 14:m.value=159,u.value=150;break;case 13:m.value=171,u.value=160;break;case 12:m.value=185,u.value=170;break;case 11:m.value=202,u.value=183;break;case 10:m.value=222,u.value=195;break;case 9:m.value=247,u.value=213;break;case 8:m.value=280,u.value=235;break;case 7:m.value=320,u.value=256}p()}}));const h=e.ref(0),f=e.ref(null);const N=e.ref(0),y=e.ref(0),x=e.ref(!1),E=e.ref(!1);e.ref(null);const V=(e,t)=>{uni.navigateBack({delta:1,success:()=>{uni.$emit("where",{index0:e,index1:t})}})},b=e=>{if(a.value!==e)switch(s.value=[],a.value=e,e){case 0:s.value=JSON.parse(JSON.stringify(l.value));break;case 1:s.value=JSON.parse(JSON.stringify(l.value)),s.value.forEach((e=>{e.children.forEach((e=>{e.directiveName&&"日常"!==e.cycleType&&(e.directiveName="",e.cycleType="",e.startTime="")}))}));break;case 2:s.value=JSON.parse(JSON.stringify(l.value)),s.value.forEach((e=>{e.children.forEach((e=>{e.directiveName&&"日常"===e.cycleType&&(e.directiveName="",e.cycleType="",e.startTime="")}))}))}},k=t=>{switch(x.value=!1,t){case 0:w.value>0&&w.value--;break;case 1:g.value<23&&g.value++;break;case 2:w.value<11&&w.value++;break;case 3:g.value>0&&g.value--;break;case 4:l=s.value[g.value].children[w.value],a=g.value,i=w.value,l.directiveName&&e.nextTick((()=>{uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.dataset.index0==a&&t.dataset.index1==i&&(t.left<500?N.value=Math.floor(t.left)+510:N.value=Math.floor(t.left)-10,t.top<300?y.value=Math.floor(t.top)+250:y.value=Math.floor(t.top),await e.nextTick(),x.value=!0,E.value=!1,setTimeout((()=>{E.value=!0}),100))}))})).exec()}));break;case 5:uni.navigateBack()}var l,a,i};function T(e){d.value=e?7:24}return(t,a)=>{var o,v;const p=e.resolveComponent("arrowkeys");return e.openBlock(),e.createElementBlock("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("scroll-view",{style:{height:"100%",width:"100%"},"scroll-left":n.value,"scroll-x":"","show-scrollbar":!1},[e.createElementVNode("view",{style:e.normalizeStyle([{width:24*m.value+"rpx"},{display:"flex"}])},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time",style:e.normalizeStyle({width:m.value+"rpx"})},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),5)])))),128))],4),e.createElementVNode("view",{style:e.normalizeStyle([{display:"flex",height:"calc(100% - 80rpx)",position:"relative"},{width:24*m.value+"rpx"}])},[e.createElementVNode("view",{class:"xian-bian"}),e.createElementVNode("scroll-view",{"scroll-y":"","show-scrollbar":!1,"scroll-top":c.value},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time-und",style:e.normalizeStyle({width:m.value+"rpx"})},[e.createElementVNode("view",{class:"bottom-bian"}),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.children,((t,a)=>{return e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:a},[e.createElementVNode("view",{style:e.normalizeStyle({height:u.value+"rpx"}),class:"super-card-time-card",onTouchend:e=>function(e,t,l){const a=Date.now();null!=f.value&&clearTimeout(f.value),a-h.value<250?(e.startTime&&V(t,l),h.value=0):(e.directiveName&&(g.value=t,w.value=l),h.value=a)}(t,l,a),"data-index0":l,"data-index1":a},[e.createElementVNode("view",{class:e.normalizeClass((i=t,"日常"===i.cycleType?"title-time-border-yellow":i.cycleType?"title-time-border-pouple":"title-time-border")),style:e.normalizeStyle([d.value>=11&&"日常"!==t.cycleType&&t.startTime?{backgroundColor:"#c5e5ff"}:{},{"font-size":"30rpx",position:"relative"}])},[e.withDirectives(e.createElementVNode("view",{class:"title-time-blue"},null,512),[[e.vShow,g.value==l&&w.value==a]]),t.startTime?(e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"flex-direction":"column",overflow:"hidden"}},[e.withDirectives(e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx",margin:"0 auto"},src:_},null,512),[[e.vShow,t.startTime]]),e.withDirectives(e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(t.startTime+"-"+t.endTime),513),[[e.vShow,d.value<10]]),"日常"!=t.cycleType?e.withDirectives((e.openBlock(),e.createElementBlock("image",{key:0,class:"title-time-button",style:{width:"80rpx",height:"48rpx"},src:te},null,512)),[[e.vShow,d.value<11]]):e.createCommentVNode("",!0),"日常"!=t.cycleType?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font",style:{right:"10rpx",top:"5rpx","font-size":"20rpx"}},e.toDisplayString(t.cycleType),513)),[[e.vShow,d.value<11]]):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0),t.startTime?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font-rel"},e.toDisplayString(r(t.directiveName)[0]),513)),[[e.vShow,d.value<11]]):e.createCommentVNode("",!0)],6)],44,["onTouchend","data-index0","data-index1"])]);var i})),128))],4)])))),128))])],8,["scroll-top"])],4)],8,["scroll-left"])])]),e.createVNode(it,{ref:"gobackdrawer"},{default:e.withCtx((()=>[e.createVNode(rt,{onClickball:i,changerightbottom:7===d.value?"缩略图":"标准"},null,8,["changerightbottom"])])),_:1},512),e.createVNode(p,{onMovecard:k}),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay-content",style:e.normalizeStyle({top:2*y.value-350+"rpx",left:2*N.value-780+"rpx",opacity:E.value?1:0,backgroundColor:"日常"===(null==(v=null==(o=l.value[w.value])?void 0:o.children[g.value])?void 0:v.type)?"#fffcf6":"rgb(246, 244, 254)"}),onClick:a[0]||(a[0]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"}," 占个位置 ")]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],4),[[e.vShow,x.value]])])}}}),[["__scopeId","data-v-7e3cfa67"]]);__definePage("pages/login/login",w),__definePage("pages/denglu",h),__definePage("pages/index/index",f),__definePage("pages/Nursing/index",$),__definePage("pages/watch/index",q),__definePage("pages/watch/settings/settings",Y),__definePage("pages/watch/settings/input",Z),__definePage("pages/watch/settings/saoma",H),__definePage("pages/watch/settings/leida",K),__definePage("pages/NursingNew/index",re),__definePage("pages/Warehousing/index",Ae),__definePage("pages/Initialization/index",Ge),__definePage("pages/assess/index",lt),__definePage("pages/timeMatrix/index",at),__definePage("pages/timeMatrix/indexnew",nt);const ot={onLaunch:function(){l("log","at App.vue:4","App Launch")},onShow:function(){l("log","at App.vue:7","App Show")},onHide:function(){l("log","at App.vue:10","App Hide")}},ct={data:()=>({}),onLoad(){this.$u.getRect=this.$uGetRect},methods:{$uGetRect(e,t){return new Promise((l=>{uni.createSelectorQuery().in(this)[t?"selectAll":"select"](e).boundingClientRect((e=>{t&&Array.isArray(e)&&e.length&&l(e),!t&&e&&l(e)})).exec()}))},getParentData(e=""){this.parent||(this.parent=!1),this.parent=this.$u.$parent.call(this,e),this.parent&&(Object.keys(this.parentData).map((e=>{this.parentData[e]=this.parent[e]})),this.parentData.value=this.parent.modelValue)},preventEvent(e){e&&e.stopPropagation&&e.stopPropagation()}},onReachBottom(){uni.$emit("uOnReachBottom")},beforeUnmount(){if(this.parent&&uni.$u.test.array(this.parent.children)){const e=this.parent.children;e.map(((t,l)=>{t===this&&e.splice(l,1)}))}}};function st(e){if([null,void 0,NaN,!1].includes(e))return e;if("object"!=typeof e&&"function"!=typeof e)return e;var t,l=(t=e,"[object Array]"===Object.prototype.toString.call(t)?[]:{});for(let a in e)e.hasOwnProperty(a)&&(l[a]="object"==typeof e[a]?st(e[a]):e[a]);return l}function dt(e={},t={}){if("object"!=typeof(e=st(e))||"object"!=typeof t)return!1;for(var l in t)t.hasOwnProperty(l)&&(l in e?"object"!=typeof e[l]||"object"!=typeof t[l]?e[l]=t[l]:e[l].concat&&t[l].concat?e[l]=e[l].concat(t[l]):e[l]=dt(e[l],t[l]):e[l]=t[l]);return e}function mt(e){return/^(?:-?\d+|-?\d{1,3}(?:,\d{3})+)?(?:\.\d+)?$/.test(e)}function ut(e){switch(typeof e){case"undefined":return!0;case"string":if(0==e.replace(/(^[ \t\n\r]*)|([ \t\n\r]*$)/g,"").length)return!0;break;case"boolean":if(!e)return!0;break;case"number":if(0===e||isNaN(e))return!0;break;case"object":if(null===e||0===e.length)return!0;for(var t in e)return!1;return!0}return!1}function vt(e){return"[object Object]"===Object.prototype.toString.call(e)}function pt(e){return"function"==typeof e}const gt={email:function(e){return/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/.test(e)},mobile:function(e){return/^1[23456789]\d{9}$/.test(e)},url:function(e){return/http(s)?:\/\/([\w-]+\.)+[\w-]+(\/[\w-.\/?%&=]*)?/.test(e)},date:function(e){return!!e&&(mt(e)&&(e=+e),!/Invalid|NaN/.test(new Date(e).toString()))},dateISO:function(e){return/^\d{4}[\/\-](0?[1-9]|1[012])[\/\-](0?[1-9]|[12][0-9]|3[01])$/.test(e)},number:mt,digits:function(e){return/^\d+$/.test(e)},idCard:function(e){return/^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}([0-9]|X)$/.test(e)},carNo:function(e){const t=/^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}(([0-9]{5}[DF]$)|([DF][A-HJ-NP-Z0-9][0-9]{4}$))/,l=/^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}[A-HJ-NP-Z0-9]{4}[A-HJ-NP-Z0-9挂学警港澳]{1}$/;return 7===e.length?l.test(e):8===e.length&&t.test(e)},amount:function(e){return/^[1-9]\d*(,\d{3})*(\.\d{1,2})?$|^0\.\d{1,2}$/.test(e)},chinese:function(e){return/^[\u4e00-\u9fa5]+$/gi.test(e)},letter:function(e){return/^[a-zA-Z]*$/.test(e)},enOrNum:function(e){return/^[0-9a-zA-Z]*$/g.test(e)},contains:function(e,t){return e.indexOf(t)>=0},range:function(e,t){return e>=t[0]&&e<=t[1]},rangeLength:function(e,t){return e.length>=t[0]&&e.length<=t[1]},empty:ut,isEmpty:ut,jsonString:function(e){if("string"==typeof e)try{var t=JSON.parse(e);return!("object"!=typeof t||!t)}catch(l){return!1}return!1},landline:function(e){return/^\d{3,4}-\d{7,8}(-\d{3,4})?$/.test(e)},object:vt,array:function(e){return"function"==typeof Array.isArray?Array.isArray(e):"[object Array]"===Object.prototype.toString.call(e)},code:function(e,t=6){return new RegExp(`^\\d{${t}}$`).test(e)},func:pt,promise:function(e){return vt(e)&&pt(e.then)&&pt(e.catch)},video:function(e){const t=e.split("?")[0];return new RegExp(/\.(mp4|mpg|mpeg|dat|asf|avi|rm|rmvb|mov|wmv|flv|mkv|m3u8|3gp)$/).test(t)},image:function(e){const t=e.split("?")[0];return new RegExp(/\.(jpeg|jpg|gif|png|svg|webp|jfif|bmp|dpg)$/).test(t)},regExp:function(e){return e&&"[object RegExp]"===Object.prototype.toString.call(e)},string:function(e){return"string"==typeof e}};const wt=new class{setConfig(e){this.config=dt(this.config,e)}request(e={}){if(this.interceptor.request&&"function"==typeof this.interceptor.request){let t=this.interceptor.request(e);if(!1===t)return new Promise((()=>{}));this.options=t}return e.dataType=e.dataType||this.config.dataType,e.responseType=e.responseType||this.config.responseType,e.url=e.url||"",e.params=e.params||{},e.header=Object.assign({},this.config.header,e.header),e.method=e.method||this.config.method,new Promise(((t,l)=>{e.complete=e=>{if(uni.hideLoading(),clearTimeout(this.config.timer),this.config.timer=null,this.config.originalData)if(this.interceptor.response&&"function"==typeof this.interceptor.response){let a=this.interceptor.response(e);!1!==a?t(a):l(e)}else t(e);else if(200==e.statusCode)if(this.interceptor.response&&"function"==typeof this.interceptor.response){let a=this.interceptor.response(e.data);!1!==a?t(a):l(e.data)}else t(e.data);else l(e)},e.url=gt.url(e.url)?e.url:this.config.baseUrl+(0==e.url.indexOf("/")?e.url:"/"+e.url),this.config.showLoading&&!this.config.timer&&(this.config.timer=setTimeout((()=>{uni.showLoading({title:this.config.loadingText,mask:this.config.loadingMask}),this.config.timer=null}),this.config.loadingTime)),uni.request(e)}))}constructor(){this.config={baseUrl:"",header:{},method:"POST",dataType:"json",responseType:"text",showLoading:!0,loadingText:"请求中...",loadingTime:800,timer:null,originalData:!1,loadingMask:!0},this.interceptor={request:null,response:null},this.get=(e,t={},l={})=>this.request({method:"GET",url:e,header:l,data:t}),this.post=(e,t={},l={})=>this.request({url:e,method:"POST",header:l,data:t}),this.put=(e,t={},l={})=>this.request({url:e,method:"PUT",header:l,data:t}),this.delete=(e,t={},l={})=>this.request({url:e,method:"DELETE",header:l,data:t})}};const ht=(new class{constructor(){this.config={type:"navigateTo",url:"",delta:1,params:{},animationType:"pop-in",animationDuration:300,intercept:!1},this.route=this.route.bind(this)}addRootPath(e){return"/"===e[0]?e:`/${e}`}mixinParam(e,t){e=e&&this.addRootPath(e);let l="";return/.*\/.*\?.*=.*/.test(e)?(l=uni.$u.queryParams(t,!1),e+"&"+l):(l=uni.$u.queryParams(t),e+l)}async route(e={},t={}){let l={};if("string"==typeof e?(l.url=this.mixinParam(e,t),l.type="navigateTo"):(l=uni.$u.deepClone(e,this.config),l.url=this.mixinParam(e.url,e.params)),t.intercept&&(this.config.intercept=t.intercept),l.params=t,l=uni.$u.deepMerge(this.config,l),"function"==typeof uni.$u.routeIntercept){await new Promise(((e,t)=>{uni.$u.routeIntercept(l,e)}))&&this.openPage(l)}else this.openPage(l)}openPage(e){const{url:t,type:l,delta:a,animationType:i,animationDuration:r}=e;"navigateTo"!=e.type&&"to"!=e.type||uni.navigateTo({url:t,animationType:i,animationDuration:r}),"redirectTo"!=e.type&&"redirect"!=e.type||uni.redirectTo({url:t}),"switchTab"!=e.type&&"tab"!=e.type||uni.switchTab({url:t}),"reLaunch"!=e.type&&"launch"!=e.type||uni.reLaunch({url:t}),"navigateBack"!=e.type&&"back"!=e.type||uni.navigateBack({delta:a})}}).route;function ft(e=null,t="yyyy-mm-dd"){e||(e=Number(new Date)),10==e.toString().length&&(e*=1e3);let l,a=new Date(e),i={"y+":a.getFullYear().toString(),"m+":(a.getMonth()+1).toString(),"d+":a.getDate().toString(),"h+":a.getHours().toString(),"M+":a.getMinutes().toString(),"s+":a.getSeconds().toString()};for(let r in i)l=new RegExp("("+r+")").exec(t),l&&(t=t.replace(l[1],1==l[1].length?i[r]:i[r].padStart(l[1].length,"0")));return t}function Nt(e,t=!0){if((e=e.toLowerCase())&&/^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/.test(e)){if(4===e.length){let t="#";for(let l=1;l<4;l+=1)t+=e.slice(l,l+1).concat(e.slice(l,l+1));e=t}let l=[];for(let t=1;t<7;t+=2)l.push(parseInt("0x"+e.slice(t,t+2)));return t?`rgb(${l[0]},${l[1]},${l[2]})`:l}if(/^(rgb|RGB)/.test(e)){return e.replace(/(?:\(|\)|rgb|RGB)*/g,"").split(",").map((e=>Number(e)))}return e}function yt(e){let t=e;if(/^(rgb|RGB)/.test(t)){let e=t.replace(/(?:\(|\)|rgb|RGB)*/g,"").split(","),l="#";for(let t=0;t=e)return String(l);let a=e-l.length,i=Math.ceil(a/t.length);for(;i>>=1;)t+=t,1===i&&(t+=t);return t.slice(0,a)+l});const xt={colorGradient:function(e="rgb(0, 0, 0)",t="rgb(255, 255, 255)",l=10){let a=Nt(e,!1),i=a[0],r=a[1],n=a[2],o=Nt(t,!1),c=(o[0]-i)/l,s=(o[1]-r)/l,d=(o[2]-n)/l,m=[];for(let u=0;u=0))if(t.constructor===Array)switch(l){case"indices":for(let l=0;l{i.push(r+"[]="+e)}));break;case"repeat":t.forEach((e=>{i.push(r+"="+e)}));break;case"comma":let e="";t.forEach((t=>{e+=(e?",":"")+t})),i.push(r+"="+e)}else i.push(r+"="+t)}return i.length?a+i.join("&"):""},route:ht,timeFormat:ft,date:ft,timeFrom:function(e=null,t="yyyy-mm-dd"){e||(e=Number(new Date)),10==e.toString().length&&(e*=1e3);let l=+new Date(Number(e)),a=(Number(new Date)-l)/1e3,i="";switch(!0){case a<300:i="刚刚";break;case a>=300&&a<3600:i=parseInt(a/60)+"分钟前";break;case a>=3600&&a<86400:i=parseInt(a/3600)+"小时前";break;case a>=86400&&a<2592e3:i=parseInt(a/86400)+"天前";break;default:i=!1===t?a>=2592e3&&a<31536e3?parseInt(a/2592e3)+"个月前":parseInt(a/31536e3)+"年前":ft(l,t)}return i},colorGradient:xt.colorGradient,colorToRgba:xt.colorToRgba,guid:function(e=32,t=!0,l=null){let a="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".split(""),i=[];if(l=l||a.length,e)for(let r=0;rMath.random()-.5))},wranning:function(e){},get:wt.get,post:wt.post,put:wt.put,delete:wt.delete,hexToRgb:xt.hexToRgb,rgbToHex:xt.rgbToHex,test:gt,random:function(e,t){if(e>=0&&t>0&&t>=e){let l=t-e+1;return Math.floor(Math.random()*l+e)}return 0},deepClone:st,deepMerge:dt,getParent:function(e,t){let l=this.$parent;for(;l;){if(l.$options.name===e){let e={};if(Array.isArray(t))t.map((t=>{e[t]=l[t]?l[t]:""}));else for(let a in t)Array.isArray(t[a])?t[a].length?e[a]=t[a]:e[a]=l[a]:t[a].constructor===Object?Object.keys(t[a]).length?e[a]=t[a]:e[a]=l[a]:e[a]=t[a]||!1===t[a]?t[a]:l[a];return e}l=l.$parent}return{}},$parent:function(e){let t=this.$parent;for(;t;){if(!t.$options||t.$options.name===e)return t;t=t.$parent}return!1},addUnit:function(e="auto",t="rpx"){return e=String(e),gt.number(e)?`${e}${t}`:e},trim:function(e,t="both"){return"both"==t?e.replace(/^\s+|\s+$/g,""):"left"==t?e.replace(/^\s*/,""):"right"==t?e.replace(/(\s*$)/g,""):"all"==t?e.replace(/\s+/g,""):e},type:["primary","success","error","warning","info"],http:wt,toast:function(e,t=1500){uni.showToast({title:e,icon:"none",duration:t})},config:Dt,zIndex:{toast:10090,noNetwork:10080,popup:10075,mask:10070,navbar:980,topTips:975,sticky:970,indexListSticky:965},debounce:function(e,t=500,l=!1){if(null!==Et&&clearTimeout(Et),l){var a=!Et;Et=setTimeout((function(){Et=null}),t),a&&"function"==typeof e&&e()}else Et=setTimeout((function(){"function"==typeof e&&e()}),t)},throttle:function(e,t=500,l=!0,a="default"){Vt[a]||(Vt[a]=null),l?bt[a]||(bt[a]=!0,"function"==typeof e&&e(),Vt[a]=setTimeout((()=>{bt[a]=!1}),t)):bt[a]||(bt[a]=!0,Vt[a]=setTimeout((()=>{bt[a]=!1,"function"==typeof e&&e()}),t))},addStyle:function(e,t="object"){if(gt.empty(e)||"object"==typeof e&&"object"===t||"string"===t&&"string"==typeof e)return e;if("object"===t){const t=(e=kt(e)).split(";"),l={};for(let e=0;e{e.mixin(ct),e.config.globalProperties.$u=Ct}},Bt={__name:"donghua",props:{links:{type:Array,default:()=>[]},width:{type:String,default:"65rpx"},height:{type:String,default:"65rpx"},objectFit:{type:String,default:"aspectFill"},defaultImage:{type:String,default:""},interval:{type:Number,default:80},playing:{type:Boolean,default:!1},showButton:{type:Boolean,default:!1},loop:{type:Boolean,default:!1}},emits:["update:playing"],setup(t,{emit:l}){const a=t,i=e.ref(0),r=e.ref(!1),n=e.ref(!1);let o=null;const c=()=>{r.value=!1,clearInterval(o)};return e.watch((()=>a.playing),(e=>{i.value=0,e?r.value||(r.value=!0,o=setInterval((()=>{a.loop?(i.value=(i.value+1)%a.links.length,n.value=!1):i.valuei.value=0),50))})),e.watch((()=>a.links),(()=>{i.value=0,n.value=!1,r.value&&c()}),{deep:!0}),e.onUnmounted((()=>{c()})),(l,a)=>(e.openBlock(),e.createElementBlock("view",null,[e.createElementVNode("image",{src:n.value?t.defaultImage:t.links[i.value],style:e.normalizeStyle({width:t.width,height:t.height}),mode:t.objectFit,onError:a[0]||(a[0]=e=>n.value=!0),onLoad:a[1]||(a[1]=e=>n.value=!1)},null,44,["src","mode"]),t.showButton?(e.openBlock(),e.createElementBlock("button",{key:0,onClick:a[2]||(a[2]=e=>l.$emit("update:playing",!t.playing))},e.toDisplayString(t.playing?"停止播放":"开始播放"),1)):e.createCommentVNode("",!0)]))}},zt=s(e.defineComponent({__name:"arrowkeys",props:{movebottom:{type:Number,default:30},moveleft:{type:Number,default:10},leftbuttonname:{type:String,default:"返回"},rightbuttonname:{type:String,default:"确定"}},emits:["movecard"],setup(t,{emit:l}){const a=l;let i=null,r=null,n=!1;const o=e.ref(-1);let c=null;function s(){i&&(clearTimeout(i),i=null)}function d(){r&&(clearTimeout(r),r=null),n=!1,c=null}function m(e){d(),s(),o.value=e,a("movecard",e),i=setTimeout((()=>{o.value=-1,i=null}),500)}function u(e){s(),d(),o.value=e,a("movecard",e),c=e,n=!0,r=setTimeout((function e(){n&&null!==c&&(r=setTimeout(e,500))}),500)}function v(){n&&(d(),s(),i=setTimeout((()=>{o.value=-1,i=null}),500))}return e.onBeforeUnmount((()=>{s(),d()})),(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"move-circle",style:e.normalizeStyle({bottom:`${t.movebottom}rpx`,left:`${t.moveleft}rpx`})},[e.createElementVNode("view",{class:e.normalizeClass(5===o.value?"click-box-target":"click-box"),onClick:a[0]||(a[0]=e=>m(5)),onLongpress:a[1]||(a[1]=()=>u(5)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${5===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("span",{style:{"z-index":"1","font-size":"30rpx"},class:e.normalizeClass(5===o.value?"grad-text":"")},e.toDisplayString(t.leftbuttonname),3)],34),e.createElementVNode("view",{class:e.normalizeClass(0===o.value?"click-box-target":"click-box"),onClick:a[2]||(a[2]=e=>m(0)),onLongpress:a[3]||(a[3]=()=>u(0)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${0===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("image",{src:`/static/index/newruler/fangxiang${0===o.value?"target":""}.png`,class:"image-photo"},null,8,["src"])],34),e.createElementVNode("view",{class:e.normalizeClass(4===o.value?"click-box-target":"click-box"),onClick:a[4]||(a[4]=e=>m(4)),onLongpress:a[5]||(a[5]=()=>u(4)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${4===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("span",{style:{"z-index":"1","font-size":"30rpx"},class:e.normalizeClass(4===o.value?"grad-text":"")},e.toDisplayString(t.rightbuttonname),3)],34),e.createElementVNode("view",{class:e.normalizeClass(3===o.value?"click-box-target":"click-box"),onClick:a[6]||(a[6]=e=>m(3)),onLongpress:a[7]||(a[7]=()=>u(3)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${3===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("image",{style:{transform:"rotate(270deg)","transform-origin":"center"},src:`/static/index/newruler/fangxiang${3===o.value?"target":""}.png`,class:"image-photo"},null,8,["src"])],34),e.createElementVNode("view",{class:e.normalizeClass(2===o.value?"click-box-target":"click-box"),onClick:a[8]||(a[8]=e=>m(2)),onLongpress:a[9]||(a[9]=()=>u(2)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${2===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("image",{style:{transform:"rotate(180deg)","transform-origin":"center"},src:`/static/index/newruler/fangxiang${2===o.value?"target":""}.png`,class:"image-photo"},null,8,["src"])],34),e.createElementVNode("view",{class:e.normalizeClass(1===o.value?"click-box-target":"click-box"),onClick:a[10]||(a[10]=e=>m(1)),onLongpress:a[11]||(a[11]=()=>u(1)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${1===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("image",{style:{transform:"rotate(90deg)","transform-origin":"center"},src:`/static/index/newruler/fangxiang${1===o.value?"target":""}.png`,class:"image-photo"},null,8,["src"])],34)],4))}}),[["__scopeId","data-v-4057d511"]]);const{app:_t,Vuex:It,Pinia:Ut}=function(){const t=e.createVueApp(ot);return t.use(St),t.component("donghua",Bt),t.component("arrowkeys",zt),{app:t}}();uni.Vuex=It,uni.Pinia=Ut,_t.provide("__globalStyles",__uniConfig.styles),_t._component.mpType="app",_t._component.render=()=>{},_t.mount("#app")}(Vue);
diff --git a/unpackage/resources/__UNI__FB2D473/www/manifest.json b/unpackage/resources/__UNI__FB2D473/www/manifest.json
index 187af91..c0a93cc 100644
--- a/unpackage/resources/__UNI__FB2D473/www/manifest.json
+++ b/unpackage/resources/__UNI__FB2D473/www/manifest.json
@@ -1 +1 @@
-{"@platforms":["android","iPhone","iPad"],"id":"__UNI__FB2D473","name":"护理单元","version":{"name":"1.6.0","code":160},"description":"护理单元","developer":{"name":"","email":"","url":""},"permissions":{"Share":{},"Camera":{},"VideoPlayer":{},"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"render":"always","id":"1","kernel":"WKWebview"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"nativePlugins":{"MonitorModule":{"__plugin_info__":{"name":"MonitorModule","description":"bugly升级","platforms":"Android","url":"","android_package_name":"","ios_bundle_id":"","isCloud":false,"bought":-1,"pid":"","parameters":{}}}},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#F8F8F8"},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"uni-app":{"control":"uni-v3","vueVersion":"3","compilerVersion":"4.76","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal","webView":{"minUserAgentVersion":"49.0"}}},"app-harmony":{"useragent":{"value":"uni-app","concatenate":true},"uniStatistics":{"enable":false}},"screenOrientation":["landscape-primary","landscape-secondary"],"launch_path":"__uniappview.html"}
\ No newline at end of file
+{"@platforms":["android","iPhone","iPad"],"id":"__UNI__FB2D473","name":"护理单元","version":{"name":"1.6.1","code":161},"description":"护理单元","developer":{"name":"","email":"","url":""},"permissions":{"Share":{},"Camera":{},"VideoPlayer":{},"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"render":"always","id":"1","kernel":"WKWebview"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"nativePlugins":{"MonitorModule":{"__plugin_info__":{"name":"MonitorModule","description":"bugly升级","platforms":"Android","url":"","android_package_name":"","ios_bundle_id":"","isCloud":false,"bought":-1,"pid":"","parameters":{}}}},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#F8F8F8"},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"uni-app":{"control":"uni-v3","vueVersion":"3","compilerVersion":"4.76","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal","webView":{"minUserAgentVersion":"49.0"}}},"app-harmony":{"useragent":{"value":"uni-app","concatenate":true},"uniStatistics":{"enable":false}},"screenOrientation":["landscape-primary","landscape-secondary"],"launch_path":"__uniappview.html"}
\ No newline at end of file
diff --git a/unpackage/resources/__UNI__FB2D473/www/pages/Initialization/index.css b/unpackage/resources/__UNI__FB2D473/www/pages/Initialization/index.css
index a01d410..15b61e7 100644
--- a/unpackage/resources/__UNI__FB2D473/www/pages/Initialization/index.css
+++ b/unpackage/resources/__UNI__FB2D473/www/pages/Initialization/index.css
@@ -1 +1 @@
-.index-content-other[data-v-01c2b33c]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-down[data-v-01c2b33c]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.index-content-right[data-v-01c2b33c]{height:calc(100% - .9375rem);width:100%;display:flex;flex-direction:column;position:relative}.big-ball[data-v-01c2b33c]{width:6.25rem;height:6.25rem;position:absolute;top:50%;left:-1.71875rem;transform:translateY(-50%);border-radius:50%;background-color:#dbe4f6}.big-ball .ball[data-v-01c2b33c]{width:4.6875rem;height:4.6875rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border-radius:50%;background-color:#cfddf1}.tab[data-v-01c2b33c]{width:6.25rem;height:3.75rem;font-size:1rem;display:flex;justify-content:center;align-items:center;position:relative}.tab .tab-heng[data-v-01c2b33c]{position:absolute;left:50%;bottom:1.09375rem;transform:translate(-50%);width:1.5625rem;height:.375rem;border-radius:.3125rem;background-color:#00b4ff}.scroll-box[data-v-01c2b33c]{display:flex;flex-wrap:wrap}.scroll-box .card[data-v-01c2b33c]{margin-right:.9375rem;margin-bottom:.9375rem;border:.0625rem solid #fff;background-image:url(../../static/index/mountain.png);background-color:rgba(255,255,255,.6);background-position:60% 50%;width:32.65625rem;height:20.3125rem;border-radius:1.5625rem 1.25rem 1.5625rem 1.5625rem;display:flex}.scroll-box .card .card-left[data-v-01c2b33c]{height:100%;width:68%;position:relative}.scroll-box .card .card-left .card-left-title[data-v-01c2b33c]{height:23%;width:100%;padding:0 .625rem;display:flex;justify-content:space-between;align-items:center}.scroll-box .card .card-left .card-left-title .left-view[data-v-01c2b33c]{display:flex;margin-top:.625rem;position:relative;width:100%}.scroll-box .card .card-left .card-left-title .left-view .left-view-img[data-v-01c2b33c]{width:2.65625rem;height:2.65625rem}.scroll-box .card .card-right[data-v-01c2b33c]{height:100%;width:32%;background-color:rgba(244,235,249,.3);border-top-right-radius:1.1875rem;border-bottom-right-radius:1.1875rem;position:relative}.top-font-line[data-v-01c2b33c]{display:flex;align-items:center;font-size:.71875rem}.top-font-line .line-weight[data-v-01c2b33c]{font-size:1.09375rem;font-weight:600;margin-left:.625rem}.top-font-line .line-margin[data-v-01c2b33c]{margin-left:.625rem;margin-right:.625rem}.top-font-line .font-gray[data-v-01c2b33c]{margin-left:.625rem;font-size:.875rem;color:#555}.blue-button[data-v-01c2b33c]{position:absolute;right:.625rem;top:-.09375rem;width:4.0625rem;height:1.5625rem;color:#fff;font-size:.78125rem;background:linear-gradient(to bottom,#00c9ff,#0076ff);border-radius:.46875rem;display:flex;justify-content:center;align-items:center;margin:.625rem .3125rem 0 0}.font-gray-right[data-v-01c2b33c]{margin-top:.3125rem;font-size:.78125rem;color:#858585;margin-right:.25rem}.right-spec[data-v-01c2b33c]{margin-top:2.125rem;font-weight:600;margin-right:.3125rem;width:4.6875rem}.video-img[data-v-01c2b33c]{margin-left:3.4375rem;width:17.8125rem;height:12.5rem;border-radius:.9375rem}.video-bottom[data-v-01c2b33c]{width:100%;overflow:hidden;height:2.65625rem;display:flex;align-items:center;padding-left:3.4375rem;color:#858585;font-size:.75rem;position:relative}.video-bottom .font-bottom-weight[data-v-01c2b33c]{font-size:.875rem;font-weight:600;color:#000}.video-bottom .bottom-shu[data-v-01c2b33c]{margin:0 .46875rem}.bottom-balls[data-v-01c2b33c]{position:absolute;bottom:3.75rem;left:38%;transform:translate(-35%);z-index:999;display:flex}.bottom-balls .one-ball-father[data-v-01c2b33c]{width:3.75rem;height:1.5625rem;display:flex;justify-content:center;align-items:center;border:.0625rem solid #fff;margin:0 .15625rem;color:#fff;font-size:.78125rem;border-radius:.3125rem}.right-balls[data-v-01c2b33c]{position:absolute;left:.78125rem;top:4.375rem;padding-top:.3125rem;z-index:999}.right-balls .blue-ball[data-v-01c2b33c]{width:1.09375rem;height:1.09375rem}.right-balls .blue-ball-father[data-v-01c2b33c]{width:2.1875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;background-color:#dbe8f9;border-radius:.78125rem;margin-right:.625rem;margin-bottom:.5625rem;position:relative;overflow:hidden}.right-balls .blue-ball-father-target[data-v-01c2b33c]{width:2.1875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;background-color:#dbe8f9;border-radius:.78125rem;margin-right:.625rem;margin-bottom:.5625rem;position:relative;overflow:auto}.right-title[data-v-01c2b33c]{position:absolute;right:-1.5625rem;top:.3125rem;width:7.8125rem;height:3.75rem;z-index:1}.right-other[data-v-01c2b33c]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);display:flex;align-items:center;justify-content:center;border-top-left-radius:.9375rem;border-bottom-left-radius:.9375rem;width:4.6875rem;height:1.875rem}.right-other .other-class[data-v-01c2b33c]{width:1.09375rem;height:1.09375rem;margin-right:.15625rem;margin-left:.15625rem}.right-other .other-font[data-v-01c2b33c]{color:#fff}.time[data-v-01c2b33c]{display:flex;margin-top:3.75rem;align-items:center;justify-content:center}.time .time-left[data-v-01c2b33c]{background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent;font-size:1.40625rem;font-weight:600}.time-img[data-v-01c2b33c]{width:7.5rem;height:5.625rem;margin-bottom:.46875rem}.time-weight[data-v-01c2b33c]{font-weight:600;font-size:1rem;margin-top:.78125rem}.time-small[data-v-01c2b33c]{padding:.3125rem .9375rem;font-size:.625rem;color:#666}.time-people-two[data-v-01c2b33c]{display:flex;margin-left:.625rem;align-items:center;margin-bottom:.15625rem}.time-people-two .time-people-img[data-v-01c2b33c]{width:1.25rem;height:1.25rem;margin-right:.3125rem;margin-left:.15625rem}.time-people-two .time-people-font[data-v-01c2b33c]{font-size:.84375rem}.right-time[data-v-01c2b33c]{position:absolute;top:40%;right:0;transform:translateY(-40%)}.right-time .right-laba[data-v-01c2b33c]{width:1.875rem;height:1.875rem;margin-right:.15625rem;border-top-left-radius:.9375rem;border-bottom-left-radius:.9375rem;background-color:#fff;display:flex;justify-content:center;align-items:center;margin-bottom:.3125rem}.fail-img[data-v-01c2b33c]{width:7.8125rem;height:7.8125rem}.fail-img-spec[data-v-01c2b33c]{width:12.5rem;height:10.9375rem;margin-left:-2.1875rem}.fail-text[data-v-01c2b33c]{margin-top:.46875rem;color:#333}.fail-text-spec[data-v-01c2b33c]{margin-top:-3.125rem;color:#333}.kufang-img[data-v-01c2b33c]{width:1.34375rem;height:1.34375rem}.tab-heng[data-v-01c2b33c]{position:absolute;left:50%;bottom:-.46875rem;transform:translate(-50%);width:1.25rem;height:.3125rem;border-radius:.3125rem}.right-title-father[data-v-01c2b33c]{position:absolute;right:.625rem;height:100%;top:0;display:flex;align-items:center}.split-line-white-sec[data-v-01c2b33c]{position:absolute;left:0;top:50%;transform:translateY(-50%);width:.0625rem;height:18.75rem;z-index:999;background:linear-gradient(to top,rgba(0,0,0,0),#fff,rgba(0,0,0,0))}.topright-ball[data-v-01c2b33c]{position:absolute;top:5.3125rem;right:1.5625rem;width:2.34375rem;height:2.34375rem;border-radius:50%;background-color:rgba(255,255,255,.3);z-index:999;display:flex;justify-content:center;align-items:center}.topright-ball .ball-righttop[data-v-01c2b33c]{width:1.40625rem;height:1.40625rem;margin-top:-.3125rem}.small-button[data-v-01c2b33c]{width:70%;height:2.1875rem;display:flex;justify-content:space-between}.small-button .gray-ball[data-v-01c2b33c]{display:flex;justify-content:center;align-items:center;background-color:#d8e1f2;width:1.875rem;height:1.875rem;border-radius:50%}.laba-img[data-v-01c2b33c]{width:.9375rem;height:.9375rem}.time-right[data-v-01c2b33c]{position:absolute;right:.3125rem;top:.15625rem;width:2.8125rem;height:1.09375rem;display:flex;justify-content:center;align-items:center;background-color:#ffd5ac;color:#ff5834;border:.0625rem solid #FF5834;margin-left:.15625rem;border-radius:.3125rem;font-size:.625rem}.neuro-wrapper[data-v-1c53b005]{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;z-index:999;opacity:0;pointer-events:none;transition:opacity .3s ease}.neuro-wrapper.is-active[data-v-1c53b005]{opacity:1;pointer-events:auto}.neuro-mask[data-v-1c53b005]{position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.3)}.neuro-box[data-v-1c53b005]{position:relative;width:18.75rem;height:14.0625rem;border-radius:.9375rem;background-color:#fff;display:flex;flex-direction:column;align-items:center;z-index:1;padding:0 10%}.button[data-v-1c53b005]{width:47%;background-color:#ddf0ff;display:flex;justify-content:center;align-items:center;color:#007cff;border:.03125rem solid #007CFF;font-size:.78125rem;border-radius:.9375rem}.title[data-v-1c53b005]{margin-top:2.1875rem}.card-font[data-v-1c53b005]{margin-top:2.1875rem;width:18.75rem;justify-content:center;display:flex}.button-white[data-v-1c53b005]{width:47%;border:.0625rem solid #c3cacd;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:.78125rem;border-radius:.9375rem}.button-father[data-v-1c53b005]{position:absolute;bottom:1.875rem;left:50%;transform:translate(-50%);width:100%;height:2.1875rem;display:flex;justify-content:space-between;padding:0 1.5625rem}.neuro-wrapper[data-v-8de7e110]{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;z-index:999;opacity:0;pointer-events:none;transition:opacity .3s ease}.neuro-wrapper.is-active[data-v-8de7e110]{opacity:1;pointer-events:auto}.neuro-mask[data-v-8de7e110]{position:absolute;top:0;right:0;bottom:0;left:0;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4)}.neuro-box[data-v-8de7e110]{position:relative;width:23.4375rem;height:21.875rem;border-radius:.9375rem;background-color:#fff;display:flex;flex-direction:column;align-items:center;z-index:1;padding:0 10%}.button[data-v-8de7e110]{width:100%;display:flex;justify-content:center;align-items:center;color:#fff;font-size:.78125rem;border-radius:1.09375rem;margin-left:.625rem;color:#007cff;font-size:.9375rem;background-color:#ddf0ff;border:.03125rem solid #007CFF}.title[data-v-8de7e110]{margin-top:2.1875rem;font-weight:600;font-size:1.09375rem}.card-font[data-v-8de7e110]{margin-top:2.1875rem;width:18.75rem;justify-content:center;display:flex}.button-white[data-v-8de7e110]{width:47%;border:.0625rem solid #c3cacd;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:.78125rem;border-radius:.9375rem}.button-father[data-v-8de7e110]{position:absolute;bottom:2.1875rem;left:50%;transform:translate(-50%);width:100%;height:2.5rem;display:flex;justify-content:center;padding:0 3.4375rem}.password-father[data-v-8de7e110]{margin-top:.9375rem;width:23.4375rem;padding:0 3.75rem;height:2.5rem}.password-father .password[data-v-8de7e110]{width:100%;background-color:rgba(239,240,244,.5);border-radius:.71875rem;height:2.5rem;padding-left:.625rem;font-size:.84375rem}.zy-modal[data-v-cd70e807]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1110;opacity:0;outline:0;text-align:center;transform:scale(1.185);-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:62.5rem;background:rgba(0,0,0,.6);transition:all .3s ease-in-out 0s;pointer-events:none}.zy-modal[data-v-cd70e807]:before{content:"\200b";display:inline-block;height:100%;vertical-align:middle}.zy-modal.show[data-v-cd70e807]{opacity:1;transition-duration:.3s;transform:scale(1);overflow-x:hidden;overflow-y:auto;pointer-events:auto}.zy-dialog[data-v-cd70e807]{position:relative;display:inline-block;vertical-align:middle;margin-left:auto;margin-right:auto;width:21.25rem;max-width:100%;background-color:#f8f8f8;border-radius:.3125rem;overflow:hidden}.zy-modal.bottom-modal[data-v-cd70e807]:before{vertical-align:bottom}.zy-modal.bottom-modal .zy-dialog[data-v-cd70e807]{width:100%;border-radius:0}.zy-modal.bottom-modal[data-v-cd70e807]{margin-bottom:-31.25rem}.zy-modal.bottom-modal.show[data-v-cd70e807]{margin-bottom:0}.zy-modal.drawer-modal[data-v-cd70e807]{transform:scale(1);display:flex}.zy-modal.drawer-modal .zy-dialog[data-v-cd70e807]{height:100%;min-width:6.25rem;border-radius:0;margin:initial;transition-duration:.3s}.zy-modal.drawer-modal.justify-start .zy-dialog[data-v-cd70e807]{transform:translate(-100%)}.zy-modal.drawer-modal.justify-end .zy-dialog[data-v-cd70e807]{transform:translate(100%)}.zy-modal.drawer-modal.show .zy-dialog[data-v-cd70e807]{transform:translate(0)}.zy-modal .zy-dialog>.zy-bar:first-child .action[data-v-cd70e807]{min-width:3.125rem;margin-right:0;min-height:3.125rem}.zy-progress[data-v-cd70e807]{overflow:hidden;height:.875rem;background-color:#ebeef5;display:inline-flex;align-items:center;width:100%}.zy-progress+uni-view[data-v-cd70e807],.zy-progress+uni-text[data-v-cd70e807]{line-height:1}.zy-progress.xs[data-v-cd70e807]{height:.3125rem}.zy-progress.sm[data-v-cd70e807]{height:.625rem}.zy-progress uni-view[data-v-cd70e807]{width:0;height:100%;align-items:center;display:flex;justify-items:flex-end;justify-content:space-around;font-size:.625rem;color:#fff;transition:width .6s ease}.zy-progress uni-text[data-v-cd70e807]{align-items:center;display:flex;font-size:.625rem;color:#333;text-indent:.3125rem}.zy-progress.text-progress[data-v-cd70e807]{padding-right:1.875rem}.zy-progress.striped uni-view[data-v-cd70e807]{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:2.25rem 2.25rem}.zy-progress.active uni-view[data-v-cd70e807]{animation:progress-stripes-cd70e807 2s linear infinite}@keyframes progress-stripes-cd70e807{0%{background-position:2.25rem 0}to{background-position:0 0}}.zy-btn[data-v-cd70e807]{height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.zy-btn[data-v-cd70e807]:after{display:none}.zy-btn[data-v-cd70e807]:not([class*=bg-]){background-color:#f0f0f0}.zy-btn[class*=line][data-v-cd70e807]{background-color:transparent}.zy-btn[class*=line][data-v-cd70e807]:after{content:" ";display:block;width:200%;height:200%;position:absolute;top:0;left:0;border:.03125rem solid currentColor;transform:scale(.5);transform-origin:0 0;box-sizing:border-box;border-radius:.375rem;z-index:1;pointer-events:none}.zy-btn.round[class*=line][data-v-cd70e807]:after{border-radius:31.25rem}.zy-btn[class*=lines][data-v-cd70e807]:after{border:.1875rem solid currentColor}.zy-btn[class*=bg-][data-v-cd70e807]:after{display:none}.zy-btn.sm[data-v-cd70e807]{padding:0 .625rem;font-size:.625rem;height:1.5rem}.zy-btn.lg[data-v-cd70e807]{padding:0 1.25rem;font-size:1rem;height:2.5rem}.zy-btn.cuIcon.sm[data-v-cd70e807]{width:1.5rem;height:1.5rem}.zy-btn.cuIcon[data-v-cd70e807]{width:2rem;height:2rem;border-radius:15.625rem;padding:0}uni-button.cuIcon.lg[data-v-cd70e807]{width:2.5rem;height:2.5rem}.zy-btn.shadow-blur[data-v-cd70e807]:before{top:.125rem;left:.125rem;filter:blur(.1875rem);opacity:.6}.zy-btn.button-hover[data-v-cd70e807]{transform:translate(.03125rem,.03125rem)}.block[data-v-cd70e807]{display:block}.zy-btn.block[data-v-cd70e807]{display:flex}.zy-btn[disabled][data-v-cd70e807]{opacity:.6;color:#fff}.margin-0[data-v-cd70e807]{margin:0}.margin-xs[data-v-cd70e807]{margin:.3125rem}.margin-sm[data-v-cd70e807]{margin:.625rem}.margin[data-v-cd70e807]{margin:.9375rem}.margin-lg[data-v-cd70e807]{margin:1.25rem}.margin-xl[data-v-cd70e807]{margin:1.5625rem}.margin-top-xs[data-v-cd70e807]{margin-top:.3125rem}.margin-top-sm[data-v-cd70e807]{margin-top:.625rem}.margin-top[data-v-cd70e807]{margin-top:.9375rem}.margin-top-lg[data-v-cd70e807]{margin-top:1.25rem}.margin-top-xl[data-v-cd70e807]{margin-top:1.5625rem}.margin-right-xs[data-v-cd70e807]{margin-right:.3125rem}.margin-right-sm[data-v-cd70e807]{margin-right:.625rem}.margin-right[data-v-cd70e807]{margin-right:.9375rem}.margin-right-lg[data-v-cd70e807]{margin-right:1.25rem}.margin-right-xl[data-v-cd70e807]{margin-right:1.5625rem}.margin-bottom-xs[data-v-cd70e807]{margin-bottom:.3125rem}.margin-bottom-sm[data-v-cd70e807]{margin-bottom:.625rem}.margin-bottom[data-v-cd70e807]{margin-bottom:.9375rem}.margin-bottom-lg[data-v-cd70e807]{margin-bottom:1.25rem}.margin-bottom-xl[data-v-cd70e807]{margin-bottom:1.5625rem}.margin-left-xs[data-v-cd70e807]{margin-left:.3125rem}.margin-left-sm[data-v-cd70e807]{margin-left:.625rem}.margin-left[data-v-cd70e807]{margin-left:.9375rem}.margin-left-lg[data-v-cd70e807]{margin-left:1.25rem}.margin-left-xl[data-v-cd70e807]{margin-left:1.5625rem}.margin-lr-xs[data-v-cd70e807]{margin-left:.3125rem;margin-right:.3125rem}.margin-lr-sm[data-v-cd70e807]{margin-left:.625rem;margin-right:.625rem}.margin-lr[data-v-cd70e807]{margin-left:.9375rem;margin-right:.9375rem}.margin-lr-lg[data-v-cd70e807]{margin-left:1.25rem;margin-right:1.25rem}.margin-lr-xl[data-v-cd70e807]{margin-left:1.5625rem;margin-right:1.5625rem}.margin-tb-xs[data-v-cd70e807]{margin-top:.3125rem;margin-bottom:.3125rem}.margin-tb-sm[data-v-cd70e807]{margin-top:.625rem;margin-bottom:.625rem}.margin-tb[data-v-cd70e807]{margin-top:.9375rem;margin-bottom:.9375rem}.margin-tb-lg[data-v-cd70e807]{margin-top:1.25rem;margin-bottom:1.25rem}.margin-tb-xl[data-v-cd70e807]{margin-top:1.5625rem;margin-bottom:1.5625rem}.padding-0[data-v-cd70e807]{padding:0}.padding-xs[data-v-cd70e807]{padding:.3125rem}.padding-sm[data-v-cd70e807]{padding:.625rem}.padding[data-v-cd70e807]{padding:.9375rem}.padding-lg[data-v-cd70e807]{padding:1.25rem}.padding-xl[data-v-cd70e807]{padding:1.5625rem}.padding-top-xs[data-v-cd70e807]{padding-top:.3125rem}.padding-top-sm[data-v-cd70e807]{padding-top:.625rem}.padding-top[data-v-cd70e807]{padding-top:.9375rem}.padding-top-lg[data-v-cd70e807]{padding-top:1.25rem}.padding-top-xl[data-v-cd70e807]{padding-top:1.5625rem}.padding-right-xs[data-v-cd70e807]{padding-right:.3125rem}.padding-right-sm[data-v-cd70e807]{padding-right:.625rem}.padding-right[data-v-cd70e807]{padding-right:.9375rem}.padding-right-lg[data-v-cd70e807]{padding-right:1.25rem}.padding-right-xl[data-v-cd70e807]{padding-right:1.5625rem}.padding-bottom-xs[data-v-cd70e807]{padding-bottom:.3125rem}.padding-bottom-sm[data-v-cd70e807]{padding-bottom:.625rem}.padding-bottom[data-v-cd70e807]{padding-bottom:.9375rem}.padding-bottom-lg[data-v-cd70e807]{padding-bottom:1.25rem}.padding-bottom-xl[data-v-cd70e807]{padding-bottom:1.5625rem}.padding-left-xs[data-v-cd70e807]{padding-left:.3125rem}.padding-left-sm[data-v-cd70e807]{padding-left:.625rem}.padding-left[data-v-cd70e807]{padding-left:.9375rem}.padding-left-lg[data-v-cd70e807]{padding-left:1.25rem}.padding-left-xl[data-v-cd70e807]{padding-left:1.5625rem}.padding-lr-xs[data-v-cd70e807]{padding-left:.3125rem;padding-right:.3125rem}.padding-lr-sm[data-v-cd70e807]{padding-left:.625rem;padding-right:.625rem}.padding-lr[data-v-cd70e807]{padding-left:.9375rem;padding-right:.9375rem}.padding-lr-lg[data-v-cd70e807]{padding-left:1.25rem;padding-right:1.25rem}.padding-lr-xl[data-v-cd70e807]{padding-left:1.5625rem;padding-right:1.5625rem}.padding-tb-xs[data-v-cd70e807]{padding-top:.3125rem;padding-bottom:.3125rem}.padding-tb-sm[data-v-cd70e807]{padding-top:.625rem;padding-bottom:.625rem}.padding-tb[data-v-cd70e807]{padding-top:.9375rem;padding-bottom:.9375rem}.padding-tb-lg[data-v-cd70e807]{padding-top:1.25rem;padding-bottom:1.25rem}.padding-tb-xl[data-v-cd70e807]{padding-top:1.5625rem;padding-bottom:1.5625rem}.zy-bar[data-v-cd70e807]{display:flex;position:relative;align-items:center;min-height:3.125rem;justify-content:space-between}.zy-bar .action[data-v-cd70e807]{display:flex;align-items:center;height:100%;justify-content:center;max-width:100%}.zy-bar .action.border-title[data-v-cd70e807]{position:relative;top:-.3125rem}.zy-bar .action.border-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;bottom:-.5rem;min-width:2rem;height:.1875rem;left:0}.zy-bar .action.sub-title[data-v-cd70e807]{position:relative;top:-.2rem}.zy-bar .action.sub-title uni-text[data-v-cd70e807]{position:relative;z-index:1}.zy-bar .action.sub-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.2rem;border-radius:.1875rem;width:100%;height:.6rem;left:.6rem;opacity:.3;z-index:0}.zy-bar .action.sub-title uni-text[class*=text-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.7rem;left:.5rem;opacity:.2;z-index:0;text-align:right;font-weight:900;font-size:1.125rem}.zy-bar.justify-center .action.border-title uni-text[data-v-cd70e807]:last-child,.zy-bar.justify-center .action.sub-title uni-text[data-v-cd70e807]:last-child{left:0;right:0;margin:auto;text-align:center}.zy-bar .action[data-v-cd70e807]:first-child{margin-left:.9375rem;font-size:.9375rem}.zy-bar .action uni-text.text-cut[data-v-cd70e807]{text-align:left;width:100%}.zy-bar .zy-avatar[data-v-cd70e807]:first-child{margin-left:.625rem}.zy-bar .action:first-child>uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:-.3em;margin-right:.3em}.zy-bar .action[data-v-cd70e807]:last-child{margin-right:.9375rem}.zy-bar .action>uni-text[class*=cuIcon-][data-v-cd70e807],.zy-bar .action>uni-view[class*=cuIcon-][data-v-cd70e807]{font-size:1.125rem}.zy-bar .action>uni-text[class*=cuIcon-]+uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:.5em}.zy-bar .content[data-v-cd70e807]{position:absolute;text-align:center;width:calc(100% - 10.625rem);left:0;right:0;bottom:0;top:0;margin:auto;height:1.875rem;font-size:1rem;line-height:1.875rem;cursor:none;pointer-events:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.zy-bar.ios .content[data-v-cd70e807]{bottom:7px;height:30px;font-size:1rem;line-height:30px}.zy-bar.btn-group[data-v-cd70e807]{justify-content:space-around}.zy-bar.btn-group uni-button[data-v-cd70e807]{padding:.625rem 1rem}.zy-bar.btn-group uni-button[data-v-cd70e807]{flex:1;margin:0 .625rem;max-width:50%}.zy-bar .search-form[data-v-cd70e807]{background-color:#f5f5f5;line-height:2rem;height:2rem;font-size:.75rem;color:#333;flex:1;display:flex;align-items:center;margin:0 .9375rem}.zy-bar .search-form+.action[data-v-cd70e807]{margin-right:.9375rem}.zy-bar .search-form uni-input[data-v-cd70e807]{flex:1;padding-right:.9375rem;height:2rem;line-height:2rem;font-size:.8125rem;background-color:transparent}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]{margin:0 .5em 0 .8em}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]:before{top:0}.zy-bar.fixed[data-v-cd70e807],.nav.fixed[data-v-cd70e807]{position:fixed;width:100%;top:0;z-index:1024;box-shadow:0 .03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.foot[data-v-cd70e807]{position:fixed;width:100%;bottom:0;z-index:1024;box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar[data-v-cd70e807]{padding:0;height:calc(3.125rem + env(safe-area-inset-bottom)/2);padding-bottom:calc(env(safe-area-inset-bottom)/2)}.zy-tabbar-height[data-v-cd70e807]{min-height:3.125rem;height:calc(3.125rem + env(safe-area-inset-bottom)/2)}.zy-bar.tabbar.shadow[data-v-cd70e807]{box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar .action[data-v-cd70e807]{font-size:.6875rem;position:relative;flex:1;text-align:center;padding:0;display:block;height:auto;line-height:1;margin:0;background-color:inherit;overflow:initial}.zy-bar.tabbar.shop .action[data-v-cd70e807]{width:4.375rem;flex:initial}.zy-bar.tabbar .action.add-action[data-v-cd70e807]{position:relative;z-index:2;padding-top:1.5625rem}.zy-bar.tabbar .action.add-action [class*=cuIcon-][data-v-cd70e807]{position:absolute;width:2.1875rem;z-index:2;height:2.1875rem;border-radius:50%;line-height:2.1875rem;font-size:1.5625rem;top:-1.09375rem;left:0;right:0;margin:auto;padding:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:after{content:"";position:absolute;width:3.125rem;height:3.125rem;top:-1.5625rem;left:0;right:0;margin:auto;box-shadow:0 -.09375rem .25rem rgba(0,0,0,.08);border-radius:1.5625rem;background-color:inherit;z-index:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:before{content:"";position:absolute;width:3.125rem;height:.9375rem;bottom:.9375rem;left:0;right:0;margin:auto;background-color:inherit;z-index:1}.zy-bar.tabbar .btn-group[data-v-cd70e807]{flex:1;display:flex;justify-content:space-around;align-items:center;padding:0 .3125rem}.zy-bar.tabbar uni-button.action[data-v-cd70e807]:after{border:0}.zy-bar.tabbar .action [class*=cuIcon-][data-v-cd70e807]{width:3.125rem;position:relative;display:block;height:auto;margin:0 auto .3125rem;text-align:center;font-size:1.25rem}.zy-bar.tabbar .action .cuIcon-zy-image[data-v-cd70e807]{margin:0 auto}.zy-bar.tabbar .action .cuIcon-zy-image uni-image[data-v-cd70e807]{width:1.5625rem;height:1.5625rem;display:inline-block}.zy-bar.tabbar .submit[data-v-cd70e807]{align-items:center;display:flex;justify-content:center;text-align:center;position:relative;flex:2;align-self:stretch}.zy-bar.tabbar .submit[data-v-cd70e807]:last-child{flex:2.6}.zy-bar.tabbar .submit+.submit[data-v-cd70e807]{flex:2}.zy-bar.tabbar.border .action[data-v-cd70e807]:before{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;transform:scale(.5);transform-origin:0 0;border-right:.03125rem solid rgba(0,0,0,.1);z-index:3}.zy-bar.tabbar.border .action[data-v-cd70e807]:last-child:before{display:none}.zy-bar.input[data-v-cd70e807]{padding-right:.625rem;background-color:#fff}.zy-bar.input uni-input[data-v-cd70e807]{overflow:initial;line-height:2rem;height:2rem;min-height:2rem;flex:1;font-size:.9375rem;margin:0 .625rem}.zy-bar.input .action[data-v-cd70e807]{margin-left:.625rem}.zy-bar.input .action [class*=cuIcon-][data-v-cd70e807]{font-size:1.5rem}.zy-bar.input uni-input+.action[data-v-cd70e807]{margin-right:.625rem;margin-left:0}.zy-bar.input .action:first-child [class*=cuIcon-][data-v-cd70e807]{margin-left:0}.zy-custom[data-v-cd70e807]{display:block;position:relative}.zy-custom .zy-bar .content[data-v-cd70e807]{width:calc(100% - 13.75rem)}.zy-custom .zy-bar .content uni-image[data-v-cd70e807]{height:1.875rem;width:7.5rem}.zy-custom .zy-bar[data-v-cd70e807]{min-height:0px;box-shadow:0 0;z-index:9999}.zy-custom .zy-bar .border-custom[data-v-cd70e807]{position:relative;background:rgba(0,0,0,.15);border-radius:31.25rem;height:30px}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:after{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;border-radius:inherit;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:.03125rem solid #ffffff;opacity:.5}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:before{content:" ";width:.03125rem;height:110%;position:absolute;top:22.5%;left:0;right:0;margin:auto;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;opacity:.6;background-color:#fff}.zy-custom .zy-bar .border-custom uni-text[data-v-cd70e807]{display:block;flex:1;margin:auto!important;text-align:center;font-size:1.0625rem}.flex[data-v-cd70e807]{display:flex}.basis-xs[data-v-cd70e807]{flex-basis:20%}.basis-sm[data-v-cd70e807]{flex-basis:40%}.basis-df[data-v-cd70e807]{flex-basis:50%}.basis-lg[data-v-cd70e807]{flex-basis:60%}.basis-xl[data-v-cd70e807]{flex-basis:80%}.flex-sub[data-v-cd70e807]{flex:1}.flex-twice[data-v-cd70e807]{flex:2}.flex-treble[data-v-cd70e807]{flex:3}.flex-direction[data-v-cd70e807]{flex-direction:column}.flex-wrap[data-v-cd70e807]{flex-wrap:wrap}.align-start[data-v-cd70e807]{align-items:flex-start}.align-end[data-v-cd70e807]{align-items:flex-end}.align-center[data-v-cd70e807]{align-items:center}.self-start[data-v-cd70e807]{align-self:flex-start}.self-center[data-v-cd70e807]{align-self:flex-center}.self-end[data-v-cd70e807]{align-self:flex-end}.self-stretch[data-v-cd70e807]{align-self:stretch}.align-stretch[data-v-cd70e807]{align-items:stretch}.justify-start[data-v-cd70e807]{justify-content:flex-start}.justify-end[data-v-cd70e807]{justify-content:flex-end}.justify-center[data-v-cd70e807]{justify-content:center}.justify-between[data-v-cd70e807]{justify-content:space-between}.justify-around[data-v-cd70e807]{justify-content:space-around}.line-red[data-v-cd70e807]:after,.lines-red[data-v-cd70e807]:after{border-color:#e54d42}.line-orange[data-v-cd70e807]:after,.lines-orange[data-v-cd70e807]:after{border-color:#f37b1d}.line-yellow[data-v-cd70e807]:after,.lines-yellow[data-v-cd70e807]:after{border-color:#fbbd08}.line-olive[data-v-cd70e807]:after,.lines-olive[data-v-cd70e807]:after{border-color:#8dc63f}.line-green[data-v-cd70e807]:after,.lines-green[data-v-cd70e807]:after{border-color:#39b54a}.line-cyan[data-v-cd70e807]:after,.lines-cyan[data-v-cd70e807]:after{border-color:#1cbbb4}.line-blue[data-v-cd70e807]:after,.lines-blue[data-v-cd70e807]:after{border-color:#0081ff}.line-purple[data-v-cd70e807]:after,.lines-purple[data-v-cd70e807]:after{border-color:#6739b6}.line-mauve[data-v-cd70e807]:after,.lines-mauve[data-v-cd70e807]:after{border-color:#9c26b0}.line-pink[data-v-cd70e807]:after,.lines-pink[data-v-cd70e807]:after{border-color:#e03997}.line-brown[data-v-cd70e807]:after,.lines-brown[data-v-cd70e807]:after{border-color:#a5673f}.line-grey[data-v-cd70e807]:after,.lines-grey[data-v-cd70e807]:after{border-color:#8799a3}.line-gray[data-v-cd70e807]:after,.lines-gray[data-v-cd70e807]:after{border-color:#aaa}.line-black[data-v-cd70e807]:after,.lines-black[data-v-cd70e807]:after{border-color:#333}.line-white[data-v-cd70e807]:after,.lines-white[data-v-cd70e807]:after{border-color:#fff}.bg-red[data-v-cd70e807]{background-color:#e54d42;color:#fff}.bg-orange[data-v-cd70e807]{background-color:#f37b1d;color:#fff}.bg-yellow[data-v-cd70e807]{background-color:#fbbd08;color:#333}.bg-olive[data-v-cd70e807]{background-color:#8dc63f;color:#fff}.bg-green[data-v-cd70e807]{background-color:#39b54a;color:#fff}.bg-cyan[data-v-cd70e807]{background-color:#1cbbb4;color:#fff}.bg-blue[data-v-cd70e807]{background-color:#0081ff;color:#fff}.bg-purple[data-v-cd70e807]{background-color:#6739b6;color:#fff}.bg-mauve[data-v-cd70e807]{background-color:#9c26b0;color:#fff}.bg-pink[data-v-cd70e807]{background-color:#e03997;color:#fff}.bg-brown[data-v-cd70e807]{background-color:#a5673f;color:#fff}.bg-grey[data-v-cd70e807]{background-color:#8799a3;color:#fff}.bg-gray[data-v-cd70e807]{background-color:#f0f0f0;color:#333}.bg-black[data-v-cd70e807]{background-color:#333;color:#fff}.bg-white[data-v-cd70e807]{background-color:#fff;color:#666}.bg-shadeTop[data-v-cd70e807]{background-image:linear-gradient(#000,rgba(0,0,0,.01));color:#fff}.bg-shadeBottom[data-v-cd70e807]{background-image:linear-gradient(rgba(0,0,0,.01),#000);color:#fff}.bg-red.light[data-v-cd70e807]{color:#e54d42;background-color:#fadbd9}.bg-orange.light[data-v-cd70e807]{color:#f37b1d;background-color:#fde6d2}.bg-yellow.light[data-v-cd70e807]{color:#fbbd08;background-color:rgba(254,242,206,.824)}.bg-olive.light[data-v-cd70e807]{color:#8dc63f;background-color:#e8f4d9}.bg-green.light[data-v-cd70e807]{color:#39b54a;background-color:#d7f0db}.bg-cyan.light[data-v-cd70e807]{color:#1cbbb4;background-color:#d2f1f0}.bg-blue.light[data-v-cd70e807]{color:#0081ff;background-color:#cce6ff}.bg-purple.light[data-v-cd70e807]{color:#6739b6;background-color:#e1d7f0}.bg-mauve.light[data-v-cd70e807]{color:#9c26b0;background-color:#ebd4ef}.bg-pink.light[data-v-cd70e807]{color:#e03997;background-color:#f9d7ea}.bg-brown.light[data-v-cd70e807]{color:#a5673f;background-color:#ede1d9}.bg-grey.light[data-v-cd70e807]{color:#8799a3;background-color:#e7ebed}.bg-gradual-red[data-v-cd70e807]{background-image:linear-gradient(45deg,#f43f3b,#ec008c);color:#fff}.bg-gradual-orange[data-v-cd70e807]{background-image:linear-gradient(45deg,#ff9700,#ed1c24);color:#fff}.bg-gradual-green[data-v-cd70e807]{background-image:linear-gradient(45deg,#39b54a,#8dc63f);color:#fff}.bg-gradual-purple[data-v-cd70e807]{background-image:linear-gradient(45deg,#9000ff,#5e00ff);color:#fff}.bg-gradual-pink[data-v-cd70e807]{background-image:linear-gradient(45deg,#ec008c,#6739b6);color:#fff}.bg-gradual-blue[data-v-cd70e807]{background-image:linear-gradient(45deg,#0081ff,#1cbbb4);color:#fff}.shadow[class*=-red][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.shadow[class*=-orange][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.shadow[class*=-yellow][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.shadow[class*=-olive][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.shadow[class*=-green][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.shadow[class*=-cyan][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.shadow[class*=-blue][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.shadow[class*=-purple][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.shadow[class*=-mauve][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.shadow[class*=-pink][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.shadow[class*=-brown][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.shadow[class*=-grey][data-v-cd70e807],.shadow[class*=-gray][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.shadow[class*=-black][data-v-cd70e807],.shadow[class*=-white][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.text-shadow[class*=-red][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.text-shadow[class*=-orange][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.text-shadow[class*=-yellow][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.text-shadow[class*=-olive][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.text-shadow[class*=-green][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.text-shadow[class*=-cyan][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.text-shadow[class*=-blue][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.text-shadow[class*=-purple][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.text-shadow[class*=-mauve][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.text-shadow[class*=-pink][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.text-shadow[class*=-brown][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.text-shadow[class*=-grey][data-v-cd70e807],.text-shadow[class*=-gray][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.text-shadow[class*=-black][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.bg-img[data-v-cd70e807]{background-size:cover;background-position:center;background-repeat:no-repeat}.bg-mask[data-v-cd70e807]{background-color:#333;position:relative}.bg-mask[data-v-cd70e807]:after{content:"";border-radius:inherit;width:100%;height:100%;display:block;background-color:rgba(0,0,0,.4);position:absolute;left:0;right:0;bottom:0;top:0}.bg-mask uni-view[data-v-cd70e807],.bg-mask uni-cover-view[data-v-cd70e807]{z-index:5;position:relative}.bg-video[data-v-cd70e807]{position:relative}.bg-video uni-video[data-v-cd70e807]{display:block;height:100%;width:100%;object-fit:cover;position:absolute;top:0;z-index:0;pointer-events:none}.text-xs[data-v-cd70e807]{font-size:.625rem}.text-sm[data-v-cd70e807]{font-size:.75rem}.text-df[data-v-cd70e807]{font-size:.875rem}.text-lg[data-v-cd70e807]{font-size:1rem}.text-xl[data-v-cd70e807]{font-size:1.125rem}.text-xxl[data-v-cd70e807]{font-size:1.375rem}.text-sl[data-v-cd70e807]{font-size:2.5rem}.text-xsl[data-v-cd70e807]{font-size:3.75rem}.text-Abc[data-v-cd70e807]{text-transform:Capitalize}.text-ABC[data-v-cd70e807]{text-transform:Uppercase}.text-abc[data-v-cd70e807]{text-transform:Lowercase}.text-price[data-v-cd70e807]:before{content:"\a5";font-size:80%;margin-right:.125rem}.text-cut[data-v-cd70e807]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.text-bold[data-v-cd70e807]{font-weight:700}.text-center[data-v-cd70e807]{text-align:center}.text-content[data-v-cd70e807]{line-height:1.6}.text-left[data-v-cd70e807]{text-align:left}.text-right[data-v-cd70e807]{text-align:right}.text-red[data-v-cd70e807],.line-red[data-v-cd70e807],.lines-red[data-v-cd70e807]{color:#e54d42}.text-orange[data-v-cd70e807],.line-orange[data-v-cd70e807],.lines-orange[data-v-cd70e807]{color:#f37b1d}.text-yellow[data-v-cd70e807],.line-yellow[data-v-cd70e807],.lines-yellow[data-v-cd70e807]{color:#fbbd08}.text-olive[data-v-cd70e807],.line-olive[data-v-cd70e807],.lines-olive[data-v-cd70e807]{color:#8dc63f}.text-green[data-v-cd70e807],.line-green[data-v-cd70e807],.lines-green[data-v-cd70e807]{color:#39b54a}.text-cyan[data-v-cd70e807],.line-cyan[data-v-cd70e807],.lines-cyan[data-v-cd70e807]{color:#1cbbb4}.text-blue[data-v-cd70e807],.line-blue[data-v-cd70e807],.lines-blue[data-v-cd70e807]{color:#0081ff}.text-purple[data-v-cd70e807],.line-purple[data-v-cd70e807],.lines-purple[data-v-cd70e807]{color:#6739b6}.text-mauve[data-v-cd70e807],.line-mauve[data-v-cd70e807],.lines-mauve[data-v-cd70e807]{color:#9c26b0}.text-pink[data-v-cd70e807],.line-pink[data-v-cd70e807],.lines-pink[data-v-cd70e807]{color:#e03997}.text-brown[data-v-cd70e807],.line-brown[data-v-cd70e807],.lines-brown[data-v-cd70e807]{color:#a5673f}.text-grey[data-v-cd70e807],.line-grey[data-v-cd70e807],.lines-grey[data-v-cd70e807]{color:#8799a3}.text-gray[data-v-cd70e807],.line-gray[data-v-cd70e807],.lines-gray[data-v-cd70e807]{color:#aaa}.text-black[data-v-cd70e807],.line-black[data-v-cd70e807],.lines-black[data-v-cd70e807]{color:#333}.text-white[data-v-cd70e807],.line-white[data-v-cd70e807],.lines-white[data-v-cd70e807]{color:#fff}.zy-upgrade-topbg-green[data-v-cd70e807]{background-image:url(../../assets/green.20d5f80a.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-red[data-v-cd70e807]{background-image:url(../../assets/red.8267d3cf.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-pink[data-v-cd70e807]{background-image:url(../../assets/pink.78f243a3.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-yellow[data-v-cd70e807]{background-image:url(../../assets/yellow.4438648c.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-blue[data-v-cd70e807]{background-size:100% 100%;background-repeat:no-repeat}.zy-upgrade-title[data-v-cd70e807]{font-size:1.09375rem;font-weight:600}.all[data-v-8b11c490]{margin-top:1.40625rem}.all .all-content[data-v-8b11c490]{width:100%;height:40.625rem}.all[data-v-842c1160]{margin-top:1.40625rem}.all .all-content[data-v-842c1160]{width:100%;height:40.625rem}.index-content-other[data-v-db2cf42d]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-right[data-v-db2cf42d]{width:100%;border-radius:1.5625rem;display:flex;justify-content:flex-end;height:3.75rem;align-items:center}.item[data-v-db2cf42d]{display:flex;align-items:center;justify-content:space-between;width:100%;height:4.0625rem}.item .left-item[data-v-db2cf42d]{display:flex;align-items:center;margin-left:.625rem}.item .left-item .left-icon[data-v-db2cf42d]{margin:0 .625rem;width:1.25rem;height:1.25rem}.item .right-item[data-v-db2cf42d]{display:flex;align-items:center;margin-right:1.5625rem}.item .right-item .right-icon[data-v-db2cf42d]{width:.46875rem;height:.9375rem}.array-father[data-v-db2cf42d]{background-color:rgba(255,255,255,.6);width:98.2%;border-radius:.9375rem}.bottom-button[data-v-db2cf42d]{margin-top:.9375rem;background-color:rgba(255,255,255,.6);width:98.2%;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:.9375rem;height:3.125rem;color:#0174d3}.popup-any[data-v-db2cf42d]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:999;opacity:0;transition:opacity .5s ease;background-color:rgba(0,0,0,.3)}.mask[data-v-db2cf42d]{position:absolute;top:0;right:0;bottom:0;left:0}.box-any[data-v-db2cf42d]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:31.25rem;height:46.875rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;padding:2.03125rem 1.25rem}.title-left[data-v-db2cf42d]{display:flex;align-items:center}.title-left .back-img[data-v-db2cf42d]{width:1.875rem;height:1.875rem;margin-right:.9375rem}.title-left .back-font[data-v-db2cf42d]{font-size:1.09375rem;font-weight:600}.index-content-other[data-v-08e03fe2]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-down[data-v-08e03fe2]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.index-content-right[data-v-08e03fe2]{height:calc(100% - .9375rem);width:calc(100% - 1.875rem);background-color:rgba(255,255,255,.8);background-image:url(../../static/index/leida/bgc.png);background-position:30% 70%;border-radius:1.5625rem;display:flex;position:relative}.leida[data-v-08e03fe2]{margin-top:.9375rem;height:100%;width:35%;display:flex;justify-content:center;align-items:center;flex-direction:column;position:relative}.kutong-father[data-v-08e03fe2]{width:9.375rem;height:14.0625rem;position:relative}.kutong-img[data-v-08e03fe2]{position:absolute;top:0;left:0;width:9.375rem;height:9.375rem}.kutong-shan[data-v-08e03fe2]{position:absolute;top:0;left:0;width:4.6875rem;height:6.4375rem;transform-origin:100% 73%}.spin-anim[data-v-08e03fe2]{animation:spin-08e03fe2 2s linear infinite;animation-play-state:running}.no-anim[data-v-08e03fe2]{animation:spin-08e03fe2 2s linear infinite;animation-play-state:paused}.spin-anim-spec[data-v-08e03fe2]{animation:spinx-08e03fe2 2s linear infinite;animation-play-state:running}.no-anim-spec[data-v-08e03fe2]{animation:spinx-08e03fe2 2s linear infinite;animation-play-state:paused}.huan[data-v-08e03fe2]{position:absolute;top:-2.03125rem;left:-2.03125rem;width:13.4375rem;height:13.4375rem;border:.625rem solid #cedcf5;border-radius:50%}.quarter-ring[data-v-08e03fe2]{position:absolute;top:-5%;left:-5%;width:110%;height:110%;box-sizing:border-box;border:.625rem solid transparent;border-top-color:#03a9ff;border-radius:50%;transform:rotate(0);transform-origin:center center}.jindutiao[data-v-08e03fe2]{width:12.5rem;border-radius:.625rem;height:.625rem;background-color:#a6c9fa;overflow:hidden}.progress-fill[data-v-08e03fe2]{width:100%;height:100%;background:linear-gradient(to bottom,#00c9ff,#0076ff);transform-origin:left center;will-change:transform;transition:transform .05s linear}.color-font[data-v-08e03fe2]{color:#415273;margin-top:.625rem;height:.625rem}.agagin-button[data-v-08e03fe2]{width:7.5rem;height:2.8125rem;margin-top:2.5rem;border-radius:1.09375rem;background:linear-gradient(to bottom,#00c9ff,#0076ff);display:flex;justify-content:center;align-items:center;color:#fff}.other[data-v-08e03fe2]{width:50%;height:100%}.other-father[data-v-08e03fe2]{margin-top:4.6875rem;height:calc(100% - 4.6875rem);width:100%}.card-father[data-v-08e03fe2]{width:100%;display:flex;flex-wrap:wrap}.card[data-v-08e03fe2]{width:45%;margin-left:3%;height:16.5625rem;box-shadow:.0625rem .125rem .25rem .0625rem rgba(0,0,0,.3);background-color:#fff;border-radius:.9375rem;margin-bottom:1.09375rem;padding:0 .78125rem;position:relative}.card .rename-father[data-v-08e03fe2]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:17.1875rem;height:10.9375rem;border-radius:.9375rem;box-shadow:.0625rem .125rem .25rem .0625rem rgba(0,0,0,.3);background-color:#fff;display:flex;flex-direction:column;align-items:center;padding:0 .9375rem}.card .rename-father .rename-title[data-v-08e03fe2]{width:100%;height:2.5rem;border-bottom:.0625rem solid #f5f5f5;display:flex;justify-content:center;align-items:center}.card .rename-father .rename-gray[data-v-08e03fe2]{width:100%;height:2.5rem;display:flex;color:#a7a7a7;align-items:center}.card .rename-father .rename-input[data-v-08e03fe2]{width:100%;height:2.5rem;display:flex;background-color:#f5f6fa;border-radius:.625rem;color:#a7a7a7;align-items:center;padding:0 .625rem;position:relative}.card .rename-father .rename-input .uni-input[data-v-08e03fe2]{font-size:.78125rem}.card .rename-father .rename-input .left-img[data-v-08e03fe2]{width:1.5625rem;height:1.5625rem;margin-right:.46875rem}.card .rename-father .rename-input .right-img[data-v-08e03fe2]{position:absolute;right:.9375rem;top:50%;transform:translateY(-50%);width:.9375rem;height:.9375rem}.card-title[data-v-08e03fe2]{width:100%;height:4.0625rem;display:flex;align-items:center;justify-content:space-between}.card-middle[data-v-08e03fe2]{width:100%;height:10rem;display:flex;justify-content:space-between}.video-box[data-v-08e03fe2]{width:82%;height:10rem;background-color:#e5ecfa;display:flex;justify-content:center;align-items:center;border-radius:.625rem}.video-box-img[data-v-08e03fe2]{width:2.5rem;height:2.5rem}@keyframes spin-08e03fe2{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes spinx-08e03fe2{0%{transform:rotate(-70deg)}to{transform:rotate(290deg)}}@keyframes fadeIn-08e03fe2{0%{opacity:0;transform:translateY(.3125rem)}to{opacity:1;transform:translateY(0)}}.fade-in[data-v-08e03fe2]{animation:fadeIn-08e03fe2 .4s ease-out forwards}.index-content-title[data-v-08e03fe2]{position:absolute;top:1.875rem;left:1.875rem;display:flex;align-items:center}.index-content-title .shu[data-v-08e03fe2]{width:.625rem;height:1.5625rem;background:linear-gradient(to right,#0052c2,#00b4ff);border-radius:.625rem;margin-right:.9375rem}.index-content-title .shu-font[data-v-08e03fe2]{color:#415273;font-size:1.09375rem}.right-box[data-v-08e03fe2]{background:#00abff;width:5rem;height:2.03125rem;border-radius:.625rem;display:flex;justify-content:center;align-items:center;color:#fff}.small-menu[data-v-08e03fe2]{width:2.34375rem;height:2.28125rem;border-radius:.625rem;background-color:#e7ecfa;display:flex;justify-content:center;align-items:center;margin-bottom:.3125rem}.small-menu .small-img[data-v-08e03fe2]{height:1.5625rem;width:1.5625rem}.card-bottom[data-v-08e03fe2]{margin-top:.53125rem;margin-left:.3125rem;display:flex}.card-bottom .bottom-img[data-v-08e03fe2]{width:1.1875rem;height:1.1875rem;margin-left:.9375rem}.blue-button[data-v-08e03fe2]{margin-top:.625rem;width:5.625rem;height:2.1875rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;background:linear-gradient(to bottom,#00c9ff,#0076ff)}.index-content-other[data-v-3c477a5f]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-down[data-v-3c477a5f]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.index-content-right[data-v-3c477a5f]{height:calc(100% - .9375rem);width:calc(100% - 1.875rem);background-color:rgba(255,255,255,.8);background-image:url(../../static/index/leida/bgc.png);background-position:30% 70%;border-radius:1.5625rem;display:flex;position:relative}.index-content-right .index-content-title[data-v-3c477a5f]{position:absolute;top:1.875rem;left:1.875rem;display:flex;align-items:center}.index-content-right .index-content-title .shu[data-v-3c477a5f]{width:.625rem;height:1.5625rem;background:linear-gradient(to right,#0052c2,#00b4ff);border-radius:.625rem;margin-right:.9375rem}.index-content-right .index-content-title .shu-font[data-v-3c477a5f]{color:#415273;font-size:1.09375rem}.saomiao[data-v-3c477a5f]{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);width:12.5rem;height:12.5rem;background-image:url(../../static/index/leida/fourjiao.png);background-repeat:no-repeat;background-attachment:fixed;background-size:cover}.saomiao[data-v-3c477a5f]:before{content:"";position:absolute;top:0;left:0;width:100%;animation:scanMove-3c477a5f 1.3s ease-in-out infinite;z-index:1001;height:2.5rem;background:linear-gradient(to bottom,rgba(5,170,254,.6),rgba(5,170,254,.1),transparent);will-change:transform}.saomiao .saomiao-son[data-v-3c477a5f]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:11.25rem;height:11.25rem;border-radius:1.5625rem;background-color:#dae4f8}.saomiao .saomiao-son .saomiao-son-son[data-v-3c477a5f]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:10rem;height:10rem;border-radius:1.5625rem;background-color:#d0e0f6}.saomiao .saomiao-son .saomiao-son-son .saomiao-son-son-img[data-v-3c477a5f]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:7.8125rem;height:7.8125rem;border-radius:.9375rem;background-image:url(../../static/index/leida/QR.png);background-repeat:no-repeat;background-attachment:fixed;background-size:cover}@keyframes scanMove-3c477a5f{0%{top:10%}to{top:80%}}.index-content-other[data-v-5fc7e05c]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-down[data-v-5fc7e05c]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.index-content-right[data-v-5fc7e05c]{height:calc(100% - .9375rem);width:calc(100% - 1.875rem);background-color:rgba(255,255,255,.8);background-image:url(../../static/index/leida/bgc.png);background-position:30% 70%;border-radius:1.5625rem;display:flex;position:relative}.index-content-right .index-content-title[data-v-5fc7e05c]{position:absolute;top:1.875rem;left:1.875rem;display:flex;align-items:center}.index-content-right .index-content-title .shu[data-v-5fc7e05c]{width:.625rem;height:1.5625rem;background:linear-gradient(to right,#0052c2,#00b4ff);border-radius:.625rem;margin-right:.9375rem}.index-content-right .index-content-title .shu-font[data-v-5fc7e05c]{color:#415273;font-size:1.09375rem}.saomiao[data-v-5fc7e05c]{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);display:flex}.saomiao .saoma-input[data-v-5fc7e05c]{background-color:#fff;width:17.1875rem;height:2.8125rem;border-radius:.9375rem;padding-left:3.125rem;z-index:1}.saomiao .left-img[data-v-5fc7e05c]{width:1.5625rem;height:1.5625rem;position:absolute;top:50%;left:.9375rem;transform:translateY(-50%);z-index:2}.saomiao .right-img[data-v-5fc7e05c]{width:1.5625rem;height:1.5625rem;position:absolute;top:50%;right:6.875rem;transform:translateY(-50%);z-index:2}.blue-button[data-v-5fc7e05c]{margin-left:.9375rem;width:5.3125rem;height:2.8125rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:.9375rem;background:linear-gradient(to bottom,#00c9ff,#0076ff)}.big-ball[data-v-5fc7e05c]{width:6.25rem;height:6.25rem;position:absolute;top:50%;left:-1.71875rem;transform:translateY(-50%);border-radius:50%;background-color:#dbe4f6}.big-ball .ball[data-v-5fc7e05c]{width:4.6875rem;height:4.6875rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border-radius:50%;background-color:#cfddf1}.backgroundContainer[data-v-aebf66be]{display:flex;flex-direction:column;position:relative;width:100%;height:100vh;background-image:url(../../static/index/lightbgcnew.png);background-size:cover;background-position:center center;overflow:hidden}.darkbackgroundContainer[data-v-aebf66be]{display:flex;flex-direction:column;position:relative;width:100%;height:100vh;background-image:url(../../static/index/background.png);background-size:cover;background-position:center center;overflow:hidden}.index-title[data-v-aebf66be]{display:flex;width:calc(100% - 3.4375rem);height:4.0625rem;justify-content:space-between;margin:.625rem 1.5625rem 0 1.875rem}.index-title .index-title-left[data-v-aebf66be]{display:flex;height:100%;align-items:center;margin-top:.625rem}.index-title .index-title-left .index-title-left-wel[data-v-aebf66be]{margin-left:1.25rem}.index-title .index-title-left .index-title-left-weight[data-v-aebf66be]{font-weight:700;margin:0 .3125rem}.index-title .index-title-right[data-v-aebf66be]{display:flex;height:100%;align-items:center;margin-top:.625rem;margin-right:.3125rem}.index-title .index-title-right .top-card[data-v-aebf66be]{width:5.625rem;height:1.71875rem;border-radius:.9375rem;background-color:#e2e7ff;display:flex;align-items:center;margin-right:.625rem}.index-title .index-title-right .top-card .top-card-img[data-v-aebf66be]{width:1.09375rem;height:1.09375rem;margin-right:.15625rem;margin-left:.625rem}.index-title .index-title-right .top-card .top-card-font[data-v-aebf66be]{font-size:.78125rem}.index-content[data-v-aebf66be]{width:100%;height:calc(100vh - 4.6875rem);display:flex;margin-top:1.71875rem}.index-content .index-content-leftMenus[data-v-aebf66be]{height:100%;width:5.3125rem;display:flex;align-items:center;flex-direction:column;margin-top:.625rem;position:relative}.index-content .index-content-leftMenus .left-img[data-v-aebf66be]{width:2.8125rem;height:2.8125rem;z-index:100}.index-content .index-content-leftMenus .left-img-font[data-v-aebf66be]{margin-top:.3125rem;color:#fff;font-size:.78125rem}.index-content .index-content-leftMenus .left-img-font-target[data-v-aebf66be]{margin-top:.3125rem;color:#0174d3;font-size:.78125rem}.index-content .index-content-leftMenus .blue-circle-pos[data-v-aebf66be]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;height:25rem}.index-content .index-content-leftMenus .blue-circle-pos .blue-circle[data-v-aebf66be]{position:absolute;top:-1.5625rem;left:-2.125rem}.index-content .index-content-leftMenus .blue-circle-pos .blue-circle .blue-circle-size[data-v-aebf66be]{width:5.3125rem;height:7.8125rem}.red-pao[data-v-aebf66be]{position:absolute;top:1.25rem;left:1.875rem;padding:.09375rem .3125rem;background-color:#ff4c4e;color:#fff;font-size:.625rem;border-radius:.625rem;z-index:101}.ball-bgc[data-v-aebf66be]{width:1.8125rem;height:1.8125rem;border-radius:50%;background-color:#e2e7ff;display:flex;align-items:center;justify-content:center;margin-right:.78125rem}.ball-bgc .ball-img[data-v-aebf66be]{width:1.1875rem;height:1.1875rem}.index-title-title[data-v-aebf66be]{height:6.25rem}.index-title-left-img[data-v-aebf66be]{width:2.34375rem;height:2.34375rem}
+.index-content-other[data-v-01c2b33c]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-down[data-v-01c2b33c]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.index-content-right[data-v-01c2b33c]{height:calc(100% - .9375rem);width:100%;display:flex;flex-direction:column;position:relative}.big-ball[data-v-01c2b33c]{width:6.25rem;height:6.25rem;position:absolute;top:50%;left:-1.71875rem;transform:translateY(-50%);border-radius:50%;background-color:#dbe4f6}.big-ball .ball[data-v-01c2b33c]{width:4.6875rem;height:4.6875rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border-radius:50%;background-color:#cfddf1}.tab[data-v-01c2b33c]{width:6.25rem;height:3.75rem;font-size:1rem;display:flex;justify-content:center;align-items:center;position:relative}.tab .tab-heng[data-v-01c2b33c]{position:absolute;left:50%;bottom:1.09375rem;transform:translate(-50%);width:1.5625rem;height:.375rem;border-radius:.3125rem;background-color:#00b4ff}.scroll-box[data-v-01c2b33c]{display:flex;flex-wrap:wrap}.scroll-box .card[data-v-01c2b33c]{margin-right:.9375rem;margin-bottom:.9375rem;border:.0625rem solid #fff;background-image:url(../../static/index/mountain.png);background-color:rgba(255,255,255,.6);background-position:60% 50%;width:32.65625rem;height:20.3125rem;border-radius:1.5625rem 1.25rem 1.5625rem 1.5625rem;display:flex}.scroll-box .card .card-left[data-v-01c2b33c]{height:100%;width:68%;position:relative}.scroll-box .card .card-left .card-left-title[data-v-01c2b33c]{height:23%;width:100%;padding:0 .625rem;display:flex;justify-content:space-between;align-items:center}.scroll-box .card .card-left .card-left-title .left-view[data-v-01c2b33c]{display:flex;margin-top:.625rem;position:relative;width:100%}.scroll-box .card .card-left .card-left-title .left-view .left-view-img[data-v-01c2b33c]{width:2.65625rem;height:2.65625rem}.scroll-box .card .card-right[data-v-01c2b33c]{height:100%;width:32%;background-color:rgba(244,235,249,.3);border-top-right-radius:1.1875rem;border-bottom-right-radius:1.1875rem;position:relative}.top-font-line[data-v-01c2b33c]{display:flex;align-items:center;font-size:.71875rem}.top-font-line .line-weight[data-v-01c2b33c]{font-size:1.09375rem;font-weight:600;margin-left:.625rem}.top-font-line .line-margin[data-v-01c2b33c]{margin-left:.625rem;margin-right:.625rem}.top-font-line .font-gray[data-v-01c2b33c]{margin-left:.625rem;font-size:.875rem;color:#555}.blue-button[data-v-01c2b33c]{position:absolute;right:.625rem;top:-.09375rem;width:4.0625rem;height:1.5625rem;color:#fff;font-size:.78125rem;background:linear-gradient(to bottom,#00c9ff,#0076ff);border-radius:.46875rem;display:flex;justify-content:center;align-items:center;margin:.625rem .3125rem 0 0}.font-gray-right[data-v-01c2b33c]{margin-top:.3125rem;font-size:.78125rem;color:#858585;margin-right:.25rem}.right-spec[data-v-01c2b33c]{margin-top:2.125rem;font-weight:600;margin-right:.3125rem;width:4.6875rem}.video-img[data-v-01c2b33c]{margin-left:3.4375rem;width:17.8125rem;height:12.5rem;border-radius:.9375rem}.video-bottom[data-v-01c2b33c]{width:100%;overflow:hidden;height:2.65625rem;display:flex;align-items:center;padding-left:3.4375rem;color:#858585;font-size:.75rem;position:relative}.video-bottom .font-bottom-weight[data-v-01c2b33c]{font-size:.875rem;font-weight:600;color:#000}.video-bottom .bottom-shu[data-v-01c2b33c]{margin:0 .46875rem}.bottom-balls[data-v-01c2b33c]{position:absolute;bottom:3.75rem;left:38%;transform:translate(-35%);z-index:999;display:flex}.bottom-balls .one-ball-father[data-v-01c2b33c]{width:3.75rem;height:1.5625rem;display:flex;justify-content:center;align-items:center;border:.0625rem solid #fff;margin:0 .15625rem;color:#fff;font-size:.78125rem;border-radius:.3125rem}.right-balls[data-v-01c2b33c]{position:absolute;left:.78125rem;top:4.375rem;padding-top:.3125rem;z-index:999}.right-balls .blue-ball[data-v-01c2b33c]{width:1.09375rem;height:1.09375rem}.right-balls .blue-ball-father[data-v-01c2b33c]{width:2.1875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;background-color:#dbe8f9;border-radius:.78125rem;margin-right:.625rem;margin-bottom:.5625rem;position:relative;overflow:hidden}.right-balls .blue-ball-father-target[data-v-01c2b33c]{width:2.1875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;background-color:#dbe8f9;border-radius:.78125rem;margin-right:.625rem;margin-bottom:.5625rem;position:relative;overflow:auto}.right-title[data-v-01c2b33c]{position:absolute;right:-1.5625rem;top:.3125rem;width:7.8125rem;height:3.75rem;z-index:1}.right-other[data-v-01c2b33c]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);display:flex;align-items:center;justify-content:center;border-top-left-radius:.9375rem;border-bottom-left-radius:.9375rem;width:4.6875rem;height:1.875rem}.right-other .other-class[data-v-01c2b33c]{width:1.09375rem;height:1.09375rem;margin-right:.15625rem;margin-left:.15625rem}.right-other .other-font[data-v-01c2b33c]{color:#fff}.time[data-v-01c2b33c]{display:flex;margin-top:3.75rem;align-items:center;justify-content:center}.time .time-left[data-v-01c2b33c]{background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent;font-size:1.40625rem;font-weight:600}.time-img[data-v-01c2b33c]{width:7.5rem;height:5.625rem;margin-bottom:.46875rem}.time-weight[data-v-01c2b33c]{font-weight:600;font-size:1rem;margin-top:.78125rem}.time-small[data-v-01c2b33c]{padding:.3125rem .9375rem;font-size:.625rem;color:#666}.time-people-two[data-v-01c2b33c]{display:flex;margin-left:.625rem;align-items:center;margin-bottom:.15625rem}.time-people-two .time-people-img[data-v-01c2b33c]{width:1.25rem;height:1.25rem;margin-right:.3125rem;margin-left:.15625rem}.time-people-two .time-people-font[data-v-01c2b33c]{font-size:.84375rem}.right-time[data-v-01c2b33c]{position:absolute;top:40%;right:0;transform:translateY(-40%)}.right-time .right-laba[data-v-01c2b33c]{width:1.875rem;height:1.875rem;margin-right:.15625rem;border-top-left-radius:.9375rem;border-bottom-left-radius:.9375rem;background-color:#fff;display:flex;justify-content:center;align-items:center;margin-bottom:.3125rem}.fail-img[data-v-01c2b33c]{width:7.8125rem;height:7.8125rem}.fail-img-spec[data-v-01c2b33c]{width:12.5rem;height:10.9375rem;margin-left:-2.1875rem}.fail-text[data-v-01c2b33c]{margin-top:.46875rem;color:#333}.fail-text-spec[data-v-01c2b33c]{margin-top:-3.125rem;color:#333}.kufang-img[data-v-01c2b33c]{width:1.34375rem;height:1.34375rem}.tab-heng[data-v-01c2b33c]{position:absolute;left:50%;bottom:-.46875rem;transform:translate(-50%);width:1.25rem;height:.3125rem;border-radius:.3125rem}.right-title-father[data-v-01c2b33c]{position:absolute;right:.625rem;height:100%;top:0;display:flex;align-items:center}.split-line-white-sec[data-v-01c2b33c]{position:absolute;left:0;top:50%;transform:translateY(-50%);width:.0625rem;height:18.75rem;z-index:999;background:linear-gradient(to top,rgba(0,0,0,0),#fff,rgba(0,0,0,0))}.topright-ball[data-v-01c2b33c]{position:absolute;top:5.3125rem;right:1.5625rem;width:2.34375rem;height:2.34375rem;border-radius:50%;background-color:rgba(255,255,255,.3);z-index:999;display:flex;justify-content:center;align-items:center}.topright-ball .ball-righttop[data-v-01c2b33c]{width:1.40625rem;height:1.40625rem;margin-top:-.3125rem}.small-button[data-v-01c2b33c]{width:70%;height:2.1875rem;display:flex;justify-content:space-between}.small-button .gray-ball[data-v-01c2b33c]{display:flex;justify-content:center;align-items:center;background-color:#d8e1f2;width:1.875rem;height:1.875rem;border-radius:50%}.laba-img[data-v-01c2b33c]{width:.9375rem;height:.9375rem}.time-right[data-v-01c2b33c]{position:absolute;right:.3125rem;top:.15625rem;width:2.8125rem;height:1.09375rem;display:flex;justify-content:center;align-items:center;background-color:#ffd5ac;color:#ff5834;border:.0625rem solid #FF5834;margin-left:.15625rem;border-radius:.3125rem;font-size:.625rem}.neuro-wrapper[data-v-9117e9d1]{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;z-index:999;opacity:0;pointer-events:none;transition:opacity .3s ease}.neuro-wrapper.is-active[data-v-9117e9d1]{opacity:1;pointer-events:auto}.neuro-mask[data-v-9117e9d1]{position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.3)}.neuro-box[data-v-9117e9d1]{position:relative;width:18.75rem;height:14.0625rem;border-radius:.9375rem;background-color:#fff;display:flex;flex-direction:column;align-items:center;z-index:1;padding:0 10%}.button[data-v-9117e9d1]{width:47%;background-color:#ddf0ff;display:flex;justify-content:center;align-items:center;color:#007cff;border:.03125rem solid #007CFF;font-size:.78125rem;border-radius:.9375rem}.title[data-v-9117e9d1]{margin-top:2.1875rem}.card-font[data-v-9117e9d1]{margin-top:2.1875rem;width:18.75rem;justify-content:center;display:flex}.button-white[data-v-9117e9d1]{width:47%;border:.0625rem solid #c3cacd;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:.78125rem;border-radius:.9375rem}.button-father[data-v-9117e9d1]{position:absolute;bottom:1.875rem;left:50%;transform:translate(-50%);width:100%;height:2.1875rem;display:flex;justify-content:space-between;padding:0 1.5625rem}.neuro-wrapper[data-v-8de7e110]{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;z-index:999;opacity:0;pointer-events:none;transition:opacity .3s ease}.neuro-wrapper.is-active[data-v-8de7e110]{opacity:1;pointer-events:auto}.neuro-mask[data-v-8de7e110]{position:absolute;top:0;right:0;bottom:0;left:0;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4)}.neuro-box[data-v-8de7e110]{position:relative;width:23.4375rem;height:21.875rem;border-radius:.9375rem;background-color:#fff;display:flex;flex-direction:column;align-items:center;z-index:1;padding:0 10%}.button[data-v-8de7e110]{width:100%;display:flex;justify-content:center;align-items:center;color:#fff;font-size:.78125rem;border-radius:1.09375rem;margin-left:.625rem;color:#007cff;font-size:.9375rem;background-color:#ddf0ff;border:.03125rem solid #007CFF}.title[data-v-8de7e110]{margin-top:2.1875rem;font-weight:600;font-size:1.09375rem}.card-font[data-v-8de7e110]{margin-top:2.1875rem;width:18.75rem;justify-content:center;display:flex}.button-white[data-v-8de7e110]{width:47%;border:.0625rem solid #c3cacd;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:.78125rem;border-radius:.9375rem}.button-father[data-v-8de7e110]{position:absolute;bottom:2.1875rem;left:50%;transform:translate(-50%);width:100%;height:2.5rem;display:flex;justify-content:center;padding:0 3.4375rem}.password-father[data-v-8de7e110]{margin-top:.9375rem;width:23.4375rem;padding:0 3.75rem;height:2.5rem}.password-father .password[data-v-8de7e110]{width:100%;background-color:rgba(239,240,244,.5);border-radius:.71875rem;height:2.5rem;padding-left:.625rem;font-size:.84375rem}.zy-modal[data-v-cd70e807]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1110;opacity:0;outline:0;text-align:center;transform:scale(1.185);-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:62.5rem;background:rgba(0,0,0,.6);transition:all .3s ease-in-out 0s;pointer-events:none}.zy-modal[data-v-cd70e807]:before{content:"\200b";display:inline-block;height:100%;vertical-align:middle}.zy-modal.show[data-v-cd70e807]{opacity:1;transition-duration:.3s;transform:scale(1);overflow-x:hidden;overflow-y:auto;pointer-events:auto}.zy-dialog[data-v-cd70e807]{position:relative;display:inline-block;vertical-align:middle;margin-left:auto;margin-right:auto;width:21.25rem;max-width:100%;background-color:#f8f8f8;border-radius:.3125rem;overflow:hidden}.zy-modal.bottom-modal[data-v-cd70e807]:before{vertical-align:bottom}.zy-modal.bottom-modal .zy-dialog[data-v-cd70e807]{width:100%;border-radius:0}.zy-modal.bottom-modal[data-v-cd70e807]{margin-bottom:-31.25rem}.zy-modal.bottom-modal.show[data-v-cd70e807]{margin-bottom:0}.zy-modal.drawer-modal[data-v-cd70e807]{transform:scale(1);display:flex}.zy-modal.drawer-modal .zy-dialog[data-v-cd70e807]{height:100%;min-width:6.25rem;border-radius:0;margin:initial;transition-duration:.3s}.zy-modal.drawer-modal.justify-start .zy-dialog[data-v-cd70e807]{transform:translate(-100%)}.zy-modal.drawer-modal.justify-end .zy-dialog[data-v-cd70e807]{transform:translate(100%)}.zy-modal.drawer-modal.show .zy-dialog[data-v-cd70e807]{transform:translate(0)}.zy-modal .zy-dialog>.zy-bar:first-child .action[data-v-cd70e807]{min-width:3.125rem;margin-right:0;min-height:3.125rem}.zy-progress[data-v-cd70e807]{overflow:hidden;height:.875rem;background-color:#ebeef5;display:inline-flex;align-items:center;width:100%}.zy-progress+uni-view[data-v-cd70e807],.zy-progress+uni-text[data-v-cd70e807]{line-height:1}.zy-progress.xs[data-v-cd70e807]{height:.3125rem}.zy-progress.sm[data-v-cd70e807]{height:.625rem}.zy-progress uni-view[data-v-cd70e807]{width:0;height:100%;align-items:center;display:flex;justify-items:flex-end;justify-content:space-around;font-size:.625rem;color:#fff;transition:width .6s ease}.zy-progress uni-text[data-v-cd70e807]{align-items:center;display:flex;font-size:.625rem;color:#333;text-indent:.3125rem}.zy-progress.text-progress[data-v-cd70e807]{padding-right:1.875rem}.zy-progress.striped uni-view[data-v-cd70e807]{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:2.25rem 2.25rem}.zy-progress.active uni-view[data-v-cd70e807]{animation:progress-stripes-cd70e807 2s linear infinite}@keyframes progress-stripes-cd70e807{0%{background-position:2.25rem 0}to{background-position:0 0}}.zy-btn[data-v-cd70e807]{height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.zy-btn[data-v-cd70e807]:after{display:none}.zy-btn[data-v-cd70e807]:not([class*=bg-]){background-color:#f0f0f0}.zy-btn[class*=line][data-v-cd70e807]{background-color:transparent}.zy-btn[class*=line][data-v-cd70e807]:after{content:" ";display:block;width:200%;height:200%;position:absolute;top:0;left:0;border:.03125rem solid currentColor;transform:scale(.5);transform-origin:0 0;box-sizing:border-box;border-radius:.375rem;z-index:1;pointer-events:none}.zy-btn.round[class*=line][data-v-cd70e807]:after{border-radius:31.25rem}.zy-btn[class*=lines][data-v-cd70e807]:after{border:.1875rem solid currentColor}.zy-btn[class*=bg-][data-v-cd70e807]:after{display:none}.zy-btn.sm[data-v-cd70e807]{padding:0 .625rem;font-size:.625rem;height:1.5rem}.zy-btn.lg[data-v-cd70e807]{padding:0 1.25rem;font-size:1rem;height:2.5rem}.zy-btn.cuIcon.sm[data-v-cd70e807]{width:1.5rem;height:1.5rem}.zy-btn.cuIcon[data-v-cd70e807]{width:2rem;height:2rem;border-radius:15.625rem;padding:0}uni-button.cuIcon.lg[data-v-cd70e807]{width:2.5rem;height:2.5rem}.zy-btn.shadow-blur[data-v-cd70e807]:before{top:.125rem;left:.125rem;filter:blur(.1875rem);opacity:.6}.zy-btn.button-hover[data-v-cd70e807]{transform:translate(.03125rem,.03125rem)}.block[data-v-cd70e807]{display:block}.zy-btn.block[data-v-cd70e807]{display:flex}.zy-btn[disabled][data-v-cd70e807]{opacity:.6;color:#fff}.margin-0[data-v-cd70e807]{margin:0}.margin-xs[data-v-cd70e807]{margin:.3125rem}.margin-sm[data-v-cd70e807]{margin:.625rem}.margin[data-v-cd70e807]{margin:.9375rem}.margin-lg[data-v-cd70e807]{margin:1.25rem}.margin-xl[data-v-cd70e807]{margin:1.5625rem}.margin-top-xs[data-v-cd70e807]{margin-top:.3125rem}.margin-top-sm[data-v-cd70e807]{margin-top:.625rem}.margin-top[data-v-cd70e807]{margin-top:.9375rem}.margin-top-lg[data-v-cd70e807]{margin-top:1.25rem}.margin-top-xl[data-v-cd70e807]{margin-top:1.5625rem}.margin-right-xs[data-v-cd70e807]{margin-right:.3125rem}.margin-right-sm[data-v-cd70e807]{margin-right:.625rem}.margin-right[data-v-cd70e807]{margin-right:.9375rem}.margin-right-lg[data-v-cd70e807]{margin-right:1.25rem}.margin-right-xl[data-v-cd70e807]{margin-right:1.5625rem}.margin-bottom-xs[data-v-cd70e807]{margin-bottom:.3125rem}.margin-bottom-sm[data-v-cd70e807]{margin-bottom:.625rem}.margin-bottom[data-v-cd70e807]{margin-bottom:.9375rem}.margin-bottom-lg[data-v-cd70e807]{margin-bottom:1.25rem}.margin-bottom-xl[data-v-cd70e807]{margin-bottom:1.5625rem}.margin-left-xs[data-v-cd70e807]{margin-left:.3125rem}.margin-left-sm[data-v-cd70e807]{margin-left:.625rem}.margin-left[data-v-cd70e807]{margin-left:.9375rem}.margin-left-lg[data-v-cd70e807]{margin-left:1.25rem}.margin-left-xl[data-v-cd70e807]{margin-left:1.5625rem}.margin-lr-xs[data-v-cd70e807]{margin-left:.3125rem;margin-right:.3125rem}.margin-lr-sm[data-v-cd70e807]{margin-left:.625rem;margin-right:.625rem}.margin-lr[data-v-cd70e807]{margin-left:.9375rem;margin-right:.9375rem}.margin-lr-lg[data-v-cd70e807]{margin-left:1.25rem;margin-right:1.25rem}.margin-lr-xl[data-v-cd70e807]{margin-left:1.5625rem;margin-right:1.5625rem}.margin-tb-xs[data-v-cd70e807]{margin-top:.3125rem;margin-bottom:.3125rem}.margin-tb-sm[data-v-cd70e807]{margin-top:.625rem;margin-bottom:.625rem}.margin-tb[data-v-cd70e807]{margin-top:.9375rem;margin-bottom:.9375rem}.margin-tb-lg[data-v-cd70e807]{margin-top:1.25rem;margin-bottom:1.25rem}.margin-tb-xl[data-v-cd70e807]{margin-top:1.5625rem;margin-bottom:1.5625rem}.padding-0[data-v-cd70e807]{padding:0}.padding-xs[data-v-cd70e807]{padding:.3125rem}.padding-sm[data-v-cd70e807]{padding:.625rem}.padding[data-v-cd70e807]{padding:.9375rem}.padding-lg[data-v-cd70e807]{padding:1.25rem}.padding-xl[data-v-cd70e807]{padding:1.5625rem}.padding-top-xs[data-v-cd70e807]{padding-top:.3125rem}.padding-top-sm[data-v-cd70e807]{padding-top:.625rem}.padding-top[data-v-cd70e807]{padding-top:.9375rem}.padding-top-lg[data-v-cd70e807]{padding-top:1.25rem}.padding-top-xl[data-v-cd70e807]{padding-top:1.5625rem}.padding-right-xs[data-v-cd70e807]{padding-right:.3125rem}.padding-right-sm[data-v-cd70e807]{padding-right:.625rem}.padding-right[data-v-cd70e807]{padding-right:.9375rem}.padding-right-lg[data-v-cd70e807]{padding-right:1.25rem}.padding-right-xl[data-v-cd70e807]{padding-right:1.5625rem}.padding-bottom-xs[data-v-cd70e807]{padding-bottom:.3125rem}.padding-bottom-sm[data-v-cd70e807]{padding-bottom:.625rem}.padding-bottom[data-v-cd70e807]{padding-bottom:.9375rem}.padding-bottom-lg[data-v-cd70e807]{padding-bottom:1.25rem}.padding-bottom-xl[data-v-cd70e807]{padding-bottom:1.5625rem}.padding-left-xs[data-v-cd70e807]{padding-left:.3125rem}.padding-left-sm[data-v-cd70e807]{padding-left:.625rem}.padding-left[data-v-cd70e807]{padding-left:.9375rem}.padding-left-lg[data-v-cd70e807]{padding-left:1.25rem}.padding-left-xl[data-v-cd70e807]{padding-left:1.5625rem}.padding-lr-xs[data-v-cd70e807]{padding-left:.3125rem;padding-right:.3125rem}.padding-lr-sm[data-v-cd70e807]{padding-left:.625rem;padding-right:.625rem}.padding-lr[data-v-cd70e807]{padding-left:.9375rem;padding-right:.9375rem}.padding-lr-lg[data-v-cd70e807]{padding-left:1.25rem;padding-right:1.25rem}.padding-lr-xl[data-v-cd70e807]{padding-left:1.5625rem;padding-right:1.5625rem}.padding-tb-xs[data-v-cd70e807]{padding-top:.3125rem;padding-bottom:.3125rem}.padding-tb-sm[data-v-cd70e807]{padding-top:.625rem;padding-bottom:.625rem}.padding-tb[data-v-cd70e807]{padding-top:.9375rem;padding-bottom:.9375rem}.padding-tb-lg[data-v-cd70e807]{padding-top:1.25rem;padding-bottom:1.25rem}.padding-tb-xl[data-v-cd70e807]{padding-top:1.5625rem;padding-bottom:1.5625rem}.zy-bar[data-v-cd70e807]{display:flex;position:relative;align-items:center;min-height:3.125rem;justify-content:space-between}.zy-bar .action[data-v-cd70e807]{display:flex;align-items:center;height:100%;justify-content:center;max-width:100%}.zy-bar .action.border-title[data-v-cd70e807]{position:relative;top:-.3125rem}.zy-bar .action.border-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;bottom:-.5rem;min-width:2rem;height:.1875rem;left:0}.zy-bar .action.sub-title[data-v-cd70e807]{position:relative;top:-.2rem}.zy-bar .action.sub-title uni-text[data-v-cd70e807]{position:relative;z-index:1}.zy-bar .action.sub-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.2rem;border-radius:.1875rem;width:100%;height:.6rem;left:.6rem;opacity:.3;z-index:0}.zy-bar .action.sub-title uni-text[class*=text-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.7rem;left:.5rem;opacity:.2;z-index:0;text-align:right;font-weight:900;font-size:1.125rem}.zy-bar.justify-center .action.border-title uni-text[data-v-cd70e807]:last-child,.zy-bar.justify-center .action.sub-title uni-text[data-v-cd70e807]:last-child{left:0;right:0;margin:auto;text-align:center}.zy-bar .action[data-v-cd70e807]:first-child{margin-left:.9375rem;font-size:.9375rem}.zy-bar .action uni-text.text-cut[data-v-cd70e807]{text-align:left;width:100%}.zy-bar .zy-avatar[data-v-cd70e807]:first-child{margin-left:.625rem}.zy-bar .action:first-child>uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:-.3em;margin-right:.3em}.zy-bar .action[data-v-cd70e807]:last-child{margin-right:.9375rem}.zy-bar .action>uni-text[class*=cuIcon-][data-v-cd70e807],.zy-bar .action>uni-view[class*=cuIcon-][data-v-cd70e807]{font-size:1.125rem}.zy-bar .action>uni-text[class*=cuIcon-]+uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:.5em}.zy-bar .content[data-v-cd70e807]{position:absolute;text-align:center;width:calc(100% - 10.625rem);left:0;right:0;bottom:0;top:0;margin:auto;height:1.875rem;font-size:1rem;line-height:1.875rem;cursor:none;pointer-events:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.zy-bar.ios .content[data-v-cd70e807]{bottom:7px;height:30px;font-size:1rem;line-height:30px}.zy-bar.btn-group[data-v-cd70e807]{justify-content:space-around}.zy-bar.btn-group uni-button[data-v-cd70e807]{padding:.625rem 1rem}.zy-bar.btn-group uni-button[data-v-cd70e807]{flex:1;margin:0 .625rem;max-width:50%}.zy-bar .search-form[data-v-cd70e807]{background-color:#f5f5f5;line-height:2rem;height:2rem;font-size:.75rem;color:#333;flex:1;display:flex;align-items:center;margin:0 .9375rem}.zy-bar .search-form+.action[data-v-cd70e807]{margin-right:.9375rem}.zy-bar .search-form uni-input[data-v-cd70e807]{flex:1;padding-right:.9375rem;height:2rem;line-height:2rem;font-size:.8125rem;background-color:transparent}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]{margin:0 .5em 0 .8em}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]:before{top:0}.zy-bar.fixed[data-v-cd70e807],.nav.fixed[data-v-cd70e807]{position:fixed;width:100%;top:0;z-index:1024;box-shadow:0 .03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.foot[data-v-cd70e807]{position:fixed;width:100%;bottom:0;z-index:1024;box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar[data-v-cd70e807]{padding:0;height:calc(3.125rem + env(safe-area-inset-bottom)/2);padding-bottom:calc(env(safe-area-inset-bottom)/2)}.zy-tabbar-height[data-v-cd70e807]{min-height:3.125rem;height:calc(3.125rem + env(safe-area-inset-bottom)/2)}.zy-bar.tabbar.shadow[data-v-cd70e807]{box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar .action[data-v-cd70e807]{font-size:.6875rem;position:relative;flex:1;text-align:center;padding:0;display:block;height:auto;line-height:1;margin:0;background-color:inherit;overflow:initial}.zy-bar.tabbar.shop .action[data-v-cd70e807]{width:4.375rem;flex:initial}.zy-bar.tabbar .action.add-action[data-v-cd70e807]{position:relative;z-index:2;padding-top:1.5625rem}.zy-bar.tabbar .action.add-action [class*=cuIcon-][data-v-cd70e807]{position:absolute;width:2.1875rem;z-index:2;height:2.1875rem;border-radius:50%;line-height:2.1875rem;font-size:1.5625rem;top:-1.09375rem;left:0;right:0;margin:auto;padding:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:after{content:"";position:absolute;width:3.125rem;height:3.125rem;top:-1.5625rem;left:0;right:0;margin:auto;box-shadow:0 -.09375rem .25rem rgba(0,0,0,.08);border-radius:1.5625rem;background-color:inherit;z-index:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:before{content:"";position:absolute;width:3.125rem;height:.9375rem;bottom:.9375rem;left:0;right:0;margin:auto;background-color:inherit;z-index:1}.zy-bar.tabbar .btn-group[data-v-cd70e807]{flex:1;display:flex;justify-content:space-around;align-items:center;padding:0 .3125rem}.zy-bar.tabbar uni-button.action[data-v-cd70e807]:after{border:0}.zy-bar.tabbar .action [class*=cuIcon-][data-v-cd70e807]{width:3.125rem;position:relative;display:block;height:auto;margin:0 auto .3125rem;text-align:center;font-size:1.25rem}.zy-bar.tabbar .action .cuIcon-zy-image[data-v-cd70e807]{margin:0 auto}.zy-bar.tabbar .action .cuIcon-zy-image uni-image[data-v-cd70e807]{width:1.5625rem;height:1.5625rem;display:inline-block}.zy-bar.tabbar .submit[data-v-cd70e807]{align-items:center;display:flex;justify-content:center;text-align:center;position:relative;flex:2;align-self:stretch}.zy-bar.tabbar .submit[data-v-cd70e807]:last-child{flex:2.6}.zy-bar.tabbar .submit+.submit[data-v-cd70e807]{flex:2}.zy-bar.tabbar.border .action[data-v-cd70e807]:before{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;transform:scale(.5);transform-origin:0 0;border-right:.03125rem solid rgba(0,0,0,.1);z-index:3}.zy-bar.tabbar.border .action[data-v-cd70e807]:last-child:before{display:none}.zy-bar.input[data-v-cd70e807]{padding-right:.625rem;background-color:#fff}.zy-bar.input uni-input[data-v-cd70e807]{overflow:initial;line-height:2rem;height:2rem;min-height:2rem;flex:1;font-size:.9375rem;margin:0 .625rem}.zy-bar.input .action[data-v-cd70e807]{margin-left:.625rem}.zy-bar.input .action [class*=cuIcon-][data-v-cd70e807]{font-size:1.5rem}.zy-bar.input uni-input+.action[data-v-cd70e807]{margin-right:.625rem;margin-left:0}.zy-bar.input .action:first-child [class*=cuIcon-][data-v-cd70e807]{margin-left:0}.zy-custom[data-v-cd70e807]{display:block;position:relative}.zy-custom .zy-bar .content[data-v-cd70e807]{width:calc(100% - 13.75rem)}.zy-custom .zy-bar .content uni-image[data-v-cd70e807]{height:1.875rem;width:7.5rem}.zy-custom .zy-bar[data-v-cd70e807]{min-height:0px;box-shadow:0 0;z-index:9999}.zy-custom .zy-bar .border-custom[data-v-cd70e807]{position:relative;background:rgba(0,0,0,.15);border-radius:31.25rem;height:30px}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:after{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;border-radius:inherit;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:.03125rem solid #ffffff;opacity:.5}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:before{content:" ";width:.03125rem;height:110%;position:absolute;top:22.5%;left:0;right:0;margin:auto;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;opacity:.6;background-color:#fff}.zy-custom .zy-bar .border-custom uni-text[data-v-cd70e807]{display:block;flex:1;margin:auto!important;text-align:center;font-size:1.0625rem}.flex[data-v-cd70e807]{display:flex}.basis-xs[data-v-cd70e807]{flex-basis:20%}.basis-sm[data-v-cd70e807]{flex-basis:40%}.basis-df[data-v-cd70e807]{flex-basis:50%}.basis-lg[data-v-cd70e807]{flex-basis:60%}.basis-xl[data-v-cd70e807]{flex-basis:80%}.flex-sub[data-v-cd70e807]{flex:1}.flex-twice[data-v-cd70e807]{flex:2}.flex-treble[data-v-cd70e807]{flex:3}.flex-direction[data-v-cd70e807]{flex-direction:column}.flex-wrap[data-v-cd70e807]{flex-wrap:wrap}.align-start[data-v-cd70e807]{align-items:flex-start}.align-end[data-v-cd70e807]{align-items:flex-end}.align-center[data-v-cd70e807]{align-items:center}.self-start[data-v-cd70e807]{align-self:flex-start}.self-center[data-v-cd70e807]{align-self:flex-center}.self-end[data-v-cd70e807]{align-self:flex-end}.self-stretch[data-v-cd70e807]{align-self:stretch}.align-stretch[data-v-cd70e807]{align-items:stretch}.justify-start[data-v-cd70e807]{justify-content:flex-start}.justify-end[data-v-cd70e807]{justify-content:flex-end}.justify-center[data-v-cd70e807]{justify-content:center}.justify-between[data-v-cd70e807]{justify-content:space-between}.justify-around[data-v-cd70e807]{justify-content:space-around}.line-red[data-v-cd70e807]:after,.lines-red[data-v-cd70e807]:after{border-color:#e54d42}.line-orange[data-v-cd70e807]:after,.lines-orange[data-v-cd70e807]:after{border-color:#f37b1d}.line-yellow[data-v-cd70e807]:after,.lines-yellow[data-v-cd70e807]:after{border-color:#fbbd08}.line-olive[data-v-cd70e807]:after,.lines-olive[data-v-cd70e807]:after{border-color:#8dc63f}.line-green[data-v-cd70e807]:after,.lines-green[data-v-cd70e807]:after{border-color:#39b54a}.line-cyan[data-v-cd70e807]:after,.lines-cyan[data-v-cd70e807]:after{border-color:#1cbbb4}.line-blue[data-v-cd70e807]:after,.lines-blue[data-v-cd70e807]:after{border-color:#0081ff}.line-purple[data-v-cd70e807]:after,.lines-purple[data-v-cd70e807]:after{border-color:#6739b6}.line-mauve[data-v-cd70e807]:after,.lines-mauve[data-v-cd70e807]:after{border-color:#9c26b0}.line-pink[data-v-cd70e807]:after,.lines-pink[data-v-cd70e807]:after{border-color:#e03997}.line-brown[data-v-cd70e807]:after,.lines-brown[data-v-cd70e807]:after{border-color:#a5673f}.line-grey[data-v-cd70e807]:after,.lines-grey[data-v-cd70e807]:after{border-color:#8799a3}.line-gray[data-v-cd70e807]:after,.lines-gray[data-v-cd70e807]:after{border-color:#aaa}.line-black[data-v-cd70e807]:after,.lines-black[data-v-cd70e807]:after{border-color:#333}.line-white[data-v-cd70e807]:after,.lines-white[data-v-cd70e807]:after{border-color:#fff}.bg-red[data-v-cd70e807]{background-color:#e54d42;color:#fff}.bg-orange[data-v-cd70e807]{background-color:#f37b1d;color:#fff}.bg-yellow[data-v-cd70e807]{background-color:#fbbd08;color:#333}.bg-olive[data-v-cd70e807]{background-color:#8dc63f;color:#fff}.bg-green[data-v-cd70e807]{background-color:#39b54a;color:#fff}.bg-cyan[data-v-cd70e807]{background-color:#1cbbb4;color:#fff}.bg-blue[data-v-cd70e807]{background-color:#0081ff;color:#fff}.bg-purple[data-v-cd70e807]{background-color:#6739b6;color:#fff}.bg-mauve[data-v-cd70e807]{background-color:#9c26b0;color:#fff}.bg-pink[data-v-cd70e807]{background-color:#e03997;color:#fff}.bg-brown[data-v-cd70e807]{background-color:#a5673f;color:#fff}.bg-grey[data-v-cd70e807]{background-color:#8799a3;color:#fff}.bg-gray[data-v-cd70e807]{background-color:#f0f0f0;color:#333}.bg-black[data-v-cd70e807]{background-color:#333;color:#fff}.bg-white[data-v-cd70e807]{background-color:#fff;color:#666}.bg-shadeTop[data-v-cd70e807]{background-image:linear-gradient(#000,rgba(0,0,0,.01));color:#fff}.bg-shadeBottom[data-v-cd70e807]{background-image:linear-gradient(rgba(0,0,0,.01),#000);color:#fff}.bg-red.light[data-v-cd70e807]{color:#e54d42;background-color:#fadbd9}.bg-orange.light[data-v-cd70e807]{color:#f37b1d;background-color:#fde6d2}.bg-yellow.light[data-v-cd70e807]{color:#fbbd08;background-color:rgba(254,242,206,.824)}.bg-olive.light[data-v-cd70e807]{color:#8dc63f;background-color:#e8f4d9}.bg-green.light[data-v-cd70e807]{color:#39b54a;background-color:#d7f0db}.bg-cyan.light[data-v-cd70e807]{color:#1cbbb4;background-color:#d2f1f0}.bg-blue.light[data-v-cd70e807]{color:#0081ff;background-color:#cce6ff}.bg-purple.light[data-v-cd70e807]{color:#6739b6;background-color:#e1d7f0}.bg-mauve.light[data-v-cd70e807]{color:#9c26b0;background-color:#ebd4ef}.bg-pink.light[data-v-cd70e807]{color:#e03997;background-color:#f9d7ea}.bg-brown.light[data-v-cd70e807]{color:#a5673f;background-color:#ede1d9}.bg-grey.light[data-v-cd70e807]{color:#8799a3;background-color:#e7ebed}.bg-gradual-red[data-v-cd70e807]{background-image:linear-gradient(45deg,#f43f3b,#ec008c);color:#fff}.bg-gradual-orange[data-v-cd70e807]{background-image:linear-gradient(45deg,#ff9700,#ed1c24);color:#fff}.bg-gradual-green[data-v-cd70e807]{background-image:linear-gradient(45deg,#39b54a,#8dc63f);color:#fff}.bg-gradual-purple[data-v-cd70e807]{background-image:linear-gradient(45deg,#9000ff,#5e00ff);color:#fff}.bg-gradual-pink[data-v-cd70e807]{background-image:linear-gradient(45deg,#ec008c,#6739b6);color:#fff}.bg-gradual-blue[data-v-cd70e807]{background-image:linear-gradient(45deg,#0081ff,#1cbbb4);color:#fff}.shadow[class*=-red][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.shadow[class*=-orange][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.shadow[class*=-yellow][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.shadow[class*=-olive][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.shadow[class*=-green][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.shadow[class*=-cyan][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.shadow[class*=-blue][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.shadow[class*=-purple][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.shadow[class*=-mauve][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.shadow[class*=-pink][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.shadow[class*=-brown][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.shadow[class*=-grey][data-v-cd70e807],.shadow[class*=-gray][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.shadow[class*=-black][data-v-cd70e807],.shadow[class*=-white][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.text-shadow[class*=-red][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.text-shadow[class*=-orange][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.text-shadow[class*=-yellow][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.text-shadow[class*=-olive][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.text-shadow[class*=-green][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.text-shadow[class*=-cyan][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.text-shadow[class*=-blue][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.text-shadow[class*=-purple][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.text-shadow[class*=-mauve][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.text-shadow[class*=-pink][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.text-shadow[class*=-brown][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.text-shadow[class*=-grey][data-v-cd70e807],.text-shadow[class*=-gray][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.text-shadow[class*=-black][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.bg-img[data-v-cd70e807]{background-size:cover;background-position:center;background-repeat:no-repeat}.bg-mask[data-v-cd70e807]{background-color:#333;position:relative}.bg-mask[data-v-cd70e807]:after{content:"";border-radius:inherit;width:100%;height:100%;display:block;background-color:rgba(0,0,0,.4);position:absolute;left:0;right:0;bottom:0;top:0}.bg-mask uni-view[data-v-cd70e807],.bg-mask uni-cover-view[data-v-cd70e807]{z-index:5;position:relative}.bg-video[data-v-cd70e807]{position:relative}.bg-video uni-video[data-v-cd70e807]{display:block;height:100%;width:100%;object-fit:cover;position:absolute;top:0;z-index:0;pointer-events:none}.text-xs[data-v-cd70e807]{font-size:.625rem}.text-sm[data-v-cd70e807]{font-size:.75rem}.text-df[data-v-cd70e807]{font-size:.875rem}.text-lg[data-v-cd70e807]{font-size:1rem}.text-xl[data-v-cd70e807]{font-size:1.125rem}.text-xxl[data-v-cd70e807]{font-size:1.375rem}.text-sl[data-v-cd70e807]{font-size:2.5rem}.text-xsl[data-v-cd70e807]{font-size:3.75rem}.text-Abc[data-v-cd70e807]{text-transform:Capitalize}.text-ABC[data-v-cd70e807]{text-transform:Uppercase}.text-abc[data-v-cd70e807]{text-transform:Lowercase}.text-price[data-v-cd70e807]:before{content:"\a5";font-size:80%;margin-right:.125rem}.text-cut[data-v-cd70e807]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.text-bold[data-v-cd70e807]{font-weight:700}.text-center[data-v-cd70e807]{text-align:center}.text-content[data-v-cd70e807]{line-height:1.6}.text-left[data-v-cd70e807]{text-align:left}.text-right[data-v-cd70e807]{text-align:right}.text-red[data-v-cd70e807],.line-red[data-v-cd70e807],.lines-red[data-v-cd70e807]{color:#e54d42}.text-orange[data-v-cd70e807],.line-orange[data-v-cd70e807],.lines-orange[data-v-cd70e807]{color:#f37b1d}.text-yellow[data-v-cd70e807],.line-yellow[data-v-cd70e807],.lines-yellow[data-v-cd70e807]{color:#fbbd08}.text-olive[data-v-cd70e807],.line-olive[data-v-cd70e807],.lines-olive[data-v-cd70e807]{color:#8dc63f}.text-green[data-v-cd70e807],.line-green[data-v-cd70e807],.lines-green[data-v-cd70e807]{color:#39b54a}.text-cyan[data-v-cd70e807],.line-cyan[data-v-cd70e807],.lines-cyan[data-v-cd70e807]{color:#1cbbb4}.text-blue[data-v-cd70e807],.line-blue[data-v-cd70e807],.lines-blue[data-v-cd70e807]{color:#0081ff}.text-purple[data-v-cd70e807],.line-purple[data-v-cd70e807],.lines-purple[data-v-cd70e807]{color:#6739b6}.text-mauve[data-v-cd70e807],.line-mauve[data-v-cd70e807],.lines-mauve[data-v-cd70e807]{color:#9c26b0}.text-pink[data-v-cd70e807],.line-pink[data-v-cd70e807],.lines-pink[data-v-cd70e807]{color:#e03997}.text-brown[data-v-cd70e807],.line-brown[data-v-cd70e807],.lines-brown[data-v-cd70e807]{color:#a5673f}.text-grey[data-v-cd70e807],.line-grey[data-v-cd70e807],.lines-grey[data-v-cd70e807]{color:#8799a3}.text-gray[data-v-cd70e807],.line-gray[data-v-cd70e807],.lines-gray[data-v-cd70e807]{color:#aaa}.text-black[data-v-cd70e807],.line-black[data-v-cd70e807],.lines-black[data-v-cd70e807]{color:#333}.text-white[data-v-cd70e807],.line-white[data-v-cd70e807],.lines-white[data-v-cd70e807]{color:#fff}.zy-upgrade-topbg-green[data-v-cd70e807]{background-image:url(../../assets/green.20d5f80a.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-red[data-v-cd70e807]{background-image:url(../../assets/red.8267d3cf.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-pink[data-v-cd70e807]{background-image:url(../../assets/pink.78f243a3.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-yellow[data-v-cd70e807]{background-image:url(../../assets/yellow.4438648c.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-blue[data-v-cd70e807]{background-size:100% 100%;background-repeat:no-repeat}.zy-upgrade-title[data-v-cd70e807]{font-size:1.09375rem;font-weight:600}.all[data-v-8b11c490]{margin-top:1.40625rem}.all .all-content[data-v-8b11c490]{width:100%;height:40.625rem}.all[data-v-842c1160]{margin-top:1.40625rem}.all .all-content[data-v-842c1160]{width:100%;height:40.625rem}.index-content-other[data-v-db2cf42d]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-right[data-v-db2cf42d]{width:100%;border-radius:1.5625rem;display:flex;justify-content:flex-end;height:3.75rem;align-items:center}.item[data-v-db2cf42d]{display:flex;align-items:center;justify-content:space-between;width:100%;height:4.0625rem}.item .left-item[data-v-db2cf42d]{display:flex;align-items:center;margin-left:.625rem}.item .left-item .left-icon[data-v-db2cf42d]{margin:0 .625rem;width:1.25rem;height:1.25rem}.item .right-item[data-v-db2cf42d]{display:flex;align-items:center;margin-right:1.5625rem}.item .right-item .right-icon[data-v-db2cf42d]{width:.46875rem;height:.9375rem}.array-father[data-v-db2cf42d]{background-color:rgba(255,255,255,.6);width:98.2%;border-radius:.9375rem}.bottom-button[data-v-db2cf42d]{margin-top:.9375rem;background-color:rgba(255,255,255,.6);width:98.2%;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:.9375rem;height:3.125rem;color:#0174d3}.popup-any[data-v-db2cf42d]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:999;opacity:0;transition:opacity .5s ease;background-color:rgba(0,0,0,.3)}.mask[data-v-db2cf42d]{position:absolute;top:0;right:0;bottom:0;left:0}.box-any[data-v-db2cf42d]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:31.25rem;height:46.875rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;padding:2.03125rem 1.25rem}.title-left[data-v-db2cf42d]{display:flex;align-items:center}.title-left .back-img[data-v-db2cf42d]{width:1.875rem;height:1.875rem;margin-right:.9375rem}.title-left .back-font[data-v-db2cf42d]{font-size:1.09375rem;font-weight:600}.index-content-other[data-v-08e03fe2]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-down[data-v-08e03fe2]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.index-content-right[data-v-08e03fe2]{height:calc(100% - .9375rem);width:calc(100% - 1.875rem);background-color:rgba(255,255,255,.8);background-image:url(../../static/index/leida/bgc.png);background-position:30% 70%;border-radius:1.5625rem;display:flex;position:relative}.leida[data-v-08e03fe2]{margin-top:.9375rem;height:100%;width:35%;display:flex;justify-content:center;align-items:center;flex-direction:column;position:relative}.kutong-father[data-v-08e03fe2]{width:9.375rem;height:14.0625rem;position:relative}.kutong-img[data-v-08e03fe2]{position:absolute;top:0;left:0;width:9.375rem;height:9.375rem}.kutong-shan[data-v-08e03fe2]{position:absolute;top:0;left:0;width:4.6875rem;height:6.4375rem;transform-origin:100% 73%}.spin-anim[data-v-08e03fe2]{animation:spin-08e03fe2 2s linear infinite;animation-play-state:running}.no-anim[data-v-08e03fe2]{animation:spin-08e03fe2 2s linear infinite;animation-play-state:paused}.spin-anim-spec[data-v-08e03fe2]{animation:spinx-08e03fe2 2s linear infinite;animation-play-state:running}.no-anim-spec[data-v-08e03fe2]{animation:spinx-08e03fe2 2s linear infinite;animation-play-state:paused}.huan[data-v-08e03fe2]{position:absolute;top:-2.03125rem;left:-2.03125rem;width:13.4375rem;height:13.4375rem;border:.625rem solid #cedcf5;border-radius:50%}.quarter-ring[data-v-08e03fe2]{position:absolute;top:-5%;left:-5%;width:110%;height:110%;box-sizing:border-box;border:.625rem solid transparent;border-top-color:#03a9ff;border-radius:50%;transform:rotate(0);transform-origin:center center}.jindutiao[data-v-08e03fe2]{width:12.5rem;border-radius:.625rem;height:.625rem;background-color:#a6c9fa;overflow:hidden}.progress-fill[data-v-08e03fe2]{width:100%;height:100%;background:linear-gradient(to bottom,#00c9ff,#0076ff);transform-origin:left center;will-change:transform;transition:transform .05s linear}.color-font[data-v-08e03fe2]{color:#415273;margin-top:.625rem;height:.625rem}.agagin-button[data-v-08e03fe2]{width:7.5rem;height:2.8125rem;margin-top:2.5rem;border-radius:1.09375rem;background:linear-gradient(to bottom,#00c9ff,#0076ff);display:flex;justify-content:center;align-items:center;color:#fff}.other[data-v-08e03fe2]{width:50%;height:100%}.other-father[data-v-08e03fe2]{margin-top:4.6875rem;height:calc(100% - 4.6875rem);width:100%}.card-father[data-v-08e03fe2]{width:100%;display:flex;flex-wrap:wrap}.card[data-v-08e03fe2]{width:45%;margin-left:3%;height:16.5625rem;box-shadow:.0625rem .125rem .25rem .0625rem rgba(0,0,0,.3);background-color:#fff;border-radius:.9375rem;margin-bottom:1.09375rem;padding:0 .78125rem;position:relative}.card .rename-father[data-v-08e03fe2]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:17.1875rem;height:10.9375rem;border-radius:.9375rem;box-shadow:.0625rem .125rem .25rem .0625rem rgba(0,0,0,.3);background-color:#fff;display:flex;flex-direction:column;align-items:center;padding:0 .9375rem}.card .rename-father .rename-title[data-v-08e03fe2]{width:100%;height:2.5rem;border-bottom:.0625rem solid #f5f5f5;display:flex;justify-content:center;align-items:center}.card .rename-father .rename-gray[data-v-08e03fe2]{width:100%;height:2.5rem;display:flex;color:#a7a7a7;align-items:center}.card .rename-father .rename-input[data-v-08e03fe2]{width:100%;height:2.5rem;display:flex;background-color:#f5f6fa;border-radius:.625rem;color:#a7a7a7;align-items:center;padding:0 .625rem;position:relative}.card .rename-father .rename-input .uni-input[data-v-08e03fe2]{font-size:.78125rem}.card .rename-father .rename-input .left-img[data-v-08e03fe2]{width:1.5625rem;height:1.5625rem;margin-right:.46875rem}.card .rename-father .rename-input .right-img[data-v-08e03fe2]{position:absolute;right:.9375rem;top:50%;transform:translateY(-50%);width:.9375rem;height:.9375rem}.card-title[data-v-08e03fe2]{width:100%;height:4.0625rem;display:flex;align-items:center;justify-content:space-between}.card-middle[data-v-08e03fe2]{width:100%;height:10rem;display:flex;justify-content:space-between}.video-box[data-v-08e03fe2]{width:82%;height:10rem;background-color:#e5ecfa;display:flex;justify-content:center;align-items:center;border-radius:.625rem}.video-box-img[data-v-08e03fe2]{width:2.5rem;height:2.5rem}@keyframes spin-08e03fe2{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes spinx-08e03fe2{0%{transform:rotate(-70deg)}to{transform:rotate(290deg)}}@keyframes fadeIn-08e03fe2{0%{opacity:0;transform:translateY(.3125rem)}to{opacity:1;transform:translateY(0)}}.fade-in[data-v-08e03fe2]{animation:fadeIn-08e03fe2 .4s ease-out forwards}.index-content-title[data-v-08e03fe2]{position:absolute;top:1.875rem;left:1.875rem;display:flex;align-items:center}.index-content-title .shu[data-v-08e03fe2]{width:.625rem;height:1.5625rem;background:linear-gradient(to right,#0052c2,#00b4ff);border-radius:.625rem;margin-right:.9375rem}.index-content-title .shu-font[data-v-08e03fe2]{color:#415273;font-size:1.09375rem}.right-box[data-v-08e03fe2]{background:#00abff;width:5rem;height:2.03125rem;border-radius:.625rem;display:flex;justify-content:center;align-items:center;color:#fff}.small-menu[data-v-08e03fe2]{width:2.34375rem;height:2.28125rem;border-radius:.625rem;background-color:#e7ecfa;display:flex;justify-content:center;align-items:center;margin-bottom:.3125rem}.small-menu .small-img[data-v-08e03fe2]{height:1.5625rem;width:1.5625rem}.card-bottom[data-v-08e03fe2]{margin-top:.53125rem;margin-left:.3125rem;display:flex}.card-bottom .bottom-img[data-v-08e03fe2]{width:1.1875rem;height:1.1875rem;margin-left:.9375rem}.blue-button[data-v-08e03fe2]{margin-top:.625rem;width:5.625rem;height:2.1875rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;background:linear-gradient(to bottom,#00c9ff,#0076ff)}.index-content-other[data-v-3c477a5f]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-down[data-v-3c477a5f]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.index-content-right[data-v-3c477a5f]{height:calc(100% - .9375rem);width:calc(100% - 1.875rem);background-color:rgba(255,255,255,.8);background-image:url(../../static/index/leida/bgc.png);background-position:30% 70%;border-radius:1.5625rem;display:flex;position:relative}.index-content-right .index-content-title[data-v-3c477a5f]{position:absolute;top:1.875rem;left:1.875rem;display:flex;align-items:center}.index-content-right .index-content-title .shu[data-v-3c477a5f]{width:.625rem;height:1.5625rem;background:linear-gradient(to right,#0052c2,#00b4ff);border-radius:.625rem;margin-right:.9375rem}.index-content-right .index-content-title .shu-font[data-v-3c477a5f]{color:#415273;font-size:1.09375rem}.saomiao[data-v-3c477a5f]{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);width:12.5rem;height:12.5rem;background-image:url(../../static/index/leida/fourjiao.png);background-repeat:no-repeat;background-attachment:fixed;background-size:cover}.saomiao[data-v-3c477a5f]:before{content:"";position:absolute;top:0;left:0;width:100%;animation:scanMove-3c477a5f 1.3s ease-in-out infinite;z-index:1001;height:2.5rem;background:linear-gradient(to bottom,rgba(5,170,254,.6),rgba(5,170,254,.1),transparent);will-change:transform}.saomiao .saomiao-son[data-v-3c477a5f]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:11.25rem;height:11.25rem;border-radius:1.5625rem;background-color:#dae4f8}.saomiao .saomiao-son .saomiao-son-son[data-v-3c477a5f]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:10rem;height:10rem;border-radius:1.5625rem;background-color:#d0e0f6}.saomiao .saomiao-son .saomiao-son-son .saomiao-son-son-img[data-v-3c477a5f]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:7.8125rem;height:7.8125rem;border-radius:.9375rem;background-image:url(../../static/index/leida/QR.png);background-repeat:no-repeat;background-attachment:fixed;background-size:cover}@keyframes scanMove-3c477a5f{0%{top:10%}to{top:80%}}.index-content-other[data-v-5fc7e05c]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-down[data-v-5fc7e05c]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.index-content-right[data-v-5fc7e05c]{height:calc(100% - .9375rem);width:calc(100% - 1.875rem);background-color:rgba(255,255,255,.8);background-image:url(../../static/index/leida/bgc.png);background-position:30% 70%;border-radius:1.5625rem;display:flex;position:relative}.index-content-right .index-content-title[data-v-5fc7e05c]{position:absolute;top:1.875rem;left:1.875rem;display:flex;align-items:center}.index-content-right .index-content-title .shu[data-v-5fc7e05c]{width:.625rem;height:1.5625rem;background:linear-gradient(to right,#0052c2,#00b4ff);border-radius:.625rem;margin-right:.9375rem}.index-content-right .index-content-title .shu-font[data-v-5fc7e05c]{color:#415273;font-size:1.09375rem}.saomiao[data-v-5fc7e05c]{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);display:flex}.saomiao .saoma-input[data-v-5fc7e05c]{background-color:#fff;width:17.1875rem;height:2.8125rem;border-radius:.9375rem;padding-left:3.125rem;z-index:1}.saomiao .left-img[data-v-5fc7e05c]{width:1.5625rem;height:1.5625rem;position:absolute;top:50%;left:.9375rem;transform:translateY(-50%);z-index:2}.saomiao .right-img[data-v-5fc7e05c]{width:1.5625rem;height:1.5625rem;position:absolute;top:50%;right:6.875rem;transform:translateY(-50%);z-index:2}.blue-button[data-v-5fc7e05c]{margin-left:.9375rem;width:5.3125rem;height:2.8125rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:.9375rem;background:linear-gradient(to bottom,#00c9ff,#0076ff)}.big-ball[data-v-5fc7e05c]{width:6.25rem;height:6.25rem;position:absolute;top:50%;left:-1.71875rem;transform:translateY(-50%);border-radius:50%;background-color:#dbe4f6}.big-ball .ball[data-v-5fc7e05c]{width:4.6875rem;height:4.6875rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border-radius:50%;background-color:#cfddf1}.backgroundContainer[data-v-aebf66be]{display:flex;flex-direction:column;position:relative;width:100%;height:100vh;background-image:url(../../static/index/lightbgcnew.png);background-size:cover;background-position:center center;overflow:hidden}.darkbackgroundContainer[data-v-aebf66be]{display:flex;flex-direction:column;position:relative;width:100%;height:100vh;background-image:url(../../static/index/background.png);background-size:cover;background-position:center center;overflow:hidden}.index-title[data-v-aebf66be]{display:flex;width:calc(100% - 3.4375rem);height:4.0625rem;justify-content:space-between;margin:.625rem 1.5625rem 0 1.875rem}.index-title .index-title-left[data-v-aebf66be]{display:flex;height:100%;align-items:center;margin-top:.625rem}.index-title .index-title-left .index-title-left-wel[data-v-aebf66be]{margin-left:1.25rem}.index-title .index-title-left .index-title-left-weight[data-v-aebf66be]{font-weight:700;margin:0 .3125rem}.index-title .index-title-right[data-v-aebf66be]{display:flex;height:100%;align-items:center;margin-top:.625rem;margin-right:.3125rem}.index-title .index-title-right .top-card[data-v-aebf66be]{width:5.625rem;height:1.71875rem;border-radius:.9375rem;background-color:#e2e7ff;display:flex;align-items:center;margin-right:.625rem}.index-title .index-title-right .top-card .top-card-img[data-v-aebf66be]{width:1.09375rem;height:1.09375rem;margin-right:.15625rem;margin-left:.625rem}.index-title .index-title-right .top-card .top-card-font[data-v-aebf66be]{font-size:.78125rem}.index-content[data-v-aebf66be]{width:100%;height:calc(100vh - 4.6875rem);display:flex;margin-top:1.71875rem}.index-content .index-content-leftMenus[data-v-aebf66be]{height:100%;width:5.3125rem;display:flex;align-items:center;flex-direction:column;margin-top:.625rem;position:relative}.index-content .index-content-leftMenus .left-img[data-v-aebf66be]{width:2.8125rem;height:2.8125rem;z-index:100}.index-content .index-content-leftMenus .left-img-font[data-v-aebf66be]{margin-top:.3125rem;color:#fff;font-size:.78125rem}.index-content .index-content-leftMenus .left-img-font-target[data-v-aebf66be]{margin-top:.3125rem;color:#0174d3;font-size:.78125rem}.index-content .index-content-leftMenus .blue-circle-pos[data-v-aebf66be]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;height:25rem}.index-content .index-content-leftMenus .blue-circle-pos .blue-circle[data-v-aebf66be]{position:absolute;top:-1.5625rem;left:-2.125rem}.index-content .index-content-leftMenus .blue-circle-pos .blue-circle .blue-circle-size[data-v-aebf66be]{width:5.3125rem;height:7.8125rem}.red-pao[data-v-aebf66be]{position:absolute;top:1.25rem;left:1.875rem;padding:.09375rem .3125rem;background-color:#ff4c4e;color:#fff;font-size:.625rem;border-radius:.625rem;z-index:101}.ball-bgc[data-v-aebf66be]{width:1.8125rem;height:1.8125rem;border-radius:50%;background-color:#e2e7ff;display:flex;align-items:center;justify-content:center;margin-right:.78125rem}.ball-bgc .ball-img[data-v-aebf66be]{width:1.1875rem;height:1.1875rem}.index-title-title[data-v-aebf66be]{height:6.25rem}.index-title-left-img[data-v-aebf66be]{width:2.34375rem;height:2.34375rem}
diff --git a/unpackage/resources/__UNI__FB2D473/www/pages/Nursing/index.css b/unpackage/resources/__UNI__FB2D473/www/pages/Nursing/index.css
index 7b31370..0d08afe 100644
--- a/unpackage/resources/__UNI__FB2D473/www/pages/Nursing/index.css
+++ b/unpackage/resources/__UNI__FB2D473/www/pages/Nursing/index.css
@@ -1 +1 @@
-.overlay[data-v-8cdafce2]{position:fixed;top:0;left:0;width:100%;height:100vh;background:rgba(0,0,0,.5);z-index:999;will-change:opacity;transition:opacity .3s ease;opacity:0;display:block}.overlay-show[data-v-8cdafce2]{opacity:1}.drawer[data-v-8cdafce2]{position:fixed;top:0;right:0;height:100vh;background:#fff;z-index:1000;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;transform:translate(100%);transition:transform .4s ease;will-change:transform}.drawer-open[data-v-8cdafce2]{transform:translate(0)}.drawer-content[data-v-8cdafce2]{position:relative;width:100%;height:100%}.drawer-content-circle[data-v-8cdafce2]{position:absolute;top:calc(50% - 1.71875rem);left:-1.25rem;width:3.125rem;height:3.4375rem;border-radius:50%;z-index:-1;background:linear-gradient(to bottom,#dfecfa,#c9dbee);display:flex;align-items:center;-webkit-clip-path:inset(0 60% 0 0);clip-path:inset(0 60% 0 0)}.drawer-img[data-v-8cdafce2]{width:.78125rem;height:.78125rem;margin-left:.3125rem;transform:rotate(180deg)}.draw-all[data-v-6070efba]{width:100%;height:100%;display:flex;flex-direction:column;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;overflow:hidden}.draw-all .draw-title[data-v-6070efba]{width:100%;height:4.375rem;display:flex}.draw-all .draw-title .draw-title-gun[data-v-6070efba]{margin-top:2.1875rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.5625rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.draw-all .draw-title .draw-title-font[data-v-6070efba]{margin-top:2.125rem;font-size:1.25rem;font-weight:700}.draw-all .draw-contain[data-v-6070efba]{width:100%;height:calc(100vh - 4.375rem)}.draw-all .draw-contain .draw-contain-jindu[data-v-6070efba]{width:100%;height:7.8125rem;display:flex;justify-content:center;align-items:center}.downitems-father[data-v-6070efba]{width:100%;height:calc(100% - 6.40625rem);display:flex}.downitems-father .downitems-left[data-v-6070efba]{height:100%;width:17.1875rem}.downitems-father .downitems-left .downitems-left-mar[data-v-6070efba]{margin-left:2.03125rem}.downitems-father .downitems-left .downitems-left-mar .downitems-left-img[data-v-6070efba]{width:13.125rem;height:9.375rem;margin-top:2.5rem}.downitems-father .downitems-left .downitems-left-father[data-v-6070efba]{display:flex;margin-top:.625rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-img[data-v-6070efba]{width:1.1875rem;height:1.1875rem;margin:.1875rem .40625rem 0 .625rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-img-laba[data-v-6070efba]{width:1.1875rem;height:1.1875rem;margin-top:.1875rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-font[data-v-6070efba]{font-size:1.25rem;width:9.375rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-font-laba[data-v-6070efba]{font-size:1.25rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-font-small[data-v-6070efba]{font-size:1.09375rem;width:12.5rem}.downitems-father .downitems-left .downitems-kuai[data-v-6070efba]{margin-left:1.15625rem;background-color:rgba(236,240,251,.4);border-radius:.625rem;width:10.9375rem;height:7.1875rem;margin-top:.9375rem;display:flex;justify-content:center;align-items:center}.downitems-father .downitems-left .downitems-kuai .downitems-kuai-img[data-v-6070efba]{width:3.75rem;height:3.75rem}.downitems-father .downitems-left .downitems-says[data-v-6070efba]{color:#6f7fa3;font-size:1.09375rem;margin-left:4.4375rem;margin-top:.625rem}.downitems-father .downitems-right[data-v-6070efba]{height:100%;width:20.3125rem}.downitems-father .downitems-right .downitems-all[data-v-6070efba]{margin-left:1.875rem}.downitems-father .downitems-right .downitems-all .downitems-all-font[data-v-6070efba]{margin-top:.9375rem;font-size:1.25rem}.downitems-father .downitems-center[data-v-6070efba]{height:100%;width:18.75rem;position:relative}.downitems-father .downitems-center .downitems-button[data-v-6070efba]{position:absolute;left:30%;bottom:2.5rem;background:linear-gradient(to right,#00c9ff,#0076ff);width:8.4375rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1.25rem}.downitems-center-title[data-v-6070efba]{width:100%;display:flex}.downitems-center-title .downitems-center-title-gun[data-v-6070efba]{margin-top:1.5625rem;margin-left:0;margin-right:.5625rem;width:.40625rem;height:1.5625rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.downitems-center-title .downitems-center-title-font[data-v-6070efba]{margin-top:1.5625rem;font-size:1.25rem;font-weight:700}.downitems-center-title .downitems-center-says[data-v-6070efba]{display:flex;margin-top:1.5625rem;margin-left:5.625rem;text-align:right;color:#6f7fa3;font-size:1.125rem}.downitems-center-title .downitems-center-father[data-v-6070efba]{display:flex;justify-content:center;align-items:center;width:1.5625rem;height:1.5625rem;border-radius:50%;background-color:#bac5de;margin-right:.3125rem;margin-top:0}.downitems-center-title .downitems-center-father .downitems-center-says-maike[data-v-6070efba]{width:1.25rem;height:1.25rem}.downitems-shu[data-v-6070efba]{width:2.1875rem;height:100%;margin-top:.125rem}.downitems-textarea[data-v-6070efba]{margin-top:.625rem}.custom-textarea[data-v-6070efba]{color:#6f7fa3;background-color:rgba(255,255,255,.3);width:17.8125rem;height:7.5rem;border-radius:.625rem;font-size:1.25rem;padding-left:.9375rem;padding-top:.625rem}.radio-circle-top-father[data-v-6070efba]{margin-left:.9375rem}.radio-circle-top-father .radio-circle-top[data-v-6070efba]{margin-top:.9375rem;display:flex}.radio-circle[data-v-6070efba],.radio-circle-target[data-v-6070efba]{position:relative;margin-top:.0625rem;width:1.25rem;height:1.25rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-circle-target[data-v-6070efba]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.9375rem;height:.9375rem;background-color:#02abfe;border-radius:50%}.radio-font[data-v-6070efba]{margin-left:.46875rem;margin-right:1.875rem;font-size:1.125rem}.downitems-card-all[data-v-6070efba]{width:100%;display:flex;flex-wrap:wrap;margin-top:.625rem}.downitems-card-all .downitems-card-one[data-v-6070efba]{width:8.4375rem;height:4.6875rem;margin-right:.625rem;margin-bottom:.9375rem;border-radius:.625rem;background-color:#f3f8fd;border:.03125rem solid #52668C;box-shadow:0 .125rem .125rem rgba(0,0,0,.2);display:flex;justify-content:center;align-items:center}.downitems-card-all .downitems-card-one-target[data-v-6070efba]{width:8.4375rem;height:4.6875rem;margin-right:.625rem;margin-bottom:.9375rem;border-radius:.625rem;background:linear-gradient(to bottom,#b8e5ff,#f7d0ef);border:.03125rem solid #fff;box-shadow:0 .125rem .125rem rgba(0,0,0,.2);display:flex;justify-content:center;align-items:center}.downitems-card-all .downitems-card[data-v-6070efba]{display:flex;justify-content:center;align-items:center}.downitems-card-all .downitems-card .downitems-card-font[data-v-6070efba]{font-weight:700;margin-left:.3125rem;margin-right:.3125rem;font-size:1.25rem}.downitems-card-all .downitems-card .downitems-card-father[data-v-6070efba]{width:2.8125rem;height:2.8125rem;border-radius:1.5625rem;border:.03125rem solid #94B0C3;background-color:#fff;display:flex;justify-content:center;overflow:hidden}.downitems-card-all .downitems-card .downitems-card-father .downitems-card-img[data-v-6070efba]{width:2.5rem;height:2.5rem;margin-top:.3125rem}.container[data-v-6070efba]{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100vh}.modal[data-v-6070efba]{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center}.modal-content[data-v-6070efba]{width:80vw;height:80vh;background:#fff;border-radius:8px;overflow:hidden}.right-container[data-v-6d6a66c6]{width:calc(100% - 7.34375rem);height:100vh;transition:opacity 1s ease}.right-container .right-container-sec[data-v-6d6a66c6]{width:100%;display:flex;position:relative}.right-container .right-container-sec .right-container-left-font-spec[data-v-6d6a66c6]{position:absolute;top:5.625rem;left:18.125rem;width:3.125rem;height:1.25rem;font-size:.78125rem;border-radius:.15625rem;color:#fff;z-index:10;background-color:#34c678;display:flex;justify-content:center;align-items:center}.right-container .right-container-sec .right-container-fir-left-carousel[data-v-6d6a66c6]{position:absolute;right:7.65625rem;top:.53125rem}.right-container .right-container-sec .right-container-fir-left-carousel .carousel[data-v-6d6a66c6]{position:relative;width:.9375rem;height:2.5rem}.right-container .right-container-sec .right-container-fir-left-carousel .carousel .dots[data-v-6d6a66c6]{position:absolute;top:50%;right:.3125rem;transform:translateY(-50%);display:flex;flex-direction:column;gap:.21875rem}.right-container .right-container-sec .right-container-fir-left-carousel .carousel .dots .dot[data-v-6d6a66c6]{width:.3125rem;height:.3125rem;border-radius:50%;background-color:#657494;cursor:pointer;transition:background-color .3s ease}.right-container .right-container-sec .right-container-fir-left-carousel .carousel .dots .dot-dark[data-v-6d6a66c6]{width:.3125rem;height:.3125rem;border-radius:50%;background-color:#fff;cursor:pointer;transition:background-color .3s ease}.right-container .right-container-sec .right-container-fir-left-carousel .carousel .dots .dot.active[data-v-6d6a66c6]{background-color:#01a0fe}.right-container .right-container-sec .right-container-right-father-dark[data-v-6d6a66c6]{height:19.6875rem;border-radius:1.5625rem;background-color:#16304c;border:.0625rem solid transparent;background:url(../../static/index/cardbgc/bgcdark.png) padding-box,linear-gradient(45deg,#9bc4f8,#285399,#9bc4f8,#285399,#9bc4f8) border-box;background-clip:padding-box,border-box;background-color:rgba(12,25,47,.1);position:relative;display:flex;flex-direction:column;box-shadow:0 .25rem .5rem rgba(105,129,178,.8);overflow:hidden}.right-container .right-container-sec .right-container-right-father-dark .uni-margin-wrap[data-v-6d6a66c6]{margin-top:6.25rem;width:37.5rem}.right-container .right-container-sec .right-container-right-father-dark .uni-margin-wrap .swiper[data-v-6d6a66c6]{height:28.125rem}.right-container .right-container-sec .right-container-right-father-dark .uni-margin-wrap .swiper .swiper-item-flex[data-v-6d6a66c6]{display:flex}.right-container .right-container-sec .right-container-right-father-dark .uni-margin-wrap .swiper .swiper-item[data-v-6d6a66c6]{display:block;height:9.375rem;line-height:9.375rem;text-align:center}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next[data-v-6d6a66c6]{height:100%;width:21.875rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-people[data-v-6d6a66c6]{display:flex;margin-bottom:.625rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-people .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.15625rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-people .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:2.8125rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-people .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:2.8125rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-font[data-v-6d6a66c6]{font-size:2.03125rem;margin-top:1.5625rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-font-dark[data-v-6d6a66c6]{font-size:2.03125rem;margin-top:1.5625rem;margin-bottom:.3125rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;font-weight:700}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-text[data-v-6d6a66c6]{margin-left:.3125rem;font-size:2.1875rem;font-weight:700;width:25rem;margin-bottom:1.5625rem;line-height:2.1875rem;position:relative}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-text .time-text-img[data-v-6d6a66c6]{position:absolute;top:0;left:9.375rem;width:2.5rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father[data-v-6d6a66c6]{width:100%;height:17.5rem;display:flex;justify-content:center;align-items:center}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-left[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-top:-4.6875rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark[data-v-6d6a66c6]{margin-left:1.5625rem;margin-top:1.875rem;width:23.84375rem;height:13.4375rem;border-radius:1.25rem;position:relative;display:flex;box-shadow:.0625rem 0 0 .0625rem;background-color:#16304c;border:.0625rem solid #fff}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-line[data-v-6d6a66c6]{width:1px;height:6.25rem;background:linear-gradient(to top,rgba(0,0,0,0),gray,rgba(0,0,0,0));margin-left:-.625rem;margin-right:.9375rem;margin-top:3.125rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:14.0625rem;position:relative}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-type[data-v-6d6a66c6]{position:absolute;top:0;left:-.78125rem;width:7.8125rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-font[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#414f6e}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-font-dark[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#fff}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-img[data-v-6d6a66c6]{width:7.1875rem;height:6.25rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-font[data-v-6d6a66c6]{font-size:1.09375rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-font-dark[data-v-6d6a66c6]{font-size:1.09375rem;color:#fff;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card[data-v-6d6a66c6]{margin-left:1.5625rem;margin-top:1.875rem;width:23.84375rem;height:13.4375rem;border-radius:1.25rem;position:relative;display:flex;border:.03125rem solid black;box-shadow:0 .25rem .5rem rgba(0,0,0,.3)}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-line[data-v-6d6a66c6]{width:1px;height:6.25rem;background:linear-gradient(to top,rgba(0,0,0,0),gray,rgba(0,0,0,0));margin-left:-.625rem;margin-right:.9375rem;margin-top:3.125rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:14.0625rem;position:relative}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-card-type[data-v-6d6a66c6]{position:absolute;top:0;left:-.78125rem;width:7.8125rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-card-font[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#414f6e}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-img[data-v-6d6a66c6]{width:7.1875rem;height:6.25rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-font[data-v-6d6a66c6]{font-size:1.09375rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-font-dark[data-v-6d6a66c6]{font-size:1.5625rem;color:#fff;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-right[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-top:-4.6875rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-title[data-v-6d6a66c6]{width:100%;height:5.3125rem;position:relative}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-title .right-container-right-text[data-v-6d6a66c6]{line-height:4.0625rem;font-size:1.25rem;font-weight:600;margin-left:1.875rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-title .right-container-right-text-dark[data-v-6d6a66c6]{line-height:4.0625rem;font-size:1.25rem;font-weight:600;margin-left:1.875rem;color:#fff}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-title .right-container-right-img[data-v-6d6a66c6]{position:absolute;top:1.875rem;right:1.5625rem;width:1.5625rem;height:.46875rem}.right-container .right-container-sec .right-container-right-father[data-v-6d6a66c6]{width:100%;height:19.6875rem;border-radius:1.5625rem;border:.0625rem solid #fff;background-image:url(../../static/index/mountain.png);background-color:rgba(200,216,238,.8);background-position:60% 50%;position:relative;display:flex;flex-direction:column;box-shadow:0 .25rem .5rem rgba(105,129,178,.8);overflow:hidden}.right-container .right-container-sec .right-container-right-father .uni-margin-wrap[data-v-6d6a66c6]{margin-top:6.25rem;width:37.5rem}.right-container .right-container-sec .right-container-right-father .uni-margin-wrap .swiper[data-v-6d6a66c6]{height:28.125rem}.right-container .right-container-sec .right-container-right-father .uni-margin-wrap .swiper .swiper-item-flex[data-v-6d6a66c6]{display:flex}.right-container .right-container-sec .right-container-right-father .uni-margin-wrap .swiper .swiper-item[data-v-6d6a66c6]{display:block;height:9.375rem;line-height:9.375rem;text-align:center}.right-container .right-container-sec .right-container-right-father .time-tra-next[data-v-6d6a66c6]{height:100%;width:21.875rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-people[data-v-6d6a66c6]{display:flex;margin-bottom:.625rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-people .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.15625rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-people .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:2.8125rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-people .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:2.8125rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-font[data-v-6d6a66c6]{font-size:2.03125rem;margin-top:1.5625rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-font-dark[data-v-6d6a66c6]{font-size:2.03125rem;margin-top:1.5625rem;margin-bottom:.3125rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;font-weight:700}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-text[data-v-6d6a66c6]{margin-left:.3125rem;font-size:2.1875rem;font-weight:700;width:25rem;margin-bottom:1.5625rem;line-height:2.1875rem;position:relative}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-text .time-text-img[data-v-6d6a66c6]{position:absolute;top:0;left:9.375rem;width:2.5rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father[data-v-6d6a66c6]{width:100%;height:17.5rem;display:flex;justify-content:center;align-items:center}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-left[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-top:-4.6875rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark[data-v-6d6a66c6]{margin-left:1.5625rem;margin-top:1.875rem;width:23.84375rem;height:13.4375rem;border-radius:1.25rem;position:relative;display:flex;box-shadow:.0625rem 0 0 .0625rem;background-color:#16304c;border:.0625rem solid #fff}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-line[data-v-6d6a66c6]{width:1px;height:6.25rem;background:linear-gradient(to top,rgba(0,0,0,0),gray,rgba(0,0,0,0));margin-left:-.625rem;margin-right:.9375rem;margin-top:3.125rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:14.0625rem;position:relative}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-type[data-v-6d6a66c6]{position:absolute;top:0;left:-.78125rem;width:7.8125rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-font[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#414f6e}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-font-dark[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#fff}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-img[data-v-6d6a66c6]{width:7.1875rem;height:6.25rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-font[data-v-6d6a66c6]{font-size:1.09375rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-font-dark[data-v-6d6a66c6]{font-size:1.09375rem;color:#fff;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card[data-v-6d6a66c6]{margin-left:1.5625rem;margin-top:1.875rem;width:23.84375rem;height:13.4375rem;border-radius:1.25rem;position:relative;display:flex;border:.03125rem solid black;box-shadow:0 .25rem .5rem rgba(0,0,0,.3)}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-line[data-v-6d6a66c6]{width:1px;height:6.25rem;background:linear-gradient(to top,rgba(0,0,0,0),gray,rgba(0,0,0,0));margin-left:-.625rem;margin-right:.9375rem;margin-top:3.125rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:14.0625rem;position:relative}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-card-type[data-v-6d6a66c6]{position:absolute;top:0;left:-.78125rem;width:7.8125rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-card-font[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#414f6e}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-img[data-v-6d6a66c6]{width:7.1875rem;height:6.25rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-font[data-v-6d6a66c6]{font-size:1.09375rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-font-dark[data-v-6d6a66c6]{font-size:1.5625rem;color:#fff;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-right[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-top:-4.6875rem}.right-container .right-container-sec .right-container-right-father .right-container-right-title[data-v-6d6a66c6]{width:100%;height:5.3125rem;position:relative}.right-container .right-container-sec .right-container-right-father .right-container-right-title .right-container-right-text[data-v-6d6a66c6]{line-height:4.0625rem;font-size:1.25rem;font-weight:600;margin-left:1.875rem}.right-container .right-container-sec .right-container-right-father .right-container-right-title .right-container-right-text-dark[data-v-6d6a66c6]{line-height:4.0625rem;font-size:1.25rem;font-weight:600;margin-left:1.875rem;color:#fff}.right-container .right-container-sec .right-container-right-father .right-container-right-title .right-container-right-img[data-v-6d6a66c6]{position:absolute;top:1.875rem;right:1.5625rem;width:1.5625rem;height:.46875rem}.right-container .right-container-sec .right-container-left[data-v-6d6a66c6]{height:19.6875rem;border-radius:1.5625rem;border:.03125rem solid #fff;position:relative;display:flex;justify-content:center;align-items:center;background-color:rgba(255,255,255,.5);background-image:url(../../static/index/mountain.png);background-position:70% 45%;overflow:hidden;box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-sec .right-container-left-dark[data-v-6d6a66c6]{height:19.6875rem;border-radius:1.5625rem;background-color:#16304c;border:.0625rem solid transparent;background:url(../../static/index/cardbgc/bgcdark.png) padding-box,linear-gradient(45deg,#9bc4f8,#285399,#9bc4f8,#285399,#9bc4f8) border-box;background-clip:padding-box,border-box;background-color:rgba(12,25,47,.1);position:relative;display:flex;justify-content:center;align-items:center;overflow:hidden;box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-sec .uni-margin-wrap[data-v-6d6a66c6]{width:31.25rem}.right-container .right-container-sec .uni-margin-wrap .swiper[data-v-6d6a66c6]{height:21.875rem}.right-container .right-container-sec .uni-margin-wrap .swiper .swiper-item-flex[data-v-6d6a66c6]{display:flex;position:relative}.right-container .right-container-sec .uni-margin-wrap .swiper .swiper-item[data-v-6d6a66c6]{display:block;height:7.8125rem;line-height:9.375rem;text-align:center}.right-container .right-container-sec .right-container-fir-left-card-main-right[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-right:.3125rem;z-index:11}.right-container .right-container-sec .right-huli-fir[data-v-6d6a66c6]{width:7.8125rem;height:100%;margin-top:0;display:flex;justify-content:center;align-items:center;flex-direction:column}.right-container .right-container-sec .right-huli-fir .right-huli-view[data-v-6d6a66c6]{margin-left:.25rem;height:23.4375rem;overflow:auto;display:flex;justify-content:center;align-items:center;flex-direction:column;box-sizing:border-box}.right-container .right-container-sec .right-huli-fir .right-huli-view .right-huli-view-dis[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:100%;height:5.3125rem}.right-container .right-container-sec .right-huli-fir .right-huli-view .right-huli-view-dis .right-huli-img[data-v-6d6a66c6]{width:2.5rem;height:2.5rem}.right-container .right-container-sec .right-huli-fir .right-huli-view .right-huli-view-dis .right-huli-text[data-v-6d6a66c6]{width:100%;height:.3125rem;font-size:1.09375rem;text-align:center;margin-bottom:.15625rem}.right-container .right-container-sec .right-huli-fir .right-huli-view .right-huli-view-dis .right-huli-text-dark[data-v-6d6a66c6]{width:100%;height:.3125rem;font-size:1.09375rem;text-align:center;margin-bottom:.15625rem;color:#fff}.right-container .right-container-sec .right-huli-fir .right-huli-shang[data-v-6d6a66c6]{margin-top:1.25rem;width:.9375rem;height:.9375rem}.right-container .right-container-sec .right-huli-fir .right-huli-xia[data-v-6d6a66c6]{margin-bottom:1.25rem;width:.9375rem;height:.9375rem}.right-container .right-container-sec .right-container-photo[data-v-6d6a66c6]{display:flex;flex-direction:column;justify-content:center;align-items:center;margin-left:1.5625rem}.right-container .right-container-sec .right-container-photo .right-container-photo-img[data-v-6d6a66c6]{width:9.6875rem;height:10.9375rem;margin-bottom:.3125rem}.right-container .right-container-sec .right-container-photo .right-container-photo-text[data-v-6d6a66c6]{font-size:.9375rem;color:#324160}.right-container .right-container-sec .right-container-photo .right-container-photo-text-dark[data-v-6d6a66c6]{font-size:.9375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .right-container-fir-left-card-main-left[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-left:.9375rem}.right-container .right-container-sec .right-container-left-type[data-v-6d6a66c6]{position:absolute;top:1.3125rem;left:-.46875rem;width:7.34375rem;height:2.28125rem;z-index:10}.right-container .right-container-sec .right-container-left-font[data-v-6d6a66c6]{position:absolute;top:1.59375rem;left:1.5625rem;font-size:1.125rem;color:#fff;z-index:10}.right-container .right-container-sec .time-tra-thi[data-v-6d6a66c6]{margin-left:2.5rem;margin-top:2.1875rem;height:100%;width:17.1875rem;position:relative}.right-container .right-container-sec .time-tra-thi .time-text[data-v-6d6a66c6]{margin-left:.3125rem;font-size:1.09375rem;width:14.0625rem;margin-bottom:1.25rem;line-height:1.25rem}.right-container .right-container-sec .time-tra-thi .time-text-dark[data-v-6d6a66c6]{margin-left:.3125rem;color:#cdd6ea;font-size:1.09375rem;width:14.0625rem;margin-bottom:1.25rem;line-height:1.25rem}.right-container .right-container-sec .time-tra-thi .time-tra-thi-zhixing[data-v-6d6a66c6]{position:absolute;top:2.34375rem;left:14.0625rem}.right-container .right-container-sec .time-tra-thi .time-tra-thi-zhixing-font[data-v-6d6a66c6]{position:absolute;top:1.875rem;left:.3125rem;width:3.125rem;height:1.25rem;font-size:.78125rem;border-radius:.15625rem;color:#fff;z-index:10;background-color:#f37b5b;display:flex;justify-content:center;align-items:center}.right-container .right-container-sec .time-tra-thi .time-people-two[data-v-6d6a66c6]{display:flex;margin-top:1.25rem;margin-bottom:1.25rem}.right-container .right-container-sec .time-tra-thi .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.3125rem}.right-container .right-container-sec .time-tra-thi .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:.625rem}.right-container .right-container-sec .time-tra-thi .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:.625rem}.right-container .right-container-sec .time-tra-thi .time-people-thi[data-v-6d6a66c6]{display:flex}.right-container .right-container-sec .time-tra-thi .time-people-thi .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.15625rem;margin-left:.15625rem}.right-container .right-container-sec .time-tra-thi .time-people-thi .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:.625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.right-container .right-container-sec .time-tra-thi .time-people-thi .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:.625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.right-container .right-container-sec .time-tra-thi .time-button-view[data-v-6d6a66c6]{display:flex;margin-left:0;transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-thi .time-button-view .time-button-start[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to bottom,#af8ed7,#4d3e9b);border-left:.0625rem solid #fff;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem;margin-right:.78125rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-thi .time-button-view .time-button-end[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-thi .time-button-view .time-button-end-dark[data-v-6d6a66c6]{width:7.1875rem;height:2.5rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(0,0,0,.3);background:linear-gradient(to top,#6b87ba,#fff);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-thi .time-font[data-v-6d6a66c6]{font-size:2.1875rem;margin-top:3.75rem;margin-bottom:1.25rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .time-tra-thi .time-font-dark[data-v-6d6a66c6]{font-size:2.1875rem;margin-top:3.75rem;margin-bottom:1.25rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;font-weight:700}.right-container .right-container-sec .time-tra-thi .time-text-img[data-v-6d6a66c6]{position:absolute;top:0;left:9.375rem;width:2.5rem;height:2.5rem}.right-container .right-container-sec .time-tra-sec[data-v-6d6a66c6]{margin-left:2.5rem;margin-top:3.4375rem;height:100%;width:15.625rem;overflow:hidden}.right-container .right-container-sec .time-tra-sec .time-people-thi[data-v-6d6a66c6]{display:flex;margin-bottom:.46875rem}.right-container .right-container-sec .time-tra-sec .time-people-thi .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.15625rem;margin-left:.15625rem}.right-container .right-container-sec .time-tra-sec .time-people-thi .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:.625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.right-container .right-container-sec .time-tra-sec .time-people-thi .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:.625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.right-container .right-container-sec .time-tra-sec .time-button-view[data-v-6d6a66c6]{display:flex;margin-top:.9375rem;margin-left:0}.right-container .right-container-sec .time-tra-sec .time-button-view .time-button-start[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to top,#0da0b1,#04d3af);border-left:.0625rem solid #fff;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem;margin-right:.78125rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-sec .time-button-view .time-button-end[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-sec .time-button-view .time-button-end-dark[data-v-6d6a66c6]{width:7.1875rem;height:2.5rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(0,0,0,.3);background:linear-gradient(to top,#6b87ba,#fff);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-sec .time-font[data-v-6d6a66c6]{font-size:2.34375rem;margin-top:.9375rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .time-tra-sec .time-font-dark[data-v-6d6a66c6]{font-size:2.34375rem;margin-top:.9375rem;margin-bottom:.3125rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;font-weight:700}.right-container .right-container-sec .time-tra-sec .time-text-img[data-v-6d6a66c6]{position:absolute;top:0;left:9.375rem;width:2.5rem;height:2.5rem}.right-container .time-people-sec[data-v-6d6a66c6]{display:flex;margin-bottom:.3125rem}.right-container .time-people-sec .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.3125rem;margin-left:.15625rem;transition:all .4s ease-in-out}.right-container .time-people-sec .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:2.8125rem;transition:all .4s ease-in-out}.right-container .time-people-sec .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:2.8125rem;transition:all .4s ease-in-out}.right-container .right-container-fir[data-v-6d6a66c6]{width:100%;height:18.125rem;display:flex}.right-container .right-container-fir .right-container-fir-left-nav[data-v-6d6a66c6]{width:63%;height:17.125rem;position:relative;box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel[data-v-6d6a66c6]{position:absolute;left:29.0625rem;margin-top:.3125rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel[data-v-6d6a66c6]{position:relative;width:4.6875rem;height:3.125rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel .dots[data-v-6d6a66c6]{position:absolute;top:50%;right:.3125rem;transform:translateY(-50%);display:flex;flex-direction:column;gap:.21875rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel .dots .dot[data-v-6d6a66c6]{width:.3125rem;height:.3125rem;border-radius:50%;background-color:#657494;cursor:pointer;transition:background-color .3s ease}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel .dots .dot-dark[data-v-6d6a66c6]{width:.3125rem;height:.3125rem;border-radius:50%;background-color:#fff;cursor:pointer;transition:background-color .3s ease}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel .dots .dot.active[data-v-6d6a66c6]{background-color:#01a0fe}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card[data-v-6d6a66c6]{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:1.5625rem;border:.03125rem solid #fff;background-color:rgba(99,115,157,.1);background-image:url(../../static/index/mountain.png);background-position:60% 50%}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-dark[data-v-6d6a66c6]{position:absolute;top:0;left:0;width:100%;height:100%;border:.0625rem solid transparent;border-radius:1.5625rem;background:url(../../static/index/cardbgc/bgcdark.png) padding-box,linear-gradient(45deg,#9bc4f8,#285399,#9bc4f8,#285399,#9bc4f8) border-box;background-clip:padding-box,border-box;background-color:rgba(12,25,47,.1)}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;width:100%;height:100%}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .split-line-white-right-left[data-v-6d6a66c6]{width:.0625rem;height:25rem;background:linear-gradient(to top,rgba(0,0,0,0),#fff,rgba(0,0,0,0));margin-right:.625rem;position:relative}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .split-line-white-right-left .split-line-white-img[data-v-6d6a66c6]{position:absolute;top:0;left:-9.375rem;height:25rem;width:9.375rem;z-index:-1}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .uni-margin-wrap-fir[data-v-6d6a66c6]{width:100%}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .uni-margin-wrap-fir .swiper[data-v-6d6a66c6]{height:14.6875rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .uni-margin-wrap-fir .swiper .swiper-item-flex[data-v-6d6a66c6]{display:flex;margin-top:.9375rem;z-index:10}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .uni-margin-wrap-fir .swiper .swiper-item[data-v-6d6a66c6]{display:block;height:6.25rem;line-height:9.375rem;text-align:center}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-main-right[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-right:.78125rem;z-index:1}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir[data-v-6d6a66c6]{margin-top:1.25rem;margin-left:.9375rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-two[data-v-6d6a66c6]{display:flex}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-button-view[data-v-6d6a66c6]{display:flex;margin-top:.3125rem;margin-left:0}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-button-view .time-button-start[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to top,#047adb,#0ea7dd);border-left:.0625rem solid #fff;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem;margin-right:.78125rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-button-view .time-button-end[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-button-view .time-button-end-dark[data-v-6d6a66c6]{width:7.1875rem;height:2.5rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(0,0,0,.3);background:linear-gradient(to top,#6b87ba,#fff);transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-fir[data-v-6d6a66c6]{display:flex;margin-right:.625rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-fir .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.3125rem;margin-left:.15625rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-fir .time-people-font[data-v-6d6a66c6]{font-size:.9375rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-fir .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-font[data-v-6d6a66c6]{font-size:2.1875rem;margin-bottom:.9375rem;background:linear-gradient(to top,#334160,#687898);-webkit-background-clip:text;color:transparent;font-weight:700;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-font-dark[data-v-6d6a66c6]{font-size:2.1875rem;margin-bottom:.9375rem;background:linear-gradient(to right,#ebf4ff,#adc4e0);-webkit-background-clip:text;color:transparent;font-weight:700;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-text[data-v-6d6a66c6]{margin-left:.3125rem;font-size:1.09375rem;width:16.5625rem;margin-bottom:1.25rem;line-height:1.25rem;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-text-dark[data-v-6d6a66c6]{margin-left:.3125rem;color:#cdd6ea;font-size:1.09375rem;width:16.5625rem;margin-bottom:1.25rem;line-height:1.25rem;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;position:relative;margin-left:1.5625rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-zhixing[data-v-6d6a66c6]{position:absolute;top:.3125rem;left:27.1875rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-zhixing-font[data-v-6d6a66c6]{position:absolute;top:1.875rem;left:.3125rem;width:3.125rem;height:1.25rem;font-size:.78125rem;border-radius:.15625rem;color:#fff;z-index:10;background-color:#f37b5b;display:flex;justify-content:center;align-items:center}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-font[data-v-6d6a66c6]{font-size:1.0625rem;font-weight:350;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-font-dark[data-v-6d6a66c6]{font-size:1.0625rem;font-weight:350;transition:all .4s ease-in-out;color:#fff}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-laba-video[data-v-6d6a66c6]{width:100%;display:flex;justify-content:center;align-items:center;margin-top:.3125rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-laba-video .right-container-fir-left-card-main-laba[data-v-6d6a66c6]{width:1.40625rem;height:1.40625rem;margin-right:.15625rem;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-laba-video .right-container-fir-left-card-main-video[data-v-6d6a66c6]{width:1.40625rem;height:1.40625rem;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-img[data-v-6d6a66c6]{width:11.25rem;height:8.4375rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-main-left-up[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-right:0;margin-left:.625rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-hulilei[data-v-6d6a66c6]{position:absolute;top:1.3125rem;left:-.3125rem;width:6.875rem;height:2.28125rem;z-index:10}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-hulilei-font[data-v-6d6a66c6]{position:absolute;top:1.59375rem;left:1.40625rem;font-size:1.125rem;color:#fff;z-index:10}.right-container .right-container-fir .right-container-fir-right[data-v-6d6a66c6]{margin-left:2%;margin-right:2%;width:21.875rem;height:17.125rem;border-radius:1.5625rem;border:.03125rem solid #fff;background:url(../../static/index/rightbgi.png);background-size:cover;background-color:rgba(99,115,157,.1);box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-fir .right-container-fir-right-dark[data-v-6d6a66c6]{margin-left:2%;margin-right:2%;width:21.875rem;height:17.125rem;border-radius:1.5625rem;border:.03125rem solid #fff;background-color:#16304c;border:.0625rem solid transparent;background:url(../../static/index/cardbgc/bgcdark.png) padding-box,linear-gradient(45deg,#9bc4f8,#285399,#9bc4f8,#285399,#9bc4f8) border-box;background-clip:padding-box,border-box;background-color:rgba(12,25,47,.1);box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-fir .right-container-card[data-v-6d6a66c6]{margin-top:.78125rem;margin-left:1.25rem;position:relative}.right-container .right-container-fir .right-container-card .right-container-card-right[data-v-6d6a66c6]{position:absolute;right:0;top:0;width:3.75rem;height:10.9375rem;display:flex;align-items:center;justify-content:center;flex-direction:column;margin-bottom:.625rem;margin-right:.625rem}.right-container .right-container-fir .right-container-card .right-container-card-right .right-container-card-right-img[data-v-6d6a66c6]{width:1.875rem;height:1.875rem;margin-top:.3125rem}.right-container .right-container-fir .right-container-card .right-container-button[data-v-6d6a66c6]{display:flex;margin-left:-.625rem;margin-top:.71875rem}.right-container .right-container-fir .right-container-card .right-container-button .right-container-button-any[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:4.6875rem;position:relative}.right-container .right-container-fir .right-container-card .right-container-button .right-container-button-any .right-container-button-ray[data-v-6d6a66c6]{position:absolute;top:-.78125rem;left:0;width:4.9375rem;height:4.6875rem}.right-container .right-container-fir .right-container-card .right-container-button .right-container-button-any .right-container-button-text[data-v-6d6a66c6]{font-size:.78125rem;color:#313d56}.right-container .right-container-fir .right-container-card .right-container-button .right-container-button-img[data-v-6d6a66c6]{width:2.5rem;height:2.5rem}.right-container .right-container-fir .right-container-card .right-container-fenge[data-v-6d6a66c6]{width:100%;height:.0625rem;background:linear-gradient(to right,rgba(255,255,255,0),#fff,rgba(255,255,255,0))}.right-container .right-container-fir .right-container-card .right-container-tem[data-v-6d6a66c6]{display:flex;margin-top:.625rem;margin-bottom:.625rem}.right-container .right-container-fir .right-container-card .right-container-tem .right-container-tem-text[data-v-6d6a66c6]{font-size:1.5625rem;margin-right:2.1875rem}.right-container .right-container-fir .right-container-card .right-container-tem .right-container-tem-text-dark[data-v-6d6a66c6]{font-size:1.5625rem;margin-right:2.1875rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-fir .right-container-card .right-container-tem .right-container-tem-img[data-v-6d6a66c6]{width:2.03125rem;height:2.03125rem}.right-container .right-container-fir .right-container-card .right-container-title[data-v-6d6a66c6]{font-size:3.75rem;font-weight:500;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent;margin:0}.right-container .right-container-fir .right-container-card .right-container-title-dark[data-v-6d6a66c6]{font-size:3.75rem;display:block;margin:0;font-weight:500;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-fir .right-container-card .right-container-date[data-v-6d6a66c6]{font-size:1.09375rem;display:block;margin:0;margin-left:.5625rem;margin-bottom:.3125rem}.right-container .right-container-fir .right-container-card .right-container-date-dark[data-v-6d6a66c6]{font-size:1.09375rem;color:#7080a1;display:block;margin:0;margin-left:.5625rem;margin-bottom:.3125rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-fir .right-container-card .right-container-day[data-v-6d6a66c6]{font-size:1.09375rem;font-weight:600;margin-left:.5625rem}.right-container .right-container-fir .right-container-card .right-container-day-dark[data-v-6d6a66c6]{font-size:1.09375rem;font-weight:600;margin-left:.5625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-title-nav[data-v-6d6a66c6]{margin-top:2.34375rem;margin-bottom:.625rem;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-no[data-v-6d6a66c6]{font-size:1.09375rem;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-no-dark[data-v-6d6a66c6]{font-size:1.09375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-class[data-v-6d6a66c6]{font-size:1.09375rem;font-weight:800;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-class-dark[data-v-6d6a66c6]{font-size:1.09375rem;font-weight:800;margin-left:.625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-title-nav .right-container-title-class-anhei-button[data-v-6d6a66c6]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.9375rem;width:6.25rem;height:1.5625rem;background-color:#000;border:.0625rem solid}.right-container .right-container-title-nav .right-container-title-class-anhei-button .right-container-title-class-anhei[data-v-6d6a66c6]{font-size:.625rem;font-weight:800;color:#fff}.split-line[data-v-6d6a66c6]{margin-left:.625rem;margin-top:3.75rem;width:.0625rem;height:4.6875rem;background:linear-gradient(to top,rgba(0,0,0,0),#92a7c5,rgba(0,0,0,0))}.split-line-white-sec[data-v-6d6a66c6]{width:.0625rem;height:25rem;background:linear-gradient(to top,rgba(0,0,0,0),#fff,rgba(0,0,0,0));position:relative}.split-line-white-sec .split-line-white-img[data-v-6d6a66c6]{position:absolute;top:0;left:-9.375rem;height:25rem;width:9.375rem;pointer-events:none}.card-upfaguang[data-v-6d6a66c6]{position:absolute;top:8.28125rem;left:1.5625rem;height:18.75rem;width:15.625rem;transition:all .4s ease-in-out}.card-upfaguang-down[data-v-6d6a66c6]{position:absolute;top:19.375rem;left:26.875rem;height:18.75rem;width:15.625rem}.right-huli-sec[data-v-6d6a66c6]{margin-left:.21875rem;width:7.1875rem;height:100%;display:flex;justify-content:center;align-items:center;flex-direction:column;transition:all .4s ease-in-out}.right-huli-sec .right-huli-view[data-v-6d6a66c6]{width:100%;overflow:auto;display:flex;justify-content:center;align-items:flex-start;flex-direction:column;height:14.0625rem}.right-huli-sec .right-huli-view .right-huli-view-dis[data-v-6d6a66c6]{height:4.375rem;display:flex;justify-content:center;align-items:center;flex-direction:column;width:100%;transition:all .4s ease-in-out}.right-huli-sec .right-huli-view .right-huli-view-dis .right-huli-img[data-v-6d6a66c6]{width:2.8125rem;height:2.8125rem}.right-huli-sec .right-huli-view .right-huli-view-dis .right-huli-text[data-v-6d6a66c6]{width:100%;height:.46875rem;text-align:center;font-size:1.09375rem}.right-huli-sec .right-huli-view .right-huli-view-dis .right-huli-text-dark[data-v-6d6a66c6]{width:100%;height:.46875rem;text-align:center;font-size:1.09375rem;color:#fff;margin-top:.3125rem}.right-huli-sec .right-huli-shang[data-v-6d6a66c6],.right-huli-sec .right-huli-xia[data-v-6d6a66c6]{width:.9375rem;height:.625rem}.right-container-fir-left-card-flex[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;width:100%;height:100%;margin-left:.625rem}.right-container-fir-left-card-flex-sec[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;width:100%;height:100%;position:relative}.right-container-fir-left-card-flex-sec .right-container-fir-left-card-flex-sec-img[data-v-6d6a66c6]{position:absolute;top:1.3125rem;left:-.3125rem;width:6.875rem;height:2.28125rem;z-index:10}.right-container-fir-left-card-flex-sec .right-container-fir-left-card-flex-sec-font[data-v-6d6a66c6]{position:absolute;top:1.59375rem;left:1.40625rem;font-size:1.125rem;color:#fff;z-index:10}.right-container-fir-left-card-flex-sec .right-container-fir-left-card-flex-sec-imgright-fir[data-v-6d6a66c6]{position:absolute;width:3.125rem;height:1.5625rem;top:1.59375rem;left:20.3125rem;z-index:10}.right-container-fir-left-card-flex-sec .right-container-fir-left-card-flex-sec-imgright-sec[data-v-6d6a66c6]{position:absolute;width:3.125rem;height:1.5625rem;top:1.59375rem;left:20.9375rem;z-index:10}.savehundred[data-v-6d6a66c6]{width:100%;height:100%}.mt[data-v-6d6a66c6]{margin-top:1.5625rem}.progress-bar-container[data-v-6d6a66c6]{margin-top:.9375rem;width:60%;height:.625rem;background-color:#aab9d6;border-radius:15px;overflow:hidden}.progress-bar[data-v-6d6a66c6]{height:100%;background:linear-gradient(to top,#047adb,#0ea7dd);border-radius:15px 0 0 15px;transition:width .3s ease}.under-father[data-v-6d6a66c6]{position:fixed;bottom:0;display:flex;align-items:center;width:100%;height:4.6875rem}.under-father .under-father-view[data-v-6d6a66c6]{margin-left:.3125rem;margin-right:4.6875rem;position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column}.under-father .under-father-view .under-father-light[data-v-6d6a66c6]{position:absolute;bottom:-.625rem;left:-2.8125rem;width:9.375rem;height:6.25rem}.under-father .under-father-view .under-father-img[data-v-6d6a66c6]{width:2.5rem;height:2.5rem;margin-left:-.09375rem}.under-father .under-father-view .under-father-img-font[data-v-6d6a66c6]{font-size:.9375rem}.under-father .under-father-view .under-father-img-font-dark[data-v-6d6a66c6]{font-size:.9375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-icons[data-v-6d6a66c6]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.right-icons .right-icons-font[data-v-6d6a66c6]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-icons .right-icons-font-dark[data-v-6d6a66c6]{color:#fff;margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-icons .right-icons-img[data-v-6d6a66c6]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-1.25rem}.right-icons .right-icons-img-icon[data-v-6d6a66c6]{width:1.875rem;height:2.5rem;margin-top:-.3125rem;margin-left:.25rem}.swiper-item-flex .time-tra-thi-photo[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;width:9.375rem;flex-direction:column;transition:all .4s ease-in-out;margin-left:.625rem}.swiper-item-flex .time-tra-thi-photo .time-tra-thi-photo-img[data-v-6d6a66c6]{width:10.3125rem;height:10.3125rem;margin-top:-3.125rem;margin-left:-1.5625rem;transition:all .4s ease-in-out}.swiper-item-flex .time-tra-thi-photo .time-tra-thi-photo-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:1.5625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;transition:all .4s ease-in-out}.swiper-item-flex .time-tra-thi-photo .time-tra-thi-photo-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:1.5625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;transition:all .4s ease-in-out}.down-icons[data-v-6d6a66c6]{margin-top:.3125rem;width:100%;height:1.875rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-6d6a66c6]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.right-container-big[data-v-6d6a66c6]{transform:scale(1.562);transition:transform .5s ease;transform-origin:left top;background-color:#dce6fe;border-radius:.9375rem}.right-container-small[data-v-6d6a66c6]{transform:scale(1);transition:transform .5s ease;transform-origin:left top;background-color:#dce6fe;border-radius:1.5625rem;z-index:998}.right-container-right-big[data-v-6d6a66c6]{transform:scale(1.923);margin-left:2%;width:41%;transition:transform .5s ease;transform-origin:right bottom;background-color:#dce6fe;border-radius:.90625rem}.right-container-right-small[data-v-6d6a66c6]{transform:scale(1);margin-left:2%;width:41%;transition:transform .5s ease;transform-origin:right bottom;background-color:#dce6fe;border-radius:1.5625rem}.right-container-left-big[data-v-6d6a66c6]{transform:scale(1.781);width:55%;transition:transform .5s ease;transform-origin:left bottom;background-color:#b7c8f3;border-radius:.90625rem}.right-container-left-small[data-v-6d6a66c6]{transform:scale(1);width:55%;transition:transform .5s ease;transform-origin:left bottom;background-color:#b7c8f3;border-radius:1.5625rem}.super-card[data-v-81c0d68b]{display:flex;justify-content:center;width:100%;height:calc(100% - 12.5rem)}.super-card .scroll-x[data-v-81c0d68b]{height:100%;width:100%}.super-card .super-card-container[data-v-81c0d68b]{background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;overflow:hidden;width:51.5625rem;height:28.75rem;border-radius:.625rem;border:.0625rem solid #fff;box-shadow:.3125rem .3125rem 20px rgba(0,0,0,.1);position:relative}.super-card .super-card-time[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;height:2.5rem;width:3.125rem;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;font-weight:700;z-index:-1}.super-card .super-card-time-und[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;width:3.125rem;flex-direction:column;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1}.super-card .super-card-time-card[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;height:6.53125rem;width:100%;transition:all .8s;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.right-container[data-v-81c0d68b]{width:calc(100% - 7.34375rem);height:100vh;transition:opacity 1s ease;position:relative}.right-container .move-font[data-v-81c0d68b]{position:absolute;font-size:1.09375rem;font-weight:700}.right-container .doctorsay-container-view[data-v-81c0d68b]{width:100%;height:38.125rem;display:flex}.right-container .doctorsay-container-view .doctorsay-container-items[data-v-81c0d68b]{width:9.6875rem;height:38.125rem;margin-left:.9375rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up[data-v-81c0d68b]{display:flex;flex-wrap:wrap}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up .doctorsay-container-card[data-v-81c0d68b]{display:flex;flex-direction:column;justify-content:center;align-items:center;background-color:#ddeafa;width:4.0625rem;height:4.0625rem;margin:0 .5625rem .46875rem 0;border-radius:.9375rem;border:.0625rem solid #ddeafa;box-shadow:5px 5px 10px rgba(105,129,178,.2)}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up .doctorsay-container-card .doctorsay-container-card-img[data-v-81c0d68b]{width:2.34375rem;height:2.34375rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up .doctorsay-container-card .doctorsay-container-card-font[data-v-81c0d68b]{font-size:.9375rem;margin-top:-.3125rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up .doctorsay-container-card .doctorsay-container-card-font-dark[data-v-81c0d68b]{font-size:.9375rem;color:#fff;margin-top:-.3125rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down[data-v-81c0d68b]{background-color:#ddeafa;-webkit-backdrop-filter:blur(.25rem);backdrop-filter:blur(.25rem);width:9.0625rem;height:28.125rem;border-radius:.9375rem;margin-top:0;box-shadow:5px 5px 10px rgba(105,129,178,.8)}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-scroll[data-v-81c0d68b]{height:24.0625rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-top[data-v-81c0d68b]{height:2.5rem;display:flex;margin-bottom:.625rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-top .doctorsay-top-gun[data-v-81c0d68b]{margin-top:1.15625rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-top .doctorsay-top-font[data-v-81c0d68b]{font-size:1.0625rem;font-weight:700;margin-top:1.0625rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;height:2.8125rem;position:relative}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button .doctorsay-container-text-target[data-v-81c0d68b]{color:#016ad1;background-color:#c9e8ff;border-radius:.78125rem;border:.0625rem solid #fff;width:9.375rem;height:3.125rem;display:flex;justify-content:center;align-items:center;text-align:center;font-size:1.40625rem;transition:all .4s ease-in-out;box-shadow:5px 5px 10px rgba(105,129,178,.2);z-index:20;font-weight:700}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button .doctorsay-container-text[data-v-81c0d68b]{background-color:#f3f6fc;border:.0625rem solid #fff;border-radius:.78125rem;width:7.8125rem;height:2.34375rem;display:flex;justify-content:center;align-items:center;text-align:center;transition:all .4s ease-in-out;font-weight:500;font-size:.9375rem;box-shadow:5px 5px 10px rgba(105,129,178,.2)}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button .doctorsay-container-button-gun[data-v-81c0d68b]{position:absolute;top:.59375rem;left:.03125rem;width:.3125rem;height:1.5625rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button .doctorsay-container-button-uplight[data-v-81c0d68b]{position:absolute;top:1.25rem;left:.625rem;width:7.8125rem;height:1.5625rem;z-index:21;transition:all .4s ease-in-out}.right-container .doctorsay-container-view .doctorsay-container-container[data-v-81c0d68b]{border:.0625rem solid #fff;width:53.9375rem;height:41.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.3);-webkit-backdrop-filter:blur(.625rem);backdrop-filter:blur(.625rem);background-blend-mode:screen;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);overflow:hidden}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end[data-v-81c0d68b]{width:100%;display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father[data-v-81c0d68b]{height:100%;display:flex;flex-direction:column;width:100%}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items-all[data-v-81c0d68b]{width:calc(100% - 2.65625rem);height:6.25rem;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items[data-v-81c0d68b]{display:flex;width:calc(100% - 2.65625rem);height:6.25rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father[data-v-81c0d68b]{margin-right:.625rem;width:4.6875rem;height:4.6875rem;display:flex;justify-content:center;align-items:center;flex-direction:column;position:relative;background:linear-gradient(to bottom right,#fff,#dcdcf9,#dbdcf8);border-radius:.9375rem;border:.0625rem solid #fff;box-shadow:.3125rem .3125rem .625rem rgba(105,129,178,.2);transition:all 1.5s ease-in-out}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-father-close-father[data-v-81c0d68b]{width:1.25rem;height:1.25rem;border-radius:50%;display:flex;background-color:#0184db;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;color:#fff}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father[data-v-81c0d68b]{width:3.125rem;height:3.125rem;border-radius:50%;display:flex;justify-content:center;align-items:center}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father .super-end-items-img[data-v-81c0d68b]{width:2.65625rem;height:2.65625rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father-active[data-v-81c0d68b]{width:3.125rem;height:3.125rem;border-radius:50%;display:flex;justify-content:center;align-items:center;animation:shake-81c0d68b .5s infinite}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father-active .super-end-items-img[data-v-81c0d68b]{width:2.65625rem;height:2.65625rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-font[data-v-81c0d68b]{margin-top:-.3125rem;font-size:.78125rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-font-father[data-v-81c0d68b]{display:flex;margin-top:.625rem;margin-bottom:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-font-father .super-end-font-gun[data-v-81c0d68b]{margin-left:1.25rem;margin-right:.625rem;margin-top:.15625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-font-father .super-end-font-font[data-v-81c0d68b]{font-size:1.1875rem;font-weight:700}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title[data-v-81c0d68b]{width:100%;height:3.28125rem;display:flex;align-items:center;justify-content:space-between}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right[data-v-81c0d68b]{height:100%;display:flex;align-items:center;width:12.5rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-juzhen[data-v-81c0d68b]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father[data-v-81c0d68b]{display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button-target[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;background-color:#3fa9f5;color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;background-color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-cheng[data-v-81c0d68b]{background-color:#ffdba1;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-zi[data-v-81c0d68b]{background-color:#7b61ff;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-kuai-font[data-v-81c0d68b]{font-size:1rem;margin-left:.3125rem;margin-right:.78125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left[data-v-81c0d68b]{display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-share[data-v-81c0d68b]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-left:.625rem;margin-top:-.09375rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-gun[data-v-81c0d68b]{margin-top:.21875rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-font[data-v-81c0d68b]{font-size:1.1875rem;font-weight:700}.right-container .right-container-title-nav[data-v-81c0d68b]{margin-top:2.34375rem;margin-bottom:.625rem;margin-left:.625rem}.right-container .right-container-title-nav .right-icons[data-v-81c0d68b]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-font[data-v-81c0d68b]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-font-dark[data-v-81c0d68b]{color:#fff;margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-img[data-v-81c0d68b]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-img-icon[data-v-81c0d68b]{width:1.875rem;height:2.5rem;margin-top:-.3125rem;margin-left:.25rem}.right-container .right-container-title-nav .right-container-title-no[data-v-81c0d68b]{font-size:1.09375rem;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-no-dark[data-v-81c0d68b]{font-size:1.09375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-class[data-v-81c0d68b]{font-size:1.09375rem;font-weight:800;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-class-dark[data-v-81c0d68b]{font-size:1.09375rem;font-weight:800;margin-left:.625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-title-nav .right-container-title-class-anhei-button-wrong[data-v-81c0d68b]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.46875rem;width:6.25rem;height:1.5625rem;background-color:#fff}.right-container .right-container-title-nav .right-container-title-class-anhei-button-wrong .right-container-title-class-anhei[data-v-81c0d68b]{font-size:.9375rem;font-weight:800}.right-container .right-container-title-nav .right-container-title-class-anhei-button[data-v-81c0d68b]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.625rem;width:6.25rem;height:1.5625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff)}.right-container .right-container-title-nav .right-container-title-class-anhei-button .right-container-title-class-anhei[data-v-81c0d68b]{font-size:.9375rem;font-weight:800;color:#fff}.title-time-delete[data-v-81c0d68b]{width:1.71875rem;height:1.71875rem;border-radius:50%;display:flex;background-color:#fff;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;background-color:#02abfe;color:#fff;z-index:999;font-size:1.5625rem}.title-time-blue[data-v-81c0d68b]{position:absolute;top:0;left:0;z-index:10}.title-time-blue .title-time-blue-img[data-v-81c0d68b]{height:6.53125rem;width:8.59375rem}.title-time[data-v-81c0d68b]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-81c0d68b]{font-size:1rem;margin-left:1.25rem;margin-top:.375rem}.title-time .title-time-button[data-v-81c0d68b]{position:absolute;top:-.125rem;right:-.125rem;width:2.03125rem;height:1.875rem}.title-time .title-time-zhejiao[data-v-81c0d68b]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.title-time .title-time-font[data-v-81c0d68b]{position:absolute;top:.21875rem;right:.15625rem;font-size:.625rem;color:#fff}.popup-delete[data-v-81c0d68b]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-delete .popup-delete-content[data-v-81c0d68b]{position:absolute;right:16.09375rem;display:flex;flex-direction:column;align-items:center;width:25rem;height:15.625rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.7);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-delete .popup-delete-content .popup-delete-img[data-v-81c0d68b]{width:7.8125rem;height:7.1875rem;margin-top:1.25rem;margin-bottom:.625rem}.popup-delete .popup-delete-content .popup-delete-text[data-v-81c0d68b]{font-size:.9375rem;color:#42474e}.popup-delete .popup-delete-content .popup-delete-button[data-v-81c0d68b]{display:flex;justify-content:space-around;height:2.8125rem;margin-top:.9375rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-left[data-v-81c0d68b]{background-color:#02abfe;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-right[data-v-81c0d68b]{background-color:#ced9e8;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;margin-right:.625rem}.popup-overlay[data-v-81c0d68b]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;z-index:999}.popup-overlay .popup-overlay-content[data-v-81c0d68b]{position:absolute;display:flex;align-items:center;width:25rem;height:12.1875rem;background-color:#fff;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-overlay .popup-overlay-content .popup-overlay-content-left[data-v-81c0d68b]{height:100%;width:10.9375rem;display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-img[data-v-81c0d68b]{width:8.75rem;height:5.625rem;margin-top:-.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-font[data-v-81c0d68b]{font-size:.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right[data-v-81c0d68b]{height:100%;width:14.0625rem;position:relative}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-font[data-v-81c0d68b]{font-size:1.5625rem;margin-top:3.125rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-text[data-v-81c0d68b]{margin-left:.3125rem;font-size:.9375rem;width:11.875rem;margin-bottom:1.5625rem;line-height:1.09375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richang[data-v-81c0d68b]{background-color:#ffc363;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richangnot[data-v-81c0d68b]{background-color:#7b61ff;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem;color:#fff}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-crush[data-v-81c0d68b]{position:absolute;top:.625rem;right:.625rem;width:2.1875rem;height:2.1875rem;animation:shake-81c0d68b .5s 3}.popup-song[data-v-81c0d68b]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-song .popup-song-contain[data-v-81c0d68b]{position:absolute;right:17.8125rem;width:40.5rem;background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.7);border:.0625rem solid #fff;background-blend-mode:screen;border-radius:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-song .popup-song-contain .shu-container-left[data-v-81c0d68b]{display:flex;margin-top:2.1875rem;margin-bottom:.625rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-gun[data-v-81c0d68b]{margin-top:.15625rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-font[data-v-81c0d68b]{font-size:1.09375rem;font-weight:700}.popup-song-father[data-v-81c0d68b]{position:relative}.popup-song-father .shu-up-img[data-v-81c0d68b]{position:absolute;top:-2.1875rem;left:9.53125rem;width:21.875rem;height:2.5rem}.popup-song-father .shu-up-font[data-v-81c0d68b]{position:absolute;top:-1.5625rem;left:12.1875rem;display:flex;color:#ff5a00}.popup-song-father .arrayindex[data-v-81c0d68b]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem}.popup-song-father .arrayindex .arrayindex-one[data-v-81c0d68b]{width:12.03125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .arrayindex .arrayindex-one-target[data-v-81c0d68b]{width:12.03125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.ri-img[data-v-81c0d68b]{position:absolute;top:-.125rem;right:-.125rem;width:1.875rem;height:1.875rem}.time-father[data-v-81c0d68b]{display:flex;width:100%;flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem}.time-father .time-one[data-v-81c0d68b]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-target[data-v-81c0d68b]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-hui[data-v-81c0d68b]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#c2c9d3;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.button-father[data-v-81c0d68b]{height:6.25rem;width:calc(100%-2.5rem);display:flex;justify-content:center;align-items:center;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem;border-top:.03125rem solid #e6e6e6}.button-father .button-father-right[data-v-81c0d68b]{background:linear-gradient(to right,#00c9ff,#0076ff);width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.button-father .button-father-wrong[data-v-81c0d68b]{background-color:#c2c9d3;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center}.month-father[data-v-81c0d68b]{display:flex;width:calc(100% - 1.875rem);flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem;margin-top:.625rem}.month-father .month-one[data-v-81c0d68b]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.month-father .month-one-target[data-v-81c0d68b]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father[data-v-81c0d68b]{display:flex;width:100%;flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem;margin-top:.625rem}.week-father .week-one[data-v-81c0d68b]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father .week-one-target[data-v-81c0d68b]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.radio-father[data-v-81c0d68b]{display:flex;width:100%;flex-wrap:wrap;margin-left:2.34375rem;margin-right:.9375rem}.radio-father .radio-circle[data-v-81c0d68b]{margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid black;background-color:transparent}.radio-father .radio-circle-target[data-v-81c0d68b]{position:relative;margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-father .radio-circle-target[data-v-81c0d68b]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.625rem;height:.625rem;background-color:#02abfe;border-radius:50%}.radio-father .radio-font[data-v-81c0d68b]{margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.title-time-border[data-v-81c0d68b]{margin-top:.125rem;margin-left:.125rem;width:calc(100% - .25rem);height:calc(100% - .25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column}.title-time-border-red[data-v-81c0d68b]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,red,red) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,red,red) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom right / .25rem 1.875rem no-repeat}.title-time-border-big[data-v-81c0d68b],.title-time-border-big-top[data-v-81c0d68b]{transform:scale(1.5);transform-origin:top;border-top:0 solid #fff;transition:transform .5s ease-out,opacity .5s ease-out;z-index:999;display:flex;justify-content:center;align-items:center;height:6.53125rem;width:100%;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.title-time-border-blue[data-v-81c0d68b]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,#0184db,#0184db) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,#0184db,#0184db) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom right / .25rem 1.875rem no-repeat}.title-time-border-yellow[data-v-81c0d68b]{margin:.3125rem;border:.0625rem solid #d0d8e0;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-yellow-active-transparent[data-v-81c0d68b]{margin:.3125rem;border:.125rem dashed #ff8a00;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .8125rem);height:calc(100% - .8125rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-yellow-active[data-v-81c0d68b]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-81c0d68b .8s infinite;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-pouple-active-transparent[data-v-81c0d68b]{margin:.3125rem;border:.125rem dashed #7B61FF;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .8125rem);height:calc(100% - .8125rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.title-time-border-pouple[data-v-81c0d68b]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.title-time-border-pouple-active[data-v-81c0d68b]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-81c0d68b 1s infinite;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.down-icons[data-v-81c0d68b]{margin-top:.3125rem;width:100%;height:1.875rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-81c0d68b]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}@keyframes shake-81c0d68b{0%{transform:rotate(-10deg)}25%{transform:rotate(10deg)}50%{transform:rotate(-10deg)}75%{transform:rotate(10deg)}to{transform:rotate(-10deg)}}@keyframes shakesmall-81c0d68b{0%{transform:rotate(-2deg)}25%{transform:rotate(2deg)}50%{transform:rotate(-2deg)}75%{transform:rotate(2deg)}to{transform:rotate(-2deg)}}.boom[data-v-81c0d68b]{position:absolute;top:2.5rem;left:0;width:1.3125rem;height:26.25rem;display:flex;flex-direction:column;align-items:center;overflow:hidden;z-index:10}.boom .boom-son[data-v-81c0d68b]{height:6.5625rem;width:100%;font-size:.9375rem;letter-spacing:.15625rem;-webkit-writing-mode:vertical-rl;writing-mode:vertical-rl;text-align:center;z-index:10;background:linear-gradient(to bottom,#ffe2b2,#e3deff);border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.boom .boom-son-target[data-v-81c0d68b]{height:6.5625rem;width:100%;font-size:.9375rem;letter-spacing:.15625rem;-webkit-writing-mode:vertical-rl;writing-mode:vertical-rl;text-align:center;z-index:10;background:linear-gradient(to bottom,#ff8a00,#eceaff);border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.popup-share[data-v-81c0d68b]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-share .popup-share-content[data-v-81c0d68b]{position:absolute;right:16.09375rem;display:flex;flex-direction:column;width:25rem;height:11.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.7);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-share .popup-share-content .popup-share-title[data-v-81c0d68b]{margin:.9375rem;font-size:1.25rem;position:relative}.popup-share .popup-share-content .popup-share-title .popup-share-img[data-v-81c0d68b]{position:absolute;top:0;right:0;width:6.25rem;height:6.25rem}.popup-share .popup-share-content .popup-share-upcontent[data-v-81c0d68b]{margin:0 .9375rem;display:flex;justify-content:space-between}.popup-share .popup-share-content .popup-share-upcontent .popup-share-font[data-v-81c0d68b]{font-size:1.09375rem;color:gray}.popup-share .popup-share-content .popup-share-gray[data-v-81c0d68b]{background-color:#d3d3d3;width:calc(100% - 1.875rem);height:.0625rem;margin:3.4375rem .9375rem 0}.popup-share .popup-share-content .popup-share-downcontent[data-v-81c0d68b]{display:flex;justify-content:space-between;align-items:center;height:100%;margin:0 .9375rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-img[data-v-81c0d68b]{width:2.1875rem;height:2.1875rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-font[data-v-81c0d68b]{font-size:.84375rem;margin-left:.625rem}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-left[data-v-81c0d68b]{display:flex;align-items:center}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-button[data-v-81c0d68b]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.46875rem .9375rem;border-radius:.625rem;font-size:1rem}.move-circle[data-v-3df4b966]{position:absolute;bottom:0;left:0;width:10.9375rem;height:10.9375rem;display:flex;justify-content:center;align-items:center;z-index:99;touch-action:none}.move-circle .click-box-top[data-v-3df4b966]{position:absolute;top:.625rem;left:2.1875rem;width:6.875rem;height:2.5rem}.move-circle .click-box-bottom[data-v-3df4b966]{position:absolute;bottom:.625rem;left:2.1875rem;width:6.875rem;height:2.5rem}.move-circle .click-box-left[data-v-3df4b966]{position:absolute;bottom:3.125rem;left:0;width:2.8125rem;height:4.6875rem}.move-circle .click-box-right[data-v-3df4b966]{position:absolute;bottom:3.125rem;right:0;width:2.8125rem;height:4.6875rem}.move-circle .click-box-center[data-v-3df4b966]{position:absolute;bottom:4.0625rem;right:4.0625rem;width:2.8125rem;height:2.8125rem}.move-circle-all[data-v-3df4b966]{width:10.9375rem;height:10.9375rem}.light-shadow[data-v-3df4b966]{position:absolute;width:1.25rem;height:1.25rem;background-color:transparent;border:1.875rem solid #3da6ff;border-radius:50%;pointer-events:none;opacity:1}.ripple-loop[data-v-3df4b966]{animation:rippleLoop-3df4b966 1.2s ease-out infinite}.ripple-once[data-v-3df4b966]{animation:rippleLoop-3df4b966 1.2s ease-out forwards}@keyframes rippleLoop-3df4b966{0%{transform:translate(-50%,-50%) scale(.5);opacity:.6}to{transform:translate(-50%,-50%) scale(2.5);opacity:0}}.light-circle[data-v-3df4b966]{position:relative;width:150px;height:150px;border-radius:50%;background:#111;overflow:visible}.circle[data-v-3df4b966]{position:relative;width:150px;height:150px;border-radius:50%;background:#222;margin:50px}.pulse-circle[data-v-3df4b966]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border-radius:50%;background:radial-gradient(circle,#03a4ff 0%,transparent 70%);animation:pulse-3df4b966 3s forwards}@keyframes pulse-3df4b966{0%{width:0;height:0;opacity:.8}50%{width:10.9375rem;height:10.9375rem;opacity:.4}to{width:0;height:0;opacity:0}}.super-card[data-v-bd7a2b2a]{display:flex;width:100%;height:calc(100% - 12.5rem)}.super-card .scroll-x[data-v-bd7a2b2a]{height:100%;width:100%}.super-card .right-cards[data-v-bd7a2b2a]{width:14.53125rem;height:37.1875rem;border:.0625rem solid #fff;border-top-right-radius:.625rem;border-bottom-right-radius:.625rem}.super-card .right-cards .scroll-box[data-v-bd7a2b2a]{width:100%;height:9.0625rem}.super-card .right-cards .scroll-box .right-box[data-v-bd7a2b2a]{height:10.9375rem;display:flex;flex-direction:column;flex-wrap:wrap;align-content:flex-start}.super-card .right-cards .scroll-box .right-box .right-box-item[data-v-bd7a2b2a]{margin:.3125rem 0 0 .3125rem;width:3.75rem;height:4rem;border-radius:.625rem;background-color:#fff;position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-img[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-font[data-v-bd7a2b2a]{font-size:.625rem;margin-top:-.3125rem}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-items[data-v-bd7a2b2a]{display:flex;justify-content:space-around;align-items:center}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-items .right-box-items-button[data-v-bd7a2b2a]{width:.78125rem;height:.78125rem;margin:0 .09375rem}.super-card .right-cards .scroll-box .right-box .title-time-button[data-v-bd7a2b2a]{position:absolute;top:0;right:0;width:1.71875rem;height:1.40625rem}.super-card .right-cards .scroll-box .right-box .title-time-font[data-v-bd7a2b2a]{position:absolute;top:.15625rem;right:.09375rem;font-size:.53125rem;color:#fff}.super-card .time-father[data-v-bd7a2b2a]{border-radius:.625rem;height:97%;width:95%;margin-top:6%;margin-left:6%;background-color:rgba(255,255,255,.3)}.super-card .time-father .time-button[data-v-bd7a2b2a]{width:4.375rem;height:1.875rem;margin-top:.9375rem;margin-left:.9375rem;border-radius:.625rem;background-color:#369fef;border:.15625rem solid #369fef;display:flex}.super-card .time-father .time-button .time-button-month[data-v-bd7a2b2a]{width:50%;height:100%;color:#fff;display:flex;justify-content:center;align-items:center}.super-card .time-father .time-button .time-button-month-target[data-v-bd7a2b2a]{width:50%;height:100%;background-color:#fff;color:#369fef;display:flex;justify-content:center;align-items:center;border-bottom-left-radius:.46875rem;border-top-left-radius:.46875rem}.super-card .time-father .time-button .time-button-week-target[data-v-bd7a2b2a]{width:50%;height:100%;display:flex;justify-content:center;align-items:center;color:#fff}.super-card .time-father .time-button .time-button-week[data-v-bd7a2b2a]{width:50%;height:100%;color:#369fef;display:flex;justify-content:center;align-items:center;background-color:#fff;border-bottom-right-radius:.46875rem;border-top-right-radius:.46875rem}.super-card .under-button[data-v-bd7a2b2a]{width:13.75rem;height:2.96875rem;margin-left:.3125rem;margin-top:.3125rem;border-radius:.625rem;background-color:#e5e9f9;display:flex;align-items:center;position:relative}.super-card .under-button .under-button-black[data-v-bd7a2b2a]{transition:all 1s;position:absolute;width:9.375rem;height:3.125rem;border-radius:.625rem;padding-left:.3125rem;background-color:#4d4d4d;top:-3.125rem;left:0;color:#fff;display:flex;justify-content:center;align-items:center}.super-card .under-button .under-button-black .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;bottom:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-top:.625rem solid #4d4d4d}.super-card .under-button .white-circle-click-father[data-v-bd7a2b2a]{position:relative;margin-left:.625rem;color:#fff;margin-top:.3125rem}.super-card .under-button .white-circle-click-father .white-circle-click[data-v-bd7a2b2a]{width:4.6875rem;height:2.1875rem}.super-card .under-button .white-circle-click-father .white-circle-font[data-v-bd7a2b2a]{position:absolute;top:.46875rem;left:1.875rem}.super-card .under-button .white-circle[data-v-bd7a2b2a]{width:2.1875rem;height:2.1875rem;border-radius:50%;margin-left:.3125rem;background-color:#fff;display:flex;justify-content:center;align-items:center}.super-card .under-button .white-circle .white-circle-img[data-v-bd7a2b2a]{width:1.25rem;height:1.25rem}.super-card .middle-box[data-v-bd7a2b2a]{width:100%;height:24.375rem;display:flex;overflow:hidden}.super-card .middle-box .middle-left-box[data-v-bd7a2b2a]{margin-left:.3125rem;width:10.625rem;height:24.4375rem;border-radius:.625rem;background-color:#e5e9f9;display:flex}.super-card .middle-box .middle-left-box .first-contant[data-v-bd7a2b2a]{height:100%;width:6.5625rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item[data-v-bd7a2b2a]{margin:.3125rem 0 0 .3125rem;width:5.9375rem;height:4rem;border-radius:.625rem;background-color:rgba(255,255,255,.3);position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column;box-shadow:.03125rem .03125rem .0625rem .03125rem rgba(0,0,0,.1);overflow:hidden}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-img[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-button[data-v-bd7a2b2a]{position:absolute;top:-.09375rem;right:-.09375rem;width:1.5625rem;height:1.40625rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-font[data-v-bd7a2b2a]{font-size:.71875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-zhejiao[data-v-bd7a2b2a]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-font[data-v-bd7a2b2a]{position:absolute;top:.09375rem;right:.15625rem;font-size:.625rem;color:#fff}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-items[data-v-bd7a2b2a]{display:flex;justify-content:space-around;align-items:center}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-items .right-box-items-button[data-v-bd7a2b2a]{width:.78125rem;height:.78125rem;margin:0 .09375rem}.super-card .middle-box .middle-left-box .second-contant[data-v-bd7a2b2a]{height:100%;width:4.375rem}.super-card .middle-box .middle-left-box .second-contant .downList-box-target[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;background-color:#fff;width:3.125rem;height:3.125rem;border-radius:.625rem;margin-left:.625rem;margin-top:.625rem;flex-direction:column;box-shadow:.0625rem .0625rem .125rem .0625rem rgba(54,159,239,.1);border:.0625rem solid #369fef}.super-card .middle-box .middle-left-box .second-contant .downList-box-target .downList-box-img[data-v-bd7a2b2a]{height:1.5625rem;width:1.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box-target .downList-box-text[data-v-bd7a2b2a]{font-size:.625rem;color:#369fef}.super-card .middle-box .middle-left-box .second-contant .downList-box[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;background-color:rgba(255,255,255,.3);width:3.125rem;height:3.125rem;border-radius:.625rem;margin-left:.625rem;margin-top:.625rem;flex-direction:column;box-shadow:.0625rem .0625rem .125rem .0625rem rgba(0,0,0,.1)}.super-card .middle-box .middle-left-box .second-contant .downList-box .downList-box-img[data-v-bd7a2b2a]{height:1.5625rem;width:1.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box .downList-box-text[data-v-bd7a2b2a]{font-size:.625rem}.super-card .middle-box .middle-right-box[data-v-bd7a2b2a]{height:24.375rem;width:2.8125rem}.super-card .middle-box .middle-right-box .doctorsay-container-card[data-v-bd7a2b2a]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;background-color:#e5e9f9;width:2.8125rem;height:3.8125rem;border-radius:.625rem;border:.0625rem solid #ddeafa;box-shadow:5px 5px 10px rgba(105,129,178,.2);margin:0 .5625rem .3125rem .3125rem}.super-card .middle-box .middle-right-box .doctorsay-container-card .doctorsay-container-card-img[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem}.super-card .middle-box .middle-right-box .doctorsay-container-card .doctorsay-container-card-font[data-v-bd7a2b2a]{font-size:.78125rem;margin-top:0}.super-card .middle-box .middle-right-box .doctorsay-container-card-target[data-v-bd7a2b2a]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;background:linear-gradient(to left,#fff,#e5e9f9);width:3.59375rem;height:3.8125rem;border-top-right-radius:.625rem;border-bottom-right-radius:.625rem;margin:0 .5625rem .3125rem -.46875rem}.super-card .middle-box .middle-right-box .doctorsay-container-card-target .doctorsay-container-card-img[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem;margin-left:.78125rem}.super-card .middle-box .middle-right-box .doctorsay-container-card-target .doctorsay-container-card-font-dark[data-v-bd7a2b2a]{font-size:.78125rem;color:#369fef;margin-left:.78125rem;margin-top:0}.super-card .super-card-container[data-v-bd7a2b2a]{background:url(../../static/index/whitemountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;overflow:hidden;margin-left:3.75rem;width:43.90625rem;height:37.1875rem;border:.0625rem solid #fff;border-left:0;box-shadow:.3125rem .3125rem 20px rgba(0,0,0,.1);position:relative}.super-card .super-card-time[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;height:2.5rem;width:6.28125rem;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;font-weight:700;z-index:-1}.super-card .super-card-time-und[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;width:6.28125rem;flex-direction:column;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1}.super-card .super-card-time-und .title-time-img[data-v-bd7a2b2a]{width:2.03125rem;height:2.03125rem;margin-top:-.15625rem}.super-card .super-card-time-und .title-time-font-rel[data-v-bd7a2b2a]{font-size:.78125rem;margin-bottom:.15625rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.super-card .super-card-time-und .title-time-items[data-v-bd7a2b2a]{display:flex;justify-content:space-around;align-items:center}.super-card .super-card-time-und .title-time-items .right-box-items-button[data-v-bd7a2b2a]{width:1.09375rem;height:1.09375rem;margin:0 .15625rem}.super-card .super-card-time-card[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;height:5.21875rem;width:100%;transition:all .8s;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.right-container[data-v-bd7a2b2a]{width:calc(100% - 7.34375rem);height:100vh;transition:opacity 1s ease;position:relative}.right-container .joystick[data-v-bd7a2b2a]{position:absolute;bottom:6.25rem;left:.625rem;width:9.375rem;height:9.375rem;z-index:9999}.right-container .outer-circle[data-v-bd7a2b2a]{width:100%;height:100%;border-radius:50%;background-color:rgba(127,127,127,.1);position:relative}.right-container .inner-circle[data-v-bd7a2b2a]{width:3.75rem;height:3.75rem;border-radius:50%;background-color:rgba(127,127,127,.3);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.right-container .doctorsay-container-view[data-v-bd7a2b2a]{width:100%;height:38.125rem;display:flex}.right-container .doctorsay-container-view .doctorsay-container-container[data-v-bd7a2b2a]{border:.0625rem solid #fff;width:64.0625rem;height:41.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.3);-webkit-backdrop-filter:blur(.625rem);backdrop-filter:blur(.625rem);background-blend-mode:screen;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);overflow:hidden}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title[data-v-bd7a2b2a]{width:100%;height:3.28125rem;display:flex;align-items:center;justify-content:space-between}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right[data-v-bd7a2b2a]{height:100%;display:flex;align-items:center;margin-right:1.5625rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-juzhen[data-v-bd7a2b2a]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-right:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father[data-v-bd7a2b2a]{display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button-target[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;background-color:#3fa9f5;color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;background-color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-cheng[data-v-bd7a2b2a]{background-color:#ffdba1;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-zi[data-v-bd7a2b2a]{background-color:#7b61ff;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-kuai-font[data-v-bd7a2b2a]{font-size:1rem;margin-left:.3125rem;margin-right:.78125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left[data-v-bd7a2b2a]{display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-share[data-v-bd7a2b2a]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-left:.625rem;margin-top:-.09375rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-gun[data-v-bd7a2b2a]{margin-top:.21875rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-font[data-v-bd7a2b2a]{font-size:1.1875rem;font-weight:700}.right-container .right-container-title-nav[data-v-bd7a2b2a]{margin-top:2.34375rem;margin-bottom:.625rem;margin-left:.625rem}.right-container .right-container-title-nav .right-icons[data-v-bd7a2b2a]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-font[data-v-bd7a2b2a]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-font-dark[data-v-bd7a2b2a]{color:#fff;margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-img[data-v-bd7a2b2a]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-img-icon[data-v-bd7a2b2a]{width:1.875rem;height:2.5rem;margin-top:-.3125rem;margin-left:.25rem}.right-container .right-container-title-nav .right-container-title-no[data-v-bd7a2b2a]{font-size:1.09375rem;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-no-dark[data-v-bd7a2b2a]{font-size:1.09375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-class[data-v-bd7a2b2a]{font-size:1.09375rem;font-weight:800;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-class-dark[data-v-bd7a2b2a]{font-size:1.09375rem;font-weight:800;margin-left:.625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-title-nav .right-container-title-class-anhei-button-wrong[data-v-bd7a2b2a]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.46875rem;width:6.25rem;height:1.5625rem;background-color:#fff}.right-container .right-container-title-nav .right-container-title-class-anhei-button-wrong .right-container-title-class-anhei[data-v-bd7a2b2a]{font-size:.9375rem;font-weight:800}.right-container .right-container-title-nav .right-container-title-class-anhei-button[data-v-bd7a2b2a]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.625rem;width:6.25rem;height:1.5625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff)}.right-container .right-container-title-nav .right-container-title-class-anhei-button .right-container-title-class-anhei[data-v-bd7a2b2a]{font-size:.9375rem;font-weight:800;color:#fff}.title-time-delete[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem;border-radius:50%;display:flex;background-color:#fff;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;background-color:#02abfe;color:#fff;z-index:999;font-size:1.5625rem}.title-time-blue[data-v-bd7a2b2a]{position:absolute;top:0;left:0;z-index:10}.title-time-blue .title-time-blue-img[data-v-bd7a2b2a]{height:5.21875rem;width:6.25rem}.time-button-black-spe[data-v-bd7a2b2a]{transition:all 1s;position:absolute;width:7.8125rem;height:3.125rem;padding-left:.3125rem;border-radius:.625rem;background-color:#4d4d4d;bottom:-3.125rem;left:-2.5rem;color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-black-spe .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;top:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-bottom:.625rem solid #4d4d4d}.time-button-black[data-v-bd7a2b2a]{transition:all 1s;position:absolute;width:7.8125rem;height:3.125rem;padding-left:.3125rem;border-radius:.625rem;background-color:#4d4d4d;top:-3.125rem;left:-2.5rem;color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-black .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;bottom:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-top:.625rem solid #4d4d4d}.time-button-orange-spe[data-v-bd7a2b2a]{transition:all 1s;position:absolute;width:7.8125rem;height:3.125rem;padding-left:.3125rem;border-radius:.625rem;background-color:#ff8a00;bottom:-3.125rem;left:-2.5rem;color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-orange-spe .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;top:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-bottom:.625rem solid #ff8a00}.time-button-orange[data-v-bd7a2b2a]{transition:all 1s;position:absolute;padding-left:.3125rem;width:7.8125rem;height:3.125rem;border-radius:.625rem;background-color:#ff8a00;top:-2.8125rem;left:-2.5rem;color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-orange .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;bottom:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-top:.625rem solid #ff8a00}.title-time[data-v-bd7a2b2a]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-bd7a2b2a]{font-size:1rem;margin-left:.3125rem;margin-top:.375rem}.title-time .title-time-button[data-v-bd7a2b2a]{position:absolute;top:-.1875rem;right:-.125rem;width:1.71875rem;height:1.25rem}.title-time .title-time-zhejiao[data-v-bd7a2b2a]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.title-time .title-time-font[data-v-bd7a2b2a]{position:absolute;top:0;right:.15625rem;font-size:.4375rem;color:#fff}.popup-say[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-say .popup-say-content[data-v-bd7a2b2a]{position:absolute;right:3.28125rem;bottom:6.25rem;display:flex;flex-direction:column;width:14.0625rem;height:18.75rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-say .popup-say-content .tags-father[data-v-bd7a2b2a]{display:flex;margin-left:1.25rem;margin-top:.46875rem;align-items:center;width:5.625rem}.popup-say .popup-say-content .tags-father .tags-img[data-v-bd7a2b2a]{width:1.5625rem;height:1.5625rem;margin-right:.3125rem}.popup-say .popup-say-content .popup-say-content-flex[data-v-bd7a2b2a]{display:flex;margin-top:.21875rem;margin-bottom:.3125rem}.popup-say .popup-say-content .popup-say-content-flex .popup-say-content-gun[data-v-bd7a2b2a]{margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-say .popup-say-content .popup-say-content-flex .popup-say-content-font[data-v-bd7a2b2a]{font-size:.9375rem;font-weight:700}.popup-say .popup-say-content .popup-say-three[data-v-bd7a2b2a]{position:absolute;left:5.40625rem;bottom:-1.28125rem;width:0;height:0;border-left:.9375rem solid transparent;border-right:.9375rem solid transparent;border-top:1.25rem solid #d2ecff}.popup-delete[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-delete .popup-delete-content[data-v-bd7a2b2a]{position:absolute;right:23.4375rem;display:flex;flex-direction:column;align-items:center;width:25rem;height:15.625rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-delete .popup-delete-content .popup-delete-img[data-v-bd7a2b2a]{width:7.8125rem;height:7.1875rem;margin-top:1.25rem;margin-bottom:.625rem}.popup-delete .popup-delete-content .popup-delete-text[data-v-bd7a2b2a]{font-size:.9375rem;color:#42474e}.popup-delete .popup-delete-content .popup-delete-button[data-v-bd7a2b2a]{display:flex;justify-content:space-around;height:2.8125rem;margin-top:.9375rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-left[data-v-bd7a2b2a]{background-color:#02abfe;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff;margin:0 .3125rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-right[data-v-bd7a2b2a]{background-color:#ced9e8;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;margin:0 .3125rem}.popup-overlay[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;z-index:999}.popup-overlay .popup-overlay-content[data-v-bd7a2b2a]{position:absolute;display:flex;align-items:center;width:25rem;height:12.1875rem;background-color:#fff;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-overlay .popup-overlay-content .popup-overlay-content-left[data-v-bd7a2b2a]{height:100%;width:10.9375rem;display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-img[data-v-bd7a2b2a]{width:8.75rem;height:5.625rem;margin-top:-.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-font[data-v-bd7a2b2a]{font-size:.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right[data-v-bd7a2b2a]{height:100%;width:14.0625rem;position:relative}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-font[data-v-bd7a2b2a]{font-size:1.5625rem;margin-top:3.125rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-text[data-v-bd7a2b2a]{margin-left:.3125rem;font-size:.9375rem;width:11.875rem;margin-bottom:1.5625rem;line-height:1.09375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richang[data-v-bd7a2b2a]{background-color:#ffc363;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richangnot[data-v-bd7a2b2a]{background-color:#7b61ff;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem;color:#fff}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-crush[data-v-bd7a2b2a]{position:absolute;top:.625rem;right:.625rem;width:2.1875rem;height:2.1875rem;animation:shake-bd7a2b2a .5s 3}.popup-song[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-song .popup-song-contain[data-v-bd7a2b2a]{position:absolute;right:14.0625rem;width:40.5rem;background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.7);border:.0625rem solid #fff;background-blend-mode:screen;border-radius:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-song .popup-song-contain .shu-container-left[data-v-bd7a2b2a]{display:flex;margin-top:2.1875rem;margin-bottom:.625rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-gun[data-v-bd7a2b2a]{margin-top:.15625rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-font[data-v-bd7a2b2a]{font-size:1.09375rem;font-weight:700}.popup-song-father[data-v-bd7a2b2a]{position:relative}.popup-song-father .shu-up-img[data-v-bd7a2b2a]{position:absolute;top:-2.1875rem;left:9.53125rem;width:21.875rem;height:2.5rem}.popup-song-father .shu-up-font[data-v-bd7a2b2a]{position:absolute;top:-1.5625rem;left:12.1875rem;display:flex;color:#ff5a00}.popup-song-father .arrayindex[data-v-bd7a2b2a]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem;margin-bottom:1.875rem}.popup-song-father .arrayindex .arrayindex-one[data-v-bd7a2b2a]{width:8.90625rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .arrayindex .arrayindex-one-target[data-v-bd7a2b2a]{width:8.90625rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .secondarrayindex[data-v-bd7a2b2a]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem;margin-bottom:1.875rem}.popup-song-father .secondarrayindex .arrayindex-one[data-v-bd7a2b2a]{width:11.875rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .secondarrayindex .arrayindex-one-target[data-v-bd7a2b2a]{width:11.875rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.ri-img[data-v-bd7a2b2a]{position:absolute;top:-.125rem;right:-.125rem;width:1.875rem;height:1.875rem}.time-father[data-v-bd7a2b2a]{display:flex;width:100%;flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem}.time-father .time-one[data-v-bd7a2b2a]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-target[data-v-bd7a2b2a]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-hui[data-v-bd7a2b2a]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#c2c9d3;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.items-card[data-v-bd7a2b2a]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center}.items-card-target[data-v-bd7a2b2a]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center;color:#369fef;background:linear-gradient(to right,rgba(54,159,239,0),rgba(54,159,239,.5),rgba(54,159,239,0))}.button-father[data-v-bd7a2b2a]{height:6.25rem;width:calc(100%-2.5rem);display:flex;justify-content:center;align-items:center;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem;border-top:.03125rem solid #e6e6e6}.button-father .button-father-right[data-v-bd7a2b2a]{background:linear-gradient(to right,#00c9ff,#0076ff);width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.button-father .button-father-wrong[data-v-bd7a2b2a]{background-color:#c2c9d3;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center}.month-father[data-v-bd7a2b2a]{display:flex;width:calc(100% - 1.875rem);flex-wrap:wrap;margin:.625rem .9375rem .9375rem}.month-father .month-one[data-v-bd7a2b2a]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.month-father .month-one-target[data-v-bd7a2b2a]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father[data-v-bd7a2b2a]{display:flex;width:100%;flex-wrap:wrap;margin:.625rem .9375rem .9375rem}.week-father .week-one[data-v-bd7a2b2a]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father .week-one-target[data-v-bd7a2b2a]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.radio-father[data-v-bd7a2b2a]{display:flex;width:100%;flex-wrap:wrap;margin-left:2.34375rem;margin-right:.9375rem}.radio-father .radio-circle[data-v-bd7a2b2a]{margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid black;background-color:transparent}.radio-father .radio-circle-target[data-v-bd7a2b2a]{position:relative;margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-father .radio-circle-target[data-v-bd7a2b2a]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.625rem;height:.625rem;background-color:#02abfe;border-radius:50%}.radio-father .radio-font[data-v-bd7a2b2a]{margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.radio-father .radio-font-target[data-v-bd7a2b2a]{color:#02abfe;margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.title-time-border[data-v-bd7a2b2a]{margin-top:.125rem;margin-left:.125rem;width:calc(100% - .25rem);height:calc(100% - .25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column}.title-time-border-red[data-v-bd7a2b2a]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,red,red) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,red,red) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom right / .25rem 1.875rem no-repeat}.title-time-border-big[data-v-bd7a2b2a],.title-time-border-big-top[data-v-bd7a2b2a]{transform:scale(1.3);transform-origin:top;border-top:0 solid #fff;transition:transform .5s ease-out,opacity .5s ease-out;z-index:999;display:flex;justify-content:center;align-items:center;height:5.21875rem;width:100%;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.title-time-border-blue[data-v-bd7a2b2a]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,#0184db,#0184db) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,#0184db,#0184db) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom right / .25rem 1.875rem no-repeat}.title-time-border-yellow[data-v-bd7a2b2a]{margin:.3125rem;border:.0625rem solid #d0d8e0;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-yellow-active-transparent[data-v-bd7a2b2a]{margin:.3125rem;border:.125rem dashed #ff8a00;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .8125rem);height:calc(100% - .8125rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-yellow-active[data-v-bd7a2b2a]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-bd7a2b2a .8s infinite;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-pouple-active-transparent[data-v-bd7a2b2a]{margin:.3125rem;border:.125rem dashed #7B61FF;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .8125rem);height:calc(100% - .8125rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.title-time-border-pouple[data-v-bd7a2b2a]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.title-time-border-pouple-active[data-v-bd7a2b2a]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-bd7a2b2a 1s infinite;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.down-icons[data-v-bd7a2b2a]{margin-top:.53125rem;width:100%;height:1.875rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-bd7a2b2a]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.super-end-items-img-father[data-v-bd7a2b2a]{width:1.875rem;height:1.875rem;border-radius:50%;display:flex;justify-content:center;align-items:center}.super-end-items-img-father-active[data-v-bd7a2b2a]{width:1.875rem;height:1.875rem;border-radius:50%;display:flex;justify-content:center;align-items:center;animation:shake-bd7a2b2a .5s infinite}@keyframes shake-bd7a2b2a{0%{transform:rotate(-10deg)}25%{transform:rotate(10deg)}50%{transform:rotate(-10deg)}75%{transform:rotate(10deg)}to{transform:rotate(-10deg)}}.super-end-items-father-close-father[data-v-bd7a2b2a]{width:1.25rem;height:1.25rem;border-radius:50%;display:flex;background-color:#0184db;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;color:#fff}@keyframes shakesmall-bd7a2b2a{0%{transform:rotate(-2deg)}25%{transform:rotate(2deg)}50%{transform:rotate(-2deg)}75%{transform:rotate(2deg)}to{transform:rotate(-2deg)}}.boom-title[data-v-bd7a2b2a]{position:absolute;top:3.28125rem;left:1.875rem;width:1.875rem;height:2.5rem;background-color:#c4dbf4;border-left:.0625rem #fff solid;border-top:.0625rem #fff solid;border-top-left-radius:.625rem;background:linear-gradient(to top right,transparent calc(50% - 1px),#0184db calc(50% - 1px),#0184db calc(50% + 1px),transparent calc(50% + 1px))}.boom-title .boom-title-left[data-v-bd7a2b2a]{position:absolute;top:1.25rem;left:.1875rem;font-size:.78125rem;font-weight:700}.boom-title .boom-title-right[data-v-bd7a2b2a]{position:absolute;top:.15625rem;left:.9375rem;font-size:.78125rem;font-weight:700}.boom-father[data-v-bd7a2b2a]{position:absolute;top:5.8125rem;left:1.875rem;width:1.875rem;height:34.6875rem;background:linear-gradient(to bottom,#c4dbf4,#c9c2ef,#c6dcf3);border-bottom:.0625rem solid #fff;border-left:.0625rem solid #fff;border-bottom-left-radius:.625rem}.scroll-bottom-bgc[data-v-bd7a2b2a]{width:43.75rem;height:8.4375rem;margin-top:0;margin-left:4.0625rem;background:url(../../static/index/keyimg/bgc.png) center / contain;background-repeat:no-repeat}.boom[data-v-bd7a2b2a]{height:26.5625rem;display:flex;flex-direction:column;overflow:hidden;z-index:10}.boom .boom-son[data-v-bd7a2b2a]{height:5.21875rem;width:1.875rem;font-size:.9375rem;display:flex;justify-content:center;align-items:center;text-align:center;z-index:10;font-weight:700;border-top:.03125rem solid transparent;border-bottom:.03125rem solid transparent;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1}.boom .boom-son-target[data-v-bd7a2b2a]{height:5.21875rem;width:1.875rem;font-size:.9375rem;display:flex;justify-content:center;align-items:center;text-align:center;z-index:10;font-weight:700;border-top:.03125rem solid transparent;border-bottom:.03125rem solid transparent;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;background:linear-gradient(to bottom,#ff8a00,#eceaff)}.popup-share[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-share .popup-share-content[data-v-bd7a2b2a]{position:absolute;right:16.09375rem;display:flex;flex-direction:column;width:25rem;height:11.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.7);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-share .popup-share-content .popup-share-title[data-v-bd7a2b2a]{margin:.9375rem;font-size:1.25rem;position:relative}.popup-share .popup-share-content .popup-share-title .popup-share-img[data-v-bd7a2b2a]{position:absolute;top:0;right:0;width:6.25rem;height:6.25rem}.popup-share .popup-share-content .popup-share-upcontent[data-v-bd7a2b2a]{margin:0 .9375rem;display:flex;justify-content:space-between}.popup-share .popup-share-content .popup-share-upcontent .popup-share-font[data-v-bd7a2b2a]{font-size:1.09375rem;color:gray}.popup-share .popup-share-content .popup-share-gray[data-v-bd7a2b2a]{background-color:#d3d3d3;width:calc(100% - 1.875rem);height:.0625rem;margin:3.4375rem .9375rem 0}.popup-share .popup-share-content .popup-share-downcontent[data-v-bd7a2b2a]{display:flex;justify-content:space-between;align-items:center;height:100%;margin:0 .9375rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-img[data-v-bd7a2b2a]{width:2.1875rem;height:2.1875rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-font[data-v-bd7a2b2a]{font-size:.84375rem;margin-left:.625rem}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-left[data-v-bd7a2b2a]{display:flex;align-items:center}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-button[data-v-bd7a2b2a]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.46875rem .9375rem;border-radius:.625rem;font-size:1rem}.backgroundContainer[data-v-ee189f8b]{display:flex;position:relative;width:100%;height:100vh;background-image:url(../../static/index/lightbgcnew.png);background-size:cover;background-position:center center;overflow:hidden;z-index:12}.darkbackgroundContainer[data-v-ee189f8b]{display:flex;position:relative;width:100%;height:100vh;background-image:url(../../static/index/background.png);background-size:cover;background-position:center center;overflow:hidden;z-index:11}.move-font[data-v-ee189f8b]{position:absolute;z-index:10;pointer-events:none;background-color:#c9e8ff;border-radius:.625rem;border:.0625rem solid #fff;width:6.875rem;height:3.125rem;display:flex;justify-content:center;align-items:center;text-align:center;font-size:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);will-change:transform}.left-container[data-v-ee189f8b]{width:7.34375rem;height:100%}.left-container .blue-circle-pos[data-v-ee189f8b]{position:relative}.left-container .blue-circle-pos .blue-circle[data-v-ee189f8b]{position:absolute;top:-1.5625rem;left:-2.125rem}.left-container .blue-circle-pos .blue-circle .blue-circle-size[data-v-ee189f8b]{width:5.3125rem;height:7.8125rem}.left-container .left-head[data-v-ee189f8b]{display:flex;justify-content:center;align-items:center;flex-direction:column}.left-container .left-head .left-head-img[data-v-ee189f8b]{width:4.6875rem;height:4.6875rem;margin-top:1.875rem}.left-container .left-head .left-head-font[data-v-ee189f8b]{font-weight:700;font-size:1.25rem}.left-container .left-head .left-head-font-dark[data-v-ee189f8b]{font-weight:700;font-size:1.25rem;background:linear-gradient(to right,#ebf4ff,#adc4e0);-webkit-background-clip:text;color:transparent}.left-container .left-img-container[data-v-ee189f8b]{display:flex;justify-content:center;align-items:center;flex-direction:column}.left-container .left-img-container .left-img[data-v-ee189f8b]{width:2.90625rem;height:2.90625rem;margin:1.5625rem 0;z-index:100}.title-time-border-yellow[data-v-ee189f8b]{width:7.96875rem;height:5.90625rem;margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#fff1db,#ffe2b2);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;position:absolute;z-index:10}.title-time-border-pouple[data-v-ee189f8b]{width:7.96875rem;height:5.90625rem;margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;position:absolute;z-index:10}.title-time[data-v-ee189f8b]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-ee189f8b]{font-size:1rem;margin-left:.84375rem;margin-top:.375rem}.title-time .title-time-button[data-v-ee189f8b]{position:absolute;top:-.15625rem;right:0;width:2.1875rem;height:2.1875rem}.title-time .title-time-font[data-v-ee189f8b]{position:absolute;top:.21875rem;right:.15625rem;font-size:.71875rem;color:#fff}.down-icons[data-v-ee189f8b]{margin-top:.625rem;width:100%;height:1.5625rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-ee189f8b]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}
+.overlay[data-v-8cdafce2]{position:fixed;top:0;left:0;width:100%;height:100vh;background:rgba(0,0,0,.5);z-index:999;will-change:opacity;transition:opacity .3s ease;opacity:0;display:block}.overlay-show[data-v-8cdafce2]{opacity:1}.drawer[data-v-8cdafce2]{position:fixed;top:0;right:0;height:100vh;background:#fff;z-index:1000;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;transform:translate(100%);transition:transform .4s ease;will-change:transform}.drawer-open[data-v-8cdafce2]{transform:translate(0)}.drawer-content[data-v-8cdafce2]{position:relative;width:100%;height:100%}.drawer-content-circle[data-v-8cdafce2]{position:absolute;top:calc(50% - 1.71875rem);left:-1.25rem;width:3.125rem;height:3.4375rem;border-radius:50%;z-index:-1;background:linear-gradient(to bottom,#dfecfa,#c9dbee);display:flex;align-items:center;-webkit-clip-path:inset(0 60% 0 0);clip-path:inset(0 60% 0 0)}.drawer-img[data-v-8cdafce2]{width:.78125rem;height:.78125rem;margin-left:.3125rem;transform:rotate(180deg)}.draw-all[data-v-6070efba]{width:100%;height:100%;display:flex;flex-direction:column;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;overflow:hidden}.draw-all .draw-title[data-v-6070efba]{width:100%;height:4.375rem;display:flex}.draw-all .draw-title .draw-title-gun[data-v-6070efba]{margin-top:2.1875rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.5625rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.draw-all .draw-title .draw-title-font[data-v-6070efba]{margin-top:2.125rem;font-size:1.25rem;font-weight:700}.draw-all .draw-contain[data-v-6070efba]{width:100%;height:calc(100vh - 4.375rem)}.draw-all .draw-contain .draw-contain-jindu[data-v-6070efba]{width:100%;height:7.8125rem;display:flex;justify-content:center;align-items:center}.downitems-father[data-v-6070efba]{width:100%;height:calc(100% - 6.40625rem);display:flex}.downitems-father .downitems-left[data-v-6070efba]{height:100%;width:17.1875rem}.downitems-father .downitems-left .downitems-left-mar[data-v-6070efba]{margin-left:2.03125rem}.downitems-father .downitems-left .downitems-left-mar .downitems-left-img[data-v-6070efba]{width:13.125rem;height:9.375rem;margin-top:2.5rem}.downitems-father .downitems-left .downitems-left-father[data-v-6070efba]{display:flex;margin-top:.625rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-img[data-v-6070efba]{width:1.1875rem;height:1.1875rem;margin:.1875rem .40625rem 0 .625rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-img-laba[data-v-6070efba]{width:1.1875rem;height:1.1875rem;margin-top:.1875rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-font[data-v-6070efba]{font-size:1.25rem;width:9.375rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-font-laba[data-v-6070efba]{font-size:1.25rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-font-small[data-v-6070efba]{font-size:1.09375rem;width:12.5rem}.downitems-father .downitems-left .downitems-kuai[data-v-6070efba]{margin-left:1.15625rem;background-color:rgba(236,240,251,.4);border-radius:.625rem;width:10.9375rem;height:7.1875rem;margin-top:.9375rem;display:flex;justify-content:center;align-items:center}.downitems-father .downitems-left .downitems-kuai .downitems-kuai-img[data-v-6070efba]{width:3.75rem;height:3.75rem}.downitems-father .downitems-left .downitems-says[data-v-6070efba]{color:#6f7fa3;font-size:1.09375rem;margin-left:4.4375rem;margin-top:.625rem}.downitems-father .downitems-right[data-v-6070efba]{height:100%;width:20.3125rem}.downitems-father .downitems-right .downitems-all[data-v-6070efba]{margin-left:1.875rem}.downitems-father .downitems-right .downitems-all .downitems-all-font[data-v-6070efba]{margin-top:.9375rem;font-size:1.25rem}.downitems-father .downitems-center[data-v-6070efba]{height:100%;width:18.75rem;position:relative}.downitems-father .downitems-center .downitems-button[data-v-6070efba]{position:absolute;left:30%;bottom:2.5rem;background:linear-gradient(to right,#00c9ff,#0076ff);width:8.4375rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1.25rem}.downitems-center-title[data-v-6070efba]{width:100%;display:flex}.downitems-center-title .downitems-center-title-gun[data-v-6070efba]{margin-top:1.5625rem;margin-left:0;margin-right:.5625rem;width:.40625rem;height:1.5625rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.downitems-center-title .downitems-center-title-font[data-v-6070efba]{margin-top:1.5625rem;font-size:1.25rem;font-weight:700}.downitems-center-title .downitems-center-says[data-v-6070efba]{display:flex;margin-top:1.5625rem;margin-left:5.625rem;text-align:right;color:#6f7fa3;font-size:1.125rem}.downitems-center-title .downitems-center-father[data-v-6070efba]{display:flex;justify-content:center;align-items:center;width:1.5625rem;height:1.5625rem;border-radius:50%;background-color:#bac5de;margin-right:.3125rem;margin-top:0}.downitems-center-title .downitems-center-father .downitems-center-says-maike[data-v-6070efba]{width:1.25rem;height:1.25rem}.downitems-shu[data-v-6070efba]{width:2.1875rem;height:100%;margin-top:.125rem}.downitems-textarea[data-v-6070efba]{margin-top:.625rem}.custom-textarea[data-v-6070efba]{color:#6f7fa3;background-color:rgba(255,255,255,.3);width:17.8125rem;height:7.5rem;border-radius:.625rem;font-size:1.25rem;padding-left:.9375rem;padding-top:.625rem}.radio-circle-top-father[data-v-6070efba]{margin-left:.9375rem}.radio-circle-top-father .radio-circle-top[data-v-6070efba]{margin-top:.9375rem;display:flex}.radio-circle[data-v-6070efba],.radio-circle-target[data-v-6070efba]{position:relative;margin-top:.0625rem;width:1.25rem;height:1.25rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-circle-target[data-v-6070efba]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.9375rem;height:.9375rem;background-color:#02abfe;border-radius:50%}.radio-font[data-v-6070efba]{margin-left:.46875rem;margin-right:1.875rem;font-size:1.125rem}.downitems-card-all[data-v-6070efba]{width:100%;display:flex;flex-wrap:wrap;margin-top:.625rem}.downitems-card-all .downitems-card-one[data-v-6070efba]{width:8.4375rem;height:4.6875rem;margin-right:.625rem;margin-bottom:.9375rem;border-radius:.625rem;background-color:#f3f8fd;border:.03125rem solid #52668C;box-shadow:0 .125rem .125rem rgba(0,0,0,.2);display:flex;justify-content:center;align-items:center}.downitems-card-all .downitems-card-one-target[data-v-6070efba]{width:8.4375rem;height:4.6875rem;margin-right:.625rem;margin-bottom:.9375rem;border-radius:.625rem;background:linear-gradient(to bottom,#b8e5ff,#f7d0ef);border:.03125rem solid #fff;box-shadow:0 .125rem .125rem rgba(0,0,0,.2);display:flex;justify-content:center;align-items:center}.downitems-card-all .downitems-card[data-v-6070efba]{display:flex;justify-content:center;align-items:center}.downitems-card-all .downitems-card .downitems-card-font[data-v-6070efba]{font-weight:700;margin-left:.3125rem;margin-right:.3125rem;font-size:1.25rem}.downitems-card-all .downitems-card .downitems-card-father[data-v-6070efba]{width:2.8125rem;height:2.8125rem;border-radius:1.5625rem;border:.03125rem solid #94B0C3;background-color:#fff;display:flex;justify-content:center;overflow:hidden}.downitems-card-all .downitems-card .downitems-card-father .downitems-card-img[data-v-6070efba]{width:2.5rem;height:2.5rem;margin-top:.3125rem}.container[data-v-6070efba]{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100vh}.modal[data-v-6070efba]{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center}.modal-content[data-v-6070efba]{width:80vw;height:80vh;background:#fff;border-radius:8px;overflow:hidden}.right-container[data-v-6d6a66c6]{width:calc(100% - 7.34375rem);height:100vh;transition:opacity 1s ease}.right-container .right-container-sec[data-v-6d6a66c6]{width:100%;display:flex;position:relative}.right-container .right-container-sec .right-container-left-font-spec[data-v-6d6a66c6]{position:absolute;top:5.625rem;left:18.125rem;width:3.125rem;height:1.25rem;font-size:.78125rem;border-radius:.15625rem;color:#fff;z-index:10;background-color:#34c678;display:flex;justify-content:center;align-items:center}.right-container .right-container-sec .right-container-fir-left-carousel[data-v-6d6a66c6]{position:absolute;right:7.65625rem;top:.53125rem}.right-container .right-container-sec .right-container-fir-left-carousel .carousel[data-v-6d6a66c6]{position:relative;width:.9375rem;height:2.5rem}.right-container .right-container-sec .right-container-fir-left-carousel .carousel .dots[data-v-6d6a66c6]{position:absolute;top:50%;right:.3125rem;transform:translateY(-50%);display:flex;flex-direction:column;gap:.21875rem}.right-container .right-container-sec .right-container-fir-left-carousel .carousel .dots .dot[data-v-6d6a66c6]{width:.3125rem;height:.3125rem;border-radius:50%;background-color:#657494;cursor:pointer;transition:background-color .3s ease}.right-container .right-container-sec .right-container-fir-left-carousel .carousel .dots .dot-dark[data-v-6d6a66c6]{width:.3125rem;height:.3125rem;border-radius:50%;background-color:#fff;cursor:pointer;transition:background-color .3s ease}.right-container .right-container-sec .right-container-fir-left-carousel .carousel .dots .dot.active[data-v-6d6a66c6]{background-color:#01a0fe}.right-container .right-container-sec .right-container-right-father-dark[data-v-6d6a66c6]{height:19.6875rem;border-radius:1.5625rem;background-color:#16304c;border:.0625rem solid transparent;background:url(../../static/index/cardbgc/bgcdark.png) padding-box,linear-gradient(45deg,#9bc4f8,#285399,#9bc4f8,#285399,#9bc4f8) border-box;background-clip:padding-box,border-box;background-color:rgba(12,25,47,.1);position:relative;display:flex;flex-direction:column;box-shadow:0 .25rem .5rem rgba(105,129,178,.8);overflow:hidden}.right-container .right-container-sec .right-container-right-father-dark .uni-margin-wrap[data-v-6d6a66c6]{margin-top:6.25rem;width:37.5rem}.right-container .right-container-sec .right-container-right-father-dark .uni-margin-wrap .swiper[data-v-6d6a66c6]{height:28.125rem}.right-container .right-container-sec .right-container-right-father-dark .uni-margin-wrap .swiper .swiper-item-flex[data-v-6d6a66c6]{display:flex}.right-container .right-container-sec .right-container-right-father-dark .uni-margin-wrap .swiper .swiper-item[data-v-6d6a66c6]{display:block;height:9.375rem;line-height:9.375rem;text-align:center}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next[data-v-6d6a66c6]{height:100%;width:21.875rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-people[data-v-6d6a66c6]{display:flex;margin-bottom:.625rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-people .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.15625rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-people .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:2.8125rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-people .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:2.8125rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-font[data-v-6d6a66c6]{font-size:2.03125rem;margin-top:1.5625rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-font-dark[data-v-6d6a66c6]{font-size:2.03125rem;margin-top:1.5625rem;margin-bottom:.3125rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;font-weight:700}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-text[data-v-6d6a66c6]{margin-left:.3125rem;font-size:2.1875rem;font-weight:700;width:25rem;margin-bottom:1.5625rem;line-height:2.1875rem;position:relative}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-text .time-text-img[data-v-6d6a66c6]{position:absolute;top:0;left:9.375rem;width:2.5rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father[data-v-6d6a66c6]{width:100%;height:17.5rem;display:flex;justify-content:center;align-items:center}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-left[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-top:-4.6875rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark[data-v-6d6a66c6]{margin-left:1.5625rem;margin-top:1.875rem;width:23.84375rem;height:13.4375rem;border-radius:1.25rem;position:relative;display:flex;box-shadow:.0625rem 0 0 .0625rem;background-color:#16304c;border:.0625rem solid #fff}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-line[data-v-6d6a66c6]{width:1px;height:6.25rem;background:linear-gradient(to top,rgba(0,0,0,0),gray,rgba(0,0,0,0));margin-left:-.625rem;margin-right:.9375rem;margin-top:3.125rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:14.0625rem;position:relative}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-type[data-v-6d6a66c6]{position:absolute;top:0;left:-.78125rem;width:7.8125rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-font[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#414f6e}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-font-dark[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#fff}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-img[data-v-6d6a66c6]{width:7.1875rem;height:6.25rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-font[data-v-6d6a66c6]{font-size:1.09375rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-font-dark[data-v-6d6a66c6]{font-size:1.09375rem;color:#fff;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card[data-v-6d6a66c6]{margin-left:1.5625rem;margin-top:1.875rem;width:23.84375rem;height:13.4375rem;border-radius:1.25rem;position:relative;display:flex;border:.03125rem solid black;box-shadow:0 .25rem .5rem rgba(0,0,0,.3)}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-line[data-v-6d6a66c6]{width:1px;height:6.25rem;background:linear-gradient(to top,rgba(0,0,0,0),gray,rgba(0,0,0,0));margin-left:-.625rem;margin-right:.9375rem;margin-top:3.125rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:14.0625rem;position:relative}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-card-type[data-v-6d6a66c6]{position:absolute;top:0;left:-.78125rem;width:7.8125rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-card-font[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#414f6e}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-img[data-v-6d6a66c6]{width:7.1875rem;height:6.25rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-font[data-v-6d6a66c6]{font-size:1.09375rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-font-dark[data-v-6d6a66c6]{font-size:1.5625rem;color:#fff;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-right[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-top:-4.6875rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-title[data-v-6d6a66c6]{width:100%;height:5.3125rem;position:relative}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-title .right-container-right-text[data-v-6d6a66c6]{line-height:4.0625rem;font-size:1.25rem;font-weight:600;margin-left:1.875rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-title .right-container-right-text-dark[data-v-6d6a66c6]{line-height:4.0625rem;font-size:1.25rem;font-weight:600;margin-left:1.875rem;color:#fff}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-title .right-container-right-img[data-v-6d6a66c6]{position:absolute;top:1.875rem;right:1.5625rem;width:1.5625rem;height:.46875rem}.right-container .right-container-sec .right-container-right-father[data-v-6d6a66c6]{width:100%;height:19.6875rem;border-radius:1.5625rem;border:.0625rem solid #fff;background-image:url(../../static/index/mountain.png);background-color:rgba(200,216,238,.8);background-position:60% 50%;position:relative;display:flex;flex-direction:column;box-shadow:0 .25rem .5rem rgba(105,129,178,.8);overflow:hidden}.right-container .right-container-sec .right-container-right-father .uni-margin-wrap[data-v-6d6a66c6]{margin-top:6.25rem;width:37.5rem}.right-container .right-container-sec .right-container-right-father .uni-margin-wrap .swiper[data-v-6d6a66c6]{height:28.125rem}.right-container .right-container-sec .right-container-right-father .uni-margin-wrap .swiper .swiper-item-flex[data-v-6d6a66c6]{display:flex}.right-container .right-container-sec .right-container-right-father .uni-margin-wrap .swiper .swiper-item[data-v-6d6a66c6]{display:block;height:9.375rem;line-height:9.375rem;text-align:center}.right-container .right-container-sec .right-container-right-father .time-tra-next[data-v-6d6a66c6]{height:100%;width:21.875rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-people[data-v-6d6a66c6]{display:flex;margin-bottom:.625rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-people .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.15625rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-people .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:2.8125rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-people .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:2.8125rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-font[data-v-6d6a66c6]{font-size:2.03125rem;margin-top:1.5625rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-font-dark[data-v-6d6a66c6]{font-size:2.03125rem;margin-top:1.5625rem;margin-bottom:.3125rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;font-weight:700}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-text[data-v-6d6a66c6]{margin-left:.3125rem;font-size:2.1875rem;font-weight:700;width:25rem;margin-bottom:1.5625rem;line-height:2.1875rem;position:relative}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-text .time-text-img[data-v-6d6a66c6]{position:absolute;top:0;left:9.375rem;width:2.5rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father[data-v-6d6a66c6]{width:100%;height:17.5rem;display:flex;justify-content:center;align-items:center}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-left[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-top:-4.6875rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark[data-v-6d6a66c6]{margin-left:1.5625rem;margin-top:1.875rem;width:23.84375rem;height:13.4375rem;border-radius:1.25rem;position:relative;display:flex;box-shadow:.0625rem 0 0 .0625rem;background-color:#16304c;border:.0625rem solid #fff}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-line[data-v-6d6a66c6]{width:1px;height:6.25rem;background:linear-gradient(to top,rgba(0,0,0,0),gray,rgba(0,0,0,0));margin-left:-.625rem;margin-right:.9375rem;margin-top:3.125rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:14.0625rem;position:relative}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-type[data-v-6d6a66c6]{position:absolute;top:0;left:-.78125rem;width:7.8125rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-font[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#414f6e}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-font-dark[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#fff}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-img[data-v-6d6a66c6]{width:7.1875rem;height:6.25rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-font[data-v-6d6a66c6]{font-size:1.09375rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-font-dark[data-v-6d6a66c6]{font-size:1.09375rem;color:#fff;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card[data-v-6d6a66c6]{margin-left:1.5625rem;margin-top:1.875rem;width:23.84375rem;height:13.4375rem;border-radius:1.25rem;position:relative;display:flex;border:.03125rem solid black;box-shadow:0 .25rem .5rem rgba(0,0,0,.3)}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-line[data-v-6d6a66c6]{width:1px;height:6.25rem;background:linear-gradient(to top,rgba(0,0,0,0),gray,rgba(0,0,0,0));margin-left:-.625rem;margin-right:.9375rem;margin-top:3.125rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:14.0625rem;position:relative}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-card-type[data-v-6d6a66c6]{position:absolute;top:0;left:-.78125rem;width:7.8125rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-card-font[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#414f6e}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-img[data-v-6d6a66c6]{width:7.1875rem;height:6.25rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-font[data-v-6d6a66c6]{font-size:1.09375rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-font-dark[data-v-6d6a66c6]{font-size:1.5625rem;color:#fff;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-right[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-top:-4.6875rem}.right-container .right-container-sec .right-container-right-father .right-container-right-title[data-v-6d6a66c6]{width:100%;height:5.3125rem;position:relative}.right-container .right-container-sec .right-container-right-father .right-container-right-title .right-container-right-text[data-v-6d6a66c6]{line-height:4.0625rem;font-size:1.25rem;font-weight:600;margin-left:1.875rem}.right-container .right-container-sec .right-container-right-father .right-container-right-title .right-container-right-text-dark[data-v-6d6a66c6]{line-height:4.0625rem;font-size:1.25rem;font-weight:600;margin-left:1.875rem;color:#fff}.right-container .right-container-sec .right-container-right-father .right-container-right-title .right-container-right-img[data-v-6d6a66c6]{position:absolute;top:1.875rem;right:1.5625rem;width:1.5625rem;height:.46875rem}.right-container .right-container-sec .right-container-left[data-v-6d6a66c6]{height:19.6875rem;border-radius:1.5625rem;border:.03125rem solid #fff;position:relative;display:flex;justify-content:center;align-items:center;background-color:rgba(255,255,255,.5);background-image:url(../../static/index/mountain.png);background-position:70% 45%;overflow:hidden;box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-sec .right-container-left-dark[data-v-6d6a66c6]{height:19.6875rem;border-radius:1.5625rem;background-color:#16304c;border:.0625rem solid transparent;background:url(../../static/index/cardbgc/bgcdark.png) padding-box,linear-gradient(45deg,#9bc4f8,#285399,#9bc4f8,#285399,#9bc4f8) border-box;background-clip:padding-box,border-box;background-color:rgba(12,25,47,.1);position:relative;display:flex;justify-content:center;align-items:center;overflow:hidden;box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-sec .uni-margin-wrap[data-v-6d6a66c6]{width:31.25rem}.right-container .right-container-sec .uni-margin-wrap .swiper[data-v-6d6a66c6]{height:21.875rem}.right-container .right-container-sec .uni-margin-wrap .swiper .swiper-item-flex[data-v-6d6a66c6]{display:flex;position:relative}.right-container .right-container-sec .uni-margin-wrap .swiper .swiper-item[data-v-6d6a66c6]{display:block;height:7.8125rem;line-height:9.375rem;text-align:center}.right-container .right-container-sec .right-container-fir-left-card-main-right[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-right:.3125rem;z-index:11}.right-container .right-container-sec .right-huli-fir[data-v-6d6a66c6]{width:7.8125rem;height:100%;margin-top:0;display:flex;justify-content:center;align-items:center;flex-direction:column}.right-container .right-container-sec .right-huli-fir .right-huli-view[data-v-6d6a66c6]{margin-left:.25rem;height:23.4375rem;overflow:auto;display:flex;justify-content:center;align-items:center;flex-direction:column;box-sizing:border-box}.right-container .right-container-sec .right-huli-fir .right-huli-view .right-huli-view-dis[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:100%;height:5.3125rem}.right-container .right-container-sec .right-huli-fir .right-huli-view .right-huli-view-dis .right-huli-img[data-v-6d6a66c6]{width:2.5rem;height:2.5rem}.right-container .right-container-sec .right-huli-fir .right-huli-view .right-huli-view-dis .right-huli-text[data-v-6d6a66c6]{width:100%;height:.3125rem;font-size:1.09375rem;text-align:center;margin-bottom:.15625rem}.right-container .right-container-sec .right-huli-fir .right-huli-view .right-huli-view-dis .right-huli-text-dark[data-v-6d6a66c6]{width:100%;height:.3125rem;font-size:1.09375rem;text-align:center;margin-bottom:.15625rem;color:#fff}.right-container .right-container-sec .right-huli-fir .right-huli-shang[data-v-6d6a66c6]{margin-top:1.25rem;width:.9375rem;height:.9375rem}.right-container .right-container-sec .right-huli-fir .right-huli-xia[data-v-6d6a66c6]{margin-bottom:1.25rem;width:.9375rem;height:.9375rem}.right-container .right-container-sec .right-container-photo[data-v-6d6a66c6]{display:flex;flex-direction:column;justify-content:center;align-items:center;margin-left:1.5625rem}.right-container .right-container-sec .right-container-photo .right-container-photo-img[data-v-6d6a66c6]{width:9.6875rem;height:10.9375rem;margin-bottom:.3125rem}.right-container .right-container-sec .right-container-photo .right-container-photo-text[data-v-6d6a66c6]{font-size:.9375rem;color:#324160}.right-container .right-container-sec .right-container-photo .right-container-photo-text-dark[data-v-6d6a66c6]{font-size:.9375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .right-container-fir-left-card-main-left[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-left:.9375rem}.right-container .right-container-sec .right-container-left-type[data-v-6d6a66c6]{position:absolute;top:1.3125rem;left:-.46875rem;width:7.34375rem;height:2.28125rem;z-index:10}.right-container .right-container-sec .right-container-left-font[data-v-6d6a66c6]{position:absolute;top:1.59375rem;left:1.5625rem;font-size:1.125rem;color:#fff;z-index:10}.right-container .right-container-sec .time-tra-thi[data-v-6d6a66c6]{margin-left:2.5rem;margin-top:2.1875rem;height:100%;width:17.1875rem;position:relative}.right-container .right-container-sec .time-tra-thi .time-text[data-v-6d6a66c6]{margin-left:.3125rem;font-size:1.09375rem;width:14.0625rem;margin-bottom:1.25rem;line-height:1.25rem}.right-container .right-container-sec .time-tra-thi .time-text-dark[data-v-6d6a66c6]{margin-left:.3125rem;color:#cdd6ea;font-size:1.09375rem;width:14.0625rem;margin-bottom:1.25rem;line-height:1.25rem}.right-container .right-container-sec .time-tra-thi .time-tra-thi-zhixing[data-v-6d6a66c6]{position:absolute;top:2.34375rem;left:14.0625rem}.right-container .right-container-sec .time-tra-thi .time-tra-thi-zhixing-font[data-v-6d6a66c6]{position:absolute;top:1.875rem;left:.3125rem;width:3.125rem;height:1.25rem;font-size:.78125rem;border-radius:.15625rem;color:#fff;z-index:10;background-color:#f37b5b;display:flex;justify-content:center;align-items:center}.right-container .right-container-sec .time-tra-thi .time-people-two[data-v-6d6a66c6]{display:flex;margin-top:1.25rem;margin-bottom:1.25rem}.right-container .right-container-sec .time-tra-thi .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.3125rem}.right-container .right-container-sec .time-tra-thi .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:.625rem}.right-container .right-container-sec .time-tra-thi .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:.625rem}.right-container .right-container-sec .time-tra-thi .time-people-thi[data-v-6d6a66c6]{display:flex}.right-container .right-container-sec .time-tra-thi .time-people-thi .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.15625rem;margin-left:.15625rem}.right-container .right-container-sec .time-tra-thi .time-people-thi .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:.625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.right-container .right-container-sec .time-tra-thi .time-people-thi .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:.625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.right-container .right-container-sec .time-tra-thi .time-button-view[data-v-6d6a66c6]{display:flex;margin-left:0;transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-thi .time-button-view .time-button-start[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to bottom,#af8ed7,#4d3e9b);border-left:.0625rem solid #fff;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem;margin-right:.78125rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-thi .time-button-view .time-button-end[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-thi .time-button-view .time-button-end-dark[data-v-6d6a66c6]{width:7.1875rem;height:2.5rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(0,0,0,.3);background:linear-gradient(to top,#6b87ba,#fff);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-thi .time-font[data-v-6d6a66c6]{font-size:2.1875rem;margin-top:3.75rem;margin-bottom:1.25rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .time-tra-thi .time-font-dark[data-v-6d6a66c6]{font-size:2.1875rem;margin-top:3.75rem;margin-bottom:1.25rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;font-weight:700}.right-container .right-container-sec .time-tra-thi .time-text-img[data-v-6d6a66c6]{position:absolute;top:0;left:9.375rem;width:2.5rem;height:2.5rem}.right-container .right-container-sec .time-tra-sec[data-v-6d6a66c6]{margin-left:2.5rem;margin-top:3.4375rem;height:100%;width:15.625rem;overflow:hidden}.right-container .right-container-sec .time-tra-sec .time-people-thi[data-v-6d6a66c6]{display:flex;margin-bottom:.46875rem}.right-container .right-container-sec .time-tra-sec .time-people-thi .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.15625rem;margin-left:.15625rem}.right-container .right-container-sec .time-tra-sec .time-people-thi .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:.625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.right-container .right-container-sec .time-tra-sec .time-people-thi .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:.625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.right-container .right-container-sec .time-tra-sec .time-button-view[data-v-6d6a66c6]{display:flex;margin-top:.9375rem;margin-left:0}.right-container .right-container-sec .time-tra-sec .time-button-view .time-button-start[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to top,#0da0b1,#04d3af);border-left:.0625rem solid #fff;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem;margin-right:.78125rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-sec .time-button-view .time-button-end[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-sec .time-button-view .time-button-end-dark[data-v-6d6a66c6]{width:7.1875rem;height:2.5rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(0,0,0,.3);background:linear-gradient(to top,#6b87ba,#fff);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-sec .time-font[data-v-6d6a66c6]{font-size:2.34375rem;margin-top:.9375rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .time-tra-sec .time-font-dark[data-v-6d6a66c6]{font-size:2.34375rem;margin-top:.9375rem;margin-bottom:.3125rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;font-weight:700}.right-container .right-container-sec .time-tra-sec .time-text-img[data-v-6d6a66c6]{position:absolute;top:0;left:9.375rem;width:2.5rem;height:2.5rem}.right-container .time-people-sec[data-v-6d6a66c6]{display:flex;margin-bottom:.3125rem}.right-container .time-people-sec .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.3125rem;margin-left:.15625rem;transition:all .4s ease-in-out}.right-container .time-people-sec .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:2.8125rem;transition:all .4s ease-in-out}.right-container .time-people-sec .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:2.8125rem;transition:all .4s ease-in-out}.right-container .right-container-fir[data-v-6d6a66c6]{width:100%;height:18.125rem;display:flex}.right-container .right-container-fir .right-container-fir-left-nav[data-v-6d6a66c6]{width:63%;height:17.125rem;position:relative;box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel[data-v-6d6a66c6]{position:absolute;left:29.0625rem;margin-top:.3125rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel[data-v-6d6a66c6]{position:relative;width:4.6875rem;height:3.125rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel .dots[data-v-6d6a66c6]{position:absolute;top:50%;right:.3125rem;transform:translateY(-50%);display:flex;flex-direction:column;gap:.21875rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel .dots .dot[data-v-6d6a66c6]{width:.3125rem;height:.3125rem;border-radius:50%;background-color:#657494;cursor:pointer;transition:background-color .3s ease}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel .dots .dot-dark[data-v-6d6a66c6]{width:.3125rem;height:.3125rem;border-radius:50%;background-color:#fff;cursor:pointer;transition:background-color .3s ease}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel .dots .dot.active[data-v-6d6a66c6]{background-color:#01a0fe}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card[data-v-6d6a66c6]{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:1.5625rem;border:.03125rem solid #fff;background-color:rgba(99,115,157,.1);background-image:url(../../static/index/mountain.png);background-position:60% 50%}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-dark[data-v-6d6a66c6]{position:absolute;top:0;left:0;width:100%;height:100%;border:.0625rem solid transparent;border-radius:1.5625rem;background:url(../../static/index/cardbgc/bgcdark.png) padding-box,linear-gradient(45deg,#9bc4f8,#285399,#9bc4f8,#285399,#9bc4f8) border-box;background-clip:padding-box,border-box;background-color:rgba(12,25,47,.1)}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;width:100%;height:100%}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .split-line-white-right-left[data-v-6d6a66c6]{width:.0625rem;height:25rem;background:linear-gradient(to top,rgba(0,0,0,0),#fff,rgba(0,0,0,0));margin-right:.625rem;position:relative}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .split-line-white-right-left .split-line-white-img[data-v-6d6a66c6]{position:absolute;top:0;left:-9.375rem;height:25rem;width:9.375rem;z-index:-1}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .uni-margin-wrap-fir[data-v-6d6a66c6]{width:100%}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .uni-margin-wrap-fir .swiper[data-v-6d6a66c6]{height:14.6875rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .uni-margin-wrap-fir .swiper .swiper-item-flex[data-v-6d6a66c6]{display:flex;margin-top:.9375rem;z-index:10}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .uni-margin-wrap-fir .swiper .swiper-item[data-v-6d6a66c6]{display:block;height:6.25rem;line-height:9.375rem;text-align:center}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-main-right[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-right:.78125rem;z-index:1}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir[data-v-6d6a66c6]{margin-top:1.25rem;margin-left:.9375rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-two[data-v-6d6a66c6]{display:flex}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-button-view[data-v-6d6a66c6]{display:flex;margin-top:.3125rem;margin-left:0}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-button-view .time-button-start[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to top,#047adb,#0ea7dd);border-left:.0625rem solid #fff;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem;margin-right:.78125rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-button-view .time-button-end[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-button-view .time-button-end-dark[data-v-6d6a66c6]{width:7.1875rem;height:2.5rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(0,0,0,.3);background:linear-gradient(to top,#6b87ba,#fff);transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-fir[data-v-6d6a66c6]{display:flex;margin-right:.625rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-fir .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.3125rem;margin-left:.15625rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-fir .time-people-font[data-v-6d6a66c6]{font-size:.9375rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-fir .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-font[data-v-6d6a66c6]{font-size:2.1875rem;margin-bottom:.9375rem;background:linear-gradient(to top,#334160,#687898);-webkit-background-clip:text;color:transparent;font-weight:700;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-font-dark[data-v-6d6a66c6]{font-size:2.1875rem;margin-bottom:.9375rem;background:linear-gradient(to right,#ebf4ff,#adc4e0);-webkit-background-clip:text;color:transparent;font-weight:700;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-text[data-v-6d6a66c6]{margin-left:.3125rem;font-size:1.09375rem;width:16.5625rem;margin-bottom:1.25rem;line-height:1.25rem;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-text-dark[data-v-6d6a66c6]{margin-left:.3125rem;color:#cdd6ea;font-size:1.09375rem;width:16.5625rem;margin-bottom:1.25rem;line-height:1.25rem;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;position:relative;margin-left:1.5625rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-zhixing[data-v-6d6a66c6]{position:absolute;top:.3125rem;left:27.1875rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-zhixing-font[data-v-6d6a66c6]{position:absolute;top:1.875rem;left:.3125rem;width:3.125rem;height:1.25rem;font-size:.78125rem;border-radius:.15625rem;color:#fff;z-index:10;background-color:#f37b5b;display:flex;justify-content:center;align-items:center}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-font[data-v-6d6a66c6]{font-size:1.0625rem;font-weight:350;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-font-dark[data-v-6d6a66c6]{font-size:1.0625rem;font-weight:350;transition:all .4s ease-in-out;color:#fff}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-laba-video[data-v-6d6a66c6]{width:100%;display:flex;justify-content:center;align-items:center;margin-top:.3125rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-laba-video .right-container-fir-left-card-main-laba[data-v-6d6a66c6]{width:1.40625rem;height:1.40625rem;margin-right:.15625rem;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-laba-video .right-container-fir-left-card-main-video[data-v-6d6a66c6]{width:1.40625rem;height:1.40625rem;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-img[data-v-6d6a66c6]{width:11.25rem;height:8.4375rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-main-left-up[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-right:0;margin-left:.625rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-hulilei[data-v-6d6a66c6]{position:absolute;top:1.3125rem;left:-.3125rem;width:6.875rem;height:2.28125rem;z-index:10}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-hulilei-font[data-v-6d6a66c6]{position:absolute;top:1.59375rem;left:1.40625rem;font-size:1.125rem;color:#fff;z-index:10}.right-container .right-container-fir .right-container-fir-right[data-v-6d6a66c6]{margin-left:2%;margin-right:2%;width:21.875rem;height:17.125rem;border-radius:1.5625rem;border:.03125rem solid #fff;background:url(../../static/index/rightbgi.png);background-size:cover;background-color:rgba(99,115,157,.1);box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-fir .right-container-fir-right-dark[data-v-6d6a66c6]{margin-left:2%;margin-right:2%;width:21.875rem;height:17.125rem;border-radius:1.5625rem;border:.03125rem solid #fff;background-color:#16304c;border:.0625rem solid transparent;background:url(../../static/index/cardbgc/bgcdark.png) padding-box,linear-gradient(45deg,#9bc4f8,#285399,#9bc4f8,#285399,#9bc4f8) border-box;background-clip:padding-box,border-box;background-color:rgba(12,25,47,.1);box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-fir .right-container-card[data-v-6d6a66c6]{margin-top:.78125rem;margin-left:1.25rem;position:relative}.right-container .right-container-fir .right-container-card .right-container-card-right[data-v-6d6a66c6]{position:absolute;right:0;top:0;width:3.75rem;height:10.9375rem;display:flex;align-items:center;justify-content:center;flex-direction:column;margin-bottom:.625rem;margin-right:.625rem}.right-container .right-container-fir .right-container-card .right-container-card-right .right-container-card-right-img[data-v-6d6a66c6]{width:1.875rem;height:1.875rem;margin-top:.3125rem}.right-container .right-container-fir .right-container-card .right-container-button[data-v-6d6a66c6]{display:flex;margin-left:-.625rem;margin-top:.71875rem}.right-container .right-container-fir .right-container-card .right-container-button .right-container-button-any[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:4.6875rem;position:relative}.right-container .right-container-fir .right-container-card .right-container-button .right-container-button-any .right-container-button-ray[data-v-6d6a66c6]{position:absolute;top:-.78125rem;left:0;width:4.9375rem;height:4.6875rem}.right-container .right-container-fir .right-container-card .right-container-button .right-container-button-any .right-container-button-text[data-v-6d6a66c6]{font-size:.78125rem;color:#313d56}.right-container .right-container-fir .right-container-card .right-container-button .right-container-button-img[data-v-6d6a66c6]{width:2.5rem;height:2.5rem}.right-container .right-container-fir .right-container-card .right-container-fenge[data-v-6d6a66c6]{width:100%;height:.0625rem;background:linear-gradient(to right,rgba(255,255,255,0),#fff,rgba(255,255,255,0))}.right-container .right-container-fir .right-container-card .right-container-tem[data-v-6d6a66c6]{display:flex;margin-top:.625rem;margin-bottom:.625rem}.right-container .right-container-fir .right-container-card .right-container-tem .right-container-tem-text[data-v-6d6a66c6]{font-size:1.5625rem;margin-right:2.1875rem}.right-container .right-container-fir .right-container-card .right-container-tem .right-container-tem-text-dark[data-v-6d6a66c6]{font-size:1.5625rem;margin-right:2.1875rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-fir .right-container-card .right-container-tem .right-container-tem-img[data-v-6d6a66c6]{width:2.03125rem;height:2.03125rem}.right-container .right-container-fir .right-container-card .right-container-title[data-v-6d6a66c6]{font-size:3.75rem;font-weight:500;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent;margin:0}.right-container .right-container-fir .right-container-card .right-container-title-dark[data-v-6d6a66c6]{font-size:3.75rem;display:block;margin:0;font-weight:500;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-fir .right-container-card .right-container-date[data-v-6d6a66c6]{font-size:1.09375rem;display:block;margin:0;margin-left:.5625rem;margin-bottom:.3125rem}.right-container .right-container-fir .right-container-card .right-container-date-dark[data-v-6d6a66c6]{font-size:1.09375rem;color:#7080a1;display:block;margin:0;margin-left:.5625rem;margin-bottom:.3125rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-fir .right-container-card .right-container-day[data-v-6d6a66c6]{font-size:1.09375rem;font-weight:600;margin-left:.5625rem}.right-container .right-container-fir .right-container-card .right-container-day-dark[data-v-6d6a66c6]{font-size:1.09375rem;font-weight:600;margin-left:.5625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-title-nav[data-v-6d6a66c6]{margin-top:2.34375rem;margin-bottom:.625rem;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-no[data-v-6d6a66c6]{font-size:1.09375rem;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-no-dark[data-v-6d6a66c6]{font-size:1.09375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-class[data-v-6d6a66c6]{font-size:1.09375rem;font-weight:800;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-class-dark[data-v-6d6a66c6]{font-size:1.09375rem;font-weight:800;margin-left:.625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-title-nav .right-container-title-class-anhei-button[data-v-6d6a66c6]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.9375rem;width:6.25rem;height:1.5625rem;background-color:#000;border:.0625rem solid}.right-container .right-container-title-nav .right-container-title-class-anhei-button .right-container-title-class-anhei[data-v-6d6a66c6]{font-size:.625rem;font-weight:800;color:#fff}.split-line[data-v-6d6a66c6]{margin-left:.625rem;margin-top:3.75rem;width:.0625rem;height:4.6875rem;background:linear-gradient(to top,rgba(0,0,0,0),#92a7c5,rgba(0,0,0,0))}.split-line-white-sec[data-v-6d6a66c6]{width:.0625rem;height:25rem;background:linear-gradient(to top,rgba(0,0,0,0),#fff,rgba(0,0,0,0));position:relative}.split-line-white-sec .split-line-white-img[data-v-6d6a66c6]{position:absolute;top:0;left:-9.375rem;height:25rem;width:9.375rem;pointer-events:none}.card-upfaguang[data-v-6d6a66c6]{position:absolute;top:8.28125rem;left:1.5625rem;height:18.75rem;width:15.625rem;transition:all .4s ease-in-out}.card-upfaguang-down[data-v-6d6a66c6]{position:absolute;top:19.375rem;left:26.875rem;height:18.75rem;width:15.625rem}.right-huli-sec[data-v-6d6a66c6]{margin-left:.21875rem;width:7.1875rem;height:100%;display:flex;justify-content:center;align-items:center;flex-direction:column;transition:all .4s ease-in-out}.right-huli-sec .right-huli-view[data-v-6d6a66c6]{width:100%;overflow:auto;display:flex;justify-content:center;align-items:flex-start;flex-direction:column;height:14.0625rem}.right-huli-sec .right-huli-view .right-huli-view-dis[data-v-6d6a66c6]{height:4.375rem;display:flex;justify-content:center;align-items:center;flex-direction:column;width:100%;transition:all .4s ease-in-out}.right-huli-sec .right-huli-view .right-huli-view-dis .right-huli-img[data-v-6d6a66c6]{width:2.8125rem;height:2.8125rem}.right-huli-sec .right-huli-view .right-huli-view-dis .right-huli-text[data-v-6d6a66c6]{width:100%;height:.46875rem;text-align:center;font-size:1.09375rem}.right-huli-sec .right-huli-view .right-huli-view-dis .right-huli-text-dark[data-v-6d6a66c6]{width:100%;height:.46875rem;text-align:center;font-size:1.09375rem;color:#fff;margin-top:.3125rem}.right-huli-sec .right-huli-shang[data-v-6d6a66c6],.right-huli-sec .right-huli-xia[data-v-6d6a66c6]{width:.9375rem;height:.625rem}.right-container-fir-left-card-flex[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;width:100%;height:100%;margin-left:.625rem}.right-container-fir-left-card-flex-sec[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;width:100%;height:100%;position:relative}.right-container-fir-left-card-flex-sec .right-container-fir-left-card-flex-sec-img[data-v-6d6a66c6]{position:absolute;top:1.3125rem;left:-.3125rem;width:6.875rem;height:2.28125rem;z-index:10}.right-container-fir-left-card-flex-sec .right-container-fir-left-card-flex-sec-font[data-v-6d6a66c6]{position:absolute;top:1.59375rem;left:1.40625rem;font-size:1.125rem;color:#fff;z-index:10}.right-container-fir-left-card-flex-sec .right-container-fir-left-card-flex-sec-imgright-fir[data-v-6d6a66c6]{position:absolute;width:3.125rem;height:1.5625rem;top:1.59375rem;left:20.3125rem;z-index:10}.right-container-fir-left-card-flex-sec .right-container-fir-left-card-flex-sec-imgright-sec[data-v-6d6a66c6]{position:absolute;width:3.125rem;height:1.5625rem;top:1.59375rem;left:20.9375rem;z-index:10}.savehundred[data-v-6d6a66c6]{width:100%;height:100%}.mt[data-v-6d6a66c6]{margin-top:1.5625rem}.progress-bar-container[data-v-6d6a66c6]{margin-top:.9375rem;width:60%;height:.625rem;background-color:#aab9d6;border-radius:15px;overflow:hidden}.progress-bar[data-v-6d6a66c6]{height:100%;background:linear-gradient(to top,#047adb,#0ea7dd);border-radius:15px 0 0 15px;transition:width .3s ease}.under-father[data-v-6d6a66c6]{position:fixed;bottom:0;display:flex;align-items:center;width:100%;height:4.6875rem}.under-father .under-father-view[data-v-6d6a66c6]{margin-left:.3125rem;margin-right:4.6875rem;position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column}.under-father .under-father-view .under-father-light[data-v-6d6a66c6]{position:absolute;bottom:-.625rem;left:-2.8125rem;width:9.375rem;height:6.25rem}.under-father .under-father-view .under-father-img[data-v-6d6a66c6]{width:2.5rem;height:2.5rem;margin-left:-.09375rem}.under-father .under-father-view .under-father-img-font[data-v-6d6a66c6]{font-size:.9375rem}.under-father .under-father-view .under-father-img-font-dark[data-v-6d6a66c6]{font-size:.9375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-icons[data-v-6d6a66c6]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.right-icons .right-icons-font[data-v-6d6a66c6]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-icons .right-icons-font-dark[data-v-6d6a66c6]{color:#fff;margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-icons .right-icons-img[data-v-6d6a66c6]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-1.25rem}.right-icons .right-icons-img-icon[data-v-6d6a66c6]{width:1.875rem;height:2.5rem;margin-top:-.3125rem;margin-left:.25rem}.swiper-item-flex .time-tra-thi-photo[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;width:9.375rem;flex-direction:column;transition:all .4s ease-in-out;margin-left:.625rem}.swiper-item-flex .time-tra-thi-photo .time-tra-thi-photo-img[data-v-6d6a66c6]{width:10.3125rem;height:10.3125rem;margin-top:-3.125rem;margin-left:-1.5625rem;transition:all .4s ease-in-out}.swiper-item-flex .time-tra-thi-photo .time-tra-thi-photo-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:1.5625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;transition:all .4s ease-in-out}.swiper-item-flex .time-tra-thi-photo .time-tra-thi-photo-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:1.5625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;transition:all .4s ease-in-out}.down-icons[data-v-6d6a66c6]{margin-top:.3125rem;width:100%;height:1.875rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-6d6a66c6]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.right-container-big[data-v-6d6a66c6]{transform:scale(1.562);transition:transform .5s ease;transform-origin:left top;background-color:#dce6fe;border-radius:.9375rem}.right-container-small[data-v-6d6a66c6]{transform:scale(1);transition:transform .5s ease;transform-origin:left top;background-color:#dce6fe;border-radius:1.5625rem;z-index:998}.right-container-right-big[data-v-6d6a66c6]{transform:scale(1.923);margin-left:2%;width:41%;transition:transform .5s ease;transform-origin:right bottom;background-color:#dce6fe;border-radius:.90625rem}.right-container-right-small[data-v-6d6a66c6]{transform:scale(1);margin-left:2%;width:41%;transition:transform .5s ease;transform-origin:right bottom;background-color:#dce6fe;border-radius:1.5625rem}.right-container-left-big[data-v-6d6a66c6]{transform:scale(1.781);width:55%;transition:transform .5s ease;transform-origin:left bottom;background-color:#b7c8f3;border-radius:.90625rem}.right-container-left-small[data-v-6d6a66c6]{transform:scale(1);width:55%;transition:transform .5s ease;transform-origin:left bottom;background-color:#b7c8f3;border-radius:1.5625rem}.super-card[data-v-81c0d68b]{display:flex;justify-content:center;width:100%;height:calc(100% - 12.5rem)}.super-card .scroll-x[data-v-81c0d68b]{height:100%;width:100%}.super-card .super-card-container[data-v-81c0d68b]{background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;overflow:hidden;width:51.5625rem;height:28.75rem;border-radius:.625rem;border:.0625rem solid #fff;box-shadow:.3125rem .3125rem 20px rgba(0,0,0,.1);position:relative}.super-card .super-card-time[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;height:2.5rem;width:3.125rem;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;font-weight:700;z-index:-1}.super-card .super-card-time-und[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;width:3.125rem;flex-direction:column;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1}.super-card .super-card-time-card[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;height:6.53125rem;width:100%;transition:all .8s;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.right-container[data-v-81c0d68b]{width:calc(100% - 7.34375rem);height:100vh;transition:opacity 1s ease;position:relative}.right-container .move-font[data-v-81c0d68b]{position:absolute;font-size:1.09375rem;font-weight:700}.right-container .doctorsay-container-view[data-v-81c0d68b]{width:100%;height:38.125rem;display:flex}.right-container .doctorsay-container-view .doctorsay-container-items[data-v-81c0d68b]{width:9.6875rem;height:38.125rem;margin-left:.9375rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up[data-v-81c0d68b]{display:flex;flex-wrap:wrap}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up .doctorsay-container-card[data-v-81c0d68b]{display:flex;flex-direction:column;justify-content:center;align-items:center;background-color:#ddeafa;width:4.0625rem;height:4.0625rem;margin:0 .5625rem .46875rem 0;border-radius:.9375rem;border:.0625rem solid #ddeafa;box-shadow:5px 5px 10px rgba(105,129,178,.2)}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up .doctorsay-container-card .doctorsay-container-card-img[data-v-81c0d68b]{width:2.34375rem;height:2.34375rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up .doctorsay-container-card .doctorsay-container-card-font[data-v-81c0d68b]{font-size:.9375rem;margin-top:-.3125rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up .doctorsay-container-card .doctorsay-container-card-font-dark[data-v-81c0d68b]{font-size:.9375rem;color:#fff;margin-top:-.3125rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down[data-v-81c0d68b]{background-color:#ddeafa;-webkit-backdrop-filter:blur(.25rem);backdrop-filter:blur(.25rem);width:9.0625rem;height:28.125rem;border-radius:.9375rem;margin-top:0;box-shadow:5px 5px 10px rgba(105,129,178,.8)}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-scroll[data-v-81c0d68b]{height:24.0625rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-top[data-v-81c0d68b]{height:2.5rem;display:flex;margin-bottom:.625rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-top .doctorsay-top-gun[data-v-81c0d68b]{margin-top:1.15625rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-top .doctorsay-top-font[data-v-81c0d68b]{font-size:1.0625rem;font-weight:700;margin-top:1.0625rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;height:2.8125rem;position:relative}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button .doctorsay-container-text-target[data-v-81c0d68b]{color:#016ad1;background-color:#c9e8ff;border-radius:.78125rem;border:.0625rem solid #fff;width:9.375rem;height:3.125rem;display:flex;justify-content:center;align-items:center;text-align:center;font-size:1.40625rem;transition:all .4s ease-in-out;box-shadow:5px 5px 10px rgba(105,129,178,.2);z-index:20;font-weight:700}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button .doctorsay-container-text[data-v-81c0d68b]{background-color:#f3f6fc;border:.0625rem solid #fff;border-radius:.78125rem;width:7.8125rem;height:2.34375rem;display:flex;justify-content:center;align-items:center;text-align:center;transition:all .4s ease-in-out;font-weight:500;font-size:.9375rem;box-shadow:5px 5px 10px rgba(105,129,178,.2)}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button .doctorsay-container-button-gun[data-v-81c0d68b]{position:absolute;top:.59375rem;left:.03125rem;width:.3125rem;height:1.5625rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button .doctorsay-container-button-uplight[data-v-81c0d68b]{position:absolute;top:1.25rem;left:.625rem;width:7.8125rem;height:1.5625rem;z-index:21;transition:all .4s ease-in-out}.right-container .doctorsay-container-view .doctorsay-container-container[data-v-81c0d68b]{border:.0625rem solid #fff;width:53.9375rem;height:41.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.3);-webkit-backdrop-filter:blur(.625rem);backdrop-filter:blur(.625rem);background-blend-mode:screen;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);overflow:hidden}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end[data-v-81c0d68b]{width:100%;display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father[data-v-81c0d68b]{height:100%;display:flex;flex-direction:column;width:100%}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items-all[data-v-81c0d68b]{width:calc(100% - 2.65625rem);height:6.25rem;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items[data-v-81c0d68b]{display:flex;width:calc(100% - 2.65625rem);height:6.25rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father[data-v-81c0d68b]{margin-right:.625rem;width:4.6875rem;height:4.6875rem;display:flex;justify-content:center;align-items:center;flex-direction:column;position:relative;background:linear-gradient(to bottom right,#fff,#dcdcf9,#dbdcf8);border-radius:.9375rem;border:.0625rem solid #fff;box-shadow:.3125rem .3125rem .625rem rgba(105,129,178,.2);transition:all 1.5s ease-in-out}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-father-close-father[data-v-81c0d68b]{width:1.25rem;height:1.25rem;border-radius:50%;display:flex;background-color:#0184db;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;color:#fff}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father[data-v-81c0d68b]{width:3.125rem;height:3.125rem;border-radius:50%;display:flex;justify-content:center;align-items:center}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father .super-end-items-img[data-v-81c0d68b]{width:2.65625rem;height:2.65625rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father-active[data-v-81c0d68b]{width:3.125rem;height:3.125rem;border-radius:50%;display:flex;justify-content:center;align-items:center;animation:shake-81c0d68b .5s infinite}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father-active .super-end-items-img[data-v-81c0d68b]{width:2.65625rem;height:2.65625rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-font[data-v-81c0d68b]{margin-top:-.3125rem;font-size:.78125rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-font-father[data-v-81c0d68b]{display:flex;margin-top:.625rem;margin-bottom:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-font-father .super-end-font-gun[data-v-81c0d68b]{margin-left:1.25rem;margin-right:.625rem;margin-top:.15625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-font-father .super-end-font-font[data-v-81c0d68b]{font-size:1.1875rem;font-weight:700}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title[data-v-81c0d68b]{width:100%;height:3.28125rem;display:flex;align-items:center;justify-content:space-between}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right[data-v-81c0d68b]{height:100%;display:flex;align-items:center;width:12.5rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-juzhen[data-v-81c0d68b]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father[data-v-81c0d68b]{display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button-target[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;background-color:#3fa9f5;color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;background-color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-cheng[data-v-81c0d68b]{background-color:#ffdba1;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-zi[data-v-81c0d68b]{background-color:#7b61ff;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-kuai-font[data-v-81c0d68b]{font-size:1rem;margin-left:.3125rem;margin-right:.78125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left[data-v-81c0d68b]{display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-share[data-v-81c0d68b]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-left:.625rem;margin-top:-.09375rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-gun[data-v-81c0d68b]{margin-top:.21875rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-font[data-v-81c0d68b]{font-size:1.1875rem;font-weight:700}.right-container .right-container-title-nav[data-v-81c0d68b]{margin-top:2.34375rem;margin-bottom:.625rem;margin-left:.625rem}.right-container .right-container-title-nav .right-icons[data-v-81c0d68b]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-font[data-v-81c0d68b]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-font-dark[data-v-81c0d68b]{color:#fff;margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-img[data-v-81c0d68b]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-img-icon[data-v-81c0d68b]{width:1.875rem;height:2.5rem;margin-top:-.3125rem;margin-left:.25rem}.right-container .right-container-title-nav .right-container-title-no[data-v-81c0d68b]{font-size:1.09375rem;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-no-dark[data-v-81c0d68b]{font-size:1.09375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-class[data-v-81c0d68b]{font-size:1.09375rem;font-weight:800;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-class-dark[data-v-81c0d68b]{font-size:1.09375rem;font-weight:800;margin-left:.625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-title-nav .right-container-title-class-anhei-button-wrong[data-v-81c0d68b]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.46875rem;width:6.25rem;height:1.5625rem;background-color:#fff}.right-container .right-container-title-nav .right-container-title-class-anhei-button-wrong .right-container-title-class-anhei[data-v-81c0d68b]{font-size:.9375rem;font-weight:800}.right-container .right-container-title-nav .right-container-title-class-anhei-button[data-v-81c0d68b]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.625rem;width:6.25rem;height:1.5625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff)}.right-container .right-container-title-nav .right-container-title-class-anhei-button .right-container-title-class-anhei[data-v-81c0d68b]{font-size:.9375rem;font-weight:800;color:#fff}.title-time-delete[data-v-81c0d68b]{width:1.71875rem;height:1.71875rem;border-radius:50%;display:flex;background-color:#fff;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;background-color:#02abfe;color:#fff;z-index:999;font-size:1.5625rem}.title-time-blue[data-v-81c0d68b]{position:absolute;top:0;left:0;z-index:10}.title-time-blue .title-time-blue-img[data-v-81c0d68b]{height:6.53125rem;width:8.59375rem}.title-time[data-v-81c0d68b]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-81c0d68b]{font-size:1rem;margin-left:1.25rem;margin-top:.375rem}.title-time .title-time-button[data-v-81c0d68b]{position:absolute;top:-.125rem;right:-.125rem;width:2.03125rem;height:1.875rem}.title-time .title-time-zhejiao[data-v-81c0d68b]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.title-time .title-time-font[data-v-81c0d68b]{position:absolute;top:.21875rem;right:.15625rem;font-size:.625rem;color:#fff}.popup-delete[data-v-81c0d68b]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-delete .popup-delete-content[data-v-81c0d68b]{position:absolute;right:16.09375rem;display:flex;flex-direction:column;align-items:center;width:25rem;height:15.625rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.7);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-delete .popup-delete-content .popup-delete-img[data-v-81c0d68b]{width:7.8125rem;height:7.1875rem;margin-top:1.25rem;margin-bottom:.625rem}.popup-delete .popup-delete-content .popup-delete-text[data-v-81c0d68b]{font-size:.9375rem;color:#42474e}.popup-delete .popup-delete-content .popup-delete-button[data-v-81c0d68b]{display:flex;justify-content:space-around;height:2.8125rem;margin-top:.9375rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-left[data-v-81c0d68b]{background-color:#02abfe;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-right[data-v-81c0d68b]{background-color:#ced9e8;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;margin-right:.625rem}.popup-overlay[data-v-81c0d68b]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;z-index:999}.popup-overlay .popup-overlay-content[data-v-81c0d68b]{position:absolute;display:flex;align-items:center;width:25rem;height:12.1875rem;background-color:#fff;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-overlay .popup-overlay-content .popup-overlay-content-left[data-v-81c0d68b]{height:100%;width:10.9375rem;display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-img[data-v-81c0d68b]{width:8.75rem;height:5.625rem;margin-top:-.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-font[data-v-81c0d68b]{font-size:.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right[data-v-81c0d68b]{height:100%;width:14.0625rem;position:relative}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-font[data-v-81c0d68b]{font-size:1.5625rem;margin-top:3.125rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-text[data-v-81c0d68b]{margin-left:.3125rem;font-size:.9375rem;width:11.875rem;margin-bottom:1.5625rem;line-height:1.09375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richang[data-v-81c0d68b]{background-color:#ffc363;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richangnot[data-v-81c0d68b]{background-color:#7b61ff;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem;color:#fff}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-crush[data-v-81c0d68b]{position:absolute;top:.625rem;right:.625rem;width:2.1875rem;height:2.1875rem;animation:shake-81c0d68b .5s 3}.popup-song[data-v-81c0d68b]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-song .popup-song-contain[data-v-81c0d68b]{position:absolute;right:17.8125rem;width:40.5rem;background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.7);border:.0625rem solid #fff;background-blend-mode:screen;border-radius:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-song .popup-song-contain .shu-container-left[data-v-81c0d68b]{display:flex;margin-top:2.1875rem;margin-bottom:.625rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-gun[data-v-81c0d68b]{margin-top:.15625rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-font[data-v-81c0d68b]{font-size:1.09375rem;font-weight:700}.popup-song-father[data-v-81c0d68b]{position:relative}.popup-song-father .shu-up-img[data-v-81c0d68b]{position:absolute;top:-2.1875rem;left:9.53125rem;width:21.875rem;height:2.5rem}.popup-song-father .shu-up-font[data-v-81c0d68b]{position:absolute;top:-1.5625rem;left:12.1875rem;display:flex;color:#ff5a00}.popup-song-father .arrayindex[data-v-81c0d68b]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem}.popup-song-father .arrayindex .arrayindex-one[data-v-81c0d68b]{width:12.03125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .arrayindex .arrayindex-one-target[data-v-81c0d68b]{width:12.03125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.ri-img[data-v-81c0d68b]{position:absolute;top:-.125rem;right:-.125rem;width:1.875rem;height:1.875rem}.time-father[data-v-81c0d68b]{display:flex;width:100%;flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem}.time-father .time-one[data-v-81c0d68b]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-target[data-v-81c0d68b]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-hui[data-v-81c0d68b]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#c2c9d3;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.button-father[data-v-81c0d68b]{height:6.25rem;width:calc(100%-2.5rem);display:flex;justify-content:center;align-items:center;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem;border-top:.03125rem solid #e6e6e6}.button-father .button-father-right[data-v-81c0d68b]{background:linear-gradient(to right,#00c9ff,#0076ff);width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.button-father .button-father-wrong[data-v-81c0d68b]{background-color:#c2c9d3;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center}.month-father[data-v-81c0d68b]{display:flex;width:calc(100% - 1.875rem);flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem;margin-top:.625rem}.month-father .month-one[data-v-81c0d68b]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.month-father .month-one-target[data-v-81c0d68b]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father[data-v-81c0d68b]{display:flex;width:100%;flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem;margin-top:.625rem}.week-father .week-one[data-v-81c0d68b]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father .week-one-target[data-v-81c0d68b]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.radio-father[data-v-81c0d68b]{display:flex;width:100%;flex-wrap:wrap;margin-left:2.34375rem;margin-right:.9375rem}.radio-father .radio-circle[data-v-81c0d68b]{margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid black;background-color:transparent}.radio-father .radio-circle-target[data-v-81c0d68b]{position:relative;margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-father .radio-circle-target[data-v-81c0d68b]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.625rem;height:.625rem;background-color:#02abfe;border-radius:50%}.radio-father .radio-font[data-v-81c0d68b]{margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.title-time-border[data-v-81c0d68b]{margin-top:.125rem;margin-left:.125rem;width:calc(100% - .25rem);height:calc(100% - .25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column}.title-time-border-red[data-v-81c0d68b]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,red,red) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,red,red) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom right / .25rem 1.875rem no-repeat}.title-time-border-big[data-v-81c0d68b],.title-time-border-big-top[data-v-81c0d68b]{transform:scale(1.5);transform-origin:top;border-top:0 solid #fff;transition:transform .5s ease-out,opacity .5s ease-out;z-index:999;display:flex;justify-content:center;align-items:center;height:6.53125rem;width:100%;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.title-time-border-blue[data-v-81c0d68b]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,#0184db,#0184db) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,#0184db,#0184db) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom right / .25rem 1.875rem no-repeat}.title-time-border-yellow[data-v-81c0d68b]{margin:.3125rem;border:.0625rem solid #d0d8e0;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-yellow-active-transparent[data-v-81c0d68b]{margin:.3125rem;border:.125rem dashed #ff8a00;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .8125rem);height:calc(100% - .8125rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-yellow-active[data-v-81c0d68b]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-81c0d68b .8s infinite;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-pouple-active-transparent[data-v-81c0d68b]{margin:.3125rem;border:.125rem dashed #7B61FF;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .8125rem);height:calc(100% - .8125rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.title-time-border-pouple[data-v-81c0d68b]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.title-time-border-pouple-active[data-v-81c0d68b]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-81c0d68b 1s infinite;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.down-icons[data-v-81c0d68b]{margin-top:.3125rem;width:100%;height:1.875rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-81c0d68b]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}@keyframes shake-81c0d68b{0%{transform:rotate(-10deg)}25%{transform:rotate(10deg)}50%{transform:rotate(-10deg)}75%{transform:rotate(10deg)}to{transform:rotate(-10deg)}}@keyframes shakesmall-81c0d68b{0%{transform:rotate(-2deg)}25%{transform:rotate(2deg)}50%{transform:rotate(-2deg)}75%{transform:rotate(2deg)}to{transform:rotate(-2deg)}}.boom[data-v-81c0d68b]{position:absolute;top:2.5rem;left:0;width:1.3125rem;height:26.25rem;display:flex;flex-direction:column;align-items:center;overflow:hidden;z-index:10}.boom .boom-son[data-v-81c0d68b]{height:6.5625rem;width:100%;font-size:.9375rem;letter-spacing:.15625rem;-webkit-writing-mode:vertical-rl;writing-mode:vertical-rl;text-align:center;z-index:10;background:linear-gradient(to bottom,#ffe2b2,#e3deff);border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.boom .boom-son-target[data-v-81c0d68b]{height:6.5625rem;width:100%;font-size:.9375rem;letter-spacing:.15625rem;-webkit-writing-mode:vertical-rl;writing-mode:vertical-rl;text-align:center;z-index:10;background:linear-gradient(to bottom,#ff8a00,#eceaff);border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.popup-share[data-v-81c0d68b]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-share .popup-share-content[data-v-81c0d68b]{position:absolute;right:16.09375rem;display:flex;flex-direction:column;width:25rem;height:11.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.7);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-share .popup-share-content .popup-share-title[data-v-81c0d68b]{margin:.9375rem;font-size:1.25rem;position:relative}.popup-share .popup-share-content .popup-share-title .popup-share-img[data-v-81c0d68b]{position:absolute;top:0;right:0;width:6.25rem;height:6.25rem}.popup-share .popup-share-content .popup-share-upcontent[data-v-81c0d68b]{margin:0 .9375rem;display:flex;justify-content:space-between}.popup-share .popup-share-content .popup-share-upcontent .popup-share-font[data-v-81c0d68b]{font-size:1.09375rem;color:gray}.popup-share .popup-share-content .popup-share-gray[data-v-81c0d68b]{background-color:#d3d3d3;width:calc(100% - 1.875rem);height:.0625rem;margin:3.4375rem .9375rem 0}.popup-share .popup-share-content .popup-share-downcontent[data-v-81c0d68b]{display:flex;justify-content:space-between;align-items:center;height:100%;margin:0 .9375rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-img[data-v-81c0d68b]{width:2.1875rem;height:2.1875rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-font[data-v-81c0d68b]{font-size:.84375rem;margin-left:.625rem}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-left[data-v-81c0d68b]{display:flex;align-items:center}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-button[data-v-81c0d68b]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.46875rem .9375rem;border-radius:.625rem;font-size:1rem}.move-circle[data-v-a880c760]{position:absolute;bottom:0;right:0;width:10.9375rem;height:10.9375rem;display:flex;justify-content:center;align-items:center;z-index:99;touch-action:none}.move-circle .click-box-top[data-v-a880c760]{position:absolute;top:.625rem;right:2.1875rem;width:6.875rem;height:2.5rem}.move-circle .click-box-bottom[data-v-a880c760]{position:absolute;bottom:.625rem;right:2.1875rem;width:6.875rem;height:2.5rem}.move-circle .click-box-right[data-v-a880c760]{position:absolute;bottom:3.125rem;right:0;width:2.8125rem;height:4.6875rem}.move-circle .click-box-left[data-v-a880c760]{position:absolute;bottom:3.125rem;left:0;width:2.8125rem;height:4.6875rem}.move-circle .click-box-center[data-v-a880c760]{position:absolute;bottom:4.0625rem;right:4.0625rem;width:2.8125rem;height:2.8125rem}.move-circle-all[data-v-a880c760]{width:10.9375rem;height:10.9375rem}.light-shadow[data-v-a880c760]{position:absolute;width:1.25rem;height:1.25rem;background-color:transparent;border:1.875rem solid #3da6ff;border-radius:50%;pointer-events:none;opacity:1}.ripple-loop[data-v-a880c760]{animation:rippleLoop-a880c760 1.2s ease-out infinite}.ripple-once[data-v-a880c760]{animation:rippleLoop-a880c760 1.2s ease-out forwards}@keyframes rippleLoop-a880c760{0%{transform:translate(-50%,-50%) scale(.5);opacity:.6}to{transform:translate(-50%,-50%) scale(2.5);opacity:0}}.light-circle[data-v-a880c760]{position:relative;width:150px;height:150px;border-radius:50%;background:#111;overflow:visible}.circle[data-v-a880c760]{position:relative;width:150px;height:150px;border-radius:50%;background:#222;margin:50px}.pulse-circle[data-v-a880c760]{position:absolute;top:50%;right:50%;transform:translate(-50%,-50%);border-radius:50%;background:radial-gradient(circle,#03a4ff 0%,transparent 70%);animation:pulse-a880c760 3s forwards}@keyframes pulse-a880c760{0%{width:0;height:0;opacity:.8}50%{width:10.9375rem;height:10.9375rem;opacity:.4}to{width:0;height:0;opacity:0}}.super-card[data-v-bd7a2b2a]{display:flex;width:100%;height:calc(100% - 12.5rem)}.super-card .scroll-x[data-v-bd7a2b2a]{height:100%;width:100%}.super-card .right-cards[data-v-bd7a2b2a]{width:14.53125rem;height:37.1875rem;border:.0625rem solid #fff;border-top-right-radius:.625rem;border-bottom-right-radius:.625rem}.super-card .right-cards .scroll-box[data-v-bd7a2b2a]{width:100%;height:9.0625rem}.super-card .right-cards .scroll-box .right-box[data-v-bd7a2b2a]{height:10.9375rem;display:flex;flex-direction:column;flex-wrap:wrap;align-content:flex-start}.super-card .right-cards .scroll-box .right-box .right-box-item[data-v-bd7a2b2a]{margin:.3125rem 0 0 .3125rem;width:3.75rem;height:4rem;border-radius:.625rem;background-color:#fff;position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-img[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-font[data-v-bd7a2b2a]{font-size:.625rem;margin-top:-.3125rem}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-items[data-v-bd7a2b2a]{display:flex;justify-content:space-around;align-items:center}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-items .right-box-items-button[data-v-bd7a2b2a]{width:.78125rem;height:.78125rem;margin:0 .09375rem}.super-card .right-cards .scroll-box .right-box .title-time-button[data-v-bd7a2b2a]{position:absolute;top:0;right:0;width:1.71875rem;height:1.40625rem}.super-card .right-cards .scroll-box .right-box .title-time-font[data-v-bd7a2b2a]{position:absolute;top:.15625rem;right:.09375rem;font-size:.53125rem;color:#fff}.super-card .time-father[data-v-bd7a2b2a]{border-radius:.625rem;height:97%;width:95%;margin-top:6%;margin-left:6%;background-color:rgba(255,255,255,.3)}.super-card .time-father .time-button[data-v-bd7a2b2a]{width:4.375rem;height:1.875rem;margin-top:.9375rem;margin-left:.9375rem;border-radius:.625rem;background-color:#369fef;border:.15625rem solid #369fef;display:flex}.super-card .time-father .time-button .time-button-month[data-v-bd7a2b2a]{width:50%;height:100%;color:#fff;display:flex;justify-content:center;align-items:center}.super-card .time-father .time-button .time-button-month-target[data-v-bd7a2b2a]{width:50%;height:100%;background-color:#fff;color:#369fef;display:flex;justify-content:center;align-items:center;border-bottom-left-radius:.46875rem;border-top-left-radius:.46875rem}.super-card .time-father .time-button .time-button-week-target[data-v-bd7a2b2a]{width:50%;height:100%;display:flex;justify-content:center;align-items:center;color:#fff}.super-card .time-father .time-button .time-button-week[data-v-bd7a2b2a]{width:50%;height:100%;color:#369fef;display:flex;justify-content:center;align-items:center;background-color:#fff;border-bottom-right-radius:.46875rem;border-top-right-radius:.46875rem}.super-card .under-button[data-v-bd7a2b2a]{width:13.75rem;height:2.96875rem;margin-left:.3125rem;margin-top:.3125rem;border-radius:.625rem;background-color:#e5e9f9;display:flex;align-items:center;position:relative}.super-card .under-button .under-button-black[data-v-bd7a2b2a]{transition:all 1s;position:absolute;width:9.375rem;height:3.125rem;border-radius:.625rem;padding-left:.3125rem;background-color:#4d4d4d;top:-3.125rem;left:0;color:#fff;display:flex;justify-content:center;align-items:center}.super-card .under-button .under-button-black .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;bottom:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-top:.625rem solid #4d4d4d}.super-card .under-button .white-circle-click-father[data-v-bd7a2b2a]{position:relative;margin-left:.625rem;color:#fff;margin-top:.3125rem}.super-card .under-button .white-circle-click-father .white-circle-click[data-v-bd7a2b2a]{width:4.6875rem;height:2.1875rem}.super-card .under-button .white-circle-click-father .white-circle-font[data-v-bd7a2b2a]{position:absolute;top:.46875rem;left:1.875rem}.super-card .under-button .white-circle[data-v-bd7a2b2a]{width:2.1875rem;height:2.1875rem;border-radius:50%;margin-left:.3125rem;background-color:#fff;display:flex;justify-content:center;align-items:center}.super-card .under-button .white-circle .white-circle-img[data-v-bd7a2b2a]{width:1.25rem;height:1.25rem}.super-card .middle-box[data-v-bd7a2b2a]{width:100%;height:24.375rem;display:flex;overflow:hidden}.super-card .middle-box .middle-left-box[data-v-bd7a2b2a]{margin-left:.3125rem;width:10.625rem;height:24.4375rem;border-radius:.625rem;background-color:#e5e9f9;display:flex}.super-card .middle-box .middle-left-box .first-contant[data-v-bd7a2b2a]{height:100%;width:6.5625rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item[data-v-bd7a2b2a]{margin:.3125rem 0 0 .3125rem;width:5.9375rem;height:4rem;border-radius:.625rem;background-color:rgba(255,255,255,.3);position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column;box-shadow:.03125rem .03125rem .0625rem .03125rem rgba(0,0,0,.1);overflow:hidden}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-img[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-button[data-v-bd7a2b2a]{position:absolute;top:-.09375rem;right:-.09375rem;width:1.5625rem;height:1.40625rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-font[data-v-bd7a2b2a]{font-size:.71875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-zhejiao[data-v-bd7a2b2a]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-font[data-v-bd7a2b2a]{position:absolute;top:.09375rem;right:.15625rem;font-size:.625rem;color:#fff}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-items[data-v-bd7a2b2a]{display:flex;justify-content:space-around;align-items:center}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-items .right-box-items-button[data-v-bd7a2b2a]{width:.78125rem;height:.78125rem;margin:0 .09375rem}.super-card .middle-box .middle-left-box .second-contant[data-v-bd7a2b2a]{height:100%;width:4.375rem}.super-card .middle-box .middle-left-box .second-contant .downList-box-target[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;background-color:#fff;width:3.125rem;height:3.125rem;border-radius:.625rem;margin-left:.625rem;margin-top:.625rem;flex-direction:column;box-shadow:.0625rem .0625rem .125rem .0625rem rgba(54,159,239,.1);border:.0625rem solid #369fef}.super-card .middle-box .middle-left-box .second-contant .downList-box-target .downList-box-img[data-v-bd7a2b2a]{height:1.5625rem;width:1.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box-target .downList-box-text[data-v-bd7a2b2a]{font-size:.625rem;color:#369fef}.super-card .middle-box .middle-left-box .second-contant .downList-box[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;background-color:rgba(255,255,255,.3);width:3.125rem;height:3.125rem;border-radius:.625rem;margin-left:.625rem;margin-top:.625rem;flex-direction:column;box-shadow:.0625rem .0625rem .125rem .0625rem rgba(0,0,0,.1)}.super-card .middle-box .middle-left-box .second-contant .downList-box .downList-box-img[data-v-bd7a2b2a]{height:1.5625rem;width:1.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box .downList-box-text[data-v-bd7a2b2a]{font-size:.625rem}.super-card .middle-box .middle-right-box[data-v-bd7a2b2a]{height:24.375rem;width:2.8125rem}.super-card .middle-box .middle-right-box .doctorsay-container-card[data-v-bd7a2b2a]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;background-color:#e5e9f9;width:2.8125rem;height:3.8125rem;border-radius:.625rem;border:.0625rem solid #ddeafa;box-shadow:5px 5px 10px rgba(105,129,178,.2);margin:0 .5625rem .3125rem .3125rem}.super-card .middle-box .middle-right-box .doctorsay-container-card .doctorsay-container-card-img[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem}.super-card .middle-box .middle-right-box .doctorsay-container-card .doctorsay-container-card-font[data-v-bd7a2b2a]{font-size:.78125rem;margin-top:0}.super-card .middle-box .middle-right-box .doctorsay-container-card-target[data-v-bd7a2b2a]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;background:linear-gradient(to left,#fff,#e5e9f9);width:3.59375rem;height:3.8125rem;border-top-right-radius:.625rem;border-bottom-right-radius:.625rem;margin:0 .5625rem .3125rem -.46875rem}.super-card .middle-box .middle-right-box .doctorsay-container-card-target .doctorsay-container-card-img[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem;margin-left:.78125rem}.super-card .middle-box .middle-right-box .doctorsay-container-card-target .doctorsay-container-card-font-dark[data-v-bd7a2b2a]{font-size:.78125rem;color:#369fef;margin-left:.78125rem;margin-top:0}.super-card .super-card-container[data-v-bd7a2b2a]{background:url(../../static/index/whitemountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;overflow:hidden;margin-left:3.75rem;width:43.90625rem;height:37.1875rem;border:.0625rem solid #fff;border-left:0;box-shadow:.3125rem .3125rem 20px rgba(0,0,0,.1);position:relative}.super-card .super-card-time[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;height:2.5rem;width:6.28125rem;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;font-weight:700;z-index:-1}.super-card .super-card-time-und[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;width:6.28125rem;flex-direction:column;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1}.super-card .super-card-time-und .title-time-img[data-v-bd7a2b2a]{width:2.03125rem;height:2.03125rem;margin-top:-.15625rem}.super-card .super-card-time-und .title-time-font-rel[data-v-bd7a2b2a]{font-size:.78125rem;margin-bottom:.15625rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.super-card .super-card-time-und .title-time-items[data-v-bd7a2b2a]{display:flex;justify-content:space-around;align-items:center}.super-card .super-card-time-und .title-time-items .right-box-items-button[data-v-bd7a2b2a]{width:1.09375rem;height:1.09375rem;margin:0 .15625rem}.super-card .super-card-time-card[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;height:5.21875rem;width:100%;transition:all .8s;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.right-container[data-v-bd7a2b2a]{width:calc(100% - 7.34375rem);height:100vh;transition:opacity 1s ease;position:relative}.right-container .joystick[data-v-bd7a2b2a]{position:absolute;bottom:6.25rem;left:.625rem;width:9.375rem;height:9.375rem;z-index:9999}.right-container .outer-circle[data-v-bd7a2b2a]{width:100%;height:100%;border-radius:50%;background-color:rgba(127,127,127,.1);position:relative}.right-container .inner-circle[data-v-bd7a2b2a]{width:3.75rem;height:3.75rem;border-radius:50%;background-color:rgba(127,127,127,.3);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.right-container .doctorsay-container-view[data-v-bd7a2b2a]{width:100%;height:38.125rem;display:flex}.right-container .doctorsay-container-view .doctorsay-container-container[data-v-bd7a2b2a]{border:.0625rem solid #fff;width:64.0625rem;height:41.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.3);-webkit-backdrop-filter:blur(.625rem);backdrop-filter:blur(.625rem);background-blend-mode:screen;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);overflow:hidden}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title[data-v-bd7a2b2a]{width:100%;height:3.28125rem;display:flex;align-items:center;justify-content:space-between}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right[data-v-bd7a2b2a]{height:100%;display:flex;align-items:center;margin-right:1.5625rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-juzhen[data-v-bd7a2b2a]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-right:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father[data-v-bd7a2b2a]{display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button-target[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;background-color:#3fa9f5;color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;background-color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-cheng[data-v-bd7a2b2a]{background-color:#ffdba1;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-zi[data-v-bd7a2b2a]{background-color:#7b61ff;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-kuai-font[data-v-bd7a2b2a]{font-size:1rem;margin-left:.3125rem;margin-right:.78125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left[data-v-bd7a2b2a]{display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-share[data-v-bd7a2b2a]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-left:.625rem;margin-top:-.09375rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-gun[data-v-bd7a2b2a]{margin-top:.21875rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-font[data-v-bd7a2b2a]{font-size:1.1875rem;font-weight:700}.right-container .right-container-title-nav[data-v-bd7a2b2a]{margin-top:2.34375rem;margin-bottom:.625rem;margin-left:.625rem}.right-container .right-container-title-nav .right-icons[data-v-bd7a2b2a]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-font[data-v-bd7a2b2a]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-font-dark[data-v-bd7a2b2a]{color:#fff;margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-img[data-v-bd7a2b2a]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-img-icon[data-v-bd7a2b2a]{width:1.875rem;height:2.5rem;margin-top:-.3125rem;margin-left:.25rem}.right-container .right-container-title-nav .right-container-title-no[data-v-bd7a2b2a]{font-size:1.09375rem;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-no-dark[data-v-bd7a2b2a]{font-size:1.09375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-class[data-v-bd7a2b2a]{font-size:1.09375rem;font-weight:800;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-class-dark[data-v-bd7a2b2a]{font-size:1.09375rem;font-weight:800;margin-left:.625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-title-nav .right-container-title-class-anhei-button-wrong[data-v-bd7a2b2a]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.46875rem;width:6.25rem;height:1.5625rem;background-color:#fff}.right-container .right-container-title-nav .right-container-title-class-anhei-button-wrong .right-container-title-class-anhei[data-v-bd7a2b2a]{font-size:.9375rem;font-weight:800}.right-container .right-container-title-nav .right-container-title-class-anhei-button[data-v-bd7a2b2a]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.625rem;width:6.25rem;height:1.5625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff)}.right-container .right-container-title-nav .right-container-title-class-anhei-button .right-container-title-class-anhei[data-v-bd7a2b2a]{font-size:.9375rem;font-weight:800;color:#fff}.title-time-delete[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem;border-radius:50%;display:flex;background-color:#fff;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;background-color:#02abfe;color:#fff;z-index:999;font-size:1.5625rem}.title-time-blue[data-v-bd7a2b2a]{position:absolute;top:0;left:0;z-index:10}.title-time-blue .title-time-blue-img[data-v-bd7a2b2a]{height:5.21875rem;width:6.25rem}.time-button-black-spe[data-v-bd7a2b2a]{transition:all 1s;position:absolute;width:7.8125rem;height:3.125rem;padding-left:.3125rem;border-radius:.625rem;background-color:#4d4d4d;bottom:-3.125rem;left:-2.5rem;color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-black-spe .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;top:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-bottom:.625rem solid #4d4d4d}.time-button-black[data-v-bd7a2b2a]{transition:all 1s;position:absolute;width:7.8125rem;height:3.125rem;padding-left:.3125rem;border-radius:.625rem;background-color:#4d4d4d;top:-3.125rem;left:-2.5rem;color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-black .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;bottom:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-top:.625rem solid #4d4d4d}.time-button-orange-spe[data-v-bd7a2b2a]{transition:all 1s;position:absolute;width:7.8125rem;height:3.125rem;padding-left:.3125rem;border-radius:.625rem;background-color:#ff8a00;bottom:-3.125rem;left:-2.5rem;color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-orange-spe .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;top:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-bottom:.625rem solid #ff8a00}.time-button-orange[data-v-bd7a2b2a]{transition:all 1s;position:absolute;padding-left:.3125rem;width:7.8125rem;height:3.125rem;border-radius:.625rem;background-color:#ff8a00;top:-2.8125rem;left:-2.5rem;color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-orange .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;bottom:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-top:.625rem solid #ff8a00}.title-time[data-v-bd7a2b2a]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-bd7a2b2a]{font-size:1rem;margin-left:.3125rem;margin-top:.375rem}.title-time .title-time-button[data-v-bd7a2b2a]{position:absolute;top:-.1875rem;right:-.125rem;width:1.71875rem;height:1.25rem}.title-time .title-time-zhejiao[data-v-bd7a2b2a]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.title-time .title-time-font[data-v-bd7a2b2a]{position:absolute;top:0;right:.15625rem;font-size:.4375rem;color:#fff}.popup-say[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-say .popup-say-content[data-v-bd7a2b2a]{position:absolute;right:3.28125rem;bottom:6.25rem;display:flex;flex-direction:column;width:14.0625rem;height:18.75rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-say .popup-say-content .tags-father[data-v-bd7a2b2a]{display:flex;margin-left:1.25rem;margin-top:.46875rem;align-items:center;width:5.625rem}.popup-say .popup-say-content .tags-father .tags-img[data-v-bd7a2b2a]{width:1.5625rem;height:1.5625rem;margin-right:.3125rem}.popup-say .popup-say-content .popup-say-content-flex[data-v-bd7a2b2a]{display:flex;margin-top:.21875rem;margin-bottom:.3125rem}.popup-say .popup-say-content .popup-say-content-flex .popup-say-content-gun[data-v-bd7a2b2a]{margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-say .popup-say-content .popup-say-content-flex .popup-say-content-font[data-v-bd7a2b2a]{font-size:.9375rem;font-weight:700}.popup-say .popup-say-content .popup-say-three[data-v-bd7a2b2a]{position:absolute;left:5.40625rem;bottom:-1.28125rem;width:0;height:0;border-left:.9375rem solid transparent;border-right:.9375rem solid transparent;border-top:1.25rem solid #d2ecff}.popup-delete[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-delete .popup-delete-content[data-v-bd7a2b2a]{position:absolute;right:23.4375rem;display:flex;flex-direction:column;align-items:center;width:25rem;height:15.625rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-delete .popup-delete-content .popup-delete-img[data-v-bd7a2b2a]{width:7.8125rem;height:7.1875rem;margin-top:1.25rem;margin-bottom:.625rem}.popup-delete .popup-delete-content .popup-delete-text[data-v-bd7a2b2a]{font-size:.9375rem;color:#42474e}.popup-delete .popup-delete-content .popup-delete-button[data-v-bd7a2b2a]{display:flex;justify-content:space-around;height:2.8125rem;margin-top:.9375rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-left[data-v-bd7a2b2a]{background-color:#02abfe;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff;margin:0 .3125rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-right[data-v-bd7a2b2a]{background-color:#ced9e8;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;margin:0 .3125rem}.popup-overlay[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;z-index:999}.popup-overlay .popup-overlay-content[data-v-bd7a2b2a]{position:absolute;display:flex;align-items:center;width:25rem;height:12.1875rem;background-color:#fff;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-overlay .popup-overlay-content .popup-overlay-content-left[data-v-bd7a2b2a]{height:100%;width:10.9375rem;display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-img[data-v-bd7a2b2a]{width:8.75rem;height:5.625rem;margin-top:-.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-font[data-v-bd7a2b2a]{font-size:.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right[data-v-bd7a2b2a]{height:100%;width:14.0625rem;position:relative}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-font[data-v-bd7a2b2a]{font-size:1.5625rem;margin-top:3.125rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-text[data-v-bd7a2b2a]{margin-left:.3125rem;font-size:.9375rem;width:11.875rem;margin-bottom:1.5625rem;line-height:1.09375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richang[data-v-bd7a2b2a]{background-color:#ffc363;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richangnot[data-v-bd7a2b2a]{background-color:#7b61ff;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem;color:#fff}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-crush[data-v-bd7a2b2a]{position:absolute;top:.625rem;right:.625rem;width:2.1875rem;height:2.1875rem;animation:shake-bd7a2b2a .5s 3}.popup-song[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-song .popup-song-contain[data-v-bd7a2b2a]{position:absolute;right:14.0625rem;width:40.5rem;background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.7);border:.0625rem solid #fff;background-blend-mode:screen;border-radius:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-song .popup-song-contain .shu-container-left[data-v-bd7a2b2a]{display:flex;margin-top:2.1875rem;margin-bottom:.625rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-gun[data-v-bd7a2b2a]{margin-top:.15625rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-font[data-v-bd7a2b2a]{font-size:1.09375rem;font-weight:700}.popup-song-father[data-v-bd7a2b2a]{position:relative}.popup-song-father .shu-up-img[data-v-bd7a2b2a]{position:absolute;top:-2.1875rem;left:9.53125rem;width:21.875rem;height:2.5rem}.popup-song-father .shu-up-font[data-v-bd7a2b2a]{position:absolute;top:-1.5625rem;left:12.1875rem;display:flex;color:#ff5a00}.popup-song-father .arrayindex[data-v-bd7a2b2a]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem;margin-bottom:1.875rem}.popup-song-father .arrayindex .arrayindex-one[data-v-bd7a2b2a]{width:8.90625rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .arrayindex .arrayindex-one-target[data-v-bd7a2b2a]{width:8.90625rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .secondarrayindex[data-v-bd7a2b2a]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem;margin-bottom:1.875rem}.popup-song-father .secondarrayindex .arrayindex-one[data-v-bd7a2b2a]{width:11.875rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .secondarrayindex .arrayindex-one-target[data-v-bd7a2b2a]{width:11.875rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.ri-img[data-v-bd7a2b2a]{position:absolute;top:-.125rem;right:-.125rem;width:1.875rem;height:1.875rem}.time-father[data-v-bd7a2b2a]{display:flex;width:100%;flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem}.time-father .time-one[data-v-bd7a2b2a]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-target[data-v-bd7a2b2a]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-hui[data-v-bd7a2b2a]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#c2c9d3;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.items-card[data-v-bd7a2b2a]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center}.items-card-target[data-v-bd7a2b2a]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center;color:#369fef;background:linear-gradient(to right,rgba(54,159,239,0),rgba(54,159,239,.5),rgba(54,159,239,0))}.button-father[data-v-bd7a2b2a]{height:6.25rem;width:calc(100%-2.5rem);display:flex;justify-content:center;align-items:center;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem;border-top:.03125rem solid #e6e6e6}.button-father .button-father-right[data-v-bd7a2b2a]{background:linear-gradient(to right,#00c9ff,#0076ff);width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.button-father .button-father-wrong[data-v-bd7a2b2a]{background-color:#c2c9d3;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center}.month-father[data-v-bd7a2b2a]{display:flex;width:calc(100% - 1.875rem);flex-wrap:wrap;margin:.625rem .9375rem .9375rem}.month-father .month-one[data-v-bd7a2b2a]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.month-father .month-one-target[data-v-bd7a2b2a]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father[data-v-bd7a2b2a]{display:flex;width:100%;flex-wrap:wrap;margin:.625rem .9375rem .9375rem}.week-father .week-one[data-v-bd7a2b2a]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father .week-one-target[data-v-bd7a2b2a]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.radio-father[data-v-bd7a2b2a]{display:flex;width:100%;flex-wrap:wrap;margin-left:2.34375rem;margin-right:.9375rem}.radio-father .radio-circle[data-v-bd7a2b2a]{margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid black;background-color:transparent}.radio-father .radio-circle-target[data-v-bd7a2b2a]{position:relative;margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-father .radio-circle-target[data-v-bd7a2b2a]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.625rem;height:.625rem;background-color:#02abfe;border-radius:50%}.radio-father .radio-font[data-v-bd7a2b2a]{margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.radio-father .radio-font-target[data-v-bd7a2b2a]{color:#02abfe;margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.title-time-border[data-v-bd7a2b2a]{margin-top:.125rem;margin-left:.125rem;width:calc(100% - .25rem);height:calc(100% - .25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column}.title-time-border-red[data-v-bd7a2b2a]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,red,red) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,red,red) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom right / .25rem 1.875rem no-repeat}.title-time-border-big[data-v-bd7a2b2a],.title-time-border-big-top[data-v-bd7a2b2a]{transform:scale(1.3);transform-origin:top;border-top:0 solid #fff;transition:transform .5s ease-out,opacity .5s ease-out;z-index:999;display:flex;justify-content:center;align-items:center;height:5.21875rem;width:100%;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.title-time-border-blue[data-v-bd7a2b2a]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,#0184db,#0184db) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,#0184db,#0184db) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom right / .25rem 1.875rem no-repeat}.title-time-border-yellow[data-v-bd7a2b2a]{margin:.3125rem;border:.0625rem solid #d0d8e0;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-yellow-active-transparent[data-v-bd7a2b2a]{margin:.3125rem;border:.125rem dashed #ff8a00;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .8125rem);height:calc(100% - .8125rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-yellow-active[data-v-bd7a2b2a]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-bd7a2b2a .8s infinite;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-pouple-active-transparent[data-v-bd7a2b2a]{margin:.3125rem;border:.125rem dashed #7B61FF;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .8125rem);height:calc(100% - .8125rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.title-time-border-pouple[data-v-bd7a2b2a]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.title-time-border-pouple-active[data-v-bd7a2b2a]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-bd7a2b2a 1s infinite;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.down-icons[data-v-bd7a2b2a]{margin-top:.53125rem;width:100%;height:1.875rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-bd7a2b2a]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.super-end-items-img-father[data-v-bd7a2b2a]{width:1.875rem;height:1.875rem;border-radius:50%;display:flex;justify-content:center;align-items:center}.super-end-items-img-father-active[data-v-bd7a2b2a]{width:1.875rem;height:1.875rem;border-radius:50%;display:flex;justify-content:center;align-items:center;animation:shake-bd7a2b2a .5s infinite}@keyframes shake-bd7a2b2a{0%{transform:rotate(-10deg)}25%{transform:rotate(10deg)}50%{transform:rotate(-10deg)}75%{transform:rotate(10deg)}to{transform:rotate(-10deg)}}.super-end-items-father-close-father[data-v-bd7a2b2a]{width:1.25rem;height:1.25rem;border-radius:50%;display:flex;background-color:#0184db;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;color:#fff}@keyframes shakesmall-bd7a2b2a{0%{transform:rotate(-2deg)}25%{transform:rotate(2deg)}50%{transform:rotate(-2deg)}75%{transform:rotate(2deg)}to{transform:rotate(-2deg)}}.boom-title[data-v-bd7a2b2a]{position:absolute;top:3.28125rem;left:1.875rem;width:1.875rem;height:2.5rem;background-color:#c4dbf4;border-left:.0625rem #fff solid;border-top:.0625rem #fff solid;border-top-left-radius:.625rem;background:linear-gradient(to top right,transparent calc(50% - 1px),#0184db calc(50% - 1px),#0184db calc(50% + 1px),transparent calc(50% + 1px))}.boom-title .boom-title-left[data-v-bd7a2b2a]{position:absolute;top:1.25rem;left:.1875rem;font-size:.78125rem;font-weight:700}.boom-title .boom-title-right[data-v-bd7a2b2a]{position:absolute;top:.15625rem;left:.9375rem;font-size:.78125rem;font-weight:700}.boom-father[data-v-bd7a2b2a]{position:absolute;top:5.8125rem;left:1.875rem;width:1.875rem;height:34.6875rem;background:linear-gradient(to bottom,#c4dbf4,#c9c2ef,#c6dcf3);border-bottom:.0625rem solid #fff;border-left:.0625rem solid #fff;border-bottom-left-radius:.625rem}.scroll-bottom-bgc[data-v-bd7a2b2a]{width:43.75rem;height:8.4375rem;margin-top:0;margin-left:4.0625rem;background:url(../../static/index/keyimg/bgc.png) center / contain;background-repeat:no-repeat}.boom[data-v-bd7a2b2a]{height:26.5625rem;display:flex;flex-direction:column;overflow:hidden;z-index:10}.boom .boom-son[data-v-bd7a2b2a]{height:5.21875rem;width:1.875rem;font-size:.9375rem;display:flex;justify-content:center;align-items:center;text-align:center;z-index:10;font-weight:700;border-top:.03125rem solid transparent;border-bottom:.03125rem solid transparent;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1}.boom .boom-son-target[data-v-bd7a2b2a]{height:5.21875rem;width:1.875rem;font-size:.9375rem;display:flex;justify-content:center;align-items:center;text-align:center;z-index:10;font-weight:700;border-top:.03125rem solid transparent;border-bottom:.03125rem solid transparent;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;background:linear-gradient(to bottom,#ff8a00,#eceaff)}.popup-share[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-share .popup-share-content[data-v-bd7a2b2a]{position:absolute;right:16.09375rem;display:flex;flex-direction:column;width:25rem;height:11.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.7);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-share .popup-share-content .popup-share-title[data-v-bd7a2b2a]{margin:.9375rem;font-size:1.25rem;position:relative}.popup-share .popup-share-content .popup-share-title .popup-share-img[data-v-bd7a2b2a]{position:absolute;top:0;right:0;width:6.25rem;height:6.25rem}.popup-share .popup-share-content .popup-share-upcontent[data-v-bd7a2b2a]{margin:0 .9375rem;display:flex;justify-content:space-between}.popup-share .popup-share-content .popup-share-upcontent .popup-share-font[data-v-bd7a2b2a]{font-size:1.09375rem;color:gray}.popup-share .popup-share-content .popup-share-gray[data-v-bd7a2b2a]{background-color:#d3d3d3;width:calc(100% - 1.875rem);height:.0625rem;margin:3.4375rem .9375rem 0}.popup-share .popup-share-content .popup-share-downcontent[data-v-bd7a2b2a]{display:flex;justify-content:space-between;align-items:center;height:100%;margin:0 .9375rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-img[data-v-bd7a2b2a]{width:2.1875rem;height:2.1875rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-font[data-v-bd7a2b2a]{font-size:.84375rem;margin-left:.625rem}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-left[data-v-bd7a2b2a]{display:flex;align-items:center}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-button[data-v-bd7a2b2a]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.46875rem .9375rem;border-radius:.625rem;font-size:1rem}.backgroundContainer[data-v-ee189f8b]{display:flex;position:relative;width:100%;height:100vh;background-image:url(../../static/index/lightbgcnew.png);background-size:cover;background-position:center center;overflow:hidden;z-index:12}.darkbackgroundContainer[data-v-ee189f8b]{display:flex;position:relative;width:100%;height:100vh;background-image:url(../../static/index/background.png);background-size:cover;background-position:center center;overflow:hidden;z-index:11}.move-font[data-v-ee189f8b]{position:absolute;z-index:10;pointer-events:none;background-color:#c9e8ff;border-radius:.625rem;border:.0625rem solid #fff;width:6.875rem;height:3.125rem;display:flex;justify-content:center;align-items:center;text-align:center;font-size:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);will-change:transform}.left-container[data-v-ee189f8b]{width:7.34375rem;height:100%}.left-container .blue-circle-pos[data-v-ee189f8b]{position:relative}.left-container .blue-circle-pos .blue-circle[data-v-ee189f8b]{position:absolute;top:-1.5625rem;left:-2.125rem}.left-container .blue-circle-pos .blue-circle .blue-circle-size[data-v-ee189f8b]{width:5.3125rem;height:7.8125rem}.left-container .left-head[data-v-ee189f8b]{display:flex;justify-content:center;align-items:center;flex-direction:column}.left-container .left-head .left-head-img[data-v-ee189f8b]{width:4.6875rem;height:4.6875rem;margin-top:1.875rem}.left-container .left-head .left-head-font[data-v-ee189f8b]{font-weight:700;font-size:1.25rem}.left-container .left-head .left-head-font-dark[data-v-ee189f8b]{font-weight:700;font-size:1.25rem;background:linear-gradient(to right,#ebf4ff,#adc4e0);-webkit-background-clip:text;color:transparent}.left-container .left-img-container[data-v-ee189f8b]{display:flex;justify-content:center;align-items:center;flex-direction:column}.left-container .left-img-container .left-img[data-v-ee189f8b]{width:2.90625rem;height:2.90625rem;margin:1.5625rem 0;z-index:100}.title-time-border-yellow[data-v-ee189f8b]{width:7.96875rem;height:5.90625rem;margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#fff1db,#ffe2b2);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;position:absolute;z-index:10}.title-time-border-pouple[data-v-ee189f8b]{width:7.96875rem;height:5.90625rem;margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;position:absolute;z-index:10}.title-time[data-v-ee189f8b]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-ee189f8b]{font-size:1rem;margin-left:.84375rem;margin-top:.375rem}.title-time .title-time-button[data-v-ee189f8b]{position:absolute;top:-.15625rem;right:0;width:2.1875rem;height:2.1875rem}.title-time .title-time-font[data-v-ee189f8b]{position:absolute;top:.21875rem;right:.15625rem;font-size:.71875rem;color:#fff}.down-icons[data-v-ee189f8b]{margin-top:.625rem;width:100%;height:1.5625rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-ee189f8b]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}
diff --git a/unpackage/resources/__UNI__FB2D473/www/pages/NursingNew/index.css b/unpackage/resources/__UNI__FB2D473/www/pages/NursingNew/index.css
index 68f7437..1e3677d 100644
--- a/unpackage/resources/__UNI__FB2D473/www/pages/NursingNew/index.css
+++ b/unpackage/resources/__UNI__FB2D473/www/pages/NursingNew/index.css
@@ -1 +1 @@
-.index-content-other[data-v-9c8806b6]{width:calc(100% - 12.71875rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-other .abs-time[data-v-9c8806b6]{position:absolute;right:.625rem;top:4.6875rem}.index-content-other .abs-time .big-time[data-v-9c8806b6]{font-size:2.8125rem;font-weight:600;width:100%;justify-content:center}.right-container-title-nav[data-v-9c8806b6]{margin-top:1.875rem;display:flex;align-items:center;height:1.875rem;position:relative;font-size:.875rem}.right-container-title-nav .new-weight[data-v-9c8806b6]{margin-left:.9375rem;font-weight:600}.right-container-title-nav .right-icons[data-v-9c8806b6]{position:absolute;right:.9375rem;top:0;display:flex;align-items:center;height:1.875rem}.right-container-title-nav .right-icons-img[data-v-9c8806b6]{width:1.875rem;height:1.875rem;margin-left:.625rem;margin-right:.625rem}.scroll-vi[data-v-9c8806b6]{height:3.75rem;width:95%;margin-left:.625rem;margin-top:.625rem;position:relative;margin-bottom:2.5rem}.scroll-vi .menu[data-v-9c8806b6]{margin-top:.46875rem;flex:0 0 auto;height:2.8125rem;width:7.5rem;border-radius:1.5625rem;margin-right:.625rem;background-color:#fff;display:flex;justify-content:center;align-items:center;padding-top:.28125rem}.scroll-vi .menu .menu-img[data-v-9c8806b6]{width:1.71875rem;height:1.71875rem;margin-right:.46875rem}.scroll-vi .menu .menu-font[data-v-9c8806b6]{margin-top:.5625rem;font-size:.78125rem}.date[data-v-9c8806b6]{display:flex;justify-content:space-around;margin-top:.3125rem}.right-container-tem[data-v-9c8806b6]{display:flex}.right-container-tem .right-container-tem-text[data-v-9c8806b6]{font-size:.9375rem;margin-right:.625rem}.right-container-tem .right-container-tem-img[data-v-9c8806b6]{width:1.1875rem;height:1.1875rem}.photo-father[data-v-9c8806b6]{width:100%;height:34.375rem;display:flex;flex-direction:column;align-items:center;position:relative;margin-top:0}.juzhong[data-v-9c8806b6]{position:absolute;top:0%;left:50%;transform:translate(-50%,-10%)}.weight-time[data-v-9c8806b6]{font-weight:800;font-size:3.125rem;margin-bottom:0;position:relative;margin-left:-1.5625rem}.big-img[data-v-9c8806b6]{width:31.25rem;height:21.875rem}.server-name[data-v-9c8806b6]{font-size:1.40625rem;margin-right:.3125rem;font-weight:600}.server-bgc[data-v-9c8806b6]{width:5rem;height:1.5625rem;display:flex;justify-content:center;align-items:center;position:relative}.bgc-img[data-v-9c8806b6]{width:100%;height:100%;position:absolute;top:0;left:0}.bgc-font[data-v-9c8806b6]{color:#fff;z-index:1}.down-img[data-v-9c8806b6]{width:1.09375rem;height:1.09375rem}.states-father[data-v-9c8806b6]{display:flex;margin:0 .625rem}.icon-img[data-v-9c8806b6]{width:1.71875rem;height:1.71875rem}.start-button[data-v-9c8806b6]{width:100%;height:100%;background:linear-gradient(to bottom,#009def,#0076ff);display:flex;justify-content:center;align-items:center;border-radius:1.25rem;color:#fff;font-size:.9375rem}.end-button[data-v-9c8806b6]{width:100%;height:100%;background:linear-gradient(to bottom,#fff,#c8d0d9);display:flex;justify-content:center;align-items:center;border-radius:1.25rem;font-size:.9375rem}.pao-father[data-v-9c8806b6]{position:absolute;top:.78125rem;right:-3.4375rem;font-size:.6875rem;width:3.125rem;height:1.5625rem;display:flex;justify-content:center;align-items:center;color:#fff}.pao-father .pao-img[data-v-9c8806b6]{position:absolute;top:0;left:0;width:100%;height:100%}.left-menu[data-v-9c8806b6]{position:absolute;top:50%;left:4.6875rem;transform:translateY(-50%)}.zoom[data-v-9c8806b6]{transform:scale(1.2);transform-origin:bottom left;transition:transform 1s ease}.left-ball[data-v-9c8806b6]{width:3.125rem;height:3.125rem;border-radius:50%;display:flex;justify-content:center;align-items:center;background-color:#fff}.left-ball .left-menu-img[data-v-9c8806b6]{width:1.5625rem;height:1.5625rem}.right-menu[data-v-9c8806b6]{position:absolute;top:50%;right:4.6875rem;transform:translateY(-50%);display:flex;flex-direction:column;align-items:center;width:4.375rem}.right-menu .top-img[data-v-9c8806b6]{width:4.375rem;height:3.4375rem;padding:0 1.5625rem}.right-menu .right-scroll[data-v-9c8806b6]{width:100%;height:23.4375rem}.right-menu .white-circle[data-v-9c8806b6]{height:6.25rem;border-radius:1.875rem;background-color:#fff;display:flex;justify-content:center;align-items:center;flex-direction:column;text-align:center}.right-menu .white-circle .right-menu-img[data-v-9c8806b6]{width:2.5rem;height:2.5rem}.right-menu .white-circle .right-menu-name[data-v-9c8806b6]{width:2.5rem}.zhezhao-top[data-v-9c8806b6]{position:absolute;top:3.28125rem;left:0%;width:120%;height:3.75rem;background:linear-gradient(to bottom,#eff0f4,rgba(239,240,244,0));z-index:4}.zhezhao-bottom[data-v-9c8806b6]{position:absolute;bottom:3.28125rem;left:0%;width:120%;height:3.75rem;background:linear-gradient(to top,#eff0f4,rgba(239,240,244,0));z-index:4}.zhezhao-left[data-v-9c8806b6]{position:absolute;top:0;left:0%;height:100%;width:3.75rem;background:linear-gradient(to right,#eff0f4,rgba(239,240,244,0));z-index:4}.zhezhao-right[data-v-9c8806b6]{position:absolute;top:0;right:0%;height:100%;width:3.75rem;background:linear-gradient(to left,#eff0f4,rgba(239,240,244,0));z-index:4}.zerotarget[data-v-9c8806b6]{--color: #99C9FD;--thick: 2px;--radius: 1.5625rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-9c8806b6 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}.firsttarget[data-v-9c8806b6]{--color: #99C9FD;--thick: 2px;--radius: 50%;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-9c8806b6 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}.secondtarget[data-v-9c8806b6]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-9c8806b6 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}.thirdtarget[data-v-9c8806b6]{--color: #99C9FD;--thick: 2px;--radius: 1.25rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-9c8806b6 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}@keyframes scalePulse-9c8806b6{0%{transform:scale(1)}25%{transform:scale(.94)}65%{transform:scale(1.08)}to{transform:scale(1)}}.super-card[data-v-42a31c2e]{display:flex;width:100%}.super-card .scroll-x[data-v-42a31c2e]{height:100%;width:100%}.super-card .right-cards[data-v-42a31c2e]{width:16.25rem;height:40rem}.super-card .right-cards .scroll-box[data-v-42a31c2e]{width:100%;height:9.6875rem;margin-top:.3125rem}.super-card .right-cards .scroll-box .right-box[data-v-42a31c2e]{height:10rem;display:flex;flex-direction:column;flex-wrap:wrap;align-content:flex-start}.super-card .right-cards .scroll-box .right-box .right-box-item[data-v-42a31c2e]{margin:.625rem 0 0 .625rem;width:4.6875rem;height:3.75rem;border-radius:.625rem;background-color:#fff;position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-img[data-v-42a31c2e]{width:1.875rem;height:1.875rem}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-font[data-v-42a31c2e]{font-size:.78125rem}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-items[data-v-42a31c2e]{display:flex;justify-content:space-around;align-items:center}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-items .right-box-items-button[data-v-42a31c2e]{width:.78125rem;height:.78125rem;margin:0 .09375rem}.super-card .right-cards .scroll-box .right-box .title-time-button[data-v-42a31c2e]{position:absolute;top:0;right:0;width:1.71875rem;height:1.40625rem}.super-card .right-cards .scroll-box .right-box .title-time-font[data-v-42a31c2e]{position:absolute;top:.15625rem;right:.09375rem;font-size:.53125rem;color:#fff}.super-card .time-father[data-v-42a31c2e]{border-radius:.625rem;height:97%;width:95%;margin-top:6%;margin-left:6%;background-color:rgba(255,255,255,.3)}.super-card .time-father .time-button[data-v-42a31c2e]{width:4.375rem;height:1.875rem;margin-top:.9375rem;margin-left:.9375rem;border-radius:.625rem;background-color:#369fef;border:.15625rem solid #369fef;display:flex}.super-card .time-father .time-button .time-button-month[data-v-42a31c2e]{width:50%;height:100%;color:#fff;display:flex;justify-content:center;align-items:center}.super-card .time-father .time-button .time-button-month-target[data-v-42a31c2e]{width:50%;height:100%;background-color:#fff;color:#369fef;display:flex;justify-content:center;align-items:center;border-bottom-left-radius:.46875rem;border-top-left-radius:.46875rem}.super-card .time-father .time-button .time-button-week-target[data-v-42a31c2e]{width:50%;height:100%;display:flex;justify-content:center;align-items:center;color:#fff}.super-card .time-father .time-button .time-button-week[data-v-42a31c2e]{width:50%;height:100%;color:#369fef;display:flex;justify-content:center;align-items:center;background-color:#fff;border-bottom-right-radius:.46875rem;border-top-right-radius:.46875rem}.super-card .under-button[data-v-42a31c2e]{width:16.25rem;height:2.96875rem;margin-left:.625rem;margin-top:.625rem;border-radius:.625rem;display:flex;align-items:center;position:relative}.super-card .under-button .under-button-black[data-v-42a31c2e]{transition:all 1s;position:absolute;width:9.375rem;height:3.125rem;border-radius:.625rem;padding-left:.3125rem;background-color:#4d4d4d;top:-3.125rem;left:4.6875rem;color:#fff;display:flex;justify-content:center;align-items:center}.super-card .under-button .under-button-black .under-button-three[data-v-42a31c2e]{position:absolute;right:.40625rem;bottom:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-top:.625rem solid #4d4d4d}.super-card .under-button .other-father[data-v-42a31c2e]{width:100%;height:100%;background-color:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center}.super-card .under-button .white-circle-click-father-spec[data-v-42a31c2e]{position:absolute;top:-5rem;right:.46875rem;overflow:hidden;margin-left:.3125rem;height:4.0625rem;width:4.0625rem;border-radius:50%;--color: #99C9FD;--thick: 2px;--radius: 50%;border:var(--thick) dashed var(--color);border-radius:var(--radius);background:repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / 100% var(--thick) no-repeat,repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) bottom left / 100% var(--thick) no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / var(--thick) 100% no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top right / var(--thick) 100% no-repeat}.super-card .under-button .white-circle-click-father[data-v-42a31c2e]{position:relative;overflow:hidden;margin-left:.3125rem;height:2.34375rem;width:4.6875rem;border-radius:1.25rem;background:linear-gradient(to bottom,#e7f4ff,#c5e5ff);border:.0625rem solid #9AD1FF;color:#007cff;display:flex;justify-content:center;align-items:center;-webkit-tap-highlight-color:transparent}.super-card .under-button .white-circle-click-father .label[data-v-42a31c2e]{position:relative;z-index:2}.super-card .under-button .white-circle-click-father[data-v-42a31c2e]:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:none;background:linear-gradient(to bottom,#bfe9ff,#4aa8ff);opacity:0}.super-card .under-button .white-circle-click-father.anim[data-v-42a31c2e]:before{animation:coverFade-42a31c2e 1s ease-in-out forwards}@keyframes coverFade-42a31c2e{0%{opacity:0}20%{opacity:1}80%{opacity:1}to{opacity:0}}.super-card .under-button .white-circle[data-v-42a31c2e]{width:2.1875rem;height:2.1875rem;border-radius:50%;margin-left:.46875rem;background-color:#fff;display:flex;justify-content:center;align-items:center;z-index:99}.super-card .under-button .white-circle .white-circle-img[data-v-42a31c2e]{width:1.25rem;height:1.25rem}.super-card .middle-box[data-v-42a31c2e]{width:100%;height:25rem;display:flex;overflow:hidden}.super-card .middle-box .middle-left-box[data-v-42a31c2e]{margin-left:0;width:10.625rem;height:25rem;border-radius:.625rem;display:flex}.super-card .middle-box .middle-left-box .first-contant[data-v-42a31c2e]{height:100%;width:4.6875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item[data-v-42a31c2e]{margin:.3125rem 0 0 .625rem;width:4.0625rem;height:3.75rem;border-radius:.625rem;background-color:rgba(255,255,255,.3);position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-img[data-v-42a31c2e]{width:1.875rem;height:1.875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-button[data-v-42a31c2e]{position:absolute;top:-.09375rem;right:-.09375rem;width:1.875rem;height:.9375rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-button-font[data-v-42a31c2e]{color:#fff;position:absolute;top:.0625rem;right:.25rem;font-size:.59375rem;z-index:999}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-font[data-v-42a31c2e]{font-size:.71875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-zhejiao[data-v-42a31c2e]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-font[data-v-42a31c2e]{position:absolute;top:.09375rem;right:.15625rem;font-size:.625rem;color:#fff;z-index:999}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-items[data-v-42a31c2e]{display:flex;justify-content:space-around;align-items:center}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-items .right-box-items-button[data-v-42a31c2e]{width:.78125rem;height:.78125rem;margin:0 .09375rem}.super-card .middle-box .middle-left-box .second-contant[data-v-42a31c2e]{height:100%;width:6.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box-target[data-v-42a31c2e]{display:flex;justify-content:center;align-items:center;background-color:#fff;margin-left:.78125rem;width:5rem;height:3.75rem;border-radius:.625rem;margin-top:.3125rem;flex-direction:column;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.super-card .middle-box .middle-left-box .second-contant .downList-box-target .downList-box-img[data-v-42a31c2e]{height:1.5625rem;width:1.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box-target .downList-box-text[data-v-42a31c2e]{font-size:.6875rem;color:#369fef}.super-card .middle-box .middle-left-box .second-contant .downList-box[data-v-42a31c2e]{display:flex;justify-content:center;align-items:center;margin-left:.78125rem;border-radius:.625rem;background-color:rgba(255,255,255,.5);width:5rem;height:3.75rem;margin-top:.3125rem;flex-direction:column;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.super-card .middle-box .middle-left-box .second-contant .downList-box .downList-box-img[data-v-42a31c2e]{height:1.5625rem;width:1.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box .downList-box-text[data-v-42a31c2e]{font-size:.625rem}.super-card .middle-box .middle-right-box[data-v-42a31c2e]{height:24.375rem;width:2.8125rem}.super-card .middle-box .middle-right-box .doctorsay-container-card[data-v-42a31c2e]{position:relative;display:flex;justify-content:center;align-items:center;background-color:#fff;width:5rem;height:2.8125rem;border-radius:1.25rem;margin-left:.3125rem;margin-top:.9375rem}.super-card .middle-box .middle-right-box .doctorsay-container-card .doctorsay-container-card-img[data-v-42a31c2e]{width:1.71875rem;height:1.71875rem}.super-card .middle-box .middle-right-box .doctorsay-container-card .doctorsay-container-card-font[data-v-42a31c2e]{font-size:.78125rem;margin-top:.625rem}.super-card .middle-box .middle-right-box .doctorsay-container-card-target[data-v-42a31c2e]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;background:linear-gradient(to left,#fff,#e5e9f9);width:3.59375rem;height:3.8125rem;border-top-right-radius:.625rem;border-bottom-right-radius:.625rem;margin:0 .5625rem .3125rem -.46875rem}.super-card .middle-box .middle-right-box .doctorsay-container-card-target .doctorsay-container-card-img[data-v-42a31c2e]{width:1.71875rem;height:1.71875rem;margin-left:.78125rem}.super-card .super-card-container[data-v-42a31c2e]{background-blend-mode:screen;isolation:isolate;overflow:hidden;margin-left:1.875rem;width:40.625rem;height:42.1875rem;border-left:0;position:relative}.super-card .super-card-time[data-v-42a31c2e]{display:flex;justify-content:center;align-items:center;height:2.5rem;width:8.09375rem;border-bottom:.03125rem solid transparent;border-image:repeating-linear-gradient(90deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1;z-index:-1;font-size:.78125rem;color:#a9acb1}.super-card .super-card-time-und[data-v-42a31c2e]{display:flex;justify-content:center;align-items:center;width:8.09375rem;flex-direction:column;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1}.super-card .super-card-time-und .title-time-img[data-v-42a31c2e]{width:2.03125rem;height:2.03125rem;margin-top:-.15625rem}.super-card .super-card-time-und .title-time-font-rel[data-v-42a31c2e]{font-size:.78125rem;margin-bottom:.15625rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.super-card .super-card-time-und .title-time-items[data-v-42a31c2e]{display:flex;justify-content:space-around;align-items:center}.super-card .super-card-time-und .title-time-items .right-box-items-button[data-v-42a31c2e]{width:1.09375rem;height:1.09375rem;margin:0 .15625rem}.super-card .super-card-time-card[data-v-42a31c2e]{display:flex;justify-content:center;align-items:center;height:7.8125rem;width:100%;transition:all .8s;border-image:repeating-linear-gradient(90deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.right-container[data-v-42a31c2e]{width:calc(100% - 12.8125rem);height:100vh;transition:opacity 1s ease;position:relative}.right-container .joystick[data-v-42a31c2e]{position:absolute;bottom:6.25rem;left:.625rem;width:9.375rem;height:9.375rem;z-index:9999}.right-container .outer-circle[data-v-42a31c2e]{width:100%;height:100%;border-radius:50%;background-color:rgba(127,127,127,.1);position:relative}.right-container .inner-circle[data-v-42a31c2e]{width:3.75rem;height:3.75rem;border-radius:50%;background-color:rgba(127,127,127,.3);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.right-container .doctorsay-container-view[data-v-42a31c2e]{width:100%;height:42.1875rem;display:flex;margin-top:.9375rem}.right-container .doctorsay-container-view .doctorsay-container-container[data-v-42a31c2e]{width:100%;overflow:hidden}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title[data-v-42a31c2e]{width:100%;height:3.28125rem;display:flex;align-items:center;justify-content:space-between}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left[data-v-42a31c2e]{display:flex}.right-container .right-container-title-nav[data-v-42a31c2e]{margin-bottom:.625rem}.right-container .right-container-title-nav .right-icons[data-v-42a31c2e]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-font[data-v-42a31c2e]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-img[data-v-42a31c2e]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-img-icon[data-v-42a31c2e]{width:1.875rem;height:2.5rem;margin-top:-.3125rem;margin-left:.25rem}.right-container .right-container-title-nav .right-container-title-class[data-v-42a31c2e]{font-size:1.09375rem;font-weight:800;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-class-dark[data-v-42a31c2e]{font-size:1.09375rem;font-weight:800;margin-left:.625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.title-time-delete[data-v-42a31c2e]{width:1.71875rem;height:1.71875rem;border-radius:50%;display:flex;background-color:#fff;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;background-color:#02abfe;color:#fff;z-index:999;font-size:1.5625rem}.title-time-blue[data-v-42a31c2e]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:90%;height:88%;z-index:10;--color: #99C9FD;--thick: 2px;--radius: 16px;border:var(--thick) dashed var(--color);border-radius:var(--radius);background:repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / 100% var(--thick) no-repeat,repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) bottom left / 100% var(--thick) no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / var(--thick) 100% no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top right / var(--thick) 100% no-repeat}.time-button-black-spe[data-v-42a31c2e]{transition:all 1s;position:absolute;width:11.25rem;height:3.125rem;padding:0 .625rem;border-radius:.625rem;border-top-right-radius:0;border:.0625rem solid #e8e9eb;color:#545569;bottom:-3.125rem;left:-6.875rem;background-color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-black[data-v-42a31c2e]{transition:all 1s;position:absolute;width:11.25rem;height:3.125rem;padding:0 .625rem;border-radius:.625rem;border-bottom-right-radius:0;background-color:#fff;top:-3.125rem;left:-6.875rem;border:.0625rem solid #e8e9eb;color:#545569;display:flex;justify-content:center;align-items:center;z-index:999;box-shadow:0 2px 6px rgba(0,131,250,.2)}.time-button-orange-spe[data-v-42a31c2e]{transition:all 1s;position:absolute;width:8.75rem;height:3.125rem;padding:0 .625rem;border-radius:.625rem;border-top-right-radius:0;border:.0625rem solid #e8e9eb;background-color:#fff;color:#545569;bottom:-3.125rem;left:-4.0625rem;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-orange[data-v-42a31c2e]{transition:all 1s;position:absolute;width:8.75rem;height:3.125rem;border-radius:.625rem;padding:0 .625rem;border:.0625rem solid #e8e9eb;border-bottom-right-radius:0;background-color:#fff;top:-2.8125rem;left:-4.0625rem;color:#545569;display:flex;justify-content:center;align-items:center;z-index:999}.title-time[data-v-42a31c2e]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-42a31c2e]{font-size:1rem;margin:0 auto;font-weight:600}.title-time .title-time-button[data-v-42a31c2e]{position:absolute;top:-.1875rem;right:-.125rem;width:1.71875rem;height:1.25rem}.title-time .title-time-zhejiao[data-v-42a31c2e]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.title-time .title-time-font[data-v-42a31c2e]{position:absolute;top:0;right:.15625rem;font-size:.4375rem;color:#fff}.popup-say[data-v-42a31c2e]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4);z-index:999}.popup-say .popup-say-content[data-v-42a31c2e]{position:absolute;right:2.03125rem;bottom:5.3125rem;display:flex;flex-direction:column;width:14.0625rem;background-color:#fff;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-say .popup-say-content .popup-say-content-flex[data-v-42a31c2e]{display:flex;margin-top:.21875rem;margin-bottom:.3125rem}.popup-say .popup-say-content .popup-say-content-flex .popup-say-content-gun[data-v-42a31c2e]{margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-say .popup-say-content .popup-say-content-flex .popup-say-content-font[data-v-42a31c2e]{font-size:.9375rem;font-weight:700}.popup-say .popup-say-content .popup-say-three[data-v-42a31c2e]{position:absolute;left:5.40625rem;bottom:-1.21875rem;width:0;height:0;border-left:.9375rem solid transparent;border-right:.9375rem solid transparent;border-top:1.25rem solid #fff}.popup-delete[data-v-42a31c2e]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-delete .popup-delete-content[data-v-42a31c2e]{position:absolute;right:23.4375rem;display:flex;flex-direction:column;align-items:center;width:25rem;height:15.625rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-delete .popup-delete-content .popup-delete-img[data-v-42a31c2e]{width:7.8125rem;height:7.1875rem;margin-top:1.25rem;margin-bottom:.625rem}.popup-delete .popup-delete-content .popup-delete-text[data-v-42a31c2e]{font-size:.9375rem;color:#42474e}.popup-delete .popup-delete-content .popup-delete-button[data-v-42a31c2e]{display:flex;justify-content:space-around;height:2.8125rem;margin-top:.9375rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-left[data-v-42a31c2e]{background-color:#02abfe;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff;margin:0 .3125rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-right[data-v-42a31c2e]{background-color:#ced9e8;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;margin:0 .3125rem}.popup-overlay[data-v-42a31c2e]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;z-index:98}.popup-overlay .popup-overlay-content[data-v-42a31c2e]{position:absolute;display:flex;align-items:center;width:25rem;height:12.1875rem;background-color:#fff;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-overlay .popup-overlay-content .popup-overlay-content-left[data-v-42a31c2e]{height:100%;width:10.9375rem;display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-img[data-v-42a31c2e]{width:8.75rem;height:7.5rem;margin-top:0}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-font[data-v-42a31c2e]{font-size:.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right[data-v-42a31c2e]{height:100%;width:14.0625rem;position:relative}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-font[data-v-42a31c2e]{font-size:1.875rem;margin-top:2.5rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-text[data-v-42a31c2e]{margin-left:.3125rem;font-size:1rem;width:12.5rem;margin-bottom:1.5625rem;line-height:1.09375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richang[data-v-42a31c2e]{background-color:#ffc363;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richangnot[data-v-42a31c2e]{background-color:#7b61ff;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem;color:#fff}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-crush[data-v-42a31c2e]{position:absolute;top:.625rem;right:.625rem;width:2.1875rem;height:2.1875rem;animation:shake-42a31c2e .5s 3}.popup-song[data-v-42a31c2e]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-song .popup-song-contain[data-v-42a31c2e]{position:absolute;right:14.0625rem;width:40.5rem;background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.7);border:.0625rem solid #fff;background-blend-mode:screen;border-radius:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-song .popup-song-contain .shu-container-left[data-v-42a31c2e]{display:flex;margin-top:2.1875rem;margin-bottom:.625rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-gun[data-v-42a31c2e]{margin-top:.15625rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-font[data-v-42a31c2e]{font-size:1.09375rem;font-weight:700}.popup-song-father[data-v-42a31c2e]{position:relative}.popup-song-father .shu-up-img[data-v-42a31c2e]{position:absolute;top:-2.1875rem;left:9.53125rem;width:21.875rem;height:2.5rem}.popup-song-father .shu-up-font[data-v-42a31c2e]{position:absolute;top:-1.5625rem;left:12.1875rem;display:flex;color:#ff5a00}.popup-song-father .arrayindex[data-v-42a31c2e]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem;margin-bottom:1.875rem}.popup-song-father .arrayindex .arrayindex-one[data-v-42a31c2e]{width:8.90625rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .arrayindex .arrayindex-one-target[data-v-42a31c2e]{width:8.90625rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .secondarrayindex[data-v-42a31c2e]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem;margin-bottom:1.875rem}.popup-song-father .secondarrayindex .arrayindex-one[data-v-42a31c2e]{width:11.875rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .secondarrayindex .arrayindex-one-target[data-v-42a31c2e]{width:11.875rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.ri-img[data-v-42a31c2e]{position:absolute;top:-.125rem;right:-.125rem;width:1.875rem;height:1.875rem}.time-father[data-v-42a31c2e]{display:flex;width:100%;flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem}.time-father .time-one[data-v-42a31c2e]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-target[data-v-42a31c2e]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-hui[data-v-42a31c2e]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#c2c9d3;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.items-card[data-v-42a31c2e]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center}.items-card-target[data-v-42a31c2e]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center;color:#369fef;background:linear-gradient(to right,rgba(54,159,239,0),rgba(54,159,239,.5),rgba(54,159,239,0))}.button-father[data-v-42a31c2e]{height:6.25rem;width:calc(100%-2.5rem);display:flex;justify-content:center;align-items:center;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem;border-top:.03125rem solid #e6e6e6}.button-father .button-father-right[data-v-42a31c2e]{background:linear-gradient(to right,#00c9ff,#0076ff);width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.button-father .button-father-wrong[data-v-42a31c2e]{background-color:#c2c9d3;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center}.month-father[data-v-42a31c2e]{display:flex;width:calc(100% - 1.875rem);flex-wrap:wrap;margin:.625rem .9375rem .9375rem}.month-father .month-one[data-v-42a31c2e]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.month-father .month-one-target[data-v-42a31c2e]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father[data-v-42a31c2e]{display:flex;width:100%;flex-wrap:wrap;margin:.625rem .9375rem .9375rem}.week-father .week-one[data-v-42a31c2e]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father .week-one-target[data-v-42a31c2e]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.radio-father[data-v-42a31c2e]{display:flex;width:100%;flex-wrap:wrap;margin-left:2.34375rem;margin-right:.9375rem}.radio-father .radio-circle[data-v-42a31c2e]{margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid black;background-color:transparent}.radio-father .radio-circle-target[data-v-42a31c2e]{position:relative;margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-father .radio-circle-target[data-v-42a31c2e]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.625rem;height:.625rem;background-color:#02abfe;border-radius:50%}.radio-father .radio-font[data-v-42a31c2e]{margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.radio-father .radio-font-target[data-v-42a31c2e]{color:#02abfe;margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.title-time-border[data-v-42a31c2e]{margin-top:.125rem;margin-left:.125rem;width:calc(100% - .25rem);height:calc(100% - .25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column}.title-time-border-red[data-v-42a31c2e]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,red,red) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,red,red) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom right / .25rem 1.875rem no-repeat}.title-time-border-big[data-v-42a31c2e],.title-time-border-big-top[data-v-42a31c2e]{transform:scale(1.3);transform-origin:top;border-top:0 solid #fff;transition:transform .5s ease-out,opacity .5s ease-out;z-index:999;display:flex;justify-content:center;align-items:center;height:7.8125rem;width:100%;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.title-time-border-blue[data-v-42a31c2e]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,#0184db,#0184db) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,#0184db,#0184db) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom right / .25rem 1.875rem no-repeat}.title-time-border-yellow[data-v-42a31c2e]{margin:.3125rem;border:.0625rem solid transparent;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;background-color:#fff;flex-direction:column}.title-time-border-yellow-active-transparent[data-v-42a31c2e]{margin:.3125rem;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;background-color:#fff}.title-time-border-yellow-active[data-v-42a31c2e]{margin:.3125rem;border:.03125rem solid #dae8fa;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-42a31c2e .8s infinite;background-color:#fff}.title-time-border-pouple-active-transparent[data-v-42a31c2e]{margin:.3125rem;border:.125rem dashed #7B61FF;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;background-color:#fff}.title-time-border-pouple[data-v-42a31c2e]{margin:.3125rem;border:.03125rem solid #dae8fa;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;background-color:#fff}.title-time-border-pouple-active[data-v-42a31c2e]{margin:.3125rem;border:.03125rem solid #dae8fa;background-color:#fff;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-42a31c2e 1s infinite}.down-icons[data-v-42a31c2e]{margin-top:.53125rem;width:100%;height:1.875rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-42a31c2e]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.super-end-items-img-father[data-v-42a31c2e]{border-radius:50%;display:flex;justify-content:center;align-items:center;text-align:center;flex-direction:column}.super-end-items-img-father-active[data-v-42a31c2e]{text-align:center;border-radius:50%;display:flex;justify-content:center;align-items:center;flex-direction:column;animation:shake-42a31c2e .5s infinite}@keyframes shake-42a31c2e{0%{transform:rotate(-10deg)}25%{transform:rotate(10deg)}50%{transform:rotate(-10deg)}75%{transform:rotate(10deg)}to{transform:rotate(-10deg)}}.super-end-items-father-close-father[data-v-42a31c2e]{width:1.25rem;height:1.25rem;border-radius:50%;display:flex;background-color:#0184db;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;color:#fff}@keyframes shakesmall-42a31c2e{0%{transform:rotate(-2deg)}25%{transform:rotate(2deg)}50%{transform:rotate(-2deg)}75%{transform:rotate(2deg)}to{transform:rotate(-2deg)}}.boom-father[data-v-42a31c2e]{position:absolute;top:6.875rem;left:.96875rem;width:1.875rem;height:37.8125rem;margin-top:.3125rem}.doctorsay-container-card-font-dark[data-v-42a31c2e]{font-size:.78125rem;color:#369fef;margin-top:.625rem}.boom[data-v-42a31c2e]{height:39.6875rem;display:flex;flex-direction:column;overflow:hidden;z-index:0}.boom .boom-son[data-v-42a31c2e]{height:7.8125rem;width:1.875rem;font-size:.9375rem;display:flex;justify-content:center;align-items:center;text-align:center;z-index:10;font-size:.78125rem;color:#a9acb1}.boom .boom-son .boom-text[data-v-42a31c2e]{width:1.25rem;height:1.25rem;border:.03125rem solid #A9ACB1;border-radius:50%;display:flex;justify-content:center;align-items:center;z-index:1;background-color:#eff0f4}.boom .boom-son-target[data-v-42a31c2e]{height:7.8125rem;width:1.875rem;font-size:.9375rem;display:flex;justify-content:center;align-items:center;text-align:center;z-index:10;font-weight:700;font-size:.78125rem;color:#a9acb1;background:linear-gradient(to bottom,#ff8a00,#eceaff)}.popup-share[data-v-42a31c2e]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4);z-index:999}.popup-share .share-other[data-v-42a31c2e]{z-index:1;width:100%;height:100%}.popup-share .share-title[data-v-42a31c2e]{padding-left:1.5625rem;height:4.6875rem;display:flex;align-items:center}.popup-share .share-others[data-v-42a31c2e]{display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-share .share-others .other-img[data-v-42a31c2e]{width:4.6875rem;height:4.6875rem;margin-left:3.125rem}.popup-share .popup-share-content[data-v-42a31c2e]{position:absolute;display:flex;flex-direction:column;width:25rem;height:14.0625rem;background-color:#fff;border-radius:.9375rem;transition:opacity .4s ease}.popup-share .popup-share-content .popup-share-title[data-v-42a31c2e]{margin:.9375rem;font-size:1.25rem;position:relative}.popup-share .popup-share-content .popup-share-title .popup-share-img[data-v-42a31c2e]{position:absolute;top:0;right:0;width:6.25rem;height:6.25rem}.popup-share .popup-share-content .popup-share-upcontent[data-v-42a31c2e]{margin:0 .9375rem;display:flex;justify-content:space-between}.popup-share .popup-share-content .popup-share-upcontent .popup-share-font[data-v-42a31c2e]{font-size:1.09375rem;color:gray}.popup-share .popup-share-content .popup-share-gray[data-v-42a31c2e]{background-color:#d3d3d3;width:calc(100% - 1.875rem);height:.0625rem;margin:3.4375rem .9375rem 0}.popup-share .popup-share-content .popup-share-downcontent[data-v-42a31c2e]{display:flex;justify-content:space-between;align-items:center;height:100%;margin:0 .9375rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-img[data-v-42a31c2e]{width:2.1875rem;height:2.1875rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-font[data-v-42a31c2e]{font-size:.84375rem;margin-left:.625rem}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-left[data-v-42a31c2e]{display:flex;align-items:center}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-button[data-v-42a31c2e]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.46875rem .9375rem;border-radius:.625rem;font-size:1rem}.tags-father[data-v-42a31c2e]{display:flex;flex-direction:column;justify-content:center;margin:.3125rem .4375rem .3125rem .9375rem;align-items:center;width:3.125rem;height:3.4375rem}.tags-father .tags-font[data-v-42a31c2e]{font-size:.625rem}.tags-img[data-v-42a31c2e]{width:1.5625rem;height:1.5625rem;margin-bottom:.3125rem}.right-container-title-nav[data-v-42a31c2e]{margin-top:1.875rem;display:flex;align-items:center;height:1.875rem;position:relative;font-size:.875rem}.right-container-title-nav .new-weight[data-v-42a31c2e]{margin-left:.9375rem;font-weight:600}.right-container-title-nav .right-icons[data-v-42a31c2e]{position:absolute;right:0;top:0;display:flex;align-items:center;margin-top:.3125rem}.right-container-title-nav .doctorsay-container-share[data-v-42a31c2e]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-left:.3125rem}.right-container-title-nav .doctorsay-container-juzhen[data-v-42a31c2e]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin:0 .625rem}.balck-icon[data-v-42a31c2e]{width:1.5625rem;height:1.5625rem;margin-top:.3125rem;margin-right:.625rem;border-radius:50%}.white-button[data-v-42a31c2e]{width:5rem;height:2.1875rem;border-radius:1.25rem;background-color:#e6e7eb;margin-left:.625rem;margin-top:.3125rem;display:flex;justify-content:center;align-items:center}.white-button .white-img[data-v-42a31c2e]{width:1.09375rem;height:1.09375rem;margin-right:.3125rem}.left-top[data-v-42a31c2e]{border-top-left-radius:0!important}.right-top[data-v-42a31c2e]{border-top-right-radius:0!important}.left-bottom[data-v-42a31c2e]{border-bottom-left-radius:0!important}.right-bottom[data-v-42a31c2e]{border-bottom-right-radius:0!important}.mark[data-v-42a31c2e]{font-size:.90625rem;position:relative}.marknone[data-v-42a31c2e]{font-size:.90625rem;color:#999;display:flex;margin-top:.15625rem}.tri-down[data-v-42a31c2e]{width:0;height:0;border-left:.3125rem solid transparent;border-right:.3125rem solid transparent;border-top:.54125rem solid #999;margin:0 0 0 .46875rem}.mark-bgc[data-v-42a31c2e]{position:absolute;top:1.5625rem;left:0;width:14.0625rem;background-color:#fff;z-index:999;border-radius:.9375rem;padding-bottom:.9375rem;transition:opacity .3s ease}.blue-button[data-v-42a31c2e]{margin-top:1.875rem;width:4.6875rem;height:2.1875rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#007cff;font-size:.9375rem;background:linear-gradient(to bottom,#e7f4ff,#c5e5ff);border:.0625rem solid #9AD1FF}.zerotarget[data-v-42a31c2e]{--color: #99C9FD;--thick: 2px;--radius: 1.5625rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}.firsttarget[data-v-42a31c2e]{--color: #99C9FD;--thick: 2px;--radius: 1.5625rem;--outline-offset: .3125rem;border-radius:var(--radius);animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0;z-index:999}.secondtarget[data-v-42a31c2e]{--color: #99C9FD;--thick: 2px;--radius: .3125rem;--outline-offset: 0;border-radius:var(--radius);animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0;z-index:999}.xian-bian[data-v-42a31c2e]{height:100%;position:absolute;top:0;left:0;z-index:999;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1}.menus-father[data-v-8ad00f91]{margin-top:1.5625rem;width:100%}.menus-father .menu[data-v-8ad00f91]{height:3.4375rem;width:8.75rem;border-radius:1.875rem;display:flex;justify-content:center;align-items:center;margin:1.40625rem 0 1.40625rem .9375rem}.backgroundContainer[data-v-8ad00f91]{display:flex;position:relative;width:100%;height:100vh;background-color:#eff0f4;overflow:hidden;z-index:12}.darkbackgroundContainer[data-v-8ad00f91]{display:flex;position:relative;width:100%;height:100vh;background-image:url(../../static/index/background.png);background-size:cover;background-position:center center;overflow:hidden;z-index:11}.move-font[data-v-8ad00f91]{position:absolute;z-index:10;pointer-events:none;background-color:#c9e8ff;border-radius:.625rem;border:.0625rem solid #fff;width:6.875rem;height:3.125rem;display:flex;justify-content:center;align-items:center;text-align:center;font-size:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);will-change:transform}.left-container[data-v-8ad00f91]{width:13.125rem;height:100%}.left-container .blue-circle-pos[data-v-8ad00f91]{position:relative}.left-container .blue-circle-pos .blue-circle[data-v-8ad00f91]{position:absolute;top:-1.5625rem;left:-2.125rem}.left-container .blue-circle-pos .blue-circle .blue-circle-size[data-v-8ad00f91]{width:5.3125rem;height:7.8125rem}.left-container .left-head[data-v-8ad00f91]{display:flex;justify-content:center;align-items:center;flex-direction:column}.left-container .left-head .left-head-img[data-v-8ad00f91]{width:3.75rem;height:3.75rem;margin-top:2.5rem}.left-container .left-head .left-head-font[data-v-8ad00f91]{font-weight:700;font-size:1rem}.left-container .left-head .left-head-font-dark[data-v-8ad00f91]{font-weight:700;font-size:1.25rem;background:linear-gradient(to right,#ebf4ff,#adc4e0);-webkit-background-clip:text;color:transparent}.left-container .left-img-container[data-v-8ad00f91]{display:flex;justify-content:center;align-items:center;flex-direction:column}.left-container .left-img-container .left-img[data-v-8ad00f91]{width:2.90625rem;height:2.90625rem;margin:1.5625rem 0;z-index:100}.title-time-border-yellow[data-v-8ad00f91]{width:7.96875rem;height:5.90625rem;margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#fff1db,#ffe2b2);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;position:absolute;z-index:10}.title-time-border-pouple[data-v-8ad00f91]{width:7.96875rem;height:5.90625rem;margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;position:absolute;z-index:10}.title-time[data-v-8ad00f91]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-8ad00f91]{font-size:1rem;margin-left:.84375rem;margin-top:.375rem}.title-time .title-time-button[data-v-8ad00f91]{position:absolute;top:-.15625rem;right:0;width:2.1875rem;height:2.1875rem}.title-time .title-time-font[data-v-8ad00f91]{position:absolute;top:.21875rem;right:.15625rem;font-size:.71875rem;color:#fff}.down-icons[data-v-8ad00f91]{margin-top:.625rem;width:100%;height:1.5625rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-8ad00f91]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.target[data-v-8ad00f91]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-8ad00f91 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}@keyframes scalePulse-8ad00f91{0%{transform:scale(1)}25%{transform:scale(.94)}65%{transform:scale(1.08)}to{transform:scale(1)}}
+.index-content-other[data-v-9c8806b6]{width:calc(100% - 12.71875rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-other .abs-time[data-v-9c8806b6]{position:absolute;right:.625rem;top:4.6875rem}.index-content-other .abs-time .big-time[data-v-9c8806b6]{font-size:2.8125rem;font-weight:600;width:100%;justify-content:center}.right-container-title-nav[data-v-9c8806b6]{margin-top:1.875rem;display:flex;align-items:center;height:1.875rem;position:relative;font-size:.875rem}.right-container-title-nav .new-weight[data-v-9c8806b6]{margin-left:.9375rem;font-weight:600}.right-container-title-nav .right-icons[data-v-9c8806b6]{position:absolute;right:.9375rem;top:0;display:flex;align-items:center;height:1.875rem}.right-container-title-nav .right-icons-img[data-v-9c8806b6]{width:1.875rem;height:1.875rem;margin-left:.625rem;margin-right:.625rem}.scroll-vi[data-v-9c8806b6]{height:3.75rem;width:95%;margin-left:.625rem;margin-top:.625rem;position:relative;margin-bottom:2.5rem}.scroll-vi .menu[data-v-9c8806b6]{margin-top:.46875rem;flex:0 0 auto;height:2.8125rem;width:7.5rem;border-radius:1.5625rem;margin-right:.625rem;background-color:#fff;display:flex;justify-content:center;align-items:center;padding-top:.28125rem}.scroll-vi .menu .menu-img[data-v-9c8806b6]{width:1.71875rem;height:1.71875rem;margin-right:.46875rem}.scroll-vi .menu .menu-font[data-v-9c8806b6]{margin-top:.5625rem;font-size:.78125rem}.date[data-v-9c8806b6]{display:flex;justify-content:space-around;margin-top:.3125rem}.right-container-tem[data-v-9c8806b6]{display:flex}.right-container-tem .right-container-tem-text[data-v-9c8806b6]{font-size:.9375rem;margin-right:.625rem}.right-container-tem .right-container-tem-img[data-v-9c8806b6]{width:1.1875rem;height:1.1875rem}.photo-father[data-v-9c8806b6]{width:100%;height:34.375rem;display:flex;flex-direction:column;align-items:center;position:relative;margin-top:0}.juzhong[data-v-9c8806b6]{position:absolute;top:0%;left:50%;transform:translate(-50%,-10%)}.weight-time[data-v-9c8806b6]{font-weight:800;font-size:3.125rem;margin-bottom:0;position:relative;margin-left:-1.5625rem}.big-img[data-v-9c8806b6]{width:31.25rem;height:21.875rem}.server-name[data-v-9c8806b6]{font-size:1.40625rem;margin-right:.3125rem;font-weight:600}.server-bgc[data-v-9c8806b6]{width:5rem;height:1.5625rem;display:flex;justify-content:center;align-items:center;position:relative}.bgc-img[data-v-9c8806b6]{width:100%;height:100%;position:absolute;top:0;left:0}.bgc-font[data-v-9c8806b6]{color:#fff;z-index:1}.down-img[data-v-9c8806b6]{width:1.09375rem;height:1.09375rem}.states-father[data-v-9c8806b6]{display:flex;margin:0 .625rem}.icon-img[data-v-9c8806b6]{width:1.71875rem;height:1.71875rem}.start-button[data-v-9c8806b6]{width:100%;height:100%;background:linear-gradient(to bottom,#009def,#0076ff);display:flex;justify-content:center;align-items:center;border-radius:1.25rem;color:#fff;font-size:.9375rem}.end-button[data-v-9c8806b6]{width:100%;height:100%;background:linear-gradient(to bottom,#fff,#c8d0d9);display:flex;justify-content:center;align-items:center;border-radius:1.25rem;font-size:.9375rem}.pao-father[data-v-9c8806b6]{position:absolute;top:.78125rem;right:-3.4375rem;font-size:.6875rem;width:3.125rem;height:1.5625rem;display:flex;justify-content:center;align-items:center;color:#fff}.pao-father .pao-img[data-v-9c8806b6]{position:absolute;top:0;left:0;width:100%;height:100%}.left-menu[data-v-9c8806b6]{position:absolute;top:50%;left:4.6875rem;transform:translateY(-50%)}.zoom[data-v-9c8806b6]{transform:scale(1.2);transform-origin:bottom left;transition:transform 1s ease}.left-ball[data-v-9c8806b6]{width:3.125rem;height:3.125rem;border-radius:50%;display:flex;justify-content:center;align-items:center;background-color:#fff}.left-ball .left-menu-img[data-v-9c8806b6]{width:1.5625rem;height:1.5625rem}.right-menu[data-v-9c8806b6]{position:absolute;top:50%;right:4.6875rem;transform:translateY(-50%);display:flex;flex-direction:column;align-items:center;width:4.375rem}.right-menu .top-img[data-v-9c8806b6]{width:4.375rem;height:3.4375rem;padding:0 1.5625rem}.right-menu .right-scroll[data-v-9c8806b6]{width:100%;height:23.4375rem}.right-menu .white-circle[data-v-9c8806b6]{height:6.25rem;border-radius:1.875rem;background-color:#fff;display:flex;justify-content:center;align-items:center;flex-direction:column;text-align:center}.right-menu .white-circle .right-menu-img[data-v-9c8806b6]{width:2.5rem;height:2.5rem}.right-menu .white-circle .right-menu-name[data-v-9c8806b6]{width:2.5rem}.zhezhao-top[data-v-9c8806b6]{position:absolute;top:3.28125rem;left:0%;width:120%;height:3.75rem;background:linear-gradient(to bottom,#eff0f4,rgba(239,240,244,0));z-index:4}.zhezhao-bottom[data-v-9c8806b6]{position:absolute;bottom:3.28125rem;left:0%;width:120%;height:3.75rem;background:linear-gradient(to top,#eff0f4,rgba(239,240,244,0));z-index:4}.zhezhao-left[data-v-9c8806b6]{position:absolute;top:0;left:0%;height:100%;width:3.75rem;background:linear-gradient(to right,#eff0f4,rgba(239,240,244,0));z-index:4}.zhezhao-right[data-v-9c8806b6]{position:absolute;top:0;right:0%;height:100%;width:3.75rem;background:linear-gradient(to left,#eff0f4,rgba(239,240,244,0));z-index:4}.zerotarget[data-v-9c8806b6]{--color: #99C9FD;--thick: 2px;--radius: 1.5625rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-9c8806b6 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}.firsttarget[data-v-9c8806b6]{--color: #99C9FD;--thick: 2px;--radius: 50%;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-9c8806b6 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}.secondtarget[data-v-9c8806b6]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-9c8806b6 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}.thirdtarget[data-v-9c8806b6]{--color: #99C9FD;--thick: 2px;--radius: 1.25rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-9c8806b6 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}@keyframes scalePulse-9c8806b6{0%{transform:scale(1)}25%{transform:scale(.94)}65%{transform:scale(1.08)}to{transform:scale(1)}}.super-card[data-v-08249c72]{display:flex;width:100%}.super-card .scroll-x[data-v-08249c72]{height:100%;width:100%}.super-card .right-cards[data-v-08249c72]{width:16.25rem;height:40rem}.super-card .right-cards .scroll-box[data-v-08249c72]{width:100%;height:9.6875rem;margin-top:.3125rem}.super-card .right-cards .scroll-box .right-box[data-v-08249c72]{height:10rem;display:flex;flex-direction:column;flex-wrap:wrap;align-content:flex-start}.super-card .right-cards .scroll-box .right-box .right-box-item[data-v-08249c72]{margin:.625rem 0 0 .625rem;width:4.6875rem;height:3.75rem;border-radius:.625rem;background-color:#fff;position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-img[data-v-08249c72]{width:1.875rem;height:1.875rem}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-font[data-v-08249c72]{font-size:.78125rem}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-items[data-v-08249c72]{display:flex;justify-content:space-around;align-items:center}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-items .right-box-items-button[data-v-08249c72]{width:.78125rem;height:.78125rem;margin:0 .09375rem}.super-card .right-cards .scroll-box .right-box .title-time-button[data-v-08249c72]{position:absolute;top:0;right:0;width:1.71875rem;height:1.40625rem}.super-card .right-cards .scroll-box .right-box .title-time-font[data-v-08249c72]{position:absolute;top:.15625rem;right:.09375rem;font-size:.53125rem;color:#fff}.super-card .time-father[data-v-08249c72]{border-radius:.625rem;height:97%;width:95%;margin-top:6%;margin-left:6%;background-color:rgba(255,255,255,.3)}.super-card .time-father .time-button[data-v-08249c72]{width:4.375rem;height:1.875rem;margin-top:.9375rem;margin-left:.9375rem;border-radius:.625rem;background-color:#369fef;border:.15625rem solid #369fef;display:flex}.super-card .time-father .time-button .time-button-month[data-v-08249c72]{width:50%;height:100%;color:#fff;display:flex;justify-content:center;align-items:center}.super-card .time-father .time-button .time-button-month-target[data-v-08249c72]{width:50%;height:100%;background-color:#fff;color:#369fef;display:flex;justify-content:center;align-items:center;border-bottom-left-radius:.46875rem;border-top-left-radius:.46875rem}.super-card .time-father .time-button .time-button-week-target[data-v-08249c72]{width:50%;height:100%;display:flex;justify-content:center;align-items:center;color:#fff}.super-card .time-father .time-button .time-button-week[data-v-08249c72]{width:50%;height:100%;color:#369fef;display:flex;justify-content:center;align-items:center;background-color:#fff;border-bottom-right-radius:.46875rem;border-top-right-radius:.46875rem}.super-card .under-button[data-v-08249c72]{width:16.25rem;height:2.96875rem;margin-left:.625rem;margin-top:.625rem;border-radius:.625rem;display:flex;align-items:center;position:relative}.super-card .under-button .under-button-black[data-v-08249c72]{transition:all 1s;position:absolute;width:9.375rem;height:3.125rem;border-radius:.625rem;padding-left:.3125rem;background-color:#4d4d4d;top:-3.125rem;left:4.6875rem;color:#fff;display:flex;justify-content:center;align-items:center}.super-card .under-button .under-button-black .under-button-three[data-v-08249c72]{position:absolute;right:.40625rem;bottom:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-top:.625rem solid #4d4d4d}.super-card .under-button .other-father[data-v-08249c72]{width:100%;height:100%;background-color:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center}.super-card .under-button .white-circle-click-father-spec[data-v-08249c72]{position:absolute;top:-5rem;right:.46875rem;overflow:hidden;margin-left:.3125rem;height:4.0625rem;width:4.0625rem;border-radius:50%;--color: #99C9FD;--thick: 2px;--radius: 50%;border:var(--thick) dashed var(--color);border-radius:var(--radius);background:repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / 100% var(--thick) no-repeat,repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) bottom left / 100% var(--thick) no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / var(--thick) 100% no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top right / var(--thick) 100% no-repeat}.super-card .under-button .white-circle-click-father[data-v-08249c72]{position:relative;overflow:hidden;margin-left:.3125rem;height:2.34375rem;width:4.6875rem;border-radius:1.25rem;background:linear-gradient(to bottom,#e7f4ff,#c5e5ff);border:.0625rem solid #9AD1FF;color:#007cff;display:flex;justify-content:center;align-items:center;-webkit-tap-highlight-color:transparent}.super-card .under-button .white-circle-click-father .label[data-v-08249c72]{position:relative;z-index:2}.super-card .under-button .white-circle-click-father[data-v-08249c72]:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:none;background:linear-gradient(to bottom,#bfe9ff,#4aa8ff);opacity:0}.super-card .under-button .white-circle-click-father.anim[data-v-08249c72]:before{animation:coverFade-08249c72 1s ease-in-out forwards}@keyframes coverFade-08249c72{0%{opacity:0}20%{opacity:1}80%{opacity:1}to{opacity:0}}.super-card .under-button .white-circle[data-v-08249c72]{width:2.1875rem;height:2.1875rem;border-radius:50%;margin-left:.46875rem;background-color:#fff;display:flex;justify-content:center;align-items:center;z-index:99}.super-card .under-button .white-circle .white-circle-img[data-v-08249c72]{width:1.25rem;height:1.25rem}.super-card .middle-box[data-v-08249c72]{width:100%;height:25rem;display:flex;overflow:hidden}.super-card .middle-box .middle-left-box[data-v-08249c72]{margin-left:0;width:10.625rem;height:25rem;border-radius:.625rem;display:flex}.super-card .middle-box .middle-left-box .first-contant[data-v-08249c72]{height:100%;width:4.6875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item[data-v-08249c72]{margin:.3125rem 0 0 .625rem;width:4.0625rem;height:3.75rem;border-radius:.625rem;background-color:rgba(255,255,255,.3);position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-img[data-v-08249c72]{width:1.875rem;height:1.875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-button[data-v-08249c72]{position:absolute;top:-.09375rem;right:-.09375rem;width:1.875rem;height:.9375rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-button-font[data-v-08249c72]{color:#fff;position:absolute;top:.0625rem;right:.25rem;font-size:.59375rem;z-index:999}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-font[data-v-08249c72]{font-size:.71875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-zhejiao[data-v-08249c72]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-font[data-v-08249c72]{position:absolute;top:.09375rem;right:.15625rem;font-size:.625rem;color:#fff;z-index:999}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-items[data-v-08249c72]{display:flex;justify-content:space-around;align-items:center}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-items .right-box-items-button[data-v-08249c72]{width:.78125rem;height:.78125rem;margin:0 .09375rem}.super-card .middle-box .middle-left-box .second-contant[data-v-08249c72]{height:100%;width:6.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box-target[data-v-08249c72]{display:flex;justify-content:center;align-items:center;background-color:#fff;margin-left:.78125rem;width:5rem;height:3.75rem;border-radius:.625rem;margin-top:.3125rem;flex-direction:column;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.super-card .middle-box .middle-left-box .second-contant .downList-box-target .downList-box-img[data-v-08249c72]{height:1.5625rem;width:1.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box-target .downList-box-text[data-v-08249c72]{font-size:.6875rem;color:#369fef}.super-card .middle-box .middle-left-box .second-contant .downList-box[data-v-08249c72]{display:flex;justify-content:center;align-items:center;margin-left:.78125rem;border-radius:.625rem;background-color:rgba(255,255,255,.5);width:5rem;height:3.75rem;margin-top:.3125rem;flex-direction:column;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.super-card .middle-box .middle-left-box .second-contant .downList-box .downList-box-img[data-v-08249c72]{height:1.5625rem;width:1.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box .downList-box-text[data-v-08249c72]{font-size:.625rem}.super-card .middle-box .middle-right-box[data-v-08249c72]{height:24.375rem;width:2.8125rem}.super-card .middle-box .middle-right-box .doctorsay-container-card[data-v-08249c72]{position:relative;display:flex;justify-content:center;align-items:center;background-color:#fff;width:5rem;height:2.8125rem;border-radius:1.25rem;margin-left:.3125rem;margin-top:.9375rem}.super-card .middle-box .middle-right-box .doctorsay-container-card .doctorsay-container-card-img[data-v-08249c72]{width:1.71875rem;height:1.71875rem}.super-card .middle-box .middle-right-box .doctorsay-container-card .doctorsay-container-card-font[data-v-08249c72]{font-size:.78125rem;margin-top:.625rem}.super-card .middle-box .middle-right-box .doctorsay-container-card-target[data-v-08249c72]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;background:linear-gradient(to left,#fff,#e5e9f9);width:3.59375rem;height:3.8125rem;border-top-right-radius:.625rem;border-bottom-right-radius:.625rem;margin:0 .5625rem .3125rem -.46875rem}.super-card .middle-box .middle-right-box .doctorsay-container-card-target .doctorsay-container-card-img[data-v-08249c72]{width:1.71875rem;height:1.71875rem;margin-left:.78125rem}.super-card .super-card-container[data-v-08249c72]{background-blend-mode:screen;isolation:isolate;overflow:hidden;margin-left:1.875rem;width:40.625rem;height:42.1875rem;border-left:0;position:relative}.super-card .super-card-time[data-v-08249c72]{display:flex;justify-content:center;align-items:center;height:2.5rem;width:8.09375rem;border-bottom:.03125rem solid transparent;border-image:repeating-linear-gradient(90deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1;z-index:-1;font-size:.78125rem;color:#a9acb1}.super-card .super-card-time-und[data-v-08249c72]{display:flex;justify-content:center;align-items:center;width:8.09375rem;flex-direction:column;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1}.super-card .super-card-time-und .title-time-img[data-v-08249c72]{width:2.03125rem;height:2.03125rem;margin-top:-.15625rem}.super-card .super-card-time-und .title-time-font-rel[data-v-08249c72]{font-size:.78125rem;margin-bottom:.15625rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.super-card .super-card-time-und .title-time-items[data-v-08249c72]{display:flex;justify-content:space-around;align-items:center}.super-card .super-card-time-und .title-time-items .right-box-items-button[data-v-08249c72]{width:1.09375rem;height:1.09375rem;margin:0 .15625rem}.super-card .super-card-time-card[data-v-08249c72]{display:flex;justify-content:center;align-items:center;height:7.8125rem;width:100%;transition:all .8s;border-image:repeating-linear-gradient(90deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.right-container[data-v-08249c72]{width:calc(100% - 12.8125rem);height:100vh;transition:opacity 1s ease;position:relative}.right-container .joystick[data-v-08249c72]{position:absolute;bottom:6.25rem;left:.625rem;width:9.375rem;height:9.375rem;z-index:9999}.right-container .outer-circle[data-v-08249c72]{width:100%;height:100%;border-radius:50%;background-color:rgba(127,127,127,.1);position:relative}.right-container .inner-circle[data-v-08249c72]{width:3.75rem;height:3.75rem;border-radius:50%;background-color:rgba(127,127,127,.3);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.right-container .doctorsay-container-view[data-v-08249c72]{width:100%;height:42.1875rem;display:flex;margin-top:.9375rem}.right-container .doctorsay-container-view .doctorsay-container-container[data-v-08249c72]{width:100%;overflow:hidden}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title[data-v-08249c72]{width:100%;height:3.28125rem;display:flex;align-items:center;justify-content:space-between}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left[data-v-08249c72]{display:flex}.right-container .right-container-title-nav[data-v-08249c72]{margin-bottom:.625rem}.right-container .right-container-title-nav .right-icons[data-v-08249c72]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-font[data-v-08249c72]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-img[data-v-08249c72]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-img-icon[data-v-08249c72]{width:1.875rem;height:2.5rem;margin-top:-.3125rem;margin-left:.25rem}.right-container .right-container-title-nav .right-container-title-class[data-v-08249c72]{font-size:1.09375rem;font-weight:800;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-class-dark[data-v-08249c72]{font-size:1.09375rem;font-weight:800;margin-left:.625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.title-time-delete[data-v-08249c72]{width:1.71875rem;height:1.71875rem;border-radius:50%;display:flex;background-color:#fff;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;background-color:#02abfe;color:#fff;z-index:999;font-size:1.5625rem}.title-time-blue[data-v-08249c72]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:90%;height:88%;z-index:10;--color: #99C9FD;--thick: 2px;--radius: 16px;border:var(--thick) dashed var(--color);border-radius:var(--radius);background:repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / 100% var(--thick) no-repeat,repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) bottom left / 100% var(--thick) no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / var(--thick) 100% no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top right / var(--thick) 100% no-repeat}.time-button-black-spe[data-v-08249c72]{transition:all 1s;position:absolute;width:11.25rem;height:3.125rem;padding:0 .625rem;border-radius:.625rem;border-top-right-radius:0;border:.0625rem solid #e8e9eb;color:#545569;bottom:-3.125rem;left:-6.875rem;background-color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-black[data-v-08249c72]{transition:all 1s;position:absolute;width:11.25rem;height:3.125rem;padding:0 .625rem;border-radius:.625rem;border-bottom-right-radius:0;background-color:#fff;top:-3.125rem;left:-6.875rem;border:.0625rem solid #e8e9eb;color:#545569;display:flex;justify-content:center;align-items:center;z-index:999;box-shadow:0 2px 6px rgba(0,131,250,.2)}.time-button-orange-spe[data-v-08249c72]{transition:all 1s;position:absolute;width:8.75rem;height:3.125rem;padding:0 .625rem;border-radius:.625rem;border-top-right-radius:0;border:.0625rem solid #e8e9eb;background-color:#fff;color:#545569;bottom:-3.125rem;left:-4.0625rem;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-orange[data-v-08249c72]{transition:all 1s;position:absolute;width:8.75rem;height:3.125rem;border-radius:.625rem;padding:0 .625rem;border:.0625rem solid #e8e9eb;border-bottom-right-radius:0;background-color:#fff;top:-2.8125rem;left:-4.0625rem;color:#545569;display:flex;justify-content:center;align-items:center;z-index:999}.title-time[data-v-08249c72]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-08249c72]{font-size:1rem;margin:0 auto;font-weight:600}.title-time .title-time-button[data-v-08249c72]{position:absolute;top:-.1875rem;right:-.125rem;width:1.71875rem;height:1.25rem}.title-time .title-time-zhejiao[data-v-08249c72]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.title-time .title-time-font[data-v-08249c72]{position:absolute;top:0;right:.15625rem;font-size:.4375rem;color:#fff}.popup-say[data-v-08249c72]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4);z-index:999}.popup-say .popup-say-content[data-v-08249c72]{position:absolute;right:2.03125rem;bottom:5.3125rem;display:flex;flex-direction:column;width:14.0625rem;background-color:#fff;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-say .popup-say-content .popup-say-content-flex[data-v-08249c72]{display:flex;margin-top:.21875rem;margin-bottom:.3125rem}.popup-say .popup-say-content .popup-say-content-flex .popup-say-content-gun[data-v-08249c72]{margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-say .popup-say-content .popup-say-content-flex .popup-say-content-font[data-v-08249c72]{font-size:.9375rem;font-weight:700}.popup-say .popup-say-content .popup-say-three[data-v-08249c72]{position:absolute;left:5.40625rem;bottom:-1.21875rem;width:0;height:0;border-left:.9375rem solid transparent;border-right:.9375rem solid transparent;border-top:1.25rem solid #fff}.popup-delete[data-v-08249c72]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-delete .popup-delete-content[data-v-08249c72]{position:absolute;right:23.4375rem;display:flex;flex-direction:column;align-items:center;width:25rem;height:15.625rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-delete .popup-delete-content .popup-delete-img[data-v-08249c72]{width:7.8125rem;height:7.1875rem;margin-top:1.25rem;margin-bottom:.625rem}.popup-delete .popup-delete-content .popup-delete-text[data-v-08249c72]{font-size:.9375rem;color:#42474e}.popup-delete .popup-delete-content .popup-delete-button[data-v-08249c72]{display:flex;justify-content:space-around;height:2.8125rem;margin-top:.9375rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-left[data-v-08249c72]{background-color:#02abfe;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff;margin:0 .3125rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-right[data-v-08249c72]{background-color:#ced9e8;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;margin:0 .3125rem}.popup-overlay[data-v-08249c72]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;z-index:98}.popup-overlay .popup-overlay-content[data-v-08249c72]{position:absolute;display:flex;align-items:center;width:25rem;height:12.1875rem;background-color:#fff;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-overlay .popup-overlay-content .popup-overlay-content-left[data-v-08249c72]{height:100%;width:10.9375rem;display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-img[data-v-08249c72]{width:8.75rem;height:7.5rem;margin-top:0}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-font[data-v-08249c72]{font-size:.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right[data-v-08249c72]{height:100%;width:14.0625rem;position:relative}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-font[data-v-08249c72]{font-size:1.875rem;margin-top:2.5rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-text[data-v-08249c72]{margin-left:.3125rem;font-size:1rem;width:12.5rem;margin-bottom:1.5625rem;line-height:1.09375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richang[data-v-08249c72]{background-color:#ffc363;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richangnot[data-v-08249c72]{background-color:#7b61ff;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem;color:#fff}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-crush[data-v-08249c72]{position:absolute;top:.625rem;right:.625rem;width:2.1875rem;height:2.1875rem;animation:shake-08249c72 .5s 3}.popup-song[data-v-08249c72]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-song .popup-song-contain[data-v-08249c72]{position:absolute;right:14.0625rem;width:40.5rem;background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.7);border:.0625rem solid #fff;background-blend-mode:screen;border-radius:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-song .popup-song-contain .shu-container-left[data-v-08249c72]{display:flex;margin-top:2.1875rem;margin-bottom:.625rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-gun[data-v-08249c72]{margin-top:.15625rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-font[data-v-08249c72]{font-size:1.09375rem;font-weight:700}.popup-song-father[data-v-08249c72]{position:relative}.popup-song-father .shu-up-img[data-v-08249c72]{position:absolute;top:-2.1875rem;left:9.53125rem;width:21.875rem;height:2.5rem}.popup-song-father .shu-up-font[data-v-08249c72]{position:absolute;top:-1.5625rem;left:12.1875rem;display:flex;color:#ff5a00}.popup-song-father .arrayindex[data-v-08249c72]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem;margin-bottom:1.875rem}.popup-song-father .arrayindex .arrayindex-one[data-v-08249c72]{width:8.90625rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .arrayindex .arrayindex-one-target[data-v-08249c72]{width:8.90625rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .secondarrayindex[data-v-08249c72]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem;margin-bottom:1.875rem}.popup-song-father .secondarrayindex .arrayindex-one[data-v-08249c72]{width:11.875rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .secondarrayindex .arrayindex-one-target[data-v-08249c72]{width:11.875rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.ri-img[data-v-08249c72]{position:absolute;top:-.125rem;right:-.125rem;width:1.875rem;height:1.875rem}.time-father[data-v-08249c72]{display:flex;width:100%;flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem}.time-father .time-one[data-v-08249c72]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-target[data-v-08249c72]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-hui[data-v-08249c72]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#c2c9d3;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.items-card[data-v-08249c72]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center}.items-card-target[data-v-08249c72]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center;color:#369fef;background:linear-gradient(to right,rgba(54,159,239,0),rgba(54,159,239,.5),rgba(54,159,239,0))}.button-father[data-v-08249c72]{height:6.25rem;width:calc(100%-2.5rem);display:flex;justify-content:center;align-items:center;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem;border-top:.03125rem solid #e6e6e6}.button-father .button-father-right[data-v-08249c72]{background:linear-gradient(to right,#00c9ff,#0076ff);width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.button-father .button-father-wrong[data-v-08249c72]{background-color:#c2c9d3;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center}.month-father[data-v-08249c72]{display:flex;width:calc(100% - 1.875rem);flex-wrap:wrap;margin:.625rem .9375rem .9375rem}.month-father .month-one[data-v-08249c72]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.month-father .month-one-target[data-v-08249c72]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father[data-v-08249c72]{display:flex;width:100%;flex-wrap:wrap;margin:.625rem .9375rem .9375rem}.week-father .week-one[data-v-08249c72]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father .week-one-target[data-v-08249c72]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.radio-father[data-v-08249c72]{display:flex;width:100%;flex-wrap:wrap;margin-left:2.34375rem;margin-right:.9375rem}.radio-father .radio-circle[data-v-08249c72]{margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid black;background-color:transparent}.radio-father .radio-circle-target[data-v-08249c72]{position:relative;margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-father .radio-circle-target[data-v-08249c72]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.625rem;height:.625rem;background-color:#02abfe;border-radius:50%}.radio-father .radio-font[data-v-08249c72]{margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.radio-father .radio-font-target[data-v-08249c72]{color:#02abfe;margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.title-time-border[data-v-08249c72]{margin-top:.125rem;margin-left:.125rem;width:calc(100% - .25rem);height:calc(100% - .25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column}.title-time-border-red[data-v-08249c72]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,red,red) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,red,red) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom right / .25rem 1.875rem no-repeat}.title-time-border-big[data-v-08249c72],.title-time-border-big-top[data-v-08249c72]{transform:scale(1.3);transform-origin:top;border-top:0 solid #fff;transition:transform .5s ease-out,opacity .5s ease-out;z-index:999;display:flex;justify-content:center;align-items:center;height:7.8125rem;width:100%;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.title-time-border-blue[data-v-08249c72]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,#0184db,#0184db) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,#0184db,#0184db) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom right / .25rem 1.875rem no-repeat}.title-time-border-yellow[data-v-08249c72]{margin:.3125rem;border:.0625rem solid transparent;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;background-color:#fff;flex-direction:column}.title-time-border-yellow-active-transparent[data-v-08249c72]{margin:.3125rem;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;background-color:#fff}.title-time-border-yellow-active[data-v-08249c72]{margin:.3125rem;border:.03125rem solid #dae8fa;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-08249c72 .8s infinite;background-color:#fff}.title-time-border-pouple-active-transparent[data-v-08249c72]{margin:.3125rem;border:.125rem dashed #7B61FF;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;background-color:#fff}.title-time-border-pouple[data-v-08249c72]{margin:.3125rem;border:.03125rem solid #dae8fa;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;background-color:#fff}.title-time-border-pouple-active[data-v-08249c72]{margin:.3125rem;border:.03125rem solid #dae8fa;background-color:#fff;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-08249c72 1s infinite}.down-icons[data-v-08249c72]{margin-top:.53125rem;width:100%;height:1.875rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-08249c72]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.super-end-items-img-father[data-v-08249c72]{border-radius:50%;display:flex;justify-content:center;align-items:center;text-align:center;flex-direction:column}.super-end-items-img-father-active[data-v-08249c72]{text-align:center;border-radius:50%;display:flex;justify-content:center;align-items:center;flex-direction:column;animation:shake-08249c72 .5s infinite}@keyframes shake-08249c72{0%{transform:rotate(-10deg)}25%{transform:rotate(10deg)}50%{transform:rotate(-10deg)}75%{transform:rotate(10deg)}to{transform:rotate(-10deg)}}.super-end-items-father-close-father[data-v-08249c72]{width:1.25rem;height:1.25rem;border-radius:50%;display:flex;background-color:#0184db;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;color:#fff}@keyframes shakesmall-08249c72{0%{transform:rotate(-2deg)}25%{transform:rotate(2deg)}50%{transform:rotate(-2deg)}75%{transform:rotate(2deg)}to{transform:rotate(-2deg)}}.boom-father[data-v-08249c72]{position:absolute;top:6.875rem;left:.96875rem;width:1.875rem;height:37.8125rem;margin-top:.3125rem}.doctorsay-container-card-font-dark[data-v-08249c72]{font-size:.78125rem;color:#369fef;margin-top:.625rem}.boom[data-v-08249c72]{height:39.6875rem;display:flex;flex-direction:column;overflow:hidden;z-index:0}.boom .boom-son[data-v-08249c72]{height:7.8125rem;width:1.875rem;font-size:.9375rem;display:flex;justify-content:center;align-items:center;text-align:center;z-index:10;font-size:.78125rem;color:#a9acb1}.boom .boom-son .boom-text[data-v-08249c72]{width:1.25rem;height:1.25rem;border:.03125rem solid #A9ACB1;border-radius:50%;display:flex;justify-content:center;align-items:center;z-index:1;background-color:#eff0f4}.boom .boom-son-target[data-v-08249c72]{height:7.8125rem;width:1.875rem;font-size:.9375rem;display:flex;justify-content:center;align-items:center;text-align:center;z-index:10;font-weight:700;font-size:.78125rem;color:#a9acb1;background:linear-gradient(to bottom,#ff8a00,#eceaff)}.popup-share[data-v-08249c72]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4);z-index:999}.popup-share .share-other[data-v-08249c72]{z-index:1;width:100%;height:100%}.popup-share .share-title[data-v-08249c72]{padding-left:1.5625rem;height:4.6875rem;display:flex;align-items:center}.popup-share .share-others[data-v-08249c72]{display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-share .share-others .other-img[data-v-08249c72]{width:4.6875rem;height:4.6875rem;margin-left:3.125rem}.popup-share .popup-share-content[data-v-08249c72]{position:absolute;display:flex;flex-direction:column;width:25rem;height:14.0625rem;background-color:#fff;border-radius:.9375rem;transition:opacity .4s ease}.popup-share .popup-share-content .popup-share-title[data-v-08249c72]{margin:.9375rem;font-size:1.25rem;position:relative}.popup-share .popup-share-content .popup-share-title .popup-share-img[data-v-08249c72]{position:absolute;top:0;right:0;width:6.25rem;height:6.25rem}.popup-share .popup-share-content .popup-share-upcontent[data-v-08249c72]{margin:0 .9375rem;display:flex;justify-content:space-between}.popup-share .popup-share-content .popup-share-upcontent .popup-share-font[data-v-08249c72]{font-size:1.09375rem;color:gray}.popup-share .popup-share-content .popup-share-gray[data-v-08249c72]{background-color:#d3d3d3;width:calc(100% - 1.875rem);height:.0625rem;margin:3.4375rem .9375rem 0}.popup-share .popup-share-content .popup-share-downcontent[data-v-08249c72]{display:flex;justify-content:space-between;align-items:center;height:100%;margin:0 .9375rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-img[data-v-08249c72]{width:2.1875rem;height:2.1875rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-font[data-v-08249c72]{font-size:.84375rem;margin-left:.625rem}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-left[data-v-08249c72]{display:flex;align-items:center}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-button[data-v-08249c72]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.46875rem .9375rem;border-radius:.625rem;font-size:1rem}.tags-father[data-v-08249c72]{display:flex;flex-direction:column;justify-content:center;margin:.3125rem .4375rem .3125rem .9375rem;align-items:center;width:3.125rem;height:3.4375rem}.tags-father .tags-font[data-v-08249c72]{font-size:.625rem}.tags-img[data-v-08249c72]{width:1.5625rem;height:1.5625rem;margin-bottom:.3125rem}.right-container-title-nav[data-v-08249c72]{margin-top:1.875rem;display:flex;align-items:center;height:1.875rem;position:relative;font-size:.875rem}.right-container-title-nav .new-weight[data-v-08249c72]{margin-left:.9375rem;font-weight:600}.right-container-title-nav .right-icons[data-v-08249c72]{position:absolute;right:0;top:0;display:flex;align-items:center;margin-top:.3125rem}.right-container-title-nav .doctorsay-container-share[data-v-08249c72]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-left:.3125rem}.right-container-title-nav .doctorsay-container-juzhen[data-v-08249c72]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin:0 .625rem}.balck-icon[data-v-08249c72]{width:1.5625rem;height:1.5625rem;margin-top:.3125rem;margin-right:.625rem;border-radius:50%}.white-button[data-v-08249c72]{width:5rem;height:2.1875rem;border-radius:1.25rem;background-color:#e6e7eb;margin-left:.625rem;margin-top:.3125rem;display:flex;justify-content:center;align-items:center}.white-button .white-img[data-v-08249c72]{width:1.09375rem;height:1.09375rem;margin-right:.3125rem}.left-top[data-v-08249c72]{border-top-left-radius:0!important}.right-top[data-v-08249c72]{border-top-right-radius:0!important}.left-bottom[data-v-08249c72]{border-bottom-left-radius:0!important}.right-bottom[data-v-08249c72]{border-bottom-right-radius:0!important}.mark[data-v-08249c72]{font-size:.90625rem;position:relative}.marknone[data-v-08249c72]{font-size:.90625rem;color:#999;display:flex;margin-top:.15625rem}.tri-down[data-v-08249c72]{width:0;height:0;border-left:.3125rem solid transparent;border-right:.3125rem solid transparent;border-top:.54125rem solid #999;margin:0 0 0 .46875rem}.mark-bgc[data-v-08249c72]{position:absolute;top:1.5625rem;left:0;width:14.0625rem;background-color:#fff;z-index:999;border-radius:.9375rem;padding-bottom:.9375rem;transition:opacity .3s ease}.blue-button[data-v-08249c72]{margin-top:1.875rem;width:4.6875rem;height:2.1875rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#007cff;font-size:.9375rem;background:linear-gradient(to bottom,#e7f4ff,#c5e5ff);border:.0625rem solid #9AD1FF}.zerotarget[data-v-08249c72]{--color: #99C9FD;--thick: 2px;--radius: 1.5625rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}.firsttarget[data-v-08249c72]{--color: #99C9FD;--thick: 2px;--radius: 1.5625rem;--outline-offset: .3125rem;border-radius:var(--radius);animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0;z-index:999}.secondtarget[data-v-08249c72]{--color: #99C9FD;--thick: 2px;--radius: .3125rem;--outline-offset: 0;border-radius:var(--radius);animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0;z-index:999}.xian-bian[data-v-08249c72]{height:100%;position:absolute;top:0;left:0;z-index:999;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1}.menus-father[data-v-8ad00f91]{margin-top:1.5625rem;width:100%}.menus-father .menu[data-v-8ad00f91]{height:3.4375rem;width:8.75rem;border-radius:1.875rem;display:flex;justify-content:center;align-items:center;margin:1.40625rem 0 1.40625rem .9375rem}.backgroundContainer[data-v-8ad00f91]{display:flex;position:relative;width:100%;height:100vh;background-color:#eff0f4;overflow:hidden;z-index:12}.darkbackgroundContainer[data-v-8ad00f91]{display:flex;position:relative;width:100%;height:100vh;background-image:url(../../static/index/background.png);background-size:cover;background-position:center center;overflow:hidden;z-index:11}.move-font[data-v-8ad00f91]{position:absolute;z-index:10;pointer-events:none;background-color:#c9e8ff;border-radius:.625rem;border:.0625rem solid #fff;width:6.875rem;height:3.125rem;display:flex;justify-content:center;align-items:center;text-align:center;font-size:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);will-change:transform}.left-container[data-v-8ad00f91]{width:13.125rem;height:100%}.left-container .blue-circle-pos[data-v-8ad00f91]{position:relative}.left-container .blue-circle-pos .blue-circle[data-v-8ad00f91]{position:absolute;top:-1.5625rem;left:-2.125rem}.left-container .blue-circle-pos .blue-circle .blue-circle-size[data-v-8ad00f91]{width:5.3125rem;height:7.8125rem}.left-container .left-head[data-v-8ad00f91]{display:flex;justify-content:center;align-items:center;flex-direction:column}.left-container .left-head .left-head-img[data-v-8ad00f91]{width:3.75rem;height:3.75rem;margin-top:2.5rem}.left-container .left-head .left-head-font[data-v-8ad00f91]{font-weight:700;font-size:1rem}.left-container .left-head .left-head-font-dark[data-v-8ad00f91]{font-weight:700;font-size:1.25rem;background:linear-gradient(to right,#ebf4ff,#adc4e0);-webkit-background-clip:text;color:transparent}.left-container .left-img-container[data-v-8ad00f91]{display:flex;justify-content:center;align-items:center;flex-direction:column}.left-container .left-img-container .left-img[data-v-8ad00f91]{width:2.90625rem;height:2.90625rem;margin:1.5625rem 0;z-index:100}.title-time-border-yellow[data-v-8ad00f91]{width:7.96875rem;height:5.90625rem;margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#fff1db,#ffe2b2);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;position:absolute;z-index:10}.title-time-border-pouple[data-v-8ad00f91]{width:7.96875rem;height:5.90625rem;margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;position:absolute;z-index:10}.title-time[data-v-8ad00f91]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-8ad00f91]{font-size:1rem;margin-left:.84375rem;margin-top:.375rem}.title-time .title-time-button[data-v-8ad00f91]{position:absolute;top:-.15625rem;right:0;width:2.1875rem;height:2.1875rem}.title-time .title-time-font[data-v-8ad00f91]{position:absolute;top:.21875rem;right:.15625rem;font-size:.71875rem;color:#fff}.down-icons[data-v-8ad00f91]{margin-top:.625rem;width:100%;height:1.5625rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-8ad00f91]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.target[data-v-8ad00f91]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-8ad00f91 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}@keyframes scalePulse-8ad00f91{0%{transform:scale(1)}25%{transform:scale(.94)}65%{transform:scale(1.08)}to{transform:scale(1)}}
diff --git a/unpackage/resources/__UNI__FB2D473/www/pages/camera.js b/unpackage/resources/__UNI__FB2D473/www/pages/camera.js
index 5224c96..f1f58bb 100644
--- a/unpackage/resources/__UNI__FB2D473/www/pages/camera.js
+++ b/unpackage/resources/__UNI__FB2D473/www/pages/camera.js
@@ -29,4 +29,4 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
};
-(()=>{var $=Object.create;var p=Object.defineProperty;var _=Object.getOwnPropertyDescriptor;var k=Object.getOwnPropertyNames;var R=Object.getPrototypeOf,T=Object.prototype.hasOwnProperty;var S=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var w=(e,t,o,s)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of k(t))!T.call(e,i)&&i!==o&&p(e,i,{get:()=>t[i],enumerable:!(s=_(t,i))||s.enumerable});return e};var m=(e,t,o)=>(o=e!=null?$(R(e)):{},w(t||!e||!e.__esModule?p(o,"default",{value:e,enumerable:!0}):o,e));var u=S((O,d)=>{d.exports=Vue});var b=m(u());function h(e){return weex.requireModule(e)}function n(e,t,...o){uni.__log__?uni.__log__(e,t,...o):console[e].apply(console,[...o,t])}var r=m(u());var f=(e,t)=>{let o=e.__vccOpts||e;for(let[s,i]of t)o[s]=i;return o};var v={"center-column":{"":{width:600,height:450,borderRadius:30,overflow:"hidden"}}},q={data(){return{phoneNumber:"1234567890",isAlarming:!1,isRecording:!1,isTalking:!1,_pendingRequests:{snapshot:[],record:[],talk:[]}}},onLoad(){let e=h&&h("globalEvent");e&&e.addEventListener&&e.addEventListener("myEvent",t=>{n("log","at pages/camera.nvue:39","myEvent",t)}),uni.$on("monitor:doSnapshot",this.doSnapshot),uni.$on("monitor:startRecord",this.doStartRecord),uni.$on("monitor:stopRecord",this.doStopRecord),uni.$on("monitor:openTalk",this.doOpenTalk),uni.$on("monitor:stopTalk",this.doStopTalk),uni.$on("monitor:switchDisplay",t=>this.switchDisplay(t)),uni.$on("monitor:startAlarm",this.startAlarm),uni.$on("monitor:stopAlarm",this.stopAlarm),uni.$on("monitor:flipImage",t=>this.flipImage(t)),uni.$on("monitor:resumeOrPause",this.resumeOrPause),uni.$on("monitor:changeQuality",this.changeQuality),uni.$on("monitor:toggleVolume",this.toggleVolume),uni.$on("monitor:test",this.test)},onUnload(){uni.$off("monitor:doSnapshot",this.doSnapshot),uni.$off("monitor:startRecord",this.doStartRecord),uni.$off("monitor:stopRecord",this.doStopRecord),uni.$off("monitor:openTalk",this.doOpenTalk),uni.$off("monitor:stopTalk",this.doStopTalk),uni.$off("monitor:switchDisplay",e=>this.switchDisplay(e)),uni.$off("monitor:startAlarm",this.startAlarm),uni.$off("monitor:stopAlarm",this.stopAlarm),uni.$off("monitor:flipImage",e=>this.flipImage(e)),uni.$off("monitor:resumeOrPause",this.resumeOrPause),uni.$off("monitor:changeQuality",this.changeQuality),uni.$off("monitor:toggleVolume",this.toggleVolume),uni.$off("monitor:test",this.test)},methods:{handleTelEvent(e){n("log","at pages/camera.nvue:79","Tel event detail:",e.detail)},switchDisplay(e){n("log","at pages/camera.nvue:84","zzzzz",e),this.$refs.monitor&&this.$refs.monitor.switchDisplayModeFragment(e)},startAlarm(){this.isAlarming=!0,this.$refs.monitor.startOrStopManualAlarm(this.isAlarming,e=>{n("log","at pages/camera.nvue:91","startAlarm callback:",e)})},stopAlarm(){this.isAlarming=!1,this.$refs.monitor.startOrStopManualAlarm(this.isAlarming,e=>{n("log","at pages/camera.nvue:97","stopAlarm callback:",e)})},flipImage(e){this.$refs.monitor.changeImageSwitch(e,t=>{n("log","at pages/camera.nvue:103","flipImage callback:",t)})},resumeOrPause(){this.$refs.monitor.resumeOrPause&&this.$refs.monitor.resumeOrPause()},changeQuality(){this.$refs.monitor.changeQuality&&this.$refs.monitor.changeQuality()},toggleVolume(){this.$refs.monitor.toggleVolume&&this.$refs.monitor.toggleVolume()},test(){this.$refs.monitor&&this.$refs.monitor.test&&this.$refs.monitor.test()},doSnapshot(e={}){if(!this.$refs.monitor||!this.$refs.monitor.snapShot){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 snapShot()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"snapShot_not_supported"});return}e.reqId&&this._pendingRequests.snapshot.push(e.reqId);try{this.$refs.monitor.snapShot(t=>{n("log","at pages/camera.nvue:143","snapShot callback:",t),this._handleSnapshotResultFromNative(t,e.reqId)}),uni.showToast({title:"\u6B63\u5728\u622A\u5C4F...",icon:"none",duration:800})}catch(t){n("error","at pages/camera.nvue:148","snapShot \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"snapShot \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"snapShot_call_failed",detail:String(t)})}},doStartRecord(e={}){if(!this.$refs.monitor||!this.$refs.monitor.startRecord){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 startRecord()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"startRecord_not_supported"});return}try{this.$refs.monitor.startRecord(t=>{n("log","at pages/camera.nvue:168","startRecord callback:",t),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!0,res:t})}),this.isRecording=!0,uni.showToast({title:"\u5F55\u5C4F\u5DF2\u5F00\u59CB",icon:"none"})}catch(t){n("error","at pages/camera.nvue:177","startRecord \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"startRecord \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"startRecord_call_failed",detail:String(t)})}},doStopRecord(e={}){if(!this.$refs.monitor||!this.$refs.monitor.stopRecord){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 stopRecord()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"stopRecord_not_supported"});return}e.reqId&&this._pendingRequests.record.push(e.reqId);try{this.$refs.monitor.stopRecord(t=>{n("log","at pages/camera.nvue:203","stopRecord callback:",t),this._handleRecordResultFromNative(t,e.reqId)})}catch(t){n("error","at pages/camera.nvue:208","stopRecord \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"stopRecord \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"stopRecord_call_failed",detail:String(t)})}},doOpenTalk(e={}){if(!this.$refs.monitor||!this.$refs.monitor.openTalk){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 openTalk()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"openTalk_not_supported"});return}e.reqId&&this._pendingRequests.talk.push(e.reqId);try{this.$refs.monitor.openTalk(t=>{n("log","at pages/camera.nvue:232","openTalk callback:",t),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!0,res:t})}),this.isTalking=!0,uni.showToast({title:"\u5C1D\u8BD5\u5EFA\u7ACB\u5BF9\u8BB2\u8FDE\u63A5...",icon:"none"})}catch(t){n("error","at pages/camera.nvue:241","openTalk \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"openTalk \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"openTalk_call_failed",detail:String(t)})}},doStopTalk(e={}){if(!this.$refs.monitor||!this.$refs.monitor.stopTalk){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 stopTalk()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"stopTalk_not_supported"});return}try{this.$refs.monitor.stopTalk(t=>{n("log","at pages/camera.nvue:261","stopTalk callback:",t),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!0,res:t})}),this.isTalking=!1}catch(t){n("error","at pages/camera.nvue:268","stopTalk \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"stopTalk \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"stopTalk_call_failed",detail:String(t)})}},handleSnapShotEvent(e){let t=e&&e.detail?e.detail:e;n("log","at pages/camera.nvue:281","onSnapShot event:",t),this._handleSnapshotResultFromNative(t)},handleRecordEvent(e){let t=e&&e.detail?e.detail:e;n("log","at pages/camera.nvue:289","onRecord event:",t),this._handleRecordResultFromNative(t)},handleTalkEvent(e){let t=e&&e.detail?e.detail:e;n("log","at pages/camera.nvue:296","onTalkStatus event:",t);let o=t&&t.talkStatus,s=t&&t.tips;if(uni.$emit("monitor:talk:status",t),this._pendingRequests.talk&&this._pendingRequests.talk.length)for(;this._pendingRequests.talk.length;){let i=this._pendingRequests.talk.shift();uni.$emit(`monitor:response:${i}`,{ok:!0,payload:t})}switch((o||"").toLowerCase()){case"loading":uni.showToast({title:s||"\u5BF9\u8BB2\u8FDE\u63A5\u4E2D...",icon:"none"}),this.isTalking=!0;break;case"playing":uni.showToast({title:s||"\u5BF9\u8BB2\u5DF2\u8FDE\u63A5",icon:"none"}),this.isTalking=!0;break;case"stopped":uni.showToast({title:s||"\u5BF9\u8BB2\u5DF2\u505C\u6B62",icon:"none"}),this.isTalking=!1;break;case"failed":uni.showToast({title:s||"\u5BF9\u8BB2\u5931\u8D25",icon:"none"}),this.isTalking=!1;break;default:uni.showToast({title:s||"\u5BF9\u8BB2\u72B6\u6001: "+(o||"unknown"),icon:"none"});break}},_handleSnapshotResultFromNative(e,t=null){if(!e){uni.showToast({title:"\u622A\u56FE\u6CA1\u6709\u8FD4\u56DE\u6570\u636E",icon:"none"}),t&&uni.$emit(`monitor:response:${t}`,{ok:!1,error:"no_data"});return}let o=e;if(e.detail&&(o=e.detail),n("log","at pages/camera.nvue:349","snapshot payload normalized:",o),t&&uni.$emit(`monitor:response:${t}`,{ok:!!o.snapShotResult,payload:o}),!t&&this._pendingRequests.snapshot&&this._pendingRequests.snapshot.length)for(;this._pendingRequests.snapshot.length;){let s=this._pendingRequests.snapshot.shift();uni.$emit(`monitor:response:${s}`,{ok:!!o.snapShotResult,payload:o})}if(uni.$emit("monitor:snapshot:done",o),o.snapShotResult===!0||o.snapShotResult==="true"){let s=o.snapShotUrl||o.snapShotPath||o.url;uni.showToast({title:"\u622A\u56FE\u6210\u529F",icon:"success",duration:1200}),s&&uni.previewImage({urls:[s]})}else{let s=o.snapShotErrorCode||o.error||"unknown";uni.showToast({title:"\u622A\u56FE\u5931\u8D25: "+s,icon:"none",duration:2e3}),n("warn","at pages/camera.nvue:376","snapshot failed reason:",s,o)}},_handleRecordResultFromNative(e,t=null){if(!e){uni.showToast({title:"\u5F55\u5C4F\u6CA1\u6709\u8FD4\u56DE\u6570\u636E",icon:"none"}),this.isRecording=!1,t&&uni.$emit(`monitor:response:${t}`,{ok:!1,error:"no_data"});return}let o=e;if(e.detail&&(o=e.detail),n("log","at pages/camera.nvue:392","record payload normalized:",o),t&&uni.$emit(`monitor:response:${t}`,{ok:!!(o.recordUrl||o.snapShotResult),payload:o}),!t&&this._pendingRequests.record&&this._pendingRequests.record.length)for(;this._pendingRequests.record.length;){let s=this._pendingRequests.record.shift();uni.$emit(`monitor:response:${s}`,{ok:!!(o.recordUrl||o.snapShotResult),payload:o})}uni.$emit("monitor:record:done",o),o.recordUrl?(uni.showToast({title:"\u5F55\u5C4F\u5B8C\u6210",icon:"success",duration:1400}),this.isRecording=!1,n("log","at pages/camera.nvue:413","\u5F55\u5C4F\u5730\u5740\uFF1A",o.recordUrl)):o.recordFailedReason?(uni.showToast({title:"\u5F55\u5C4F\u5931\u8D25: "+o.recordFailedReason,icon:"none",duration:2e3}),this.isRecording=!1,n("warn","at pages/camera.nvue:417","record failed reason:",o.recordFailedReason)):(o.snapShotResult===!0&&uni.showToast({title:"\u5F55\u5C4F\u64CD\u4F5C\u5DF2\u5B8C\u6210\uFF08\u8FD4\u56DE\u672A\u77E5\uFF09",icon:"none"}),this.isRecording=!1)}}};function I(e,t,o,s,i,a){let g=(0,r.resolveComponent)("MonitorView");return(0,r.openBlock)(),(0,r.createElementBlock)("scroll-view",{scrollY:!0,showScrollbar:!0,enableBackToTop:!0,bubble:"true",style:{flexDirection:"column"}},[(0,r.createElementVNode)("div",{class:"center-column"},[(0,r.createVNode)(g,{ref:"monitor",init:"5",style:{width:"600px",height:"450px"},onOnTel:a.handleTelEvent,onOnSnapShot:a.handleSnapShotEvent,onOnRecord:a.handleRecordEvent,onOnTalkStatus:a.handleTalkEvent},null,8,["onOnTel","onOnSnapShot","onOnRecord","onOnTalkStatus"])])])}var l=f(q,[["render",I],["styles",[v]]]);var c=plus.webview.currentWebview();if(c){let e=parseInt(c.id),t="pages/camera",o={};try{o=JSON.parse(c.__query__)}catch(i){}l.mpType="page";let s=Vue.createPageApp(l,{$store:getApp({allowDefault:!0}).$store,__pageId:e,__pagePath:t,__pageQuery:o});s.provide("__globalStyles",Vue.useCssStyles([...__uniConfig.styles,...l.styles||[]])),s.mount("#root")}})();
+(()=>{var f=Object.create;var h=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var $=Object.getOwnPropertyNames;var _=Object.getPrototypeOf,k=Object.prototype.hasOwnProperty;var T=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var R=(e,t,o,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of $(t))!k.call(e,i)&&i!==o&&h(e,i,{get:()=>t[i],enumerable:!(n=g(t,i))||n.enumerable});return e};var S=(e,t,o)=>(o=e!=null?f(_(e)):{},R(t||!e||!e.__esModule?h(o,"default",{value:e,enumerable:!0}):o,e));var p=T((O,c)=>{c.exports=Vue});var r=S(p());function m(e){return weex.requireModule(e)}function s(e,t,...o){uni.__log__?uni.__log__(e,t,...o):console[e].apply(console,[...o,t])}var w={"center-column":{"":{width:630,height:510,overflow:"hidden"}}},v=(e,t)=>{let o=e.__vccOpts||e;for(let[n,i]of t)o[n]=i;return o},q={data(){return{phoneNumber:"1234567890",isAlarming:!1,isRecording:!1,isTalking:!1,_pendingRequests:{snapshot:[],record:[],talk:[]},suo:!0}},onLoad(){let e=m&&m("globalEvent");e&&e.addEventListener&&e.addEventListener("myEvent",t=>{s("log","at pages/camera.nvue:40",t),t.recordUrl&&uni.showToast({title:"\u5F55\u5C4F\u6210\u529F",icon:"success",duration:1500}),t.snapShotUrl&&uni.showToast({title:"\u622A\u5C4F\u6210\u529F",icon:"success",duration:1500}),this.suo&&t.onVolumeChange&&(t.onVolumeChange&&this.toggleVolume(),this.suo=!1)}),uni.$on("monitor:doSnapshot",this.doSnapshot),uni.$on("monitor:startRecord",this.doStartRecord),uni.$on("monitor:stopRecord",this.doStopRecord),uni.$on("monitor:openTalk",this.doOpenTalk),uni.$on("monitor:stopTalk",this.doStopTalk),uni.$on("monitor:switchDisplay",t=>this.switchDisplay(t)),uni.$on("monitor:startAlarm",this.startAlarm),uni.$on("monitor:stopAlarm",this.stopAlarm),uni.$on("monitor:flipImage",t=>this.flipImage(t)),uni.$on("monitor:resumeOrPause",this.resumeOrPause),uni.$on("monitor:changeQuality",this.changeQuality),uni.$on("monitor:toggleVolume",this.toggleVolume),uni.$on("monitor:test",this.test)},onUnload(){uni.$off("monitor:doSnapshot",this.doSnapshot),uni.$off("monitor:startRecord",this.doStartRecord),uni.$off("monitor:stopRecord",this.doStopRecord),uni.$off("monitor:openTalk",this.doOpenTalk),uni.$off("monitor:stopTalk",this.doStopTalk),uni.$off("monitor:switchDisplay",e=>this.switchDisplay(e)),uni.$off("monitor:startAlarm",this.startAlarm),uni.$off("monitor:stopAlarm",this.stopAlarm),uni.$off("monitor:flipImage",e=>this.flipImage(e)),uni.$off("monitor:resumeOrPause",this.resumeOrPause),uni.$off("monitor:changeQuality",this.changeQuality),uni.$off("monitor:toggleVolume",this.toggleVolume),uni.$off("monitor:test",this.test)},methods:{handleTelEvent(e){s("log","at pages/camera.nvue:102","Tel event detail:",e.detail)},switchDisplay(e){s("log","at pages/camera.nvue:107","zzzzz",e),this.$refs.monitor&&this.$refs.monitor.switchDisplayModeFragment(e)},startAlarm(){this.isAlarming=!0,this.$refs.monitor.startOrStopManualAlarm(this.isAlarming,e=>{s("log","at pages/camera.nvue:114","startAlarm callback:",e)})},stopAlarm(){this.isAlarming=!1,this.$refs.monitor.startOrStopManualAlarm(this.isAlarming,e=>{s("log","at pages/camera.nvue:120","stopAlarm callback:",e)})},flipImage(e){this.$refs.monitor.changeImageSwitch(e,t=>{s("log","at pages/camera.nvue:126","flipImage callback:",t)})},resumeOrPause(){this.$refs.monitor.resumeOrPause&&this.$refs.monitor.resumeOrPause()},changeQuality(){this.$refs.monitor.changeQuality&&this.$refs.monitor.changeQuality()},toggleVolume(){this.$refs.monitor.toggleVolume&&this.$refs.monitor.toggleVolume()},test(){this.$refs.monitor&&this.$refs.monitor.test&&this.$refs.monitor.test()},doSnapshot(e={}){if(!this.$refs.monitor||!this.$refs.monitor.snapShot){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 snapShot()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"snapShot_not_supported"});return}e.reqId&&this._pendingRequests.snapshot.push(e.reqId);try{this.$refs.monitor.snapShot(t=>{s("log","at pages/camera.nvue:166","snapShot callback:",t),this._handleSnapshotResultFromNative(t,e.reqId)}),uni.showToast({title:"\u6B63\u5728\u622A\u5C4F...",icon:"none",duration:800})}catch(t){s("error","at pages/camera.nvue:171","snapShot \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"snapShot \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"snapShot_call_failed",detail:String(t)})}},doStartRecord(e={}){if(!this.$refs.monitor||!this.$refs.monitor.startRecord){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 startRecord()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"startRecord_not_supported"});return}try{this.$refs.monitor.startRecord(t=>{s("log","at pages/camera.nvue:191","startRecord callback:",t),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!0,res:t})}),this.isRecording=!0,uni.showToast({title:"\u5F55\u5C4F\u5DF2\u5F00\u59CB",icon:"none"})}catch(t){s("error","at pages/camera.nvue:200","startRecord \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"startRecord \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"startRecord_call_failed",detail:String(t)})}},doStopRecord(e={}){if(!this.$refs.monitor||!this.$refs.monitor.stopRecord){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 stopRecord()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"stopRecord_not_supported"});return}e.reqId&&this._pendingRequests.record.push(e.reqId);try{this.$refs.monitor.stopRecord(t=>{s("log","at pages/camera.nvue:226","stopRecord callback:",t),this._handleRecordResultFromNative(t,e.reqId)})}catch(t){s("error","at pages/camera.nvue:231","stopRecord \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"stopRecord \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"stopRecord_call_failed",detail:String(t)})}},doOpenTalk(e={}){if(!this.$refs.monitor||!this.$refs.monitor.openTalk){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 openTalk()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"openTalk_not_supported"});return}e.reqId&&this._pendingRequests.talk.push(e.reqId);try{this.$refs.monitor.openTalk(t=>{s("log","at pages/camera.nvue:255","openTalk callback:",t),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!0,res:t})}),this.isTalking=!0,uni.showToast({title:"\u5C1D\u8BD5\u5EFA\u7ACB\u5BF9\u8BB2\u8FDE\u63A5...",icon:"none"})}catch(t){s("error","at pages/camera.nvue:264","openTalk \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"openTalk \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"openTalk_call_failed",detail:String(t)})}},doStopTalk(e={}){if(!this.$refs.monitor||!this.$refs.monitor.stopTalk){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 stopTalk()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"stopTalk_not_supported"});return}try{this.$refs.monitor.stopTalk(t=>{s("log","at pages/camera.nvue:284","stopTalk callback:",t),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!0,res:t})}),this.isTalking=!1}catch(t){s("error","at pages/camera.nvue:291","stopTalk \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"stopTalk \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"stopTalk_call_failed",detail:String(t)})}},handleSnapShotEvent(e){let t=e&&e.detail?e.detail:e;s("log","at pages/camera.nvue:304","onSnapShot event:",t),this._handleSnapshotResultFromNative(t)},handleRecordEvent(e){let t=e&&e.detail?e.detail:e;s("log","at pages/camera.nvue:312","onRecord event:",t),this._handleRecordResultFromNative(t)},handleTalkEvent(e){let t=e&&e.detail?e.detail:e;s("log","at pages/camera.nvue:319","onTalkStatus event:",t);let o=t&&t.talkStatus,n=t&&t.tips;if(uni.$emit("monitor:talk:status",t),this._pendingRequests.talk&&this._pendingRequests.talk.length)for(;this._pendingRequests.talk.length;){let i=this._pendingRequests.talk.shift();uni.$emit(`monitor:response:${i}`,{ok:!0,payload:t})}switch((o||"").toLowerCase()){case"loading":uni.showToast({title:n||"\u5BF9\u8BB2\u8FDE\u63A5\u4E2D...",icon:"none"}),this.isTalking=!0;break;case"playing":uni.showToast({title:n||"\u5BF9\u8BB2\u5DF2\u8FDE\u63A5",icon:"none"}),this.isTalking=!0;break;case"stopped":uni.showToast({title:n||"\u5BF9\u8BB2\u5DF2\u505C\u6B62",icon:"none"}),this.isTalking=!1;break;case"failed":uni.showToast({title:n||"\u5BF9\u8BB2\u5931\u8D25",icon:"none"}),this.isTalking=!1;break;default:uni.showToast({title:n||"\u5BF9\u8BB2\u72B6\u6001: "+(o||"unknown"),icon:"none"});break}},_handleSnapshotResultFromNative(e,t=null){if(!e){uni.showToast({title:"\u622A\u56FE\u6CA1\u6709\u8FD4\u56DE\u6570\u636E",icon:"none"}),t&&uni.$emit(`monitor:response:${t}`,{ok:!1,error:"no_data"});return}let o=e;if(e.detail&&(o=e.detail),s("log","at pages/camera.nvue:372","snapshot payload normalized:",o),t&&uni.$emit(`monitor:response:${t}`,{ok:!!o.snapShotResult,payload:o}),!t&&this._pendingRequests.snapshot&&this._pendingRequests.snapshot.length)for(;this._pendingRequests.snapshot.length;){let n=this._pendingRequests.snapshot.shift();uni.$emit(`monitor:response:${n}`,{ok:!!o.snapShotResult,payload:o})}if(uni.$emit("monitor:snapshot:done",o),o.snapShotResult===!0||o.snapShotResult==="true"){let n=o.snapShotUrl||o.snapShotPath||o.url;uni.showToast({title:"\u622A\u56FE\u6210\u529F",icon:"success",duration:1200}),n&&uni.previewImage({urls:[n]})}else{let n=o.snapShotErrorCode||o.error||"unknown";uni.showToast({title:"\u622A\u56FE\u5931\u8D25: "+n,icon:"none",duration:2e3}),s("warn","at pages/camera.nvue:399","snapshot failed reason:",n,o)}},_handleRecordResultFromNative(e,t=null){if(!e){uni.showToast({title:"\u5F55\u5C4F\u6CA1\u6709\u8FD4\u56DE\u6570\u636E",icon:"none"}),this.isRecording=!1,t&&uni.$emit(`monitor:response:${t}`,{ok:!1,error:"no_data"});return}let o=e;if(e.detail&&(o=e.detail),s("log","at pages/camera.nvue:415","record payload normalized:",o),t&&uni.$emit(`monitor:response:${t}`,{ok:!!(o.recordUrl||o.snapShotResult),payload:o}),!t&&this._pendingRequests.record&&this._pendingRequests.record.length)for(;this._pendingRequests.record.length;){let n=this._pendingRequests.record.shift();uni.$emit(`monitor:response:${n}`,{ok:!!(o.recordUrl||o.snapShotResult),payload:o})}uni.$emit("monitor:record:done",o),o.recordUrl?(uni.showToast({title:"\u5F55\u5C4F\u5B8C\u6210",icon:"success",duration:1400}),this.isRecording=!1,s("log","at pages/camera.nvue:436","\u5F55\u5C4F\u5730\u5740\uFF1A",o.recordUrl)):o.recordFailedReason?(uni.showToast({title:"\u5F55\u5C4F\u5931\u8D25: "+o.recordFailedReason,icon:"none",duration:2e3}),this.isRecording=!1,s("warn","at pages/camera.nvue:440","record failed reason:",o.recordFailedReason)):(o.snapShotResult===!0&&uni.showToast({title:"\u5F55\u5C4F\u64CD\u4F5C\u5DF2\u5B8C\u6210\uFF08\u8FD4\u56DE\u672A\u77E5\uFF09",icon:"none"}),this.isRecording=!1)}}};function I(e,t,o,n,i,a){let d=(0,r.resolveComponent)("MonitorView");return(0,r.openBlock)(),(0,r.createElementBlock)("scroll-view",{scrollY:!0,showScrollbar:!0,enableBackToTop:!0,bubble:"true",style:{flexDirection:"column"}},[(0,r.createElementVNode)("div",{class:"center-column"},[(0,r.createVNode)(d,{ref:"monitor",init:"5",style:{width:"630px",height:"510px"},onOnTel:a.handleTelEvent,onOnSnapShot:a.handleSnapShotEvent,onOnRecord:a.handleRecordEvent,onOnTalkStatus:a.handleTalkEvent},null,8,["onOnTel","onOnSnapShot","onOnRecord","onOnTalkStatus"])])])}var l=v(q,[["render",I],["styles",[w]]]);var u=plus.webview.currentWebview();if(u){let e=parseInt(u.id),t="pages/camera",o={};try{o=JSON.parse(u.__query__)}catch(i){}l.mpType="page";let n=Vue.createPageApp(l,{$store:getApp({allowDefault:!0}).$store,__pageId:e,__pagePath:t,__pageQuery:o});n.provide("__globalStyles",Vue.useCssStyles([...__uniConfig.styles,...l.styles||[]])),n.mount("#root")}})();
diff --git a/unpackage/resources/__UNI__FB2D473/www/pages/ceshianzhuo.js b/unpackage/resources/__UNI__FB2D473/www/pages/ceshianzhuo.js
deleted file mode 100644
index b82c469..0000000
--- a/unpackage/resources/__UNI__FB2D473/www/pages/ceshianzhuo.js
+++ /dev/null
@@ -1,32 +0,0 @@
-"use weex:vue";
-
-if (typeof Promise !== 'undefined' && !Promise.prototype.finally) {
- Promise.prototype.finally = function(callback) {
- const promise = this.constructor
- return this.then(
- value => promise.resolve(callback()).then(() => value),
- reason => promise.resolve(callback()).then(() => {
- throw reason
- })
- )
- }
-};
-
-if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
- const global = uni.requireGlobal()
- ArrayBuffer = global.ArrayBuffer
- Int8Array = global.Int8Array
- Uint8Array = global.Uint8Array
- Uint8ClampedArray = global.Uint8ClampedArray
- Int16Array = global.Int16Array
- Uint16Array = global.Uint16Array
- Int32Array = global.Int32Array
- Uint32Array = global.Uint32Array
- Float32Array = global.Float32Array
- Float64Array = global.Float64Array
- BigInt64Array = global.BigInt64Array
- BigUint64Array = global.BigUint64Array
-};
-
-
-(()=>{var w=Object.create;var f=Object.defineProperty;var v=Object.getOwnPropertyDescriptor;var _=Object.getOwnPropertyNames;var R=Object.getPrototypeOf,S=Object.prototype.hasOwnProperty;var y=(t,o)=>()=>(o||t((o={exports:{}}).exports,o),o.exports);var C=(t,o,a,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let r of _(o))!S.call(t,r)&&r!==a&&f(t,r,{get:()=>o[r],enumerable:!(l=v(o,r))||l.enumerable});return t};var g=(t,o,a)=>(a=t!=null?w(R(t)):{},C(o||!t||!t.__esModule?f(a,"default",{value:t,enumerable:!0}):a,t));var d=y((E,m)=>{m.exports=Vue});var $=g(d());function h(t){return weex.requireModule(t)}function s(t,o,...a){uni.__log__?uni.__log__(t,o,...a):console[t].apply(console,[...a,o])}var e=g(d());var k=(t,o)=>{let a=t.__vccOpts||t;for(let[l,r]of o)a[l]=r;return a};var z={"center-column":{"":{display:"flex",flexDirection:"column",alignItems:"center"}},"button-group":{"":{display:"flex",flexDirection:"row",flexWrap:"wrap",justifyContent:"center",marginTop:40,width:620}},button:{"":{marginTop:6,marginRight:6,marginBottom:6,marginLeft:6,paddingTop:8,paddingRight:12,paddingBottom:8,paddingLeft:12,minWidth:"120px",height:44,borderRadius:6,borderWidth:1,borderStyle:"solid",borderColor:"#dddddd",backgroundColor:"#ffffff"}}},x={data(){return{phoneNumber:"1234567890",isAlarming:!1,isRecording:!1,isTalking:!1}},onLoad(){let t=h&&h("globalEvent");t&&t.addEventListener&&t.addEventListener("myEvent",o=>{s("log","at pages/ceshianzhuo.nvue:73","myEvent",o)})},methods:{handleTelEvent(t){s("log","at pages/ceshianzhuo.nvue:80","Tel event detail:",t.detail)},switchDisplay(t){this.$refs.monitor&&this.$refs.monitor.switchDisplayModeFragment(t)},startAlarm(){this.isAlarming=!0,this.$refs.monitor.startOrStopManualAlarm(this.isAlarming,t=>{s("log","at pages/ceshianzhuo.nvue:91","startAlarm callback:",t)})},stopAlarm(){this.isAlarming=!1,this.$refs.monitor.startOrStopManualAlarm(this.isAlarming,t=>{s("log","at pages/ceshianzhuo.nvue:97","stopAlarm callback:",t)})},flipImage(t){this.$refs.monitor.changeImageSwitch(t,o=>{s("log","at pages/ceshianzhuo.nvue:103","flipImage callback:",o)})},resumeOrPause(){this.$refs.monitor.resumeOrPause&&this.$refs.monitor.resumeOrPause()},changeQuality(){this.$refs.monitor.changeQuality&&this.$refs.monitor.changeQuality()},test(){this.$refs.monitor&&this.$refs.monitor.test&&this.$refs.monitor.test()},doSnapshot(){if(!this.$refs.monitor||!this.$refs.monitor.snapShot){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 snapShot()",icon:"none"});return}try{this.$refs.monitor.snapShot(t=>{s("log","at pages/ceshianzhuo.nvue:134","snapShot callback:",t),this._handleSnapshotResultFromNative(t)}),uni.showToast({title:"\u6B63\u5728\u622A\u5C4F...",icon:"none",duration:800})}catch(t){s("error","at pages/ceshianzhuo.nvue:143","snapShot \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"snapShot \u8C03\u7528\u5931\u8D25",icon:"none"})}},doStartRecord(){if(!this.$refs.monitor||!this.$refs.monitor.startRecord){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 startRecord()",icon:"none"});return}try{this.$refs.monitor.startRecord(t=>{s("log","at pages/ceshianzhuo.nvue:163","startRecord callback:",t)}),this.isRecording=!0,uni.showToast({title:"\u5F55\u5C4F\u5DF2\u5F00\u59CB",icon:"none"})}catch(t){s("error","at pages/ceshianzhuo.nvue:171","startRecord \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"startRecord \u8C03\u7528\u5931\u8D25",icon:"none"})}},doStopRecord(){if(!this.$refs.monitor||!this.$refs.monitor.stopRecord){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 stopRecord()",icon:"none"});return}try{this.$refs.monitor.stopRecord(t=>{s("log","at pages/ceshianzhuo.nvue:191","stopRecord callback:",t),this._handleRecordResultFromNative(t)})}catch(t){s("error","at pages/ceshianzhuo.nvue:196","stopRecord \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"stopRecord \u8C03\u7528\u5931\u8D25",icon:"none"})}},doOpenTalk(){if(!this.$refs.monitor||!this.$refs.monitor.openTalk){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 openTalk()",icon:"none"});return}try{this.$refs.monitor.openTalk(t=>{s("log","at pages/ceshianzhuo.nvue:215","openTalk callback:",t)}),this.isTalking=!0,uni.showToast({title:"\u5C1D\u8BD5\u5EFA\u7ACB\u5BF9\u8BB2\u8FDE\u63A5...",icon:"none"})}catch(t){s("error","at pages/ceshianzhuo.nvue:225","openTalk \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"openTalk \u8C03\u7528\u5931\u8D25",icon:"none"})}},doStopTalk(){if(!this.$refs.monitor||!this.$refs.monitor.stopTalk){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 stopTalk()",icon:"none"});return}try{this.$refs.monitor.stopTalk(t=>{s("log","at pages/ceshianzhuo.nvue:244","stopTalk callback:",t)}),this.isTalking=!1}catch(t){s("error","at pages/ceshianzhuo.nvue:250","stopTalk \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"stopTalk \u8C03\u7528\u5931\u8D25",icon:"none"})}},handleSnapShotEvent(t){s("log","at pages/ceshianzhuo.nvue:263","onSnapShot event:",t&&t.detail?t.detail:t),this._handleSnapshotResultFromNative(t&&t.detail?t.detail:t)},handleRecordEvent(t){s("log","at pages/ceshianzhuo.nvue:270","onRecord event:",t&&t.detail?t.detail:t),this._handleRecordResultFromNative(t&&t.detail?t.detail:t)},handleTalkEvent(t){let o=t&&t.detail?t.detail:t;s("log","at pages/ceshianzhuo.nvue:278","onTalkStatus event:",o);let a=o&&o.talkStatus,l=o&&o.tips;switch((a||"").toLowerCase()){case"loading":uni.showToast({title:l||"\u5BF9\u8BB2\u8FDE\u63A5\u4E2D...",icon:"none"}),this.isTalking=!0;break;case"playing":uni.showToast({title:l||"\u5BF9\u8BB2\u5DF2\u8FDE\u63A5",icon:"none"}),this.isTalking=!0;break;case"stopped":uni.showToast({title:l||"\u5BF9\u8BB2\u5DF2\u505C\u6B62",icon:"none"}),this.isTalking=!1;break;case"failed":uni.showToast({title:l||"\u5BF9\u8BB2\u5931\u8D25",icon:"none"}),this.isTalking=!1;break;default:uni.showToast({title:l||"\u5BF9\u8BB2\u72B6\u6001: "+(a||"unknown"),icon:"none"});break}},_handleSnapshotResultFromNative(t){if(!t){uni.showToast({title:"\u622A\u56FE\u6CA1\u6709\u8FD4\u56DE\u6570\u636E",icon:"none"});return}let o=t;if(t.detail&&(o=t.detail),s("log","at pages/ceshianzhuo.nvue:337","snapshot payload normalized:",o),o.snapShotResult===!0||o.snapShotResult==="true"){let a=o.snapShotUrl||o.snapShotPath||o.url;uni.showToast({title:"\u622A\u56FE\u6210\u529F",icon:"success",duration:1200}),s("log","at pages/ceshianzhuo.nvue:345","\u622A\u56FE\u5730\u5740\uFF1A",a),a&&uni.previewImage({urls:[a]})}else{let a=o.snapShotErrorCode||o.error||"unknown";uni.showToast({title:"\u622A\u56FE\u5931\u8D25: "+a,icon:"none",duration:2e3}),s("warn","at pages/ceshianzhuo.nvue:360","snapshot failed reason:",a,o)}},_handleRecordResultFromNative(t){if(!t){uni.showToast({title:"\u5F55\u5C4F\u6CA1\u6709\u8FD4\u56DE\u6570\u636E",icon:"none"}),this.isRecording=!1;return}let o=t;t.detail&&(o=t.detail),s("log","at pages/ceshianzhuo.nvue:377","record payload normalized:",o),o.recordUrl?(uni.showToast({title:"\u5F55\u5C4F\u5B8C\u6210",icon:"success",duration:1400}),s("log","at pages/ceshianzhuo.nvue:386","\u5F55\u5C4F\u5730\u5740\uFF1A",o.recordUrl),this.isRecording=!1):o.recordFailedReason?(uni.showToast({title:"\u5F55\u5C4F\u5931\u8D25: "+o.recordFailedReason,icon:"none",duration:2e3}),s("warn","at pages/ceshianzhuo.nvue:395","record failed reason:",o.recordFailedReason),this.isRecording=!1):(o.snapShotResult===!0&&uni.showToast({title:"\u5F55\u5C4F\u64CD\u4F5C\u5DF2\u5B8C\u6210\uFF08\u8FD4\u56DE\u672A\u77E5\uFF09",icon:"none"}),this.isRecording=!1)}}};function A(t,o,a,l,r,n){let T=(0,e.resolveComponent)("MonitorView"),b=(0,e.resolveComponent)("MonitorControlView"),i=(0,e.resolveComponent)("button");return(0,e.openBlock)(),(0,e.createElementBlock)("scroll-view",{scrollY:!0,showScrollbar:!0,enableBackToTop:!0,bubble:"true",style:{flexDirection:"column"}},[(0,e.createElementVNode)("div",{class:"center-column"},[(0,e.createVNode)(T,{ref:"monitor",init:"5",style:{width:"300px",height:"200px","margin-top":"20px"},onOnTel:n.handleTelEvent,onOnSnapShot:n.handleSnapShotEvent,onOnRecord:n.handleRecordEvent,onOnTalkStatus:n.handleTalkEvent},null,8,["onOnTel","onOnSnapShot","onOnRecord","onOnTalkStatus"]),(0,e.createElementVNode)("view",{style:{display:"flex","flex-direction":"row","align-items":"flex-start"}},[(0,e.createVNode)(b,{ref:"control",init:"5",style:{width:"300px",height:"300px","margin-top":"20px"}},null,512),(0,e.createElementVNode)("div",{class:"button-group"},[(0,e.createVNode)(i,{class:"button",onClick:o[0]||(o[0]=u=>n.switchDisplay(0))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u539F\u56FE")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:o[1]||(o[1]=u=>n.switchDisplay(1))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u56DB\u5206\u5C4F")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:o[2]||(o[2]=u=>n.switchDisplay(2))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("180\xB0\u5168\u666F")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:o[3]||(o[3]=u=>n.switchDisplay(3))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("360\xB0\u5168\u666F")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:o[4]||(o[4]=u=>n.switchDisplay(4))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u73AF\u72B6\u5168\u666F")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:n.startAlarm},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u5F00\u542F\u624B\u52A8\u62A5\u8B66")]),_:1},8,["onClick"]),(0,e.createVNode)(i,{class:"button",onClick:n.stopAlarm},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u505C\u6B62\u624B\u52A8\u62A5\u8B66")]),_:1},8,["onClick"]),(0,e.createVNode)(i,{class:"button",onClick:o[5]||(o[5]=u=>n.flipImage(0))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u5DE6\u53F3\u7FFB\u8F6C")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:o[6]||(o[6]=u=>n.flipImage(1))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u4E0A\u4E0B\u7FFB\u8F6C")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:o[7]||(o[7]=u=>n.flipImage(2))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u4E2D\u5FC3\u7FFB\u8F6C")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:o[8]||(o[8]=u=>n.flipImage(3))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u987A\u65F6\u948890\xB0")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:o[9]||(o[9]=u=>n.flipImage(4))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u9006\u65F6\u948890\xB0")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:o[10]||(o[10]=u=>n.flipImage(5))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u9006\u65F6\u9488180\xB0")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:o[11]||(o[11]=u=>n.flipImage(6))},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u4E0D\u7FFB\u8F6C")]),_:1}),(0,e.createVNode)(i,{class:"button",onClick:n.resumeOrPause},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u6682\u505C/\u7EE7\u7EED")]),_:1},8,["onClick"]),(0,e.createVNode)(i,{class:"button",onClick:n.changeQuality},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u5207\u6362\u6E05\u6670\u5EA6")]),_:1},8,["onClick"]),(0,e.createVNode)(i,{class:"button",onClick:n.doSnapshot},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("\u622A\u56FE")]),_:1},8,["onClick"]),(0,e.createVNode)(i,{class:"button",disabled:r.isRecording,onClick:n.doStartRecord},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)(" \u5F00\u59CB\u5F55\u5C4F ")]),_:1},8,["disabled","onClick"]),(0,e.createVNode)(i,{class:"button",disabled:!r.isRecording,onClick:n.doStopRecord},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)(" \u7ED3\u675F\u5F55\u5C4F ")]),_:1},8,["disabled","onClick"]),(0,e.createVNode)(i,{class:"button",disabled:r.isTalking,onClick:n.doOpenTalk},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)(" \u5F00\u59CB\u5BF9\u8BB2 ")]),_:1},8,["disabled","onClick"]),(0,e.createVNode)(i,{class:"button",disabled:!r.isTalking,onClick:n.doStopTalk},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)(" \u7ED3\u675F\u5BF9\u8BB2 ")]),_:1},8,["disabled","onClick"]),(0,e.createVNode)(i,{class:"button",onClick:n.test},{default:(0,e.withCtx)(()=>[(0,e.createTextVNode)("test")]),_:1},8,["onClick"])])])])])}var c=k(x,[["render",A],["styles",[z]]]);var p=plus.webview.currentWebview();if(p){let t=parseInt(p.id),o="pages/ceshianzhuo",a={};try{a=JSON.parse(p.__query__)}catch(r){}c.mpType="page";let l=Vue.createPageApp(c,{$store:getApp({allowDefault:!0}).$store,__pageId:t,__pagePath:o,__pageQuery:a});l.provide("__globalStyles",Vue.useCssStyles([...__uniConfig.styles,...c.styles||[]])),l.mount("#root")}})();
diff --git a/unpackage/resources/__UNI__FB2D473/www/pages/login/login.css b/unpackage/resources/__UNI__FB2D473/www/pages/login/login.css
index 8586538..1b1d1c0 100644
--- a/unpackage/resources/__UNI__FB2D473/www/pages/login/login.css
+++ b/unpackage/resources/__UNI__FB2D473/www/pages/login/login.css
@@ -1 +1 @@
-.zy-modal[data-v-cd70e807]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1110;opacity:0;outline:0;text-align:center;transform:scale(1.185);-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:62.5rem;background:rgba(0,0,0,.6);transition:all .3s ease-in-out 0s;pointer-events:none}.zy-modal[data-v-cd70e807]:before{content:"\200b";display:inline-block;height:100%;vertical-align:middle}.zy-modal.show[data-v-cd70e807]{opacity:1;transition-duration:.3s;transform:scale(1);overflow-x:hidden;overflow-y:auto;pointer-events:auto}.zy-dialog[data-v-cd70e807]{position:relative;display:inline-block;vertical-align:middle;margin-left:auto;margin-right:auto;width:21.25rem;max-width:100%;background-color:#f8f8f8;border-radius:.3125rem;overflow:hidden}.zy-modal.bottom-modal[data-v-cd70e807]:before{vertical-align:bottom}.zy-modal.bottom-modal .zy-dialog[data-v-cd70e807]{width:100%;border-radius:0}.zy-modal.bottom-modal[data-v-cd70e807]{margin-bottom:-31.25rem}.zy-modal.bottom-modal.show[data-v-cd70e807]{margin-bottom:0}.zy-modal.drawer-modal[data-v-cd70e807]{transform:scale(1);display:flex}.zy-modal.drawer-modal .zy-dialog[data-v-cd70e807]{height:100%;min-width:6.25rem;border-radius:0;margin:initial;transition-duration:.3s}.zy-modal.drawer-modal.justify-start .zy-dialog[data-v-cd70e807]{transform:translate(-100%)}.zy-modal.drawer-modal.justify-end .zy-dialog[data-v-cd70e807]{transform:translate(100%)}.zy-modal.drawer-modal.show .zy-dialog[data-v-cd70e807]{transform:translate(0)}.zy-modal .zy-dialog>.zy-bar:first-child .action[data-v-cd70e807]{min-width:3.125rem;margin-right:0;min-height:3.125rem}.zy-progress[data-v-cd70e807]{overflow:hidden;height:.875rem;background-color:#ebeef5;display:inline-flex;align-items:center;width:100%}.zy-progress+uni-view[data-v-cd70e807],.zy-progress+uni-text[data-v-cd70e807]{line-height:1}.zy-progress.xs[data-v-cd70e807]{height:.3125rem}.zy-progress.sm[data-v-cd70e807]{height:.625rem}.zy-progress uni-view[data-v-cd70e807]{width:0;height:100%;align-items:center;display:flex;justify-items:flex-end;justify-content:space-around;font-size:.625rem;color:#fff;transition:width .6s ease}.zy-progress uni-text[data-v-cd70e807]{align-items:center;display:flex;font-size:.625rem;color:#333;text-indent:.3125rem}.zy-progress.text-progress[data-v-cd70e807]{padding-right:1.875rem}.zy-progress.striped uni-view[data-v-cd70e807]{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:2.25rem 2.25rem}.zy-progress.active uni-view[data-v-cd70e807]{animation:progress-stripes-cd70e807 2s linear infinite}@keyframes progress-stripes-cd70e807{0%{background-position:2.25rem 0}to{background-position:0 0}}.zy-btn[data-v-cd70e807]{height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.zy-btn[data-v-cd70e807]:after{display:none}.zy-btn[data-v-cd70e807]:not([class*=bg-]){background-color:#f0f0f0}.zy-btn[class*=line][data-v-cd70e807]{background-color:transparent}.zy-btn[class*=line][data-v-cd70e807]:after{content:" ";display:block;width:200%;height:200%;position:absolute;top:0;left:0;border:.03125rem solid currentColor;transform:scale(.5);transform-origin:0 0;box-sizing:border-box;border-radius:.375rem;z-index:1;pointer-events:none}.zy-btn.round[class*=line][data-v-cd70e807]:after{border-radius:31.25rem}.zy-btn[class*=lines][data-v-cd70e807]:after{border:.1875rem solid currentColor}.zy-btn[class*=bg-][data-v-cd70e807]:after{display:none}.zy-btn.sm[data-v-cd70e807]{padding:0 .625rem;font-size:.625rem;height:1.5rem}.zy-btn.lg[data-v-cd70e807]{padding:0 1.25rem;font-size:1rem;height:2.5rem}.zy-btn.cuIcon.sm[data-v-cd70e807]{width:1.5rem;height:1.5rem}.zy-btn.cuIcon[data-v-cd70e807]{width:2rem;height:2rem;border-radius:15.625rem;padding:0}uni-button.cuIcon.lg[data-v-cd70e807]{width:2.5rem;height:2.5rem}.zy-btn.shadow-blur[data-v-cd70e807]:before{top:.125rem;left:.125rem;filter:blur(.1875rem);opacity:.6}.zy-btn.button-hover[data-v-cd70e807]{transform:translate(.03125rem,.03125rem)}.block[data-v-cd70e807]{display:block}.zy-btn.block[data-v-cd70e807]{display:flex}.zy-btn[disabled][data-v-cd70e807]{opacity:.6;color:#fff}.margin-0[data-v-cd70e807]{margin:0}.margin-xs[data-v-cd70e807]{margin:.3125rem}.margin-sm[data-v-cd70e807]{margin:.625rem}.margin[data-v-cd70e807]{margin:.9375rem}.margin-lg[data-v-cd70e807]{margin:1.25rem}.margin-xl[data-v-cd70e807]{margin:1.5625rem}.margin-top-xs[data-v-cd70e807]{margin-top:.3125rem}.margin-top-sm[data-v-cd70e807]{margin-top:.625rem}.margin-top[data-v-cd70e807]{margin-top:.9375rem}.margin-top-lg[data-v-cd70e807]{margin-top:1.25rem}.margin-top-xl[data-v-cd70e807]{margin-top:1.5625rem}.margin-right-xs[data-v-cd70e807]{margin-right:.3125rem}.margin-right-sm[data-v-cd70e807]{margin-right:.625rem}.margin-right[data-v-cd70e807]{margin-right:.9375rem}.margin-right-lg[data-v-cd70e807]{margin-right:1.25rem}.margin-right-xl[data-v-cd70e807]{margin-right:1.5625rem}.margin-bottom-xs[data-v-cd70e807]{margin-bottom:.3125rem}.margin-bottom-sm[data-v-cd70e807]{margin-bottom:.625rem}.margin-bottom[data-v-cd70e807]{margin-bottom:.9375rem}.margin-bottom-lg[data-v-cd70e807]{margin-bottom:1.25rem}.margin-bottom-xl[data-v-cd70e807]{margin-bottom:1.5625rem}.margin-left-xs[data-v-cd70e807]{margin-left:.3125rem}.margin-left-sm[data-v-cd70e807]{margin-left:.625rem}.margin-left[data-v-cd70e807]{margin-left:.9375rem}.margin-left-lg[data-v-cd70e807]{margin-left:1.25rem}.margin-left-xl[data-v-cd70e807]{margin-left:1.5625rem}.margin-lr-xs[data-v-cd70e807]{margin-left:.3125rem;margin-right:.3125rem}.margin-lr-sm[data-v-cd70e807]{margin-left:.625rem;margin-right:.625rem}.margin-lr[data-v-cd70e807]{margin-left:.9375rem;margin-right:.9375rem}.margin-lr-lg[data-v-cd70e807]{margin-left:1.25rem;margin-right:1.25rem}.margin-lr-xl[data-v-cd70e807]{margin-left:1.5625rem;margin-right:1.5625rem}.margin-tb-xs[data-v-cd70e807]{margin-top:.3125rem;margin-bottom:.3125rem}.margin-tb-sm[data-v-cd70e807]{margin-top:.625rem;margin-bottom:.625rem}.margin-tb[data-v-cd70e807]{margin-top:.9375rem;margin-bottom:.9375rem}.margin-tb-lg[data-v-cd70e807]{margin-top:1.25rem;margin-bottom:1.25rem}.margin-tb-xl[data-v-cd70e807]{margin-top:1.5625rem;margin-bottom:1.5625rem}.padding-0[data-v-cd70e807]{padding:0}.padding-xs[data-v-cd70e807]{padding:.3125rem}.padding-sm[data-v-cd70e807]{padding:.625rem}.padding[data-v-cd70e807]{padding:.9375rem}.padding-lg[data-v-cd70e807]{padding:1.25rem}.padding-xl[data-v-cd70e807]{padding:1.5625rem}.padding-top-xs[data-v-cd70e807]{padding-top:.3125rem}.padding-top-sm[data-v-cd70e807]{padding-top:.625rem}.padding-top[data-v-cd70e807]{padding-top:.9375rem}.padding-top-lg[data-v-cd70e807]{padding-top:1.25rem}.padding-top-xl[data-v-cd70e807]{padding-top:1.5625rem}.padding-right-xs[data-v-cd70e807]{padding-right:.3125rem}.padding-right-sm[data-v-cd70e807]{padding-right:.625rem}.padding-right[data-v-cd70e807]{padding-right:.9375rem}.padding-right-lg[data-v-cd70e807]{padding-right:1.25rem}.padding-right-xl[data-v-cd70e807]{padding-right:1.5625rem}.padding-bottom-xs[data-v-cd70e807]{padding-bottom:.3125rem}.padding-bottom-sm[data-v-cd70e807]{padding-bottom:.625rem}.padding-bottom[data-v-cd70e807]{padding-bottom:.9375rem}.padding-bottom-lg[data-v-cd70e807]{padding-bottom:1.25rem}.padding-bottom-xl[data-v-cd70e807]{padding-bottom:1.5625rem}.padding-left-xs[data-v-cd70e807]{padding-left:.3125rem}.padding-left-sm[data-v-cd70e807]{padding-left:.625rem}.padding-left[data-v-cd70e807]{padding-left:.9375rem}.padding-left-lg[data-v-cd70e807]{padding-left:1.25rem}.padding-left-xl[data-v-cd70e807]{padding-left:1.5625rem}.padding-lr-xs[data-v-cd70e807]{padding-left:.3125rem;padding-right:.3125rem}.padding-lr-sm[data-v-cd70e807]{padding-left:.625rem;padding-right:.625rem}.padding-lr[data-v-cd70e807]{padding-left:.9375rem;padding-right:.9375rem}.padding-lr-lg[data-v-cd70e807]{padding-left:1.25rem;padding-right:1.25rem}.padding-lr-xl[data-v-cd70e807]{padding-left:1.5625rem;padding-right:1.5625rem}.padding-tb-xs[data-v-cd70e807]{padding-top:.3125rem;padding-bottom:.3125rem}.padding-tb-sm[data-v-cd70e807]{padding-top:.625rem;padding-bottom:.625rem}.padding-tb[data-v-cd70e807]{padding-top:.9375rem;padding-bottom:.9375rem}.padding-tb-lg[data-v-cd70e807]{padding-top:1.25rem;padding-bottom:1.25rem}.padding-tb-xl[data-v-cd70e807]{padding-top:1.5625rem;padding-bottom:1.5625rem}.zy-bar[data-v-cd70e807]{display:flex;position:relative;align-items:center;min-height:3.125rem;justify-content:space-between}.zy-bar .action[data-v-cd70e807]{display:flex;align-items:center;height:100%;justify-content:center;max-width:100%}.zy-bar .action.border-title[data-v-cd70e807]{position:relative;top:-.3125rem}.zy-bar .action.border-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;bottom:-.5rem;min-width:2rem;height:.1875rem;left:0}.zy-bar .action.sub-title[data-v-cd70e807]{position:relative;top:-.2rem}.zy-bar .action.sub-title uni-text[data-v-cd70e807]{position:relative;z-index:1}.zy-bar .action.sub-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.2rem;border-radius:.1875rem;width:100%;height:.6rem;left:.6rem;opacity:.3;z-index:0}.zy-bar .action.sub-title uni-text[class*=text-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.7rem;left:.5rem;opacity:.2;z-index:0;text-align:right;font-weight:900;font-size:1.125rem}.zy-bar.justify-center .action.border-title uni-text[data-v-cd70e807]:last-child,.zy-bar.justify-center .action.sub-title uni-text[data-v-cd70e807]:last-child{left:0;right:0;margin:auto;text-align:center}.zy-bar .action[data-v-cd70e807]:first-child{margin-left:.9375rem;font-size:.9375rem}.zy-bar .action uni-text.text-cut[data-v-cd70e807]{text-align:left;width:100%}.zy-bar .zy-avatar[data-v-cd70e807]:first-child{margin-left:.625rem}.zy-bar .action:first-child>uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:-.3em;margin-right:.3em}.zy-bar .action[data-v-cd70e807]:last-child{margin-right:.9375rem}.zy-bar .action>uni-text[class*=cuIcon-][data-v-cd70e807],.zy-bar .action>uni-view[class*=cuIcon-][data-v-cd70e807]{font-size:1.125rem}.zy-bar .action>uni-text[class*=cuIcon-]+uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:.5em}.zy-bar .content[data-v-cd70e807]{position:absolute;text-align:center;width:calc(100% - 10.625rem);left:0;right:0;bottom:0;top:0;margin:auto;height:1.875rem;font-size:1rem;line-height:1.875rem;cursor:none;pointer-events:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.zy-bar.ios .content[data-v-cd70e807]{bottom:7px;height:30px;font-size:1rem;line-height:30px}.zy-bar.btn-group[data-v-cd70e807]{justify-content:space-around}.zy-bar.btn-group uni-button[data-v-cd70e807]{padding:.625rem 1rem}.zy-bar.btn-group uni-button[data-v-cd70e807]{flex:1;margin:0 .625rem;max-width:50%}.zy-bar .search-form[data-v-cd70e807]{background-color:#f5f5f5;line-height:2rem;height:2rem;font-size:.75rem;color:#333;flex:1;display:flex;align-items:center;margin:0 .9375rem}.zy-bar .search-form+.action[data-v-cd70e807]{margin-right:.9375rem}.zy-bar .search-form uni-input[data-v-cd70e807]{flex:1;padding-right:.9375rem;height:2rem;line-height:2rem;font-size:.8125rem;background-color:transparent}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]{margin:0 .5em 0 .8em}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]:before{top:0}.zy-bar.fixed[data-v-cd70e807],.nav.fixed[data-v-cd70e807]{position:fixed;width:100%;top:0;z-index:1024;box-shadow:0 .03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.foot[data-v-cd70e807]{position:fixed;width:100%;bottom:0;z-index:1024;box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar[data-v-cd70e807]{padding:0;height:calc(3.125rem + env(safe-area-inset-bottom)/2);padding-bottom:calc(env(safe-area-inset-bottom)/2)}.zy-tabbar-height[data-v-cd70e807]{min-height:3.125rem;height:calc(3.125rem + env(safe-area-inset-bottom)/2)}.zy-bar.tabbar.shadow[data-v-cd70e807]{box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar .action[data-v-cd70e807]{font-size:.6875rem;position:relative;flex:1;text-align:center;padding:0;display:block;height:auto;line-height:1;margin:0;background-color:inherit;overflow:initial}.zy-bar.tabbar.shop .action[data-v-cd70e807]{width:4.375rem;flex:initial}.zy-bar.tabbar .action.add-action[data-v-cd70e807]{position:relative;z-index:2;padding-top:1.5625rem}.zy-bar.tabbar .action.add-action [class*=cuIcon-][data-v-cd70e807]{position:absolute;width:2.1875rem;z-index:2;height:2.1875rem;border-radius:50%;line-height:2.1875rem;font-size:1.5625rem;top:-1.09375rem;left:0;right:0;margin:auto;padding:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:after{content:"";position:absolute;width:3.125rem;height:3.125rem;top:-1.5625rem;left:0;right:0;margin:auto;box-shadow:0 -.09375rem .25rem rgba(0,0,0,.08);border-radius:1.5625rem;background-color:inherit;z-index:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:before{content:"";position:absolute;width:3.125rem;height:.9375rem;bottom:.9375rem;left:0;right:0;margin:auto;background-color:inherit;z-index:1}.zy-bar.tabbar .btn-group[data-v-cd70e807]{flex:1;display:flex;justify-content:space-around;align-items:center;padding:0 .3125rem}.zy-bar.tabbar uni-button.action[data-v-cd70e807]:after{border:0}.zy-bar.tabbar .action [class*=cuIcon-][data-v-cd70e807]{width:3.125rem;position:relative;display:block;height:auto;margin:0 auto .3125rem;text-align:center;font-size:1.25rem}.zy-bar.tabbar .action .cuIcon-zy-image[data-v-cd70e807]{margin:0 auto}.zy-bar.tabbar .action .cuIcon-zy-image uni-image[data-v-cd70e807]{width:1.5625rem;height:1.5625rem;display:inline-block}.zy-bar.tabbar .submit[data-v-cd70e807]{align-items:center;display:flex;justify-content:center;text-align:center;position:relative;flex:2;align-self:stretch}.zy-bar.tabbar .submit[data-v-cd70e807]:last-child{flex:2.6}.zy-bar.tabbar .submit+.submit[data-v-cd70e807]{flex:2}.zy-bar.tabbar.border .action[data-v-cd70e807]:before{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;transform:scale(.5);transform-origin:0 0;border-right:.03125rem solid rgba(0,0,0,.1);z-index:3}.zy-bar.tabbar.border .action[data-v-cd70e807]:last-child:before{display:none}.zy-bar.input[data-v-cd70e807]{padding-right:.625rem;background-color:#fff}.zy-bar.input uni-input[data-v-cd70e807]{overflow:initial;line-height:2rem;height:2rem;min-height:2rem;flex:1;font-size:.9375rem;margin:0 .625rem}.zy-bar.input .action[data-v-cd70e807]{margin-left:.625rem}.zy-bar.input .action [class*=cuIcon-][data-v-cd70e807]{font-size:1.5rem}.zy-bar.input uni-input+.action[data-v-cd70e807]{margin-right:.625rem;margin-left:0}.zy-bar.input .action:first-child [class*=cuIcon-][data-v-cd70e807]{margin-left:0}.zy-custom[data-v-cd70e807]{display:block;position:relative}.zy-custom .zy-bar .content[data-v-cd70e807]{width:calc(100% - 13.75rem)}.zy-custom .zy-bar .content uni-image[data-v-cd70e807]{height:1.875rem;width:7.5rem}.zy-custom .zy-bar[data-v-cd70e807]{min-height:0px;box-shadow:0 0;z-index:9999}.zy-custom .zy-bar .border-custom[data-v-cd70e807]{position:relative;background:rgba(0,0,0,.15);border-radius:31.25rem;height:30px}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:after{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;border-radius:inherit;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:.03125rem solid #ffffff;opacity:.5}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:before{content:" ";width:.03125rem;height:110%;position:absolute;top:22.5%;left:0;right:0;margin:auto;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;opacity:.6;background-color:#fff}.zy-custom .zy-bar .border-custom uni-text[data-v-cd70e807]{display:block;flex:1;margin:auto!important;text-align:center;font-size:1.0625rem}.flex[data-v-cd70e807]{display:flex}.basis-xs[data-v-cd70e807]{flex-basis:20%}.basis-sm[data-v-cd70e807]{flex-basis:40%}.basis-df[data-v-cd70e807]{flex-basis:50%}.basis-lg[data-v-cd70e807]{flex-basis:60%}.basis-xl[data-v-cd70e807]{flex-basis:80%}.flex-sub[data-v-cd70e807]{flex:1}.flex-twice[data-v-cd70e807]{flex:2}.flex-treble[data-v-cd70e807]{flex:3}.flex-direction[data-v-cd70e807]{flex-direction:column}.flex-wrap[data-v-cd70e807]{flex-wrap:wrap}.align-start[data-v-cd70e807]{align-items:flex-start}.align-end[data-v-cd70e807]{align-items:flex-end}.align-center[data-v-cd70e807]{align-items:center}.self-start[data-v-cd70e807]{align-self:flex-start}.self-center[data-v-cd70e807]{align-self:flex-center}.self-end[data-v-cd70e807]{align-self:flex-end}.self-stretch[data-v-cd70e807]{align-self:stretch}.align-stretch[data-v-cd70e807]{align-items:stretch}.justify-start[data-v-cd70e807]{justify-content:flex-start}.justify-end[data-v-cd70e807]{justify-content:flex-end}.justify-center[data-v-cd70e807]{justify-content:center}.justify-between[data-v-cd70e807]{justify-content:space-between}.justify-around[data-v-cd70e807]{justify-content:space-around}.line-red[data-v-cd70e807]:after,.lines-red[data-v-cd70e807]:after{border-color:#e54d42}.line-orange[data-v-cd70e807]:after,.lines-orange[data-v-cd70e807]:after{border-color:#f37b1d}.line-yellow[data-v-cd70e807]:after,.lines-yellow[data-v-cd70e807]:after{border-color:#fbbd08}.line-olive[data-v-cd70e807]:after,.lines-olive[data-v-cd70e807]:after{border-color:#8dc63f}.line-green[data-v-cd70e807]:after,.lines-green[data-v-cd70e807]:after{border-color:#39b54a}.line-cyan[data-v-cd70e807]:after,.lines-cyan[data-v-cd70e807]:after{border-color:#1cbbb4}.line-blue[data-v-cd70e807]:after,.lines-blue[data-v-cd70e807]:after{border-color:#0081ff}.line-purple[data-v-cd70e807]:after,.lines-purple[data-v-cd70e807]:after{border-color:#6739b6}.line-mauve[data-v-cd70e807]:after,.lines-mauve[data-v-cd70e807]:after{border-color:#9c26b0}.line-pink[data-v-cd70e807]:after,.lines-pink[data-v-cd70e807]:after{border-color:#e03997}.line-brown[data-v-cd70e807]:after,.lines-brown[data-v-cd70e807]:after{border-color:#a5673f}.line-grey[data-v-cd70e807]:after,.lines-grey[data-v-cd70e807]:after{border-color:#8799a3}.line-gray[data-v-cd70e807]:after,.lines-gray[data-v-cd70e807]:after{border-color:#aaa}.line-black[data-v-cd70e807]:after,.lines-black[data-v-cd70e807]:after{border-color:#333}.line-white[data-v-cd70e807]:after,.lines-white[data-v-cd70e807]:after{border-color:#fff}.bg-red[data-v-cd70e807]{background-color:#e54d42;color:#fff}.bg-orange[data-v-cd70e807]{background-color:#f37b1d;color:#fff}.bg-yellow[data-v-cd70e807]{background-color:#fbbd08;color:#333}.bg-olive[data-v-cd70e807]{background-color:#8dc63f;color:#fff}.bg-green[data-v-cd70e807]{background-color:#39b54a;color:#fff}.bg-cyan[data-v-cd70e807]{background-color:#1cbbb4;color:#fff}.bg-blue[data-v-cd70e807]{background-color:#0081ff;color:#fff}.bg-purple[data-v-cd70e807]{background-color:#6739b6;color:#fff}.bg-mauve[data-v-cd70e807]{background-color:#9c26b0;color:#fff}.bg-pink[data-v-cd70e807]{background-color:#e03997;color:#fff}.bg-brown[data-v-cd70e807]{background-color:#a5673f;color:#fff}.bg-grey[data-v-cd70e807]{background-color:#8799a3;color:#fff}.bg-gray[data-v-cd70e807]{background-color:#f0f0f0;color:#333}.bg-black[data-v-cd70e807]{background-color:#333;color:#fff}.bg-white[data-v-cd70e807]{background-color:#fff;color:#666}.bg-shadeTop[data-v-cd70e807]{background-image:linear-gradient(#000,rgba(0,0,0,.01));color:#fff}.bg-shadeBottom[data-v-cd70e807]{background-image:linear-gradient(rgba(0,0,0,.01),#000);color:#fff}.bg-red.light[data-v-cd70e807]{color:#e54d42;background-color:#fadbd9}.bg-orange.light[data-v-cd70e807]{color:#f37b1d;background-color:#fde6d2}.bg-yellow.light[data-v-cd70e807]{color:#fbbd08;background-color:rgba(254,242,206,.824)}.bg-olive.light[data-v-cd70e807]{color:#8dc63f;background-color:#e8f4d9}.bg-green.light[data-v-cd70e807]{color:#39b54a;background-color:#d7f0db}.bg-cyan.light[data-v-cd70e807]{color:#1cbbb4;background-color:#d2f1f0}.bg-blue.light[data-v-cd70e807]{color:#0081ff;background-color:#cce6ff}.bg-purple.light[data-v-cd70e807]{color:#6739b6;background-color:#e1d7f0}.bg-mauve.light[data-v-cd70e807]{color:#9c26b0;background-color:#ebd4ef}.bg-pink.light[data-v-cd70e807]{color:#e03997;background-color:#f9d7ea}.bg-brown.light[data-v-cd70e807]{color:#a5673f;background-color:#ede1d9}.bg-grey.light[data-v-cd70e807]{color:#8799a3;background-color:#e7ebed}.bg-gradual-red[data-v-cd70e807]{background-image:linear-gradient(45deg,#f43f3b,#ec008c);color:#fff}.bg-gradual-orange[data-v-cd70e807]{background-image:linear-gradient(45deg,#ff9700,#ed1c24);color:#fff}.bg-gradual-green[data-v-cd70e807]{background-image:linear-gradient(45deg,#39b54a,#8dc63f);color:#fff}.bg-gradual-purple[data-v-cd70e807]{background-image:linear-gradient(45deg,#9000ff,#5e00ff);color:#fff}.bg-gradual-pink[data-v-cd70e807]{background-image:linear-gradient(45deg,#ec008c,#6739b6);color:#fff}.bg-gradual-blue[data-v-cd70e807]{background-image:linear-gradient(45deg,#0081ff,#1cbbb4);color:#fff}.shadow[class*=-red][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.shadow[class*=-orange][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.shadow[class*=-yellow][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.shadow[class*=-olive][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.shadow[class*=-green][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.shadow[class*=-cyan][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.shadow[class*=-blue][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.shadow[class*=-purple][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.shadow[class*=-mauve][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.shadow[class*=-pink][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.shadow[class*=-brown][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.shadow[class*=-grey][data-v-cd70e807],.shadow[class*=-gray][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.shadow[class*=-black][data-v-cd70e807],.shadow[class*=-white][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.text-shadow[class*=-red][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.text-shadow[class*=-orange][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.text-shadow[class*=-yellow][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.text-shadow[class*=-olive][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.text-shadow[class*=-green][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.text-shadow[class*=-cyan][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.text-shadow[class*=-blue][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.text-shadow[class*=-purple][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.text-shadow[class*=-mauve][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.text-shadow[class*=-pink][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.text-shadow[class*=-brown][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.text-shadow[class*=-grey][data-v-cd70e807],.text-shadow[class*=-gray][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.text-shadow[class*=-black][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.bg-img[data-v-cd70e807]{background-size:cover;background-position:center;background-repeat:no-repeat}.bg-mask[data-v-cd70e807]{background-color:#333;position:relative}.bg-mask[data-v-cd70e807]:after{content:"";border-radius:inherit;width:100%;height:100%;display:block;background-color:rgba(0,0,0,.4);position:absolute;left:0;right:0;bottom:0;top:0}.bg-mask uni-view[data-v-cd70e807],.bg-mask uni-cover-view[data-v-cd70e807]{z-index:5;position:relative}.bg-video[data-v-cd70e807]{position:relative}.bg-video uni-video[data-v-cd70e807]{display:block;height:100%;width:100%;object-fit:cover;position:absolute;top:0;z-index:0;pointer-events:none}.text-xs[data-v-cd70e807]{font-size:.625rem}.text-sm[data-v-cd70e807]{font-size:.75rem}.text-df[data-v-cd70e807]{font-size:.875rem}.text-lg[data-v-cd70e807]{font-size:1rem}.text-xl[data-v-cd70e807]{font-size:1.125rem}.text-xxl[data-v-cd70e807]{font-size:1.375rem}.text-sl[data-v-cd70e807]{font-size:2.5rem}.text-xsl[data-v-cd70e807]{font-size:3.75rem}.text-Abc[data-v-cd70e807]{text-transform:Capitalize}.text-ABC[data-v-cd70e807]{text-transform:Uppercase}.text-abc[data-v-cd70e807]{text-transform:Lowercase}.text-price[data-v-cd70e807]:before{content:"\a5";font-size:80%;margin-right:.125rem}.text-cut[data-v-cd70e807]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.text-bold[data-v-cd70e807]{font-weight:700}.text-center[data-v-cd70e807]{text-align:center}.text-content[data-v-cd70e807]{line-height:1.6}.text-left[data-v-cd70e807]{text-align:left}.text-right[data-v-cd70e807]{text-align:right}.text-red[data-v-cd70e807],.line-red[data-v-cd70e807],.lines-red[data-v-cd70e807]{color:#e54d42}.text-orange[data-v-cd70e807],.line-orange[data-v-cd70e807],.lines-orange[data-v-cd70e807]{color:#f37b1d}.text-yellow[data-v-cd70e807],.line-yellow[data-v-cd70e807],.lines-yellow[data-v-cd70e807]{color:#fbbd08}.text-olive[data-v-cd70e807],.line-olive[data-v-cd70e807],.lines-olive[data-v-cd70e807]{color:#8dc63f}.text-green[data-v-cd70e807],.line-green[data-v-cd70e807],.lines-green[data-v-cd70e807]{color:#39b54a}.text-cyan[data-v-cd70e807],.line-cyan[data-v-cd70e807],.lines-cyan[data-v-cd70e807]{color:#1cbbb4}.text-blue[data-v-cd70e807],.line-blue[data-v-cd70e807],.lines-blue[data-v-cd70e807]{color:#0081ff}.text-purple[data-v-cd70e807],.line-purple[data-v-cd70e807],.lines-purple[data-v-cd70e807]{color:#6739b6}.text-mauve[data-v-cd70e807],.line-mauve[data-v-cd70e807],.lines-mauve[data-v-cd70e807]{color:#9c26b0}.text-pink[data-v-cd70e807],.line-pink[data-v-cd70e807],.lines-pink[data-v-cd70e807]{color:#e03997}.text-brown[data-v-cd70e807],.line-brown[data-v-cd70e807],.lines-brown[data-v-cd70e807]{color:#a5673f}.text-grey[data-v-cd70e807],.line-grey[data-v-cd70e807],.lines-grey[data-v-cd70e807]{color:#8799a3}.text-gray[data-v-cd70e807],.line-gray[data-v-cd70e807],.lines-gray[data-v-cd70e807]{color:#aaa}.text-black[data-v-cd70e807],.line-black[data-v-cd70e807],.lines-black[data-v-cd70e807]{color:#333}.text-white[data-v-cd70e807],.line-white[data-v-cd70e807],.lines-white[data-v-cd70e807]{color:#fff}.zy-upgrade-topbg-green[data-v-cd70e807]{background-image:url(../../assets/green.20d5f80a.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-red[data-v-cd70e807]{background-image:url(../../assets/red.8267d3cf.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-pink[data-v-cd70e807]{background-image:url(../../assets/pink.78f243a3.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-yellow[data-v-cd70e807]{background-image:url(../../assets/yellow.4438648c.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-blue[data-v-cd70e807]{background-size:100% 100%;background-repeat:no-repeat}.zy-upgrade-title[data-v-cd70e807]{font-size:1.09375rem;font-weight:600}.all[data-v-8b11c490]{margin-top:1.40625rem}.all .all-content[data-v-8b11c490]{width:100%;height:40.625rem}.all[data-v-842c1160]{margin-top:1.40625rem}.all .all-content[data-v-842c1160]{width:100%;height:40.625rem}.captcha-container[data-v-ca7ea5fb]{-webkit-user-select:none;user-select:none;background-color:#fff;width:18.75rem;height:21.875rem;margin:0 auto;border-radius:.9375rem;overflow:hidden;padding:0 .9375rem}.captcha-image[data-v-ca7ea5fb]{position:relative;overflow:hidden}.bg-image[data-v-ca7ea5fb]{position:relative;z-index:1;display:block;width:100%;height:100%}.overlay[data-v-ca7ea5fb]{position:absolute;top:0;left:0;width:100%;height:100%;z-index:100;pointer-events:none}.hole[data-v-ca7ea5fb],.piece[data-v-ca7ea5fb]{position:absolute;z-index:101;box-shadow:0 0 .1875rem rgba(0,0,0,.4)}.hole[data-v-ca7ea5fb]{background-color:rgba(0,0,0,.3)}.piece[data-v-ca7ea5fb]{background-repeat:no-repeat;background-size:cover;cursor:grab}.slider-bar[data-v-ca7ea5fb]{position:relative;height:3.125rem;margin-top:0;background:#f5f6fc;width:16.875rem;display:flex;justify-content:center;align-items:center}.slider-bar .slider-bar-font[data-v-ca7ea5fb]{color:#a9a9ab;font-size:.875rem}.slider-button[data-v-ca7ea5fb]{position:absolute;top:0;left:0;width:3.125rem;height:3.125rem;background:#fff;box-shadow:0 0 .625rem rgba(0,0,0,.2);-webkit-user-select:none;user-select:none;border-radius:.3125rem;border:.09375rem solid #8bdaca;display:flex;justify-content:center;align-items:center}.font-title[data-v-ca7ea5fb]{width:100%;display:flex;justify-content:center;align-items:center;height:3.125rem;font-size:1.09375rem;font-weight:700}.backgroundContainer[data-v-b090754f]{display:flex;position:relative;width:100%;height:100vh;background-color:#eff0f4;overflow:hidden;justify-content:center;align-items:center;flex-direction:column}.backgroundContainer .title-img[data-v-b090754f]{width:4.6875rem;height:6.25rem;margin-bottom:4.0625rem}.backgroundContainer .input-father[data-v-b090754f]{height:2.8125rem;width:17.1875rem;background-color:#fff;border-radius:.9375rem;margin-bottom:.625rem;display:flex;align-items:center;position:relative}.backgroundContainer .input-father .input-code[data-v-b090754f]{position:absolute;top:0;right:.625rem;width:4.6875rem;height:2.8125rem}.backgroundContainer .input-father-blue[data-v-b090754f]{margin-top:3.125rem;height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.backgroundContainer .input-father-gray[data-v-b090754f]{margin-top:3.125rem;height:2.8125rem;width:17.1875rem;background:#949aa3;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.under-container-title[data-v-b090754f]{display:flex;margin-top:2.5rem;align-items:center;font-size:.78125rem;font-weight:500}.under-container-title .radio-circle-blue[data-v-b090754f]{color:#0083ff;margin-top:.09375rem}.under-container-title .radio-circle-font[data-v-b090754f]{color:#5a607f;margin-top:.09375rem}.under-container-title .radio-circle[data-v-b090754f],.under-container-title .radio-circle-target[data-v-b090754f]{position:relative;margin-top:.0625rem;width:1.25rem;height:1.25rem;border-radius:50%;border:.0625rem solid #C0C5D9;background-color:transparent}.under-container-title .radio-circle-target[data-v-b090754f]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.9375rem;height:.9375rem;background-color:#00c9ff;border-radius:50%}.add[data-v-b090754f]{margin-left:1.5625rem;font-size:1rem}.shu[data-v-b090754f]{background-color:#d2d5d7;width:.0625rem;height:1.09375rem;margin:0 .625rem}.password[data-v-b090754f]{font-size:.84375rem;margin-left:.9375rem;width:100%;height:3.125rem}.popup-wrapper[data-v-b090754f]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:2;opacity:0;animation:fadeIn-b090754f .5s ease forwards}.popup-any[data-v-b090754f]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:999;opacity:0;animation:fadeIn-b090754f .5s ease forwards}@keyframes fadeIn-b090754f{0%{opacity:0}to{opacity:1}}.mask[data-v-b090754f]{position:absolute;top:0;right:0;bottom:0;left:0}.box-any[data-v-b090754f]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:31.25rem;height:46.875rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;padding:2.03125rem 1.25rem}.box-small[data-v-b090754f]{position:absolute;bottom:.625rem;left:50%;transform:translate(-50%);width:25rem;height:10.9375rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;align-items:center;padding:0 2.03125rem}.box-small .box-title[data-v-b090754f]{font-size:1.09375rem;margin:1.875rem 0}.box-small .font-father[data-v-b090754f]{line-height:1.5625rem}.box-small .text-blue[data-v-b090754f]{color:#0083ff}.box-change[data-v-b090754f]{position:absolute;top:60%;left:50%;transform:translate(-50%,-60%);width:25rem;height:21.875rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;align-items:center;padding:0 2.03125rem}.box-change .box-title[data-v-b090754f]{font-size:1.09375rem;margin:1.875rem 0;font-weight:600}.box-change .input-father[data-v-b090754f]{height:2.8125rem;width:17.1875rem;background-color:#f7f7fb;border-radius:.9375rem;margin-bottom:1.25rem;display:flex;align-items:center}.box[data-v-b090754f]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:25rem;height:34.375rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;align-items:center;padding:0 2.03125rem}.box .box-title[data-v-b090754f]{font-size:1.09375rem;margin:1.875rem 0}.box .font-father[data-v-b090754f]{line-height:1.5625rem}.box .text-blue[data-v-b090754f]{color:#0083ff}.box .gray-box-bgc[data-v-b090754f]{width:100%;height:7.8125rem;border:.0625rem solid #CFD5E4;background-color:#f2f4f7;color:#777;border-radius:.625rem;padding:.625rem}.blue-button[data-v-b090754f]{width:100%;height:2.8125rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;margin-top:1.5625rem;border-radius:.78125rem;font-size:1.09375rem;letter-spacing:.15625rem}.white-button[data-v-b090754f]{width:100%;height:2.8125rem;display:flex;justify-content:center;align-items:center;margin-top:.3125rem;border-radius:.78125rem;font-size:1.09375rem}.title-left[data-v-b090754f]{display:flex;align-items:center}.title-left .back-img[data-v-b090754f]{width:1.875rem;height:1.875rem;margin-right:.9375rem}.title-left .back-font[data-v-b090754f]{font-size:1.09375rem;font-weight:600}.bg-mask[data-v-b090754f]{position:fixed;top:0;left:0;width:100vw;height:100vh;background:rgba(0,0,0,.3);-webkit-backdrop-filter:blur(.15625rem);backdrop-filter:blur(.15625rem);z-index:998;display:flex;justify-content:center;align-items:center}
+.zy-modal[data-v-cd70e807]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1110;opacity:0;outline:0;text-align:center;transform:scale(1.185);-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:62.5rem;background:rgba(0,0,0,.6);transition:all .3s ease-in-out 0s;pointer-events:none}.zy-modal[data-v-cd70e807]:before{content:"\200b";display:inline-block;height:100%;vertical-align:middle}.zy-modal.show[data-v-cd70e807]{opacity:1;transition-duration:.3s;transform:scale(1);overflow-x:hidden;overflow-y:auto;pointer-events:auto}.zy-dialog[data-v-cd70e807]{position:relative;display:inline-block;vertical-align:middle;margin-left:auto;margin-right:auto;width:21.25rem;max-width:100%;background-color:#f8f8f8;border-radius:.3125rem;overflow:hidden}.zy-modal.bottom-modal[data-v-cd70e807]:before{vertical-align:bottom}.zy-modal.bottom-modal .zy-dialog[data-v-cd70e807]{width:100%;border-radius:0}.zy-modal.bottom-modal[data-v-cd70e807]{margin-bottom:-31.25rem}.zy-modal.bottom-modal.show[data-v-cd70e807]{margin-bottom:0}.zy-modal.drawer-modal[data-v-cd70e807]{transform:scale(1);display:flex}.zy-modal.drawer-modal .zy-dialog[data-v-cd70e807]{height:100%;min-width:6.25rem;border-radius:0;margin:initial;transition-duration:.3s}.zy-modal.drawer-modal.justify-start .zy-dialog[data-v-cd70e807]{transform:translate(-100%)}.zy-modal.drawer-modal.justify-end .zy-dialog[data-v-cd70e807]{transform:translate(100%)}.zy-modal.drawer-modal.show .zy-dialog[data-v-cd70e807]{transform:translate(0)}.zy-modal .zy-dialog>.zy-bar:first-child .action[data-v-cd70e807]{min-width:3.125rem;margin-right:0;min-height:3.125rem}.zy-progress[data-v-cd70e807]{overflow:hidden;height:.875rem;background-color:#ebeef5;display:inline-flex;align-items:center;width:100%}.zy-progress+uni-view[data-v-cd70e807],.zy-progress+uni-text[data-v-cd70e807]{line-height:1}.zy-progress.xs[data-v-cd70e807]{height:.3125rem}.zy-progress.sm[data-v-cd70e807]{height:.625rem}.zy-progress uni-view[data-v-cd70e807]{width:0;height:100%;align-items:center;display:flex;justify-items:flex-end;justify-content:space-around;font-size:.625rem;color:#fff;transition:width .6s ease}.zy-progress uni-text[data-v-cd70e807]{align-items:center;display:flex;font-size:.625rem;color:#333;text-indent:.3125rem}.zy-progress.text-progress[data-v-cd70e807]{padding-right:1.875rem}.zy-progress.striped uni-view[data-v-cd70e807]{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:2.25rem 2.25rem}.zy-progress.active uni-view[data-v-cd70e807]{animation:progress-stripes-cd70e807 2s linear infinite}@keyframes progress-stripes-cd70e807{0%{background-position:2.25rem 0}to{background-position:0 0}}.zy-btn[data-v-cd70e807]{height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.zy-btn[data-v-cd70e807]:after{display:none}.zy-btn[data-v-cd70e807]:not([class*=bg-]){background-color:#f0f0f0}.zy-btn[class*=line][data-v-cd70e807]{background-color:transparent}.zy-btn[class*=line][data-v-cd70e807]:after{content:" ";display:block;width:200%;height:200%;position:absolute;top:0;left:0;border:.03125rem solid currentColor;transform:scale(.5);transform-origin:0 0;box-sizing:border-box;border-radius:.375rem;z-index:1;pointer-events:none}.zy-btn.round[class*=line][data-v-cd70e807]:after{border-radius:31.25rem}.zy-btn[class*=lines][data-v-cd70e807]:after{border:.1875rem solid currentColor}.zy-btn[class*=bg-][data-v-cd70e807]:after{display:none}.zy-btn.sm[data-v-cd70e807]{padding:0 .625rem;font-size:.625rem;height:1.5rem}.zy-btn.lg[data-v-cd70e807]{padding:0 1.25rem;font-size:1rem;height:2.5rem}.zy-btn.cuIcon.sm[data-v-cd70e807]{width:1.5rem;height:1.5rem}.zy-btn.cuIcon[data-v-cd70e807]{width:2rem;height:2rem;border-radius:15.625rem;padding:0}uni-button.cuIcon.lg[data-v-cd70e807]{width:2.5rem;height:2.5rem}.zy-btn.shadow-blur[data-v-cd70e807]:before{top:.125rem;left:.125rem;filter:blur(.1875rem);opacity:.6}.zy-btn.button-hover[data-v-cd70e807]{transform:translate(.03125rem,.03125rem)}.block[data-v-cd70e807]{display:block}.zy-btn.block[data-v-cd70e807]{display:flex}.zy-btn[disabled][data-v-cd70e807]{opacity:.6;color:#fff}.margin-0[data-v-cd70e807]{margin:0}.margin-xs[data-v-cd70e807]{margin:.3125rem}.margin-sm[data-v-cd70e807]{margin:.625rem}.margin[data-v-cd70e807]{margin:.9375rem}.margin-lg[data-v-cd70e807]{margin:1.25rem}.margin-xl[data-v-cd70e807]{margin:1.5625rem}.margin-top-xs[data-v-cd70e807]{margin-top:.3125rem}.margin-top-sm[data-v-cd70e807]{margin-top:.625rem}.margin-top[data-v-cd70e807]{margin-top:.9375rem}.margin-top-lg[data-v-cd70e807]{margin-top:1.25rem}.margin-top-xl[data-v-cd70e807]{margin-top:1.5625rem}.margin-right-xs[data-v-cd70e807]{margin-right:.3125rem}.margin-right-sm[data-v-cd70e807]{margin-right:.625rem}.margin-right[data-v-cd70e807]{margin-right:.9375rem}.margin-right-lg[data-v-cd70e807]{margin-right:1.25rem}.margin-right-xl[data-v-cd70e807]{margin-right:1.5625rem}.margin-bottom-xs[data-v-cd70e807]{margin-bottom:.3125rem}.margin-bottom-sm[data-v-cd70e807]{margin-bottom:.625rem}.margin-bottom[data-v-cd70e807]{margin-bottom:.9375rem}.margin-bottom-lg[data-v-cd70e807]{margin-bottom:1.25rem}.margin-bottom-xl[data-v-cd70e807]{margin-bottom:1.5625rem}.margin-left-xs[data-v-cd70e807]{margin-left:.3125rem}.margin-left-sm[data-v-cd70e807]{margin-left:.625rem}.margin-left[data-v-cd70e807]{margin-left:.9375rem}.margin-left-lg[data-v-cd70e807]{margin-left:1.25rem}.margin-left-xl[data-v-cd70e807]{margin-left:1.5625rem}.margin-lr-xs[data-v-cd70e807]{margin-left:.3125rem;margin-right:.3125rem}.margin-lr-sm[data-v-cd70e807]{margin-left:.625rem;margin-right:.625rem}.margin-lr[data-v-cd70e807]{margin-left:.9375rem;margin-right:.9375rem}.margin-lr-lg[data-v-cd70e807]{margin-left:1.25rem;margin-right:1.25rem}.margin-lr-xl[data-v-cd70e807]{margin-left:1.5625rem;margin-right:1.5625rem}.margin-tb-xs[data-v-cd70e807]{margin-top:.3125rem;margin-bottom:.3125rem}.margin-tb-sm[data-v-cd70e807]{margin-top:.625rem;margin-bottom:.625rem}.margin-tb[data-v-cd70e807]{margin-top:.9375rem;margin-bottom:.9375rem}.margin-tb-lg[data-v-cd70e807]{margin-top:1.25rem;margin-bottom:1.25rem}.margin-tb-xl[data-v-cd70e807]{margin-top:1.5625rem;margin-bottom:1.5625rem}.padding-0[data-v-cd70e807]{padding:0}.padding-xs[data-v-cd70e807]{padding:.3125rem}.padding-sm[data-v-cd70e807]{padding:.625rem}.padding[data-v-cd70e807]{padding:.9375rem}.padding-lg[data-v-cd70e807]{padding:1.25rem}.padding-xl[data-v-cd70e807]{padding:1.5625rem}.padding-top-xs[data-v-cd70e807]{padding-top:.3125rem}.padding-top-sm[data-v-cd70e807]{padding-top:.625rem}.padding-top[data-v-cd70e807]{padding-top:.9375rem}.padding-top-lg[data-v-cd70e807]{padding-top:1.25rem}.padding-top-xl[data-v-cd70e807]{padding-top:1.5625rem}.padding-right-xs[data-v-cd70e807]{padding-right:.3125rem}.padding-right-sm[data-v-cd70e807]{padding-right:.625rem}.padding-right[data-v-cd70e807]{padding-right:.9375rem}.padding-right-lg[data-v-cd70e807]{padding-right:1.25rem}.padding-right-xl[data-v-cd70e807]{padding-right:1.5625rem}.padding-bottom-xs[data-v-cd70e807]{padding-bottom:.3125rem}.padding-bottom-sm[data-v-cd70e807]{padding-bottom:.625rem}.padding-bottom[data-v-cd70e807]{padding-bottom:.9375rem}.padding-bottom-lg[data-v-cd70e807]{padding-bottom:1.25rem}.padding-bottom-xl[data-v-cd70e807]{padding-bottom:1.5625rem}.padding-left-xs[data-v-cd70e807]{padding-left:.3125rem}.padding-left-sm[data-v-cd70e807]{padding-left:.625rem}.padding-left[data-v-cd70e807]{padding-left:.9375rem}.padding-left-lg[data-v-cd70e807]{padding-left:1.25rem}.padding-left-xl[data-v-cd70e807]{padding-left:1.5625rem}.padding-lr-xs[data-v-cd70e807]{padding-left:.3125rem;padding-right:.3125rem}.padding-lr-sm[data-v-cd70e807]{padding-left:.625rem;padding-right:.625rem}.padding-lr[data-v-cd70e807]{padding-left:.9375rem;padding-right:.9375rem}.padding-lr-lg[data-v-cd70e807]{padding-left:1.25rem;padding-right:1.25rem}.padding-lr-xl[data-v-cd70e807]{padding-left:1.5625rem;padding-right:1.5625rem}.padding-tb-xs[data-v-cd70e807]{padding-top:.3125rem;padding-bottom:.3125rem}.padding-tb-sm[data-v-cd70e807]{padding-top:.625rem;padding-bottom:.625rem}.padding-tb[data-v-cd70e807]{padding-top:.9375rem;padding-bottom:.9375rem}.padding-tb-lg[data-v-cd70e807]{padding-top:1.25rem;padding-bottom:1.25rem}.padding-tb-xl[data-v-cd70e807]{padding-top:1.5625rem;padding-bottom:1.5625rem}.zy-bar[data-v-cd70e807]{display:flex;position:relative;align-items:center;min-height:3.125rem;justify-content:space-between}.zy-bar .action[data-v-cd70e807]{display:flex;align-items:center;height:100%;justify-content:center;max-width:100%}.zy-bar .action.border-title[data-v-cd70e807]{position:relative;top:-.3125rem}.zy-bar .action.border-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;bottom:-.5rem;min-width:2rem;height:.1875rem;left:0}.zy-bar .action.sub-title[data-v-cd70e807]{position:relative;top:-.2rem}.zy-bar .action.sub-title uni-text[data-v-cd70e807]{position:relative;z-index:1}.zy-bar .action.sub-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.2rem;border-radius:.1875rem;width:100%;height:.6rem;left:.6rem;opacity:.3;z-index:0}.zy-bar .action.sub-title uni-text[class*=text-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.7rem;left:.5rem;opacity:.2;z-index:0;text-align:right;font-weight:900;font-size:1.125rem}.zy-bar.justify-center .action.border-title uni-text[data-v-cd70e807]:last-child,.zy-bar.justify-center .action.sub-title uni-text[data-v-cd70e807]:last-child{left:0;right:0;margin:auto;text-align:center}.zy-bar .action[data-v-cd70e807]:first-child{margin-left:.9375rem;font-size:.9375rem}.zy-bar .action uni-text.text-cut[data-v-cd70e807]{text-align:left;width:100%}.zy-bar .zy-avatar[data-v-cd70e807]:first-child{margin-left:.625rem}.zy-bar .action:first-child>uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:-.3em;margin-right:.3em}.zy-bar .action[data-v-cd70e807]:last-child{margin-right:.9375rem}.zy-bar .action>uni-text[class*=cuIcon-][data-v-cd70e807],.zy-bar .action>uni-view[class*=cuIcon-][data-v-cd70e807]{font-size:1.125rem}.zy-bar .action>uni-text[class*=cuIcon-]+uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:.5em}.zy-bar .content[data-v-cd70e807]{position:absolute;text-align:center;width:calc(100% - 10.625rem);left:0;right:0;bottom:0;top:0;margin:auto;height:1.875rem;font-size:1rem;line-height:1.875rem;cursor:none;pointer-events:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.zy-bar.ios .content[data-v-cd70e807]{bottom:7px;height:30px;font-size:1rem;line-height:30px}.zy-bar.btn-group[data-v-cd70e807]{justify-content:space-around}.zy-bar.btn-group uni-button[data-v-cd70e807]{padding:.625rem 1rem}.zy-bar.btn-group uni-button[data-v-cd70e807]{flex:1;margin:0 .625rem;max-width:50%}.zy-bar .search-form[data-v-cd70e807]{background-color:#f5f5f5;line-height:2rem;height:2rem;font-size:.75rem;color:#333;flex:1;display:flex;align-items:center;margin:0 .9375rem}.zy-bar .search-form+.action[data-v-cd70e807]{margin-right:.9375rem}.zy-bar .search-form uni-input[data-v-cd70e807]{flex:1;padding-right:.9375rem;height:2rem;line-height:2rem;font-size:.8125rem;background-color:transparent}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]{margin:0 .5em 0 .8em}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]:before{top:0}.zy-bar.fixed[data-v-cd70e807],.nav.fixed[data-v-cd70e807]{position:fixed;width:100%;top:0;z-index:1024;box-shadow:0 .03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.foot[data-v-cd70e807]{position:fixed;width:100%;bottom:0;z-index:1024;box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar[data-v-cd70e807]{padding:0;height:calc(3.125rem + env(safe-area-inset-bottom)/2);padding-bottom:calc(env(safe-area-inset-bottom)/2)}.zy-tabbar-height[data-v-cd70e807]{min-height:3.125rem;height:calc(3.125rem + env(safe-area-inset-bottom)/2)}.zy-bar.tabbar.shadow[data-v-cd70e807]{box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar .action[data-v-cd70e807]{font-size:.6875rem;position:relative;flex:1;text-align:center;padding:0;display:block;height:auto;line-height:1;margin:0;background-color:inherit;overflow:initial}.zy-bar.tabbar.shop .action[data-v-cd70e807]{width:4.375rem;flex:initial}.zy-bar.tabbar .action.add-action[data-v-cd70e807]{position:relative;z-index:2;padding-top:1.5625rem}.zy-bar.tabbar .action.add-action [class*=cuIcon-][data-v-cd70e807]{position:absolute;width:2.1875rem;z-index:2;height:2.1875rem;border-radius:50%;line-height:2.1875rem;font-size:1.5625rem;top:-1.09375rem;left:0;right:0;margin:auto;padding:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:after{content:"";position:absolute;width:3.125rem;height:3.125rem;top:-1.5625rem;left:0;right:0;margin:auto;box-shadow:0 -.09375rem .25rem rgba(0,0,0,.08);border-radius:1.5625rem;background-color:inherit;z-index:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:before{content:"";position:absolute;width:3.125rem;height:.9375rem;bottom:.9375rem;left:0;right:0;margin:auto;background-color:inherit;z-index:1}.zy-bar.tabbar .btn-group[data-v-cd70e807]{flex:1;display:flex;justify-content:space-around;align-items:center;padding:0 .3125rem}.zy-bar.tabbar uni-button.action[data-v-cd70e807]:after{border:0}.zy-bar.tabbar .action [class*=cuIcon-][data-v-cd70e807]{width:3.125rem;position:relative;display:block;height:auto;margin:0 auto .3125rem;text-align:center;font-size:1.25rem}.zy-bar.tabbar .action .cuIcon-zy-image[data-v-cd70e807]{margin:0 auto}.zy-bar.tabbar .action .cuIcon-zy-image uni-image[data-v-cd70e807]{width:1.5625rem;height:1.5625rem;display:inline-block}.zy-bar.tabbar .submit[data-v-cd70e807]{align-items:center;display:flex;justify-content:center;text-align:center;position:relative;flex:2;align-self:stretch}.zy-bar.tabbar .submit[data-v-cd70e807]:last-child{flex:2.6}.zy-bar.tabbar .submit+.submit[data-v-cd70e807]{flex:2}.zy-bar.tabbar.border .action[data-v-cd70e807]:before{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;transform:scale(.5);transform-origin:0 0;border-right:.03125rem solid rgba(0,0,0,.1);z-index:3}.zy-bar.tabbar.border .action[data-v-cd70e807]:last-child:before{display:none}.zy-bar.input[data-v-cd70e807]{padding-right:.625rem;background-color:#fff}.zy-bar.input uni-input[data-v-cd70e807]{overflow:initial;line-height:2rem;height:2rem;min-height:2rem;flex:1;font-size:.9375rem;margin:0 .625rem}.zy-bar.input .action[data-v-cd70e807]{margin-left:.625rem}.zy-bar.input .action [class*=cuIcon-][data-v-cd70e807]{font-size:1.5rem}.zy-bar.input uni-input+.action[data-v-cd70e807]{margin-right:.625rem;margin-left:0}.zy-bar.input .action:first-child [class*=cuIcon-][data-v-cd70e807]{margin-left:0}.zy-custom[data-v-cd70e807]{display:block;position:relative}.zy-custom .zy-bar .content[data-v-cd70e807]{width:calc(100% - 13.75rem)}.zy-custom .zy-bar .content uni-image[data-v-cd70e807]{height:1.875rem;width:7.5rem}.zy-custom .zy-bar[data-v-cd70e807]{min-height:0px;box-shadow:0 0;z-index:9999}.zy-custom .zy-bar .border-custom[data-v-cd70e807]{position:relative;background:rgba(0,0,0,.15);border-radius:31.25rem;height:30px}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:after{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;border-radius:inherit;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:.03125rem solid #ffffff;opacity:.5}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:before{content:" ";width:.03125rem;height:110%;position:absolute;top:22.5%;left:0;right:0;margin:auto;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;opacity:.6;background-color:#fff}.zy-custom .zy-bar .border-custom uni-text[data-v-cd70e807]{display:block;flex:1;margin:auto!important;text-align:center;font-size:1.0625rem}.flex[data-v-cd70e807]{display:flex}.basis-xs[data-v-cd70e807]{flex-basis:20%}.basis-sm[data-v-cd70e807]{flex-basis:40%}.basis-df[data-v-cd70e807]{flex-basis:50%}.basis-lg[data-v-cd70e807]{flex-basis:60%}.basis-xl[data-v-cd70e807]{flex-basis:80%}.flex-sub[data-v-cd70e807]{flex:1}.flex-twice[data-v-cd70e807]{flex:2}.flex-treble[data-v-cd70e807]{flex:3}.flex-direction[data-v-cd70e807]{flex-direction:column}.flex-wrap[data-v-cd70e807]{flex-wrap:wrap}.align-start[data-v-cd70e807]{align-items:flex-start}.align-end[data-v-cd70e807]{align-items:flex-end}.align-center[data-v-cd70e807]{align-items:center}.self-start[data-v-cd70e807]{align-self:flex-start}.self-center[data-v-cd70e807]{align-self:flex-center}.self-end[data-v-cd70e807]{align-self:flex-end}.self-stretch[data-v-cd70e807]{align-self:stretch}.align-stretch[data-v-cd70e807]{align-items:stretch}.justify-start[data-v-cd70e807]{justify-content:flex-start}.justify-end[data-v-cd70e807]{justify-content:flex-end}.justify-center[data-v-cd70e807]{justify-content:center}.justify-between[data-v-cd70e807]{justify-content:space-between}.justify-around[data-v-cd70e807]{justify-content:space-around}.line-red[data-v-cd70e807]:after,.lines-red[data-v-cd70e807]:after{border-color:#e54d42}.line-orange[data-v-cd70e807]:after,.lines-orange[data-v-cd70e807]:after{border-color:#f37b1d}.line-yellow[data-v-cd70e807]:after,.lines-yellow[data-v-cd70e807]:after{border-color:#fbbd08}.line-olive[data-v-cd70e807]:after,.lines-olive[data-v-cd70e807]:after{border-color:#8dc63f}.line-green[data-v-cd70e807]:after,.lines-green[data-v-cd70e807]:after{border-color:#39b54a}.line-cyan[data-v-cd70e807]:after,.lines-cyan[data-v-cd70e807]:after{border-color:#1cbbb4}.line-blue[data-v-cd70e807]:after,.lines-blue[data-v-cd70e807]:after{border-color:#0081ff}.line-purple[data-v-cd70e807]:after,.lines-purple[data-v-cd70e807]:after{border-color:#6739b6}.line-mauve[data-v-cd70e807]:after,.lines-mauve[data-v-cd70e807]:after{border-color:#9c26b0}.line-pink[data-v-cd70e807]:after,.lines-pink[data-v-cd70e807]:after{border-color:#e03997}.line-brown[data-v-cd70e807]:after,.lines-brown[data-v-cd70e807]:after{border-color:#a5673f}.line-grey[data-v-cd70e807]:after,.lines-grey[data-v-cd70e807]:after{border-color:#8799a3}.line-gray[data-v-cd70e807]:after,.lines-gray[data-v-cd70e807]:after{border-color:#aaa}.line-black[data-v-cd70e807]:after,.lines-black[data-v-cd70e807]:after{border-color:#333}.line-white[data-v-cd70e807]:after,.lines-white[data-v-cd70e807]:after{border-color:#fff}.bg-red[data-v-cd70e807]{background-color:#e54d42;color:#fff}.bg-orange[data-v-cd70e807]{background-color:#f37b1d;color:#fff}.bg-yellow[data-v-cd70e807]{background-color:#fbbd08;color:#333}.bg-olive[data-v-cd70e807]{background-color:#8dc63f;color:#fff}.bg-green[data-v-cd70e807]{background-color:#39b54a;color:#fff}.bg-cyan[data-v-cd70e807]{background-color:#1cbbb4;color:#fff}.bg-blue[data-v-cd70e807]{background-color:#0081ff;color:#fff}.bg-purple[data-v-cd70e807]{background-color:#6739b6;color:#fff}.bg-mauve[data-v-cd70e807]{background-color:#9c26b0;color:#fff}.bg-pink[data-v-cd70e807]{background-color:#e03997;color:#fff}.bg-brown[data-v-cd70e807]{background-color:#a5673f;color:#fff}.bg-grey[data-v-cd70e807]{background-color:#8799a3;color:#fff}.bg-gray[data-v-cd70e807]{background-color:#f0f0f0;color:#333}.bg-black[data-v-cd70e807]{background-color:#333;color:#fff}.bg-white[data-v-cd70e807]{background-color:#fff;color:#666}.bg-shadeTop[data-v-cd70e807]{background-image:linear-gradient(#000,rgba(0,0,0,.01));color:#fff}.bg-shadeBottom[data-v-cd70e807]{background-image:linear-gradient(rgba(0,0,0,.01),#000);color:#fff}.bg-red.light[data-v-cd70e807]{color:#e54d42;background-color:#fadbd9}.bg-orange.light[data-v-cd70e807]{color:#f37b1d;background-color:#fde6d2}.bg-yellow.light[data-v-cd70e807]{color:#fbbd08;background-color:rgba(254,242,206,.824)}.bg-olive.light[data-v-cd70e807]{color:#8dc63f;background-color:#e8f4d9}.bg-green.light[data-v-cd70e807]{color:#39b54a;background-color:#d7f0db}.bg-cyan.light[data-v-cd70e807]{color:#1cbbb4;background-color:#d2f1f0}.bg-blue.light[data-v-cd70e807]{color:#0081ff;background-color:#cce6ff}.bg-purple.light[data-v-cd70e807]{color:#6739b6;background-color:#e1d7f0}.bg-mauve.light[data-v-cd70e807]{color:#9c26b0;background-color:#ebd4ef}.bg-pink.light[data-v-cd70e807]{color:#e03997;background-color:#f9d7ea}.bg-brown.light[data-v-cd70e807]{color:#a5673f;background-color:#ede1d9}.bg-grey.light[data-v-cd70e807]{color:#8799a3;background-color:#e7ebed}.bg-gradual-red[data-v-cd70e807]{background-image:linear-gradient(45deg,#f43f3b,#ec008c);color:#fff}.bg-gradual-orange[data-v-cd70e807]{background-image:linear-gradient(45deg,#ff9700,#ed1c24);color:#fff}.bg-gradual-green[data-v-cd70e807]{background-image:linear-gradient(45deg,#39b54a,#8dc63f);color:#fff}.bg-gradual-purple[data-v-cd70e807]{background-image:linear-gradient(45deg,#9000ff,#5e00ff);color:#fff}.bg-gradual-pink[data-v-cd70e807]{background-image:linear-gradient(45deg,#ec008c,#6739b6);color:#fff}.bg-gradual-blue[data-v-cd70e807]{background-image:linear-gradient(45deg,#0081ff,#1cbbb4);color:#fff}.shadow[class*=-red][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.shadow[class*=-orange][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.shadow[class*=-yellow][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.shadow[class*=-olive][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.shadow[class*=-green][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.shadow[class*=-cyan][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.shadow[class*=-blue][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.shadow[class*=-purple][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.shadow[class*=-mauve][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.shadow[class*=-pink][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.shadow[class*=-brown][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.shadow[class*=-grey][data-v-cd70e807],.shadow[class*=-gray][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.shadow[class*=-black][data-v-cd70e807],.shadow[class*=-white][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.text-shadow[class*=-red][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.text-shadow[class*=-orange][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.text-shadow[class*=-yellow][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.text-shadow[class*=-olive][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.text-shadow[class*=-green][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.text-shadow[class*=-cyan][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.text-shadow[class*=-blue][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.text-shadow[class*=-purple][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.text-shadow[class*=-mauve][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.text-shadow[class*=-pink][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.text-shadow[class*=-brown][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.text-shadow[class*=-grey][data-v-cd70e807],.text-shadow[class*=-gray][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.text-shadow[class*=-black][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.bg-img[data-v-cd70e807]{background-size:cover;background-position:center;background-repeat:no-repeat}.bg-mask[data-v-cd70e807]{background-color:#333;position:relative}.bg-mask[data-v-cd70e807]:after{content:"";border-radius:inherit;width:100%;height:100%;display:block;background-color:rgba(0,0,0,.4);position:absolute;left:0;right:0;bottom:0;top:0}.bg-mask uni-view[data-v-cd70e807],.bg-mask uni-cover-view[data-v-cd70e807]{z-index:5;position:relative}.bg-video[data-v-cd70e807]{position:relative}.bg-video uni-video[data-v-cd70e807]{display:block;height:100%;width:100%;object-fit:cover;position:absolute;top:0;z-index:0;pointer-events:none}.text-xs[data-v-cd70e807]{font-size:.625rem}.text-sm[data-v-cd70e807]{font-size:.75rem}.text-df[data-v-cd70e807]{font-size:.875rem}.text-lg[data-v-cd70e807]{font-size:1rem}.text-xl[data-v-cd70e807]{font-size:1.125rem}.text-xxl[data-v-cd70e807]{font-size:1.375rem}.text-sl[data-v-cd70e807]{font-size:2.5rem}.text-xsl[data-v-cd70e807]{font-size:3.75rem}.text-Abc[data-v-cd70e807]{text-transform:Capitalize}.text-ABC[data-v-cd70e807]{text-transform:Uppercase}.text-abc[data-v-cd70e807]{text-transform:Lowercase}.text-price[data-v-cd70e807]:before{content:"\a5";font-size:80%;margin-right:.125rem}.text-cut[data-v-cd70e807]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.text-bold[data-v-cd70e807]{font-weight:700}.text-center[data-v-cd70e807]{text-align:center}.text-content[data-v-cd70e807]{line-height:1.6}.text-left[data-v-cd70e807]{text-align:left}.text-right[data-v-cd70e807]{text-align:right}.text-red[data-v-cd70e807],.line-red[data-v-cd70e807],.lines-red[data-v-cd70e807]{color:#e54d42}.text-orange[data-v-cd70e807],.line-orange[data-v-cd70e807],.lines-orange[data-v-cd70e807]{color:#f37b1d}.text-yellow[data-v-cd70e807],.line-yellow[data-v-cd70e807],.lines-yellow[data-v-cd70e807]{color:#fbbd08}.text-olive[data-v-cd70e807],.line-olive[data-v-cd70e807],.lines-olive[data-v-cd70e807]{color:#8dc63f}.text-green[data-v-cd70e807],.line-green[data-v-cd70e807],.lines-green[data-v-cd70e807]{color:#39b54a}.text-cyan[data-v-cd70e807],.line-cyan[data-v-cd70e807],.lines-cyan[data-v-cd70e807]{color:#1cbbb4}.text-blue[data-v-cd70e807],.line-blue[data-v-cd70e807],.lines-blue[data-v-cd70e807]{color:#0081ff}.text-purple[data-v-cd70e807],.line-purple[data-v-cd70e807],.lines-purple[data-v-cd70e807]{color:#6739b6}.text-mauve[data-v-cd70e807],.line-mauve[data-v-cd70e807],.lines-mauve[data-v-cd70e807]{color:#9c26b0}.text-pink[data-v-cd70e807],.line-pink[data-v-cd70e807],.lines-pink[data-v-cd70e807]{color:#e03997}.text-brown[data-v-cd70e807],.line-brown[data-v-cd70e807],.lines-brown[data-v-cd70e807]{color:#a5673f}.text-grey[data-v-cd70e807],.line-grey[data-v-cd70e807],.lines-grey[data-v-cd70e807]{color:#8799a3}.text-gray[data-v-cd70e807],.line-gray[data-v-cd70e807],.lines-gray[data-v-cd70e807]{color:#aaa}.text-black[data-v-cd70e807],.line-black[data-v-cd70e807],.lines-black[data-v-cd70e807]{color:#333}.text-white[data-v-cd70e807],.line-white[data-v-cd70e807],.lines-white[data-v-cd70e807]{color:#fff}.zy-upgrade-topbg-green[data-v-cd70e807]{background-image:url(../../assets/green.20d5f80a.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-red[data-v-cd70e807]{background-image:url(../../assets/red.8267d3cf.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-pink[data-v-cd70e807]{background-image:url(../../assets/pink.78f243a3.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-yellow[data-v-cd70e807]{background-image:url(../../assets/yellow.4438648c.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-blue[data-v-cd70e807]{background-size:100% 100%;background-repeat:no-repeat}.zy-upgrade-title[data-v-cd70e807]{font-size:1.09375rem;font-weight:600}.all[data-v-8b11c490]{margin-top:1.40625rem}.all .all-content[data-v-8b11c490]{width:100%;height:40.625rem}.all[data-v-842c1160]{margin-top:1.40625rem}.all .all-content[data-v-842c1160]{width:100%;height:40.625rem}.captcha-container[data-v-ca7ea5fb]{-webkit-user-select:none;user-select:none;background-color:#fff;width:18.75rem;height:21.875rem;margin:0 auto;border-radius:.9375rem;overflow:hidden;padding:0 .9375rem}.captcha-image[data-v-ca7ea5fb]{position:relative;overflow:hidden}.bg-image[data-v-ca7ea5fb]{position:relative;z-index:1;display:block;width:100%;height:100%}.overlay[data-v-ca7ea5fb]{position:absolute;top:0;left:0;width:100%;height:100%;z-index:100;pointer-events:none}.hole[data-v-ca7ea5fb],.piece[data-v-ca7ea5fb]{position:absolute;z-index:101;box-shadow:0 0 .1875rem rgba(0,0,0,.4)}.hole[data-v-ca7ea5fb]{background-color:rgba(0,0,0,.3)}.piece[data-v-ca7ea5fb]{background-repeat:no-repeat;background-size:cover;cursor:grab}.slider-bar[data-v-ca7ea5fb]{position:relative;height:3.125rem;margin-top:0;background:#f5f6fc;width:16.875rem;display:flex;justify-content:center;align-items:center}.slider-bar .slider-bar-font[data-v-ca7ea5fb]{color:#a9a9ab;font-size:.875rem}.slider-button[data-v-ca7ea5fb]{position:absolute;top:0;left:0;width:3.125rem;height:3.125rem;background:#fff;box-shadow:0 0 .625rem rgba(0,0,0,.2);-webkit-user-select:none;user-select:none;border-radius:.3125rem;border:.09375rem solid #8bdaca;display:flex;justify-content:center;align-items:center}.font-title[data-v-ca7ea5fb]{width:100%;display:flex;justify-content:center;align-items:center;height:3.125rem;font-size:1.09375rem;font-weight:700}.backgroundContainer[data-v-e979d453]{display:flex;position:relative;width:100%;height:100vh;background-color:#eff0f4;overflow:hidden;justify-content:center;align-items:center;flex-direction:column}.backgroundContainer .title-img[data-v-e979d453]{width:4.6875rem;height:6.25rem;margin-bottom:4.0625rem}.backgroundContainer .input-father[data-v-e979d453]{height:2.8125rem;width:17.1875rem;background-color:#fff;border-radius:.9375rem;margin-bottom:.625rem;display:flex;align-items:center;position:relative}.backgroundContainer .input-father .input-code[data-v-e979d453]{position:absolute;top:0;right:.625rem;width:4.6875rem;height:2.8125rem}.backgroundContainer .input-father-blue[data-v-e979d453]{margin-top:3.125rem;height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.backgroundContainer .input-father-gray[data-v-e979d453]{margin-top:3.125rem;height:2.8125rem;width:17.1875rem;background:#949aa3;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.under-container-title[data-v-e979d453]{display:flex;margin-top:2.5rem;align-items:center;font-size:.78125rem;font-weight:500}.under-container-title .radio-circle-blue[data-v-e979d453]{color:#0083ff;margin-top:.09375rem}.under-container-title .radio-circle-font[data-v-e979d453]{color:#5a607f;margin-top:.09375rem}.under-container-title .radio-circle[data-v-e979d453],.under-container-title .radio-circle-target[data-v-e979d453]{position:relative;margin-top:.0625rem;width:1.25rem;height:1.25rem;border-radius:50%;border:.0625rem solid #C0C5D9;background-color:transparent}.under-container-title .radio-circle-target[data-v-e979d453]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.9375rem;height:.9375rem;background-color:#00c9ff;border-radius:50%}.add[data-v-e979d453]{margin-left:1.5625rem;font-size:1rem}.shu[data-v-e979d453]{background-color:#d2d5d7;width:.0625rem;height:1.09375rem;margin:0 .625rem}.password[data-v-e979d453]{font-size:.84375rem;margin-left:.9375rem;width:100%;height:3.125rem}.popup-wrapper[data-v-e979d453]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:2;opacity:0;animation:fadeIn-e979d453 .5s ease forwards}.popup-any[data-v-e979d453]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:999;opacity:0;animation:fadeIn-e979d453 .5s ease forwards}@keyframes fadeIn-e979d453{0%{opacity:0}to{opacity:1}}.mask[data-v-e979d453]{position:absolute;top:0;right:0;bottom:0;left:0}.box-any[data-v-e979d453]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:31.25rem;height:46.875rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;padding:2.03125rem 1.25rem}.box-small[data-v-e979d453]{position:absolute;bottom:.625rem;left:50%;transform:translate(-50%);width:25rem;height:10.9375rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;align-items:center;padding:0 2.03125rem}.box-small .box-title[data-v-e979d453]{font-size:1.09375rem;margin:1.875rem 0}.box-small .font-father[data-v-e979d453]{line-height:1.5625rem}.box-small .text-blue[data-v-e979d453]{color:#0083ff}.box-change[data-v-e979d453]{position:absolute;top:60%;left:50%;transform:translate(-50%,-60%);width:25rem;height:21.875rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;align-items:center;padding:0 2.03125rem}.box-change .box-title[data-v-e979d453]{font-size:1.09375rem;margin:1.875rem 0;font-weight:600}.box-change .input-father[data-v-e979d453]{height:2.8125rem;width:17.1875rem;background-color:#f7f7fb;border-radius:.9375rem;margin-bottom:1.25rem;display:flex;align-items:center}.box[data-v-e979d453]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:25rem;height:34.375rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;align-items:center;padding:0 2.03125rem}.box .box-title[data-v-e979d453]{font-size:1.09375rem;margin:1.875rem 0}.box .font-father[data-v-e979d453]{line-height:1.5625rem}.box .text-blue[data-v-e979d453]{color:#0083ff}.box .gray-box-bgc[data-v-e979d453]{width:100%;height:7.8125rem;border:.0625rem solid #CFD5E4;background-color:#f2f4f7;color:#777;border-radius:.625rem;padding:.625rem}.blue-button[data-v-e979d453]{width:100%;height:2.8125rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;margin-top:1.5625rem;border-radius:.78125rem;font-size:1.09375rem;letter-spacing:.15625rem}.white-button[data-v-e979d453]{width:100%;height:2.8125rem;display:flex;justify-content:center;align-items:center;margin-top:.3125rem;border-radius:.78125rem;font-size:1.09375rem}.title-left[data-v-e979d453]{display:flex;align-items:center}.title-left .back-img[data-v-e979d453]{width:1.875rem;height:1.875rem;margin-right:.9375rem}.title-left .back-font[data-v-e979d453]{font-size:1.09375rem;font-weight:600}.bg-mask[data-v-e979d453]{position:fixed;top:0;left:0;width:100vw;height:100vh;background:rgba(0,0,0,.3);-webkit-backdrop-filter:blur(.15625rem);backdrop-filter:blur(.15625rem);z-index:998;display:flex;justify-content:center;align-items:center}
diff --git a/unpackage/resources/__UNI__FB2D473/www/pages/option.js b/unpackage/resources/__UNI__FB2D473/www/pages/option.js
deleted file mode 100644
index f41cfa1..0000000
--- a/unpackage/resources/__UNI__FB2D473/www/pages/option.js
+++ /dev/null
@@ -1,32 +0,0 @@
-"use weex:vue";
-
-if (typeof Promise !== 'undefined' && !Promise.prototype.finally) {
- Promise.prototype.finally = function(callback) {
- const promise = this.constructor
- return this.then(
- value => promise.resolve(callback()).then(() => value),
- reason => promise.resolve(callback()).then(() => {
- throw reason
- })
- )
- }
-};
-
-if (typeof uni !== 'undefined' && uni && uni.requireGlobal) {
- const global = uni.requireGlobal()
- ArrayBuffer = global.ArrayBuffer
- Int8Array = global.Int8Array
- Uint8Array = global.Uint8Array
- Uint8ClampedArray = global.Uint8ClampedArray
- Int16Array = global.Int16Array
- Uint16Array = global.Uint16Array
- Int32Array = global.Int32Array
- Uint32Array = global.Uint32Array
- Float32Array = global.Float32Array
- Float64Array = global.Float64Array
- BigInt64Array = global.BigInt64Array
- BigUint64Array = global.BigUint64Array
-};
-
-
-(()=>{var d=Object.create;var c=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var y=Object.getOwnPropertyNames;var g=Object.getPrototypeOf,w=Object.prototype.hasOwnProperty;var v=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var b=(e,t,o,s)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of y(t))!w.call(e,n)&&n!==o&&c(e,n,{get:()=>t[n],enumerable:!(s=f(t,n))||s.enumerable});return e};var h=(e,t,o)=>(o=e!=null?d(g(e)):{},b(t||!e||!e.__esModule?c(o,"default",{value:e,enumerable:!0}):o,e));var i=v((S,a)=>{a.exports=Vue});var r=h(i());var u=(e,t)=>{let o=e.__vccOpts||e;for(let[s,n]of t)o[s]=n;return o};var x={"center-column":{"":{width:170,height:170,borderRadius:80}}},V={data(){return{}},onLoad(){},methods:{}};function C(e,t,o,s,n,$){let _=(0,r.resolveComponent)("MonitorControlView");return(0,r.openBlock)(),(0,r.createElementBlock)("scroll-view",{scrollY:!0,showScrollbar:!0,enableBackToTop:!0,bubble:"true",style:{flexDirection:"column"}},[(0,r.createElementVNode)("div",{class:"center-column",onClick:t[0]||(t[0]=(...m)=>e.jumptonve&&e.jumptonve(...m))},[(0,r.createVNode)(_,{ref:"monitor",init:"5",style:{width:"170px",height:"170px"}},null,512)])])}var p=u(V,[["render",C],["styles",[x]]]);var l=plus.webview.currentWebview();if(l){let e=parseInt(l.id),t="pages/option",o={};try{o=JSON.parse(l.__query__)}catch(n){}p.mpType="page";let s=Vue.createPageApp(p,{$store:getApp({allowDefault:!0}).$store,__pageId:e,__pagePath:t,__pageQuery:o});s.provide("__globalStyles",Vue.useCssStyles([...__uniConfig.styles,...p.styles||[]])),s.mount("#root")}})();
diff --git a/unpackage/resources/__UNI__FB2D473/www/pages/watch/index.css b/unpackage/resources/__UNI__FB2D473/www/pages/watch/index.css
index 469a6ef..164c973 100644
--- a/unpackage/resources/__UNI__FB2D473/www/pages/watch/index.css
+++ b/unpackage/resources/__UNI__FB2D473/www/pages/watch/index.css
@@ -1 +1 @@
-.drawer[data-v-363bab7d]{position:fixed;bottom:0;right:0;height:85vh;background:#eff0f4;z-index:1000;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;transform:translate(100%);transition:transform .4s ease}.drawer-open[data-v-363bab7d]{transform:translate(0)}.drawer-content[data-v-363bab7d]{position:relative;width:100%;height:100%}.drawer-content-circle[data-v-363bab7d]{position:absolute;bottom:7.5rem;left:-1.875rem;width:4.6875rem;height:5rem;border-radius:50%;z-index:-1;background:linear-gradient(to right,#fff 0,#eff0f4 1.875rem,#eff0f4);display:flex;align-items:center;-webkit-clip-path:inset(0 60% 0 0);clip-path:inset(0 60% 0 0)}.drawer-img[data-v-363bab7d]{width:.625rem;height:.625rem;margin-left:.78125rem}.target[data-v-363bab7d]{--color: #99C9FD;--thick: 2px;--radius: 4.6875rem;--outline-offset: .15625rem;border-radius:var(--radius);background-color:#ddf0ff;animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);z-index:1}.pulse[data-v-363bab7d]{--scale: 1.2;--dur: .8s;animation:pulse-363bab7d var(--dur) ease-in-out infinite;transform-origin:center center;will-change:transform}@keyframes pulse-363bab7d{0%{transform:scale(1)}50%{transform:scale(var(--scale))}to{transform:scale(1)}}.draw-all[data-v-d630a1ae]{width:100%;height:100%;background-color:#eff0f4;overflow:hidden;position:relative}.carmera[data-v-d630a1ae]{position:absolute;right:0;bottom:7.8125rem;height:18.75rem;width:6.25rem;z-index:1}.roll[data-v-d630a1ae]{position:absolute;right:0;bottom:0;height:40.625rem;width:20.3125rem}.compass-container[data-v-d630a1ae]{width:380px;height:380px;border-radius:50%;position:absolute;right:-65%;transform:translateY(-60%);bottom:8.4375rem;margin:auto;touch-action:none;z-index:9999}.compass-item[data-v-d630a1ae]{position:absolute;top:50%;left:50%;width:100px;height:100px;margin:-50px 0 0 -50px;display:flex;align-items:center;justify-content:center}.item-label[data-v-d630a1ae]{font-size:.78125rem;width:4.0625rem;height:4.0625rem;border-radius:50%;display:flex;justify-content:center;align-items:center;background:linear-gradient(to bottom,#e6e7ed,#f4f5f7);border:.0625rem solid #fff;position:relative}.item-label-target[data-v-d630a1ae]{font-size:.78125rem;width:4.0625rem;height:4.0625rem;border-radius:50%;display:flex;justify-content:center;align-items:center;background:linear-gradient(to bottom,#e6e7ed,#f4f5f7);position:relative}.item-label-second[data-v-d630a1ae]{font-size:.78125rem;width:4.0625rem;height:4.0625rem;border-radius:50%;display:flex;justify-content:center;align-items:center;position:relative}.all-size[data-v-d630a1ae]{width:100%;height:100%}.targetimge[data-v-d630a1ae]{width:4.6875rem;height:4.0625rem;position:absolute;right:0;top:0;z-index:1;transition:opacity .8s ease}.compass-container.second[data-v-d630a1ae]{width:480px;height:480px;border-radius:50%;position:absolute;right:-75%;transform:translateY(-70%);bottom:5.375rem;margin:auto;touch-action:none;z-index:1}.gesture-mask[data-v-d630a1ae]{position:fixed;left:0;top:0;right:0;bottom:0;z-index:9999;background:transparent}.pulse[data-v-d630a1ae]{--scale: 1.5;--dur: 1.1s;animation:pulse-d630a1ae var(--dur) ease-in-out infinite;transform-origin:center center;will-change:transform}@keyframes pulse-d630a1ae{0%{transform:scale(1)}50%{transform:scale(var(--scale))}to{transform:scale(1)}}.targetbutton[data-v-d630a1ae]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: -.3125rem;border-radius:var(--radius);animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:1}.view[data-v-ea21c8e9]{background-color:#eff0f4;width:100%;height:100vh;display:flex}.view .view-left[data-v-ea21c8e9]{height:100%;width:23%}.view .view-left .title-father[data-v-ea21c8e9]{padding-top:3.75rem;padding-bottom:1.5625rem;padding-left:1.875rem;display:flex}.view .view-left .title-father .title-img[data-v-ea21c8e9]{width:1.71875rem;height:1.71875rem;margin-right:.625rem}.view .view-left .title-father .title-font[data-v-ea21c8e9]{font-size:1.25rem;font-weight:800}.view .view-left .menus-father[data-v-ea21c8e9]{width:100%;height:25rem}.view .view-left .menus-father .menu[data-v-ea21c8e9]{margin:1.40625rem 0 1.40625rem .9375rem;height:3.4375rem;width:9.375rem;border-radius:1.875rem;overflow:hidden;display:flex;align-items:center}.view .view-left .menus-father .menu .menu-img[data-v-ea21c8e9]{width:2.03125rem;height:2.03125rem;margin-left:.78125rem;display:flex;justify-content:center;align-items:center;border-radius:50%}.view .view-right[data-v-ea21c8e9]{height:100%;width:90%;position:relative}.view .view-right .right-container-title-nav[data-v-ea21c8e9]{margin-top:1.875rem;display:flex;align-items:center;height:1.875rem;position:relative;font-size:.875rem}.view .view-right .right-container-title-nav .right-icons-img[data-v-ea21c8e9]{width:1.875rem;height:1.875rem;margin-left:.625rem;margin-right:.625rem}.view .view-right .scroll-vi[data-v-ea21c8e9]{height:3.125rem;width:100%;margin-left:0;margin-top:3.125rem;position:relative;display:flex}.view .view-right .scroll-vi .menu[data-v-ea21c8e9]{flex:0 0 auto;height:2.8125rem;width:7.5rem;border-radius:1.5625rem;margin-left:.625rem;background-color:#fff;display:flex;justify-content:center;align-items:center;padding-top:.28125rem}.view .view-right .scroll-vi .menu .menu-img[data-v-ea21c8e9]{width:1.71875rem;height:1.71875rem;margin-right:.46875rem}.view .view-right .scroll-vi .menu .menu-font[data-v-ea21c8e9]{margin-top:.5625rem;font-size:.78125rem}.right-container-tem[data-v-ea21c8e9]{display:flex}.right-container-tem .right-container-tem-text[data-v-ea21c8e9]{font-size:1rem;margin-right:.625rem}.right-container-tem .right-container-tem-img[data-v-ea21c8e9]{width:1.1875rem;height:1.1875rem}.new-weight[data-v-ea21c8e9]{margin:1.25rem .9375rem 0;font-size:1rem}.big-bgc[data-v-ea21c8e9]{margin-top:.9375rem;width:39.0625rem;height:28.53125rem;border-radius:1.5625rem;overflow:hidden;display:flex;justify-content:center;align-items:center;position:relative}.small-bgc[data-v-ea21c8e9]{width:9.3125rem;height:6.875rem;border-radius:.78125rem;overflow:hidden;display:flex;justify-content:center;align-items:center;position:relative}.card-father[data-v-ea21c8e9]{margin-right:.625rem}.card-father .up-title[data-v-ea21c8e9]{display:flex;justify-content:space-between;align-items:center;margin:.3125rem 0 .3125rem .625rem;font-size:.9375rem}@keyframes glowFlash-ea21c8e9{0%,to{box-shadow:0 0 .125rem #f1d7da,0 0 .25rem #f1d7da,0 0 .375rem #f1d7da}50%{box-shadow:0 0 .3125rem #f1d7da,0 0 .625rem #f1d7da,0 0 .9375rem #f1d7da}}.right-right[data-v-ea21c8e9]{position:absolute;right:-.625rem;top:7.1875rem;height:calc(100% - 7.8125rem);width:20.3125rem}.right-right .red-kuang[data-v-ea21c8e9]{margin-top:0;margin-left:1.5625rem;width:17.1875rem;height:5.9375rem;border-radius:1.5625rem;position:relative;display:flex;align-items:center;background-color:rgba(226,227,231,.5)}.right-right .red-kuang .blue-bgc[data-v-ea21c8e9]{width:4.375rem;height:1.875rem;display:flex;justify-content:center;align-items:center;z-index:1;font-size:.8125rem;background-color:rgba(248,249,250,.5);color:#017de9;border-radius:.625rem;margin-left:.3125rem}.right-right .red-kuang .font-weight[data-v-ea21c8e9]{font-size:1rem;font-weight:600}.right-right .red-kuang .font-small[data-v-ea21c8e9]{font-size:.9375rem}.states-father[data-v-ea21c8e9]{display:flex;margin-top:.9375rem;margin-left:1.5625rem;width:100%}.states-father .states[data-v-ea21c8e9]{width:5.3125rem;margin-right:.46875rem;height:2.5rem;border-radius:1.875rem;background-color:rgba(226,227,231,.5);display:flex;justify-content:center;align-items:center}.states-father .phone-number[data-v-ea21c8e9]{width:100%;height:2.5rem;display:flex;align-items:center;position:relative}.big-view[data-v-ea21c8e9]{margin-left:1.5625rem;margin-top:.9375rem;width:17.1875rem;height:19.53125rem;border-radius:1.5625rem;background-color:rgba(226,227,231,.5);position:relative;display:flex;flex-direction:column;align-items:center;overflow:hidden}.big-view .font-weight[data-v-ea21c8e9]{font-size:1.5625rem;margin-top:1.40625rem;font-weight:600}.big-view .pao[data-v-ea21c8e9]{position:absolute;right:1.25rem;top:.625rem;width:2.65625rem;height:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.small-button[data-v-ea21c8e9]{margin-top:.625rem;height:2.1875rem;display:flex}.small-button .gray-ball[data-v-ea21c8e9]{display:flex;justify-content:center;align-items:center;background-color:#f8f9fa;width:1.875rem;height:1.875rem;border-radius:50%;margin:0 .3125rem}.small-button .gray-ball .laba-img[data-v-ea21c8e9]{width:1.09375rem;height:1.09375rem}.right-bottom[data-v-ea21c8e9]{margin-left:1.5625rem;margin-top:.9375rem;width:17.1875rem;height:7.5rem;border-radius:1.5625rem;background-color:rgba(226,227,231,.5);position:relative}.right-bottom .bottom-img[data-v-ea21c8e9]{width:1.875rem;height:1.875rem;margin-bottom:.9375rem}.right-bottom .people-card[data-v-ea21c8e9]{width:7.65625rem;height:3.125rem;border-radius:.78125rem;background-color:rgba(248,249,250,.5);margin-left:.625rem;display:flex;justify-content:center;align-items:center}.right-father[data-v-ea21c8e9]{width:20.3125rem;position:absolute;right:0;top:0;display:flex;justify-content:center;align-items:center}.right-icons[data-v-ea21c8e9]{position:absolute;right:.9375rem;top:.9375rem;display:flex;align-items:center;height:1.875rem}.warning[data-v-ea21c8e9]{animation:glowFlash-ea21c8e9 1.2s infinite ease-in-out;border:.03125rem solid #ff5757;background-color:rgba(239,240,244,.5)}.zoom[data-v-ea21c8e9]{transform:scale(1.2);transform-origin:bottom left;transition:transform 1s ease}.juzhong[data-v-ea21c8e9]{position:absolute;top:0%;left:50%;transform:translate(-50%)}.zhezhao-left[data-v-ea21c8e9]{position:absolute;top:0;left:0%;height:100%;width:3.75rem;background:linear-gradient(to right,#eff0f4,rgba(239,240,244,0));z-index:4;pointer-events:none}.zhezhao-right[data-v-ea21c8e9]{position:absolute;top:0;right:34%;height:100%;width:3.75rem;background:linear-gradient(to left,#eff0f4,rgba(239,240,244,0));z-index:4;pointer-events:none}.zhezhao-top[data-v-ea21c8e9]{position:absolute;top:6.875rem;left:0%;width:10.9375rem;height:3.75rem;background:linear-gradient(to bottom,#eff0f4,rgba(239,240,244,0));z-index:4;pointer-events:none}.zhezhao-bottom[data-v-ea21c8e9]{position:absolute;bottom:14.0625rem;left:0%;width:10.9375rem;height:3.75rem;background:linear-gradient(to top,#eff0f4,rgba(239,240,244,0));z-index:4;pointer-events:none}.bgc-image[data-v-ea21c8e9]{width:15.625rem;height:6.25rem;position:absolute;top:-1.5625rem;left:0}.font-phone[data-v-ea21c8e9]{font-size:1.09375rem;font-weight:600;margin-left:.9375rem}.phone-ball[data-v-ea21c8e9]{width:1.5625rem;height:1.5625rem;position:absolute;top:50%;transform:translateY(-50%);right:4.0625rem}.target[data-v-ea21c8e9]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: 0;border-radius:var(--radius);background-color:#ddf0ff;animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:1}.targetbutton[data-v-ea21c8e9]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: .3125rem;border-radius:var(--radius);animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:1}
+.move-circle[data-v-a880c760]{position:absolute;bottom:0;right:0;width:10.9375rem;height:10.9375rem;display:flex;justify-content:center;align-items:center;z-index:99;touch-action:none}.move-circle .click-box-top[data-v-a880c760]{position:absolute;top:.625rem;right:2.1875rem;width:6.875rem;height:2.5rem}.move-circle .click-box-bottom[data-v-a880c760]{position:absolute;bottom:.625rem;right:2.1875rem;width:6.875rem;height:2.5rem}.move-circle .click-box-right[data-v-a880c760]{position:absolute;bottom:3.125rem;right:0;width:2.8125rem;height:4.6875rem}.move-circle .click-box-left[data-v-a880c760]{position:absolute;bottom:3.125rem;left:0;width:2.8125rem;height:4.6875rem}.move-circle .click-box-center[data-v-a880c760]{position:absolute;bottom:4.0625rem;right:4.0625rem;width:2.8125rem;height:2.8125rem}.move-circle-all[data-v-a880c760]{width:10.9375rem;height:10.9375rem}.light-shadow[data-v-a880c760]{position:absolute;width:1.25rem;height:1.25rem;background-color:transparent;border:1.875rem solid #3da6ff;border-radius:50%;pointer-events:none;opacity:1}.ripple-loop[data-v-a880c760]{animation:rippleLoop-a880c760 1.2s ease-out infinite}.ripple-once[data-v-a880c760]{animation:rippleLoop-a880c760 1.2s ease-out forwards}@keyframes rippleLoop-a880c760{0%{transform:translate(-50%,-50%) scale(.5);opacity:.6}to{transform:translate(-50%,-50%) scale(2.5);opacity:0}}.light-circle[data-v-a880c760]{position:relative;width:150px;height:150px;border-radius:50%;background:#111;overflow:visible}.circle[data-v-a880c760]{position:relative;width:150px;height:150px;border-radius:50%;background:#222;margin:50px}.pulse-circle[data-v-a880c760]{position:absolute;top:50%;right:50%;transform:translate(-50%,-50%);border-radius:50%;background:radial-gradient(circle,#03a4ff 0%,transparent 70%);animation:pulse-a880c760 3s forwards}@keyframes pulse-a880c760{0%{width:0;height:0;opacity:.8}50%{width:10.9375rem;height:10.9375rem;opacity:.4}to{width:0;height:0;opacity:0}}.view[data-v-bd9aba2f]{background-color:#eff0f4;width:100%;height:100vh;display:flex}.view .view-left[data-v-bd9aba2f]{height:100%;width:23%}.view .view-left .title-father[data-v-bd9aba2f]{padding-top:3.75rem;padding-bottom:1.5625rem;padding-left:1.875rem;display:flex}.view .view-left .title-father .title-img[data-v-bd9aba2f]{width:1.71875rem;height:1.71875rem;margin-right:.625rem}.view .view-left .title-father .title-font[data-v-bd9aba2f]{font-size:1.25rem;font-weight:800}.view .view-left .menus-father[data-v-bd9aba2f]{width:100%;height:25rem}.view .view-left .menus-father .menu[data-v-bd9aba2f]{margin:1.40625rem 0 1.40625rem .9375rem;height:3.4375rem;width:9.375rem;border-radius:1.875rem;overflow:hidden;display:flex;align-items:center}.view .view-left .menus-father .menu .menu-img[data-v-bd9aba2f]{width:2.03125rem;height:2.03125rem;margin-left:.78125rem;display:flex;justify-content:center;align-items:center;border-radius:50%}.view .view-right[data-v-bd9aba2f]{height:100%;width:90%;position:relative}.view .view-right .right-container-title-nav[data-v-bd9aba2f]{margin-top:1.875rem;display:flex;align-items:center;height:1.875rem;position:relative;font-size:.875rem}.view .view-right .right-container-title-nav .right-icons-img[data-v-bd9aba2f]{width:1.875rem;height:1.875rem;margin-left:.625rem;margin-right:.625rem}.view .view-right .scroll-vi[data-v-bd9aba2f]{height:3.125rem;width:100%;margin-left:0;margin-top:3.125rem;position:relative;display:flex}.view .view-right .scroll-vi .menu[data-v-bd9aba2f]{flex:0 0 auto;height:2.8125rem;width:7.5rem;border-radius:1.5625rem;margin-left:.625rem;background-color:#fff;display:flex;justify-content:center;align-items:center;padding-top:.28125rem}.view .view-right .scroll-vi .menu .menu-img[data-v-bd9aba2f]{width:1.71875rem;height:1.71875rem;margin-right:.46875rem}.view .view-right .scroll-vi .menu .menu-font[data-v-bd9aba2f]{margin-top:.5625rem;font-size:.78125rem}.right-container-tem[data-v-bd9aba2f]{display:flex}.right-container-tem .right-container-tem-text[data-v-bd9aba2f]{font-size:1rem;margin-right:.625rem}.right-container-tem .right-container-tem-img[data-v-bd9aba2f]{width:1.1875rem;height:1.1875rem}.new-weight[data-v-bd9aba2f]{margin:1.25rem .9375rem 0;font-size:1rem}.big-bgc[data-v-bd9aba2f]{margin-top:.625rem;width:39.0625rem;height:28.53125rem;border-radius:1.5625rem;overflow:hidden;display:flex;justify-content:center;align-items:center;position:relative}.small-bgc[data-v-bd9aba2f]{width:9.3125rem;height:6.875rem;border-radius:.78125rem;overflow:hidden;display:flex;justify-content:center;align-items:center;position:relative}.card-father[data-v-bd9aba2f]{margin-right:.625rem}.card-father .up-title[data-v-bd9aba2f]{display:flex;justify-content:space-between;align-items:center;margin:.3125rem 0 .3125rem .625rem;font-size:.9375rem}@keyframes glowFlash-bd9aba2f{0%,to{box-shadow:0 0 .125rem #f1d7da,0 0 .25rem #f1d7da,0 0 .375rem #f1d7da}50%{box-shadow:0 0 .3125rem #f1d7da,0 0 .625rem #f1d7da,0 0 .9375rem #f1d7da}}.right-right[data-v-bd9aba2f]{position:absolute;right:-.625rem;top:7.1875rem;height:calc(100% - 7.8125rem);width:20.3125rem}.right-right .red-kuang[data-v-bd9aba2f]{margin-top:0;margin-left:2.8125rem;width:15.9375rem;height:3.75rem;border-radius:1.5625rem;position:relative;display:flex;align-items:center;background-color:rgba(226,227,231,.5)}.right-right .red-kuang .blue-bgc[data-v-bd9aba2f]{width:3.75rem;height:1.5625rem;display:flex;justify-content:center;align-items:center;z-index:1;font-size:.71875rem;background-color:rgba(248,249,250,.5);color:#017de9;border-radius:.625rem;margin-left:.9375rem}.right-right .red-kuang .font-weight[data-v-bd9aba2f]{font-size:.9375rem;font-weight:600}.right-right .red-kuang .font-small[data-v-bd9aba2f]{font-size:.78125rem}.states-father[data-v-bd9aba2f]{display:flex;margin-top:.625rem;margin-left:2.8125rem;width:100%}.states-father .states[data-v-bd9aba2f]{width:4.90625rem;margin-right:.46875rem;height:1.875rem;border-radius:1.875rem;background-color:rgba(226,227,231,.5);display:flex;justify-content:center;align-items:center}.states-father .phone-number[data-v-bd9aba2f]{width:100%;height:2.5rem;display:flex;align-items:center;position:relative}.bottom-view[data-v-bd9aba2f]{margin-left:2.8125rem;margin-top:.625rem;width:15.9375rem;height:21.5625rem;border-radius:1.5625rem;background-color:rgba(226,227,231,.5);position:relative;display:flex;flex-wrap:wrap;overflow:hidden;align-items:flex-start;align-content:flex-start}.bottom-view .button-father[data-v-bd9aba2f]{margin-top:.625rem;margin-bottom:0;margin-left:1.40625rem;text-align:center}.bottom-view .button-father .bottom-button[data-v-bd9aba2f]{background-color:#f2f2f4;display:flex;justify-content:center;align-items:center;width:3.4375rem;height:3.4375rem;border:.03125rem solid #CDD3DD;border-radius:1.09375rem;margin-bottom:.15625rem}.big-view[data-v-bd9aba2f]{margin-left:2.8125rem;margin-top:.625rem;width:15.9375rem;height:10.625rem;border-radius:1.5625rem;background-color:rgba(226,227,231,.5);position:relative;display:flex;flex-direction:column;align-items:center;overflow:hidden}.big-view .font-weight[data-v-bd9aba2f]{font-size:1.25rem;margin-top:.9375rem;font-weight:600}.big-view .pao[data-v-bd9aba2f]{position:absolute;right:1.25rem;top:.625rem;width:2.65625rem;height:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.small-button[data-v-bd9aba2f]{margin-top:.3125rem;height:2.1875rem;display:flex}.small-button .gray-ball[data-v-bd9aba2f]{display:flex;justify-content:center;align-items:center;background-color:#f8f9fa;width:1.875rem;height:1.875rem;border-radius:50%;margin:0 .3125rem}.small-button .gray-ball .laba-img[data-v-bd9aba2f]{width:1.09375rem;height:1.09375rem}.right-bottom[data-v-bd9aba2f]{margin-left:1.5625rem;margin-top:.9375rem;width:17.1875rem;height:7.5rem;border-radius:1.5625rem;background-color:rgba(226,227,231,.5);position:relative}.right-bottom .bottom-img[data-v-bd9aba2f]{width:1.875rem;height:1.875rem;margin-bottom:.9375rem}.right-bottom .people-card[data-v-bd9aba2f]{width:7.65625rem;height:3.125rem;border-radius:.78125rem;background-color:rgba(248,249,250,.5);margin-left:.625rem;display:flex;justify-content:center;align-items:center}.right-father[data-v-bd9aba2f]{width:20.3125rem;position:absolute;right:0;top:0;display:flex;justify-content:center;align-items:center}.right-icons[data-v-bd9aba2f]{position:absolute;right:.9375rem;top:.9375rem;display:flex;align-items:center;height:1.875rem}.warning[data-v-bd9aba2f]{animation:glowFlash-bd9aba2f 1.2s infinite ease-in-out;border:.03125rem solid #ff5757;background-color:rgba(239,240,244,.5)}.zoom[data-v-bd9aba2f]{transform:scale(1.2);transform-origin:bottom left;transition:transform 1s ease}.juzhong[data-v-bd9aba2f]{position:absolute;top:0%;left:50%;transform:translate(-50%)}.zhezhao-left[data-v-bd9aba2f]{position:absolute;top:0;left:0%;height:100%;width:3.75rem;background:linear-gradient(to right,#eff0f4,rgba(239,240,244,0));z-index:4;pointer-events:none}.zhezhao-right[data-v-bd9aba2f]{position:absolute;top:0;right:34%;height:100%;width:3.75rem;background:linear-gradient(to left,#eff0f4,rgba(239,240,244,0));z-index:4;pointer-events:none}.zhezhao-top[data-v-bd9aba2f]{position:absolute;top:6.875rem;left:0%;width:10.9375rem;height:3.75rem;background:linear-gradient(to bottom,#eff0f4,rgba(239,240,244,0));z-index:4;pointer-events:none}.zhezhao-bottom[data-v-bd9aba2f]{position:absolute;bottom:14.0625rem;left:0%;width:10.9375rem;height:3.75rem;background:linear-gradient(to top,#eff0f4,rgba(239,240,244,0));z-index:4;pointer-events:none}.bgc-image[data-v-bd9aba2f]{width:15.625rem;height:6.25rem;position:absolute;top:-1.5625rem;left:0}.font-phone[data-v-bd9aba2f]{font-size:1.09375rem;font-weight:600;margin-left:.9375rem}.phone-ball[data-v-bd9aba2f]{width:1.5625rem;height:1.5625rem;position:absolute;top:50%;transform:translateY(-50%);right:4.0625rem}.target[data-v-bd9aba2f]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: 0;border-radius:var(--radius);background-color:#ddf0ff;animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:1}.targetbutton[data-v-bd9aba2f]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: .3125rem;border-radius:var(--radius);animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:1}.picture[data-v-bd9aba2f]{display:flex;margin-top:4.6875rem}.picture .picture-card[data-v-bd9aba2f]{display:flex;flex-direction:column;justify-content:center;align-items:center;margin-left:.625rem;margin-right:.3125rem;width:6.25rem}.picture .picture-card .bgc-card[data-v-bd9aba2f]{width:100%;height:4.0625rem;background-color:#eaeaec;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;margin-bottom:.3125rem}.jump-white[data-v-bd9aba2f]{position:absolute;bottom:.625rem;left:1.5625rem;width:9.375rem;height:12.5rem;background-color:#fff;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1)}.jump-item[data-v-bd9aba2f]{margin:.3125rem;height:1.875rem;justify-content:center;width:93%;display:flex;border-radius:.625rem;align-items:center}
diff --git a/unpackage/resources/__UNI__FB2D473/www/pages/watch/settings/settings.css b/unpackage/resources/__UNI__FB2D473/www/pages/watch/settings/settings.css
index 11c1827..864fc5d 100644
--- a/unpackage/resources/__UNI__FB2D473/www/pages/watch/settings/settings.css
+++ b/unpackage/resources/__UNI__FB2D473/www/pages/watch/settings/settings.css
@@ -1 +1 @@
-.neuro-wrapper[data-v-1c53b005]{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;z-index:999;opacity:0;pointer-events:none;transition:opacity .3s ease}.neuro-wrapper.is-active[data-v-1c53b005]{opacity:1;pointer-events:auto}.neuro-mask[data-v-1c53b005]{position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.3)}.neuro-box[data-v-1c53b005]{position:relative;width:18.75rem;height:14.0625rem;border-radius:.9375rem;background-color:#fff;display:flex;flex-direction:column;align-items:center;z-index:1;padding:0 10%}.button[data-v-1c53b005]{width:47%;background-color:#ddf0ff;display:flex;justify-content:center;align-items:center;color:#007cff;border:.03125rem solid #007CFF;font-size:.78125rem;border-radius:.9375rem}.title[data-v-1c53b005]{margin-top:2.1875rem}.card-font[data-v-1c53b005]{margin-top:2.1875rem;width:18.75rem;justify-content:center;display:flex}.button-white[data-v-1c53b005]{width:47%;border:.0625rem solid #c3cacd;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:.78125rem;border-radius:.9375rem}.button-father[data-v-1c53b005]{position:absolute;bottom:1.875rem;left:50%;transform:translate(-50%);width:100%;height:2.1875rem;display:flex;justify-content:space-between;padding:0 1.5625rem}.neuro-wrapper[data-v-8de7e110]{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;z-index:999;opacity:0;pointer-events:none;transition:opacity .3s ease}.neuro-wrapper.is-active[data-v-8de7e110]{opacity:1;pointer-events:auto}.neuro-mask[data-v-8de7e110]{position:absolute;top:0;right:0;bottom:0;left:0;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4)}.neuro-box[data-v-8de7e110]{position:relative;width:23.4375rem;height:21.875rem;border-radius:.9375rem;background-color:#fff;display:flex;flex-direction:column;align-items:center;z-index:1;padding:0 10%}.button[data-v-8de7e110]{width:100%;display:flex;justify-content:center;align-items:center;color:#fff;font-size:.78125rem;border-radius:1.09375rem;margin-left:.625rem;color:#007cff;font-size:.9375rem;background-color:#ddf0ff;border:.03125rem solid #007CFF}.title[data-v-8de7e110]{margin-top:2.1875rem;font-weight:600;font-size:1.09375rem}.card-font[data-v-8de7e110]{margin-top:2.1875rem;width:18.75rem;justify-content:center;display:flex}.button-white[data-v-8de7e110]{width:47%;border:.0625rem solid #c3cacd;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:.78125rem;border-radius:.9375rem}.button-father[data-v-8de7e110]{position:absolute;bottom:2.1875rem;left:50%;transform:translate(-50%);width:100%;height:2.5rem;display:flex;justify-content:center;padding:0 3.4375rem}.password-father[data-v-8de7e110]{margin-top:.9375rem;width:23.4375rem;padding:0 3.75rem;height:2.5rem}.password-father .password[data-v-8de7e110]{width:100%;background-color:rgba(239,240,244,.5);border-radius:.71875rem;height:2.5rem;padding-left:.625rem;font-size:.84375rem}.zy-modal[data-v-cd70e807]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1110;opacity:0;outline:0;text-align:center;transform:scale(1.185);-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:62.5rem;background:rgba(0,0,0,.6);transition:all .3s ease-in-out 0s;pointer-events:none}.zy-modal[data-v-cd70e807]:before{content:"\200b";display:inline-block;height:100%;vertical-align:middle}.zy-modal.show[data-v-cd70e807]{opacity:1;transition-duration:.3s;transform:scale(1);overflow-x:hidden;overflow-y:auto;pointer-events:auto}.zy-dialog[data-v-cd70e807]{position:relative;display:inline-block;vertical-align:middle;margin-left:auto;margin-right:auto;width:21.25rem;max-width:100%;background-color:#f8f8f8;border-radius:.3125rem;overflow:hidden}.zy-modal.bottom-modal[data-v-cd70e807]:before{vertical-align:bottom}.zy-modal.bottom-modal .zy-dialog[data-v-cd70e807]{width:100%;border-radius:0}.zy-modal.bottom-modal[data-v-cd70e807]{margin-bottom:-31.25rem}.zy-modal.bottom-modal.show[data-v-cd70e807]{margin-bottom:0}.zy-modal.drawer-modal[data-v-cd70e807]{transform:scale(1);display:flex}.zy-modal.drawer-modal .zy-dialog[data-v-cd70e807]{height:100%;min-width:6.25rem;border-radius:0;margin:initial;transition-duration:.3s}.zy-modal.drawer-modal.justify-start .zy-dialog[data-v-cd70e807]{transform:translate(-100%)}.zy-modal.drawer-modal.justify-end .zy-dialog[data-v-cd70e807]{transform:translate(100%)}.zy-modal.drawer-modal.show .zy-dialog[data-v-cd70e807]{transform:translate(0)}.zy-modal .zy-dialog>.zy-bar:first-child .action[data-v-cd70e807]{min-width:3.125rem;margin-right:0;min-height:3.125rem}.zy-progress[data-v-cd70e807]{overflow:hidden;height:.875rem;background-color:#ebeef5;display:inline-flex;align-items:center;width:100%}.zy-progress+uni-view[data-v-cd70e807],.zy-progress+uni-text[data-v-cd70e807]{line-height:1}.zy-progress.xs[data-v-cd70e807]{height:.3125rem}.zy-progress.sm[data-v-cd70e807]{height:.625rem}.zy-progress uni-view[data-v-cd70e807]{width:0;height:100%;align-items:center;display:flex;justify-items:flex-end;justify-content:space-around;font-size:.625rem;color:#fff;transition:width .6s ease}.zy-progress uni-text[data-v-cd70e807]{align-items:center;display:flex;font-size:.625rem;color:#333;text-indent:.3125rem}.zy-progress.text-progress[data-v-cd70e807]{padding-right:1.875rem}.zy-progress.striped uni-view[data-v-cd70e807]{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:2.25rem 2.25rem}.zy-progress.active uni-view[data-v-cd70e807]{animation:progress-stripes-cd70e807 2s linear infinite}@keyframes progress-stripes-cd70e807{0%{background-position:2.25rem 0}to{background-position:0 0}}.zy-btn[data-v-cd70e807]{height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.zy-btn[data-v-cd70e807]:after{display:none}.zy-btn[data-v-cd70e807]:not([class*=bg-]){background-color:#f0f0f0}.zy-btn[class*=line][data-v-cd70e807]{background-color:transparent}.zy-btn[class*=line][data-v-cd70e807]:after{content:" ";display:block;width:200%;height:200%;position:absolute;top:0;left:0;border:.03125rem solid currentColor;transform:scale(.5);transform-origin:0 0;box-sizing:border-box;border-radius:.375rem;z-index:1;pointer-events:none}.zy-btn.round[class*=line][data-v-cd70e807]:after{border-radius:31.25rem}.zy-btn[class*=lines][data-v-cd70e807]:after{border:.1875rem solid currentColor}.zy-btn[class*=bg-][data-v-cd70e807]:after{display:none}.zy-btn.sm[data-v-cd70e807]{padding:0 .625rem;font-size:.625rem;height:1.5rem}.zy-btn.lg[data-v-cd70e807]{padding:0 1.25rem;font-size:1rem;height:2.5rem}.zy-btn.cuIcon.sm[data-v-cd70e807]{width:1.5rem;height:1.5rem}.zy-btn.cuIcon[data-v-cd70e807]{width:2rem;height:2rem;border-radius:15.625rem;padding:0}uni-button.cuIcon.lg[data-v-cd70e807]{width:2.5rem;height:2.5rem}.zy-btn.shadow-blur[data-v-cd70e807]:before{top:.125rem;left:.125rem;filter:blur(.1875rem);opacity:.6}.zy-btn.button-hover[data-v-cd70e807]{transform:translate(.03125rem,.03125rem)}.block[data-v-cd70e807]{display:block}.zy-btn.block[data-v-cd70e807]{display:flex}.zy-btn[disabled][data-v-cd70e807]{opacity:.6;color:#fff}.margin-0[data-v-cd70e807]{margin:0}.margin-xs[data-v-cd70e807]{margin:.3125rem}.margin-sm[data-v-cd70e807]{margin:.625rem}.margin[data-v-cd70e807]{margin:.9375rem}.margin-lg[data-v-cd70e807]{margin:1.25rem}.margin-xl[data-v-cd70e807]{margin:1.5625rem}.margin-top-xs[data-v-cd70e807]{margin-top:.3125rem}.margin-top-sm[data-v-cd70e807]{margin-top:.625rem}.margin-top[data-v-cd70e807]{margin-top:.9375rem}.margin-top-lg[data-v-cd70e807]{margin-top:1.25rem}.margin-top-xl[data-v-cd70e807]{margin-top:1.5625rem}.margin-right-xs[data-v-cd70e807]{margin-right:.3125rem}.margin-right-sm[data-v-cd70e807]{margin-right:.625rem}.margin-right[data-v-cd70e807]{margin-right:.9375rem}.margin-right-lg[data-v-cd70e807]{margin-right:1.25rem}.margin-right-xl[data-v-cd70e807]{margin-right:1.5625rem}.margin-bottom-xs[data-v-cd70e807]{margin-bottom:.3125rem}.margin-bottom-sm[data-v-cd70e807]{margin-bottom:.625rem}.margin-bottom[data-v-cd70e807]{margin-bottom:.9375rem}.margin-bottom-lg[data-v-cd70e807]{margin-bottom:1.25rem}.margin-bottom-xl[data-v-cd70e807]{margin-bottom:1.5625rem}.margin-left-xs[data-v-cd70e807]{margin-left:.3125rem}.margin-left-sm[data-v-cd70e807]{margin-left:.625rem}.margin-left[data-v-cd70e807]{margin-left:.9375rem}.margin-left-lg[data-v-cd70e807]{margin-left:1.25rem}.margin-left-xl[data-v-cd70e807]{margin-left:1.5625rem}.margin-lr-xs[data-v-cd70e807]{margin-left:.3125rem;margin-right:.3125rem}.margin-lr-sm[data-v-cd70e807]{margin-left:.625rem;margin-right:.625rem}.margin-lr[data-v-cd70e807]{margin-left:.9375rem;margin-right:.9375rem}.margin-lr-lg[data-v-cd70e807]{margin-left:1.25rem;margin-right:1.25rem}.margin-lr-xl[data-v-cd70e807]{margin-left:1.5625rem;margin-right:1.5625rem}.margin-tb-xs[data-v-cd70e807]{margin-top:.3125rem;margin-bottom:.3125rem}.margin-tb-sm[data-v-cd70e807]{margin-top:.625rem;margin-bottom:.625rem}.margin-tb[data-v-cd70e807]{margin-top:.9375rem;margin-bottom:.9375rem}.margin-tb-lg[data-v-cd70e807]{margin-top:1.25rem;margin-bottom:1.25rem}.margin-tb-xl[data-v-cd70e807]{margin-top:1.5625rem;margin-bottom:1.5625rem}.padding-0[data-v-cd70e807]{padding:0}.padding-xs[data-v-cd70e807]{padding:.3125rem}.padding-sm[data-v-cd70e807]{padding:.625rem}.padding[data-v-cd70e807]{padding:.9375rem}.padding-lg[data-v-cd70e807]{padding:1.25rem}.padding-xl[data-v-cd70e807]{padding:1.5625rem}.padding-top-xs[data-v-cd70e807]{padding-top:.3125rem}.padding-top-sm[data-v-cd70e807]{padding-top:.625rem}.padding-top[data-v-cd70e807]{padding-top:.9375rem}.padding-top-lg[data-v-cd70e807]{padding-top:1.25rem}.padding-top-xl[data-v-cd70e807]{padding-top:1.5625rem}.padding-right-xs[data-v-cd70e807]{padding-right:.3125rem}.padding-right-sm[data-v-cd70e807]{padding-right:.625rem}.padding-right[data-v-cd70e807]{padding-right:.9375rem}.padding-right-lg[data-v-cd70e807]{padding-right:1.25rem}.padding-right-xl[data-v-cd70e807]{padding-right:1.5625rem}.padding-bottom-xs[data-v-cd70e807]{padding-bottom:.3125rem}.padding-bottom-sm[data-v-cd70e807]{padding-bottom:.625rem}.padding-bottom[data-v-cd70e807]{padding-bottom:.9375rem}.padding-bottom-lg[data-v-cd70e807]{padding-bottom:1.25rem}.padding-bottom-xl[data-v-cd70e807]{padding-bottom:1.5625rem}.padding-left-xs[data-v-cd70e807]{padding-left:.3125rem}.padding-left-sm[data-v-cd70e807]{padding-left:.625rem}.padding-left[data-v-cd70e807]{padding-left:.9375rem}.padding-left-lg[data-v-cd70e807]{padding-left:1.25rem}.padding-left-xl[data-v-cd70e807]{padding-left:1.5625rem}.padding-lr-xs[data-v-cd70e807]{padding-left:.3125rem;padding-right:.3125rem}.padding-lr-sm[data-v-cd70e807]{padding-left:.625rem;padding-right:.625rem}.padding-lr[data-v-cd70e807]{padding-left:.9375rem;padding-right:.9375rem}.padding-lr-lg[data-v-cd70e807]{padding-left:1.25rem;padding-right:1.25rem}.padding-lr-xl[data-v-cd70e807]{padding-left:1.5625rem;padding-right:1.5625rem}.padding-tb-xs[data-v-cd70e807]{padding-top:.3125rem;padding-bottom:.3125rem}.padding-tb-sm[data-v-cd70e807]{padding-top:.625rem;padding-bottom:.625rem}.padding-tb[data-v-cd70e807]{padding-top:.9375rem;padding-bottom:.9375rem}.padding-tb-lg[data-v-cd70e807]{padding-top:1.25rem;padding-bottom:1.25rem}.padding-tb-xl[data-v-cd70e807]{padding-top:1.5625rem;padding-bottom:1.5625rem}.zy-bar[data-v-cd70e807]{display:flex;position:relative;align-items:center;min-height:3.125rem;justify-content:space-between}.zy-bar .action[data-v-cd70e807]{display:flex;align-items:center;height:100%;justify-content:center;max-width:100%}.zy-bar .action.border-title[data-v-cd70e807]{position:relative;top:-.3125rem}.zy-bar .action.border-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;bottom:-.5rem;min-width:2rem;height:.1875rem;left:0}.zy-bar .action.sub-title[data-v-cd70e807]{position:relative;top:-.2rem}.zy-bar .action.sub-title uni-text[data-v-cd70e807]{position:relative;z-index:1}.zy-bar .action.sub-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.2rem;border-radius:.1875rem;width:100%;height:.6rem;left:.6rem;opacity:.3;z-index:0}.zy-bar .action.sub-title uni-text[class*=text-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.7rem;left:.5rem;opacity:.2;z-index:0;text-align:right;font-weight:900;font-size:1.125rem}.zy-bar.justify-center .action.border-title uni-text[data-v-cd70e807]:last-child,.zy-bar.justify-center .action.sub-title uni-text[data-v-cd70e807]:last-child{left:0;right:0;margin:auto;text-align:center}.zy-bar .action[data-v-cd70e807]:first-child{margin-left:.9375rem;font-size:.9375rem}.zy-bar .action uni-text.text-cut[data-v-cd70e807]{text-align:left;width:100%}.zy-bar .zy-avatar[data-v-cd70e807]:first-child{margin-left:.625rem}.zy-bar .action:first-child>uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:-.3em;margin-right:.3em}.zy-bar .action[data-v-cd70e807]:last-child{margin-right:.9375rem}.zy-bar .action>uni-text[class*=cuIcon-][data-v-cd70e807],.zy-bar .action>uni-view[class*=cuIcon-][data-v-cd70e807]{font-size:1.125rem}.zy-bar .action>uni-text[class*=cuIcon-]+uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:.5em}.zy-bar .content[data-v-cd70e807]{position:absolute;text-align:center;width:calc(100% - 10.625rem);left:0;right:0;bottom:0;top:0;margin:auto;height:1.875rem;font-size:1rem;line-height:1.875rem;cursor:none;pointer-events:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.zy-bar.ios .content[data-v-cd70e807]{bottom:7px;height:30px;font-size:1rem;line-height:30px}.zy-bar.btn-group[data-v-cd70e807]{justify-content:space-around}.zy-bar.btn-group uni-button[data-v-cd70e807]{padding:.625rem 1rem}.zy-bar.btn-group uni-button[data-v-cd70e807]{flex:1;margin:0 .625rem;max-width:50%}.zy-bar .search-form[data-v-cd70e807]{background-color:#f5f5f5;line-height:2rem;height:2rem;font-size:.75rem;color:#333;flex:1;display:flex;align-items:center;margin:0 .9375rem}.zy-bar .search-form+.action[data-v-cd70e807]{margin-right:.9375rem}.zy-bar .search-form uni-input[data-v-cd70e807]{flex:1;padding-right:.9375rem;height:2rem;line-height:2rem;font-size:.8125rem;background-color:transparent}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]{margin:0 .5em 0 .8em}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]:before{top:0}.zy-bar.fixed[data-v-cd70e807],.nav.fixed[data-v-cd70e807]{position:fixed;width:100%;top:0;z-index:1024;box-shadow:0 .03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.foot[data-v-cd70e807]{position:fixed;width:100%;bottom:0;z-index:1024;box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar[data-v-cd70e807]{padding:0;height:calc(3.125rem + env(safe-area-inset-bottom)/2);padding-bottom:calc(env(safe-area-inset-bottom)/2)}.zy-tabbar-height[data-v-cd70e807]{min-height:3.125rem;height:calc(3.125rem + env(safe-area-inset-bottom)/2)}.zy-bar.tabbar.shadow[data-v-cd70e807]{box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar .action[data-v-cd70e807]{font-size:.6875rem;position:relative;flex:1;text-align:center;padding:0;display:block;height:auto;line-height:1;margin:0;background-color:inherit;overflow:initial}.zy-bar.tabbar.shop .action[data-v-cd70e807]{width:4.375rem;flex:initial}.zy-bar.tabbar .action.add-action[data-v-cd70e807]{position:relative;z-index:2;padding-top:1.5625rem}.zy-bar.tabbar .action.add-action [class*=cuIcon-][data-v-cd70e807]{position:absolute;width:2.1875rem;z-index:2;height:2.1875rem;border-radius:50%;line-height:2.1875rem;font-size:1.5625rem;top:-1.09375rem;left:0;right:0;margin:auto;padding:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:after{content:"";position:absolute;width:3.125rem;height:3.125rem;top:-1.5625rem;left:0;right:0;margin:auto;box-shadow:0 -.09375rem .25rem rgba(0,0,0,.08);border-radius:1.5625rem;background-color:inherit;z-index:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:before{content:"";position:absolute;width:3.125rem;height:.9375rem;bottom:.9375rem;left:0;right:0;margin:auto;background-color:inherit;z-index:1}.zy-bar.tabbar .btn-group[data-v-cd70e807]{flex:1;display:flex;justify-content:space-around;align-items:center;padding:0 .3125rem}.zy-bar.tabbar uni-button.action[data-v-cd70e807]:after{border:0}.zy-bar.tabbar .action [class*=cuIcon-][data-v-cd70e807]{width:3.125rem;position:relative;display:block;height:auto;margin:0 auto .3125rem;text-align:center;font-size:1.25rem}.zy-bar.tabbar .action .cuIcon-zy-image[data-v-cd70e807]{margin:0 auto}.zy-bar.tabbar .action .cuIcon-zy-image uni-image[data-v-cd70e807]{width:1.5625rem;height:1.5625rem;display:inline-block}.zy-bar.tabbar .submit[data-v-cd70e807]{align-items:center;display:flex;justify-content:center;text-align:center;position:relative;flex:2;align-self:stretch}.zy-bar.tabbar .submit[data-v-cd70e807]:last-child{flex:2.6}.zy-bar.tabbar .submit+.submit[data-v-cd70e807]{flex:2}.zy-bar.tabbar.border .action[data-v-cd70e807]:before{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;transform:scale(.5);transform-origin:0 0;border-right:.03125rem solid rgba(0,0,0,.1);z-index:3}.zy-bar.tabbar.border .action[data-v-cd70e807]:last-child:before{display:none}.zy-bar.input[data-v-cd70e807]{padding-right:.625rem;background-color:#fff}.zy-bar.input uni-input[data-v-cd70e807]{overflow:initial;line-height:2rem;height:2rem;min-height:2rem;flex:1;font-size:.9375rem;margin:0 .625rem}.zy-bar.input .action[data-v-cd70e807]{margin-left:.625rem}.zy-bar.input .action [class*=cuIcon-][data-v-cd70e807]{font-size:1.5rem}.zy-bar.input uni-input+.action[data-v-cd70e807]{margin-right:.625rem;margin-left:0}.zy-bar.input .action:first-child [class*=cuIcon-][data-v-cd70e807]{margin-left:0}.zy-custom[data-v-cd70e807]{display:block;position:relative}.zy-custom .zy-bar .content[data-v-cd70e807]{width:calc(100% - 13.75rem)}.zy-custom .zy-bar .content uni-image[data-v-cd70e807]{height:1.875rem;width:7.5rem}.zy-custom .zy-bar[data-v-cd70e807]{min-height:0px;box-shadow:0 0;z-index:9999}.zy-custom .zy-bar .border-custom[data-v-cd70e807]{position:relative;background:rgba(0,0,0,.15);border-radius:31.25rem;height:30px}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:after{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;border-radius:inherit;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:.03125rem solid #ffffff;opacity:.5}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:before{content:" ";width:.03125rem;height:110%;position:absolute;top:22.5%;left:0;right:0;margin:auto;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;opacity:.6;background-color:#fff}.zy-custom .zy-bar .border-custom uni-text[data-v-cd70e807]{display:block;flex:1;margin:auto!important;text-align:center;font-size:1.0625rem}.flex[data-v-cd70e807]{display:flex}.basis-xs[data-v-cd70e807]{flex-basis:20%}.basis-sm[data-v-cd70e807]{flex-basis:40%}.basis-df[data-v-cd70e807]{flex-basis:50%}.basis-lg[data-v-cd70e807]{flex-basis:60%}.basis-xl[data-v-cd70e807]{flex-basis:80%}.flex-sub[data-v-cd70e807]{flex:1}.flex-twice[data-v-cd70e807]{flex:2}.flex-treble[data-v-cd70e807]{flex:3}.flex-direction[data-v-cd70e807]{flex-direction:column}.flex-wrap[data-v-cd70e807]{flex-wrap:wrap}.align-start[data-v-cd70e807]{align-items:flex-start}.align-end[data-v-cd70e807]{align-items:flex-end}.align-center[data-v-cd70e807]{align-items:center}.self-start[data-v-cd70e807]{align-self:flex-start}.self-center[data-v-cd70e807]{align-self:flex-center}.self-end[data-v-cd70e807]{align-self:flex-end}.self-stretch[data-v-cd70e807]{align-self:stretch}.align-stretch[data-v-cd70e807]{align-items:stretch}.justify-start[data-v-cd70e807]{justify-content:flex-start}.justify-end[data-v-cd70e807]{justify-content:flex-end}.justify-center[data-v-cd70e807]{justify-content:center}.justify-between[data-v-cd70e807]{justify-content:space-between}.justify-around[data-v-cd70e807]{justify-content:space-around}.line-red[data-v-cd70e807]:after,.lines-red[data-v-cd70e807]:after{border-color:#e54d42}.line-orange[data-v-cd70e807]:after,.lines-orange[data-v-cd70e807]:after{border-color:#f37b1d}.line-yellow[data-v-cd70e807]:after,.lines-yellow[data-v-cd70e807]:after{border-color:#fbbd08}.line-olive[data-v-cd70e807]:after,.lines-olive[data-v-cd70e807]:after{border-color:#8dc63f}.line-green[data-v-cd70e807]:after,.lines-green[data-v-cd70e807]:after{border-color:#39b54a}.line-cyan[data-v-cd70e807]:after,.lines-cyan[data-v-cd70e807]:after{border-color:#1cbbb4}.line-blue[data-v-cd70e807]:after,.lines-blue[data-v-cd70e807]:after{border-color:#0081ff}.line-purple[data-v-cd70e807]:after,.lines-purple[data-v-cd70e807]:after{border-color:#6739b6}.line-mauve[data-v-cd70e807]:after,.lines-mauve[data-v-cd70e807]:after{border-color:#9c26b0}.line-pink[data-v-cd70e807]:after,.lines-pink[data-v-cd70e807]:after{border-color:#e03997}.line-brown[data-v-cd70e807]:after,.lines-brown[data-v-cd70e807]:after{border-color:#a5673f}.line-grey[data-v-cd70e807]:after,.lines-grey[data-v-cd70e807]:after{border-color:#8799a3}.line-gray[data-v-cd70e807]:after,.lines-gray[data-v-cd70e807]:after{border-color:#aaa}.line-black[data-v-cd70e807]:after,.lines-black[data-v-cd70e807]:after{border-color:#333}.line-white[data-v-cd70e807]:after,.lines-white[data-v-cd70e807]:after{border-color:#fff}.bg-red[data-v-cd70e807]{background-color:#e54d42;color:#fff}.bg-orange[data-v-cd70e807]{background-color:#f37b1d;color:#fff}.bg-yellow[data-v-cd70e807]{background-color:#fbbd08;color:#333}.bg-olive[data-v-cd70e807]{background-color:#8dc63f;color:#fff}.bg-green[data-v-cd70e807]{background-color:#39b54a;color:#fff}.bg-cyan[data-v-cd70e807]{background-color:#1cbbb4;color:#fff}.bg-blue[data-v-cd70e807]{background-color:#0081ff;color:#fff}.bg-purple[data-v-cd70e807]{background-color:#6739b6;color:#fff}.bg-mauve[data-v-cd70e807]{background-color:#9c26b0;color:#fff}.bg-pink[data-v-cd70e807]{background-color:#e03997;color:#fff}.bg-brown[data-v-cd70e807]{background-color:#a5673f;color:#fff}.bg-grey[data-v-cd70e807]{background-color:#8799a3;color:#fff}.bg-gray[data-v-cd70e807]{background-color:#f0f0f0;color:#333}.bg-black[data-v-cd70e807]{background-color:#333;color:#fff}.bg-white[data-v-cd70e807]{background-color:#fff;color:#666}.bg-shadeTop[data-v-cd70e807]{background-image:linear-gradient(#000,rgba(0,0,0,.01));color:#fff}.bg-shadeBottom[data-v-cd70e807]{background-image:linear-gradient(rgba(0,0,0,.01),#000);color:#fff}.bg-red.light[data-v-cd70e807]{color:#e54d42;background-color:#fadbd9}.bg-orange.light[data-v-cd70e807]{color:#f37b1d;background-color:#fde6d2}.bg-yellow.light[data-v-cd70e807]{color:#fbbd08;background-color:rgba(254,242,206,.824)}.bg-olive.light[data-v-cd70e807]{color:#8dc63f;background-color:#e8f4d9}.bg-green.light[data-v-cd70e807]{color:#39b54a;background-color:#d7f0db}.bg-cyan.light[data-v-cd70e807]{color:#1cbbb4;background-color:#d2f1f0}.bg-blue.light[data-v-cd70e807]{color:#0081ff;background-color:#cce6ff}.bg-purple.light[data-v-cd70e807]{color:#6739b6;background-color:#e1d7f0}.bg-mauve.light[data-v-cd70e807]{color:#9c26b0;background-color:#ebd4ef}.bg-pink.light[data-v-cd70e807]{color:#e03997;background-color:#f9d7ea}.bg-brown.light[data-v-cd70e807]{color:#a5673f;background-color:#ede1d9}.bg-grey.light[data-v-cd70e807]{color:#8799a3;background-color:#e7ebed}.bg-gradual-red[data-v-cd70e807]{background-image:linear-gradient(45deg,#f43f3b,#ec008c);color:#fff}.bg-gradual-orange[data-v-cd70e807]{background-image:linear-gradient(45deg,#ff9700,#ed1c24);color:#fff}.bg-gradual-green[data-v-cd70e807]{background-image:linear-gradient(45deg,#39b54a,#8dc63f);color:#fff}.bg-gradual-purple[data-v-cd70e807]{background-image:linear-gradient(45deg,#9000ff,#5e00ff);color:#fff}.bg-gradual-pink[data-v-cd70e807]{background-image:linear-gradient(45deg,#ec008c,#6739b6);color:#fff}.bg-gradual-blue[data-v-cd70e807]{background-image:linear-gradient(45deg,#0081ff,#1cbbb4);color:#fff}.shadow[class*=-red][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.shadow[class*=-orange][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.shadow[class*=-yellow][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.shadow[class*=-olive][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.shadow[class*=-green][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.shadow[class*=-cyan][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.shadow[class*=-blue][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.shadow[class*=-purple][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.shadow[class*=-mauve][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.shadow[class*=-pink][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.shadow[class*=-brown][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.shadow[class*=-grey][data-v-cd70e807],.shadow[class*=-gray][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.shadow[class*=-black][data-v-cd70e807],.shadow[class*=-white][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.text-shadow[class*=-red][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.text-shadow[class*=-orange][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.text-shadow[class*=-yellow][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.text-shadow[class*=-olive][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.text-shadow[class*=-green][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.text-shadow[class*=-cyan][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.text-shadow[class*=-blue][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.text-shadow[class*=-purple][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.text-shadow[class*=-mauve][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.text-shadow[class*=-pink][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.text-shadow[class*=-brown][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.text-shadow[class*=-grey][data-v-cd70e807],.text-shadow[class*=-gray][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.text-shadow[class*=-black][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.bg-img[data-v-cd70e807]{background-size:cover;background-position:center;background-repeat:no-repeat}.bg-mask[data-v-cd70e807]{background-color:#333;position:relative}.bg-mask[data-v-cd70e807]:after{content:"";border-radius:inherit;width:100%;height:100%;display:block;background-color:rgba(0,0,0,.4);position:absolute;left:0;right:0;bottom:0;top:0}.bg-mask uni-view[data-v-cd70e807],.bg-mask uni-cover-view[data-v-cd70e807]{z-index:5;position:relative}.bg-video[data-v-cd70e807]{position:relative}.bg-video uni-video[data-v-cd70e807]{display:block;height:100%;width:100%;object-fit:cover;position:absolute;top:0;z-index:0;pointer-events:none}.text-xs[data-v-cd70e807]{font-size:.625rem}.text-sm[data-v-cd70e807]{font-size:.75rem}.text-df[data-v-cd70e807]{font-size:.875rem}.text-lg[data-v-cd70e807]{font-size:1rem}.text-xl[data-v-cd70e807]{font-size:1.125rem}.text-xxl[data-v-cd70e807]{font-size:1.375rem}.text-sl[data-v-cd70e807]{font-size:2.5rem}.text-xsl[data-v-cd70e807]{font-size:3.75rem}.text-Abc[data-v-cd70e807]{text-transform:Capitalize}.text-ABC[data-v-cd70e807]{text-transform:Uppercase}.text-abc[data-v-cd70e807]{text-transform:Lowercase}.text-price[data-v-cd70e807]:before{content:"\a5";font-size:80%;margin-right:.125rem}.text-cut[data-v-cd70e807]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.text-bold[data-v-cd70e807]{font-weight:700}.text-center[data-v-cd70e807]{text-align:center}.text-content[data-v-cd70e807]{line-height:1.6}.text-left[data-v-cd70e807]{text-align:left}.text-right[data-v-cd70e807]{text-align:right}.text-red[data-v-cd70e807],.line-red[data-v-cd70e807],.lines-red[data-v-cd70e807]{color:#e54d42}.text-orange[data-v-cd70e807],.line-orange[data-v-cd70e807],.lines-orange[data-v-cd70e807]{color:#f37b1d}.text-yellow[data-v-cd70e807],.line-yellow[data-v-cd70e807],.lines-yellow[data-v-cd70e807]{color:#fbbd08}.text-olive[data-v-cd70e807],.line-olive[data-v-cd70e807],.lines-olive[data-v-cd70e807]{color:#8dc63f}.text-green[data-v-cd70e807],.line-green[data-v-cd70e807],.lines-green[data-v-cd70e807]{color:#39b54a}.text-cyan[data-v-cd70e807],.line-cyan[data-v-cd70e807],.lines-cyan[data-v-cd70e807]{color:#1cbbb4}.text-blue[data-v-cd70e807],.line-blue[data-v-cd70e807],.lines-blue[data-v-cd70e807]{color:#0081ff}.text-purple[data-v-cd70e807],.line-purple[data-v-cd70e807],.lines-purple[data-v-cd70e807]{color:#6739b6}.text-mauve[data-v-cd70e807],.line-mauve[data-v-cd70e807],.lines-mauve[data-v-cd70e807]{color:#9c26b0}.text-pink[data-v-cd70e807],.line-pink[data-v-cd70e807],.lines-pink[data-v-cd70e807]{color:#e03997}.text-brown[data-v-cd70e807],.line-brown[data-v-cd70e807],.lines-brown[data-v-cd70e807]{color:#a5673f}.text-grey[data-v-cd70e807],.line-grey[data-v-cd70e807],.lines-grey[data-v-cd70e807]{color:#8799a3}.text-gray[data-v-cd70e807],.line-gray[data-v-cd70e807],.lines-gray[data-v-cd70e807]{color:#aaa}.text-black[data-v-cd70e807],.line-black[data-v-cd70e807],.lines-black[data-v-cd70e807]{color:#333}.text-white[data-v-cd70e807],.line-white[data-v-cd70e807],.lines-white[data-v-cd70e807]{color:#fff}.zy-upgrade-topbg-green[data-v-cd70e807]{background-image:url(../../../assets/green.20d5f80a.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-red[data-v-cd70e807]{background-image:url(../../../assets/red.8267d3cf.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-pink[data-v-cd70e807]{background-image:url(../../../assets/pink.78f243a3.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-yellow[data-v-cd70e807]{background-image:url(../../../assets/yellow.4438648c.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-blue[data-v-cd70e807]{background-size:100% 100%;background-repeat:no-repeat}.zy-upgrade-title[data-v-cd70e807]{font-size:1.09375rem;font-weight:600}.all[data-v-8b11c490]{margin-top:1.40625rem}.all .all-content[data-v-8b11c490]{width:100%;height:40.625rem}.all[data-v-842c1160]{margin-top:1.40625rem}.all .all-content[data-v-842c1160]{width:100%;height:40.625rem}.index-content-other[data-v-ccb4084b]{width:100%;height:100%;transition:opacity 1s ease;position:relative;background-color:#eff0f4}.index-content-right[data-v-ccb4084b]{width:100%;border-radius:1.5625rem;display:flex;align-items:center;padding-top:3.125rem;font-size:1rem}.item[data-v-ccb4084b]{display:flex;align-items:center;justify-content:space-between;width:100%;height:4.0625rem}.item .left-item[data-v-ccb4084b]{display:flex;align-items:center;margin-left:.625rem}.item .left-item .left-icon[data-v-ccb4084b]{margin:0 .625rem;width:1.25rem;height:1.25rem}.item .right-item[data-v-ccb4084b]{display:flex;align-items:center;margin-right:1.5625rem}.item .right-item .right-icon[data-v-ccb4084b]{width:.46875rem;height:.9375rem}.array-father[data-v-ccb4084b]{background-color:rgba(255,255,255,.6);width:76%;margin-left:12%;border-radius:.9375rem;margin-top:.9375rem}.bottom-button[data-v-ccb4084b]{margin-top:.9375rem;background-color:rgba(255,255,255,.6);width:76%;margin-left:12%;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:.9375rem;height:3.125rem;color:#0174d3}.popup-any[data-v-ccb4084b]{position:fixed;top:0;right:0;bottom:0;left:0;opacity:0;transition:opacity .5s ease;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4);z-index:999}.mask[data-v-ccb4084b]{position:absolute;top:0;right:0;bottom:0;left:0}.box-any[data-v-ccb4084b]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:31.25rem;height:46.875rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;padding:2.03125rem 1.875rem}.title-left[data-v-ccb4084b]{display:flex;align-items:center;justify-content:center}.title-left .back-img[data-v-ccb4084b]{width:1.875rem;height:1.875rem;margin-right:.9375rem}.title-left .back-font[data-v-ccb4084b]{font-size:1.09375rem;font-weight:600}.back-img[data-v-ccb4084b]{width:.9375rem;height:.9375rem;margin-left:3.125rem;margin-right:.625rem}.text-center[data-v-ccb4084b]{margin-top:1.25rem;width:100%;display:flex;justify-content:center}
+.neuro-wrapper[data-v-9117e9d1]{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;z-index:999;opacity:0;pointer-events:none;transition:opacity .3s ease}.neuro-wrapper.is-active[data-v-9117e9d1]{opacity:1;pointer-events:auto}.neuro-mask[data-v-9117e9d1]{position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.3)}.neuro-box[data-v-9117e9d1]{position:relative;width:18.75rem;height:14.0625rem;border-radius:.9375rem;background-color:#fff;display:flex;flex-direction:column;align-items:center;z-index:1;padding:0 10%}.button[data-v-9117e9d1]{width:47%;background-color:#ddf0ff;display:flex;justify-content:center;align-items:center;color:#007cff;border:.03125rem solid #007CFF;font-size:.78125rem;border-radius:.9375rem}.title[data-v-9117e9d1]{margin-top:2.1875rem}.card-font[data-v-9117e9d1]{margin-top:2.1875rem;width:18.75rem;justify-content:center;display:flex}.button-white[data-v-9117e9d1]{width:47%;border:.0625rem solid #c3cacd;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:.78125rem;border-radius:.9375rem}.button-father[data-v-9117e9d1]{position:absolute;bottom:1.875rem;left:50%;transform:translate(-50%);width:100%;height:2.1875rem;display:flex;justify-content:space-between;padding:0 1.5625rem}.neuro-wrapper[data-v-8de7e110]{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;z-index:999;opacity:0;pointer-events:none;transition:opacity .3s ease}.neuro-wrapper.is-active[data-v-8de7e110]{opacity:1;pointer-events:auto}.neuro-mask[data-v-8de7e110]{position:absolute;top:0;right:0;bottom:0;left:0;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4)}.neuro-box[data-v-8de7e110]{position:relative;width:23.4375rem;height:21.875rem;border-radius:.9375rem;background-color:#fff;display:flex;flex-direction:column;align-items:center;z-index:1;padding:0 10%}.button[data-v-8de7e110]{width:100%;display:flex;justify-content:center;align-items:center;color:#fff;font-size:.78125rem;border-radius:1.09375rem;margin-left:.625rem;color:#007cff;font-size:.9375rem;background-color:#ddf0ff;border:.03125rem solid #007CFF}.title[data-v-8de7e110]{margin-top:2.1875rem;font-weight:600;font-size:1.09375rem}.card-font[data-v-8de7e110]{margin-top:2.1875rem;width:18.75rem;justify-content:center;display:flex}.button-white[data-v-8de7e110]{width:47%;border:.0625rem solid #c3cacd;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:.78125rem;border-radius:.9375rem}.button-father[data-v-8de7e110]{position:absolute;bottom:2.1875rem;left:50%;transform:translate(-50%);width:100%;height:2.5rem;display:flex;justify-content:center;padding:0 3.4375rem}.password-father[data-v-8de7e110]{margin-top:.9375rem;width:23.4375rem;padding:0 3.75rem;height:2.5rem}.password-father .password[data-v-8de7e110]{width:100%;background-color:rgba(239,240,244,.5);border-radius:.71875rem;height:2.5rem;padding-left:.625rem;font-size:.84375rem}.zy-modal[data-v-cd70e807]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1110;opacity:0;outline:0;text-align:center;transform:scale(1.185);-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:62.5rem;background:rgba(0,0,0,.6);transition:all .3s ease-in-out 0s;pointer-events:none}.zy-modal[data-v-cd70e807]:before{content:"\200b";display:inline-block;height:100%;vertical-align:middle}.zy-modal.show[data-v-cd70e807]{opacity:1;transition-duration:.3s;transform:scale(1);overflow-x:hidden;overflow-y:auto;pointer-events:auto}.zy-dialog[data-v-cd70e807]{position:relative;display:inline-block;vertical-align:middle;margin-left:auto;margin-right:auto;width:21.25rem;max-width:100%;background-color:#f8f8f8;border-radius:.3125rem;overflow:hidden}.zy-modal.bottom-modal[data-v-cd70e807]:before{vertical-align:bottom}.zy-modal.bottom-modal .zy-dialog[data-v-cd70e807]{width:100%;border-radius:0}.zy-modal.bottom-modal[data-v-cd70e807]{margin-bottom:-31.25rem}.zy-modal.bottom-modal.show[data-v-cd70e807]{margin-bottom:0}.zy-modal.drawer-modal[data-v-cd70e807]{transform:scale(1);display:flex}.zy-modal.drawer-modal .zy-dialog[data-v-cd70e807]{height:100%;min-width:6.25rem;border-radius:0;margin:initial;transition-duration:.3s}.zy-modal.drawer-modal.justify-start .zy-dialog[data-v-cd70e807]{transform:translate(-100%)}.zy-modal.drawer-modal.justify-end .zy-dialog[data-v-cd70e807]{transform:translate(100%)}.zy-modal.drawer-modal.show .zy-dialog[data-v-cd70e807]{transform:translate(0)}.zy-modal .zy-dialog>.zy-bar:first-child .action[data-v-cd70e807]{min-width:3.125rem;margin-right:0;min-height:3.125rem}.zy-progress[data-v-cd70e807]{overflow:hidden;height:.875rem;background-color:#ebeef5;display:inline-flex;align-items:center;width:100%}.zy-progress+uni-view[data-v-cd70e807],.zy-progress+uni-text[data-v-cd70e807]{line-height:1}.zy-progress.xs[data-v-cd70e807]{height:.3125rem}.zy-progress.sm[data-v-cd70e807]{height:.625rem}.zy-progress uni-view[data-v-cd70e807]{width:0;height:100%;align-items:center;display:flex;justify-items:flex-end;justify-content:space-around;font-size:.625rem;color:#fff;transition:width .6s ease}.zy-progress uni-text[data-v-cd70e807]{align-items:center;display:flex;font-size:.625rem;color:#333;text-indent:.3125rem}.zy-progress.text-progress[data-v-cd70e807]{padding-right:1.875rem}.zy-progress.striped uni-view[data-v-cd70e807]{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:2.25rem 2.25rem}.zy-progress.active uni-view[data-v-cd70e807]{animation:progress-stripes-cd70e807 2s linear infinite}@keyframes progress-stripes-cd70e807{0%{background-position:2.25rem 0}to{background-position:0 0}}.zy-btn[data-v-cd70e807]{height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.zy-btn[data-v-cd70e807]:after{display:none}.zy-btn[data-v-cd70e807]:not([class*=bg-]){background-color:#f0f0f0}.zy-btn[class*=line][data-v-cd70e807]{background-color:transparent}.zy-btn[class*=line][data-v-cd70e807]:after{content:" ";display:block;width:200%;height:200%;position:absolute;top:0;left:0;border:.03125rem solid currentColor;transform:scale(.5);transform-origin:0 0;box-sizing:border-box;border-radius:.375rem;z-index:1;pointer-events:none}.zy-btn.round[class*=line][data-v-cd70e807]:after{border-radius:31.25rem}.zy-btn[class*=lines][data-v-cd70e807]:after{border:.1875rem solid currentColor}.zy-btn[class*=bg-][data-v-cd70e807]:after{display:none}.zy-btn.sm[data-v-cd70e807]{padding:0 .625rem;font-size:.625rem;height:1.5rem}.zy-btn.lg[data-v-cd70e807]{padding:0 1.25rem;font-size:1rem;height:2.5rem}.zy-btn.cuIcon.sm[data-v-cd70e807]{width:1.5rem;height:1.5rem}.zy-btn.cuIcon[data-v-cd70e807]{width:2rem;height:2rem;border-radius:15.625rem;padding:0}uni-button.cuIcon.lg[data-v-cd70e807]{width:2.5rem;height:2.5rem}.zy-btn.shadow-blur[data-v-cd70e807]:before{top:.125rem;left:.125rem;filter:blur(.1875rem);opacity:.6}.zy-btn.button-hover[data-v-cd70e807]{transform:translate(.03125rem,.03125rem)}.block[data-v-cd70e807]{display:block}.zy-btn.block[data-v-cd70e807]{display:flex}.zy-btn[disabled][data-v-cd70e807]{opacity:.6;color:#fff}.margin-0[data-v-cd70e807]{margin:0}.margin-xs[data-v-cd70e807]{margin:.3125rem}.margin-sm[data-v-cd70e807]{margin:.625rem}.margin[data-v-cd70e807]{margin:.9375rem}.margin-lg[data-v-cd70e807]{margin:1.25rem}.margin-xl[data-v-cd70e807]{margin:1.5625rem}.margin-top-xs[data-v-cd70e807]{margin-top:.3125rem}.margin-top-sm[data-v-cd70e807]{margin-top:.625rem}.margin-top[data-v-cd70e807]{margin-top:.9375rem}.margin-top-lg[data-v-cd70e807]{margin-top:1.25rem}.margin-top-xl[data-v-cd70e807]{margin-top:1.5625rem}.margin-right-xs[data-v-cd70e807]{margin-right:.3125rem}.margin-right-sm[data-v-cd70e807]{margin-right:.625rem}.margin-right[data-v-cd70e807]{margin-right:.9375rem}.margin-right-lg[data-v-cd70e807]{margin-right:1.25rem}.margin-right-xl[data-v-cd70e807]{margin-right:1.5625rem}.margin-bottom-xs[data-v-cd70e807]{margin-bottom:.3125rem}.margin-bottom-sm[data-v-cd70e807]{margin-bottom:.625rem}.margin-bottom[data-v-cd70e807]{margin-bottom:.9375rem}.margin-bottom-lg[data-v-cd70e807]{margin-bottom:1.25rem}.margin-bottom-xl[data-v-cd70e807]{margin-bottom:1.5625rem}.margin-left-xs[data-v-cd70e807]{margin-left:.3125rem}.margin-left-sm[data-v-cd70e807]{margin-left:.625rem}.margin-left[data-v-cd70e807]{margin-left:.9375rem}.margin-left-lg[data-v-cd70e807]{margin-left:1.25rem}.margin-left-xl[data-v-cd70e807]{margin-left:1.5625rem}.margin-lr-xs[data-v-cd70e807]{margin-left:.3125rem;margin-right:.3125rem}.margin-lr-sm[data-v-cd70e807]{margin-left:.625rem;margin-right:.625rem}.margin-lr[data-v-cd70e807]{margin-left:.9375rem;margin-right:.9375rem}.margin-lr-lg[data-v-cd70e807]{margin-left:1.25rem;margin-right:1.25rem}.margin-lr-xl[data-v-cd70e807]{margin-left:1.5625rem;margin-right:1.5625rem}.margin-tb-xs[data-v-cd70e807]{margin-top:.3125rem;margin-bottom:.3125rem}.margin-tb-sm[data-v-cd70e807]{margin-top:.625rem;margin-bottom:.625rem}.margin-tb[data-v-cd70e807]{margin-top:.9375rem;margin-bottom:.9375rem}.margin-tb-lg[data-v-cd70e807]{margin-top:1.25rem;margin-bottom:1.25rem}.margin-tb-xl[data-v-cd70e807]{margin-top:1.5625rem;margin-bottom:1.5625rem}.padding-0[data-v-cd70e807]{padding:0}.padding-xs[data-v-cd70e807]{padding:.3125rem}.padding-sm[data-v-cd70e807]{padding:.625rem}.padding[data-v-cd70e807]{padding:.9375rem}.padding-lg[data-v-cd70e807]{padding:1.25rem}.padding-xl[data-v-cd70e807]{padding:1.5625rem}.padding-top-xs[data-v-cd70e807]{padding-top:.3125rem}.padding-top-sm[data-v-cd70e807]{padding-top:.625rem}.padding-top[data-v-cd70e807]{padding-top:.9375rem}.padding-top-lg[data-v-cd70e807]{padding-top:1.25rem}.padding-top-xl[data-v-cd70e807]{padding-top:1.5625rem}.padding-right-xs[data-v-cd70e807]{padding-right:.3125rem}.padding-right-sm[data-v-cd70e807]{padding-right:.625rem}.padding-right[data-v-cd70e807]{padding-right:.9375rem}.padding-right-lg[data-v-cd70e807]{padding-right:1.25rem}.padding-right-xl[data-v-cd70e807]{padding-right:1.5625rem}.padding-bottom-xs[data-v-cd70e807]{padding-bottom:.3125rem}.padding-bottom-sm[data-v-cd70e807]{padding-bottom:.625rem}.padding-bottom[data-v-cd70e807]{padding-bottom:.9375rem}.padding-bottom-lg[data-v-cd70e807]{padding-bottom:1.25rem}.padding-bottom-xl[data-v-cd70e807]{padding-bottom:1.5625rem}.padding-left-xs[data-v-cd70e807]{padding-left:.3125rem}.padding-left-sm[data-v-cd70e807]{padding-left:.625rem}.padding-left[data-v-cd70e807]{padding-left:.9375rem}.padding-left-lg[data-v-cd70e807]{padding-left:1.25rem}.padding-left-xl[data-v-cd70e807]{padding-left:1.5625rem}.padding-lr-xs[data-v-cd70e807]{padding-left:.3125rem;padding-right:.3125rem}.padding-lr-sm[data-v-cd70e807]{padding-left:.625rem;padding-right:.625rem}.padding-lr[data-v-cd70e807]{padding-left:.9375rem;padding-right:.9375rem}.padding-lr-lg[data-v-cd70e807]{padding-left:1.25rem;padding-right:1.25rem}.padding-lr-xl[data-v-cd70e807]{padding-left:1.5625rem;padding-right:1.5625rem}.padding-tb-xs[data-v-cd70e807]{padding-top:.3125rem;padding-bottom:.3125rem}.padding-tb-sm[data-v-cd70e807]{padding-top:.625rem;padding-bottom:.625rem}.padding-tb[data-v-cd70e807]{padding-top:.9375rem;padding-bottom:.9375rem}.padding-tb-lg[data-v-cd70e807]{padding-top:1.25rem;padding-bottom:1.25rem}.padding-tb-xl[data-v-cd70e807]{padding-top:1.5625rem;padding-bottom:1.5625rem}.zy-bar[data-v-cd70e807]{display:flex;position:relative;align-items:center;min-height:3.125rem;justify-content:space-between}.zy-bar .action[data-v-cd70e807]{display:flex;align-items:center;height:100%;justify-content:center;max-width:100%}.zy-bar .action.border-title[data-v-cd70e807]{position:relative;top:-.3125rem}.zy-bar .action.border-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;bottom:-.5rem;min-width:2rem;height:.1875rem;left:0}.zy-bar .action.sub-title[data-v-cd70e807]{position:relative;top:-.2rem}.zy-bar .action.sub-title uni-text[data-v-cd70e807]{position:relative;z-index:1}.zy-bar .action.sub-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.2rem;border-radius:.1875rem;width:100%;height:.6rem;left:.6rem;opacity:.3;z-index:0}.zy-bar .action.sub-title uni-text[class*=text-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.7rem;left:.5rem;opacity:.2;z-index:0;text-align:right;font-weight:900;font-size:1.125rem}.zy-bar.justify-center .action.border-title uni-text[data-v-cd70e807]:last-child,.zy-bar.justify-center .action.sub-title uni-text[data-v-cd70e807]:last-child{left:0;right:0;margin:auto;text-align:center}.zy-bar .action[data-v-cd70e807]:first-child{margin-left:.9375rem;font-size:.9375rem}.zy-bar .action uni-text.text-cut[data-v-cd70e807]{text-align:left;width:100%}.zy-bar .zy-avatar[data-v-cd70e807]:first-child{margin-left:.625rem}.zy-bar .action:first-child>uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:-.3em;margin-right:.3em}.zy-bar .action[data-v-cd70e807]:last-child{margin-right:.9375rem}.zy-bar .action>uni-text[class*=cuIcon-][data-v-cd70e807],.zy-bar .action>uni-view[class*=cuIcon-][data-v-cd70e807]{font-size:1.125rem}.zy-bar .action>uni-text[class*=cuIcon-]+uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:.5em}.zy-bar .content[data-v-cd70e807]{position:absolute;text-align:center;width:calc(100% - 10.625rem);left:0;right:0;bottom:0;top:0;margin:auto;height:1.875rem;font-size:1rem;line-height:1.875rem;cursor:none;pointer-events:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.zy-bar.ios .content[data-v-cd70e807]{bottom:7px;height:30px;font-size:1rem;line-height:30px}.zy-bar.btn-group[data-v-cd70e807]{justify-content:space-around}.zy-bar.btn-group uni-button[data-v-cd70e807]{padding:.625rem 1rem}.zy-bar.btn-group uni-button[data-v-cd70e807]{flex:1;margin:0 .625rem;max-width:50%}.zy-bar .search-form[data-v-cd70e807]{background-color:#f5f5f5;line-height:2rem;height:2rem;font-size:.75rem;color:#333;flex:1;display:flex;align-items:center;margin:0 .9375rem}.zy-bar .search-form+.action[data-v-cd70e807]{margin-right:.9375rem}.zy-bar .search-form uni-input[data-v-cd70e807]{flex:1;padding-right:.9375rem;height:2rem;line-height:2rem;font-size:.8125rem;background-color:transparent}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]{margin:0 .5em 0 .8em}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]:before{top:0}.zy-bar.fixed[data-v-cd70e807],.nav.fixed[data-v-cd70e807]{position:fixed;width:100%;top:0;z-index:1024;box-shadow:0 .03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.foot[data-v-cd70e807]{position:fixed;width:100%;bottom:0;z-index:1024;box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar[data-v-cd70e807]{padding:0;height:calc(3.125rem + env(safe-area-inset-bottom)/2);padding-bottom:calc(env(safe-area-inset-bottom)/2)}.zy-tabbar-height[data-v-cd70e807]{min-height:3.125rem;height:calc(3.125rem + env(safe-area-inset-bottom)/2)}.zy-bar.tabbar.shadow[data-v-cd70e807]{box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar .action[data-v-cd70e807]{font-size:.6875rem;position:relative;flex:1;text-align:center;padding:0;display:block;height:auto;line-height:1;margin:0;background-color:inherit;overflow:initial}.zy-bar.tabbar.shop .action[data-v-cd70e807]{width:4.375rem;flex:initial}.zy-bar.tabbar .action.add-action[data-v-cd70e807]{position:relative;z-index:2;padding-top:1.5625rem}.zy-bar.tabbar .action.add-action [class*=cuIcon-][data-v-cd70e807]{position:absolute;width:2.1875rem;z-index:2;height:2.1875rem;border-radius:50%;line-height:2.1875rem;font-size:1.5625rem;top:-1.09375rem;left:0;right:0;margin:auto;padding:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:after{content:"";position:absolute;width:3.125rem;height:3.125rem;top:-1.5625rem;left:0;right:0;margin:auto;box-shadow:0 -.09375rem .25rem rgba(0,0,0,.08);border-radius:1.5625rem;background-color:inherit;z-index:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:before{content:"";position:absolute;width:3.125rem;height:.9375rem;bottom:.9375rem;left:0;right:0;margin:auto;background-color:inherit;z-index:1}.zy-bar.tabbar .btn-group[data-v-cd70e807]{flex:1;display:flex;justify-content:space-around;align-items:center;padding:0 .3125rem}.zy-bar.tabbar uni-button.action[data-v-cd70e807]:after{border:0}.zy-bar.tabbar .action [class*=cuIcon-][data-v-cd70e807]{width:3.125rem;position:relative;display:block;height:auto;margin:0 auto .3125rem;text-align:center;font-size:1.25rem}.zy-bar.tabbar .action .cuIcon-zy-image[data-v-cd70e807]{margin:0 auto}.zy-bar.tabbar .action .cuIcon-zy-image uni-image[data-v-cd70e807]{width:1.5625rem;height:1.5625rem;display:inline-block}.zy-bar.tabbar .submit[data-v-cd70e807]{align-items:center;display:flex;justify-content:center;text-align:center;position:relative;flex:2;align-self:stretch}.zy-bar.tabbar .submit[data-v-cd70e807]:last-child{flex:2.6}.zy-bar.tabbar .submit+.submit[data-v-cd70e807]{flex:2}.zy-bar.tabbar.border .action[data-v-cd70e807]:before{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;transform:scale(.5);transform-origin:0 0;border-right:.03125rem solid rgba(0,0,0,.1);z-index:3}.zy-bar.tabbar.border .action[data-v-cd70e807]:last-child:before{display:none}.zy-bar.input[data-v-cd70e807]{padding-right:.625rem;background-color:#fff}.zy-bar.input uni-input[data-v-cd70e807]{overflow:initial;line-height:2rem;height:2rem;min-height:2rem;flex:1;font-size:.9375rem;margin:0 .625rem}.zy-bar.input .action[data-v-cd70e807]{margin-left:.625rem}.zy-bar.input .action [class*=cuIcon-][data-v-cd70e807]{font-size:1.5rem}.zy-bar.input uni-input+.action[data-v-cd70e807]{margin-right:.625rem;margin-left:0}.zy-bar.input .action:first-child [class*=cuIcon-][data-v-cd70e807]{margin-left:0}.zy-custom[data-v-cd70e807]{display:block;position:relative}.zy-custom .zy-bar .content[data-v-cd70e807]{width:calc(100% - 13.75rem)}.zy-custom .zy-bar .content uni-image[data-v-cd70e807]{height:1.875rem;width:7.5rem}.zy-custom .zy-bar[data-v-cd70e807]{min-height:0px;box-shadow:0 0;z-index:9999}.zy-custom .zy-bar .border-custom[data-v-cd70e807]{position:relative;background:rgba(0,0,0,.15);border-radius:31.25rem;height:30px}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:after{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;border-radius:inherit;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:.03125rem solid #ffffff;opacity:.5}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:before{content:" ";width:.03125rem;height:110%;position:absolute;top:22.5%;left:0;right:0;margin:auto;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;opacity:.6;background-color:#fff}.zy-custom .zy-bar .border-custom uni-text[data-v-cd70e807]{display:block;flex:1;margin:auto!important;text-align:center;font-size:1.0625rem}.flex[data-v-cd70e807]{display:flex}.basis-xs[data-v-cd70e807]{flex-basis:20%}.basis-sm[data-v-cd70e807]{flex-basis:40%}.basis-df[data-v-cd70e807]{flex-basis:50%}.basis-lg[data-v-cd70e807]{flex-basis:60%}.basis-xl[data-v-cd70e807]{flex-basis:80%}.flex-sub[data-v-cd70e807]{flex:1}.flex-twice[data-v-cd70e807]{flex:2}.flex-treble[data-v-cd70e807]{flex:3}.flex-direction[data-v-cd70e807]{flex-direction:column}.flex-wrap[data-v-cd70e807]{flex-wrap:wrap}.align-start[data-v-cd70e807]{align-items:flex-start}.align-end[data-v-cd70e807]{align-items:flex-end}.align-center[data-v-cd70e807]{align-items:center}.self-start[data-v-cd70e807]{align-self:flex-start}.self-center[data-v-cd70e807]{align-self:flex-center}.self-end[data-v-cd70e807]{align-self:flex-end}.self-stretch[data-v-cd70e807]{align-self:stretch}.align-stretch[data-v-cd70e807]{align-items:stretch}.justify-start[data-v-cd70e807]{justify-content:flex-start}.justify-end[data-v-cd70e807]{justify-content:flex-end}.justify-center[data-v-cd70e807]{justify-content:center}.justify-between[data-v-cd70e807]{justify-content:space-between}.justify-around[data-v-cd70e807]{justify-content:space-around}.line-red[data-v-cd70e807]:after,.lines-red[data-v-cd70e807]:after{border-color:#e54d42}.line-orange[data-v-cd70e807]:after,.lines-orange[data-v-cd70e807]:after{border-color:#f37b1d}.line-yellow[data-v-cd70e807]:after,.lines-yellow[data-v-cd70e807]:after{border-color:#fbbd08}.line-olive[data-v-cd70e807]:after,.lines-olive[data-v-cd70e807]:after{border-color:#8dc63f}.line-green[data-v-cd70e807]:after,.lines-green[data-v-cd70e807]:after{border-color:#39b54a}.line-cyan[data-v-cd70e807]:after,.lines-cyan[data-v-cd70e807]:after{border-color:#1cbbb4}.line-blue[data-v-cd70e807]:after,.lines-blue[data-v-cd70e807]:after{border-color:#0081ff}.line-purple[data-v-cd70e807]:after,.lines-purple[data-v-cd70e807]:after{border-color:#6739b6}.line-mauve[data-v-cd70e807]:after,.lines-mauve[data-v-cd70e807]:after{border-color:#9c26b0}.line-pink[data-v-cd70e807]:after,.lines-pink[data-v-cd70e807]:after{border-color:#e03997}.line-brown[data-v-cd70e807]:after,.lines-brown[data-v-cd70e807]:after{border-color:#a5673f}.line-grey[data-v-cd70e807]:after,.lines-grey[data-v-cd70e807]:after{border-color:#8799a3}.line-gray[data-v-cd70e807]:after,.lines-gray[data-v-cd70e807]:after{border-color:#aaa}.line-black[data-v-cd70e807]:after,.lines-black[data-v-cd70e807]:after{border-color:#333}.line-white[data-v-cd70e807]:after,.lines-white[data-v-cd70e807]:after{border-color:#fff}.bg-red[data-v-cd70e807]{background-color:#e54d42;color:#fff}.bg-orange[data-v-cd70e807]{background-color:#f37b1d;color:#fff}.bg-yellow[data-v-cd70e807]{background-color:#fbbd08;color:#333}.bg-olive[data-v-cd70e807]{background-color:#8dc63f;color:#fff}.bg-green[data-v-cd70e807]{background-color:#39b54a;color:#fff}.bg-cyan[data-v-cd70e807]{background-color:#1cbbb4;color:#fff}.bg-blue[data-v-cd70e807]{background-color:#0081ff;color:#fff}.bg-purple[data-v-cd70e807]{background-color:#6739b6;color:#fff}.bg-mauve[data-v-cd70e807]{background-color:#9c26b0;color:#fff}.bg-pink[data-v-cd70e807]{background-color:#e03997;color:#fff}.bg-brown[data-v-cd70e807]{background-color:#a5673f;color:#fff}.bg-grey[data-v-cd70e807]{background-color:#8799a3;color:#fff}.bg-gray[data-v-cd70e807]{background-color:#f0f0f0;color:#333}.bg-black[data-v-cd70e807]{background-color:#333;color:#fff}.bg-white[data-v-cd70e807]{background-color:#fff;color:#666}.bg-shadeTop[data-v-cd70e807]{background-image:linear-gradient(#000,rgba(0,0,0,.01));color:#fff}.bg-shadeBottom[data-v-cd70e807]{background-image:linear-gradient(rgba(0,0,0,.01),#000);color:#fff}.bg-red.light[data-v-cd70e807]{color:#e54d42;background-color:#fadbd9}.bg-orange.light[data-v-cd70e807]{color:#f37b1d;background-color:#fde6d2}.bg-yellow.light[data-v-cd70e807]{color:#fbbd08;background-color:rgba(254,242,206,.824)}.bg-olive.light[data-v-cd70e807]{color:#8dc63f;background-color:#e8f4d9}.bg-green.light[data-v-cd70e807]{color:#39b54a;background-color:#d7f0db}.bg-cyan.light[data-v-cd70e807]{color:#1cbbb4;background-color:#d2f1f0}.bg-blue.light[data-v-cd70e807]{color:#0081ff;background-color:#cce6ff}.bg-purple.light[data-v-cd70e807]{color:#6739b6;background-color:#e1d7f0}.bg-mauve.light[data-v-cd70e807]{color:#9c26b0;background-color:#ebd4ef}.bg-pink.light[data-v-cd70e807]{color:#e03997;background-color:#f9d7ea}.bg-brown.light[data-v-cd70e807]{color:#a5673f;background-color:#ede1d9}.bg-grey.light[data-v-cd70e807]{color:#8799a3;background-color:#e7ebed}.bg-gradual-red[data-v-cd70e807]{background-image:linear-gradient(45deg,#f43f3b,#ec008c);color:#fff}.bg-gradual-orange[data-v-cd70e807]{background-image:linear-gradient(45deg,#ff9700,#ed1c24);color:#fff}.bg-gradual-green[data-v-cd70e807]{background-image:linear-gradient(45deg,#39b54a,#8dc63f);color:#fff}.bg-gradual-purple[data-v-cd70e807]{background-image:linear-gradient(45deg,#9000ff,#5e00ff);color:#fff}.bg-gradual-pink[data-v-cd70e807]{background-image:linear-gradient(45deg,#ec008c,#6739b6);color:#fff}.bg-gradual-blue[data-v-cd70e807]{background-image:linear-gradient(45deg,#0081ff,#1cbbb4);color:#fff}.shadow[class*=-red][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.shadow[class*=-orange][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.shadow[class*=-yellow][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.shadow[class*=-olive][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.shadow[class*=-green][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.shadow[class*=-cyan][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.shadow[class*=-blue][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.shadow[class*=-purple][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.shadow[class*=-mauve][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.shadow[class*=-pink][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.shadow[class*=-brown][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.shadow[class*=-grey][data-v-cd70e807],.shadow[class*=-gray][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.shadow[class*=-black][data-v-cd70e807],.shadow[class*=-white][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.text-shadow[class*=-red][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.text-shadow[class*=-orange][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.text-shadow[class*=-yellow][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.text-shadow[class*=-olive][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.text-shadow[class*=-green][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.text-shadow[class*=-cyan][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.text-shadow[class*=-blue][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.text-shadow[class*=-purple][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.text-shadow[class*=-mauve][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.text-shadow[class*=-pink][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.text-shadow[class*=-brown][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.text-shadow[class*=-grey][data-v-cd70e807],.text-shadow[class*=-gray][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.text-shadow[class*=-black][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.bg-img[data-v-cd70e807]{background-size:cover;background-position:center;background-repeat:no-repeat}.bg-mask[data-v-cd70e807]{background-color:#333;position:relative}.bg-mask[data-v-cd70e807]:after{content:"";border-radius:inherit;width:100%;height:100%;display:block;background-color:rgba(0,0,0,.4);position:absolute;left:0;right:0;bottom:0;top:0}.bg-mask uni-view[data-v-cd70e807],.bg-mask uni-cover-view[data-v-cd70e807]{z-index:5;position:relative}.bg-video[data-v-cd70e807]{position:relative}.bg-video uni-video[data-v-cd70e807]{display:block;height:100%;width:100%;object-fit:cover;position:absolute;top:0;z-index:0;pointer-events:none}.text-xs[data-v-cd70e807]{font-size:.625rem}.text-sm[data-v-cd70e807]{font-size:.75rem}.text-df[data-v-cd70e807]{font-size:.875rem}.text-lg[data-v-cd70e807]{font-size:1rem}.text-xl[data-v-cd70e807]{font-size:1.125rem}.text-xxl[data-v-cd70e807]{font-size:1.375rem}.text-sl[data-v-cd70e807]{font-size:2.5rem}.text-xsl[data-v-cd70e807]{font-size:3.75rem}.text-Abc[data-v-cd70e807]{text-transform:Capitalize}.text-ABC[data-v-cd70e807]{text-transform:Uppercase}.text-abc[data-v-cd70e807]{text-transform:Lowercase}.text-price[data-v-cd70e807]:before{content:"\a5";font-size:80%;margin-right:.125rem}.text-cut[data-v-cd70e807]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.text-bold[data-v-cd70e807]{font-weight:700}.text-center[data-v-cd70e807]{text-align:center}.text-content[data-v-cd70e807]{line-height:1.6}.text-left[data-v-cd70e807]{text-align:left}.text-right[data-v-cd70e807]{text-align:right}.text-red[data-v-cd70e807],.line-red[data-v-cd70e807],.lines-red[data-v-cd70e807]{color:#e54d42}.text-orange[data-v-cd70e807],.line-orange[data-v-cd70e807],.lines-orange[data-v-cd70e807]{color:#f37b1d}.text-yellow[data-v-cd70e807],.line-yellow[data-v-cd70e807],.lines-yellow[data-v-cd70e807]{color:#fbbd08}.text-olive[data-v-cd70e807],.line-olive[data-v-cd70e807],.lines-olive[data-v-cd70e807]{color:#8dc63f}.text-green[data-v-cd70e807],.line-green[data-v-cd70e807],.lines-green[data-v-cd70e807]{color:#39b54a}.text-cyan[data-v-cd70e807],.line-cyan[data-v-cd70e807],.lines-cyan[data-v-cd70e807]{color:#1cbbb4}.text-blue[data-v-cd70e807],.line-blue[data-v-cd70e807],.lines-blue[data-v-cd70e807]{color:#0081ff}.text-purple[data-v-cd70e807],.line-purple[data-v-cd70e807],.lines-purple[data-v-cd70e807]{color:#6739b6}.text-mauve[data-v-cd70e807],.line-mauve[data-v-cd70e807],.lines-mauve[data-v-cd70e807]{color:#9c26b0}.text-pink[data-v-cd70e807],.line-pink[data-v-cd70e807],.lines-pink[data-v-cd70e807]{color:#e03997}.text-brown[data-v-cd70e807],.line-brown[data-v-cd70e807],.lines-brown[data-v-cd70e807]{color:#a5673f}.text-grey[data-v-cd70e807],.line-grey[data-v-cd70e807],.lines-grey[data-v-cd70e807]{color:#8799a3}.text-gray[data-v-cd70e807],.line-gray[data-v-cd70e807],.lines-gray[data-v-cd70e807]{color:#aaa}.text-black[data-v-cd70e807],.line-black[data-v-cd70e807],.lines-black[data-v-cd70e807]{color:#333}.text-white[data-v-cd70e807],.line-white[data-v-cd70e807],.lines-white[data-v-cd70e807]{color:#fff}.zy-upgrade-topbg-green[data-v-cd70e807]{background-image:url(../../../assets/green.20d5f80a.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-red[data-v-cd70e807]{background-image:url(../../../assets/red.8267d3cf.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-pink[data-v-cd70e807]{background-image:url(../../../assets/pink.78f243a3.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-yellow[data-v-cd70e807]{background-image:url(../../../assets/yellow.4438648c.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-blue[data-v-cd70e807]{background-size:100% 100%;background-repeat:no-repeat}.zy-upgrade-title[data-v-cd70e807]{font-size:1.09375rem;font-weight:600}.all[data-v-8b11c490]{margin-top:1.40625rem}.all .all-content[data-v-8b11c490]{width:100%;height:40.625rem}.all[data-v-842c1160]{margin-top:1.40625rem}.all .all-content[data-v-842c1160]{width:100%;height:40.625rem}.index-content-other[data-v-ccb4084b]{width:100%;height:100%;transition:opacity 1s ease;position:relative;background-color:#eff0f4}.index-content-right[data-v-ccb4084b]{width:100%;border-radius:1.5625rem;display:flex;align-items:center;padding-top:3.125rem;font-size:1rem}.item[data-v-ccb4084b]{display:flex;align-items:center;justify-content:space-between;width:100%;height:4.0625rem}.item .left-item[data-v-ccb4084b]{display:flex;align-items:center;margin-left:.625rem}.item .left-item .left-icon[data-v-ccb4084b]{margin:0 .625rem;width:1.25rem;height:1.25rem}.item .right-item[data-v-ccb4084b]{display:flex;align-items:center;margin-right:1.5625rem}.item .right-item .right-icon[data-v-ccb4084b]{width:.46875rem;height:.9375rem}.array-father[data-v-ccb4084b]{background-color:rgba(255,255,255,.6);width:76%;margin-left:12%;border-radius:.9375rem;margin-top:.9375rem}.bottom-button[data-v-ccb4084b]{margin-top:.9375rem;background-color:rgba(255,255,255,.6);width:76%;margin-left:12%;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:.9375rem;height:3.125rem;color:#0174d3}.popup-any[data-v-ccb4084b]{position:fixed;top:0;right:0;bottom:0;left:0;opacity:0;transition:opacity .5s ease;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4);z-index:999}.mask[data-v-ccb4084b]{position:absolute;top:0;right:0;bottom:0;left:0}.box-any[data-v-ccb4084b]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:31.25rem;height:46.875rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;padding:2.03125rem 1.875rem}.title-left[data-v-ccb4084b]{display:flex;align-items:center;justify-content:center}.title-left .back-img[data-v-ccb4084b]{width:1.875rem;height:1.875rem;margin-right:.9375rem}.title-left .back-font[data-v-ccb4084b]{font-size:1.09375rem;font-weight:600}.back-img[data-v-ccb4084b]{width:.9375rem;height:.9375rem;margin-left:3.125rem;margin-right:.625rem}.text-center[data-v-ccb4084b]{margin-top:1.25rem;width:100%;display:flex;justify-content:center}
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/00.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/00.png
new file mode 100644
index 0000000..b5c8496
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/00.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/01.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/01.png
new file mode 100644
index 0000000..8ce7818
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/01.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/10.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/10.png
new file mode 100644
index 0000000..20d0188
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/10.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/11.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/11.png
new file mode 100644
index 0000000..4afb7a4
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/11.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/20.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/20.png
new file mode 100644
index 0000000..7584047
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/20.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/21.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/21.png
new file mode 100644
index 0000000..1cc00a1
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/21.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/30.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/30.png
new file mode 100644
index 0000000..bae7140
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/30.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/31.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/31.png
new file mode 100644
index 0000000..439de58
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/31.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/40.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/40.png
new file mode 100644
index 0000000..a3b821d
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/40.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/41.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/41.png
new file mode 100644
index 0000000..015c3c3
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/41.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/50.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/50.png
new file mode 100644
index 0000000..12846db
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/50.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/51.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/51.png
new file mode 100644
index 0000000..f077966
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/51.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/60.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/60.png
new file mode 100644
index 0000000..e49613c
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/60.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/61.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/61.png
new file mode 100644
index 0000000..d487215
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/61.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/70.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/70.png
new file mode 100644
index 0000000..56491f7
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/70.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/71.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/71.png
new file mode 100644
index 0000000..83ad832
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/71.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/80.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/80.png
new file mode 100644
index 0000000..0684b6f
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/80.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/watch/Wheel/800.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/800.png
similarity index 100%
rename from unpackage/resources/__UNI__FB2D473/www/static/index/watch/Wheel/800.png
rename to unpackage/resources/__UNI__FB2D473/www/static/index/camera/800.png
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/watch/Wheel/801.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/801.png
similarity index 100%
rename from unpackage/resources/__UNI__FB2D473/www/static/index/watch/Wheel/801.png
rename to unpackage/resources/__UNI__FB2D473/www/static/index/camera/801.png
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/81.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/81.png
new file mode 100644
index 0000000..d2e096a
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/81.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/watch/Wheel/810.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/810.png
similarity index 100%
rename from unpackage/resources/__UNI__FB2D473/www/static/index/watch/Wheel/810.png
rename to unpackage/resources/__UNI__FB2D473/www/static/index/camera/810.png
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/watch/Wheel/811.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/811.png
similarity index 100%
rename from unpackage/resources/__UNI__FB2D473/www/static/index/watch/Wheel/811.png
rename to unpackage/resources/__UNI__FB2D473/www/static/index/camera/811.png
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/watch/Wheel/820.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/820.png
similarity index 100%
rename from unpackage/resources/__UNI__FB2D473/www/static/index/watch/Wheel/820.png
rename to unpackage/resources/__UNI__FB2D473/www/static/index/camera/820.png
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/watch/Wheel/821.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/821.png
similarity index 100%
rename from unpackage/resources/__UNI__FB2D473/www/static/index/watch/Wheel/821.png
rename to unpackage/resources/__UNI__FB2D473/www/static/index/camera/821.png
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/watch/Wheel/830.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/830.png
similarity index 100%
rename from unpackage/resources/__UNI__FB2D473/www/static/index/watch/Wheel/830.png
rename to unpackage/resources/__UNI__FB2D473/www/static/index/camera/830.png
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/watch/Wheel/831.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/831.png
similarity index 100%
rename from unpackage/resources/__UNI__FB2D473/www/static/index/watch/Wheel/831.png
rename to unpackage/resources/__UNI__FB2D473/www/static/index/camera/831.png
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/90.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/90.png
new file mode 100644
index 0000000..0420380
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/90.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/91.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/91.png
new file mode 100644
index 0000000..d17d712
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/91.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/arrow1.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/arrow1.png
new file mode 100644
index 0000000..bc0952f
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/arrow1.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/arrow2.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/arrow2.png
new file mode 100644
index 0000000..0dc5213
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/arrow2.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/arrow3.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/arrow3.png
new file mode 100644
index 0000000..1317337
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/arrow3.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/arrow4.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/arrow4.png
new file mode 100644
index 0000000..23e7a26
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/arrow4.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/arrow5.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/arrow5.png
new file mode 100644
index 0000000..96cd0fa
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/arrow5.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/camera/back.png b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/back.png
new file mode 100644
index 0000000..3de7100
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/camera/back.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/picture/00.png b/unpackage/resources/__UNI__FB2D473/www/static/index/picture/00.png
new file mode 100644
index 0000000..943b5b0
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/picture/00.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/picture/01.png b/unpackage/resources/__UNI__FB2D473/www/static/index/picture/01.png
new file mode 100644
index 0000000..934560e
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/picture/01.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/picture/10.png b/unpackage/resources/__UNI__FB2D473/www/static/index/picture/10.png
new file mode 100644
index 0000000..a4bddfe
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/picture/10.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/picture/11.png b/unpackage/resources/__UNI__FB2D473/www/static/index/picture/11.png
new file mode 100644
index 0000000..a2cbf78
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/picture/11.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/picture/20.png b/unpackage/resources/__UNI__FB2D473/www/static/index/picture/20.png
new file mode 100644
index 0000000..1582c39
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/picture/20.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/picture/21.png b/unpackage/resources/__UNI__FB2D473/www/static/index/picture/21.png
new file mode 100644
index 0000000..bd3955b
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/picture/21.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/picture/30.png b/unpackage/resources/__UNI__FB2D473/www/static/index/picture/30.png
new file mode 100644
index 0000000..697595e
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/picture/30.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/picture/31.png b/unpackage/resources/__UNI__FB2D473/www/static/index/picture/31.png
new file mode 100644
index 0000000..9ad4625
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/picture/31.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/picture/40.png b/unpackage/resources/__UNI__FB2D473/www/static/index/picture/40.png
new file mode 100644
index 0000000..3ae9683
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/picture/40.png differ
diff --git a/unpackage/resources/__UNI__FB2D473/www/static/index/picture/41.png b/unpackage/resources/__UNI__FB2D473/www/static/index/picture/41.png
new file mode 100644
index 0000000..4c9680c
Binary files /dev/null and b/unpackage/resources/__UNI__FB2D473/www/static/index/picture/41.png differ