newsdetails.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <view class="pages">
  3. <view class="" :style="{height: navHeight+'px' }"></view>
  4. <view class="navbar-box">
  5. <u-navbar title="资讯详情" :safeAreaInsetTop="true" @leftClick="leftClick" :titleStyle="{color:'#000'}" leftIconColor="#000" bgColor="transparent"></u-navbar>
  6. </view>
  7. <view class="banner">
  8. <image class="img" :src="staticUrl+'/img/newsdetails-banner.png'" alt="">
  9. </view>
  10. <view class="content-wrap">
  11. <view class="title">资讯标题</view>
  12. <view class="time">2023-11-12 12:28:24</view>
  13. <view class="">
  14. </view>
  15. </view>
  16. </view>
  17. </template>
  18. <script>
  19. import { systemInfo } from "@/mixin.js";
  20. export default {
  21. mixins:[systemInfo],
  22. data() {
  23. return {
  24. staticUrl:this.$commonConfig.staticUrl,
  25. params:{
  26. }
  27. }
  28. },
  29. onShow() {
  30. },
  31. onLoad() {
  32. this.getSystemInfo();
  33. },
  34. methods: {
  35. leftClick(e){
  36. let pages = getCurrentPages();
  37. if(pages.length==1){
  38. uni.$u.route('/pages/index/index')
  39. }else{
  40. uni.navigateBack()
  41. };
  42. },
  43. }
  44. }
  45. </script>
  46. <style lang="scss" scoped>
  47. .banner{
  48. .img{
  49. display: block;
  50. width: 100%;
  51. height: 400rpx;
  52. }
  53. }
  54. .content-wrap{
  55. padding: 65rpx 32rpx;
  56. background: #FFFFFF;
  57. border-radius: 20rpx 20rpx 0rpx 0rpx;
  58. transform: translateY(-20rpx);
  59. .title{
  60. font-size: 32rpx;
  61. font-weight: bold;
  62. color: #333333;
  63. line-height: 22rpx;
  64. margin-bottom: 30rpx;
  65. }
  66. .time{
  67. font-size: 24rpx;
  68. font-weight: 400;
  69. color: #C0C0C0;
  70. line-height: 22rpx;
  71. margin-bottom: 40rpx;
  72. }
  73. }
  74. </style>