12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <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 '@/static/styles/index.scss';
- @import '@/style/icons/iconfont.css';
- @import '@/style/icons/iconfont-colors.css';
- // 设置整个项目的背景色
- page {
- background-color: #f7f4ed;
- }
- .content{
- padding-bottom:150rpx;
- }
- .wrap{
- background:#fff;
- border-radius:20rpx;
- margin:20rpx;
- }
- .caution{
- color:red;
- }
- .footer{
- position:fixed;
- bottom:0;
- left:0;
- background:#fff;
- width:100%;
- z-index:10;
- padding:30rpx 0;
- .submit{
- background:#f8bc31;
- color:#fff;
- width:90%;
- }
- }
- .flex{
- display:flex;
- }
- .justify-space-between{
- justify-content: space-between;
- }
- .align-item-center{
- align-items: center;
- }
- .detailedAddress{
- width:120rpx;
- overflow:hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- -o-text-overflow:ellipsis;
- }
- </style>
|