2025.2.28
This commit is contained in:
parent
3ba1b01007
commit
9152f7ffce
File diff suppressed because it is too large
Load Diff
|
@ -37,10 +37,22 @@ if (uni.restoreGlobal) {
|
||||||
__expose();
|
__expose();
|
||||||
const isPopupVisible = vue.ref(false);
|
const isPopupVisible = vue.ref(false);
|
||||||
const widthCom = vue.ref(1320);
|
const widthCom = vue.ref(1320);
|
||||||
const heightCom = vue.ref(530);
|
const heightCom = vue.ref(540);
|
||||||
const topCom = vue.ref(150);
|
const topCom = vue.ref(150);
|
||||||
const leftCom = vue.ref(233);
|
const leftCom = vue.ref(233);
|
||||||
const isPopupVisiblefiropen = vue.ref(false);
|
const isPopupVisiblefiropen = vue.ref(false);
|
||||||
|
const isPopupVisiblesec = vue.ref(false);
|
||||||
|
const widthComsec = vue.ref(1150);
|
||||||
|
const heightComsec = vue.ref(630);
|
||||||
|
const topComsec = vue.ref(730);
|
||||||
|
const leftComsec = vue.ref(233);
|
||||||
|
const isPopupVisiblefiropensec = vue.ref(false);
|
||||||
|
const isPopupVisiblethi = vue.ref(false);
|
||||||
|
const widthComthi = vue.ref(880);
|
||||||
|
const heightComthi = vue.ref(630);
|
||||||
|
const topComthi = vue.ref(730);
|
||||||
|
const leftComthi = vue.ref(1420);
|
||||||
|
const isPopupVisiblefiropenthi = vue.ref(false);
|
||||||
const currentTime = vue.ref("");
|
const currentTime = vue.ref("");
|
||||||
const fullDate = vue.ref("");
|
const fullDate = vue.ref("");
|
||||||
const weekDay = vue.ref("");
|
const weekDay = vue.ref("");
|
||||||
|
@ -62,13 +74,13 @@ if (uni.restoreGlobal) {
|
||||||
]);
|
]);
|
||||||
const huliList = vue.ref([
|
const huliList = vue.ref([
|
||||||
{ url: "/static/index/hulilist/zhuandan.png", name: "转单执行" },
|
{ url: "/static/index/hulilist/zhuandan.png", name: "转单执行" },
|
||||||
{ url: "/static/index/hulilist/xiezhu.png", name: "协助执行" }
|
{ url: "/static/index/hulilist/xiezhu.png", name: "协助执行" },
|
||||||
// { url: '/static/index/hulilist/zhongdian.png', name: "重点追踪" },
|
{ url: "/static/index/hulilist/zhongdian.png", name: "重点追踪" }
|
||||||
]);
|
]);
|
||||||
const huliListDark = vue.ref([
|
const huliListDark = vue.ref([
|
||||||
{ url: "/static/index/darkicon/zhuandandark.png", name: "转单执行" },
|
{ url: "/static/index/darkicon/zhuandandark.png", name: "转单执行" },
|
||||||
{ url: "/static/index/darkicon/xiezhudark.png", name: "协助执行" }
|
{ url: "/static/index/darkicon/xiezhudark.png", name: "协助执行" },
|
||||||
// { url: '/static/index/darkicon/zhongdiandark.png', name: "重点追踪" },
|
{ url: "/static/index/darkicon/zhongdiandark.png", name: "重点追踪" }
|
||||||
]);
|
]);
|
||||||
const mediumList = vue.ref([
|
const mediumList = vue.ref([
|
||||||
{ url: "/static/index/medium/yaopin.png", name: "药品信息", number: 0 },
|
{ url: "/static/index/medium/yaopin.png", name: "药品信息", number: 0 },
|
||||||
|
@ -158,12 +170,48 @@ if (uni.restoreGlobal) {
|
||||||
};
|
};
|
||||||
const closePopup = () => {
|
const closePopup = () => {
|
||||||
widthCom.value = 1320;
|
widthCom.value = 1320;
|
||||||
heightCom.value = 530;
|
heightCom.value = 540;
|
||||||
topCom.value = 150;
|
topCom.value = 150;
|
||||||
leftCom.value = 233;
|
leftCom.value = 233;
|
||||||
isPopupVisiblefiropen.value = false;
|
isPopupVisiblefiropen.value = false;
|
||||||
isPopupVisible.value = false;
|
isPopupVisible.value = false;
|
||||||
};
|
};
|
||||||
|
const showPopupsec = () => {
|
||||||
|
isPopupVisiblesec.value = true;
|
||||||
|
setTimeout(() => {
|
||||||
|
widthComsec.value = 1800;
|
||||||
|
heightComsec.value = 960;
|
||||||
|
topComsec.value = 400;
|
||||||
|
leftComsec.value = 233;
|
||||||
|
isPopupVisiblefiropensec.value = true;
|
||||||
|
}, 100);
|
||||||
|
};
|
||||||
|
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 = 1680;
|
||||||
|
heightComthi.value = 960;
|
||||||
|
topComthi.value = 400;
|
||||||
|
leftComthi.value = 620;
|
||||||
|
isPopupVisiblefiropenthi.value = true;
|
||||||
|
}, 100);
|
||||||
|
};
|
||||||
|
const closePopupthi = () => {
|
||||||
|
widthComthi.value = 880;
|
||||||
|
heightComthi.value = 630;
|
||||||
|
topComthi.value = 730;
|
||||||
|
leftComthi.value = 1420;
|
||||||
|
isPopupVisiblefiropenthi.value = false;
|
||||||
|
isPopupVisiblethi.value = false;
|
||||||
|
};
|
||||||
vue.onMounted(() => {
|
vue.onMounted(() => {
|
||||||
updateTime();
|
updateTime();
|
||||||
setInterval(updateTime, 1e3);
|
setInterval(updateTime, 1e3);
|
||||||
|
@ -171,7 +219,7 @@ if (uni.restoreGlobal) {
|
||||||
vue.onBeforeUnmount(() => {
|
vue.onBeforeUnmount(() => {
|
||||||
clearInterval(updateTime);
|
clearInterval(updateTime);
|
||||||
});
|
});
|
||||||
const __returned__ = { isPopupVisible, widthCom, heightCom, topCom, leftCom, isPopupVisiblefiropen, currentTime, fullDate, weekDay, iconList, undericonList, huliList, huliListDark, mediumList, mediumListdark, roomBtttonList, roomBtttonListdark, menuIndex, undermenuIndex, darkFans, underFans, roomTar, firstcurrentIndex, firstcurrentIndexup, secondcurrentIndexup, secondcurrentIndex, thirdcurrentIndex, changeMenu, changeMenuUnder, saveItem, updateTime, onSwiperChange, onSwiperChangesec, gotoLogin, showPopup, closePopup };
|
const __returned__ = { isPopupVisible, widthCom, heightCom, topCom, leftCom, isPopupVisiblefiropen, isPopupVisiblesec, widthComsec, heightComsec, topComsec, leftComsec, isPopupVisiblefiropensec, isPopupVisiblethi, widthComthi, heightComthi, topComthi, leftComthi, isPopupVisiblefiropenthi, currentTime, fullDate, weekDay, iconList, undericonList, huliList, huliListDark, mediumList, mediumListdark, roomBtttonList, roomBtttonListdark, menuIndex, undermenuIndex, darkFans, underFans, roomTar, firstcurrentIndex, firstcurrentIndexup, secondcurrentIndexup, secondcurrentIndex, thirdcurrentIndex, changeMenu, changeMenuUnder, saveItem, updateTime, onSwiperChange, onSwiperChangesec, gotoLogin, showPopup, closePopup, showPopupsec, closePopupsec, showPopupthi, closePopupthi };
|
||||||
Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true });
|
Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true });
|
||||||
return __returned__;
|
return __returned__;
|
||||||
}
|
}
|
||||||
|
@ -789,7 +837,10 @@ if (uni.restoreGlobal) {
|
||||||
class: "right-container-left-type",
|
class: "right-container-left-type",
|
||||||
src: `/static/index/yiliao/yiliaolei.png`
|
src: `/static/index/yiliao/yiliaolei.png`
|
||||||
}, null, 8, ["src"]),
|
}, null, 8, ["src"]),
|
||||||
vue.createElementVNode("div", { class: "right-container-left-font" }, "医疗类"),
|
vue.createElementVNode("div", {
|
||||||
|
class: "right-container-left-font",
|
||||||
|
onClick: $setup.showPopupsec
|
||||||
|
}, "医疗类"),
|
||||||
vue.createElementVNode("view", { class: "right-container-fir-left-carousel" }, [
|
vue.createElementVNode("view", { class: "right-container-fir-left-carousel" }, [
|
||||||
vue.createElementVNode("view", { class: "carousel" }, [
|
vue.createElementVNode("view", { class: "carousel" }, [
|
||||||
vue.createElementVNode("view", { class: "dots" }, [
|
vue.createElementVNode("view", { class: "dots" }, [
|
||||||
|
@ -1134,7 +1185,10 @@ if (uni.restoreGlobal) {
|
||||||
class: "right-container-fir-left-card-flex-sec-img",
|
class: "right-container-fir-left-card-flex-sec-img",
|
||||||
src: `/static/index/baojielei.png`
|
src: `/static/index/baojielei.png`
|
||||||
}, null, 8, ["src"]),
|
}, null, 8, ["src"]),
|
||||||
vue.createElementVNode("div", { class: "right-container-fir-left-card-flex-sec-font" }, "保洁类"),
|
vue.createElementVNode("div", {
|
||||||
|
class: "right-container-fir-left-card-flex-sec-font",
|
||||||
|
onClick: $setup.showPopupthi
|
||||||
|
}, "保洁类"),
|
||||||
vue.createElementVNode("image", {
|
vue.createElementVNode("image", {
|
||||||
class: "right-container-fir-left-card-flex-sec-imgright-fir",
|
class: "right-container-fir-left-card-flex-sec-imgright-fir",
|
||||||
src: `/static/index/baojieleft.png`
|
src: `/static/index/baojieleft.png`
|
||||||
|
@ -1285,14 +1339,12 @@ if (uni.restoreGlobal) {
|
||||||
))
|
))
|
||||||
])
|
])
|
||||||
]),
|
]),
|
||||||
vue.createCommentVNode(" 弹出层 "),
|
vue.createCommentVNode(" 弹出层左上角 "),
|
||||||
vue.withDirectives(vue.createElementVNode(
|
$setup.isPopupVisible ? (vue.openBlock(), vue.createElementBlock("view", {
|
||||||
"view",
|
key: 0,
|
||||||
{
|
|
||||||
class: "popup-overlay",
|
class: "popup-overlay",
|
||||||
onClick: $setup.closePopup
|
onClick: $setup.closePopup
|
||||||
},
|
}, [
|
||||||
[
|
|
||||||
vue.createElementVNode(
|
vue.createElementVNode(
|
||||||
"view",
|
"view",
|
||||||
{
|
{
|
||||||
|
@ -1338,7 +1390,8 @@ if (uni.restoreGlobal) {
|
||||||
vue.renderList([1, 2, 3], (item, index) => {
|
vue.renderList([1, 2, 3], (item, index) => {
|
||||||
return vue.createElementVNode("swiper-item", {
|
return vue.createElementVNode("swiper-item", {
|
||||||
class: "swiper-item-flex",
|
class: "swiper-item-flex",
|
||||||
key: index
|
key: index,
|
||||||
|
style: { "margin-top": "30rpx" }
|
||||||
}, [
|
}, [
|
||||||
vue.createElementVNode("view", { class: "right-container-fir-left-card-flex" }, [
|
vue.createElementVNode("view", { class: "right-container-fir-left-card-flex" }, [
|
||||||
vue.createElementVNode("view", { class: "uni-margin-wrap-fir" }, [
|
vue.createElementVNode("view", { class: "uni-margin-wrap-fir" }, [
|
||||||
|
@ -1372,7 +1425,7 @@ if (uni.restoreGlobal) {
|
||||||
"div",
|
"div",
|
||||||
{
|
{
|
||||||
class: "right-container-fir-left-card-zhixing-font",
|
class: "right-container-fir-left-card-zhixing-font",
|
||||||
style: vue.normalizeStyle($setup.isPopupVisiblefiropen ? { fontSize: `30rpx` } : `{}`)
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropen ? { top: `43rpx`, left: `20rpx`, width: `150rpx`, height: `60rpx`, fontSize: `35rpx`, borderRadius: `8rpx` } : `{}`)
|
||||||
},
|
},
|
||||||
" 待执行 ",
|
" 待执行 ",
|
||||||
4
|
4
|
||||||
|
@ -1391,13 +1444,13 @@ if (uni.restoreGlobal) {
|
||||||
vue.createElementVNode("view", { class: "right-container-fir-left-card-main-laba-video" }, [
|
vue.createElementVNode("view", { class: "right-container-fir-left-card-main-laba-video" }, [
|
||||||
vue.createElementVNode("image", {
|
vue.createElementVNode("image", {
|
||||||
class: "right-container-fir-left-card-main-laba",
|
class: "right-container-fir-left-card-main-laba",
|
||||||
style: vue.normalizeStyle($setup.isPopupVisiblefiropen ? { width: `55rpx`, height: `55rpx` } : `{}`),
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropen ? { width: `65rpx`, height: `65rpx` } : `{}`),
|
||||||
src: $setup.darkFans ? `/static/index/darkicon/labadark.png` : `/static/index/laba.png`
|
src: $setup.darkFans ? `/static/index/darkicon/labadark.png` : `/static/index/laba.png`
|
||||||
}, null, 12, ["src"]),
|
}, null, 12, ["src"]),
|
||||||
vue.createElementVNode(
|
vue.createElementVNode(
|
||||||
"text",
|
"text",
|
||||||
{
|
{
|
||||||
style: vue.normalizeStyle($setup.isPopupVisiblefiropen ? { fontSize: `42rpx` } : `{}`),
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropen ? { fontSize: `46rpx`, width: `400rpx` } : `{}`),
|
||||||
class: vue.normalizeClass($setup.darkFans ? `right-container-fir-left-card-main-font-dark` : `right-container-fir-left-card-main-font`)
|
class: vue.normalizeClass($setup.darkFans ? `right-container-fir-left-card-main-font-dark` : `right-container-fir-left-card-main-font`)
|
||||||
},
|
},
|
||||||
" 准备洁具(口腔) ",
|
" 准备洁具(口腔) ",
|
||||||
|
@ -1406,7 +1459,7 @@ if (uni.restoreGlobal) {
|
||||||
),
|
),
|
||||||
vue.createElementVNode("image", {
|
vue.createElementVNode("image", {
|
||||||
class: "right-container-fir-left-card-main-video",
|
class: "right-container-fir-left-card-main-video",
|
||||||
style: vue.normalizeStyle($setup.isPopupVisiblefiropen ? { width: `55rpx`, height: `55rpx` } : `{}`),
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropen ? { width: `65rpx`, height: `65rpx` } : `{}`),
|
||||||
src: $setup.darkFans ? `/static/index/indexvideo.png` : `/static/index/indexvideo.png`
|
src: $setup.darkFans ? `/static/index/indexvideo.png` : `/static/index/indexvideo.png`
|
||||||
}, null, 12, ["src"])
|
}, null, 12, ["src"])
|
||||||
])
|
])
|
||||||
|
@ -1436,7 +1489,7 @@ if (uni.restoreGlobal) {
|
||||||
"view",
|
"view",
|
||||||
{
|
{
|
||||||
class: vue.normalizeClass($setup.darkFans ? `time-text-dark` : `time-text`),
|
class: vue.normalizeClass($setup.darkFans ? `time-text-dark` : `time-text`),
|
||||||
style: vue.normalizeStyle($setup.isPopupVisiblefiropen ? { fontSize: `60rpx`, lineHeight: `70rpx`, width: `800rpx` } : `{}`)
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropen ? { fontSize: `45rpx`, lineHeight: `70rpx`, width: `800rpx`, marginTop: `50rpx`, marginBottom: `50rpx` } : `{}`)
|
||||||
},
|
},
|
||||||
" 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ",
|
" 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ",
|
||||||
6
|
6
|
||||||
|
@ -1492,7 +1545,7 @@ if (uni.restoreGlobal) {
|
||||||
"view",
|
"view",
|
||||||
{
|
{
|
||||||
class: "time-button-start",
|
class: "time-button-start",
|
||||||
style: vue.normalizeStyle($setup.isPopupVisiblefiropen ? { width: `350rpx`, height: `110rpx`, borderRadius: `80rpx` } : `{}`)
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropen ? { width: `350rpx`, height: `110rpx`, borderRadius: `80rpx`, fontSize: `50rpx` } : `{}`)
|
||||||
},
|
},
|
||||||
" 开始服务 ",
|
" 开始服务 ",
|
||||||
4
|
4
|
||||||
|
@ -1502,7 +1555,7 @@ if (uni.restoreGlobal) {
|
||||||
"view",
|
"view",
|
||||||
{
|
{
|
||||||
class: vue.normalizeClass($setup.darkFans ? `time-button-end-dark` : `time-button-end`),
|
class: vue.normalizeClass($setup.darkFans ? `time-button-end-dark` : `time-button-end`),
|
||||||
style: vue.normalizeStyle($setup.isPopupVisiblefiropen ? { width: `350rpx`, height: `110rpx`, borderRadius: `80rpx` } : `{}`)
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropen ? { width: `350rpx`, height: `110rpx`, borderRadius: `80rpx`, fontSize: `50rpx` } : `{}`)
|
||||||
},
|
},
|
||||||
" 服务结束 ",
|
" 服务结束 ",
|
||||||
6
|
6
|
||||||
|
@ -1536,20 +1589,28 @@ if (uni.restoreGlobal) {
|
||||||
class: "right-huli-shang",
|
class: "right-huli-shang",
|
||||||
src: `/static/index/hulilist/shang.png`
|
src: `/static/index/hulilist/shang.png`
|
||||||
}, null, 8, ["src"]),
|
}, null, 8, ["src"]),
|
||||||
!$setup.darkFans ? (vue.openBlock(), vue.createElementBlock("scroll-view", {
|
!$setup.darkFans ? (vue.openBlock(), vue.createElementBlock(
|
||||||
|
"scroll-view",
|
||||||
|
{
|
||||||
key: 0,
|
key: 0,
|
||||||
"show-scrollbar": false,
|
"show-scrollbar": false,
|
||||||
"scroll-y": "true",
|
"scroll-y": "true",
|
||||||
class: "right-huli-view"
|
class: "right-huli-view",
|
||||||
}, [
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropen ? { height: `600rpx` } : `{}`)
|
||||||
|
},
|
||||||
|
[
|
||||||
(vue.openBlock(true), vue.createElementBlock(
|
(vue.openBlock(true), vue.createElementBlock(
|
||||||
vue.Fragment,
|
vue.Fragment,
|
||||||
null,
|
null,
|
||||||
vue.renderList($setup.huliList, (item, index) => {
|
vue.renderList($setup.huliList, (item, index) => {
|
||||||
return vue.openBlock(), vue.createElementBlock("view", {
|
return vue.openBlock(), vue.createElementBlock(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
key: index,
|
key: index,
|
||||||
class: "right-huli-view-dis"
|
class: "right-huli-view-dis",
|
||||||
}, [
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropen ? { height: `200rpx` } : `{}`)
|
||||||
|
},
|
||||||
|
[
|
||||||
vue.createElementVNode("image", {
|
vue.createElementVNode("image", {
|
||||||
class: "right-huli-img",
|
class: "right-huli-img",
|
||||||
src: item.url
|
src: item.url
|
||||||
|
@ -1561,27 +1622,41 @@ if (uni.restoreGlobal) {
|
||||||
1
|
1
|
||||||
/* TEXT */
|
/* TEXT */
|
||||||
)
|
)
|
||||||
]);
|
],
|
||||||
|
4
|
||||||
|
/* STYLE */
|
||||||
|
);
|
||||||
}),
|
}),
|
||||||
128
|
128
|
||||||
/* KEYED_FRAGMENT */
|
/* KEYED_FRAGMENT */
|
||||||
))
|
))
|
||||||
])) : vue.createCommentVNode("v-if", true),
|
],
|
||||||
|
4
|
||||||
|
/* STYLE */
|
||||||
|
)) : vue.createCommentVNode("v-if", true),
|
||||||
vue.createCommentVNode(" 暗黑模式 "),
|
vue.createCommentVNode(" 暗黑模式 "),
|
||||||
$setup.darkFans ? (vue.openBlock(), vue.createElementBlock("scroll-view", {
|
$setup.darkFans ? (vue.openBlock(), vue.createElementBlock(
|
||||||
|
"scroll-view",
|
||||||
|
{
|
||||||
key: 1,
|
key: 1,
|
||||||
"show-scrollbar": false,
|
"show-scrollbar": false,
|
||||||
"scroll-y": "true",
|
"scroll-y": "true",
|
||||||
class: "right-huli-view"
|
class: "right-huli-view",
|
||||||
}, [
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropen ? { height: `600rpx` } : `{}`)
|
||||||
|
},
|
||||||
|
[
|
||||||
(vue.openBlock(true), vue.createElementBlock(
|
(vue.openBlock(true), vue.createElementBlock(
|
||||||
vue.Fragment,
|
vue.Fragment,
|
||||||
null,
|
null,
|
||||||
vue.renderList($setup.huliListDark, (item, index) => {
|
vue.renderList($setup.huliListDark, (item, index) => {
|
||||||
return vue.openBlock(), vue.createElementBlock("view", {
|
return vue.openBlock(), vue.createElementBlock(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
key: index,
|
key: index,
|
||||||
class: "right-huli-view-dis"
|
class: "right-huli-view-dis",
|
||||||
}, [
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropen ? { height: `200rpx` } : `{}`)
|
||||||
|
},
|
||||||
|
[
|
||||||
vue.createElementVNode("image", {
|
vue.createElementVNode("image", {
|
||||||
class: "right-huli-img",
|
class: "right-huli-img",
|
||||||
src: item.url
|
src: item.url
|
||||||
|
@ -1593,12 +1668,18 @@ if (uni.restoreGlobal) {
|
||||||
1
|
1
|
||||||
/* TEXT */
|
/* TEXT */
|
||||||
)
|
)
|
||||||
]);
|
],
|
||||||
|
4
|
||||||
|
/* STYLE */
|
||||||
|
);
|
||||||
}),
|
}),
|
||||||
128
|
128
|
||||||
/* KEYED_FRAGMENT */
|
/* KEYED_FRAGMENT */
|
||||||
))
|
))
|
||||||
])) : vue.createCommentVNode("v-if", true),
|
],
|
||||||
|
4
|
||||||
|
/* STYLE */
|
||||||
|
)) : vue.createCommentVNode("v-if", true),
|
||||||
vue.createElementVNode("image", {
|
vue.createElementVNode("image", {
|
||||||
class: "right-huli-xia",
|
class: "right-huli-xia",
|
||||||
src: `/static/index/hulilist/xia.png`
|
src: `/static/index/hulilist/xia.png`
|
||||||
|
@ -1614,12 +1695,643 @@ if (uni.restoreGlobal) {
|
||||||
4
|
4
|
||||||
/* STYLE */
|
/* STYLE */
|
||||||
)
|
)
|
||||||
|
])) : vue.createCommentVNode("v-if", true),
|
||||||
|
vue.createCommentVNode(" 弹出层左上角结束 "),
|
||||||
|
vue.createCommentVNode(" 弹出层左下角 "),
|
||||||
|
$setup.isPopupVisiblesec ? (vue.openBlock(), vue.createElementBlock("view", {
|
||||||
|
key: 1,
|
||||||
|
class: "popup-overlay",
|
||||||
|
onClick: $setup.closePopupsec
|
||||||
|
}, [
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: "popup-overlay-content",
|
||||||
|
onClick: _cache[3] || (_cache[3] = vue.withModifiers(() => {
|
||||||
|
}, ["stop"])),
|
||||||
|
style: vue.normalizeStyle({ width: $setup.widthComsec + "rpx", height: $setup.heightComsec + "rpx", top: $setup.topComsec + "rpx", left: $setup.leftComsec + "rpx" })
|
||||||
|
},
|
||||||
|
[
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass($setup.darkFans ? `right-container-left-dark` : `right-container-left`)
|
||||||
|
},
|
||||||
|
[
|
||||||
|
vue.createElementVNode("image", {
|
||||||
|
class: "right-container-left-type",
|
||||||
|
src: `/static/index/yiliao/yiliaolei.png`
|
||||||
|
}, null, 8, ["src"]),
|
||||||
|
vue.createElementVNode("div", {
|
||||||
|
class: "right-container-left-font",
|
||||||
|
onClick: $setup.closePopupsec
|
||||||
|
}, "医疗类"),
|
||||||
|
$setup.darkFans ? (vue.openBlock(), vue.createElementBlock("image", {
|
||||||
|
key: 0,
|
||||||
|
class: "card-upfaguang-down",
|
||||||
|
src: `/static/index/cardbgc/uplight.png`
|
||||||
|
}, null, 8, ["src"])) : vue.createCommentVNode("v-if", true),
|
||||||
|
vue.createElementVNode("swiper", {
|
||||||
|
class: "swiper savehundred",
|
||||||
|
circular: "",
|
||||||
|
"indicator-dots": false,
|
||||||
|
vertical: true,
|
||||||
|
"disable-touch": ""
|
||||||
|
}, [
|
||||||
|
(vue.openBlock(), vue.createElementBlock(
|
||||||
|
vue.Fragment,
|
||||||
|
null,
|
||||||
|
vue.renderList([1, 2, 3], (item, index) => {
|
||||||
|
return vue.createElementVNode("swiper-item", {
|
||||||
|
class: "swiper-item-flex",
|
||||||
|
key: index
|
||||||
|
}, [
|
||||||
|
vue.createElementVNode("div", { class: "right-container-fir-left-card-flex-sec" }, [
|
||||||
|
vue.createElementVNode("view", { class: "uni-margin-wrap" }, [
|
||||||
|
vue.createElementVNode("swiper", {
|
||||||
|
class: "swiper",
|
||||||
|
circular: "",
|
||||||
|
"indicator-dots": false,
|
||||||
|
"disable-touch": ""
|
||||||
|
}, [
|
||||||
|
(vue.openBlock(), vue.createElementBlock(
|
||||||
|
vue.Fragment,
|
||||||
|
null,
|
||||||
|
vue.renderList([1, 2, 3], (item2, index2) => {
|
||||||
|
return vue.createElementVNode("swiper-item", {
|
||||||
|
class: "swiper-item-flex",
|
||||||
|
key: index2
|
||||||
|
}, [
|
||||||
|
vue.createElementVNode(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: "right-container-left-font-spec",
|
||||||
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropensec ? { top: `100rpx`, left: `900rpx`, width: `150rpx`, height: `60rpx`, fontSize: `35rpx`, borderRadius: `8rpx` } : `{}`)
|
||||||
|
},
|
||||||
|
" 进行中 ",
|
||||||
|
4
|
||||||
|
/* STYLE */
|
||||||
|
),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: "time-tra-sec",
|
||||||
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropensec ? { width: `800rpx`, marginTop: `0`, marginLeft: `120rpx` } : `{}`)
|
||||||
|
},
|
||||||
|
[
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropensec ? { fontSize: `120rpx` } : `{}`),
|
||||||
|
class: vue.normalizeClass($setup.darkFans ? `time-font-dark` : `time-font`)
|
||||||
|
},
|
||||||
|
" 10:00 - 10:10 ",
|
||||||
|
6
|
||||||
|
/* CLASS, STYLE */
|
||||||
|
),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass(!$setup.isPopupVisiblefiropensec ? `time-people-thi` : `time-people-thi-change`)
|
||||||
|
},
|
||||||
|
[
|
||||||
|
vue.createElementVNode("image", {
|
||||||
|
class: "time-people-img",
|
||||||
|
src: $setup.darkFans ? `/static/index/medium/doctorsaydark.png` : `/static/index/medium/doctorsay.png`
|
||||||
|
}, null, 8, ["src"]),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"text",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass($setup.darkFans ? `time-people-font-dark` : `time-people-font`)
|
||||||
|
},
|
||||||
|
" 医嘱:药品 ",
|
||||||
|
2
|
||||||
|
/* CLASS */
|
||||||
|
)
|
||||||
|
],
|
||||||
|
2
|
||||||
|
/* CLASS */
|
||||||
|
),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass(!$setup.isPopupVisiblefiropensec ? `time-people-thi` : `time-people-thi-change`)
|
||||||
|
},
|
||||||
|
[
|
||||||
|
vue.createElementVNode("image", {
|
||||||
|
class: "time-people-img",
|
||||||
|
src: $setup.darkFans ? `/static/index/medium/howtododark.png` : `/static/index/medium/howtodo.png`
|
||||||
|
}, null, 8, ["src"]),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"text",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass($setup.darkFans ? `time-people-font-dark` : `time-people-font`)
|
||||||
|
},
|
||||||
|
" 处置:肌肉注射 ",
|
||||||
|
2
|
||||||
|
/* CLASS */
|
||||||
|
)
|
||||||
|
],
|
||||||
|
2
|
||||||
|
/* CLASS */
|
||||||
|
),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass(!$setup.isPopupVisiblefiropensec ? `time-people-thi` : `time-people-thi-change`)
|
||||||
|
},
|
||||||
|
[
|
||||||
|
vue.createElementVNode("image", {
|
||||||
|
class: "time-people-img",
|
||||||
|
src: $setup.darkFans ? `/static/index/medium/useMed.png` : `/static/index/medium/yongyao.png`
|
||||||
|
}, null, 8, ["src"]),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"text",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass($setup.darkFans ? `time-people-font-dark` : `time-people-font`)
|
||||||
|
},
|
||||||
|
" 用药:抗生素类 ",
|
||||||
|
2
|
||||||
|
/* CLASS */
|
||||||
|
)
|
||||||
|
],
|
||||||
|
2
|
||||||
|
/* CLASS */
|
||||||
|
),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass(!$setup.isPopupVisiblefiropensec ? `time-people-thi` : `time-people-thi-change`)
|
||||||
|
},
|
||||||
|
[
|
||||||
|
vue.createElementVNode("image", {
|
||||||
|
class: "time-people-img",
|
||||||
|
src: $setup.darkFans ? `/static/index/medium/domanydark.png` : `/static/index/medium/domany.png`
|
||||||
|
}, null, 8, ["src"]),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"text",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass($setup.darkFans ? `time-people-font-dark` : `time-people-font`)
|
||||||
|
},
|
||||||
|
" 执行:周期一日执行一次 ",
|
||||||
|
2
|
||||||
|
/* CLASS */
|
||||||
|
)
|
||||||
|
],
|
||||||
|
2
|
||||||
|
/* CLASS */
|
||||||
|
),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass(!$setup.isPopupVisiblefiropensec ? `time-people-thi` : `time-people-thi-change`)
|
||||||
|
},
|
||||||
|
[
|
||||||
|
vue.createElementVNode("image", {
|
||||||
|
class: "time-people-img",
|
||||||
|
src: $setup.darkFans ? `/static/index/darkicon/zhixingpeopledark.png` : `/static/index/cardicons/zhixing.png`
|
||||||
|
}, null, 8, ["src"]),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"text",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass($setup.darkFans ? `time-people-font-dark` : `time-people-font`)
|
||||||
|
},
|
||||||
|
" 单人执行 ",
|
||||||
|
2
|
||||||
|
/* CLASS */
|
||||||
|
),
|
||||||
|
vue.createElementVNode("image", {
|
||||||
|
class: "time-people-img",
|
||||||
|
src: $setup.darkFans ? `/static/index/medium/dopeopledark.png` : `/static/index/cardicons/zhifa.png`
|
||||||
|
}, null, 8, ["src"]),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"text",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass($setup.darkFans ? `time-people-font-dark` : `time-people-font`)
|
||||||
|
},
|
||||||
|
" 赵宇 ",
|
||||||
|
2
|
||||||
|
/* CLASS */
|
||||||
|
)
|
||||||
|
],
|
||||||
|
2
|
||||||
|
/* CLASS */
|
||||||
|
),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: "time-button-view",
|
||||||
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropensec ? { marginTop: `50rpx` } : `{}`)
|
||||||
|
},
|
||||||
|
[
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: "time-button-start",
|
||||||
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropensec ? { width: `350rpx`, height: `110rpx`, borderRadius: `80rpx`, fontSize: `50rpx` } : `{}`)
|
||||||
|
},
|
||||||
|
" 开始服务 ",
|
||||||
|
4
|
||||||
|
/* STYLE */
|
||||||
|
),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass($setup.darkFans ? `time-button-end-dark` : `time-button-end`),
|
||||||
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropensec ? { width: `350rpx`, height: `110rpx`, borderRadius: `80rpx`, fontSize: `50rpx` } : `{}`)
|
||||||
|
},
|
||||||
|
" 服务结束 ",
|
||||||
|
6
|
||||||
|
/* CLASS, STYLE */
|
||||||
|
)
|
||||||
|
],
|
||||||
|
4
|
||||||
|
/* STYLE */
|
||||||
|
)
|
||||||
|
],
|
||||||
|
4
|
||||||
|
/* STYLE */
|
||||||
|
),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass($setup.isPopupVisiblefiropensec ? `right-container-photo-change` : `right-container-photo`)
|
||||||
|
},
|
||||||
|
[
|
||||||
|
vue.createElementVNode("image", {
|
||||||
|
class: "right-container-photo-img",
|
||||||
|
src: `/static/index/yiliao/project2.png`
|
||||||
|
}, null, 8, ["src"]),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"text",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass($setup.darkFans ? `right-container-photo-text-dark` : `right-container-photo-text`)
|
||||||
|
},
|
||||||
|
" 脑膜炎(1/2) ",
|
||||||
|
2
|
||||||
|
/* CLASS */
|
||||||
|
)
|
||||||
|
],
|
||||||
|
2
|
||||||
|
/* CLASS */
|
||||||
|
)
|
||||||
|
]);
|
||||||
|
}),
|
||||||
|
64
|
||||||
|
/* STABLE_FRAGMENT */
|
||||||
|
))
|
||||||
|
])
|
||||||
|
])
|
||||||
|
])
|
||||||
|
]);
|
||||||
|
}),
|
||||||
|
64
|
||||||
|
/* STABLE_FRAGMENT */
|
||||||
|
))
|
||||||
|
]),
|
||||||
|
vue.createElementVNode("view", { class: "split-line-white-sec" }, [
|
||||||
|
$setup.darkFans ? (vue.openBlock(), vue.createElementBlock("image", {
|
||||||
|
key: 0,
|
||||||
|
class: "split-line-white-img",
|
||||||
|
src: `/static/index/cardbgc/leftlight.png`
|
||||||
|
}, null, 8, ["src"])) : vue.createCommentVNode("v-if", true)
|
||||||
|
]),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: "right-huli-fir",
|
||||||
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropensec ? { width: `350rpx` } : `{}`)
|
||||||
|
},
|
||||||
|
[
|
||||||
|
vue.createElementVNode("image", {
|
||||||
|
class: "right-huli-shang",
|
||||||
|
src: `/static/index/hulilist/shang.png`
|
||||||
|
}, null, 8, ["src"]),
|
||||||
|
!$setup.darkFans ? (vue.openBlock(), vue.createElementBlock("scroll-view", {
|
||||||
|
key: 0,
|
||||||
|
"show-scrollbar": false,
|
||||||
|
"scroll-y": "true",
|
||||||
|
class: "right-huli-view"
|
||||||
|
}, [
|
||||||
|
(vue.openBlock(true), vue.createElementBlock(
|
||||||
|
vue.Fragment,
|
||||||
|
null,
|
||||||
|
vue.renderList($setup.mediumList, (item, index) => {
|
||||||
|
return vue.openBlock(), vue.createElementBlock("view", {
|
||||||
|
key: index,
|
||||||
|
class: "right-huli-view-dis"
|
||||||
|
}, [
|
||||||
|
vue.createElementVNode("image", {
|
||||||
|
class: "right-huli-img",
|
||||||
|
src: item.url
|
||||||
|
}, null, 8, ["src"]),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"text",
|
||||||
|
{ class: "right-huli-text" },
|
||||||
|
vue.toDisplayString(item.name),
|
||||||
|
1
|
||||||
|
/* TEXT */
|
||||||
|
),
|
||||||
|
vue.withDirectives(vue.createElementVNode(
|
||||||
|
"div",
|
||||||
|
{ class: "progress-bar-container" },
|
||||||
|
[
|
||||||
|
vue.createElementVNode(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
style: vue.normalizeStyle({ width: `${item.number}%` }),
|
||||||
|
class: "progress-bar"
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
4
|
||||||
|
/* STYLE */
|
||||||
|
)
|
||||||
],
|
],
|
||||||
512
|
512
|
||||||
/* NEED_PATCH */
|
/* NEED_PATCH */
|
||||||
), [
|
), [
|
||||||
[vue.vShow, $setup.isPopupVisible]
|
[vue.vShow, item.number !== 0]
|
||||||
])
|
])
|
||||||
|
]);
|
||||||
|
}),
|
||||||
|
128
|
||||||
|
/* KEYED_FRAGMENT */
|
||||||
|
))
|
||||||
|
])) : vue.createCommentVNode("v-if", true),
|
||||||
|
$setup.darkFans ? (vue.openBlock(), vue.createElementBlock("scroll-view", {
|
||||||
|
key: 1,
|
||||||
|
"show-scrollbar": false,
|
||||||
|
"scroll-y": "true",
|
||||||
|
class: "right-huli-view"
|
||||||
|
}, [
|
||||||
|
(vue.openBlock(true), vue.createElementBlock(
|
||||||
|
vue.Fragment,
|
||||||
|
null,
|
||||||
|
vue.renderList($setup.mediumListdark, (item, index) => {
|
||||||
|
return vue.openBlock(), vue.createElementBlock("view", {
|
||||||
|
key: index,
|
||||||
|
class: "right-huli-view-dis"
|
||||||
|
}, [
|
||||||
|
vue.createElementVNode("image", {
|
||||||
|
class: "right-huli-img",
|
||||||
|
src: item.url
|
||||||
|
}, null, 8, ["src"]),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"text",
|
||||||
|
{ class: "right-huli-text-dark" },
|
||||||
|
vue.toDisplayString(item.name),
|
||||||
|
1
|
||||||
|
/* TEXT */
|
||||||
|
),
|
||||||
|
vue.withDirectives(vue.createElementVNode(
|
||||||
|
"div",
|
||||||
|
{ class: "progress-bar-container" },
|
||||||
|
[
|
||||||
|
vue.createElementVNode(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
style: vue.normalizeStyle({ width: `${item.number}%` }),
|
||||||
|
class: "progress-bar"
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
4
|
||||||
|
/* STYLE */
|
||||||
|
)
|
||||||
|
],
|
||||||
|
512
|
||||||
|
/* NEED_PATCH */
|
||||||
|
), [
|
||||||
|
[vue.vShow, item.number !== 0]
|
||||||
|
])
|
||||||
|
]);
|
||||||
|
}),
|
||||||
|
128
|
||||||
|
/* KEYED_FRAGMENT */
|
||||||
|
))
|
||||||
|
])) : vue.createCommentVNode("v-if", true),
|
||||||
|
vue.createElementVNode("image", {
|
||||||
|
class: "right-huli-xia",
|
||||||
|
src: `/static/index/hulilist/xia.png`
|
||||||
|
}, null, 8, ["src"])
|
||||||
|
],
|
||||||
|
4
|
||||||
|
/* STYLE */
|
||||||
|
)
|
||||||
|
],
|
||||||
|
2
|
||||||
|
/* CLASS */
|
||||||
|
)
|
||||||
|
],
|
||||||
|
4
|
||||||
|
/* STYLE */
|
||||||
|
)
|
||||||
|
])) : vue.createCommentVNode("v-if", true),
|
||||||
|
vue.createCommentVNode(" 弹出层左下角结束 "),
|
||||||
|
vue.createCommentVNode(" 弹出层右下角 "),
|
||||||
|
$setup.isPopupVisiblethi ? (vue.openBlock(), vue.createElementBlock("view", {
|
||||||
|
key: 2,
|
||||||
|
class: "popup-overlay",
|
||||||
|
onClick: $setup.closePopupthi
|
||||||
|
}, [
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: "popup-overlay-content",
|
||||||
|
onClick: _cache[4] || (_cache[4] = vue.withModifiers(() => {
|
||||||
|
}, ["stop"])),
|
||||||
|
style: vue.normalizeStyle({ width: $setup.widthComthi + "rpx", height: $setup.heightComthi + "rpx", top: $setup.topComthi + "rpx", left: $setup.leftComthi + "rpx" })
|
||||||
|
},
|
||||||
|
[
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: "right-container-right-father",
|
||||||
|
style: vue.normalizeStyle($setup.darkFans ? { backgroundColor: "rgb(17, 45, 74)", backgroundImage: `none` } : { backgroundImage: `url('/static/index/mountain.png')`, backgroundPosition: `60% 50%` })
|
||||||
|
},
|
||||||
|
[
|
||||||
|
vue.createElementVNode("view", { class: "right-container-right-down-father" }, [
|
||||||
|
vue.createElementVNode("div", { class: "right-container-fir-left-card-flex-sec" }, [
|
||||||
|
vue.createElementVNode("image", {
|
||||||
|
class: "right-container-fir-left-card-flex-sec-img",
|
||||||
|
src: `/static/index/baojielei.png`
|
||||||
|
}, null, 8, ["src"]),
|
||||||
|
vue.createElementVNode("div", {
|
||||||
|
class: "right-container-fir-left-card-flex-sec-font",
|
||||||
|
onClick: $setup.closePopupthi
|
||||||
|
}, "保洁类 "),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: "uni-margin-wrap",
|
||||||
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropenthi ? { marginLeft: `100rpx` } : `{}`)
|
||||||
|
},
|
||||||
|
[
|
||||||
|
vue.createElementVNode("div", {
|
||||||
|
class: "swiper",
|
||||||
|
circular: "",
|
||||||
|
"indicator-dots": false,
|
||||||
|
"disable-touch": ""
|
||||||
|
}, [
|
||||||
|
(vue.openBlock(), vue.createElementBlock(
|
||||||
|
vue.Fragment,
|
||||||
|
null,
|
||||||
|
vue.renderList([1], (item, index) => {
|
||||||
|
return vue.createElementVNode("div", {
|
||||||
|
class: "swiper-item-flex",
|
||||||
|
key: index
|
||||||
|
}, [
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: "time-tra-thi-open",
|
||||||
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropenthi ? { width: `800rpx` } : `{}`)
|
||||||
|
},
|
||||||
|
[
|
||||||
|
vue.createElementVNode("view", { class: "time-tra-thi-zhixing" }, [
|
||||||
|
vue.createElementVNode(
|
||||||
|
"div",
|
||||||
|
{
|
||||||
|
class: "time-tra-thi-zhixing-font",
|
||||||
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropenthi ? { top: `90rpx`, left: `200rpx`, width: `150rpx`, height: `60rpx`, fontSize: `35rpx`, borderRadius: `8rpx` } : `{}`)
|
||||||
|
},
|
||||||
|
" 待执行 ",
|
||||||
|
4
|
||||||
|
/* STYLE */
|
||||||
|
)
|
||||||
|
]),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass($setup.darkFans ? `time-font-dark` : `time-font`),
|
||||||
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropenthi ? { fontSize: `100rpx` } : `{}`)
|
||||||
|
},
|
||||||
|
" 10:00 - 10:10 ",
|
||||||
|
6
|
||||||
|
/* CLASS, STYLE */
|
||||||
|
),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass($setup.darkFans ? `time-text-dark` : `time-text`),
|
||||||
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropenthi ? { width: `800rpx`, fontSize: `45rpx`, marginTop: `100rpx`, lineHeight: `60rpx` } : `{}`)
|
||||||
|
},
|
||||||
|
" 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ",
|
||||||
|
6
|
||||||
|
/* CLASS, STYLE */
|
||||||
|
),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: "time-people-two",
|
||||||
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropenthi ? { marginTop: `100rpx`, marginBottom: `100rpx` } : `{}`)
|
||||||
|
},
|
||||||
|
[
|
||||||
|
vue.createElementVNode("image", {
|
||||||
|
class: "time-people-img",
|
||||||
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropenthi ? { width: `55rpx`, height: `55rpx` } : `{}`),
|
||||||
|
src: $setup.darkFans ? `/static/index/darkicon/zhixingpeopledark.png` : `/static/index/cardicons/zhixing.png`
|
||||||
|
}, null, 12, ["src"]),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"text",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass($setup.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropenthi ? { fontSize: `42rpx`, marginRight: "40rpx" } : `{}`)
|
||||||
|
},
|
||||||
|
" 单人执行 ",
|
||||||
|
6
|
||||||
|
/* CLASS, STYLE */
|
||||||
|
),
|
||||||
|
vue.createElementVNode("image", {
|
||||||
|
class: "time-people-img",
|
||||||
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropenthi ? { width: `55rpx`, height: `55rpx` } : `{}`),
|
||||||
|
src: $setup.darkFans ? `/static/index/medium/dopeopledark.png` : `/static/index/cardicons/zhifa.png`
|
||||||
|
}, null, 12, ["src"]),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"text",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass($setup.darkFans ? `time-people-font-dark` : `time-people-font`),
|
||||||
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropenthi ? { fontSize: `42rpx`, marginRight: "40rpx" } : `{}`)
|
||||||
|
},
|
||||||
|
" 王金福 / 李贵田 ",
|
||||||
|
6
|
||||||
|
/* CLASS, STYLE */
|
||||||
|
)
|
||||||
|
],
|
||||||
|
4
|
||||||
|
/* STYLE */
|
||||||
|
),
|
||||||
|
vue.createElementVNode("view", { class: "time-button-view" }, [
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: "time-button-start",
|
||||||
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropenthi ? { width: `350rpx`, height: `110rpx`, borderRadius: `80rpx`, fontSize: `50rpx` } : `{}`)
|
||||||
|
},
|
||||||
|
" 开始服务 ",
|
||||||
|
4
|
||||||
|
/* STYLE */
|
||||||
|
),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass($setup.darkFans ? `time-button-end-dark` : `time-button-end`),
|
||||||
|
style: vue.normalizeStyle($setup.isPopupVisiblefiropenthi ? { width: `350rpx`, height: `110rpx`, borderRadius: `80rpx`, fontSize: `50rpx` } : `{}`)
|
||||||
|
},
|
||||||
|
" 服务结束 ",
|
||||||
|
6
|
||||||
|
/* CLASS, STYLE */
|
||||||
|
)
|
||||||
|
])
|
||||||
|
],
|
||||||
|
4
|
||||||
|
/* STYLE */
|
||||||
|
),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"view",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass($setup.isPopupVisiblefiropenthi ? `time-tra-thi-photo-change` : `time-tra-thi-photo`)
|
||||||
|
},
|
||||||
|
[
|
||||||
|
vue.createElementVNode("image", {
|
||||||
|
class: "time-tra-thi-photo-img",
|
||||||
|
style: { "margin-top": "150rpx", "margin-left": "-80rpx" },
|
||||||
|
src: `/static/index/project3.png`
|
||||||
|
}, null, 8, ["src"]),
|
||||||
|
vue.createElementVNode(
|
||||||
|
"text",
|
||||||
|
{
|
||||||
|
class: vue.normalizeClass($setup.darkFans ? `time-tra-thi-photo-font-dark` : `time-tra-thi-photo-font`)
|
||||||
|
},
|
||||||
|
" 更换纸尿裤 ",
|
||||||
|
2
|
||||||
|
/* CLASS */
|
||||||
|
)
|
||||||
|
],
|
||||||
|
2
|
||||||
|
/* CLASS */
|
||||||
|
)
|
||||||
|
]);
|
||||||
|
}),
|
||||||
|
64
|
||||||
|
/* STABLE_FRAGMENT */
|
||||||
|
))
|
||||||
|
])
|
||||||
|
],
|
||||||
|
4
|
||||||
|
/* STYLE */
|
||||||
|
)
|
||||||
|
])
|
||||||
|
])
|
||||||
|
],
|
||||||
|
4
|
||||||
|
/* STYLE */
|
||||||
|
)
|
||||||
|
],
|
||||||
|
4
|
||||||
|
/* STYLE */
|
||||||
|
)
|
||||||
|
])) : vue.createCommentVNode("v-if", true),
|
||||||
|
vue.createCommentVNode(" 右下角结束 ")
|
||||||
])
|
])
|
||||||
],
|
],
|
||||||
2
|
2
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue