123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <template>
- <view class="pages">
- <view class="" :style="{height: navHeight+'px' }"></view>
- <view class="navbar-box">
- <u-navbar title="演员信息" :safeAreaInsetTop="true" @leftClick="leftClick" :titleStyle="{color:'#000'}" leftIconColor="#000" bgColor="transparent"></u-navbar>
- </view>
- <view class="banner">
- <image class="img" :src="details.performerHead" mode="widthFix" alt="">
- </view>
- <view class="content-wrap">
- <view class="title">{{details.performerName||''}}({{details.performerRole||''}})</view>
- <view class="centent parse-content">
- <u-parse :content="details.performerSnapshot||''"></u-parse>
- </view>
- </view>
- </view>
- </template>
- <script>
- import { systemInfo } from "@/mixin.js";
- export default {
- mixins:[systemInfo],
- data() {
- return {
- staticUrl:this.$commonConfig.staticUrl,
- id:'',
- details:{},
- }
- },
- onShow() {
- },
- onLoad(page) {
- let that = this;
- this.getSystemInfo();
- this.id = page.id;
- this.type = page.type;
- this.getDetails(this.id);
- // this.getDetails();
-
- },
- methods: {
- leftClick(e){
- let pages = getCurrentPages();
- if(pages.length==1){
- uni.$u.route('/pages/index/index')
- }else{
- uni.navigateBack()
- };
- },
- getDetails(){
- this.$u.api.actorsinfo({performerId:this.id}).then(res=>{
- this.details = res.data;
- // console.log('res',res.data);
- }).catch(err=>{
- console.log('getDetails',err);
- })
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .banner{
- .img{
- display: block;
- width: 100%;
- height: 400rpx;
- }
- }
- .content-wrap{
- padding: 65rpx 32rpx;
- background: #FFFFFF;
- border-radius: 20rpx 20rpx 0rpx 0rpx;
- transform: translateY(-20rpx);
- .title{
- font-size: 32rpx;
- font-weight: bold;
- color: #333333;
- // line-height: 22rpx;
- margin-bottom: 30rpx;
- }
- .time{
- font-size: 24rpx;
- font-weight: 400;
- color: #C0C0C0;
- line-height: 22rpx;
- margin-bottom: 40rpx;
- }
- .centent{
- font-size: 28rpx;
- font-weight: 400;
- color: #6B6B6B;
- line-height: 44rpx;
- img,image{
- width: 100%;
- display: block;
- margin: 10rpx auto;
- }
- }
- }
- </style>
|