|
|
@@ -1,6 +1,9 @@
|
|
|
<template>
|
|
|
<view>
|
|
|
<view class="custom-info">
|
|
|
+ <view class="customer-detail-nav">
|
|
|
+ <text>客户详情</text>
|
|
|
+ </view>
|
|
|
<view class="custom-detail">
|
|
|
<view class="info-card">
|
|
|
<view class="info-item">
|
|
|
@@ -159,10 +162,20 @@ export default {
|
|
|
}
|
|
|
.custom-info{
|
|
|
display:flex;
|
|
|
+ flex-direction: column;
|
|
|
height: 100vh;
|
|
|
|
|
|
+ & .customer-detail-nav {
|
|
|
+ padding: 3upx;
|
|
|
+ font-size: 12upx;
|
|
|
+ background-color: #09C567;
|
|
|
+ color: #FFFFFF;
|
|
|
+ text-align: center;
|
|
|
+ flex-shrink: 0;
|
|
|
+ }
|
|
|
+
|
|
|
& .custom-detail{
|
|
|
- height: 100vh;
|
|
|
+ height: calc(100vh - 20upx);
|
|
|
overflow-y: auto;
|
|
|
border-right:1upx solid #EEEEEE;
|
|
|
flex: 1;
|