Browse Source

auto commit

gcz 3 years ago
parent
commit
12d64ce39f

+ 2 - 2
pages/attence/attence.vue

@@ -1,7 +1,7 @@
 <template>
 	<view>
 		<u-navbar 
-		title="城市智慧停车有限公司" 
+		title="考勤" 
 		title-color="#fff" 
 		:custom-back="customBack" 
 		:border-bottom="false"
@@ -296,6 +296,6 @@
 	}
 </script>
 
-<style lang="scss" scoped>
+<style lang="scss">
 	@import  './attence.scss'
 </style>

+ 1 - 1
pages/getcarno/getcarno.vue

@@ -123,6 +123,6 @@
 	}
 </script>
 
-<style lang="scss" scoped>
+<style lang="scss">
 	@import "./getcarno.scss";
 </style>

+ 3 - 3
pages/index/index.vue

@@ -62,7 +62,7 @@
 					<view class="feature-item-text">密码修改</view>
 				</view> -->
 				<view class="feature-item" @click="onPrint()">
-					<u-image width="120rpx" height="120rpx" src="/static/img/index-feature-10.png"></u-image>
+					<u-image width="160rpx" height="160rpx" src="/static/img/index-feature-10.png"></u-image>
 					<view class="feature-item-text">车主查询</view>
 				</view>	
 				<view class="feature-item" @click="openPage('pages/performance/performance')">
@@ -78,7 +78,7 @@
 					<view class="feature-item-text">退出登录</view>
 				</view>	 -->			
 			</view>
-			<u-bottom color="#949494"></u-bottom>
+			<u-bottom color="#949494" :static="true"></u-bottom>
 		</view>
 		
 		<u-toast ref="uToast" />
@@ -217,6 +217,6 @@
 	}
 </script>
 
-<style lang="scss" scoped>
+<style lang="scss" >
 	@import "./index.scss";
 </style>

+ 1 - 1
pages/owelist/owelist.vue

@@ -81,6 +81,6 @@
 	}
 </script>
 
-<style lang="scss" scoped>
+<style lang="scss">
 	@import  './owelist.scss'
 </style>

+ 1 - 1
pages/ownersquery/ownersquery.vue

@@ -136,6 +136,6 @@
 	}
 </script>
 
-<style lang="scss" scoped>
+<style lang="scss">
 	@import "./ownersquery.scss";
 </style>

+ 1 - 1
pages/performance/performance.vue

@@ -127,6 +127,6 @@
 	}
 </script>
 
-<style lang="scss" scoped>
+<style lang="scss">
 	@import  './performance.scss'
 </style>

+ 1 - 1
pages/setting/setting.vue

@@ -96,6 +96,6 @@
 	}
 </script>
 
-<style lang="scss" scoped>
+<style lang="scss">
 	@import  './setting.scss'
 </style>

+ 10 - 1
uview-ui/components/u-bottom/u-bottom.vue

@@ -1,5 +1,5 @@
 <template>
-	<view class="bottom-wrap" :style="[{customStyle,'color': color || 'rgba(255, 255, 255, 0.5)'}]">
+	<view class="bottom-wrap" :class="{'bottom-wrap-static':static}" :style="[{customStyle,'color': color || 'rgba(255, 255, 255, 0.5)'}]">
 		<view v-if="!$slots.content" class="bottom" :style="[customStyle]">
 			<view class="bottom-p">如您有任何问题,欢迎拨打服务热线</view>
 			<view class="bottom-p">400-5555-8888</view>
@@ -18,6 +18,10 @@
 					return {};
 				}
 			},
+			static:{
+				type: Boolean,
+				default: false
+			},
 			color:{
 				type: String,
 				default: ''
@@ -41,5 +45,10 @@
 				margin-top: 10rpx;
 			}
 		}
+		&-static{
+			.bottom{
+				position: static;
+			}
+		}
 	}
 </style>