|
- <template>
- <view class="cented-box">
- <view class="search-box">
- <view class="search">
- <view class="search-img">
- <image class="search-img1" src="../../static/images/search.png" mode=""></image>
- </view>
- <view class="search-text">输入话术关键字</view>
- </view>
- </view>
-
- <view class="caseid-box">
- <view class="caseid">
- <image class="caseid-img1" src="../../static/images/good.png" mode=""></image>
- <view class="caseid-text">优秀案例</view>
- </view>
- <view class="caseid">
- <image class="caseid-img1" src="../../static/images/problem.png" mode=""></image>
- <view class="caseid-text">问题库</view>
- </view>
- <view class="caseid">
- <image class="caseid-img1" src="../../static/images/reverse.png" mode=""></image>
- <view class="caseid-text">反面案例</view>
- </view>
- </view>
- <view class="Pinspeak">销讲话术</view>
- <view class="chented">
- <view class="title">
- <view class="title1"></view>
- <view class="titletext">逼单话术</view>
- <view class="titleimg">
- <image class="titleimg1" src="../../static/images/arrow.png" mode=""></image>
- </view>
- </view>
- </view>
-
- <view class="chented">
- <view class="title" style="border: none;">
- <view class="title1"></view>
- <view class="titletext">品牌介绍</view>
- </view>
- <view class="chented-for">
- <view class="chented-che">2021销售额</view>
- <view class="chented-che">2021销售额</view>
- <view class="chented-che">2021销售额</view>
- <view class="chented-che">2021销售额</view>
- </view>
- </view>
- <view class="chented">
- <view class="title" style="border: none;">
- <view class="title1"></view>
- <view class="titletext">品牌介绍</view>
- </view>
- <view class="chented-for">
- <view class="chented-che">2021销售额</view>
- <view class="chented-che">2021销售额</view>
- <view class="chented-che">2021销售额</view>
- <view class="chented-che">2021销售额</view>
- </view>
- </view>
-
- </view>
- </template>
-
- <script>
- export default {
- data() {
- return {};
- },
- components: {},
- onLoad() {},
- onShow() {},
- methods: {
-
- },
-
- };
- </script>
-
- <style lang="scss" scoped>
- .cented-box{
- background: #F8F8F8;
- width: 100%;
- height: 100%;
- }
- .search-box{
- width: 100%;
- height: 102rpx;
- background: #FFFFFF;
- display: flex;
- align-items: center;
- justify-content: center;
- .search{
- width: 690rpx;
- height: 70rpx;
- display: flex;
- align-items: center;
- background: #F8F8F8;
- border-radius: 33rpx;
- .search-img{
- width: 26rpx;
- height: 30rpx;
- margin-left: 20rpx;
- .search-img1{
- width: 100%;
- height: 100%;
- margin-top: 2rpx;
- }
- }
- .search-text{
- font-size: 28rpx;
- font-weight: 400;
- color: #999999;
- margin-left:10rpx;
- }
- }
- }
- .caseid-box{
- width: 100%;
- height: 204rpx;
- margin-top: 10rpx;
- background: #FFFFFF;
- display: flex;
- .caseid{
- flex: 1;
- height: 100%;
- text-align: center;
- margin-top: 13rpx;
- .caseid-img1{
- width: 134rpx;
- height: 134rpx;
- }
- .caseid-text{
- width: 100%;
- text-align: center;
- font-size: 24rpx;
- font-weight: 400;
- color: #333333;
- }
- }
- }
- .Pinspeak{
- width: 100%;
- height: 92rpx;
- border-bottom: 1rpx solid #E0E0E0;
- font-size: 32rpx;
- font-weight: 600;
- color: #333333;
- text-indent: 30rpx;
- line-height: 92rpx;
- background: #FFFFFF;
- margin-top: 20rpx;
- }
- .chented{
- width: 100%;
- padding-left: 30rpx;
- padding-right: 30rpx;
- background-color: #FFFFFF;
- .title{
- width: 100%;
- height: 90rpx;
- border-bottom: 1rpx solid #E0E0E0;
- display: flex;
- align-items: center;
- .title1{
- width: 6rpx;
- height: 30rpx;
- background: #2671E2;
- }
- .titletext{
- width: 90%;
- height: 30rpx;
- font-size: 30rpx;
- font-weight: 600;
- color: #333333;
- line-height: 30rpx;
- text-indent: 10rpx;
- }
- .titleimg{
- width: 8%;
- text-align: right;
- .titleimg1{
- width: 14rpx;
- height: 30rpx;
- }
- }
- }
- .chented-for{
- width: 100%;
- display: flex;
- flex-wrap: wrap;
- margin-top: -20rpx;
- border-bottom: 1rpx solid #E0E0E0;
- padding-bottom: 30rpx;
- .chented-che{
- width: 210rpx;
- height: 60rpx;
- background: #FFFFFF;
- border-radius: 4rpx;
- border: 1px solid #C9C9C9;
- text-align: center;
- line-height: 60rpx;
- font-size: 30rpx;
- font-weight: 400;
- color: #333333;
- margin-right: 20rpx;
- margin-top: 20rpx;
- }
- }
- }
- </style>
|