This commit is contained in:
parent
b2276f3f5f
commit
a3ac9464ea
|
|
@ -176,7 +176,6 @@
|
|||
const emit = defineEmits(["datachange"]); // 定义事件名
|
||||
// 选择日期逻辑:支持任意先后顺序的两次点击来形成区间
|
||||
function selectDate(cell) {
|
||||
// console.log("ZZZZ",isInRange(cell.dateNumber))
|
||||
if (cell.prev || cell.next) return
|
||||
const key = formatKey(cell.year, cell.month, cell.day);
|
||||
const num = cell.dateNumber;
|
||||
|
|
@ -193,7 +192,6 @@
|
|||
// 如果第二次选择晚于或等于 start -> 设为 end
|
||||
if (num >= startNumber.value) {
|
||||
endKey.value = key;
|
||||
// console.log("开始,结束", startKey.value, endKey.value)
|
||||
emit("datachange", {
|
||||
start: startKey.value,
|
||||
end: endKey.value,
|
||||
|
|
@ -203,7 +201,6 @@
|
|||
// 如果第二次选择早于 start -> 把早的设为 start,晚的设为 end(即交换)
|
||||
endKey.value = startKey.value;
|
||||
startKey.value = key;
|
||||
// console.log("开始,结束", startKey.value, endKey.value)
|
||||
emit("datachange", {
|
||||
start: startKey.value,
|
||||
end: endKey.value,
|
||||
|
|
|
|||
|
|
@ -102,7 +102,6 @@
|
|||
}
|
||||
// plus.runtime.quit();
|
||||
updatePassword(form).then(res => {
|
||||
console.log("res", res)
|
||||
if (res.success) {
|
||||
uni.showToast({
|
||||
title: res.message,
|
||||
|
|
|
|||
|
|
@ -221,6 +221,13 @@
|
|||
{
|
||||
"navigationBarTitleText" : ""
|
||||
}
|
||||
},
|
||||
{
|
||||
"path" : "pages/NursingNew/component/doctorask/medical/medical",
|
||||
"style" :
|
||||
{
|
||||
"navigationBarTitleText" : ""
|
||||
}
|
||||
}
|
||||
],
|
||||
"globalStyle": {
|
||||
|
|
|
|||
|
|
@ -0,0 +1,28 @@
|
|||
<template>
|
||||
<view>
|
||||
<view style="width: 100vw;
|
||||
height: 100vh;
|
||||
line-height: 100vh;
|
||||
font-size: 4.5vw;
|
||||
text-align: center;">
|
||||
敬请期待
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
|
|
@ -25,7 +25,10 @@
|
|||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="title-card" @click="nusing">
|
||||
<view class="title-card"
|
||||
@click="uni.navigateTo({
|
||||
url:'/pages/NursingNew/component/doctorask/medical/medical'
|
||||
})">
|
||||
<view class="card-top">
|
||||
<view class="card-top-left">
|
||||
0
|
||||
|
|
@ -49,7 +52,10 @@
|
|||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="title-card" @click="nusing">
|
||||
<view class="title-card"
|
||||
@click="uni.navigateTo({
|
||||
url:'/pages/NursingNew/component/doctorask/medical/medical'
|
||||
})">
|
||||
<view class="card-top" >
|
||||
<view class="card-top-left">
|
||||
{{hldyobj.hqlFinishedTotal}}
|
||||
|
|
@ -1174,7 +1180,7 @@
|
|||
},200)
|
||||
})
|
||||
onHide(() => {
|
||||
playall.value = false;
|
||||
photoplay.value = false;
|
||||
})
|
||||
const filteredMenu = (index : number) => {
|
||||
return leftMenuArray.value.filter(item => Number(item.areaFlag) - 1 == index);
|
||||
|
|
|
|||
|
|
@ -570,7 +570,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|||
)
|
||||
]);
|
||||
}
|
||||
const camera = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["styles", [_style_0]], ["__file", "D:/hldy_app_mini/pages/camera.nvue"]]);
|
||||
const camera = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["styles", [_style_0]], ["__file", "D:/项目/hldy_app_mini/pages/camera.nvue"]]);
|
||||
export {
|
||||
camera as default
|
||||
};
|
||||
|
|
|
|||
|
|
@ -578,7 +578,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|||
)
|
||||
]);
|
||||
}
|
||||
const fullcamera = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["styles", [_style_0]], ["__file", "D:/hldy_app_mini/pages/fullcamera.nvue"]]);
|
||||
const fullcamera = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["styles", [_style_0]], ["__file", "D:/项目/hldy_app_mini/pages/fullcamera.nvue"]]);
|
||||
export {
|
||||
fullcamera as default
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue