|
|
- <template>
- <view class="postDetail">
- <navbar leftClick @leftClick="leftClick" />
-
- <view class="swipe">
- <uv-swiper
- :list="item.image &&
- item.image.split(',')"
- indicator
- height="320rpx"></uv-swiper>
- </view>
-
- <view class="box">
-
- <view class="topInfo">
- <view class="title">
- {{ item.name }}
- </view>
- <view class="price">
- ¥{{ item.money }}
- </view>
- <view class="right">
- <view class="money30">
- 近30天收益
- </view>
- <view class="phone">
- 联系方式<text>付费查看</text>
- </view>
- </view>
- </view>
-
- <view class="createBy">
- <view class="">
- 发布人:{{ item.userId }}
- </view>
- <view class="">
- 发布时间:{{ item.createTime }}
- </view>
- </view>
-
-
- <view class="controls">
- <contentControls/>
- </view>
-
-
- <view class="content">
- <uv-parse :content="item.photographerContent"></uv-parse>
- </view>
-
- <view class="works">
- <view class="item"
- v-for="(t, index) in item.isImage && item.isImage.split(',')"
- :key="index">
- <view class="item-image">
- <!-- <v :src="t" mode=""></v> -->
- <video src="t"/>
- </view>
- </view>
- </view>
- </view>
-
- </view>
- </template>
-
- <script>
- import contentControls from '@/components/content/contentControls.vue'
- export default {
- components : {
- contentControls
- },
- data() {
- return {
- item: {},
- list : [],
- queryParams: {
- pageNo: 1,
- pageSize: 10
- },
- total : 0,
- }
- },
- onLoad(options) {
- // this.$route.query的参数
- this.getData(options.id)
- // this.getList()
- },
- //滚动到屏幕底部
- onReachBottom() {
- // if(this.queryParams.pageSize < this.total){
- // this.queryParams.pageSize += 10
- // this.getList()
- // }
- },
- methods: {
- leftClick(){
- uni.navigateBack(-1)
- },
- getData(id){
- this.$api('indexGetActorDetail', {
- id
- }, res => {
- if(res.code == 200){
- this.item = res.result
- }
- })
- },
- getList(){
- this.$api('indexGetGetWorkPage', {
- token : uni.getStorageSync('token'),
- ...this.queryParams
- }, res => {
- if(res.code == 200){
- this.list = res.result.records
- this.total = res.result.total
- }
- })
- }
- }
- }
- </script>
-
- <style lang="scss" scoped>
- .postDetail {
- .box {
- padding: 20rpx;
- .topInfo{
- position: relative;
- .price{
- font-size: 34rpx;
- font-weight: 900;
- margin: 10rpx 0;
- }
- .right{
- position: absolute;
- right: 20rpx;
- top: 0rpx;
- line-height: 50rpx;
- text-align: right;
- .money30{
- font-size: 26rpx;
- color: #D43030;
- }
- .phone{
- text{
- color: #3A6BF1;
- margin-left: 10rpx;
- }
- }
- }
- }
- .title {
- font-size: 30rpx;
- font-weight: 600;
- color: #000;
- }
-
- .createBy {
- display: flex;
- margin-top: auto;
- margin-bottom: 10rpx;
- font-size: 24rpx;
- margin-top: 20rpx;
- color: #555;
-
- &>view {
- display: flex;
- align-items: center;
- justify-content: center;
- padding-right: 20rpx;
- }
- }
-
- .controls {
- margin-top: 30rpx;
- }
-
- .content {
- margin-top: 30rpx;
- color: #777;
- }
-
- .works{
- display: flex;
- flex-wrap: wrap;
- margin-top: 20rpx;
- .item{
- width: 320rpx;
- margin: 15rpx;
- .item-title{
- padding-bottom: 10rpx;
- color: #000;
- }
- .item-image{
- background-color: #999;
- width: 100%;
- height: 250rpx;
- video{
- width: 100%;
- height: 100%;
- }
- }
- }
- }
- }
- }
- </style>
|