f91f43a5 by simon

默认提交

1 parent 8a698e31
...@@ -55,7 +55,7 @@ ...@@ -55,7 +55,7 @@
55 55
56 .btn { 56 .btn {
57 @include btc4(144px, 42px, 16px); 57 @include btc4(144px, 42px, 16px);
58 margin: 36px 36px 36px; 58 margin: 36px 24px 36px;
59 @extend .pointer; 59 @extend .pointer;
60 } 60 }
61 61
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
2 2
3 .container{ 3 .container{
4 font-size: $fontSize-M2; 4 font-size: $fontSize-M2;
5 width: 100%;
5 } 6 }
6 7
7 .cell-group { 8 .cell-group {
......
...@@ -2,11 +2,11 @@ ...@@ -2,11 +2,11 @@
2 <div class="container"> 2 <div class="container">
3 <!-- 登陆/注册提示 --> 3 <!-- 登陆/注册提示 -->
4 <auth @onLogin="userLogin" @onLogout="userLogout" :checkProfile="true" :tipModel="'m1'" ref="auth"></auth> 4 <auth @onLogin="userLogin" @onLogout="userLogout" :checkProfile="true" :tipModel="'m1'" ref="auth"></auth>
5 <div v-if="showForm"> 5 <!-- <div v-if="showForm"> -->
6 <!-- 保单列表 --> 6 <!-- 保单列表 -->
7 <e-correspondence-head-list :multiSelectable="false" @onSelect="handlePolicySelect"></e-correspondence-head-list> 7 <e-correspondence-head-list v-if="showForm" :multiSelectable="false" @onSelect="handlePolicySelect"></e-correspondence-head-list>
8 8
9 </div> 9 <!-- </div> -->
10 </div> 10 </div>
11 </template> 11 </template>
12 12
......
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
3 overflow-x: auto; 3 overflow-x: auto;
4 margin-bottom: 24px; 4 margin-bottom: 24px;
5 font-size: $fontSize-M2; 5 font-size: $fontSize-M2;
6 // width: 100%;
6 } 7 }
7 8
8 .hide { 9 .hide {
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
4 <auth @onLogin="userLogin" @onLogout="userLogout" :checkProfile="true" :tipModel="'m1'" ref="auth"></auth> 4 <auth @onLogin="userLogin" @onLogout="userLogout" :checkProfile="true" :tipModel="'m1'" ref="auth"></auth>
5 <div v-if="showForm"> 5 <div v-if="showForm">
6 <!-- 保单列表 --> 6 <!-- 保单列表 -->
7 <policy-head-list :multiSelectable="false" @onSelect="handlePolicySelect"></policy-head-list> 7 <policy-head-list style="width:100%;" :multiSelectable="false" @onSelect="handlePolicySelect"></policy-head-list>
8 8
9 <!-- 保单详情 --> 9 <!-- 保单详情 -->
10 <template v-if="dataForm"> 10 <template v-if="dataForm">
......
...@@ -112,7 +112,7 @@ ...@@ -112,7 +112,7 @@
112 112
113 .right-panel { 113 .right-panel {
114 margin: 0 auto; 114 margin: 0 auto;
115 width: auto; 115 // width: auto;
116 } 116 }
117 } 117 }
118 118
......
...@@ -142,7 +142,7 @@ ...@@ -142,7 +142,7 @@
142 height: 15px; 142 height: 15px;
143 pointer-events: none; 143 pointer-events: none;
144 cursor: default; 144 cursor: default;
145 z-index: 1000; 145 z-index: 900;
146 } 146 }
147 147
148 .eye { 148 .eye {
......