3 次代码提交 d4c2127428 ... 4f61f67109

作者 SHA1 备注 提交日期
  liweimin 4f61f67109 Merge branch 'dev' of http://gogs.ywtinfo.com/chenjunkun/th_net_hospital_ali_mp into dev 2 年之前
  liweimin 3c67ee2d81 fix: 首页显示医院全称,隐藏下面按钮 2 年之前
  liweimin 1fc8eec86a fix: 切换就诊人眼镜修改为x,预约挂号科室分行显示 2 年之前

+ 20 - 0
antbuilder/industry/hospitalV2/components/components/popup-container/index.acss

@@ -18,3 +18,23 @@
 .hospital-new-component .popup-custom-container .scroll-view {
   max-height: 70vh;
 }
+.removes {
+  position: absolute;
+  right: 0;
+  top: 0;
+  color: #999;
+  cursor: pointer;
+  padding: 5px 10px;
+}
+ 
+.removes::before {
+  content: "\2716";
+  display: inline-block;
+  transition: all 0.4s;
+  transform: rotate(0deg);
+}
+ 
+.removes:hover::before {
+  color: #2c3e50;
+  transform: rotate(90deg);
+}

+ 5 - 2
antbuilder/industry/hospitalV2/components/components/popup-container/index.axml

@@ -12,11 +12,14 @@
           {{ title }}
         </view>
         <view onTap="onPopupClose">
-          <am-icon
+          <!-- <am-icon
             size="22"
             type="close"
             color="#d8d8d8"
-          />
+          /> -->
+          <view class="removes">
+            
+          </view>
         </view>
       </view>
       <scroll-view scroll-y="true" disableScroll="{{ false }}" class="scroll-view">

+ 1 - 0
antbuilder/industry/hospitalV2/components/index-head/indexHead.acss

@@ -7,6 +7,7 @@
   width: 55%;
   font-size: 36rpx;
   font-weight: bold;
+  text-align: center;
 }
 .hospital-new-component .index-head-container {
   position: relative;

+ 3 - 3
antbuilder/industry/hospitalV2/components/index-head/indexHead.axml

@@ -9,7 +9,7 @@
     onCallback="onCallback"
     background="transparent"
   >
-    <text class="index-head-title" number-of-lines="1">
+    <text class="index-head-title" number-of-lines="2">
       {{ utils.getTitle(componentData) }}
     </text>
   </mas-adc-nav-bar>
@@ -24,11 +24,11 @@
       class="index-head"
       style="padding-top: {{ navHeight }}px"
     >
-      <view class="index-head-desc" onTap="goToDetail">
+      <!-- <view class="index-head-desc" onTap="goToDetail">
         <text class="index-head-desc-txt" >
           {{ utils.getSubTitle(componentData) }}
         </text>
-      </view>
+      </view> -->
       <!-- 消息通知 -->
       <view
         class="notification-container"

+ 1 - 0
antbuilder/industry/hospitalV2/components/select-department/tree-select/tree-item/index.acss

@@ -18,6 +18,7 @@
 }
 .hospital-new-component .tree-select-second .row-text {
   flex: 1;
+  text-align: center;
 }
 .hospital-new-component .tree-select-second .second-last-items {
   height: 0;

+ 2 - 2
antbuilder/industry/hospitalV2/components/select-department/tree-select/tree-item/index.axml

@@ -2,7 +2,7 @@
 <view class="tree-select-second-item{{ open ? ' open' : '' }}">
   <view class="second-item-row" onTap="onOpen">
     <view class="row-text">
-      <text number-of-lines="1">{{ item.name }}</text>
+      <text number-of-lines="5">{{ item.name }}</text>
     </view>
     <view class="arrow">
       <am-icon type="right" color="#999" size="16" />
@@ -16,7 +16,7 @@
       a:for="{{ h.getItems(item, lastCache) }}"
     >
       <view class="row-text">
-        <text number-of-lines="1">{{ item.name }}</text>
+        <text number-of-lines="5">{{ item.name }}</text>
       </view>
       <view class="arrow">
         <am-icon type="right" color="#999" size="16" />