uni-events-helper-wx
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

3 years ago
  1. <template>
  2. <view class="content flex_col flex_start bg-white">
  3. <!-- title -->
  4. <view class="title_item flex_col flex_start_y bg-white padding " >
  5. <view class="title flex_row flex_start">
  6. <view class="text-m text-left">欧轩智能商家助手功能更新</view>
  7. <view class="bandage"></view>
  8. </view>
  9. <view class="time">2020.06.22</view>
  10. </view>
  11. <rich-text class="txt" :nodes="txt"></rich-text>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. txt:"欧轩智能商家助手将于2020.09.16上线!欧轩智能商家助手将于2020.09.16上线!欧轩智能商家助手将于2020.09.16上线!欧轩智能商家助手将于上线欧轩智能商家助手将于上线欧轩智能商家助手将于2020.09.16上线!欧轩智能商家助手将于欧轩智能商家助手将于上线欧轩智能商家助手将于2020.09.16上线欧轩智能商家助手将于2020.09.16上线!",
  19. login:true
  20. };
  21. },
  22. onLoad(parms) {
  23. },
  24. onUnload() {
  25. },
  26. methods: {
  27. jumpPage(){
  28. this.$Router.push({name:"login"})
  29. },
  30. }
  31. }
  32. </script>
  33. <style lang="less" scoped>
  34. page{
  35. background-color: white;
  36. }
  37. .content{
  38. .title_item{
  39. color: #333333;
  40. position: relative;
  41. margin-top: 24rpx;
  42. border-radius: 10rpx;
  43. width: 100%;
  44. margin-bottom: 60rpx;
  45. // height: 124rpx;
  46. .title{
  47. margin-bottom: 16rpx;
  48. font-weight: 700;
  49. font-size: 40rpx;
  50. color: #1A1A1A
  51. }
  52. .time{
  53. font-size: 24rpx;
  54. color: #B2B2B2;
  55. }
  56. }
  57. .txt{
  58. width: 662rpx;
  59. padding-bottom:10rpx ;
  60. }
  61. }
  62. </style>