| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 | <template>	<!-- 经销商基本信息 -->	<view class="whole">		<view class="head">			<view class="behind">				<view class="content">					<view class="content_s">						<view class="title">							<view></view>							<h3>经销商基本信息</h3>						</view>						<view class="information">							<u-field style="margin-top: 5rpx;" v-model="mobile" label-width="10" icon="chat-fill" placeholder="暂无数据" disabled="disabled"></u-field>							<u-field style="margin-top: 5rpx;" v-model="code" label-width="10" icon="chat-fill" placeholder="暂无数据" disabled="disabled"></u-field>							<u-field style="margin-top: 5rpx;" v-model="code_s" label-width="10" icon="chat-fill" placeholder="暂无数据" disabled="disabled"></u-field>						</view>					</view>				</view>			</view>		</view>		<view class="below">			<view class="content">				<view class="content_s">					<view class="title">						<view></view>						<h3>经销商基本信息</h3>					</view>					<view class="information_E">						<image src="../../static/sailun/anyu.png" mode=""></image>						<image src="../../static/sailun/heiqishi.png" mode=""></image>						<image src="../../static/sailun/anyu.png" mode=""></image>						<image src="../../static/sailun/heiqishi.png" mode=""></image>						<image src="../../static/sailun/anyu.png" mode=""></image>						<image src="../../static/sailun/heiqishi.png" mode=""></image>					</view>				</view>			</view>		</view>	</view></template><script>	export default {			data() {				return {					mobile: '经销商名称',					code: '张三',					code_s: '13412336446'				}			}		}</script><style lang="scss" scoped>	.behind {		width: 750rpx;		// height: 462rpx;		height: auto;		background: url(../../static/sailun/behind.png) no-repeat;		background-size: 100% 100%;		background-repeat: no-repeat;		margin-top:-150rpx;		padding-top: 100px;	}	.below{		margin-top: 30rpx;	}	.content {		width: 667rpx;		height: auto;		background: #FFFFFF;		box-shadow: 0px 10px 40px 0px rgba(223, 223, 223, 0.51);		border-radius: 18px;		margin: 0 auto;		padding-top: 30rpx;		margin-top: -10rpx;		padding-bottom: 40rpx;		.content_s {			width: 92%;			// height: 330rpx;			height: auto;			margin: 0 auto;			margin-top: 10rpx;			.information{				margin-top: 10rpx;			}			.information_E{				image{					width: 48%;					height: 100rpx;				}			}			.title {				border-bottom: 1rpx solid #EBEBEB;				padding-bottom: 15rpx;				view {					width: 6px;					height: 20px;					background: #0292FD;					float: left;					margin-right: 10rpx;					margin-top: 5rpx;				}			}		}	}</style>
 |