diff --git a/component/public/newgame/sxy-Timeing.vue b/component/public/newgame/sxy-Timeing.vue
new file mode 100644
index 0000000..9198856
--- /dev/null
+++ b/component/public/newgame/sxy-Timeing.vue
@@ -0,0 +1,201 @@
+
+
+
+ {{ Math.floor(topTime / 60) }}
+
+
+ {{ Math.floor(bottomTime / 60) }}
+
+
+ {{ Math.floor(topTime / 60) }}
+
+
+ {{ Math.floor(bottomTime / 60) }}
+
+ :
+
+ {{ (topTime % 60)<10?'0'+(topTime % 60) : (topTime % 60) }}
+
+
+ {{ (bottomTime % 60)<10? '0'+(bottomTime % 60) : (bottomTime % 60)}}
+
+
+ {{ (topTime % 60)<10?'0'+(topTime % 60) : (topTime % 60) }}
+
+
+ {{ (bottomTime % 60)<10? '0'+(bottomTime % 60) : (bottomTime % 60) }}
+
+
+
+
+
+
+
diff --git a/component/public/severcard.vue b/component/public/severcard.vue
index 3ea5f8c..3913509 100644
--- a/component/public/severcard.vue
+++ b/component/public/severcard.vue
@@ -8,9 +8,18 @@
{{qcobj.directiveName}}
-
+
- {{qcobj.startTime?.slice(11, 16) }} - {{qcobj.endTime?.slice(11, 16) }}
+
+ {{qcobj.startTime?.slice(11, 16) }}
+
+
+
+
+
+
+
+ {{ qcobj?.directiveName }}
@@ -46,6 +55,7 @@
import { ref, onMounted, reactive, onBeforeUnmount, computed, nextTick, defineComponent,watch } from 'vue';
import { queryOrderlist,startDirectiveServe,finishDirectiveServe,queryOrderInfoList } from '@/pages/procurement/api/lunpan.js'
import { startOrder,endOrder,editSubPicPath,editSubMp4,queryEmpList,transferOrder,assistOrder} from '@/pages/NursingNew/component/doctorask/api/api.js'
+ import timeing from './newgame/sxy-Timeing.vue'
const qcobj = ref({})
const openleft = ref(true)
const open = ref(0);
@@ -179,11 +189,25 @@
height: 8vw;
}
}
-
+ .names{
+ font-weight: 400;
+ font-size: 1.5vw;
+ color: #333333;
+ margin-top: 1.4vw;
+ padding-left: 1vw;
+ }
.big-time {
font-weight: 600;
- font-size: 1.8vw;
+ font-size: 2.3vw;
padding-left: 1vw;
+ width: 18vw;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ >view{
+ display: flex;
+ align-items: center;
+ }
}
.icon-people {
@@ -192,6 +216,7 @@
color: #555555;
width: 18vw;
padding-left: 1vw;
+ white-space: nowrap;
.people-img {
width: 1.5vw;
height: 1.5vw;
diff --git a/pages/NursingNew/component/index.vue b/pages/NursingNew/component/index.vue
index 41ee8f8..f49a97c 100644
--- a/pages/NursingNew/component/index.vue
+++ b/pages/NursingNew/component/index.vue
@@ -109,9 +109,10 @@
- {{v.directiveName}}
+ {{v.directiveName?.substring(0,4)}}
+ {{v.directiveName?.substring(4,12)}}
-
+
暂无服务指令
@@ -126,7 +127,8 @@
-
+
+
+
@@ -347,7 +349,7 @@
- {{ item.nuName }}
+ {{ item.nuName.length>6?item.nuName.substring(0,6)+'.':item.nuName }}
{{ item.elderInfo?.name?`入住`:`空闲` }}
@@ -606,6 +608,7 @@
// import {startOrder,endOrder} from './doctorask/api/api.js'
import {queryOrderList,queryOrderInfoList,startOrder,endOrder,editSubPicPath,editSubMp4,queryEmpList,transferOrder,assistOrder,generateInstant} from '../component/doctorask/api/api.js'
import { getNclist } from "./nurse/api.js";
+ import serveswipe from './leftcontent/serveswipe.vue';
const serverUrl = ref(uni.getStorageSync('imagebase') )
const servervideoUrl = ref(uni.getStorageSync('serverUrl') + '/sys/commonVideo/staticVideo/')
const serverpicUrl = ref(uni.getStorageSync('serverUrl') + '/sys/common/static/')
@@ -730,6 +733,7 @@
const firstgetqueryCgdList = (nuId) => {
form.nuId = nuId;
queryOrderList(form).then(res => {
+ console.log(form)
if(res.result.records.length>0){
indexmessage.value = res.result.records[0]
// clickLeftMenu(0,res.result.records[0])
@@ -988,13 +992,13 @@
const shtab = (e)=>{
fwzlindex.value = e;
if(e==0){
- fwzlarr.value = zlarr.value.care
+ fwzlarr.value = zlarr.value?.care
}
if(e==1){
fwzlarr.value = [];
}
if(e==2){
- fwzlarr.value = zlarr.value.logistics
+ fwzlarr.value = zlarr.value?.logistics
}
}
const zldex = (e) =>{
@@ -2256,6 +2260,13 @@
color: #333333;
width: 100%;
}
+ view{
+ text-align: center;
+ font-weight: 400;
+ font-size: 0.7vw;
+ color: #555;
+ width: 100%;
+ }
}
.act{
background: #F2F8FF;
diff --git a/pages/NursingNew/component/leftcontent/leftcontent.vue b/pages/NursingNew/component/leftcontent/leftcontent.vue
index 09a1f05..42977c6 100644
--- a/pages/NursingNew/component/leftcontent/leftcontent.vue
+++ b/pages/NursingNew/component/leftcontent/leftcontent.vue
@@ -12,9 +12,9 @@
-
-
- {{v.name}}
+
+
+ {{v.name}}
@@ -232,7 +232,8 @@
}
text{
font-weight: 400;
- font-size: 0.9vw;
+ font-size: 1.3vw;
+ margin-top: 0.8vw;
color: #666666;
}
}
diff --git a/pages/NursingNew/component/leftcontent/serveswipe.vue b/pages/NursingNew/component/leftcontent/serveswipe.vue
new file mode 100644
index 0000000..d62500c
--- /dev/null
+++ b/pages/NursingNew/component/leftcontent/serveswipe.vue
@@ -0,0 +1,1316 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 服务倒计时
+
+
+
+
+ {{ indexmessage?.startTime.slice(11, 16) }}
+ -
+ {{ indexmessage?.endTime.slice(11, 16) }}
+
+
+
+
+
+
+ {{indexmessage?.izStart=='N'?'待执行':'执行中'}}
+
+
+
+
+
+
+
+
+
+ {{ indexmessage?.directiveName }}
+
+
+
+
+
+
+
+
+ 开始服务
+
+
+
+
+ 结束服务
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ zdxzdex==1?`转单执行`:`协助执行` }}
+
+
+
+
+
+
+
+ {{v.name }}
+
+
+ {{v.sex}}
+
+
+ {{ v.height}}cm
+
+
+
+ {{ v.weight}}Kg
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/NursingNew/component/pleasetake/common/htditem.vue b/pages/NursingNew/component/pleasetake/common/htditem.vue
index 8a1fb41..2b57cfe 100644
--- a/pages/NursingNew/component/pleasetake/common/htditem.vue
+++ b/pages/NursingNew/component/pleasetake/common/htditem.vue
@@ -164,19 +164,19 @@