|
@@ -1,5 +1,6 @@
|
|
|
<template>
|
|
|
- <view class="content">
|
|
|
+ <view class="index-container">
|
|
|
+ <TuanAppShim bg="transparent"></TuanAppShim>
|
|
|
<view class="content-box">
|
|
|
<view class="top-main-box">
|
|
|
<view class="zzbg">
|
|
@@ -7,7 +8,7 @@
|
|
|
</view>
|
|
|
<view class="topmain">
|
|
|
<view class="leftimg">
|
|
|
- <u-avatar size="60" :src="cardObj.head_img" shape="square"></u-avatar>
|
|
|
+ <image style="width: 60rpx;height: 60rpx;" :src="cardObj.head_img"></image>
|
|
|
</view>
|
|
|
<view class="rightcont">
|
|
|
<view class="name">{{ cardObj.name }}</view>
|
|
@@ -16,7 +17,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="btnmain">
|
|
|
- <u-icon name="map-fill"></u-icon><text>{{ cardObj.address }}</text>
|
|
|
+ <text>{{ cardObj.address }}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
@@ -24,7 +25,6 @@
|
|
|
<view class="conta">
|
|
|
<view v-if="cardObj.phone" class="cont" @click="onPhone()">
|
|
|
<view class="box">
|
|
|
- <u-icon name="phone-fill" color="#007AFF" size="40"> </u-icon>
|
|
|
<view class="right">
|
|
|
<text class="tit">拨打电话</text>
|
|
|
<text>{{ cardObj.phone }}</text>
|
|
@@ -33,7 +33,6 @@
|
|
|
</view>
|
|
|
<view v-if="cardObj.wechat" class="cont" @click="onCopy(cardObj.wechat)">
|
|
|
<view class="box">
|
|
|
- <u-icon name="weixin-fill" color="#007AFF" size="40"> </u-icon>
|
|
|
<view class="right">
|
|
|
<text class="tit">加微信</text>
|
|
|
<text>{{ cardObj.wechat }}</text>
|
|
@@ -42,7 +41,6 @@
|
|
|
</view>
|
|
|
<view v-if="cardObj.qq" class="cont" @click="onCopy(cardObj.qq)">
|
|
|
<view class="box">
|
|
|
- <u-icon name="qq-fill" color="#007AFF" size="40"> </u-icon>
|
|
|
<view class="right">
|
|
|
<text class="tit">QQ</text>
|
|
|
<text>{{ cardObj.qq }}</text>
|
|
@@ -51,7 +49,6 @@
|
|
|
</view>
|
|
|
<view v-if="cardObj.email" class="cont" @click="onCopy(cardObj.email)">
|
|
|
<view class="box">
|
|
|
- <u-icon name="email-fill" color="#007AFF" size="40"> </u-icon>
|
|
|
<view class="right">
|
|
|
<text class="tit">邮箱</text>
|
|
|
<text>{{ cardObj.email }}</text>
|
|
@@ -70,19 +67,20 @@
|
|
|
</view>
|
|
|
<view class="top-mainc">
|
|
|
<view class="left">
|
|
|
- <u-avatar-group :urls="headerList" size="35" gap="0.4" :default-url="headerImg" random-bg-color>
|
|
|
- </u-avatar-group>
|
|
|
+ <tui-image-group
|
|
|
+ :image-list="headerList.map((item, index) => ({ id: index, src: item || headerImg }))"
|
|
|
+ width="35rpx" height="35rpx" radius="0"
|
|
|
+ ></tui-image-group>
|
|
|
<text>{{ visitorCount }}人浏览</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="top-main-tit">
|
|
|
- <u-icon name="file-text-fill" color="#007AFF" size="40"> </u-icon>
|
|
|
<text>业务介绍</text>
|
|
|
</view>
|
|
|
<view class="top-maind">
|
|
|
<view class="topmain">
|
|
|
<view class="leftimg">
|
|
|
- <u-avatar size="60" :src="cardObj.head_img" shape="square"></u-avatar>
|
|
|
+ <image style="width: 60rpx;height: 60rpx;" :src="cardObj.head_img"></image>
|
|
|
</view>
|
|
|
<view class="rightcont">
|
|
|
<view v-if="!cardObj.intro" class="name">Hi~欢迎访问我的名片,了解更多内容请直接咨询我。</view>
|
|
@@ -114,56 +112,56 @@ export default {
|
|
|
},
|
|
|
async onShow(options) {
|
|
|
console.log('onLoad options', options)
|
|
|
- if (uni.getStorageSync(USER_INFO)) {
|
|
|
- var user = uni.getStorageSync(USER_INFO)
|
|
|
- if (id != null && id != '') {
|
|
|
- this.id = id
|
|
|
- const card = await request('uni-card', 'getCard', {
|
|
|
- id,
|
|
|
- uid: user.id
|
|
|
- }, {
|
|
|
- showloading: true
|
|
|
- })
|
|
|
- if (card._id == '') {
|
|
|
- this.getDefault()
|
|
|
- } else {
|
|
|
- const visitorList = await request('uni-card', 'getVisitorList', {
|
|
|
- card_id: id,
|
|
|
- skip: 0,
|
|
|
- limit: 8
|
|
|
- }, {
|
|
|
- showloading: true
|
|
|
- })
|
|
|
- this.cardObj = card
|
|
|
- this.visitorCount = visitorList.total
|
|
|
- visitorList.items.forEach((arr, index) => {
|
|
|
- if (arr.head_img) { this.headerList.push(arr.head_img) } else { this.headerList.push(require('../../static/images/userimg.png')) }
|
|
|
- })
|
|
|
- }
|
|
|
- } else {
|
|
|
- const mycard = await request('uni-card', 'getMyCard', {
|
|
|
- uid: user.id
|
|
|
- }, {
|
|
|
- showloading: true
|
|
|
- })
|
|
|
- if (mycard._id == '') {
|
|
|
- this.getDefault()
|
|
|
- } else {
|
|
|
- const myVisitorList = await request('uni-card', 'getMyVisitorList', {
|
|
|
- uid: user.id,
|
|
|
- skip: 0,
|
|
|
- limit: 8
|
|
|
- }, {
|
|
|
- showloading: true
|
|
|
- })
|
|
|
- this.cardObj = mycard
|
|
|
- this.visitorCount = myVisitorList.total
|
|
|
- myVisitorList.items.forEach((arr, index) => {
|
|
|
- if (arr.head_img) { this.headerList.push(arr.head_img) } else { this.headerList.push(require('../../static/images/userimg.png')) }
|
|
|
- })
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ // if (uni.getStorageSync(USER_INFO)) {
|
|
|
+ // var user = uni.getStorageSync(USER_INFO)
|
|
|
+ // if (id != null && id != '') {
|
|
|
+ // this.id = id
|
|
|
+ // const card = await request('uni-card', 'getCard', {
|
|
|
+ // id,
|
|
|
+ // uid: user.id
|
|
|
+ // }, {
|
|
|
+ // showloading: true
|
|
|
+ // })
|
|
|
+ // if (card._id == '') {
|
|
|
+ // this.getDefault()
|
|
|
+ // } else {
|
|
|
+ // const visitorList = await request('uni-card', 'getVisitorList', {
|
|
|
+ // card_id: id,
|
|
|
+ // skip: 0,
|
|
|
+ // limit: 8
|
|
|
+ // }, {
|
|
|
+ // showloading: true
|
|
|
+ // })
|
|
|
+ // this.cardObj = card
|
|
|
+ // this.visitorCount = visitorList.total
|
|
|
+ // visitorList.items.forEach((arr, index) => {
|
|
|
+ // if (arr.head_img) { this.headerList.push(arr.head_img) } else { this.headerList.push(require('../../static/images/userimg.png')) }
|
|
|
+ // })
|
|
|
+ // }
|
|
|
+ // } else {
|
|
|
+ // const mycard = await request('uni-card', 'getMyCard', {
|
|
|
+ // uid: user.id
|
|
|
+ // }, {
|
|
|
+ // showloading: true
|
|
|
+ // })
|
|
|
+ // if (mycard._id == '') {
|
|
|
+ // this.getDefault()
|
|
|
+ // } else {
|
|
|
+ // const myVisitorList = await request('uni-card', 'getMyVisitorList', {
|
|
|
+ // uid: user.id,
|
|
|
+ // skip: 0,
|
|
|
+ // limit: 8
|
|
|
+ // }, {
|
|
|
+ // showloading: true
|
|
|
+ // })
|
|
|
+ // this.cardObj = mycard
|
|
|
+ // this.visitorCount = myVisitorList.total
|
|
|
+ // myVisitorList.items.forEach((arr, index) => {
|
|
|
+ // if (arr.head_img) { this.headerList.push(arr.head_img) } else { this.headerList.push(require('../../static/images/userimg.png')) }
|
|
|
+ // })
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // }
|
|
|
},
|
|
|
onShareAppMessage(res) {
|
|
|
if (this.id == '' || this.id == null) {
|
|
@@ -257,334 +255,330 @@ export default {
|
|
|
}
|
|
|
</script>
|
|
|
|
|
|
-<style>
|
|
|
-page {
|
|
|
- background: #f7f7f7;
|
|
|
-}
|
|
|
-
|
|
|
-.content {
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
-}
|
|
|
-
|
|
|
-.content-box {
|
|
|
- width: 100%;
|
|
|
+<style lang="less" scoped>
|
|
|
+.index-container {
|
|
|
+ min-height: 100vh;
|
|
|
+ padding: 0 0 120rpx;
|
|
|
+ background-color: #fefefe;
|
|
|
box-sizing: border-box;
|
|
|
- padding: 0 5%;
|
|
|
-}
|
|
|
|
|
|
-.content-box .top-main-box {
|
|
|
- width: 100%;
|
|
|
- box-sizing: border-box;
|
|
|
- border-radius: 15rpx;
|
|
|
- height: 52vw;
|
|
|
- overflow: hidden;
|
|
|
- position: relative;
|
|
|
- box-shadow: 0px 0px 10px #cccccc;
|
|
|
-}
|
|
|
+ .content-box {
|
|
|
+ width: 100%;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding: 0 5%;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-main-box .zzbg {
|
|
|
- width: 100%;
|
|
|
- position: absolute;
|
|
|
- top: 0;
|
|
|
- left: 0;
|
|
|
- background: rgba(139, 139, 139, 0.5);
|
|
|
- z-index: 1;
|
|
|
-}
|
|
|
+ .content-box .top-main-box {
|
|
|
+ width: 100%;
|
|
|
+ box-sizing: border-box;
|
|
|
+ border-radius: 15rpx;
|
|
|
+ height: 52vw;
|
|
|
+ overflow: hidden;
|
|
|
+ position: relative;
|
|
|
+ box-shadow: 0px 0px 10px #cccccc;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-main-box .mpimg {
|
|
|
- width: 100%;
|
|
|
-}
|
|
|
+ .content-box .top-main-box .zzbg {
|
|
|
+ width: 100%;
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ background: rgba(139, 139, 139, 0.5);
|
|
|
+ z-index: 1;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-main-box .topmain {
|
|
|
- width: 100%;
|
|
|
- box-sizing: border-box;
|
|
|
- padding: 40rpx 5%;
|
|
|
- display: flex;
|
|
|
- align-items: flex-start;
|
|
|
- position: relative;
|
|
|
- z-index: 4;
|
|
|
-}
|
|
|
+ .content-box .top-main-box .mpimg {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-main-box .topmain .leftimg {
|
|
|
- width: 150rpx;
|
|
|
- height: 150rpx;
|
|
|
- border-radius: 15rpx;
|
|
|
- overflow: hidden;
|
|
|
-}
|
|
|
+ .content-box .top-main-box .topmain {
|
|
|
+ width: 100%;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding: 40rpx 5%;
|
|
|
+ display: flex;
|
|
|
+ align-items: flex-start;
|
|
|
+ position: relative;
|
|
|
+ z-index: 4;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-main-box .topmain .leftimg .tximg {
|
|
|
- width: 100%;
|
|
|
-}
|
|
|
+ .content-box .top-main-box .topmain .leftimg {
|
|
|
+ width: 150rpx;
|
|
|
+ height: 150rpx;
|
|
|
+ border-radius: 15rpx;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-main-box .topmain .rightcont {
|
|
|
- color: #fff;
|
|
|
- flex: 1;
|
|
|
- box-sizing: border-box;
|
|
|
- padding-left: 25rpx;
|
|
|
-}
|
|
|
+ .content-box .top-main-box .topmain .leftimg .tximg {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-main-box .topmain .rightcont .name {
|
|
|
- font-size: 42rpx;
|
|
|
- padding-bottom: 10rpx;
|
|
|
-}
|
|
|
+ .content-box .top-main-box .topmain .rightcont {
|
|
|
+ color: #fff;
|
|
|
+ flex: 1;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding-left: 25rpx;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-main-box .topmain .rightcont .tip,
|
|
|
-.content-box .top-main-box .topmain .rightcont .tipa {
|
|
|
- font-size: 34rpx;
|
|
|
- text-shadow: 1px 1px 1px #000;
|
|
|
-}
|
|
|
+ .content-box .top-main-box .topmain .rightcont .name {
|
|
|
+ font-size: 42rpx;
|
|
|
+ padding-bottom: 10rpx;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-main-box .btnmain {
|
|
|
- width: 100%;
|
|
|
- position: absolute;
|
|
|
- left: 0;
|
|
|
- bottom: 0px;
|
|
|
- z-index: 5;
|
|
|
- box-sizing: border-box;
|
|
|
- padding: 25rpx 5%;
|
|
|
- background: #fff;
|
|
|
- display: inline;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-between;
|
|
|
- text-align: left;
|
|
|
-}
|
|
|
+ .content-box .top-main-box .topmain .rightcont .tip,
|
|
|
+ .content-box .top-main-box .topmain .rightcont .tipa {
|
|
|
+ font-size: 34rpx;
|
|
|
+ text-shadow: 1px 1px 1px #000;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-main-box .btnmain view {
|
|
|
- float: left;
|
|
|
-}
|
|
|
+ .content-box .top-main-box .btnmain {
|
|
|
+ width: 100%;
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ bottom: 0px;
|
|
|
+ z-index: 5;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding: 25rpx 5%;
|
|
|
+ background: #fff;
|
|
|
+ display: inline;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ text-align: left;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-main-box .btnmain text {
|
|
|
- font-size: 24rpx;
|
|
|
- color: #333333;
|
|
|
- padding-left: 10rpx;
|
|
|
- float: left;
|
|
|
-}
|
|
|
+ .content-box .top-main-box .btnmain view {
|
|
|
+ float: left;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-maina {
|
|
|
- width: 100%;
|
|
|
- box-sizing: border-box;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-between;
|
|
|
- margin: 20rpx auto;
|
|
|
-}
|
|
|
+ .content-box .top-main-box .btnmain text {
|
|
|
+ font-size: 24rpx;
|
|
|
+ color: #333333;
|
|
|
+ padding-left: 10rpx;
|
|
|
+ float: left;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-maina view {
|
|
|
- width: 48%;
|
|
|
- border-radius: 15rpx;
|
|
|
- text-align: center;
|
|
|
- padding: 25rpx 0;
|
|
|
- font-size: 18px;
|
|
|
-}
|
|
|
+ .content-box .top-maina {
|
|
|
+ width: 100%;
|
|
|
+ box-sizing: border-box;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ margin: 20rpx auto;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-maina .left {
|
|
|
- border: 1px solid #007AFF;
|
|
|
- color: #007AFF;
|
|
|
- width: 48%;
|
|
|
-}
|
|
|
+ .content-box .top-maina view {
|
|
|
+ width: 48%;
|
|
|
+ border-radius: 15rpx;
|
|
|
+ text-align: center;
|
|
|
+ padding: 25rpx 0;
|
|
|
+ font-size: 18px;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-maina .right {
|
|
|
- background: #007AFF;
|
|
|
- border: 1px solid #007AFF;
|
|
|
- color: #fff;
|
|
|
- width: 48%;
|
|
|
-}
|
|
|
+ .content-box .top-maina .left {
|
|
|
+ border: 1px solid #007AFF;
|
|
|
+ color: #007AFF;
|
|
|
+ width: 48%;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-mainb {
|
|
|
- width: 100%;
|
|
|
- overflow: scroll;
|
|
|
- padding: 15rpx 0;
|
|
|
- overflow-x: hidden;
|
|
|
-}
|
|
|
+ .content-box .top-maina .right {
|
|
|
+ background: #007AFF;
|
|
|
+ border: 1px solid #007AFF;
|
|
|
+ color: #fff;
|
|
|
+ width: 48%;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-mainb .conta {
|
|
|
- width: 100%;
|
|
|
- overflow-x: auto;
|
|
|
- word-break: keep-all;
|
|
|
- /* 不换行 */
|
|
|
- white-space: nowrap;
|
|
|
- /* 不换行 */
|
|
|
- padding-bottom: 20rpx;
|
|
|
-}
|
|
|
+ .content-box .top-mainb {
|
|
|
+ width: 100%;
|
|
|
+ overflow: scroll;
|
|
|
+ padding: 15rpx 0;
|
|
|
+ overflow-x: hidden;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-mainb .conta .cont {
|
|
|
- display: inline-block;
|
|
|
- margin-right: 20rpx;
|
|
|
- background: #fff;
|
|
|
- box-shadow: 0px 0px 8px #cccccc;
|
|
|
- border-radius: 10rpx;
|
|
|
- overflow: hidden;
|
|
|
-}
|
|
|
+ .content-box .top-mainb .conta {
|
|
|
+ width: 100%;
|
|
|
+ overflow-x: auto;
|
|
|
+ word-break: keep-all;
|
|
|
+ /* 不换行 */
|
|
|
+ white-space: nowrap;
|
|
|
+ /* 不换行 */
|
|
|
+ padding-bottom: 20rpx;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-mainb .conta .cont .box {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-between;
|
|
|
- box-sizing: border-box;
|
|
|
- padding: 15rpx 20rpx;
|
|
|
-}
|
|
|
+ .content-box .top-mainb .conta .cont {
|
|
|
+ display: inline-block;
|
|
|
+ margin-right: 20rpx;
|
|
|
+ background: #fff;
|
|
|
+ box-shadow: 0px 0px 8px #cccccc;
|
|
|
+ border-radius: 10rpx;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-mainb .conta .cont .box image {
|
|
|
- width: 80rpx;
|
|
|
- height: 80rpx;
|
|
|
-}
|
|
|
+ .content-box .top-mainb .conta .cont .box {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding: 15rpx 20rpx;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-mainb .conta .cont .box .right {
|
|
|
- flex: 1;
|
|
|
- box-sizing: border-box;
|
|
|
- padding-left: 10rpx;
|
|
|
-}
|
|
|
+ .content-box .top-mainb .conta .cont .box image {
|
|
|
+ width: 80rpx;
|
|
|
+ height: 80rpx;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-mainb .conta .cont .box .right text {
|
|
|
- display: block;
|
|
|
- font-size: 30rpx;
|
|
|
-}
|
|
|
+ .content-box .top-mainb .conta .cont .box .right {
|
|
|
+ flex: 1;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding-left: 10rpx;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-mainb .conta .cont .box .right .tit {
|
|
|
- font-size: 34rpx;
|
|
|
-}
|
|
|
+ .content-box .top-mainb .conta .cont .box .right text {
|
|
|
+ display: block;
|
|
|
+ font-size: 30rpx;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-mainc {
|
|
|
- width: 100%;
|
|
|
- box-sizing: border-box;
|
|
|
- padding: 20rpx 10rpx;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-between;
|
|
|
- margin: 10rpx auto;
|
|
|
- background: #fff;
|
|
|
-}
|
|
|
+ .content-box .top-mainb .conta .cont .box .right .tit {
|
|
|
+ font-size: 34rpx;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-mainc .left {
|
|
|
- flex: 1;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
-}
|
|
|
+ .content-box .top-mainc {
|
|
|
+ width: 100%;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding: 20rpx 10rpx;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ margin: 10rpx auto;
|
|
|
+ background: #fff;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-mainc .left text {
|
|
|
- font-size: 28rpx;
|
|
|
- color: #555555;
|
|
|
-}
|
|
|
+ .content-box .top-mainc .left {
|
|
|
+ flex: 1;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-mainc .left image {
|
|
|
- width: 60rpx;
|
|
|
- height: 60rpx;
|
|
|
- margin-right: 5rpx;
|
|
|
- border-radius: 10rpx;
|
|
|
-}
|
|
|
+ .content-box .top-mainc .left text {
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #555555;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-mainc .right {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: space-between;
|
|
|
-}
|
|
|
+ .content-box .top-mainc .left image {
|
|
|
+ width: 60rpx;
|
|
|
+ height: 60rpx;
|
|
|
+ margin-right: 5rpx;
|
|
|
+ border-radius: 10rpx;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-mainc .right text {
|
|
|
- font-size: 28rpx;
|
|
|
- color: #555555;
|
|
|
- padding-right: 10rpx;
|
|
|
-}
|
|
|
+ .content-box .top-mainc .right {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-mainc .right image {
|
|
|
- width: 40rpx;
|
|
|
- height: 40rpx;
|
|
|
-}
|
|
|
+ .content-box .top-mainc .right text {
|
|
|
+ font-size: 28rpx;
|
|
|
+ color: #555555;
|
|
|
+ padding-right: 10rpx;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-main-tit {
|
|
|
- width: 100%;
|
|
|
- box-sizing: border-box;
|
|
|
- padding: 20rpx 10rpx;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
-}
|
|
|
+ .content-box .top-mainc .right image {
|
|
|
+ width: 40rpx;
|
|
|
+ height: 40rpx;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-main-tit image {
|
|
|
- width: 60rpx;
|
|
|
- height: 60rpx;
|
|
|
-}
|
|
|
+ .content-box .top-main-tit {
|
|
|
+ width: 100%;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding: 20rpx 10rpx;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-main-tit text {
|
|
|
- color: #333;
|
|
|
- font-size: 18px;
|
|
|
- padding-left: 10rpx;
|
|
|
-}
|
|
|
+ .content-box .top-main-tit image {
|
|
|
+ width: 60rpx;
|
|
|
+ height: 60rpx;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-maind {
|
|
|
- width: 100%;
|
|
|
- box-sizing: border-box;
|
|
|
- padding: 40rpx 5%;
|
|
|
- background: #fff;
|
|
|
- box-shadow: 0px 0px 8px #cccccc;
|
|
|
-}
|
|
|
+ .content-box .top-main-tit text {
|
|
|
+ color: #333;
|
|
|
+ font-size: 18px;
|
|
|
+ padding-left: 10rpx;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-maind .topmain {
|
|
|
- width: 100%;
|
|
|
- box-sizing: border-box;
|
|
|
- display: flex;
|
|
|
- align-items: flex-start;
|
|
|
-}
|
|
|
+ .content-box .top-maind {
|
|
|
+ width: 100%;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding: 40rpx 5%;
|
|
|
+ background: #fff;
|
|
|
+ box-shadow: 0px 0px 8px #cccccc;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-maind .topmain .leftimg {
|
|
|
- width: 120rpx;
|
|
|
- height: 120rpx;
|
|
|
- border-radius: 15rpx;
|
|
|
- overflow: hidden;
|
|
|
-}
|
|
|
+ .content-box .top-maind .topmain {
|
|
|
+ width: 100%;
|
|
|
+ box-sizing: border-box;
|
|
|
+ display: flex;
|
|
|
+ align-items: flex-start;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-maind .topmain .leftimg .tximg {
|
|
|
- width: 100%;
|
|
|
-}
|
|
|
+ .content-box .top-maind .topmain .leftimg {
|
|
|
+ width: 120rpx;
|
|
|
+ height: 120rpx;
|
|
|
+ border-radius: 15rpx;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-maind .topmain .rightcont {
|
|
|
- color: #555;
|
|
|
- flex: 1;
|
|
|
- box-sizing: border-box;
|
|
|
- padding-left: 25rpx;
|
|
|
- line-height: 42rpx;
|
|
|
- font-size: 28rpx;
|
|
|
-}
|
|
|
+ .content-box .top-maind .topmain .leftimg .tximg {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-maind .toptip {
|
|
|
- width: 100%;
|
|
|
-}
|
|
|
+ .content-box .top-maind .topmain .rightcont {
|
|
|
+ color: #555;
|
|
|
+ flex: 1;
|
|
|
+ box-sizing: border-box;
|
|
|
+ padding-left: 25rpx;
|
|
|
+ line-height: 42rpx;
|
|
|
+ font-size: 28rpx;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-maind .toptip .box {
|
|
|
- display: inline-block;
|
|
|
- margin-top: 25rpx;
|
|
|
- padding: 10rpx 15rpx;
|
|
|
- background: #e6e6e6;
|
|
|
- border-radius: 10rpx;
|
|
|
- overflow: hidden;
|
|
|
- margin-right: 20rpx;
|
|
|
-}
|
|
|
+ .content-box .top-maind .toptip {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-maind .toptip .box image {
|
|
|
- width: 30rpx;
|
|
|
- height: 30rpx;
|
|
|
-}
|
|
|
+ .content-box .top-maind .toptip .box {
|
|
|
+ display: inline-block;
|
|
|
+ margin-top: 25rpx;
|
|
|
+ padding: 10rpx 15rpx;
|
|
|
+ background: #e6e6e6;
|
|
|
+ border-radius: 10rpx;
|
|
|
+ overflow: hidden;
|
|
|
+ margin-right: 20rpx;
|
|
|
+ }
|
|
|
|
|
|
-.content-box .top-maind .toptip .box text {
|
|
|
- font-size: 28rpx;
|
|
|
- padding-left: 10rpx;
|
|
|
-}
|
|
|
+ .content-box .top-maind .toptip .box image {
|
|
|
+ width: 30rpx;
|
|
|
+ height: 30rpx;
|
|
|
+ }
|
|
|
|
|
|
-.bottombtn {
|
|
|
- position: fixed;
|
|
|
- bottom: 0;
|
|
|
- width: 100%;
|
|
|
- height: 60px;
|
|
|
- background: #007AFF;
|
|
|
- color: #fff;
|
|
|
- line-height: 60px;
|
|
|
- text-align: center;
|
|
|
-}
|
|
|
+ .content-box .top-maind .toptip .box text {
|
|
|
+ font-size: 28rpx;
|
|
|
+ padding-left: 10rpx;
|
|
|
+ }
|
|
|
|
|
|
-.bottom-block {
|
|
|
- display: block;
|
|
|
- width: 100%;
|
|
|
- height: 80px;
|
|
|
+ .bottombtn {
|
|
|
+ position: fixed;
|
|
|
+ bottom: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 60px;
|
|
|
+ background: #007AFF;
|
|
|
+ color: #fff;
|
|
|
+ line-height: 60px;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .bottom-block {
|
|
|
+ display: block;
|
|
|
+ width: 100%;
|
|
|
+ height: 80px;
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|