diff --git a/App.vue b/App.vue index edcc990..bba7907 100644 --- a/App.vue +++ b/App.vue @@ -6,6 +6,10 @@ lng:'' ,// 公司地址经度 hostapi:'https://building.scdxtc.cn' // 域名配置 }, + onLaunch() { + // uni.removeStorageSync('isRead'); + // uni.removeStorageSync('ifNotice'); + }, }; diff --git a/commons/base.css b/commons/base.css index 89af059..42e71e6 100644 --- a/commons/base.css +++ b/commons/base.css @@ -43,6 +43,7 @@ .bg-red{ background-color: #ec0707;} .bg-orange{ background-color: #ec7807;} .bg-green{ background-color: #25a63b;} +.bg-99{ background-color: #999999;} /* 内边距 */ diff --git a/commons/style.css b/commons/style.css index caa7b5e..e4a3232 100644 --- a/commons/style.css +++ b/commons/style.css @@ -40,10 +40,15 @@ page{ margin: 44rpx auto 12rpx; box-shadow: 0 0 22rpx 8rpx rgba(11,66,101,.25); overflow: hidden; -} -.sign-top .sign-btn.finish{ +} +.sign-top .sign-btn.orange{ background-image: linear-gradient(to top,#eb7607,#ffc600); } +.sign-top .sign-btn.green{ + background-image: linear-gradient(to top,#21a53c,#7bbc2b); +} + + .sign-top .sign-btn>text{ line-height: 30rpx; } @@ -207,7 +212,7 @@ page{ display: flex; flex-wrap: wrap; align-items: center; - justify-content: space-between; + justify-content: center; padding: 20rpx 30rpx 30rpx; } @@ -230,8 +235,14 @@ page{ .notick-status .radio-item, .sign-cate .radio-item{ display: flex; - align-items: center; - height: 70rpx; + align-items: center; + width: 205rpx; + height: 70rpx; + margin: 0 10rpx; +} +.notick-status .radio-item:nth-of-type(2n), +.sign-cate .radio-item:nth-of-type(2n){ + justify-content: flex-end; } .notick-status .radio-item>view:first-child, .sign-cate .radio-item>view:first-child{ @@ -391,7 +402,7 @@ page{ border-radius: 5rpx; } .register-information .item .textarea{ - padding: 5rpx 10rpx; + padding: 10rpx 10rpx; height: 186rpx; line-height: 1.6; } @@ -431,13 +442,20 @@ page{ width: 19rpx; height: 14rpx; } + +.register-information .register-btns{ + display: flex; + justify-content: space-between; + align-items: center; + width: calc(100% - 170rpx); + margin: 40rpx 0 2rpx 170rpx; +} -.register-information .submit-btn{ - width: calc(100% - 170rpx); +.register-information .register-btns .btn{ + width: calc(50% - 15rpx); line-height: 80rpx; border-radius: 10rpx; text-align: center; - margin: 26rpx 0 2rpx 170rpx; } .register-information .item .name{ @@ -721,7 +739,26 @@ page{ align-items: center; width: calc(100% - 176rpx); text-align: right; -} +} +.information-from .item .picker-msg{ + position: relative; + overflow: hidden; +} +.information-from .item .picker-msg>picker{ + width: 100%; + height: 100%; + max-height: 40px; + opacity: 0; + position: absolute; + left: 0; + top: 0; + z-index: 1; +} +.information-from .item .msg image{ + width: 88rpx; + height: 66rpx !important; + border-radius: 4rpx; +} .information-from .item .msg>text{ color: #028bfd; @@ -983,6 +1020,12 @@ page{ text-align: right; } +.enter-detail .item .msg image{ + width: 88rpx; + height: 66rpx !important; + border-radius: 4rpx; +} + .director-arrow{ display: flex; align-items: center; diff --git a/components/sign-calendar/sign-calendar.vue b/components/sign-calendar/sign-calendar.vue index 2d73173..6ba2c2b 100644 --- a/components/sign-calendar/sign-calendar.vue +++ b/components/sign-calendar/sign-calendar.vue @@ -1,5 +1,5 @@