This commit is contained in:
wangweidong 2026-01-13 15:45:42 +08:00
commit f555869efe
2 changed files with 36 additions and 3 deletions

View File

@ -525,12 +525,37 @@
.order-history { .order-history {
width: 100%; width: 100%;
height: 450rpx; height: 450rpx;
background-color: red; /* background-color: red; */
.history-title{
width: 100%;
height: 70rpx;
display: flex;
align-items: center;
padding: 0 30rpx;
justify-content: space-between;
.history-left{
font-size: 30rpx;
margin-top: 10rpx;
}
.history-right{
margin-top: 0.5vw;
width: 7vw;
height: 2.5vw;
background: linear-gradient(to bottom, #009DEF, #0076FF);
display: flex;
justify-content: center;
align-items: center;
border-radius: 40rpx;
color: #fff;
font-size: 28rpx;
position: relative;
}
}
} }
.order-future { .order-future {
width: 100%; width: 100%;
height: 650rpx; height: 640rpx;
margin-top: -12rpx; margin-top: -12rpx;
.future-items { .future-items {

View File

@ -125,6 +125,14 @@
</scroll-view> </scroll-view>
</view> </view>
<view class="order-history"> <view class="order-history">
<view class="history-title">
<view class="history-left">
服务指令
</view>
<view class="history-right">
长者标签
</view>
</view>
<!-- <scroll-view class="future-items" scroll-with-animation scroll-y > <!-- <scroll-view class="future-items" scroll-with-animation scroll-y >
<view :class="moveById===item.id? `future-item-target`: `future-item`" v-for="(item,index) in downmenuarray" :key="index" <view :class="moveById===item.id? `future-item-target`: `future-item`" v-for="(item,index) in downmenuarray" :key="index"
@click="searchtable(item)"> @click="searchtable(item)">
@ -728,7 +736,7 @@
const backsearch = (id) => { const backsearch = (id) => {
upmenuarray.value.forEach((element:any,index:number)=>{ upmenuarray.value.forEach((element:any,index:number)=>{
if(element.id === id){ if(element.id === id){
firsttopmove.value = (index-1) * 75 firsttopmove.value = (index-1) * 80
} }
}) })
} }