You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.5 KiB
69 lines
1.5 KiB
<template>
|
|
<view class="content flex_col flex_start bg-white">
|
|
|
|
<!-- title -->
|
|
<view class="title_item flex_col flex_start_y bg-white padding " >
|
|
<view class="title flex_row flex_start">
|
|
<view class="text-m text-left">欧轩智能商家助手功能更新</view>
|
|
<view class="bandage"></view>
|
|
</view>
|
|
<view class="time">2020.06.22</view>
|
|
</view>
|
|
|
|
<rich-text class="txt" :nodes="txt"></rich-text>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
txt:"欧轩智能商家助手将于2020.09.16上线!欧轩智能商家助手将于2020.09.16上线!欧轩智能商家助手将于2020.09.16上线!欧轩智能商家助手将于上线欧轩智能商家助手将于上线欧轩智能商家助手将于2020.09.16上线!欧轩智能商家助手将于欧轩智能商家助手将于上线欧轩智能商家助手将于2020.09.16上线欧轩智能商家助手将于2020.09.16上线!",
|
|
login:true
|
|
};
|
|
},
|
|
onLoad(parms) {
|
|
|
|
},
|
|
onUnload() {
|
|
|
|
},
|
|
methods: {
|
|
jumpPage(){
|
|
this.$Router.push({name:"login"})
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
page{
|
|
background-color: white;
|
|
}
|
|
.content{
|
|
|
|
.title_item{
|
|
color: #333333;
|
|
position: relative;
|
|
margin-top: 24rpx;
|
|
border-radius: 10rpx;
|
|
width: 100%;
|
|
margin-bottom: 60rpx;
|
|
// height: 124rpx;
|
|
.title{
|
|
margin-bottom: 16rpx;
|
|
font-weight: 700;
|
|
font-size: 40rpx;
|
|
color: #1A1A1A
|
|
}
|
|
.time{
|
|
font-size: 24rpx;
|
|
color: #B2B2B2;
|
|
}
|
|
|
|
}
|
|
.txt{
|
|
width: 662rpx;
|
|
padding-bottom:10rpx ;
|
|
}
|
|
}
|
|
</style>
|