xiaohaizhao 1 年之前
父节点
当前提交
88fcd22bab
共有 4 个文件被更改,包括 18 次插入4 次删除
  1. 6 2
      components/My_form.vue
  2. 1 1
      pages/facility/index.vue
  3. 6 1
      pages/login/modules/account.vue
  4. 5 0
      pages/login/modules/phone.vue

+ 6 - 2
components/My_form.vue

@@ -51,7 +51,7 @@
                 </view>
 
                 <view v-else-if="item.type == 'file'" class="value-box" style="justify-content: flex-start;">
-                    <view v-if="!item.value.length" style="font-size: 14px;">
+                    <view v-if="!item.value.length" class="iconfont" >
                         暂未上传附件
                     </view>
                     <My_Files v-else :ref="'My_Files' + index" :aDeletion="item.aDeletion"
@@ -427,6 +427,10 @@ export default {
                 font-size: 14px;
             }
 
+            .iconfont{
+                font-size: 14px;
+            }
+
             .textarea {
                 padding: 0 !important;
                 margin: 0 !important;
@@ -455,7 +459,7 @@ export default {
 
                 .iconfont {
                     margin-left: 5px;
-                    font-size: 12px;
+                    font-size: 12px !important;
                 }
             }
         }

+ 1 - 1
pages/facility/index.vue

@@ -110,7 +110,7 @@ export default {
                 this.markers = res.data.filter(v => v.latitude).map(v => {
                     v.id = v.w_deviceid - 0;
                     v.title = v.devicename;
-                    if (this.usePort == 'h5') v.iconPath = require("../../static/img/icon.png");
+                    if (this.usePort == 'h5') v.iconPath = require("../../static/img/location.png");
                     v.customCallout = { display: 'BYCLICK', anchorY: -10 }
                     return v
                 });

+ 6 - 1
pages/login/modules/account.vue

@@ -119,7 +119,8 @@ export default {
 		font-size: 14px;
 	}
 
-	.iconfont{
+	.iconfont {
+		font-size: 12px;
 		padding: 0 10px;
 		color: #052E5D;
 	}
@@ -203,4 +204,8 @@ input {
 		padding-right: 5px;
 	}
 }
+
+/deep/.u-button__loading-text {
+	font-size: 14px !important;
+}
 </style>

+ 5 - 0
pages/login/modules/phone.vue

@@ -143,6 +143,7 @@ export default {
 	}
 
 	.iconfont {
+		font-size: 12px;
 		padding: 0 10px;
 		color: #052E5D;
 	}
@@ -220,4 +221,8 @@ input {
 		padding-right: 5px;
 	}
 }
+
+/deep/.u-button__loading-text {
+	font-size: 14px !important;
+}
 </style>