3.5
This commit is contained in:
parent
97851a0052
commit
8284f8fff4
|
@ -0,0 +1,160 @@
|
||||||
|
<!-- 左侧菜单提取(已废弃)保留一下待用 -->
|
||||||
|
<!-- <template>
|
||||||
|
<view class="left-container">
|
||||||
|
<view class="left-head">
|
||||||
|
<image class="left-head-img" src="/static/index/oldman.png" />
|
||||||
|
<text :class="darkFans?`left-head-font-dark`:`left-head-font`">
|
||||||
|
王金凤
|
||||||
|
</text>
|
||||||
|
</view>
|
||||||
|
<view class="left-img-container">
|
||||||
|
<view v-for="(item,index) in iconList" :key="index" class="blue-circle-pos" >
|
||||||
|
<view class="blue-circle" v-show="index == menuIndex">
|
||||||
|
<image class="blue-circle-size" :src="`/static/index/ray.png`" />
|
||||||
|
</view>
|
||||||
|
<image class="left-img" :src="index == menuIndex ? item.targetUrl : item.url"
|
||||||
|
@click="jumpTonew(item.path)" />
|
||||||
|
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import {
|
||||||
|
defineProps,
|
||||||
|
defineEmits,
|
||||||
|
ref
|
||||||
|
} from 'vue';
|
||||||
|
|
||||||
|
// 定义 Props
|
||||||
|
const props = defineProps({
|
||||||
|
darkFans: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false
|
||||||
|
},
|
||||||
|
menuIndex: {
|
||||||
|
type: Number,
|
||||||
|
default: 0
|
||||||
|
},
|
||||||
|
});
|
||||||
|
// 定义事件
|
||||||
|
const emit = defineEmits(['click']);
|
||||||
|
// 初始化左侧菜单列表
|
||||||
|
const iconList = ref([{
|
||||||
|
url: '/static/index/lefticon/index.png',
|
||||||
|
targetUrl: '/static/index/lefticontarget/blueindex.png',
|
||||||
|
path: `/pages/index/index`
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: '/static/index/lefticon/nurse.png',
|
||||||
|
targetUrl: '/static/index/lefticontarget/bluenurse.png',
|
||||||
|
path: `/pages/doctorsay/index`
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: '/static/index/lefticon/doctor.png',
|
||||||
|
targetUrl: '/static/index/lefticontarget/bluedoctor.png',
|
||||||
|
path: ''
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: '/static/index/lefticon/give.png',
|
||||||
|
targetUrl: '/static/index/lefticontarget/givedark.png',
|
||||||
|
path: ''
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: '/static/index/lefticon/wifi.png',
|
||||||
|
targetUrl: '/static/index/lefticontarget/bluewifi.png',
|
||||||
|
path: ''
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: '/static/index/lefticon/back.png',
|
||||||
|
targetUrl: '/static/index/lefticontarget/blueback.png',
|
||||||
|
path: ''
|
||||||
|
}
|
||||||
|
]);
|
||||||
|
|
||||||
|
const handleClick = () => {
|
||||||
|
emit('click'); // 触发父组件的事件
|
||||||
|
};
|
||||||
|
// 变更菜单
|
||||||
|
|
||||||
|
const jumpTonew = (path) => {
|
||||||
|
const pages = getCurrentPages(); // 获取当前页面栈
|
||||||
|
if (pages.length === 0) return; // 确保有页面
|
||||||
|
const currentPage = pages[pages.length - 1]; // 获取当前页面
|
||||||
|
const currentPath = '/' + currentPage.route; // 获取当前页面路径(带前缀 /)
|
||||||
|
if ((currentPath !== path) && path) {
|
||||||
|
uni.redirectTo({
|
||||||
|
url: path,
|
||||||
|
animationType: 'none', // 取消动画效果
|
||||||
|
animationDuration: 0 // 设置动画持续时间为0,表示没有动画
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="less">
|
||||||
|
.left-container {
|
||||||
|
width: 235rpx;
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
|
.blue-circle-pos {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.blue-circle {
|
||||||
|
position: absolute;
|
||||||
|
top: -50rpx;
|
||||||
|
left: -68rpx;
|
||||||
|
|
||||||
|
.blue-circle-size {
|
||||||
|
width: 170rpx;
|
||||||
|
height: 250rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.left-head {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
.left-head-img {
|
||||||
|
width: 150rpx;
|
||||||
|
height: 150rpx;
|
||||||
|
margin-top: 60rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.left-head-font {
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 40rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.left-head-font-dark {
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 40rpx;
|
||||||
|
background: linear-gradient(to right, #EBF4FF, #ADC4E0);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
color: transparent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.left-img-container {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
// margin-top: 30rpx;
|
||||||
|
|
||||||
|
.left-img {
|
||||||
|
width: 93rpx;
|
||||||
|
height: 93rpx;
|
||||||
|
// margin-top: 25rpx;
|
||||||
|
// margin-bottom: 25rpx;
|
||||||
|
margin: 50rpx 0;
|
||||||
|
z-index: 100;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style> -->
|
|
@ -0,0 +1,17 @@
|
||||||
|
// 定义 Link 类型
|
||||||
|
export type huliListType = {
|
||||||
|
url : string;
|
||||||
|
name : string
|
||||||
|
}
|
||||||
|
// 定义 药品类型
|
||||||
|
export type medType = {
|
||||||
|
url : string;
|
||||||
|
name : string,
|
||||||
|
number : number
|
||||||
|
}
|
||||||
|
// 定义 Link 类型
|
||||||
|
export type roomBtttonType = {
|
||||||
|
url : string;
|
||||||
|
targetUrl : string;
|
||||||
|
name : string
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,7 @@
|
||||||
|
|
||||||
|
// 定义 Link 类型
|
||||||
|
export type roomBtttonType = {
|
||||||
|
url : string;
|
||||||
|
targetUrl : string;
|
||||||
|
name : string
|
||||||
|
}
|
|
@ -0,0 +1,263 @@
|
||||||
|
<!-- 护嘱 -->
|
||||||
|
<template>
|
||||||
|
<view class="right-container" :style="isshow?{opacity: `1`}:{opacity: `0`}">
|
||||||
|
<view class="right-container-title-nav">
|
||||||
|
<text :class="darkFans?`right-container-title-no-dark`:`right-container-title-no`">
|
||||||
|
ID:12345678
|
||||||
|
</text>
|
||||||
|
<text :class="darkFans?`right-container-title-no-dark`:`right-container-title-no`">
|
||||||
|
名称:未命名01
|
||||||
|
</text>
|
||||||
|
|
||||||
|
<view class="right-icons">
|
||||||
|
<image class="right-icons-img" :src="`/static/index/undericons/man.png`" />
|
||||||
|
<view :class="darkFans?`right-icons-font-dark`: `right-icons-font` ">王金福</view>
|
||||||
|
<image class="right-icons-img-icon"
|
||||||
|
:src="darkFans?`/static/index/undericons/face.png`:`/static/index/undericons/facelight.png`" />
|
||||||
|
<image class="right-icons-img-icon"
|
||||||
|
:src="darkFans?`/static/index/undericons/hand.png`:`/static/index/undericons/handlight.png`" />
|
||||||
|
<image class="right-icons-img-icon"
|
||||||
|
:src="darkFans?`/static/index/undericons/out.png`:`/static/index/undericons/outlight.png`" />
|
||||||
|
</view>
|
||||||
|
<view class="right-container-title-class-anhei-button" @click="darkFanschange()" v-show="!darkFans">
|
||||||
|
<text class="right-container-title-class-anhei">
|
||||||
|
切换到暗黑模式
|
||||||
|
</text>
|
||||||
|
</view>
|
||||||
|
<view class="right-container-title-class-anhei-button" :style="darkFans ? { backgroundColor:'#fff' } : {}"
|
||||||
|
@click="darkFanschange()" v-show="darkFans">
|
||||||
|
<text class="right-container-title-class-anhei" :style="darkFans ? { color: 'black' } : {}">
|
||||||
|
取消暗黑模式
|
||||||
|
</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="doctorsay-container">
|
||||||
|
|
||||||
|
</view>
|
||||||
|
<view class="right-container-sec">
|
||||||
|
<view class="under-father">
|
||||||
|
<view class="under-father-view" v-for="(item,index) in undericonList" :key="index"
|
||||||
|
@click="changeMenuUnder(index)">
|
||||||
|
<image class="under-father-light" src="/static/index/undericons/upguang.png"
|
||||||
|
v-show="index === undermenuIndex" />
|
||||||
|
<image class="under-father-img" :src="index === undermenuIndex ? item.targetUrl : item.url" />
|
||||||
|
<view :class="darkFans? `under-father-img-font-dark`:`under-father-img-font`">
|
||||||
|
{{ item.name }}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
</view>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { ref, onMounted, onBeforeUnmount, computed, nextTick, defineProps, defineEmits } from 'vue';
|
||||||
|
import type { roomBtttonType } from "./index";
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
isshow: {
|
||||||
|
type: Boolean,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
darkFans: {
|
||||||
|
type: Boolean,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
// 初始化下面侧单列表
|
||||||
|
const undericonList = ref<roomBtttonType[]>([
|
||||||
|
{ 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: '我的指令' },
|
||||||
|
]);
|
||||||
|
|
||||||
|
// 当前选中的菜单索引
|
||||||
|
const undermenuIndex = ref<number>(0);
|
||||||
|
// 暗黑模式
|
||||||
|
// const darkFans = ref<boolean>(false);
|
||||||
|
const underFans = ref<boolean>(false);
|
||||||
|
// 当前选中的菜单索引
|
||||||
|
const roomTar = ref<number[]>([]);
|
||||||
|
const emit = defineEmits(['darkchange']);
|
||||||
|
// 暗黑模式改变
|
||||||
|
const darkFanschange = () => {
|
||||||
|
emit('darkchange', !props.darkFans);
|
||||||
|
}
|
||||||
|
// 变更底部菜单
|
||||||
|
const changeMenuUnder = (index : number) => {
|
||||||
|
undermenuIndex.value = index;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// 生命周期钩子
|
||||||
|
onMounted(() => {
|
||||||
|
|
||||||
|
});
|
||||||
|
// 在组件销毁时清除定时器
|
||||||
|
onBeforeUnmount(() => {
|
||||||
|
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.right-container {
|
||||||
|
width: calc(100% - 235rpx);
|
||||||
|
height: 100vh;
|
||||||
|
transition: opacity 1s ease;
|
||||||
|
.doctorsay-container{
|
||||||
|
width: 1850rpx;
|
||||||
|
height: 1220rpx;
|
||||||
|
background-color: #fff;
|
||||||
|
border-radius: 80rpx;
|
||||||
|
}
|
||||||
|
.right-container-sec {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.under-father {
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
|
height: 150rpx;
|
||||||
|
|
||||||
|
.under-father-view {
|
||||||
|
margin-left: 10rpx;
|
||||||
|
margin-right: 150rpx;
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
.under-father-light {
|
||||||
|
position: absolute;
|
||||||
|
bottom: -20rpx;
|
||||||
|
left: -90rpx;
|
||||||
|
width: 300rpx;
|
||||||
|
height: 200rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.under-father-img {
|
||||||
|
width: 80rpx;
|
||||||
|
height: 80rpx;
|
||||||
|
margin-left: -3rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.under-father-img-font {
|
||||||
|
font-size: 30rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.under-father-img-font-dark {
|
||||||
|
font-size: 30rpx;
|
||||||
|
background: linear-gradient(to bottom, #FFFFFF, #B2C8E2);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
color: transparent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.right-container-title-nav {
|
||||||
|
margin-top: 75rpx;
|
||||||
|
margin-bottom: 20rpx;
|
||||||
|
margin-left: 20rpx;
|
||||||
|
|
||||||
|
.right-icons {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
float: right;
|
||||||
|
height: 70rpx;
|
||||||
|
margin-right: 40rpx;
|
||||||
|
|
||||||
|
.right-icons-font {
|
||||||
|
margin-left: 10rpx;
|
||||||
|
margin-right: 10rpx;
|
||||||
|
font-size: 35rpx;
|
||||||
|
margin-top: -30rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right-icons-font-dark {
|
||||||
|
color: #fff;
|
||||||
|
margin-left: 10rpx;
|
||||||
|
margin-right: 10rpx;
|
||||||
|
font-size: 35rpx;
|
||||||
|
margin-top: -30rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right-icons-img {
|
||||||
|
width: 80rpx;
|
||||||
|
height: 80rpx;
|
||||||
|
margin-left: 10rpx;
|
||||||
|
margin-right: 10rpx;
|
||||||
|
margin-top: -40rpx;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.right-icons-img-icon {
|
||||||
|
width: 60rpx;
|
||||||
|
height: 80rpx;
|
||||||
|
margin-top: -10rpx;
|
||||||
|
margin-left: 8rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.right-container-title-no {
|
||||||
|
font-size: 35rpx;
|
||||||
|
margin-right: 20rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right-container-title-no-dark {
|
||||||
|
font-size: 35rpx;
|
||||||
|
background: linear-gradient(to bottom, #FFFFFF, #B2C8E2);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
color: transparent;
|
||||||
|
margin-right: 20rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right-container-title-class {
|
||||||
|
font-size: 35rpx;
|
||||||
|
font-weight: 800;
|
||||||
|
margin-left: 20rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right-container-title-class-dark {
|
||||||
|
font-size: 35rpx;
|
||||||
|
font-weight: 800;
|
||||||
|
margin-left: 20rpx;
|
||||||
|
background: linear-gradient(to bottom, #FFFFFF, #B2C8E2);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.right-container-title-class-anhei-button {
|
||||||
|
float: right;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
border-radius: 30rpx;
|
||||||
|
margin-right: 30rpx;
|
||||||
|
width: 200rpx;
|
||||||
|
height: 50rpx;
|
||||||
|
background-color: black;
|
||||||
|
border: 2rpx solid;
|
||||||
|
|
||||||
|
.right-container-title-class-anhei {
|
||||||
|
font-size: 20rpx;
|
||||||
|
font-weight: 800;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -5,7 +5,6 @@
|
||||||
"path": "pages/index/index",
|
"path": "pages/index/index",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationStyle": "custom"
|
"navigationStyle": "custom"
|
||||||
// "orientation": "landscape" // 设置为横屏
|
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
|
@ -13,7 +12,13 @@
|
||||||
"path": "pages/login/login",
|
"path": "pages/login/login",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationStyle": "custom"
|
"navigationStyle": "custom"
|
||||||
// "orientation": "landscape" // 设置为横屏
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "pages/somethingmove/index",
|
||||||
|
"style": {
|
||||||
|
"navigationStyle": "custom"
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
export type Link = {
|
||||||
|
url : string;
|
||||||
|
targetUrl : string;
|
||||||
|
};
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,57 @@
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<view :class="darkFans?`darkbackgroundContainer`:`backgroundContainer`" @click="goback">
|
||||||
|
1111111
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { ref, onMounted, onBeforeUnmount, computed, nextTick } from 'vue';
|
||||||
|
import { onLoad } from '@dcloudio/uni-app';
|
||||||
|
// 暗黑模式
|
||||||
|
const darkFans = ref(false);
|
||||||
|
|
||||||
|
type darkFanstype = {
|
||||||
|
darkFans:boolean
|
||||||
|
}
|
||||||
|
|
||||||
|
// 生命周期钩子
|
||||||
|
onLoad((options:darkFanstype) => {
|
||||||
|
// 为啥这么写,因为options给我返回的是字符转`false`,只能这么写
|
||||||
|
if(options.darkFans === `false`){
|
||||||
|
darkFans.value = false
|
||||||
|
}else{
|
||||||
|
darkFans.value = true
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const goback = () =>{
|
||||||
|
uni.navigateBack()
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="less">
|
||||||
|
.backgroundContainer {
|
||||||
|
display: flex;
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
height: 100vh;
|
||||||
|
background-image: url('/static/index/lightbgcnew.png');
|
||||||
|
background-size: cover;
|
||||||
|
background-position: center center;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
//暗黑模式
|
||||||
|
.darkbackgroundContainer {
|
||||||
|
display: flex;
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
height: 100vh;
|
||||||
|
background-image: url('/static/index/background.png');
|
||||||
|
background-size: cover;
|
||||||
|
background-position: center center;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -1 +1 @@
|
||||||
{"version":3,"file":"app.js","sources":["App.vue"],"sourcesContent":["<script>\r\n\texport default {\r\n\t\tonLaunch: function() {\r\n\t\t\tconsole.log('App Launch')\r\n\t\t},\r\n\t\tonShow: function() {\r\n\t\t\tconsole.log('App Show')\r\n\t\t},\r\n\t\tonHide: function() {\r\n\t\t\tconsole.log('App Hide')\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style>\r\n\t/*每个页面公共css */\r\n</style>\n"],"names":["uni"],"mappings":";;;;;;;AACC,MAAK,YAAU;AAAA,EACd,UAAU,WAAW;AACpBA,kBAAAA,MAAA,MAAA,OAAA,gBAAY,YAAY;AAAA,EACxB;AAAA,EACD,QAAQ,WAAW;AAClBA,kBAAAA,MAAY,MAAA,OAAA,gBAAA,UAAU;AAAA,EACtB;AAAA,EACD,QAAQ,WAAW;AAClBA,kBAAAA,MAAY,MAAA,OAAA,iBAAA,UAAU;AAAA,EACvB;AACD;;;;;;;;;"}
|
{"version":3,"file":"app.js","sources":["App.vue"],"sourcesContent":["<script>\r\n\texport default {\r\n\t\tonLaunch: function() {\r\n\t\t\tconsole.log('App Launch')\r\n\t\t},\r\n\t\tonShow: function() {\r\n\t\t\tconsole.log('App Show')\r\n\t\t},\r\n\t\tonHide: function() {\r\n\t\t\tconsole.log('App Hide')\r\n\t\t}\r\n\t}\r\n</script>\r\n\r\n<style>\r\n\t/*每个页面公共css */\r\n</style>\n"],"names":["uni"],"mappings":";;;;;;;;AACC,MAAK,YAAU;AAAA,EACd,UAAU,WAAW;AACpBA,kBAAAA,MAAA,MAAA,OAAA,gBAAY,YAAY;AAAA,EACxB;AAAA,EACD,QAAQ,WAAW;AAClBA,kBAAAA,MAAY,MAAA,OAAA,gBAAA,UAAU;AAAA,EACtB;AAAA,EACD,QAAQ,WAAW;AAClBA,kBAAAA,MAAY,MAAA,OAAA,iBAAA,UAAU;AAAA,EACvB;AACD;;;;;;;;;"}
|
|
@ -1 +1 @@
|
||||||
{"version":3,"file":"assets.js","sources":["static/index/oldman.png","static/index/customer.png","static/index/undericons/upguang.png"],"sourcesContent":["export default \"__VITE_ASSET__71faa3fc__\"","export default \"__VITE_ASSET__3a5aea25__\"","export default \"__VITE_ASSET__bdab6700__\""],"names":[],"mappings":";AAAA,MAAe,aAAA;ACAf,MAAe,aAAA;ACAf,MAAe,aAAA;;;;"}
|
{"version":3,"file":"assets.js","sources":["static/index/oldman.png","static/index/customer.png","static/index/undericons/upguang.png"],"sourcesContent":["export default \"__VITE_ASSET__71faa3fc__\"","export default \"__VITE_ASSET__3a5aea25__\"","export default \"__VITE_ASSET__bdab6700__\""],"names":[],"mappings":";AAAA,MAAe,eAAA;ACAf,MAAe,eAAA;ACAf,MAAe,aAAA;;;;"}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/component/rightItemsindex/index.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/component/rightItemsindex/index.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
1
unpackage/dist/dev/.sourcemap/mp-weixin/component/rightItemssecond/index.js.map
vendored
Normal file
1
unpackage/dist/dev/.sourcemap/mp-weixin/component/rightItemssecond/index.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
|
@ -0,0 +1 @@
|
||||||
|
{"version":3,"file":"index.js","sources":["pages/doctorsay/index.vue","../Hbuilder/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvZG9jdG9yc2F5L2luZGV4LnZ1ZQ"],"sourcesContent":["<!-- 左侧菜单提取(已废弃)保留一下待用 -->\r\n<template>\r\n\t<view :class=\"darkFans?`darkbackgroundContainer`:`backgroundContainer`\">\r\n\t\t<leftMenu :darkFans=\"darkFans\" :menuIndex=\"1\" ></leftMenu>\r\n\t</view>\n</template>\n\n<script setup>\r\n\timport { ref, onMounted, onBeforeUnmount, computed, nextTick } from 'vue';\r\n\t// import leftMenu from \"../../component/public/leftMenu.vue\"\r\n\t// 暗黑模式\r\n\tconst darkFans = ref(false);\r\n\t// 生命周期钩子\r\n\tonMounted(() => {\r\n\t\tconst value = uni.getStorageSync('darksave');\r\n\t\tconsole.log(\"????0\",value)\r\n\t\tif (value) {\r\n\t\t\tdarkFans.value = value;\r\n\t\t}\r\n\r\n\t});\n</script>\n\n<style scoped lang=\"less\">\r\n\t.backgroundContainer {\r\n\t\tdisplay: flex;\r\n\t\tposition: relative;\r\n\t\twidth: 100%;\r\n\t\theight: 100vh;\r\n\t\tbackground-image: url('/static/index/lightbgcnew.png');\r\n\t\tbackground-size: cover;\r\n\t\tbackground-position: center center;\r\n\t\toverflow: hidden;\r\n\t}\r\n\t\r\n\t//暗黑模式\r\n\t.darkbackgroundContainer {\r\n\t\tdisplay: flex;\r\n\t\tposition: relative;\r\n\t\twidth: 100%;\r\n\t\theight: 100vh;\r\n\t\tbackground-image: url('/static/index/background.png');\r\n\t\tbackground-size: cover;\r\n\t\tbackground-position: center center;\r\n\t\toverflow: hidden;\r\n\t}\n</style>","import MiniProgramPage from 'D:/hldy_app/pages/doctorsay/index.vue'\nwx.createPage(MiniProgramPage)"],"names":["ref","onMounted","uni"],"mappings":";;;;;;;;;AAWC,UAAM,WAAWA,kBAAI,KAAK;AAE1BC,kBAAAA,UAAU,MAAM;AACf,YAAM,QAAQC,cAAAA,MAAI,eAAe,UAAU;AAC3CA,oBAAAA,MAAY,MAAA,OAAA,mCAAA,SAAQ,KAAK;AACzB,UAAI,OAAO;AACV,iBAAS,QAAQ;AAAA,MACjB;AAAA,IAEH,CAAE;;;;;;;;;;;;;ACnBF,GAAG,WAAW,eAAe;"}
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1 @@
|
||||||
|
{"version":3,"file":"index.js","sources":["pages/somethingmove/index.vue","../Hbuilder/HBuilderX/plugins/uniapp-cli-vite/uniPage:/cGFnZXMvc29tZXRoaW5nbW92ZS9pbmRleC52dWU"],"sourcesContent":["\r\n<template>\r\n\t<view :class=\"darkFans?`darkbackgroundContainer`:`backgroundContainer`\" @click=\"goback\">\r\n\t\t1111111\r\n\t</view>\n</template>\n\n<script setup lang=\"ts\">\r\n\timport { ref, onMounted, onBeforeUnmount, computed, nextTick } from 'vue';\r\n\timport { onLoad } from '@dcloudio/uni-app';\r\n\t// 暗黑模式\r\n\tconst darkFans = ref(false);\r\n\t\r\n\ttype darkFanstype = {\r\n\t\tdarkFans:boolean\r\n\t}\r\n\t\r\n\t// 生命周期钩子\r\n\tonLoad((options:darkFanstype) => {\r\n\t\t// 为啥这么写,因为options给我返回的是字符转`false`,只能这么写\r\n\t\tif(options.darkFans === `false`){\r\n\t\t\tdarkFans.value = false\r\n\t\t}else{\r\n\t\t\tdarkFans.value = true\r\n\t\t}\r\n\t});\r\n\r\n\tconst goback = () =>{\r\n\t\tuni.navigateBack()\r\n\t}\r\n\n</script>\n\n<style scoped lang=\"less\">\r\n\t.backgroundContainer {\r\n\t\tdisplay: flex;\r\n\t\tposition: relative;\r\n\t\twidth: 100%;\r\n\t\theight: 100vh;\r\n\t\tbackground-image: url('/static/index/lightbgcnew.png');\r\n\t\tbackground-size: cover;\r\n\t\tbackground-position: center center;\r\n\t\toverflow: hidden;\r\n\t}\r\n\t\r\n\t//暗黑模式\r\n\t.darkbackgroundContainer {\r\n\t\tdisplay: flex;\r\n\t\tposition: relative;\r\n\t\twidth: 100%;\r\n\t\theight: 100vh;\r\n\t\tbackground-image: url('/static/index/background.png');\r\n\t\tbackground-size: cover;\r\n\t\tbackground-position: center center;\r\n\t\toverflow: hidden;\r\n\t}\n</style>","import MiniProgramPage from 'D:/hldy_app/pages/somethingmove/index.vue'\nwx.createPage(MiniProgramPage)"],"names":["ref","onLoad","uni"],"mappings":";;;;;AAWO,UAAA,WAAWA,kBAAI,KAAK;AAO1BC,kBAAA,OAAO,CAAC,YAAyB;AAE7B,UAAA,QAAQ,aAAa,SAAQ;AAC/B,iBAAS,QAAQ;AAAA,MAAA,OACb;AACJ,iBAAS,QAAQ;AAAA,MAClB;AAAA,IAAA,CACA;AAED,UAAM,SAAS,MAAK;AACnBC,oBAAA,MAAI,aAAa;AAAA,IAAA;;;;;;;;;;AC3BnB,GAAG,WAAW,eAAe;"}
|
|
@ -2,7 +2,7 @@
|
||||||
;(function(){
|
;(function(){
|
||||||
let u=void 0,isReady=false,onReadyCallbacks=[],isServiceReady=false,onServiceReadyCallbacks=[];
|
let u=void 0,isReady=false,onReadyCallbacks=[],isServiceReady=false,onServiceReadyCallbacks=[];
|
||||||
const __uniConfig = {"pages":[],"globalStyle":{"backgroundColor":"#F8F8F8","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":"养老App","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":true},"compilerVersion":"4.45","entryPagePath":"pages/index/index","entryPageQuery":"","realEntryPagePath":"","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000},"locales":{},"darkmode":false,"themeConfig":{}};
|
const __uniConfig = {"pages":[],"globalStyle":{"backgroundColor":"#F8F8F8","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":"养老App","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":true},"compilerVersion":"4.45","entryPagePath":"pages/index/index","entryPageQuery":"","realEntryPagePath":"","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000},"locales":{},"darkmode":false,"themeConfig":{}};
|
||||||
const __uniRoutes = [{"path":"pages/index/index","meta":{"isQuit":true,"isEntry":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/login/login","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}}].map(uniRoute=>(uniRoute.meta.route=uniRoute.path,__uniConfig.pages.push(uniRoute.path),uniRoute.path='/'+uniRoute.path,uniRoute));
|
const __uniRoutes = [{"path":"pages/index/index","meta":{"isQuit":true,"isEntry":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/login/login","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/somethingmove/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}}].map(uniRoute=>(uniRoute.meta.route=uniRoute.path,__uniConfig.pages.push(uniRoute.path),uniRoute.path='/'+uniRoute.path,uniRoute));
|
||||||
__uniConfig.styles=[];//styles
|
__uniConfig.styles=[];//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.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()})}});
|
__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()})}});
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,20 @@
|
||||||
|
.backgroundContainer[data-v-ac282b9d] {
|
||||||
|
display: flex;
|
||||||
|
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-ac282b9d] {
|
||||||
|
display: flex;
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
height: 100vh;
|
||||||
|
background-image: url('../../static/index/background.png');
|
||||||
|
background-size: cover;
|
||||||
|
background-position: center center;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
|
@ -4,6 +4,7 @@ const common_vendor = require("./common/vendor.js");
|
||||||
if (!Math) {
|
if (!Math) {
|
||||||
"./pages/index/index.js";
|
"./pages/index/index.js";
|
||||||
"./pages/login/login.js";
|
"./pages/login/login.js";
|
||||||
|
"./pages/somethingmove/index.js";
|
||||||
}
|
}
|
||||||
const _sfc_main = {
|
const _sfc_main = {
|
||||||
onLaunch: function() {
|
onLaunch: function() {
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
{
|
{
|
||||||
"pages": [
|
"pages": [
|
||||||
"pages/index/index",
|
"pages/index/index",
|
||||||
"pages/login/login"
|
"pages/login/login",
|
||||||
|
"pages/somethingmove/index"
|
||||||
],
|
],
|
||||||
"window": {
|
"window": {
|
||||||
"navigationBarTextStyle": "black",
|
"navigationBarTextStyle": "black",
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
const _imports_0 = "/static/index/oldman.png";
|
const _imports_0$2 = "/static/index/oldman.png";
|
||||||
const _imports_1 = "/static/index/customer.png";
|
const _imports_0$1 = "/static/index/customer.png";
|
||||||
const _imports_2 = "/static/index/undericons/upguang.png";
|
const _imports_0 = "/static/index/undericons/upguang.png";
|
||||||
exports._imports_0 = _imports_0;
|
exports._imports_0 = _imports_0$2;
|
||||||
exports._imports_1 = _imports_1;
|
exports._imports_0$1 = _imports_0;
|
||||||
exports._imports_2 = _imports_2;
|
exports._imports_0$2 = _imports_0$1;
|
||||||
//# sourceMappingURL=../../.sourcemap/mp-weixin/common/assets.js.map
|
//# sourceMappingURL=../../.sourcemap/mp-weixin/common/assets.js.map
|
||||||
|
|
|
@ -1333,6 +1333,9 @@ function isReadonly(value) {
|
||||||
function isShallow(value) {
|
function isShallow(value) {
|
||||||
return !!(value && value["__v_isShallow"]);
|
return !!(value && value["__v_isShallow"]);
|
||||||
}
|
}
|
||||||
|
function isProxy(value) {
|
||||||
|
return isReactive(value) || isReadonly(value);
|
||||||
|
}
|
||||||
function toRaw(observed) {
|
function toRaw(observed) {
|
||||||
const raw = observed && observed["__v_raw"];
|
const raw = observed && observed["__v_raw"];
|
||||||
return raw ? toRaw(raw) : observed;
|
return raw ? toRaw(raw) : observed;
|
||||||
|
@ -2609,21 +2612,21 @@ function injectHook(type, hook, target = currentInstance, prepend = false) {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
const createHook = (lifecycle) => (hook, target = currentInstance) => (
|
const createHook$1 = (lifecycle) => (hook, target = currentInstance) => (
|
||||||
// post-create lifecycle registrations are noops during SSR (except for serverPrefetch)
|
// post-create lifecycle registrations are noops during SSR (except for serverPrefetch)
|
||||||
(!isInSSRComponentSetup || lifecycle === "sp") && injectHook(lifecycle, (...args) => hook(...args), target)
|
(!isInSSRComponentSetup || lifecycle === "sp") && injectHook(lifecycle, (...args) => hook(...args), target)
|
||||||
);
|
);
|
||||||
const onBeforeMount = createHook("bm");
|
const onBeforeMount = createHook$1("bm");
|
||||||
const onMounted = createHook("m");
|
const onMounted = createHook$1("m");
|
||||||
const onBeforeUpdate = createHook("bu");
|
const onBeforeUpdate = createHook$1("bu");
|
||||||
const onUpdated = createHook("u");
|
const onUpdated = createHook$1("u");
|
||||||
const onBeforeUnmount = createHook("bum");
|
const onBeforeUnmount = createHook$1("bum");
|
||||||
const onUnmounted = createHook("um");
|
const onUnmounted = createHook$1("um");
|
||||||
const onServerPrefetch = createHook("sp");
|
const onServerPrefetch = createHook$1("sp");
|
||||||
const onRenderTriggered = createHook(
|
const onRenderTriggered = createHook$1(
|
||||||
"rtg"
|
"rtg"
|
||||||
);
|
);
|
||||||
const onRenderTracked = createHook(
|
const onRenderTracked = createHook$1(
|
||||||
"rtc"
|
"rtc"
|
||||||
);
|
);
|
||||||
function onErrorCaptured(hook, target = currentInstance) {
|
function onErrorCaptured(hook, target = currentInstance) {
|
||||||
|
@ -3743,6 +3746,12 @@ const Static = Symbol.for("v-stc");
|
||||||
function isVNode(value) {
|
function isVNode(value) {
|
||||||
return value ? value.__v_isVNode === true : false;
|
return value ? value.__v_isVNode === true : false;
|
||||||
}
|
}
|
||||||
|
const InternalObjectKey = `__vInternal`;
|
||||||
|
function guardReactiveProps(props) {
|
||||||
|
if (!props)
|
||||||
|
return null;
|
||||||
|
return isProxy(props) || InternalObjectKey in props ? extend({}, props) : props;
|
||||||
|
}
|
||||||
const emptyAppContext = createAppContext();
|
const emptyAppContext = createAppContext();
|
||||||
let uid = 0;
|
let uid = 0;
|
||||||
function createComponentInstance(vnode, parent, suspense) {
|
function createComponentInstance(vnode, parent, suspense) {
|
||||||
|
@ -4979,6 +4988,11 @@ function initApp(app) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
const propsCaches = /* @__PURE__ */ Object.create(null);
|
const propsCaches = /* @__PURE__ */ Object.create(null);
|
||||||
|
function renderProps(props) {
|
||||||
|
const { uid: uid2, __counter } = getCurrentInstance();
|
||||||
|
const propsId = (propsCaches[uid2] || (propsCaches[uid2] = [])).push(guardReactiveProps(props)) - 1;
|
||||||
|
return uid2 + "," + propsId + "," + __counter;
|
||||||
|
}
|
||||||
function pruneComponentPropsCache(uid2) {
|
function pruneComponentPropsCache(uid2) {
|
||||||
delete propsCaches[uid2];
|
delete propsCaches[uid2];
|
||||||
}
|
}
|
||||||
|
@ -5167,6 +5181,7 @@ const s = (value) => stringifyStyle(value);
|
||||||
const e = (target, ...sources) => extend(target, ...sources);
|
const e = (target, ...sources) => extend(target, ...sources);
|
||||||
const n = (value) => normalizeClass(value);
|
const n = (value) => normalizeClass(value);
|
||||||
const t = (val) => toDisplayString(val);
|
const t = (val) => toDisplayString(val);
|
||||||
|
const p = (props) => renderProps(props);
|
||||||
function createApp$1(rootComponent, rootProps = null) {
|
function createApp$1(rootComponent, rootProps = null) {
|
||||||
rootComponent && (rootComponent.mpType = "app");
|
rootComponent && (rootComponent.mpType = "app");
|
||||||
return createVueApp(rootComponent, rootProps).use(plugin);
|
return createVueApp(rootComponent, rootProps).use(plugin);
|
||||||
|
@ -6864,7 +6879,7 @@ function initOnError() {
|
||||||
function initRuntimeSocketService() {
|
function initRuntimeSocketService() {
|
||||||
const hosts = "192.168.2.36,127.0.0.1";
|
const hosts = "192.168.2.36,127.0.0.1";
|
||||||
const port = "8090";
|
const port = "8090";
|
||||||
const id = "mp-weixin_uVNRAz";
|
const id = "mp-weixin_U_yuEH";
|
||||||
const lazy = typeof swan !== "undefined";
|
const lazy = typeof swan !== "undefined";
|
||||||
let restoreError = lazy ? () => {
|
let restoreError = lazy ? () => {
|
||||||
} : initOnError();
|
} : initOnError();
|
||||||
|
@ -7796,6 +7811,11 @@ const createSubpackageApp = initCreateSubpackageApp();
|
||||||
wx.createPluginApp = global.createPluginApp = createPluginApp;
|
wx.createPluginApp = global.createPluginApp = createPluginApp;
|
||||||
wx.createSubpackageApp = global.createSubpackageApp = createSubpackageApp;
|
wx.createSubpackageApp = global.createSubpackageApp = createSubpackageApp;
|
||||||
}
|
}
|
||||||
|
const createHook = (lifecycle) => (hook, target = getCurrentInstance()) => {
|
||||||
|
!isInSSRComponentSetup && injectHook(lifecycle, hook, target);
|
||||||
|
};
|
||||||
|
const onShow = /* @__PURE__ */ createHook(ON_SHOW);
|
||||||
|
const onLoad = /* @__PURE__ */ createHook(ON_LOAD);
|
||||||
exports._export_sfc = _export_sfc;
|
exports._export_sfc = _export_sfc;
|
||||||
exports.createSSRApp = createSSRApp;
|
exports.createSSRApp = createSSRApp;
|
||||||
exports.defineComponent = defineComponent;
|
exports.defineComponent = defineComponent;
|
||||||
|
@ -7805,7 +7825,10 @@ exports.index = index;
|
||||||
exports.n = n;
|
exports.n = n;
|
||||||
exports.o = o;
|
exports.o = o;
|
||||||
exports.onBeforeUnmount = onBeforeUnmount;
|
exports.onBeforeUnmount = onBeforeUnmount;
|
||||||
|
exports.onLoad = onLoad;
|
||||||
exports.onMounted = onMounted;
|
exports.onMounted = onMounted;
|
||||||
|
exports.onShow = onShow;
|
||||||
|
exports.p = p;
|
||||||
exports.ref = ref;
|
exports.ref = ref;
|
||||||
exports.s = s;
|
exports.s = s;
|
||||||
exports.t = t;
|
exports.t = t;
|
||||||
|
|
|
@ -0,0 +1,85 @@
|
||||||
|
"use strict";
|
||||||
|
const common_vendor = require("../../common/vendor.js");
|
||||||
|
const common_assets = require("../../common/assets.js");
|
||||||
|
const _sfc_main = {
|
||||||
|
__name: "leftMenu",
|
||||||
|
props: {
|
||||||
|
darkFans: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false
|
||||||
|
},
|
||||||
|
menuIndex: {
|
||||||
|
type: Number,
|
||||||
|
default: 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
emits: ["click"],
|
||||||
|
setup(__props, { emit: __emit }) {
|
||||||
|
const iconList = common_vendor.ref([
|
||||||
|
{
|
||||||
|
url: "/static/index/lefticon/index.png",
|
||||||
|
targetUrl: "/static/index/lefticontarget/blueindex.png",
|
||||||
|
path: `/pages/index/index`
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "/static/index/lefticon/nurse.png",
|
||||||
|
targetUrl: "/static/index/lefticontarget/bluenurse.png",
|
||||||
|
path: `/pages/doctorsay/index`
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "/static/index/lefticon/doctor.png",
|
||||||
|
targetUrl: "/static/index/lefticontarget/bluedoctor.png",
|
||||||
|
path: ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "/static/index/lefticon/give.png",
|
||||||
|
targetUrl: "/static/index/lefticontarget/givedark.png",
|
||||||
|
path: ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "/static/index/lefticon/wifi.png",
|
||||||
|
targetUrl: "/static/index/lefticontarget/bluewifi.png",
|
||||||
|
path: ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
url: "/static/index/lefticon/back.png",
|
||||||
|
targetUrl: "/static/index/lefticontarget/blueback.png",
|
||||||
|
path: ""
|
||||||
|
}
|
||||||
|
]);
|
||||||
|
const jumpTonew = (path) => {
|
||||||
|
const pages = getCurrentPages();
|
||||||
|
if (pages.length === 0)
|
||||||
|
return;
|
||||||
|
const currentPage = pages[pages.length - 1];
|
||||||
|
const currentPath = "/" + currentPage.route;
|
||||||
|
if (currentPath !== path && path) {
|
||||||
|
common_vendor.index.redirectTo({
|
||||||
|
url: path,
|
||||||
|
animationType: "none",
|
||||||
|
// 取消动画效果
|
||||||
|
animationDuration: 0
|
||||||
|
// 设置动画持续时间为0,表示没有动画
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
return (_ctx, _cache) => {
|
||||||
|
return {
|
||||||
|
a: common_assets._imports_0,
|
||||||
|
b: common_vendor.n(__props.darkFans ? `left-head-font-dark` : `left-head-font`),
|
||||||
|
c: common_vendor.f(iconList.value, (item, index, i0) => {
|
||||||
|
return {
|
||||||
|
a: index == __props.menuIndex,
|
||||||
|
b: index == __props.menuIndex ? item.targetUrl : item.url,
|
||||||
|
c: common_vendor.o(($event) => jumpTonew(item.path), index),
|
||||||
|
d: index
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
d: `/static/index/ray.png`
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-d0ac6a5e"]]);
|
||||||
|
wx.createComponent(Component);
|
||||||
|
//# sourceMappingURL=../../../.sourcemap/mp-weixin/component/public/leftMenu.js.map
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"component": true,
|
||||||
|
"usingComponents": {}
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
<view class="left-container data-v-d0ac6a5e"><view class="left-head data-v-d0ac6a5e"><image class="left-head-img data-v-d0ac6a5e" src="{{a}}"/><text class="{{['data-v-d0ac6a5e', b]}}"> 王金凤 </text></view><view class="left-img-container data-v-d0ac6a5e"><view wx:for="{{c}}" wx:for-item="item" wx:key="d" class="blue-circle-pos data-v-d0ac6a5e"><view class="blue-circle data-v-d0ac6a5e" hidden="{{!item.a}}"><image class="blue-circle-size data-v-d0ac6a5e" src="{{d}}"/></view><image class="left-img data-v-d0ac6a5e" src="{{item.b}}" bindtap="{{item.c}}"/></view></view></view>
|
|
@ -0,0 +1,50 @@
|
||||||
|
.left-container.data-v-d0ac6a5e {
|
||||||
|
width: 235rpx;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.left-container .blue-circle-pos.data-v-d0ac6a5e {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.left-container .blue-circle-pos .blue-circle.data-v-d0ac6a5e {
|
||||||
|
position: absolute;
|
||||||
|
top: -50rpx;
|
||||||
|
left: -68rpx;
|
||||||
|
}
|
||||||
|
.left-container .blue-circle-pos .blue-circle .blue-circle-size.data-v-d0ac6a5e {
|
||||||
|
width: 170rpx;
|
||||||
|
height: 250rpx;
|
||||||
|
}
|
||||||
|
.left-container .left-head.data-v-d0ac6a5e {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.left-container .left-head .left-head-img.data-v-d0ac6a5e {
|
||||||
|
width: 150rpx;
|
||||||
|
height: 150rpx;
|
||||||
|
margin-top: 60rpx;
|
||||||
|
}
|
||||||
|
.left-container .left-head .left-head-font.data-v-d0ac6a5e {
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 40rpx;
|
||||||
|
}
|
||||||
|
.left-container .left-head .left-head-font-dark.data-v-d0ac6a5e {
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 40rpx;
|
||||||
|
background: linear-gradient(to right, #EBF4FF, #ADC4E0);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
color: transparent;
|
||||||
|
}
|
||||||
|
.left-container .left-img-container.data-v-d0ac6a5e {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.left-container .left-img-container .left-img.data-v-d0ac6a5e {
|
||||||
|
width: 93rpx;
|
||||||
|
height: 93rpx;
|
||||||
|
margin: 50rpx 0;
|
||||||
|
z-index: 100;
|
||||||
|
}
|
|
@ -0,0 +1,829 @@
|
||||||
|
"use strict";
|
||||||
|
const common_vendor = require("../../common/vendor.js");
|
||||||
|
const common_assets = require("../../common/assets.js");
|
||||||
|
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
||||||
|
__name: "index",
|
||||||
|
props: {
|
||||||
|
isshow: {
|
||||||
|
type: Boolean,
|
||||||
|
required: true
|
||||||
|
},
|
||||||
|
darkFans: {
|
||||||
|
type: Boolean,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
emits: ["darkchange"],
|
||||||
|
setup(__props, { emit: __emit }) {
|
||||||
|
const props = __props;
|
||||||
|
const isPopupVisible = common_vendor.ref(false);
|
||||||
|
const widthCom = common_vendor.ref(1320);
|
||||||
|
const heightCom = common_vendor.ref(540);
|
||||||
|
const topCom = common_vendor.ref(145);
|
||||||
|
const leftCom = common_vendor.ref(233);
|
||||||
|
const isPopupVisiblefiropen = common_vendor.ref(false);
|
||||||
|
const isPopupVisiblesec = common_vendor.ref(false);
|
||||||
|
const widthComsec = common_vendor.ref(1150);
|
||||||
|
const heightComsec = common_vendor.ref(630);
|
||||||
|
const topComsec = common_vendor.ref(730);
|
||||||
|
const leftComsec = common_vendor.ref(233);
|
||||||
|
const isPopupVisiblefiropensec = common_vendor.ref(false);
|
||||||
|
const isPopupVisiblethi = common_vendor.ref(false);
|
||||||
|
const widthComthi = common_vendor.ref(880);
|
||||||
|
const heightComthi = common_vendor.ref(630);
|
||||||
|
const topComthi = common_vendor.ref(730);
|
||||||
|
const leftComthi = common_vendor.ref(1420);
|
||||||
|
const isPopupVisiblefiropenthi = common_vendor.ref(false);
|
||||||
|
const currentTime = common_vendor.ref("");
|
||||||
|
const fullDate = common_vendor.ref("");
|
||||||
|
const weekDay = common_vendor.ref("");
|
||||||
|
const undericonList = common_vendor.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: "我的指令" }
|
||||||
|
]);
|
||||||
|
const huliList = common_vendor.ref([
|
||||||
|
{ url: "/static/index/hulilist/zhuandan.png", name: "转单执行" },
|
||||||
|
{ url: "/static/index/hulilist/xiezhu.png", name: "协助执行" },
|
||||||
|
{ url: "/static/index/hulilist/zhongdian.png", name: "重点追踪" }
|
||||||
|
]);
|
||||||
|
const huliListDark = common_vendor.ref([
|
||||||
|
{ url: "/static/index/darkicon/zhuandandark.png", name: "转单执行" },
|
||||||
|
{ url: "/static/index/darkicon/xiezhudark.png", name: "协助执行" },
|
||||||
|
{ url: "/static/index/darkicon/zhongdiandark.png", name: "重点追踪" }
|
||||||
|
]);
|
||||||
|
const mediumList = common_vendor.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 }
|
||||||
|
]);
|
||||||
|
const mediumListdark = common_vendor.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 }
|
||||||
|
]);
|
||||||
|
const roomBtttonList = common_vendor.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: "电器" }
|
||||||
|
]);
|
||||||
|
const roomBtttonListdark = common_vendor.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: "电器" }
|
||||||
|
]);
|
||||||
|
common_vendor.ref(0);
|
||||||
|
const undermenuIndex = common_vendor.ref(0);
|
||||||
|
common_vendor.ref(false);
|
||||||
|
const roomTar = common_vendor.ref([]);
|
||||||
|
const firstcurrentIndex = common_vendor.ref(0);
|
||||||
|
const firstcurrentIndexup = common_vendor.ref(0);
|
||||||
|
const secondcurrentIndexup = common_vendor.ref(0);
|
||||||
|
const secondcurrentIndex = common_vendor.ref(0);
|
||||||
|
common_vendor.ref(0);
|
||||||
|
const emit = __emit;
|
||||||
|
const darkFanschange = () => {
|
||||||
|
emit("darkchange", !props.darkFans);
|
||||||
|
};
|
||||||
|
const changeMenuUnder = (index) => {
|
||||||
|
undermenuIndex.value = index;
|
||||||
|
};
|
||||||
|
const saveItem = (index) => {
|
||||||
|
if (roomTar.value.includes(index)) {
|
||||||
|
let array = [];
|
||||||
|
roomTar.value.forEach((res) => {
|
||||||
|
if (res !== index) {
|
||||||
|
array.push(res);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
roomTar.value = array;
|
||||||
|
} else {
|
||||||
|
roomTar.value.push(index);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const updateTime = () => {
|
||||||
|
const now = /* @__PURE__ */ new Date();
|
||||||
|
const hours = now.getHours().toString().padStart(2, "0");
|
||||||
|
const minutes = now.getMinutes().toString().padStart(2, "0");
|
||||||
|
currentTime.value = `${hours}:${minutes}`;
|
||||||
|
const year = now.getFullYear();
|
||||||
|
const month = (now.getMonth() + 1).toString().padStart(2, "0");
|
||||||
|
const day = now.getDate().toString().padStart(2, "0");
|
||||||
|
fullDate.value = `${year}年${month}月${day}日`;
|
||||||
|
const weekDays = ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"];
|
||||||
|
const week = weekDays[now.getDay()];
|
||||||
|
weekDay.value = week;
|
||||||
|
};
|
||||||
|
const onSwiperChange = (event) => {
|
||||||
|
firstcurrentIndexup.value = event.detail.current;
|
||||||
|
};
|
||||||
|
const onSwiperChangesec = (event) => {
|
||||||
|
secondcurrentIndexup.value = event.detail.current;
|
||||||
|
};
|
||||||
|
const showPopup = () => {
|
||||||
|
isPopupVisible.value = true;
|
||||||
|
setTimeout(() => {
|
||||||
|
widthCom.value = 1900;
|
||||||
|
heightCom.value = 1080;
|
||||||
|
topCom.value = 145;
|
||||||
|
leftCom.value = 233;
|
||||||
|
isPopupVisiblefiropen.value = true;
|
||||||
|
}, 10);
|
||||||
|
};
|
||||||
|
const closePopup = () => {
|
||||||
|
widthCom.value = 1320;
|
||||||
|
heightCom.value = 540;
|
||||||
|
topCom.value = 145;
|
||||||
|
leftCom.value = 233;
|
||||||
|
isPopupVisiblefiropen.value = false;
|
||||||
|
isPopupVisible.value = false;
|
||||||
|
};
|
||||||
|
const showPopupsec = () => {
|
||||||
|
isPopupVisiblesec.value = true;
|
||||||
|
setTimeout(() => {
|
||||||
|
widthComsec.value = 1900;
|
||||||
|
heightComsec.value = 1080;
|
||||||
|
topComsec.value = 320;
|
||||||
|
leftComsec.value = 233;
|
||||||
|
isPopupVisiblefiropensec.value = true;
|
||||||
|
}, 10);
|
||||||
|
};
|
||||||
|
const closePopupsec = () => {
|
||||||
|
widthComsec.value = 1150;
|
||||||
|
heightComsec.value = 630;
|
||||||
|
topComsec.value = 730;
|
||||||
|
leftComsec.value = 233;
|
||||||
|
isPopupVisiblefiropensec.value = false;
|
||||||
|
isPopupVisiblesec.value = false;
|
||||||
|
};
|
||||||
|
const showPopupthi = () => {
|
||||||
|
isPopupVisiblethi.value = true;
|
||||||
|
setTimeout(() => {
|
||||||
|
widthComthi.value = 1900;
|
||||||
|
heightComthi.value = 1080;
|
||||||
|
topComthi.value = 320;
|
||||||
|
leftComthi.value = 380;
|
||||||
|
isPopupVisiblefiropenthi.value = true;
|
||||||
|
}, 10);
|
||||||
|
};
|
||||||
|
const closePopupthi = () => {
|
||||||
|
widthComthi.value = 880;
|
||||||
|
heightComthi.value = 630;
|
||||||
|
topComthi.value = 730;
|
||||||
|
leftComthi.value = 1420;
|
||||||
|
isPopupVisiblefiropenthi.value = false;
|
||||||
|
isPopupVisiblethi.value = false;
|
||||||
|
};
|
||||||
|
let timerId = null;
|
||||||
|
common_vendor.onMounted(() => {
|
||||||
|
timerId = updateTime();
|
||||||
|
setInterval(updateTime, 1e3);
|
||||||
|
});
|
||||||
|
common_vendor.onBeforeUnmount(() => {
|
||||||
|
clearInterval(timerId);
|
||||||
|
});
|
||||||
|
return (_ctx, _cache) => {
|
||||||
|
return common_vendor.e({
|
||||||
|
a: common_vendor.n(__props.darkFans ? `right-container-title-no-dark` : `right-container-title-no`),
|
||||||
|
b: common_vendor.n(__props.darkFans ? `right-container-title-no-dark` : `right-container-title-no`),
|
||||||
|
c: `/static/index/undericons/man.png`,
|
||||||
|
d: common_vendor.n(__props.darkFans ? `right-icons-font-dark` : `right-icons-font`),
|
||||||
|
e: __props.darkFans ? `/static/index/undericons/face.png` : `/static/index/undericons/facelight.png`,
|
||||||
|
f: __props.darkFans ? `/static/index/undericons/hand.png` : `/static/index/undericons/handlight.png`,
|
||||||
|
g: __props.darkFans ? `/static/index/undericons/out.png` : `/static/index/undericons/outlight.png`,
|
||||||
|
h: common_vendor.o(($event) => darkFanschange()),
|
||||||
|
i: !__props.darkFans,
|
||||||
|
j: common_vendor.s(__props.darkFans ? {
|
||||||
|
color: "black"
|
||||||
|
} : {}),
|
||||||
|
k: common_vendor.s(__props.darkFans ? {
|
||||||
|
backgroundColor: "#fff"
|
||||||
|
} : {}),
|
||||||
|
l: common_vendor.o(($event) => darkFanschange()),
|
||||||
|
m: __props.darkFans,
|
||||||
|
n: `/static/index/hulilei.png`,
|
||||||
|
o: common_vendor.o(showPopup),
|
||||||
|
p: __props.darkFans
|
||||||
|
}, __props.darkFans ? {
|
||||||
|
q: `/static/index/cardbgc/uplight.png`
|
||||||
|
} : {}, {
|
||||||
|
r: common_vendor.f([1, 2, 3], (item, index, i0) => {
|
||||||
|
return {
|
||||||
|
a: index,
|
||||||
|
b: common_vendor.s(index === firstcurrentIndexup.value ? {
|
||||||
|
backgroundColor: `#01A0FE`
|
||||||
|
} : {})
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
s: common_vendor.n(__props.darkFans ? `dot-dark` : `dot`),
|
||||||
|
t: common_vendor.f([1, 2, 3], (item, index, i0) => {
|
||||||
|
return common_vendor.e({
|
||||||
|
a: common_vendor.f([1, 2, 3], (item2, index2, i1) => {
|
||||||
|
return {
|
||||||
|
a: common_vendor.o(showPopup, index2),
|
||||||
|
b: index2
|
||||||
|
};
|
||||||
|
})
|
||||||
|
}, __props.darkFans ? {
|
||||||
|
b: `/static/index/cardbgc/leftlight.png`
|
||||||
|
} : {}, {
|
||||||
|
c: index
|
||||||
|
});
|
||||||
|
}),
|
||||||
|
v: `/static/index/teeth.png`,
|
||||||
|
w: __props.darkFans ? `/static/index/darkicon/labadark.png` : `/static/index/laba.png`,
|
||||||
|
x: common_vendor.n(__props.darkFans ? `right-container-fir-left-card-main-font-dark` : `right-container-fir-left-card-main-font`),
|
||||||
|
y: __props.darkFans ? `/static/index/indexvideo.png` : `/static/index/indexvideo.png`,
|
||||||
|
z: common_vendor.n(__props.darkFans ? `time-font-dark` : `time-font`),
|
||||||
|
A: common_vendor.n(__props.darkFans ? `time-text-dark` : `time-text`),
|
||||||
|
B: __props.darkFans ? `/static/index/darkicon/zhixingpeopledark.png` : `/static/index/cardicons/zhixing.png`,
|
||||||
|
C: common_vendor.n(__props.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
D: __props.darkFans ? `/static/index/medium/dopeopledark.png` : `/static/index/cardicons/zhifa.png`,
|
||||||
|
E: common_vendor.n(__props.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
F: common_vendor.n(__props.darkFans ? `time-button-end-dark` : `time-button-end`),
|
||||||
|
G: firstcurrentIndex.value,
|
||||||
|
H: __props.darkFans,
|
||||||
|
I: common_vendor.s(__props.darkFans ? `background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #386997 50%, rgba(0, 0, 0, 0) 100%);` : ``),
|
||||||
|
J: firstcurrentIndexup.value,
|
||||||
|
K: common_vendor.o(onSwiperChange),
|
||||||
|
L: `/static/index/hulilist/shang.png`,
|
||||||
|
M: !__props.darkFans
|
||||||
|
}, !__props.darkFans ? {
|
||||||
|
N: common_vendor.f(huliList.value, (item, index, i0) => {
|
||||||
|
return {
|
||||||
|
a: item.url,
|
||||||
|
b: common_vendor.t(item.name),
|
||||||
|
c: index
|
||||||
|
};
|
||||||
|
})
|
||||||
|
} : {}, {
|
||||||
|
O: __props.darkFans
|
||||||
|
}, __props.darkFans ? {
|
||||||
|
P: common_vendor.f(huliListDark.value, (item, index, i0) => {
|
||||||
|
return {
|
||||||
|
a: item.url,
|
||||||
|
b: common_vendor.t(item.name),
|
||||||
|
c: index
|
||||||
|
};
|
||||||
|
})
|
||||||
|
} : {}, {
|
||||||
|
Q: `/static/index/hulilist/xia.png`,
|
||||||
|
R: common_vendor.n(__props.darkFans ? `right-container-fir-left-card-dark` : `right-container-fir-left-card`),
|
||||||
|
S: common_vendor.f([1, 2, 3, 4], (item, index, i0) => {
|
||||||
|
return {
|
||||||
|
a: index
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
T: common_assets._imports_0$2,
|
||||||
|
U: common_vendor.t(currentTime.value),
|
||||||
|
V: common_vendor.n(__props.darkFans ? `right-container-title-dark` : `right-container-title`),
|
||||||
|
W: common_vendor.t(fullDate.value),
|
||||||
|
X: common_vendor.n(__props.darkFans ? `right-container-date-dark` : `right-container-date`),
|
||||||
|
Y: common_vendor.t(weekDay.value),
|
||||||
|
Z: common_vendor.n(__props.darkFans ? `right-container-day-dark` : `right-container-day`),
|
||||||
|
aa: __props.darkFans ? `/static/index/darkicon/wendudark.png` : `/static/index/roomicons/wendu.png`,
|
||||||
|
ab: common_vendor.n(__props.darkFans ? `right-container-tem-text-dark` : `right-container-tem-text`),
|
||||||
|
ac: __props.darkFans ? `/static/index/roomicons/shidu.png` : `/static/index/darkicon/shidudark.png`,
|
||||||
|
ad: common_vendor.n(__props.darkFans ? `right-container-tem-text-dark` : `right-container-tem-text`),
|
||||||
|
ae: !__props.darkFans
|
||||||
|
}, !__props.darkFans ? {
|
||||||
|
af: common_vendor.f(roomBtttonList.value, (item, index, i0) => {
|
||||||
|
return {
|
||||||
|
a: roomTar.value.includes(index),
|
||||||
|
b: roomTar.value.includes(index) ? item.targetUrl : item.url,
|
||||||
|
c: common_vendor.o(($event) => saveItem(index), index),
|
||||||
|
d: common_vendor.t(item.name),
|
||||||
|
e: common_vendor.s(roomTar.value.includes(index) ? {
|
||||||
|
color: "#167ED7"
|
||||||
|
} : {}),
|
||||||
|
f: index
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
ag: `/static/index/cardicons/ray2.png`
|
||||||
|
} : {}, {
|
||||||
|
ah: __props.darkFans
|
||||||
|
}, __props.darkFans ? {
|
||||||
|
ai: common_vendor.f(roomBtttonListdark.value, (item, index, i0) => {
|
||||||
|
return {
|
||||||
|
a: roomTar.value.includes(index),
|
||||||
|
b: roomTar.value.includes(index) ? item.targetUrl : item.url,
|
||||||
|
c: common_vendor.o(($event) => saveItem(index), index),
|
||||||
|
d: common_vendor.t(item.name),
|
||||||
|
e: common_vendor.s(roomTar.value.includes(index) ? {
|
||||||
|
color: "#167ED7"
|
||||||
|
} : {
|
||||||
|
color: "#fff"
|
||||||
|
}),
|
||||||
|
f: index
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
aj: `/static/index/cardicons/ray2.png`
|
||||||
|
} : {}, {
|
||||||
|
ak: common_vendor.n(__props.darkFans ? `right-container-fir-right-dark` : `right-container-fir-right`),
|
||||||
|
al: `/static/index/yiliao/yiliaolei.png`,
|
||||||
|
am: common_vendor.o(showPopupsec),
|
||||||
|
an: common_vendor.f([1, 2, 3], (item, index, i0) => {
|
||||||
|
return {
|
||||||
|
a: index,
|
||||||
|
b: common_vendor.s(index === secondcurrentIndexup.value ? {
|
||||||
|
backgroundColor: `#01A0FE`
|
||||||
|
} : {})
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
ao: common_vendor.n(__props.darkFans ? `dot-dark` : `dot`),
|
||||||
|
ap: __props.darkFans
|
||||||
|
}, __props.darkFans ? {
|
||||||
|
aq: `/static/index/cardbgc/uplight.png`
|
||||||
|
} : {}, {
|
||||||
|
ar: common_vendor.f([1, 2, 3], (item, index, i0) => {
|
||||||
|
return {
|
||||||
|
a: common_vendor.f([1, 2, 3], (item2, index2, i1) => {
|
||||||
|
return {
|
||||||
|
a: common_vendor.o(showPopupsec, index2),
|
||||||
|
b: index2
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
b: index
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
as: common_vendor.n(__props.darkFans ? `time-font-dark` : `time-font`),
|
||||||
|
at: __props.darkFans ? `/static/index/medium/doctorsaydark.png` : `/static/index/medium/doctorsay.png`,
|
||||||
|
av: common_vendor.n(__props.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
aw: __props.darkFans ? `/static/index/medium/howtododark.png` : `/static/index/medium/howtodo.png`,
|
||||||
|
ax: common_vendor.n(__props.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
ay: __props.darkFans ? `/static/index/medium/useMed.png` : `/static/index/medium/yongyao.png`,
|
||||||
|
az: common_vendor.n(__props.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
aA: __props.darkFans ? `/static/index/medium/domanydark.png` : `/static/index/medium/domany.png`,
|
||||||
|
aB: common_vendor.n(__props.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
aC: __props.darkFans ? `/static/index/darkicon/zhixingpeopledark.png` : `/static/index/cardicons/zhixing.png`,
|
||||||
|
aD: common_vendor.n(__props.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
aE: __props.darkFans ? `/static/index/medium/dopeopledark.png` : `/static/index/cardicons/zhifa.png`,
|
||||||
|
aF: common_vendor.n(__props.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
aG: common_vendor.n(__props.darkFans ? `time-button-end-dark` : `time-button-end`),
|
||||||
|
aH: `/static/index/yiliao/project2.png`,
|
||||||
|
aI: common_vendor.n(__props.darkFans ? `right-container-photo-text-dark` : `right-container-photo-text`),
|
||||||
|
aJ: secondcurrentIndex.value,
|
||||||
|
aK: secondcurrentIndexup.value,
|
||||||
|
aL: common_vendor.o(onSwiperChangesec),
|
||||||
|
aM: __props.darkFans
|
||||||
|
}, __props.darkFans ? {
|
||||||
|
aN: `/static/index/cardbgc/leftlight.png`
|
||||||
|
} : {}, {
|
||||||
|
aO: common_vendor.s(__props.darkFans ? `background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #386997 50%, rgba(0, 0, 0, 0) 100%);` : ``),
|
||||||
|
aP: `/static/index/hulilist/shang.png`,
|
||||||
|
aQ: !__props.darkFans
|
||||||
|
}, !__props.darkFans ? {
|
||||||
|
aR: common_vendor.f(mediumList.value, (item, index, i0) => {
|
||||||
|
return {
|
||||||
|
a: item.url,
|
||||||
|
b: common_vendor.t(item.name),
|
||||||
|
c: `${item.number}%`,
|
||||||
|
d: item.number !== 0,
|
||||||
|
e: index
|
||||||
|
};
|
||||||
|
})
|
||||||
|
} : {}, {
|
||||||
|
aS: __props.darkFans
|
||||||
|
}, __props.darkFans ? {
|
||||||
|
aT: common_vendor.f(mediumListdark.value, (item, index, i0) => {
|
||||||
|
return {
|
||||||
|
a: item.url,
|
||||||
|
b: common_vendor.t(item.name),
|
||||||
|
c: `${item.number}%`,
|
||||||
|
d: item.number !== 0,
|
||||||
|
e: index
|
||||||
|
};
|
||||||
|
})
|
||||||
|
} : {}, {
|
||||||
|
aU: `/static/index/hulilist/xia.png`,
|
||||||
|
aV: common_vendor.n(__props.darkFans ? `right-container-left-dark` : `right-container-left`),
|
||||||
|
aW: `/static/index/baojielei.png`,
|
||||||
|
aX: common_vendor.o(showPopupthi),
|
||||||
|
aY: `/static/index/baojieleft.png`,
|
||||||
|
aZ: `/static/index/baojieright.png`,
|
||||||
|
ba: common_vendor.f([1, 2, 3], (item, index, i0) => {
|
||||||
|
return {
|
||||||
|
a: common_vendor.o(showPopupthi, index),
|
||||||
|
b: index
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
bb: common_vendor.n(__props.darkFans ? `time-font-dark` : `time-font`),
|
||||||
|
bc: common_vendor.n(__props.darkFans ? `time-text-dark` : `time-text`),
|
||||||
|
bd: __props.darkFans ? `/static/index/darkicon/zhixingpeopledark.png` : `/static/index/cardicons/zhixing.png`,
|
||||||
|
be: common_vendor.n(__props.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
bf: __props.darkFans ? `/static/index/medium/dopeopledark.png` : `/static/index/cardicons/zhifa.png`,
|
||||||
|
bg: common_vendor.n(__props.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
bh: common_vendor.n(__props.darkFans ? `time-button-end-dark` : `time-button-end`),
|
||||||
|
bi: `/static/index/project3.png`,
|
||||||
|
bj: common_vendor.n(__props.darkFans ? `time-tra-thi-photo-font-dark` : `time-tra-thi-photo-font`),
|
||||||
|
bk: secondcurrentIndex.value,
|
||||||
|
bl: common_vendor.n(__props.darkFans ? `right-container-right-father-dark` : `right-container-right-father`),
|
||||||
|
bm: common_vendor.f(undericonList.value, (item, index, i0) => {
|
||||||
|
return {
|
||||||
|
a: index === undermenuIndex.value,
|
||||||
|
b: index === undermenuIndex.value ? item.targetUrl : item.url,
|
||||||
|
c: common_vendor.t(item.name),
|
||||||
|
d: index,
|
||||||
|
e: common_vendor.o(($event) => changeMenuUnder(index), index)
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
bn: common_assets._imports_0$1,
|
||||||
|
bo: common_vendor.n(__props.darkFans ? `under-father-img-font-dark` : `under-father-img-font`),
|
||||||
|
bp: isPopupVisible.value
|
||||||
|
}, isPopupVisible.value ? common_vendor.e({
|
||||||
|
bq: `/static/index/hulilei.png`,
|
||||||
|
br: common_vendor.o(closePopup),
|
||||||
|
bs: __props.darkFans
|
||||||
|
}, __props.darkFans ? {
|
||||||
|
bt: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
top: `680rpx`
|
||||||
|
} : `{}`),
|
||||||
|
bv: `/static/index/cardbgc/uplight.png`
|
||||||
|
} : {}, {
|
||||||
|
bw: common_vendor.f([1], (item, index, i0) => {
|
||||||
|
return common_vendor.e({
|
||||||
|
a: common_vendor.f([1], (item2, index2, i1) => {
|
||||||
|
return {
|
||||||
|
a: common_vendor.o(closePopup, index2),
|
||||||
|
b: index2
|
||||||
|
};
|
||||||
|
})
|
||||||
|
}, __props.darkFans ? {
|
||||||
|
b: `/static/index/cardbgc/leftlight.png`
|
||||||
|
} : {}, {
|
||||||
|
c: index
|
||||||
|
});
|
||||||
|
}),
|
||||||
|
bx: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
top: `-60rpx`,
|
||||||
|
left: `0rpx`,
|
||||||
|
width: `150rpx`,
|
||||||
|
height: `60rpx`,
|
||||||
|
fontSize: `35rpx`,
|
||||||
|
borderRadius: `8rpx`
|
||||||
|
} : `{}`),
|
||||||
|
by: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
top: `40rpx`,
|
||||||
|
left: `1300rpx`
|
||||||
|
} : `{}`),
|
||||||
|
bz: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
width: `600rpx`,
|
||||||
|
height: `500rpx`
|
||||||
|
} : {
|
||||||
|
marginTop: `-90rpx`
|
||||||
|
}),
|
||||||
|
bA: `/static/index/teeth.png`,
|
||||||
|
bB: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
width: `65rpx`,
|
||||||
|
height: `65rpx`
|
||||||
|
} : {}),
|
||||||
|
bC: __props.darkFans ? `/static/index/darkicon/labadark.png` : `/static/index/laba.png`,
|
||||||
|
bD: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
fontSize: `46rpx`,
|
||||||
|
width: `400rpx`
|
||||||
|
} : `{}`),
|
||||||
|
bE: common_vendor.n(__props.darkFans ? `right-container-fir-left-card-main-font-dark` : `right-container-fir-left-card-main-font`),
|
||||||
|
bF: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
width: `65rpx`,
|
||||||
|
height: `65rpx`
|
||||||
|
} : {
|
||||||
|
marginLeft: `-150rpx`
|
||||||
|
}),
|
||||||
|
bG: __props.darkFans ? `/static/index/indexvideo.png` : `/static/index/indexvideo.png`,
|
||||||
|
bH: common_vendor.n(__props.darkFans ? `time-font-dark` : `time-font`),
|
||||||
|
bI: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
fontSize: `100rpx`
|
||||||
|
} : `{}`),
|
||||||
|
bJ: common_vendor.n(__props.darkFans ? `time-text-dark` : `time-text`),
|
||||||
|
bK: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
fontSize: `45rpx`,
|
||||||
|
lineHeight: `70rpx`,
|
||||||
|
width: `800rpx`,
|
||||||
|
marginTop: `50rpx`,
|
||||||
|
marginBottom: `50rpx`
|
||||||
|
} : `{}`),
|
||||||
|
bL: __props.darkFans ? `/static/index/darkicon/zhixingpeopledark.png` : `/static/index/cardicons/zhixing.png`,
|
||||||
|
bM: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
width: `55rpx`,
|
||||||
|
height: `55rpx`
|
||||||
|
} : `{}`),
|
||||||
|
bN: common_vendor.n(__props.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
bO: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
fontSize: `42rpx`,
|
||||||
|
marginRight: "40rpx"
|
||||||
|
} : `{}`),
|
||||||
|
bP: __props.darkFans ? `/static/index/medium/dopeopledark.png` : `/static/index/cardicons/zhifa.png`,
|
||||||
|
bQ: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
width: `55rpx`,
|
||||||
|
height: `55rpx`
|
||||||
|
} : `{}`),
|
||||||
|
bR: common_vendor.n(__props.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
bS: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
fontSize: `42rpx`
|
||||||
|
} : `{}`),
|
||||||
|
bT: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
marginBottom: "60rpx"
|
||||||
|
} : `{}`),
|
||||||
|
bU: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
width: `350rpx`,
|
||||||
|
height: `110rpx`,
|
||||||
|
borderRadius: `80rpx`,
|
||||||
|
fontSize: `50rpx`
|
||||||
|
} : `{}`),
|
||||||
|
bV: common_vendor.n(__props.darkFans ? `time-button-end-dark` : `time-button-end`),
|
||||||
|
bW: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
width: `350rpx`,
|
||||||
|
height: `110rpx`,
|
||||||
|
borderRadius: `80rpx`,
|
||||||
|
fontSize: `50rpx`
|
||||||
|
} : `{}`),
|
||||||
|
bX: common_vendor.s(isPopupVisiblefiropen.value ? `{}` : {
|
||||||
|
marginTop: `0rpx`,
|
||||||
|
marginLeft: `30rpx`
|
||||||
|
}),
|
||||||
|
bY: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
height: `700rpx`
|
||||||
|
} : `{}`),
|
||||||
|
bZ: __props.darkFans,
|
||||||
|
ca: common_vendor.s(__props.darkFans ? `background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #386997 50%, rgba(0, 0, 0, 0) 100%);` : ``),
|
||||||
|
cb: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
marginTop: `70rpx`
|
||||||
|
} : {
|
||||||
|
marginTop: `0rpx`
|
||||||
|
}),
|
||||||
|
cc: `/static/index/hulilist/shang.png`,
|
||||||
|
cd: !__props.darkFans
|
||||||
|
}, !__props.darkFans ? {
|
||||||
|
ce: common_vendor.f(huliList.value, (item, index, i0) => {
|
||||||
|
return {
|
||||||
|
a: item.url,
|
||||||
|
b: common_vendor.t(item.name),
|
||||||
|
c: index
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
cf: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
height: `200rpx`
|
||||||
|
} : `{}`),
|
||||||
|
cg: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
height: `600rpx`
|
||||||
|
} : `{}`)
|
||||||
|
} : {}, {
|
||||||
|
ch: __props.darkFans
|
||||||
|
}, __props.darkFans ? {
|
||||||
|
ci: common_vendor.f(huliListDark.value, (item, index, i0) => {
|
||||||
|
return {
|
||||||
|
a: item.url,
|
||||||
|
b: common_vendor.t(item.name),
|
||||||
|
c: index
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
cj: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
height: `200rpx`
|
||||||
|
} : `{}`),
|
||||||
|
ck: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
height: `600rpx`
|
||||||
|
} : `{}`)
|
||||||
|
} : {}, {
|
||||||
|
cl: `/static/index/hulilist/xia.png`,
|
||||||
|
cm: common_vendor.n(__props.darkFans ? `right-container-fir-left-card-dark` : `right-container-fir-left-card`),
|
||||||
|
cn: common_vendor.o(() => {
|
||||||
|
}),
|
||||||
|
co: widthCom.value + "rpx",
|
||||||
|
cp: heightCom.value + "rpx",
|
||||||
|
cq: topCom.value + "rpx",
|
||||||
|
cr: leftCom.value + "rpx",
|
||||||
|
cs: common_vendor.o(closePopup),
|
||||||
|
ct: common_vendor.s(isPopupVisiblefiropen.value ? {
|
||||||
|
backgroundColor: `rgba(89, 109, 154, 0.5)`
|
||||||
|
} : `{}`)
|
||||||
|
}) : {}, {
|
||||||
|
cv: isPopupVisiblesec.value
|
||||||
|
}, isPopupVisiblesec.value ? common_vendor.e({
|
||||||
|
cw: `/static/index/yiliao/yiliaolei.png`,
|
||||||
|
cx: common_vendor.o(closePopupsec),
|
||||||
|
cy: __props.darkFans
|
||||||
|
}, __props.darkFans ? {
|
||||||
|
cz: common_vendor.s(isPopupVisiblefiropensec.value ? {
|
||||||
|
left: `1000rpx`,
|
||||||
|
top: `680rpx`
|
||||||
|
} : `{}`),
|
||||||
|
cA: `/static/index/cardbgc/uplight.png`
|
||||||
|
} : {}, {
|
||||||
|
cB: common_vendor.f([1], (item, index, i0) => {
|
||||||
|
return {
|
||||||
|
a: common_vendor.f([1], (item2, index2, i1) => {
|
||||||
|
return {
|
||||||
|
a: common_vendor.o(showPopupsec, index2),
|
||||||
|
b: index2
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
b: index
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
cC: common_vendor.s(isPopupVisiblefiropensec.value ? {
|
||||||
|
top: `160rpx`,
|
||||||
|
left: `900rpx`,
|
||||||
|
width: `150rpx`,
|
||||||
|
height: `60rpx`,
|
||||||
|
fontSize: `35rpx`,
|
||||||
|
borderRadius: `8rpx`
|
||||||
|
} : `{}`),
|
||||||
|
cD: common_vendor.s(isPopupVisiblefiropensec.value ? {
|
||||||
|
fontSize: `120rpx`
|
||||||
|
} : `{}`),
|
||||||
|
cE: common_vendor.n(__props.darkFans ? `time-font-dark` : `time-font`),
|
||||||
|
cF: __props.darkFans ? `/static/index/medium/doctorsaydark.png` : `/static/index/medium/doctorsay.png`,
|
||||||
|
cG: common_vendor.n(__props.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
cH: common_vendor.n(!isPopupVisiblefiropensec.value ? `time-people-thi` : `time-people-thi-change`),
|
||||||
|
cI: __props.darkFans ? `/static/index/medium/howtododark.png` : `/static/index/medium/howtodo.png`,
|
||||||
|
cJ: common_vendor.n(__props.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
cK: common_vendor.n(!isPopupVisiblefiropensec.value ? `time-people-thi` : `time-people-thi-change`),
|
||||||
|
cL: __props.darkFans ? `/static/index/medium/useMed.png` : `/static/index/medium/yongyao.png`,
|
||||||
|
cM: common_vendor.n(__props.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
cN: common_vendor.n(!isPopupVisiblefiropensec.value ? `time-people-thi` : `time-people-thi-change`),
|
||||||
|
cO: __props.darkFans ? `/static/index/medium/domanydark.png` : `/static/index/medium/domany.png`,
|
||||||
|
cP: common_vendor.n(__props.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
cQ: common_vendor.n(!isPopupVisiblefiropensec.value ? `time-people-thi` : `time-people-thi-change`),
|
||||||
|
cR: __props.darkFans ? `/static/index/darkicon/zhixingpeopledark.png` : `/static/index/cardicons/zhixing.png`,
|
||||||
|
cS: common_vendor.n(__props.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
cT: __props.darkFans ? `/static/index/medium/dopeopledark.png` : `/static/index/cardicons/zhifa.png`,
|
||||||
|
cU: common_vendor.n(__props.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
cV: common_vendor.n(!isPopupVisiblefiropensec.value ? `time-people-thi` : `time-people-thi-change`),
|
||||||
|
cW: common_vendor.s(isPopupVisiblefiropensec.value ? {
|
||||||
|
width: `350rpx`,
|
||||||
|
height: `110rpx`,
|
||||||
|
borderRadius: `80rpx`,
|
||||||
|
fontSize: `50rpx`
|
||||||
|
} : `{}`),
|
||||||
|
cX: common_vendor.n(__props.darkFans ? `time-button-end-dark` : `time-button-end`),
|
||||||
|
cY: common_vendor.s(isPopupVisiblefiropensec.value ? {
|
||||||
|
width: `350rpx`,
|
||||||
|
height: `110rpx`,
|
||||||
|
borderRadius: `80rpx`,
|
||||||
|
fontSize: `50rpx`
|
||||||
|
} : `{}`),
|
||||||
|
cZ: common_vendor.s(isPopupVisiblefiropensec.value ? {
|
||||||
|
marginTop: `50rpx`
|
||||||
|
} : `{}`),
|
||||||
|
da: common_vendor.s(isPopupVisiblefiropensec.value ? {
|
||||||
|
width: `800rpx`,
|
||||||
|
marginTop: `70rpx`,
|
||||||
|
marginLeft: `120rpx`
|
||||||
|
} : `{}`),
|
||||||
|
db: `/static/index/yiliao/project2.png`,
|
||||||
|
dc: common_vendor.n(__props.darkFans ? `right-container-photo-text-dark` : `right-container-photo-text`),
|
||||||
|
dd: common_vendor.n(isPopupVisiblefiropensec.value ? `right-container-photo-change` : `right-container-photo`),
|
||||||
|
de: __props.darkFans
|
||||||
|
}, __props.darkFans ? {
|
||||||
|
df: `/static/index/cardbgc/leftlight.png`
|
||||||
|
} : {}, {
|
||||||
|
dg: common_vendor.s(__props.darkFans ? `background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #386997 50%, rgba(0, 0, 0, 0) 100%);` : ``),
|
||||||
|
dh: `/static/index/hulilist/shang.png`,
|
||||||
|
di: !__props.darkFans
|
||||||
|
}, !__props.darkFans ? {
|
||||||
|
dj: common_vendor.f(mediumList.value, (item, index, i0) => {
|
||||||
|
return {
|
||||||
|
a: item.url,
|
||||||
|
b: common_vendor.t(item.name),
|
||||||
|
c: `${item.number}%`,
|
||||||
|
d: item.number !== 0,
|
||||||
|
e: index
|
||||||
|
};
|
||||||
|
})
|
||||||
|
} : {}, {
|
||||||
|
dk: __props.darkFans
|
||||||
|
}, __props.darkFans ? {
|
||||||
|
dl: common_vendor.f(mediumListdark.value, (item, index, i0) => {
|
||||||
|
return {
|
||||||
|
a: item.url,
|
||||||
|
b: common_vendor.t(item.name),
|
||||||
|
c: `${item.number}%`,
|
||||||
|
d: item.number !== 0,
|
||||||
|
e: index
|
||||||
|
};
|
||||||
|
})
|
||||||
|
} : {}, {
|
||||||
|
dm: `/static/index/hulilist/xia.png`,
|
||||||
|
dn: common_vendor.s(isPopupVisiblefiropensec.value ? {
|
||||||
|
width: `350rpx`
|
||||||
|
} : `{}`),
|
||||||
|
dp: common_vendor.n(__props.darkFans ? `right-container-left-dark` : `right-container-left`),
|
||||||
|
dq: common_vendor.o(() => {
|
||||||
|
}),
|
||||||
|
dr: widthComsec.value + "rpx",
|
||||||
|
ds: heightComsec.value + "rpx",
|
||||||
|
dt: topComsec.value + "rpx",
|
||||||
|
dv: leftComsec.value + "rpx",
|
||||||
|
dw: common_vendor.o(closePopupsec),
|
||||||
|
dx: common_vendor.s(isPopupVisiblefiropensec.value ? {
|
||||||
|
backgroundColor: `rgba(89, 109, 154, 0.5)`
|
||||||
|
} : `{}`)
|
||||||
|
}) : {}, {
|
||||||
|
dy: isPopupVisiblethi.value
|
||||||
|
}, isPopupVisiblethi.value ? {
|
||||||
|
dz: `/static/index/baojielei.png`,
|
||||||
|
dA: common_vendor.o(closePopupthi),
|
||||||
|
dB: common_vendor.f([1], (item, index, i0) => {
|
||||||
|
return {
|
||||||
|
a: index
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
dC: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
||||||
|
top: `90rpx`,
|
||||||
|
left: `200rpx`,
|
||||||
|
width: `150rpx`,
|
||||||
|
height: `60rpx`,
|
||||||
|
fontSize: `35rpx`,
|
||||||
|
borderRadius: `8rpx`
|
||||||
|
} : `{}`),
|
||||||
|
dD: common_vendor.n(__props.darkFans ? `time-font-dark` : `time-font`),
|
||||||
|
dE: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
||||||
|
fontSize: `100rpx`
|
||||||
|
} : `{}`),
|
||||||
|
dF: common_vendor.n(__props.darkFans ? `time-text-dark` : `time-text`),
|
||||||
|
dG: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
||||||
|
width: `800rpx`,
|
||||||
|
fontSize: `45rpx`,
|
||||||
|
marginTop: `100rpx`,
|
||||||
|
lineHeight: `60rpx`
|
||||||
|
} : `{}`),
|
||||||
|
dH: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
||||||
|
width: `55rpx`,
|
||||||
|
height: `55rpx`
|
||||||
|
} : `{}`),
|
||||||
|
dI: __props.darkFans ? `/static/index/darkicon/zhixingpeopledark.png` : `/static/index/cardicons/zhixing.png`,
|
||||||
|
dJ: common_vendor.n(__props.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
dK: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
||||||
|
fontSize: `42rpx`,
|
||||||
|
marginRight: "40rpx"
|
||||||
|
} : `{}`),
|
||||||
|
dL: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
||||||
|
width: `55rpx`,
|
||||||
|
height: `55rpx`
|
||||||
|
} : `{}`),
|
||||||
|
dM: __props.darkFans ? `/static/index/medium/dopeopledark.png` : `/static/index/cardicons/zhifa.png`,
|
||||||
|
dN: common_vendor.n(__props.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
dO: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
||||||
|
fontSize: `42rpx`,
|
||||||
|
marginRight: "40rpx"
|
||||||
|
} : `{}`),
|
||||||
|
dP: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
||||||
|
marginTop: `100rpx`,
|
||||||
|
marginBottom: `100rpx`
|
||||||
|
} : `{}`),
|
||||||
|
dQ: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
||||||
|
width: `350rpx`,
|
||||||
|
height: `110rpx`,
|
||||||
|
borderRadius: `80rpx`,
|
||||||
|
fontSize: `50rpx`
|
||||||
|
} : `{}`),
|
||||||
|
dR: common_vendor.n(__props.darkFans ? `time-button-end-dark` : `time-button-end`),
|
||||||
|
dS: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
||||||
|
width: `350rpx`,
|
||||||
|
height: `110rpx`,
|
||||||
|
borderRadius: `80rpx`,
|
||||||
|
fontSize: `50rpx`
|
||||||
|
} : `{}`),
|
||||||
|
dT: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
||||||
|
width: `800rpx`,
|
||||||
|
marginLeft: `150rpx`
|
||||||
|
} : `{}`),
|
||||||
|
dU: `/static/index/project3.png`,
|
||||||
|
dV: common_vendor.n(__props.darkFans ? `time-tra-thi-photo-font-dark` : `time-tra-thi-photo-font`),
|
||||||
|
dW: common_vendor.n(isPopupVisiblefiropenthi.value ? `time-tra-thi-photo-change` : `time-tra-thi-photo`),
|
||||||
|
dX: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
||||||
|
marginLeft: `100rpx`
|
||||||
|
} : `{}`),
|
||||||
|
dY: common_vendor.n(__props.darkFans ? `right-container-right-father-dark` : `right-container-right-father`),
|
||||||
|
dZ: common_vendor.o(() => {
|
||||||
|
}),
|
||||||
|
ea: widthComthi.value + "rpx",
|
||||||
|
eb: heightComthi.value + "rpx",
|
||||||
|
ec: topComthi.value + "rpx",
|
||||||
|
ed: leftComthi.value + "rpx",
|
||||||
|
ee: common_vendor.o(closePopupthi),
|
||||||
|
ef: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
||||||
|
backgroundColor: `rgba(89, 109, 154, 0.5)`
|
||||||
|
} : `{}`)
|
||||||
|
} : {}, {
|
||||||
|
eg: common_vendor.s(__props.isshow ? {
|
||||||
|
opacity: `1`
|
||||||
|
} : {
|
||||||
|
opacity: `0`
|
||||||
|
})
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-9f74ebdb"]]);
|
||||||
|
wx.createComponent(Component);
|
||||||
|
//# sourceMappingURL=../../../.sourcemap/mp-weixin/component/rightItemsindex/index.js.map
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"component": true,
|
||||||
|
"usingComponents": {}
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,82 @@
|
||||||
|
"use strict";
|
||||||
|
const common_vendor = require("../../common/vendor.js");
|
||||||
|
const common_assets = require("../../common/assets.js");
|
||||||
|
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
||||||
|
__name: "index",
|
||||||
|
props: {
|
||||||
|
isshow: {
|
||||||
|
type: Boolean,
|
||||||
|
required: true
|
||||||
|
},
|
||||||
|
darkFans: {
|
||||||
|
type: Boolean,
|
||||||
|
required: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
emits: ["darkchange"],
|
||||||
|
setup(__props, { emit: __emit }) {
|
||||||
|
const props = __props;
|
||||||
|
const undericonList = common_vendor.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: "我的指令" }
|
||||||
|
]);
|
||||||
|
const undermenuIndex = common_vendor.ref(0);
|
||||||
|
common_vendor.ref(false);
|
||||||
|
common_vendor.ref([]);
|
||||||
|
const emit = __emit;
|
||||||
|
const darkFanschange = () => {
|
||||||
|
emit("darkchange", !props.darkFans);
|
||||||
|
};
|
||||||
|
const changeMenuUnder = (index) => {
|
||||||
|
undermenuIndex.value = index;
|
||||||
|
};
|
||||||
|
common_vendor.onMounted(() => {
|
||||||
|
});
|
||||||
|
common_vendor.onBeforeUnmount(() => {
|
||||||
|
});
|
||||||
|
return (_ctx, _cache) => {
|
||||||
|
return {
|
||||||
|
a: common_vendor.n(__props.darkFans ? `right-container-title-no-dark` : `right-container-title-no`),
|
||||||
|
b: common_vendor.n(__props.darkFans ? `right-container-title-no-dark` : `right-container-title-no`),
|
||||||
|
c: `/static/index/undericons/man.png`,
|
||||||
|
d: common_vendor.n(__props.darkFans ? `right-icons-font-dark` : `right-icons-font`),
|
||||||
|
e: __props.darkFans ? `/static/index/undericons/face.png` : `/static/index/undericons/facelight.png`,
|
||||||
|
f: __props.darkFans ? `/static/index/undericons/hand.png` : `/static/index/undericons/handlight.png`,
|
||||||
|
g: __props.darkFans ? `/static/index/undericons/out.png` : `/static/index/undericons/outlight.png`,
|
||||||
|
h: common_vendor.o(($event) => darkFanschange()),
|
||||||
|
i: !__props.darkFans,
|
||||||
|
j: common_vendor.s(__props.darkFans ? {
|
||||||
|
color: "black"
|
||||||
|
} : {}),
|
||||||
|
k: common_vendor.s(__props.darkFans ? {
|
||||||
|
backgroundColor: "#fff"
|
||||||
|
} : {}),
|
||||||
|
l: common_vendor.o(($event) => darkFanschange()),
|
||||||
|
m: __props.darkFans,
|
||||||
|
n: common_vendor.f(undericonList.value, (item, index, i0) => {
|
||||||
|
return {
|
||||||
|
a: index === undermenuIndex.value,
|
||||||
|
b: index === undermenuIndex.value ? item.targetUrl : item.url,
|
||||||
|
c: common_vendor.t(item.name),
|
||||||
|
d: index,
|
||||||
|
e: common_vendor.o(($event) => changeMenuUnder(index), index)
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
o: common_assets._imports_0$1,
|
||||||
|
p: common_vendor.n(__props.darkFans ? `under-father-img-font-dark` : `under-father-img-font`),
|
||||||
|
q: common_vendor.s(__props.isshow ? {
|
||||||
|
opacity: `1`
|
||||||
|
} : {
|
||||||
|
opacity: `0`
|
||||||
|
})
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-337bb5da"]]);
|
||||||
|
wx.createComponent(Component);
|
||||||
|
//# sourceMappingURL=../../../.sourcemap/mp-weixin/component/rightItemssecond/index.js.map
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"component": true,
|
||||||
|
"usingComponents": {}
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
<view class="right-container data-v-337bb5da" style="{{q}}"><view class="right-container-title-nav data-v-337bb5da"><text class="{{['data-v-337bb5da', a]}}"> ID:12345678 </text><text class="{{['data-v-337bb5da', b]}}"> 名称:未命名01 </text><view class="right-icons data-v-337bb5da"><image class="right-icons-img data-v-337bb5da" src="{{c}}"/><view class="{{['data-v-337bb5da', d]}}">王金福</view><image class="right-icons-img-icon data-v-337bb5da" src="{{e}}"/><image class="right-icons-img-icon data-v-337bb5da" src="{{f}}"/><image class="right-icons-img-icon data-v-337bb5da" src="{{g}}"/></view><view class="right-container-title-class-anhei-button data-v-337bb5da" bindtap="{{h}}" hidden="{{!i}}"><text class="right-container-title-class-anhei data-v-337bb5da"> 切换到暗黑模式 </text></view><view class="right-container-title-class-anhei-button data-v-337bb5da" style="{{k}}" bindtap="{{l}}" hidden="{{!m}}"><text class="right-container-title-class-anhei data-v-337bb5da" style="{{j}}"> 取消暗黑模式 </text></view></view><view class="doctorsay-container data-v-337bb5da"></view><view class="right-container-sec data-v-337bb5da"><view class="under-father data-v-337bb5da"><view wx:for="{{n}}" wx:for-item="item" wx:key="d" class="under-father-view data-v-337bb5da" bindtap="{{item.e}}"><image class="under-father-light data-v-337bb5da" src="{{o}}" hidden="{{!item.a}}"/><image class="under-father-img data-v-337bb5da" src="{{item.b}}"/><view class="{{['data-v-337bb5da', p]}}">{{item.c}}</view></view></view></view></view>
|
|
@ -0,0 +1,133 @@
|
||||||
|
.right-container.data-v-337bb5da {
|
||||||
|
width: calc(100% - 235rpx);
|
||||||
|
height: 100vh;
|
||||||
|
transition: opacity 1s ease;
|
||||||
|
}
|
||||||
|
.right-container .doctorsay-container.data-v-337bb5da {
|
||||||
|
width: 1850rpx;
|
||||||
|
height: 1220rpx;
|
||||||
|
background-color: #fff;
|
||||||
|
border-radius: 80rpx;
|
||||||
|
}
|
||||||
|
.right-container .right-container-sec.data-v-337bb5da {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.right-container .right-container-sec .under-father.data-v-337bb5da {
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
|
height: 150rpx;
|
||||||
|
}
|
||||||
|
.right-container .right-container-sec .under-father .under-father-view.data-v-337bb5da {
|
||||||
|
margin-left: 10rpx;
|
||||||
|
margin-right: 150rpx;
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.right-container .right-container-sec .under-father .under-father-view .under-father-light.data-v-337bb5da {
|
||||||
|
position: absolute;
|
||||||
|
bottom: -20rpx;
|
||||||
|
left: -90rpx;
|
||||||
|
width: 300rpx;
|
||||||
|
height: 200rpx;
|
||||||
|
}
|
||||||
|
.right-container .right-container-sec .under-father .under-father-view .under-father-img.data-v-337bb5da {
|
||||||
|
width: 80rpx;
|
||||||
|
height: 80rpx;
|
||||||
|
margin-left: -3rpx;
|
||||||
|
}
|
||||||
|
.right-container .right-container-sec .under-father .under-father-view .under-father-img-font.data-v-337bb5da {
|
||||||
|
font-size: 30rpx;
|
||||||
|
}
|
||||||
|
.right-container .right-container-sec .under-father .under-father-view .under-father-img-font-dark.data-v-337bb5da {
|
||||||
|
font-size: 30rpx;
|
||||||
|
background: linear-gradient(to bottom, #FFFFFF, #B2C8E2);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
color: transparent;
|
||||||
|
}
|
||||||
|
.right-container .right-container-title-nav.data-v-337bb5da {
|
||||||
|
margin-top: 75rpx;
|
||||||
|
margin-bottom: 20rpx;
|
||||||
|
margin-left: 20rpx;
|
||||||
|
}
|
||||||
|
.right-container .right-container-title-nav .right-icons.data-v-337bb5da {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
float: right;
|
||||||
|
height: 70rpx;
|
||||||
|
margin-right: 40rpx;
|
||||||
|
}
|
||||||
|
.right-container .right-container-title-nav .right-icons .right-icons-font.data-v-337bb5da {
|
||||||
|
margin-left: 10rpx;
|
||||||
|
margin-right: 10rpx;
|
||||||
|
font-size: 35rpx;
|
||||||
|
margin-top: -30rpx;
|
||||||
|
}
|
||||||
|
.right-container .right-container-title-nav .right-icons .right-icons-font-dark.data-v-337bb5da {
|
||||||
|
color: #fff;
|
||||||
|
margin-left: 10rpx;
|
||||||
|
margin-right: 10rpx;
|
||||||
|
font-size: 35rpx;
|
||||||
|
margin-top: -30rpx;
|
||||||
|
}
|
||||||
|
.right-container .right-container-title-nav .right-icons .right-icons-img.data-v-337bb5da {
|
||||||
|
width: 80rpx;
|
||||||
|
height: 80rpx;
|
||||||
|
margin-left: 10rpx;
|
||||||
|
margin-right: 10rpx;
|
||||||
|
margin-top: -40rpx;
|
||||||
|
}
|
||||||
|
.right-container .right-container-title-nav .right-icons .right-icons-img-icon.data-v-337bb5da {
|
||||||
|
width: 60rpx;
|
||||||
|
height: 80rpx;
|
||||||
|
margin-top: -10rpx;
|
||||||
|
margin-left: 8rpx;
|
||||||
|
}
|
||||||
|
.right-container .right-container-title-nav .right-container-title-no.data-v-337bb5da {
|
||||||
|
font-size: 35rpx;
|
||||||
|
margin-right: 20rpx;
|
||||||
|
}
|
||||||
|
.right-container .right-container-title-nav .right-container-title-no-dark.data-v-337bb5da {
|
||||||
|
font-size: 35rpx;
|
||||||
|
background: linear-gradient(to bottom, #FFFFFF, #B2C8E2);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
color: transparent;
|
||||||
|
margin-right: 20rpx;
|
||||||
|
}
|
||||||
|
.right-container .right-container-title-nav .right-container-title-class.data-v-337bb5da {
|
||||||
|
font-size: 35rpx;
|
||||||
|
font-weight: 800;
|
||||||
|
margin-left: 20rpx;
|
||||||
|
}
|
||||||
|
.right-container .right-container-title-nav .right-container-title-class-dark.data-v-337bb5da {
|
||||||
|
font-size: 35rpx;
|
||||||
|
font-weight: 800;
|
||||||
|
margin-left: 20rpx;
|
||||||
|
background: linear-gradient(to bottom, #FFFFFF, #B2C8E2);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
color: transparent;
|
||||||
|
}
|
||||||
|
.right-container .right-container-title-nav .right-container-title-class-anhei-button.data-v-337bb5da {
|
||||||
|
float: right;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
border-radius: 30rpx;
|
||||||
|
margin-right: 30rpx;
|
||||||
|
width: 200rpx;
|
||||||
|
height: 50rpx;
|
||||||
|
background-color: black;
|
||||||
|
border: 2rpx solid;
|
||||||
|
}
|
||||||
|
.right-container .right-container-title-nav .right-container-title-class-anhei-button .right-container-title-class-anhei.data-v-337bb5da {
|
||||||
|
font-size: 20rpx;
|
||||||
|
font-weight: 800;
|
||||||
|
color: white;
|
||||||
|
}
|
|
@ -0,0 +1,31 @@
|
||||||
|
"use strict";
|
||||||
|
const common_vendor = require("../../common/vendor.js");
|
||||||
|
if (!Array) {
|
||||||
|
const _component_leftMenu = common_vendor.resolveComponent("leftMenu");
|
||||||
|
_component_leftMenu();
|
||||||
|
}
|
||||||
|
const _sfc_main = {
|
||||||
|
__name: "index",
|
||||||
|
setup(__props) {
|
||||||
|
const darkFans = common_vendor.ref(false);
|
||||||
|
common_vendor.onMounted(() => {
|
||||||
|
const value = common_vendor.index.getStorageSync("darksave");
|
||||||
|
common_vendor.index.__f__("log", "at pages/doctorsay/index.vue:16", "????0", value);
|
||||||
|
if (value) {
|
||||||
|
darkFans.value = value;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return (_ctx, _cache) => {
|
||||||
|
return {
|
||||||
|
a: common_vendor.p({
|
||||||
|
darkFans: darkFans.value,
|
||||||
|
menuIndex: 1
|
||||||
|
}),
|
||||||
|
b: common_vendor.n(darkFans.value ? `darkbackgroundContainer` : `backgroundContainer`)
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-ae05b914"]]);
|
||||||
|
wx.createPage(MiniProgramPage);
|
||||||
|
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/doctorsay/index.js.map
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"navigationStyle": "custom",
|
||||||
|
"usingComponents": {}
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
<view class="{{['data-v-ae05b914', b]}}"><left-menu wx:if="{{a}}" class="data-v-ae05b914" u-i="ae05b914-0" bind:__l="__l" u-p="{{a}}"></left-menu></view>
|
|
@ -0,0 +1,20 @@
|
||||||
|
.backgroundContainer.data-v-ae05b914 {
|
||||||
|
display: flex;
|
||||||
|
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-ae05b914 {
|
||||||
|
display: flex;
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
height: 100vh;
|
||||||
|
background-image: url('../../static/index/background.png');
|
||||||
|
background-size: cover;
|
||||||
|
background-position: center center;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
|
@ -1,30 +1,14 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
const common_vendor = require("../../common/vendor.js");
|
const common_vendor = require("../../common/vendor.js");
|
||||||
const common_assets = require("../../common/assets.js");
|
const common_assets = require("../../common/assets.js");
|
||||||
|
if (!Math) {
|
||||||
|
(rightItemsfirst + rightItemssecond)();
|
||||||
|
}
|
||||||
|
const rightItemsfirst = () => "../../component/rightItemsindex/index.js";
|
||||||
|
const rightItemssecond = () => "../../component/rightItemssecond/index.js";
|
||||||
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
||||||
__name: "index",
|
__name: "index",
|
||||||
setup(__props) {
|
setup(__props) {
|
||||||
const isPopupVisible = common_vendor.ref(false);
|
|
||||||
const widthCom = common_vendor.ref(1320);
|
|
||||||
const heightCom = common_vendor.ref(540);
|
|
||||||
const topCom = common_vendor.ref(145);
|
|
||||||
const leftCom = common_vendor.ref(233);
|
|
||||||
const isPopupVisiblefiropen = common_vendor.ref(false);
|
|
||||||
const isPopupVisiblesec = common_vendor.ref(false);
|
|
||||||
const widthComsec = common_vendor.ref(1150);
|
|
||||||
const heightComsec = common_vendor.ref(630);
|
|
||||||
const topComsec = common_vendor.ref(730);
|
|
||||||
const leftComsec = common_vendor.ref(233);
|
|
||||||
const isPopupVisiblefiropensec = common_vendor.ref(false);
|
|
||||||
const isPopupVisiblethi = common_vendor.ref(false);
|
|
||||||
const widthComthi = common_vendor.ref(880);
|
|
||||||
const heightComthi = common_vendor.ref(630);
|
|
||||||
const topComthi = common_vendor.ref(730);
|
|
||||||
const leftComthi = common_vendor.ref(1420);
|
|
||||||
const isPopupVisiblefiropenthi = common_vendor.ref(false);
|
|
||||||
const currentTime = common_vendor.ref("");
|
|
||||||
const fullDate = common_vendor.ref("");
|
|
||||||
const weekDay = common_vendor.ref("");
|
|
||||||
const iconList = common_vendor.ref([
|
const iconList = common_vendor.ref([
|
||||||
{ url: "/static/index/lefticon/index.png", targetUrl: "/static/index/lefticontarget/blueindex.png" },
|
{ 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/nurse.png", targetUrl: "/static/index/lefticontarget/bluenurse.png" },
|
||||||
|
@ -33,167 +17,55 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
||||||
{ url: "/static/index/lefticon/wifi.png", targetUrl: "/static/index/lefticontarget/bluewifi.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" }
|
{ url: "/static/index/lefticon/back.png", targetUrl: "/static/index/lefticontarget/blueback.png" }
|
||||||
]);
|
]);
|
||||||
const undericonList = common_vendor.ref([
|
|
||||||
{ url: "/static/index/undericons/alarm.png", targetUrl: "/static/index/undericons/alarmdark.png" },
|
|
||||||
{ url: "/static/index/undericons/linshitime.png", targetUrl: "/static/index/undericons/linshitimedark.png" },
|
|
||||||
{ url: "/static/index/darkicon/zhaomingdark.png", targetUrl: "/static/index/roomicons/zhaomingtar.png" },
|
|
||||||
{ url: "/static/index/darkicon/kontiaodark.png", targetUrl: "/static/index/roomicons/kongtiaotar.png" },
|
|
||||||
{ url: "/static/index/darkicon/nuanfengdark.png", targetUrl: "/static/index/roomicons/nuanfengtar.png" },
|
|
||||||
{ url: "/static/index/darkicon/dianqidark.png", targetUrl: "/static/index/roomicons/dianqitar.png" }
|
|
||||||
]);
|
|
||||||
const huliList = common_vendor.ref([
|
|
||||||
{ url: "/static/index/hulilist/zhuandan.png", name: "转单执行" },
|
|
||||||
{ url: "/static/index/hulilist/xiezhu.png", name: "协助执行" },
|
|
||||||
{ url: "/static/index/hulilist/zhongdian.png", name: "重点追踪" }
|
|
||||||
]);
|
|
||||||
const huliListDark = common_vendor.ref([
|
|
||||||
{ url: "/static/index/darkicon/zhuandandark.png", name: "转单执行" },
|
|
||||||
{ url: "/static/index/darkicon/xiezhudark.png", name: "协助执行" },
|
|
||||||
{ url: "/static/index/darkicon/zhongdiandark.png", name: "重点追踪" }
|
|
||||||
]);
|
|
||||||
const mediumList = common_vendor.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 }
|
|
||||||
]);
|
|
||||||
const mediumListdark = common_vendor.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 }
|
|
||||||
]);
|
|
||||||
const roomBtttonList = common_vendor.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: "电器" }
|
|
||||||
]);
|
|
||||||
const roomBtttonListdark = common_vendor.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: "电器" }
|
|
||||||
]);
|
|
||||||
const menuIndex = common_vendor.ref(0);
|
const menuIndex = common_vendor.ref(0);
|
||||||
const undermenuIndex = common_vendor.ref(0);
|
const menuIndexshow = common_vendor.ref(false);
|
||||||
|
const menuIndexshowsecond = common_vendor.ref(false);
|
||||||
const darkFans = common_vendor.ref(false);
|
const darkFans = common_vendor.ref(false);
|
||||||
common_vendor.ref(false);
|
common_vendor.ref([]);
|
||||||
const roomTar = common_vendor.ref([]);
|
|
||||||
const firstcurrentIndex = common_vendor.ref(0);
|
|
||||||
const firstcurrentIndexup = common_vendor.ref(0);
|
|
||||||
const secondcurrentIndexup = common_vendor.ref(0);
|
|
||||||
const secondcurrentIndex = common_vendor.ref(0);
|
|
||||||
common_vendor.ref(0);
|
common_vendor.ref(0);
|
||||||
|
common_vendor.ref(0);
|
||||||
|
common_vendor.ref(0);
|
||||||
|
common_vendor.ref(0);
|
||||||
|
common_vendor.ref(0);
|
||||||
|
const darkchange = (res) => {
|
||||||
|
darkFans.value = res;
|
||||||
|
};
|
||||||
const changeMenu = (index) => {
|
const changeMenu = (index) => {
|
||||||
|
if (index === 3) {
|
||||||
|
menuIndexshow.value = false;
|
||||||
|
menuIndexshowsecond.value = false;
|
||||||
|
common_vendor.index.navigateTo({
|
||||||
|
url: `/pages/somethingmove/index?darkFans=${darkFans.value}`,
|
||||||
|
animationType: "slide-in-right",
|
||||||
|
animationDuration: 400
|
||||||
|
// 设置动画时长为300毫秒, // 动画持续时间,单位为毫秒
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
menuIndex.value = index;
|
menuIndex.value = index;
|
||||||
};
|
menuIndexshow.value = false;
|
||||||
const changeMenuUnder = (index) => {
|
menuIndexshowsecond.value = false;
|
||||||
undermenuIndex.value = index;
|
setTimeout(() => {
|
||||||
};
|
switch (index) {
|
||||||
const saveItem = (index) => {
|
case 0:
|
||||||
if (roomTar.value.includes(index)) {
|
menuIndexshow.value = true;
|
||||||
let array = [];
|
break;
|
||||||
roomTar.value.forEach((res) => {
|
case 1:
|
||||||
if (res !== index) {
|
menuIndexshowsecond.value = true;
|
||||||
array.push(res);
|
break;
|
||||||
}
|
|
||||||
});
|
|
||||||
roomTar.value = array;
|
|
||||||
} else {
|
|
||||||
roomTar.value.push(index);
|
|
||||||
}
|
}
|
||||||
|
}, 50);
|
||||||
};
|
};
|
||||||
const updateTime = () => {
|
common_vendor.onShow(() => {
|
||||||
const now = /* @__PURE__ */ new Date();
|
|
||||||
const hours = now.getHours().toString().padStart(2, "0");
|
|
||||||
const minutes = now.getMinutes().toString().padStart(2, "0");
|
|
||||||
currentTime.value = `${hours}:${minutes}`;
|
|
||||||
const year = now.getFullYear();
|
|
||||||
const month = (now.getMonth() + 1).toString().padStart(2, "0");
|
|
||||||
const day = now.getDate().toString().padStart(2, "0");
|
|
||||||
fullDate.value = `${year}年${month}月${day}日`;
|
|
||||||
const weekDays = ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"];
|
|
||||||
const week = weekDays[now.getDay()];
|
|
||||||
weekDay.value = week;
|
|
||||||
};
|
|
||||||
const onSwiperChange = (event) => {
|
|
||||||
firstcurrentIndexup.value = event.detail.current;
|
|
||||||
};
|
|
||||||
const onSwiperChangesec = (event) => {
|
|
||||||
secondcurrentIndexup.value = event.detail.current;
|
|
||||||
};
|
|
||||||
const gotoLogin = () => {
|
|
||||||
};
|
|
||||||
const showPopup = () => {
|
|
||||||
isPopupVisible.value = true;
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
widthCom.value = 1900;
|
changeMenu(menuIndex.value);
|
||||||
heightCom.value = 1080;
|
}, 50);
|
||||||
topCom.value = 145;
|
|
||||||
leftCom.value = 233;
|
|
||||||
isPopupVisiblefiropen.value = true;
|
|
||||||
}, 10);
|
|
||||||
};
|
|
||||||
const closePopup = () => {
|
|
||||||
widthCom.value = 1320;
|
|
||||||
heightCom.value = 540;
|
|
||||||
topCom.value = 145;
|
|
||||||
leftCom.value = 233;
|
|
||||||
isPopupVisiblefiropen.value = false;
|
|
||||||
isPopupVisible.value = false;
|
|
||||||
};
|
|
||||||
const showPopupsec = () => {
|
|
||||||
isPopupVisiblesec.value = true;
|
|
||||||
setTimeout(() => {
|
|
||||||
widthComsec.value = 1900;
|
|
||||||
heightComsec.value = 1080;
|
|
||||||
topComsec.value = 320;
|
|
||||||
leftComsec.value = 233;
|
|
||||||
isPopupVisiblefiropensec.value = true;
|
|
||||||
}, 10);
|
|
||||||
};
|
|
||||||
const closePopupsec = () => {
|
|
||||||
widthComsec.value = 1150;
|
|
||||||
heightComsec.value = 630;
|
|
||||||
topComsec.value = 730;
|
|
||||||
leftComsec.value = 233;
|
|
||||||
isPopupVisiblefiropensec.value = false;
|
|
||||||
isPopupVisiblesec.value = false;
|
|
||||||
};
|
|
||||||
const showPopupthi = () => {
|
|
||||||
isPopupVisiblethi.value = true;
|
|
||||||
setTimeout(() => {
|
|
||||||
widthComthi.value = 1900;
|
|
||||||
heightComthi.value = 1080;
|
|
||||||
topComthi.value = 320;
|
|
||||||
leftComthi.value = 380;
|
|
||||||
isPopupVisiblefiropenthi.value = true;
|
|
||||||
}, 10);
|
|
||||||
};
|
|
||||||
const closePopupthi = () => {
|
|
||||||
widthComthi.value = 880;
|
|
||||||
heightComthi.value = 630;
|
|
||||||
topComthi.value = 730;
|
|
||||||
leftComthi.value = 1420;
|
|
||||||
isPopupVisiblefiropenthi.value = false;
|
|
||||||
isPopupVisiblethi.value = false;
|
|
||||||
};
|
|
||||||
common_vendor.onMounted(() => {
|
|
||||||
updateTime();
|
|
||||||
setInterval(updateTime, 1e3);
|
|
||||||
});
|
|
||||||
common_vendor.onBeforeUnmount(() => {
|
|
||||||
clearInterval(updateTime);
|
|
||||||
});
|
});
|
||||||
return (_ctx, _cache) => {
|
return (_ctx, _cache) => {
|
||||||
return common_vendor.e({
|
return {
|
||||||
a: common_assets._imports_0,
|
a: common_assets._imports_0,
|
||||||
b: common_vendor.n(darkFans.value ? `left-head-font-dark` : `left-head-font`),
|
b: common_vendor.n(darkFans.value ? `left-head-font-dark` : `left-head-font`),
|
||||||
c: common_vendor.o(gotoLogin),
|
c: common_vendor.f(iconList.value, (item, index, i0) => {
|
||||||
d: common_vendor.f(iconList.value, (item, index, i0) => {
|
|
||||||
return {
|
return {
|
||||||
a: index === menuIndex.value,
|
a: index === menuIndex.value,
|
||||||
b: index === menuIndex.value ? item.targetUrl : item.url,
|
b: index === menuIndex.value ? item.targetUrl : item.url,
|
||||||
|
@ -201,626 +73,21 @@ const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
||||||
d: index
|
d: index
|
||||||
};
|
};
|
||||||
}),
|
}),
|
||||||
e: `/static/index/ray.png`,
|
d: `/static/index/ray.png`,
|
||||||
f: common_vendor.n(darkFans.value ? `right-container-title-no-dark` : `right-container-title-no`),
|
e: !menuIndex.value,
|
||||||
g: common_vendor.n(darkFans.value ? `right-container-title-no-dark` : `right-container-title-no`),
|
f: common_vendor.o(darkchange),
|
||||||
h: `/static/index/undericons/man.png`,
|
g: common_vendor.p({
|
||||||
i: common_vendor.n(darkFans.value ? `right-icons-font-dark` : `right-icons-font`),
|
isshow: menuIndexshow.value,
|
||||||
j: darkFans.value ? `/static/index/undericons/face.png` : `/static/index/undericons/facelight.png`,
|
darkFans: darkFans.value
|
||||||
k: darkFans.value ? `/static/index/undericons/hand.png` : `/static/index/undericons/handlight.png`,
|
}),
|
||||||
l: darkFans.value ? `/static/index/undericons/out.png` : `/static/index/undericons/outlight.png`,
|
h: menuIndex.value == 1,
|
||||||
m: common_vendor.o(($event) => darkFans.value = !darkFans.value),
|
i: common_vendor.o(darkchange),
|
||||||
n: !darkFans.value,
|
j: common_vendor.p({
|
||||||
o: common_vendor.s(darkFans.value ? {
|
isshow: menuIndexshowsecond.value,
|
||||||
color: "black"
|
darkFans: darkFans.value
|
||||||
} : {}),
|
}),
|
||||||
p: common_vendor.s(darkFans.value ? {
|
k: common_vendor.n(darkFans.value ? `darkbackgroundContainer` : `backgroundContainer`)
|
||||||
backgroundColor: "#fff"
|
|
||||||
} : {}),
|
|
||||||
q: common_vendor.o(($event) => darkFans.value = !darkFans.value),
|
|
||||||
r: darkFans.value,
|
|
||||||
s: `/static/index/hulilei.png`,
|
|
||||||
t: common_vendor.o(showPopup),
|
|
||||||
v: darkFans.value
|
|
||||||
}, darkFans.value ? {
|
|
||||||
w: `/static/index/cardbgc/uplight.png`
|
|
||||||
} : {}, {
|
|
||||||
x: common_vendor.f([1, 2, 3], (item, index, i0) => {
|
|
||||||
return {
|
|
||||||
a: index,
|
|
||||||
b: common_vendor.s(index === firstcurrentIndexup.value ? {
|
|
||||||
backgroundColor: `#01A0FE`
|
|
||||||
} : {})
|
|
||||||
};
|
};
|
||||||
}),
|
|
||||||
y: common_vendor.n(darkFans.value ? `dot-dark` : `dot`),
|
|
||||||
z: common_vendor.f([1, 2, 3], (item, index, i0) => {
|
|
||||||
return common_vendor.e({
|
|
||||||
a: common_vendor.f([1, 2, 3], (item2, index2, i1) => {
|
|
||||||
return {
|
|
||||||
a: common_vendor.o(showPopup, index2),
|
|
||||||
b: index2
|
|
||||||
};
|
|
||||||
})
|
|
||||||
}, darkFans.value ? {
|
|
||||||
b: `/static/index/cardbgc/leftlight.png`
|
|
||||||
} : {}, {
|
|
||||||
c: index
|
|
||||||
});
|
|
||||||
}),
|
|
||||||
A: `/static/index/teeth.png`,
|
|
||||||
B: darkFans.value ? `/static/index/darkicon/labadark.png` : `/static/index/laba.png`,
|
|
||||||
C: common_vendor.n(darkFans.value ? `right-container-fir-left-card-main-font-dark` : `right-container-fir-left-card-main-font`),
|
|
||||||
D: darkFans.value ? `/static/index/indexvideo.png` : `/static/index/indexvideo.png`,
|
|
||||||
E: common_vendor.n(darkFans.value ? `time-font-dark` : `time-font`),
|
|
||||||
F: common_vendor.n(darkFans.value ? `time-text-dark` : `time-text`),
|
|
||||||
G: darkFans.value ? `/static/index/darkicon/zhixingpeopledark.png` : `/static/index/cardicons/zhixing.png`,
|
|
||||||
H: common_vendor.n(darkFans.value ? `time-people-font-dark` : `time-people-font`),
|
|
||||||
I: darkFans.value ? `/static/index/medium/dopeopledark.png` : `/static/index/cardicons/zhifa.png`,
|
|
||||||
J: common_vendor.n(darkFans.value ? `time-people-font-dark` : `time-people-font`),
|
|
||||||
K: common_vendor.n(darkFans.value ? `time-button-end-dark` : `time-button-end`),
|
|
||||||
L: firstcurrentIndex.value,
|
|
||||||
M: darkFans.value,
|
|
||||||
N: common_vendor.s(darkFans.value ? `background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #386997 50%, rgba(0, 0, 0, 0) 100%);` : ``),
|
|
||||||
O: firstcurrentIndexup.value,
|
|
||||||
P: common_vendor.o(onSwiperChange),
|
|
||||||
Q: `/static/index/hulilist/shang.png`,
|
|
||||||
R: !darkFans.value
|
|
||||||
}, !darkFans.value ? {
|
|
||||||
S: common_vendor.f(huliList.value, (item, index, i0) => {
|
|
||||||
return {
|
|
||||||
a: item.url,
|
|
||||||
b: common_vendor.t(item.name),
|
|
||||||
c: index
|
|
||||||
};
|
|
||||||
})
|
|
||||||
} : {}, {
|
|
||||||
T: darkFans.value
|
|
||||||
}, darkFans.value ? {
|
|
||||||
U: common_vendor.f(huliListDark.value, (item, index, i0) => {
|
|
||||||
return {
|
|
||||||
a: item.url,
|
|
||||||
b: common_vendor.t(item.name),
|
|
||||||
c: index
|
|
||||||
};
|
|
||||||
})
|
|
||||||
} : {}, {
|
|
||||||
V: `/static/index/hulilist/xia.png`,
|
|
||||||
W: common_vendor.n(darkFans.value ? `right-container-fir-left-card-dark` : `right-container-fir-left-card`),
|
|
||||||
X: common_vendor.f([1, 2, 3, 4], (item, index, i0) => {
|
|
||||||
return {
|
|
||||||
a: index
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
Y: common_assets._imports_1,
|
|
||||||
Z: common_vendor.t(currentTime.value),
|
|
||||||
aa: common_vendor.n(darkFans.value ? `right-container-title-dark` : `right-container-title`),
|
|
||||||
ab: common_vendor.t(fullDate.value),
|
|
||||||
ac: common_vendor.n(darkFans.value ? `right-container-date-dark` : `right-container-date`),
|
|
||||||
ad: common_vendor.t(weekDay.value),
|
|
||||||
ae: common_vendor.n(darkFans.value ? `right-container-day-dark` : `right-container-day`),
|
|
||||||
af: darkFans.value ? `/static/index/darkicon/wendudark.png` : `/static/index/roomicons/wendu.png`,
|
|
||||||
ag: common_vendor.n(darkFans.value ? `right-container-tem-text-dark` : `right-container-tem-text`),
|
|
||||||
ah: darkFans.value ? `/static/index/roomicons/shidu.png` : `/static/index/darkicon/shidudark.png`,
|
|
||||||
ai: common_vendor.n(darkFans.value ? `right-container-tem-text-dark` : `right-container-tem-text`),
|
|
||||||
aj: !darkFans.value
|
|
||||||
}, !darkFans.value ? {
|
|
||||||
ak: common_vendor.f(roomBtttonList.value, (item, index, i0) => {
|
|
||||||
return {
|
|
||||||
a: roomTar.value.includes(index),
|
|
||||||
b: roomTar.value.includes(index) ? item.targetUrl : item.url,
|
|
||||||
c: common_vendor.o(($event) => saveItem(index), index),
|
|
||||||
d: common_vendor.t(item.name),
|
|
||||||
e: common_vendor.s(roomTar.value.includes(index) ? {
|
|
||||||
color: "#167ED7"
|
|
||||||
} : {}),
|
|
||||||
f: index
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
al: `/static/index/cardicons/ray2.png`
|
|
||||||
} : {}, {
|
|
||||||
am: darkFans.value
|
|
||||||
}, darkFans.value ? {
|
|
||||||
an: common_vendor.f(roomBtttonListdark.value, (item, index, i0) => {
|
|
||||||
return {
|
|
||||||
a: roomTar.value.includes(index),
|
|
||||||
b: roomTar.value.includes(index) ? item.targetUrl : item.url,
|
|
||||||
c: common_vendor.o(($event) => saveItem(index), index),
|
|
||||||
d: common_vendor.t(item.name),
|
|
||||||
e: common_vendor.s(roomTar.value.includes(index) ? {
|
|
||||||
color: "#167ED7"
|
|
||||||
} : {
|
|
||||||
color: "#fff"
|
|
||||||
}),
|
|
||||||
f: index
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
ao: `/static/index/cardicons/ray2.png`
|
|
||||||
} : {}, {
|
|
||||||
ap: common_vendor.n(darkFans.value ? `right-container-fir-right-dark` : `right-container-fir-right`),
|
|
||||||
aq: `/static/index/yiliao/yiliaolei.png`,
|
|
||||||
ar: common_vendor.o(showPopupsec),
|
|
||||||
as: common_vendor.f([1, 2, 3], (item, index, i0) => {
|
|
||||||
return {
|
|
||||||
a: index,
|
|
||||||
b: common_vendor.s(index === secondcurrentIndexup.value ? {
|
|
||||||
backgroundColor: `#01A0FE`
|
|
||||||
} : {})
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
at: common_vendor.n(darkFans.value ? `dot-dark` : `dot`),
|
|
||||||
av: darkFans.value
|
|
||||||
}, darkFans.value ? {
|
|
||||||
aw: `/static/index/cardbgc/uplight.png`
|
|
||||||
} : {}, {
|
|
||||||
ax: common_vendor.f([1, 2, 3], (item, index, i0) => {
|
|
||||||
return {
|
|
||||||
a: common_vendor.f([1, 2, 3], (item2, index2, i1) => {
|
|
||||||
return {
|
|
||||||
a: index2
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
b: index
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
ay: common_vendor.n(darkFans.value ? `time-font-dark` : `time-font`),
|
|
||||||
az: darkFans.value ? `/static/index/medium/doctorsaydark.png` : `/static/index/medium/doctorsay.png`,
|
|
||||||
aA: common_vendor.n(darkFans.value ? `time-people-font-dark` : `time-people-font`),
|
|
||||||
aB: darkFans.value ? `/static/index/medium/howtododark.png` : `/static/index/medium/howtodo.png`,
|
|
||||||
aC: common_vendor.n(darkFans.value ? `time-people-font-dark` : `time-people-font`),
|
|
||||||
aD: darkFans.value ? `/static/index/medium/useMed.png` : `/static/index/medium/yongyao.png`,
|
|
||||||
aE: common_vendor.n(darkFans.value ? `time-people-font-dark` : `time-people-font`),
|
|
||||||
aF: darkFans.value ? `/static/index/medium/domanydark.png` : `/static/index/medium/domany.png`,
|
|
||||||
aG: common_vendor.n(darkFans.value ? `time-people-font-dark` : `time-people-font`),
|
|
||||||
aH: darkFans.value ? `/static/index/darkicon/zhixingpeopledark.png` : `/static/index/cardicons/zhixing.png`,
|
|
||||||
aI: common_vendor.n(darkFans.value ? `time-people-font-dark` : `time-people-font`),
|
|
||||||
aJ: darkFans.value ? `/static/index/medium/dopeopledark.png` : `/static/index/cardicons/zhifa.png`,
|
|
||||||
aK: common_vendor.n(darkFans.value ? `time-people-font-dark` : `time-people-font`),
|
|
||||||
aL: common_vendor.n(darkFans.value ? `time-button-end-dark` : `time-button-end`),
|
|
||||||
aM: `/static/index/yiliao/project2.png`,
|
|
||||||
aN: common_vendor.n(darkFans.value ? `right-container-photo-text-dark` : `right-container-photo-text`),
|
|
||||||
aO: secondcurrentIndex.value,
|
|
||||||
aP: secondcurrentIndexup.value,
|
|
||||||
aQ: common_vendor.o(onSwiperChangesec),
|
|
||||||
aR: darkFans.value
|
|
||||||
}, darkFans.value ? {
|
|
||||||
aS: `/static/index/cardbgc/leftlight.png`
|
|
||||||
} : {}, {
|
|
||||||
aT: common_vendor.s(darkFans.value ? `background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #386997 50%, rgba(0, 0, 0, 0) 100%);` : ``),
|
|
||||||
aU: `/static/index/hulilist/shang.png`,
|
|
||||||
aV: !darkFans.value
|
|
||||||
}, !darkFans.value ? {
|
|
||||||
aW: common_vendor.f(mediumList.value, (item, index, i0) => {
|
|
||||||
return {
|
|
||||||
a: item.url,
|
|
||||||
b: common_vendor.t(item.name),
|
|
||||||
c: `${item.number}%`,
|
|
||||||
d: item.number !== 0,
|
|
||||||
e: index
|
|
||||||
};
|
|
||||||
})
|
|
||||||
} : {}, {
|
|
||||||
aX: darkFans.value
|
|
||||||
}, darkFans.value ? {
|
|
||||||
aY: common_vendor.f(mediumListdark.value, (item, index, i0) => {
|
|
||||||
return {
|
|
||||||
a: item.url,
|
|
||||||
b: common_vendor.t(item.name),
|
|
||||||
c: `${item.number}%`,
|
|
||||||
d: item.number !== 0,
|
|
||||||
e: index
|
|
||||||
};
|
|
||||||
})
|
|
||||||
} : {}, {
|
|
||||||
aZ: `/static/index/hulilist/xia.png`,
|
|
||||||
ba: common_vendor.n(darkFans.value ? `right-container-left-dark` : `right-container-left`),
|
|
||||||
bb: `/static/index/baojielei.png`,
|
|
||||||
bc: common_vendor.o(showPopupthi),
|
|
||||||
bd: `/static/index/baojieleft.png`,
|
|
||||||
be: `/static/index/baojieright.png`,
|
|
||||||
bf: common_vendor.f([1, 2, 3], (item, index, i0) => {
|
|
||||||
return {
|
|
||||||
a: index
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
bg: common_vendor.n(darkFans.value ? `time-font-dark` : `time-font`),
|
|
||||||
bh: common_vendor.n(darkFans.value ? `time-text-dark` : `time-text`),
|
|
||||||
bi: darkFans.value ? `/static/index/darkicon/zhixingpeopledark.png` : `/static/index/cardicons/zhixing.png`,
|
|
||||||
bj: common_vendor.n(darkFans.value ? `time-people-font-dark` : `time-people-font`),
|
|
||||||
bk: darkFans.value ? `/static/index/medium/dopeopledark.png` : `/static/index/cardicons/zhifa.png`,
|
|
||||||
bl: common_vendor.n(darkFans.value ? `time-people-font-dark` : `time-people-font`),
|
|
||||||
bm: common_vendor.n(darkFans.value ? `time-button-end-dark` : `time-button-end`),
|
|
||||||
bn: `/static/index/project3.png`,
|
|
||||||
bo: common_vendor.n(darkFans.value ? `time-tra-thi-photo-font-dark` : `time-tra-thi-photo-font`),
|
|
||||||
bp: secondcurrentIndex.value,
|
|
||||||
bq: common_vendor.n(darkFans.value ? `right-container-right-father-dark` : `right-container-right-father`),
|
|
||||||
br: common_vendor.f(undericonList.value, (item, index, i0) => {
|
|
||||||
return {
|
|
||||||
a: index === undermenuIndex.value,
|
|
||||||
b: index === undermenuIndex.value ? item.targetUrl : item.url,
|
|
||||||
c: index,
|
|
||||||
d: common_vendor.o(($event) => changeMenuUnder(index), index)
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
bs: common_assets._imports_2,
|
|
||||||
bt: isPopupVisible.value
|
|
||||||
}, isPopupVisible.value ? common_vendor.e({
|
|
||||||
bv: `/static/index/hulilei.png`,
|
|
||||||
bw: common_vendor.o(closePopup),
|
|
||||||
bx: darkFans.value
|
|
||||||
}, darkFans.value ? {
|
|
||||||
by: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
top: `680rpx`
|
|
||||||
} : `{}`),
|
|
||||||
bz: `/static/index/cardbgc/uplight.png`
|
|
||||||
} : {}, {
|
|
||||||
bA: common_vendor.f([1], (item, index, i0) => {
|
|
||||||
return common_vendor.e({
|
|
||||||
a: common_vendor.f([1], (item2, index2, i1) => {
|
|
||||||
return {
|
|
||||||
a: common_vendor.o(closePopup, index2),
|
|
||||||
b: index2
|
|
||||||
};
|
|
||||||
})
|
|
||||||
}, darkFans.value ? {
|
|
||||||
b: `/static/index/cardbgc/leftlight.png`
|
|
||||||
} : {}, {
|
|
||||||
c: index
|
|
||||||
});
|
|
||||||
}),
|
|
||||||
bB: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
top: `-60rpx`,
|
|
||||||
left: `0rpx`,
|
|
||||||
width: `150rpx`,
|
|
||||||
height: `60rpx`,
|
|
||||||
fontSize: `35rpx`,
|
|
||||||
borderRadius: `8rpx`
|
|
||||||
} : `{}`),
|
|
||||||
bC: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
top: `40rpx`,
|
|
||||||
left: `1300rpx`
|
|
||||||
} : `{}`),
|
|
||||||
bD: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
width: `600rpx`,
|
|
||||||
height: `500rpx`
|
|
||||||
} : {
|
|
||||||
marginTop: `-90rpx`
|
|
||||||
}),
|
|
||||||
bE: `/static/index/teeth.png`,
|
|
||||||
bF: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
width: `65rpx`,
|
|
||||||
height: `65rpx`
|
|
||||||
} : {}),
|
|
||||||
bG: darkFans.value ? `/static/index/darkicon/labadark.png` : `/static/index/laba.png`,
|
|
||||||
bH: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
fontSize: `46rpx`,
|
|
||||||
width: `400rpx`
|
|
||||||
} : `{}`),
|
|
||||||
bI: common_vendor.n(darkFans.value ? `right-container-fir-left-card-main-font-dark` : `right-container-fir-left-card-main-font`),
|
|
||||||
bJ: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
width: `65rpx`,
|
|
||||||
height: `65rpx`
|
|
||||||
} : {
|
|
||||||
marginLeft: `-150rpx`
|
|
||||||
}),
|
|
||||||
bK: darkFans.value ? `/static/index/indexvideo.png` : `/static/index/indexvideo.png`,
|
|
||||||
bL: common_vendor.n(darkFans.value ? `time-font-dark` : `time-font`),
|
|
||||||
bM: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
fontSize: `100rpx`
|
|
||||||
} : `{}`),
|
|
||||||
bN: common_vendor.n(darkFans.value ? `time-text-dark` : `time-text`),
|
|
||||||
bO: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
fontSize: `45rpx`,
|
|
||||||
lineHeight: `70rpx`,
|
|
||||||
width: `800rpx`,
|
|
||||||
marginTop: `50rpx`,
|
|
||||||
marginBottom: `50rpx`
|
|
||||||
} : `{}`),
|
|
||||||
bP: darkFans.value ? `/static/index/darkicon/zhixingpeopledark.png` : `/static/index/cardicons/zhixing.png`,
|
|
||||||
bQ: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
width: `55rpx`,
|
|
||||||
height: `55rpx`
|
|
||||||
} : `{}`),
|
|
||||||
bR: common_vendor.n(darkFans.value ? `time-people-font-dark` : `time-people-font`),
|
|
||||||
bS: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
fontSize: `42rpx`,
|
|
||||||
marginRight: "40rpx"
|
|
||||||
} : `{}`),
|
|
||||||
bT: darkFans.value ? `/static/index/medium/dopeopledark.png` : `/static/index/cardicons/zhifa.png`,
|
|
||||||
bU: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
width: `55rpx`,
|
|
||||||
height: `55rpx`
|
|
||||||
} : `{}`),
|
|
||||||
bV: common_vendor.n(darkFans.value ? `time-people-font-dark` : `time-people-font`),
|
|
||||||
bW: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
fontSize: `42rpx`
|
|
||||||
} : `{}`),
|
|
||||||
bX: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
marginBottom: "60rpx"
|
|
||||||
} : `{}`),
|
|
||||||
bY: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
width: `350rpx`,
|
|
||||||
height: `110rpx`,
|
|
||||||
borderRadius: `80rpx`,
|
|
||||||
fontSize: `50rpx`
|
|
||||||
} : `{}`),
|
|
||||||
bZ: common_vendor.n(darkFans.value ? `time-button-end-dark` : `time-button-end`),
|
|
||||||
ca: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
width: `350rpx`,
|
|
||||||
height: `110rpx`,
|
|
||||||
borderRadius: `80rpx`,
|
|
||||||
fontSize: `50rpx`
|
|
||||||
} : `{}`),
|
|
||||||
cb: common_vendor.s(isPopupVisiblefiropen.value ? `{}` : {
|
|
||||||
marginTop: `0rpx`,
|
|
||||||
marginLeft: `30rpx`
|
|
||||||
}),
|
|
||||||
cc: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
height: `700rpx`
|
|
||||||
} : `{}`),
|
|
||||||
cd: darkFans.value,
|
|
||||||
ce: common_vendor.s(darkFans.value ? `background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #386997 50%, rgba(0, 0, 0, 0) 100%);` : ``),
|
|
||||||
cf: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
marginTop: `70rpx`
|
|
||||||
} : {
|
|
||||||
marginTop: `0rpx`
|
|
||||||
}),
|
|
||||||
cg: `/static/index/hulilist/shang.png`,
|
|
||||||
ch: !darkFans.value
|
|
||||||
}, !darkFans.value ? {
|
|
||||||
ci: common_vendor.f(huliList.value, (item, index, i0) => {
|
|
||||||
return {
|
|
||||||
a: item.url,
|
|
||||||
b: common_vendor.t(item.name),
|
|
||||||
c: index
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
cj: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
height: `200rpx`
|
|
||||||
} : `{}`),
|
|
||||||
ck: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
height: `600rpx`
|
|
||||||
} : `{}`)
|
|
||||||
} : {}, {
|
|
||||||
cl: darkFans.value
|
|
||||||
}, darkFans.value ? {
|
|
||||||
cm: common_vendor.f(huliListDark.value, (item, index, i0) => {
|
|
||||||
return {
|
|
||||||
a: item.url,
|
|
||||||
b: common_vendor.t(item.name),
|
|
||||||
c: index
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
cn: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
height: `200rpx`
|
|
||||||
} : `{}`),
|
|
||||||
co: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
height: `600rpx`
|
|
||||||
} : `{}`)
|
|
||||||
} : {}, {
|
|
||||||
cp: `/static/index/hulilist/xia.png`,
|
|
||||||
cq: common_vendor.n(darkFans.value ? `right-container-fir-left-card-dark` : `right-container-fir-left-card`),
|
|
||||||
cr: common_vendor.o(() => {
|
|
||||||
}),
|
|
||||||
cs: widthCom.value + "rpx",
|
|
||||||
ct: heightCom.value + "rpx",
|
|
||||||
cv: topCom.value + "rpx",
|
|
||||||
cw: leftCom.value + "rpx",
|
|
||||||
cx: common_vendor.o(closePopup),
|
|
||||||
cy: common_vendor.s(isPopupVisiblefiropen.value ? {
|
|
||||||
backgroundColor: `rgba(89, 109, 154, 0.5)`
|
|
||||||
} : `{}`)
|
|
||||||
}) : {}, {
|
|
||||||
cz: isPopupVisiblesec.value
|
|
||||||
}, isPopupVisiblesec.value ? common_vendor.e({
|
|
||||||
cA: `/static/index/yiliao/yiliaolei.png`,
|
|
||||||
cB: common_vendor.o(closePopupsec),
|
|
||||||
cC: darkFans.value
|
|
||||||
}, darkFans.value ? {
|
|
||||||
cD: common_vendor.s(isPopupVisiblefiropensec.value ? {
|
|
||||||
left: `1000rpx`,
|
|
||||||
top: `680rpx`
|
|
||||||
} : `{}`),
|
|
||||||
cE: `/static/index/cardbgc/uplight.png`
|
|
||||||
} : {}, {
|
|
||||||
cF: common_vendor.f([1], (item, index, i0) => {
|
|
||||||
return {
|
|
||||||
a: common_vendor.f([1], (item2, index2, i1) => {
|
|
||||||
return {
|
|
||||||
a: index2
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
b: index
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
cG: common_vendor.s(isPopupVisiblefiropensec.value ? {
|
|
||||||
top: `160rpx`,
|
|
||||||
left: `900rpx`,
|
|
||||||
width: `150rpx`,
|
|
||||||
height: `60rpx`,
|
|
||||||
fontSize: `35rpx`,
|
|
||||||
borderRadius: `8rpx`
|
|
||||||
} : `{}`),
|
|
||||||
cH: common_vendor.s(isPopupVisiblefiropensec.value ? {
|
|
||||||
fontSize: `120rpx`
|
|
||||||
} : `{}`),
|
|
||||||
cI: common_vendor.n(darkFans.value ? `time-font-dark` : `time-font`),
|
|
||||||
cJ: darkFans.value ? `/static/index/medium/doctorsaydark.png` : `/static/index/medium/doctorsay.png`,
|
|
||||||
cK: common_vendor.n(darkFans.value ? `time-people-font-dark` : `time-people-font`),
|
|
||||||
cL: common_vendor.n(!isPopupVisiblefiropensec.value ? `time-people-thi` : `time-people-thi-change`),
|
|
||||||
cM: darkFans.value ? `/static/index/medium/howtododark.png` : `/static/index/medium/howtodo.png`,
|
|
||||||
cN: common_vendor.n(darkFans.value ? `time-people-font-dark` : `time-people-font`),
|
|
||||||
cO: common_vendor.n(!isPopupVisiblefiropensec.value ? `time-people-thi` : `time-people-thi-change`),
|
|
||||||
cP: darkFans.value ? `/static/index/medium/useMed.png` : `/static/index/medium/yongyao.png`,
|
|
||||||
cQ: common_vendor.n(darkFans.value ? `time-people-font-dark` : `time-people-font`),
|
|
||||||
cR: common_vendor.n(!isPopupVisiblefiropensec.value ? `time-people-thi` : `time-people-thi-change`),
|
|
||||||
cS: darkFans.value ? `/static/index/medium/domanydark.png` : `/static/index/medium/domany.png`,
|
|
||||||
cT: common_vendor.n(darkFans.value ? `time-people-font-dark` : `time-people-font`),
|
|
||||||
cU: common_vendor.n(!isPopupVisiblefiropensec.value ? `time-people-thi` : `time-people-thi-change`),
|
|
||||||
cV: darkFans.value ? `/static/index/darkicon/zhixingpeopledark.png` : `/static/index/cardicons/zhixing.png`,
|
|
||||||
cW: common_vendor.n(darkFans.value ? `time-people-font-dark` : `time-people-font`),
|
|
||||||
cX: darkFans.value ? `/static/index/medium/dopeopledark.png` : `/static/index/cardicons/zhifa.png`,
|
|
||||||
cY: common_vendor.n(darkFans.value ? `time-people-font-dark` : `time-people-font`),
|
|
||||||
cZ: common_vendor.n(!isPopupVisiblefiropensec.value ? `time-people-thi` : `time-people-thi-change`),
|
|
||||||
da: common_vendor.s(isPopupVisiblefiropensec.value ? {
|
|
||||||
width: `350rpx`,
|
|
||||||
height: `110rpx`,
|
|
||||||
borderRadius: `80rpx`,
|
|
||||||
fontSize: `50rpx`
|
|
||||||
} : `{}`),
|
|
||||||
db: common_vendor.n(darkFans.value ? `time-button-end-dark` : `time-button-end`),
|
|
||||||
dc: common_vendor.s(isPopupVisiblefiropensec.value ? {
|
|
||||||
width: `350rpx`,
|
|
||||||
height: `110rpx`,
|
|
||||||
borderRadius: `80rpx`,
|
|
||||||
fontSize: `50rpx`
|
|
||||||
} : `{}`),
|
|
||||||
dd: common_vendor.s(isPopupVisiblefiropensec.value ? {
|
|
||||||
marginTop: `50rpx`
|
|
||||||
} : `{}`),
|
|
||||||
de: common_vendor.s(isPopupVisiblefiropensec.value ? {
|
|
||||||
width: `800rpx`,
|
|
||||||
marginTop: `70rpx`,
|
|
||||||
marginLeft: `120rpx`
|
|
||||||
} : `{}`),
|
|
||||||
df: `/static/index/yiliao/project2.png`,
|
|
||||||
dg: common_vendor.n(darkFans.value ? `right-container-photo-text-dark` : `right-container-photo-text`),
|
|
||||||
dh: common_vendor.n(isPopupVisiblefiropensec.value ? `right-container-photo-change` : `right-container-photo`),
|
|
||||||
di: darkFans.value
|
|
||||||
}, darkFans.value ? {
|
|
||||||
dj: `/static/index/cardbgc/leftlight.png`
|
|
||||||
} : {}, {
|
|
||||||
dk: common_vendor.s(darkFans.value ? `background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #386997 50%, rgba(0, 0, 0, 0) 100%);` : ``),
|
|
||||||
dl: `/static/index/hulilist/shang.png`,
|
|
||||||
dm: !darkFans.value
|
|
||||||
}, !darkFans.value ? {
|
|
||||||
dn: common_vendor.f(mediumList.value, (item, index, i0) => {
|
|
||||||
return {
|
|
||||||
a: item.url,
|
|
||||||
b: common_vendor.t(item.name),
|
|
||||||
c: `${item.number}%`,
|
|
||||||
d: item.number !== 0,
|
|
||||||
e: index
|
|
||||||
};
|
|
||||||
})
|
|
||||||
} : {}, {
|
|
||||||
dp: darkFans.value
|
|
||||||
}, darkFans.value ? {
|
|
||||||
dq: common_vendor.f(mediumListdark.value, (item, index, i0) => {
|
|
||||||
return {
|
|
||||||
a: item.url,
|
|
||||||
b: common_vendor.t(item.name),
|
|
||||||
c: `${item.number}%`,
|
|
||||||
d: item.number !== 0,
|
|
||||||
e: index
|
|
||||||
};
|
|
||||||
})
|
|
||||||
} : {}, {
|
|
||||||
dr: `/static/index/hulilist/xia.png`,
|
|
||||||
ds: common_vendor.s(isPopupVisiblefiropensec.value ? {
|
|
||||||
width: `350rpx`
|
|
||||||
} : `{}`),
|
|
||||||
dt: common_vendor.n(darkFans.value ? `right-container-left-dark` : `right-container-left`),
|
|
||||||
dv: common_vendor.o(() => {
|
|
||||||
}),
|
|
||||||
dw: widthComsec.value + "rpx",
|
|
||||||
dx: heightComsec.value + "rpx",
|
|
||||||
dy: topComsec.value + "rpx",
|
|
||||||
dz: leftComsec.value + "rpx",
|
|
||||||
dA: common_vendor.o(closePopupsec),
|
|
||||||
dB: common_vendor.s(isPopupVisiblefiropensec.value ? {
|
|
||||||
backgroundColor: `rgba(89, 109, 154, 0.5)`
|
|
||||||
} : `{}`)
|
|
||||||
}) : {}, {
|
|
||||||
dC: isPopupVisiblethi.value
|
|
||||||
}, isPopupVisiblethi.value ? {
|
|
||||||
dD: `/static/index/baojielei.png`,
|
|
||||||
dE: common_vendor.o(closePopupthi),
|
|
||||||
dF: common_vendor.f([1], (item, index, i0) => {
|
|
||||||
return {
|
|
||||||
a: index
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
dG: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
|
||||||
top: `90rpx`,
|
|
||||||
left: `200rpx`,
|
|
||||||
width: `150rpx`,
|
|
||||||
height: `60rpx`,
|
|
||||||
fontSize: `35rpx`,
|
|
||||||
borderRadius: `8rpx`
|
|
||||||
} : `{}`),
|
|
||||||
dH: common_vendor.n(darkFans.value ? `time-font-dark` : `time-font`),
|
|
||||||
dI: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
|
||||||
fontSize: `100rpx`
|
|
||||||
} : `{}`),
|
|
||||||
dJ: common_vendor.n(darkFans.value ? `time-text-dark` : `time-text`),
|
|
||||||
dK: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
|
||||||
width: `800rpx`,
|
|
||||||
fontSize: `45rpx`,
|
|
||||||
marginTop: `100rpx`,
|
|
||||||
lineHeight: `60rpx`
|
|
||||||
} : `{}`),
|
|
||||||
dL: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
|
||||||
width: `55rpx`,
|
|
||||||
height: `55rpx`
|
|
||||||
} : `{}`),
|
|
||||||
dM: darkFans.value ? `/static/index/darkicon/zhixingpeopledark.png` : `/static/index/cardicons/zhixing.png`,
|
|
||||||
dN: common_vendor.n(darkFans.value ? `time-people-font-dark` : `time-people-font`),
|
|
||||||
dO: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
|
||||||
fontSize: `42rpx`,
|
|
||||||
marginRight: "40rpx"
|
|
||||||
} : `{}`),
|
|
||||||
dP: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
|
||||||
width: `55rpx`,
|
|
||||||
height: `55rpx`
|
|
||||||
} : `{}`),
|
|
||||||
dQ: darkFans.value ? `/static/index/medium/dopeopledark.png` : `/static/index/cardicons/zhifa.png`,
|
|
||||||
dR: common_vendor.n(darkFans.value ? `time-people-font-dark` : `time-people-font`),
|
|
||||||
dS: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
|
||||||
fontSize: `42rpx`,
|
|
||||||
marginRight: "40rpx"
|
|
||||||
} : `{}`),
|
|
||||||
dT: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
|
||||||
marginTop: `100rpx`,
|
|
||||||
marginBottom: `100rpx`
|
|
||||||
} : `{}`),
|
|
||||||
dU: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
|
||||||
width: `350rpx`,
|
|
||||||
height: `110rpx`,
|
|
||||||
borderRadius: `80rpx`,
|
|
||||||
fontSize: `50rpx`
|
|
||||||
} : `{}`),
|
|
||||||
dV: common_vendor.n(darkFans.value ? `time-button-end-dark` : `time-button-end`),
|
|
||||||
dW: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
|
||||||
width: `350rpx`,
|
|
||||||
height: `110rpx`,
|
|
||||||
borderRadius: `80rpx`,
|
|
||||||
fontSize: `50rpx`
|
|
||||||
} : `{}`),
|
|
||||||
dX: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
|
||||||
width: `800rpx`,
|
|
||||||
marginLeft: `150rpx`
|
|
||||||
} : `{}`),
|
|
||||||
dY: `/static/index/project3.png`,
|
|
||||||
dZ: common_vendor.n(darkFans.value ? `time-tra-thi-photo-font-dark` : `time-tra-thi-photo-font`),
|
|
||||||
ea: common_vendor.n(isPopupVisiblefiropenthi.value ? `time-tra-thi-photo-change` : `time-tra-thi-photo`),
|
|
||||||
eb: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
|
||||||
marginLeft: `100rpx`
|
|
||||||
} : `{}`),
|
|
||||||
ec: common_vendor.n(darkFans.value ? `right-container-right-father-dark` : `right-container-right-father`),
|
|
||||||
ed: common_vendor.o(() => {
|
|
||||||
}),
|
|
||||||
ee: widthComthi.value + "rpx",
|
|
||||||
ef: heightComthi.value + "rpx",
|
|
||||||
eg: topComthi.value + "rpx",
|
|
||||||
eh: leftComthi.value + "rpx",
|
|
||||||
ei: common_vendor.o(closePopupthi),
|
|
||||||
ej: common_vendor.s(isPopupVisiblefiropenthi.value ? {
|
|
||||||
backgroundColor: `rgba(89, 109, 154, 0.5)`
|
|
||||||
} : `{}`)
|
|
||||||
} : {}, {
|
|
||||||
ek: common_vendor.n(darkFans.value ? `darkbackgroundContainer` : `backgroundContainer`)
|
|
||||||
});
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
{
|
{
|
||||||
"navigationStyle": "custom",
|
"navigationStyle": "custom",
|
||||||
"usingComponents": {}
|
"usingComponents": {
|
||||||
|
"right-itemsfirst": "../../component/rightItemsindex/index",
|
||||||
|
"right-itemssecond": "../../component/rightItemssecond/index"
|
||||||
|
}
|
||||||
}
|
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,27 @@
|
||||||
|
"use strict";
|
||||||
|
const common_vendor = require("../../common/vendor.js");
|
||||||
|
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
||||||
|
__name: "index",
|
||||||
|
setup(__props) {
|
||||||
|
const darkFans = common_vendor.ref(false);
|
||||||
|
common_vendor.onLoad((options) => {
|
||||||
|
if (options.darkFans === `false`) {
|
||||||
|
darkFans.value = false;
|
||||||
|
} else {
|
||||||
|
darkFans.value = true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
const goback = () => {
|
||||||
|
common_vendor.index.navigateBack();
|
||||||
|
};
|
||||||
|
return (_ctx, _cache) => {
|
||||||
|
return {
|
||||||
|
a: common_vendor.n(darkFans.value ? `darkbackgroundContainer` : `backgroundContainer`),
|
||||||
|
b: common_vendor.o(goback)
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-ac282b9d"]]);
|
||||||
|
wx.createPage(MiniProgramPage);
|
||||||
|
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/somethingmove/index.js.map
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"navigationStyle": "custom",
|
||||||
|
"usingComponents": {}
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
<view class="{{['data-v-ac282b9d', a]}}" bindtap="{{b}}"> 1111111 </view>
|
|
@ -0,0 +1,20 @@
|
||||||
|
.backgroundContainer.data-v-ac282b9d {
|
||||||
|
display: flex;
|
||||||
|
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-ac282b9d {
|
||||||
|
display: flex;
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
height: 100vh;
|
||||||
|
background-image: url('../../static/index/background.png');
|
||||||
|
background-size: cover;
|
||||||
|
background-position: center center;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
Loading…
Reference in New Issue