1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <script>
- export default {
- onLaunch: function() {
- console.warn('当前组件仅支持 uni_modules 目录结构 ,请升级 HBuilderX 到 3.1.0 版本以上!')
- console.log('App Launch')
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
- /*每个页面公共css */
- @import "@/uni_modules/uview-ui/index.scss";
- @import '@/uni_modules/uni-scss/index.scss';
- @import "colorui/main.css";
- @import '@/static/styles/index.scss';
- @import '@/style/icons/iconfont.css';
- @import '@/style/icons/iconfont-colors.css';
- @import '@/style/mercharts_icon/iconfont.css';
- @import '@/style/mercharts_icon/iconfont_colors.css';
- // 设置整个项目的背景色
- page {
- background-color: #F2F6F9;
- }
- .content{
- padding-bottom:150rpx;
- }
- .wrap{
- background:#fff;
- border-radius:20rpx;
- margin:20rpx;
- padding:20rpx;
- }
- .caution{
- color:red;
- }
- .footer,.mercharts_footer{
- position:fixed;
- bottom:0;
- left:0;
- background:#fff;
- width:100%;
- z-index:10;
- padding:30rpx 0;
- .submit{
- background:#f8bc31;
- color:#fff;
- width:90%;
- }
- }
- .mercharts_footer{
- .submit{
- background:#5F7DE9;
- }
- }
- .flex{
- display:flex;
- }
- .justify-space-between{
- justify-content: space-between;
- }
- .align-item-center{
- align-items: center;
- }
- .detailedAddress{
- width:600rpx;
- }
- .merchants_button,.merchants_unable_button,.merchants_default_button,.merchants_caution_button{
- background:#5F7DE9;
- color:#fff;
- padding:5rpx 20rpx;
- border-radius: 10rpx;
- }
- .merchants_default_button{
- background:#fff;
- color:#000;
- border:2rpx solid #5F7DE9;
- }
- .merchants_caution_button{
- background:red;
- }
- .merchants_unable_button{
- background:#999;
- }
- </style>
|