From ace0cfcd61927780dda4bd4a86c7b742ce9d48c2 Mon Sep 17 00:00:00 2001
From: chenyc <501753378@qq.com>
Date: 星期五, 08 八月 2025 21:38:57 +0800
Subject: [PATCH] gx
---
src/views/paiban/index.vue | 184 +++++++++++++++++++++++++--------------------
1 files changed, 101 insertions(+), 83 deletions(-)
diff --git a/src/views/paiban/index.vue b/src/views/paiban/index.vue
index 0463a2f..0134563 100644
--- a/src/views/paiban/index.vue
+++ b/src/views/paiban/index.vue
@@ -23,7 +23,7 @@
<div class="listrow" v-if="item.code !== ''">
<van-row class="rowhand">
<van-col span="18">
- <van-icon style="color: blue;" name="bell" />
+ <van-icon style="color: #00f;" name="bell" />
{{item.y}}年{{item.m}}月{{item.d}}日
</van-col>
<van-col span="6">
@@ -56,7 +56,6 @@
</div>
</template>
<script lang="ts" setup>
- // import {ref,reactive,watchEffect,watch} from 'vue'
import { Calendar as vanCalendar } from 'vant'
import { ref,onMounted } from 'vue'
import {useRouter} from 'vue-router'
@@ -67,7 +66,7 @@
const day=new Date()
const Year = day.getFullYear()
const minDate=ref( new Date(Date.parse(Year+'-01-01'.replace(/-/g, '/'))))
- const selectDate=ref([{y:2000,m:1,d:1,type:'',code:'',deviceGroupName:'',deviceName:'',timeSlot:1}])
+ const selectDate=ref([{y:2000,m:1,d:1,type:'',code:'',id:0,deviceGroupName:'',scheduleDay:'',deviceName:'',timeSlot:1}])
const fanhui=()=>{
router.go(-1)
}
@@ -88,19 +87,28 @@
console.log(re)
re.forEach((element:any) => {
const dey=element.scheduleDay.split('-')
- // console.log(dey,'444')
- selectDate.value.push({
- y:Number(dey[0]),
- m:Number(dey[1]),
- d:Number(dey[2].substring(0,2)),
- type:element.patientVsHemoMedSchemeName,
- deviceGroupName:element.deviceGroupName,
- deviceName:element.deviceName,
- timeSlot:element.timeSlot,
- code:element.code
+ // 不能添加重复的
+ const x=selectDate.value.findIndex(e=>{return e.code===element.code})
+ if (x===-1){
+ selectDate.value.push({
+ y:Number(dey[0]),
+ m:Number(dey[1]),
+ d:Number(dey[2].substring(0,2)),
+ type:element.patientVsHemoMedSchemeName,
+ deviceGroupName:element.deviceGroupName,
+ deviceName:element.deviceNo,
+ timeSlot:element.timeSlot,
+ code:element.code,
+ scheduleDay:element.scheduleDay,
+ id:element.id
- })
+ })
+ }
+
})
+ selectDate.value= selectDate.value.sort((a,b)=>new Date(b.scheduleDay)-new Date(a.scheduleDay))
+ // return new Date(b.scheduleDay) - new Date(a.scheduleDay));
+ // })
console.log(selectDate.value)
})
}
@@ -139,84 +147,94 @@
})
</script>
<style scoped lang="scss">
- .paibanclass{
- background: rgb(201, 110, 19);
- color: rgb(41, 41, 200);
- }
- .paiban{
- background-color: #F6FAFF;
- padding: 0;
- }
- .listdiv{
- margin-top: 20px;
- .listrow{
- margin-top: 10px;
- width: 94%;
- margin-left: 3%;
- height: 129px;
- background: #FFFFFF;
- box-shadow: 0px 2px 4px 0px rgba(70,150,249,0.1);
- border-radius: 8px;
- .rowhand{
- padding-top: 20px;
- padding-left: 4px;
- height: 20px;
- font-size: 14px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #333333;
- line-height: 20px;
- letter-spacing: 1px;
- .sqtb{
- color: #4696F9;
- // background: #4696F9;
- height:18px;
- line-height:18px;
- border: #4696F9 1px solid;
- width: 60px;
- text-align: center;
- border-radius: 4px;
- font-size: 12px;
- }
- }
- .info{
- margin-top: 10px;
- width: 90%;
- margin-left: 5%;
- height: 1px;
- background: #F1F1F2;
- margin-bottom: 10px;
- }
- .lable{
- width: 90%;
- margin-left: 5%;
- height: 17px;
- font-size: 12px;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #AAAAAA;
- line-height: 17px;
- }
- .value{
- margin-top: 20px;
- width: 90%;
- margin-left: 5%;
+.paibanclass {
+ background: rgb(201, 110, 19);
+ color: rgb(41, 41, 200);
+}
+
+.paiban {
+ background-color: #f6faff;
+ padding: 0;
+}
+
+.listdiv {
+ margin-top: 20px;
+
+ .listrow {
+ margin-top: 10px;
+ width: 94%;
+ margin-left: 3%;
+ height: 129px;
+ background: #fff;
+ box-shadow: 0 2px 4px 0 rgba(70, 150, 249, 0.1);
+ border-radius: 8px;
+
+ .rowhand {
+ padding-top: 20px;
+ padding-left: 4px;
+ height: 20px;
+ font-size: 14px;
+ font-family: Arial, sans-serif;
+ font-weight: 500;
+ color: #333;
+ line-height: 20px;
+ letter-spacing: 1px;
+
+ .sqtb {
+ color: #4696f9;
+
+ // background: #4696F9;
height: 18px;
- font-size: 13px;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #333333;
line-height: 18px;
+ border: #4696f9 1px solid;
+ width: 60px;
+ text-align: center;
+ border-radius: 4px;
+ font-size: 12px;
}
}
+
+ .info {
+ margin-top: 10px;
+ width: 90%;
+ margin-left: 5%;
+ height: 1px;
+ background: #f1f1f2;
+ margin-bottom: 10px;
+ }
+
+ .lable {
+ width: 90%;
+ margin-left: 5%;
+ height: 17px;
+ font-size: 12px;
+ font-family: Arial, sans-serif;
+ font-weight: 400;
+ color: #aaa;
+ line-height: 17px;
+ }
+
+ .value {
+ margin-top: 20px;
+ width: 90%;
+ margin-left: 5%;
+ height: 18px;
+ font-size: 13px;
+ font-family: Arial, sans-serif;
+ font-weight: 500;
+ color: #333;
+ line-height: 18px;
+ }
}
- .fanhui{
+}
+
+.fanhui {
// padding-top: 20px;
width: 100%;
- background: #4696F9;
+ background: #4696f9;
text-align: center;
border-radius: 5px;
- color:#FFFFFF;
+ color: #fff;
height: 36px;
line-height: 36px;
}
--
Gitblit v1.8.0