张保健 1 年間 前
コミット
07e1984629
共有1 個のファイルを変更した6 個の追加5 個の削除を含む
  1. 6 5
      src/pages/patientSchedule/TbDialog.vue

+ 6 - 5
src/pages/patientSchedule/TbDialog.vue ファイルの表示

@@ -1,6 +1,6 @@
1 1
 <template>
2 2
   <div>
3
-    <div class="Dialog" v-show="!selecting" style="position: relative;">
3
+    <div class="Tb-Dialog" v-show="!selecting" style="position: relative;">
4 4
       <div style="position: absolute;top: 0;left: 0; width: 100%;">
5 5
         <span @click="close()" class="iconfont">&#xe6e9;</span>
6 6
         <p class="name">{{currentPatient.patient.name }}</p>
@@ -150,9 +150,10 @@ export default {
150 150
 </script>
151 151
 
152 152
 <style style="stylesheet/scss" lang="scss" scoped>
153
-  .Dialog{
153
+  .Tb-Dialog{
154 154
     width: 20rem;
155 155
     height: 38rem;
156
+    background: #ebf1f7;
156 157
   }
157 158
   .cell-background{
158 159
     background-color: #1989fa;
@@ -223,15 +224,15 @@ export default {
223 224
   }
224 225
 </style>
225 226
 <style scoped>
226
-  .Dialog >>> .van-tab{
227
+  .Tb-Dialog >>> .van-tab{
227 228
     margin:0 0.8rem !important;
228 229
     font-size: 1rem;
229 230
   }
230
-  .Dialog >>> .van-tab--active{
231
+  .Tb-Dialog >>> .van-tab--active{
231 232
     color: #2196f3;
232 233
     border-bottom: 3px solid #ee0a24;
233 234
   }
234
-  .Dialog >>> .van-sticky--fixed{
235
+  .Tb-Dialog >>> .van-sticky--fixed{
235 236
     top:5rem;
236 237
   }
237 238
 </style>>