lock_Maintenance/components/messages/policy.vue
2024-08-29 15:19:18 +08:00

89 lines
1.5 KiB
Vue

<template>
<view class="work">
<view class="message" @click="goPolicy()">
<view class="icon3">
<image src="@/static/image/policy.png"></image>
</view>
<view class="text">
<view class="title">
<text>维修通知</text>
</view>
<view class="word">
<text>政策通知</text>
</view>
<view class="time">
<text>2023-08-08</text>
</view>
</view>
</view>
<view class="message">
<view class="icon3">
<image src="@/static/image/policy.png"></image>
</view>
<view class="text">
<view class="title">
<text>紧急维修通知</text>
</view>
<view class="word">
<text>政策通知</text>
</view>
<view class="time">
<text>2023-08-08</text>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
name:"policy",
data() {
return {
}
},
methods:{
goPolicy(){
uni.navigateTo({
url:"/pages/Message/Policy"
})
}
}
}
</script>
<style lang="scss" scoped>
.message{
display: flex;
margin-bottom: 10rpx;
.text{
margin-left: 10rpx;
.title{
display: flex;
font-size: 40rpx;
font-weight: 500;
}
.word{
margin-top: 10rpx;
font-size: 25rpx;
font-weight: 100;
}
.time{
justify-items: right;
font-size: 20rpx;
}
}
}
.icon3{
width: 100rpx;
height: 100rpx;
border-radius: 50%;
background-color: rgb(187,243,220);
image{
margin: 16rpx;
width: 70rpx;
height: 70rpx;
}
}
</style>