类型:开发

描述:
This commit is contained in:
2025-07-24 14:00:03 +08:00
parent a36a86732e
commit 259afe2371
2 changed files with 14 additions and 5 deletions

View File

@@ -197,7 +197,7 @@
.box-2 { .box-2 {
margin-top: vh(120); margin-top: vh(120);
width: vw(800); width: vw(800);
height: vh(950); height: vh(953);
padding: vw(8); padding: vw(8);
box-sizing: border-box; box-sizing: border-box;
background-image: url('@/assets/images/bg-2.png'); background-image: url('@/assets/images/bg-2.png');
@@ -302,7 +302,7 @@
} }
.age-box { .age-box {
width: vw(320); width: vw(320);
height: vh(296); height: vh(303);
background-image: url('@/assets/images/bg-3.png'); background-image: url('@/assets/images/bg-3.png');
background-size: 100% 100%; background-size: 100% 100%;
&:nth-child(1) { &:nth-child(1) {
@@ -311,7 +311,7 @@
} }
.box-1 { .box-1 {
width: vw(230); width: vw(230);
height: vh(296); height: vh(303);
background-image: url('@/assets/images/bg-3.png'); background-image: url('@/assets/images/bg-3.png');
background-size: 100% 100%; background-size: 100% 100%;
&:nth-child(2) { &:nth-child(2) {

View File

@@ -105,12 +105,15 @@
:wheel="true" :wheel="true"
:isWatch="true" :isWatch="true"
> >
<div class="item" v-for="(item, index) in homeStore.wordkOrderList" :key="index"> <div v-if="homeStore.wordkOrderList.length>0" class="item" v-for="(item, index) in homeStore.wordkOrderList" :key="index">
<span :class="`item-tag--${item.level}`">{{ item.level_text }}</span> <span :class="`item-tag--${item.level}`">{{ item.level_text }}</span>
<p class="content"> <p class="content">
{{ item.title }} {{ item.title }}
</p> </p>
</div> </div>
<div v-else class="workorder-empty">
今日暂无工单
</div>
</vue3-seamless-scroll> </vue3-seamless-scroll>
</div> </div>
</div> </div>
@@ -355,6 +358,12 @@
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.workorder-empty{
text-align: center;
color: #ffffff;
line-height: vh(90);
font-size: vw(20);
}
.coll-box{ .coll-box{
width:initial !important; width:initial !important;
flex:1 !important; flex:1 !important;
@@ -371,7 +380,7 @@
} }
.map { .map {
width: 100%; width: 100%;
height: vh(710); height: vh(700);
background-color: transparent; background-color: transparent;
} }
.box-3 { .box-3 {