[抖火客户端]
This commit is contained in:
271
pages/synthesis/standBrief.vue
Normal file
271
pages/synthesis/standBrief.vue
Normal file
@@ -0,0 +1,271 @@
|
||||
<template>
|
||||
<view class="content">
|
||||
<image class="yearImg" src="https://cdn.douhuofalv.com/images/2023/04/17/80a076d77afdbe716e29f2ea56f9b103.png" mode="widthFix"></image>
|
||||
<view class="list">
|
||||
<view class="title">
|
||||
<view class="title-name"><text>企业法律咨询服务包</text></view>
|
||||
<view class="title-text">legal advice</view>
|
||||
</view>
|
||||
<view class="item" :class="{active : item.service_order != null}" v-for="(item, index) in synthesisArr" :key="index">
|
||||
<view class="endedAt" v-if="item.service_order">
|
||||
<view class="endedAt-time">到期时间:{{item.service_order.ended_at}}</view>
|
||||
</view>
|
||||
<view class="top">
|
||||
<view class="top-title">{{item.title}}</view>
|
||||
<view class="top-btn" @click="$Router.push({name: 'StandWrite', params: {serveId: item.synthesis_service_id}})">{{item.is_open ? '续费' : '开通'}}</view>
|
||||
</view>
|
||||
<view class="range">
|
||||
<view class="range-label">
|
||||
<view class="range-label-title">针对群体:</view>
|
||||
<view class="range-label-text">
|
||||
{{item.audiences}}
|
||||
</view>
|
||||
</view>
|
||||
<view class="range-label">
|
||||
<view class="range-label-title">咨询收费:</view>
|
||||
<view class="range-label-text">
|
||||
{{item.price}}元/年
|
||||
</view>
|
||||
</view>
|
||||
<view class="range-label">
|
||||
<view class="range-label-title">服务期限:</view>
|
||||
<view class="range-label-text">
|
||||
{{item.day}}天
|
||||
</view>
|
||||
</view>
|
||||
<view class="range-label scope" v-if="index == 0">
|
||||
<view class="range-label-title">服务范围:</view>
|
||||
<view class="range-label-text">
|
||||
<text v-for="(items, scopeIndex) in item.scope" :key="scopeIndex">{{scopeIndex + 1}}、{{items}}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<view class="shape" v-if="index >= 1">
|
||||
<view class="shapeBack"></view>
|
||||
<view class="shapeCont">
|
||||
<view class="shapeWhite">
|
||||
<view class="shapeWhite-title">
|
||||
服务范围
|
||||
</view>
|
||||
<view class="shapeWhite-label" v-for="(items, scopeIndex) in item.scope" :key="scopeIndex">
|
||||
{{scopeIndex + 1}}、{{items}}
|
||||
</view>
|
||||
<image class="shapeWhite-back" src="https://cdn.douhuofalv.com/images/2023/04/17/893b41e87c2bdfca62c4936a880c79cd.png" mode="widthFix"></image>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<image class="yearBttom" src="https://cdn.douhuofalv.com/images/2023/04/17/fc4cad00a630e3d69b3f486e9d2937e9.png" mode="widthFix"></image>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { yearSynthList } from '@/apis/interfaces/synthesis'
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
synthesisArr: [], //企业-年费服务包列表
|
||||
}
|
||||
},
|
||||
|
||||
created() {
|
||||
// 获取-个人-年费服务包列表
|
||||
this.yearServe();
|
||||
},
|
||||
|
||||
methods: {
|
||||
// 个人-年费服务包列表
|
||||
yearServe(){
|
||||
yearSynthList({
|
||||
type: this.$Route.query.type
|
||||
}).then(res => {
|
||||
this.synthesisArr = res
|
||||
}).catch(err => {
|
||||
uni.showToast({
|
||||
title: err.message,
|
||||
icon : 'none'
|
||||
})
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.content {
|
||||
width: 100vw;
|
||||
background-color: #121d4c;
|
||||
}
|
||||
|
||||
.yearImg,
|
||||
.yearBttom{
|
||||
width: 100%;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.list {
|
||||
padding: 30rpx;
|
||||
box-sizing: border-box;
|
||||
background-color: #121d4c;
|
||||
.title {
|
||||
margin-bottom: 40rpx;
|
||||
display: flex;
|
||||
height: 80rpx;
|
||||
line-height: 80rpx;
|
||||
.title-name {
|
||||
flex: 1;
|
||||
text {
|
||||
padding: 0 70rpx 0 30rpx;
|
||||
font-size: 36rpx;
|
||||
background-image: -webkit-linear-gradient(40deg,#f1c593, #fef9f2);
|
||||
display: inline-block;
|
||||
color: #2c3c66;
|
||||
font-weight: 600;
|
||||
position: relative;
|
||||
&:after {
|
||||
position: absolute;
|
||||
content: '';
|
||||
right: 0;
|
||||
top: 0;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-width: 40rpx;
|
||||
border-style: solid;
|
||||
border-color: transparent #121d4c transparent transparent;
|
||||
}
|
||||
}
|
||||
}
|
||||
.title-text {
|
||||
font-size: 36rpx;
|
||||
text-transform: uppercase;
|
||||
background-image: -webkit-linear-gradient(top,#86716b, #8e8f9c);
|
||||
-webkit-background-clip:text;
|
||||
-webkit-text-fill-color:transparent;
|
||||
}
|
||||
}
|
||||
.item {
|
||||
background-color: #002088;
|
||||
border-radius: 20rpx;
|
||||
padding: 30rpx;
|
||||
box-sizing: border-box;
|
||||
margin-bottom: 30rpx;
|
||||
position: relative;
|
||||
&.active {
|
||||
padding-top: 70rpx;
|
||||
}
|
||||
.endedAt {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
display: inline-block;
|
||||
color: #2c3c66;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
.endedAt-time {
|
||||
background-image: -webkit-linear-gradient(40deg,#f1c593, #fef9f2);
|
||||
margin: 0 auto;
|
||||
display: inline-block;
|
||||
padding: 0 20rpx;
|
||||
line-height: 52rpx;
|
||||
font-size: 26rpx;
|
||||
border-radius: 0 0 5rpx 5rpx;
|
||||
color: #582700;
|
||||
}
|
||||
}
|
||||
.top {
|
||||
display: flex;
|
||||
font-weight: 600;
|
||||
line-height: 54rpx;
|
||||
margin-bottom: 20rpx;
|
||||
.top-title {
|
||||
font-size:36rpx;
|
||||
background-image: -webkit-linear-gradient(top,#fdf6ca, #e29c68);
|
||||
-webkit-background-clip:text;
|
||||
-webkit-text-fill-color:transparent;
|
||||
flex: 1;
|
||||
}
|
||||
.top-btn {
|
||||
background-image: -webkit-linear-gradient(top,#fff8da,#f3c796);
|
||||
color: #582700;
|
||||
padding: 0 30rpx;
|
||||
border-radius: 50rpx;
|
||||
box-shadow: 0 8rpx 6rpx rgba(0, 0, 0, .3);
|
||||
}
|
||||
}
|
||||
.range {
|
||||
color: #ffffff;
|
||||
font-size: 28rpx;
|
||||
.range-label {
|
||||
line-height: 40rpx;
|
||||
padding: 10rpx 0;
|
||||
display: flex;
|
||||
.range-label-title {
|
||||
width: 160rpx;
|
||||
}
|
||||
.range-label-text {
|
||||
width: calc(100% - 160rpx);
|
||||
text {
|
||||
display: block;
|
||||
margin-bottom: 20rpx;
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.shape {
|
||||
position: relative;
|
||||
margin-top: 30rpx;
|
||||
font-size: 28rpx;
|
||||
.shapeBack {
|
||||
background-color: #0d245b;
|
||||
height: 20rpx;
|
||||
width: 100%;
|
||||
border: 4rpx solid #e8c595;
|
||||
border-radius: 80rpx;
|
||||
}
|
||||
.shapeCont {
|
||||
padding: 0 30rpx;
|
||||
box-sizing: border-box;
|
||||
margin-top: -18rpx;
|
||||
.shapeWhite {
|
||||
background-color: #ffffff;
|
||||
border-radius: 0 0 20rpx 20rpx;
|
||||
padding: 40rpx 30rpx 30rpx;
|
||||
box-sizing: border-box;
|
||||
color: #0e2660;
|
||||
position: relative;
|
||||
&::after {
|
||||
position: absolute;
|
||||
content: '';
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 20rpx;
|
||||
background-image: -webkit-linear-gradient(top, #a7a8ad, transparent);
|
||||
}
|
||||
.shapeWhite-title {
|
||||
font-size: 38rpx;
|
||||
margin-bottom: 20rpx;
|
||||
}
|
||||
.shapeWhite-label {
|
||||
padding: 10rpx 0;
|
||||
line-height: 44rpx;
|
||||
}
|
||||
.shapeWhite-back {
|
||||
width: 85%;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user