actorsinfo.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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="details.performerHead" mode="widthFix" alt="">
  9. </view>
  10. <view class="content-wrap">
  11. <view class="title">{{details.performerName||''}}({{details.performerRole||''}})</view>
  12. <view class="centent parse-content">
  13. <u-parse :content="details.performerSnapshot||''"></u-parse>
  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. id:'',
  26. details:{},
  27. }
  28. },
  29. onShow() {
  30. },
  31. onLoad(page) {
  32. let that = this;
  33. this.getSystemInfo();
  34. this.id = page.id;
  35. this.type = page.type;
  36. this.getDetails(this.id);
  37. // this.getDetails();
  38. },
  39. methods: {
  40. leftClick(e){
  41. let pages = getCurrentPages();
  42. if(pages.length==1){
  43. uni.$u.route('/pages/index/index')
  44. }else{
  45. uni.navigateBack()
  46. };
  47. },
  48. getDetails(){
  49. this.$u.api.actorsinfo({performerId:this.id}).then(res=>{
  50. this.details = res.data;
  51. // console.log('res',res.data);
  52. }).catch(err=>{
  53. console.log('getDetails',err);
  54. })
  55. },
  56. }
  57. }
  58. </script>
  59. <style lang="scss" scoped>
  60. .banner{
  61. .img{
  62. display: block;
  63. width: 100%;
  64. height: 400rpx;
  65. }
  66. }
  67. .content-wrap{
  68. padding: 65rpx 32rpx;
  69. background: #FFFFFF;
  70. border-radius: 20rpx 20rpx 0rpx 0rpx;
  71. transform: translateY(-20rpx);
  72. .title{
  73. font-size: 32rpx;
  74. font-weight: bold;
  75. color: #333333;
  76. // line-height: 22rpx;
  77. margin-bottom: 30rpx;
  78. }
  79. .time{
  80. font-size: 24rpx;
  81. font-weight: 400;
  82. color: #C0C0C0;
  83. line-height: 22rpx;
  84. margin-bottom: 40rpx;
  85. }
  86. .centent{
  87. font-size: 28rpx;
  88. font-weight: 400;
  89. color: #6B6B6B;
  90. line-height: 44rpx;
  91. img,image{
  92. width: 100%;
  93. display: block;
  94. margin: 10rpx auto;
  95. }
  96. }
  97. }
  98. </style>