actors.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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="#fff"></u-navbar>
  6. </view>
  7. <view class="page-wrap">
  8. <!-- <view class="title">演员信息</view> -->
  9. <view class="list">
  10. <view class="item" v-for="(item, index) in actorsArr" @click="$u.route('/pages/actorsinfo',{id:item.id})" :key="index">
  11. <image class="img" :src="item.performerHead||staticUrl+'/img/actors.png'"></image>
  12. <view class="text">
  13. <view class="name">{{item.performerName}}</view>
  14. <view class="role u-line-1">{{item.performerRole}}</view>
  15. </view>
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. import { systemInfo } from "@/mixin.js";
  23. export default {
  24. mixins:[systemInfo],
  25. data() {
  26. return {
  27. staticUrl:this.$commonConfig.staticUrl,
  28. performId:'',
  29. actorsArr:[],
  30. params:{
  31. }
  32. }
  33. },
  34. onShow() {
  35. },
  36. onLoad(page) {
  37. console.log('page',page);
  38. this.performId = page.performId;
  39. this.getActors();
  40. this.getSystemInfo();
  41. },
  42. methods: {
  43. leftClick(e){
  44. let pages = getCurrentPages();
  45. if(pages.length==1){
  46. uni.$u.route('/pages/index/index')
  47. }else{
  48. uni.navigateBack()
  49. };
  50. },
  51. getActors(){
  52. this.$u.api.actorsList({performId:this.performId}).then(res=>{
  53. console.log('actorsList',res.data);
  54. this.actorsArr = res.data.list;
  55. }).catch(err=>{
  56. console.log('actorsList',err);
  57. })
  58. },
  59. }
  60. }
  61. </script>
  62. <style>
  63. page{
  64. background-color: #F7F8F9;
  65. }
  66. </style>
  67. <style lang="scss" scoped>
  68. .page-wrap{
  69. margin-top: 44rpx;
  70. }
  71. .title{
  72. font-size: 28rpx;
  73. font-weight: 400;
  74. color: #7F7F7F;
  75. line-height: 42rpx;
  76. margin-bottom: 40rpx;
  77. }
  78. .list{
  79. display: grid;
  80. grid-template-columns: repeat(3, 1fr);
  81. gap: 24rpx;
  82. .item{
  83. text-align: center;
  84. background: #FFFFFF;
  85. border-radius: 20rpx;
  86. padding: 12rpx;
  87. }
  88. .img{
  89. display: block;
  90. width: 100%;
  91. height: 200rpx;
  92. margin-bottom: 16rpx;
  93. }
  94. .name{
  95. font-size: 28rpx;
  96. font-weight: 500;
  97. color: #2D2D2D;
  98. line-height: 42rpx;
  99. margin-bottom: 4rpx;
  100. }
  101. .role{
  102. font-size: 24rpx;
  103. font-weight: 400;
  104. color: #7F7F7F;
  105. line-height: 36rpx;
  106. }
  107. }
  108. </style>