123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <script>
- export default {
- // 此处globalData为了演示其作用,不是uView框架的一部分
- globalData: {
- // redirect_uri: 'http://dwbszbs.dev.xmnk.cn',
- redirect_uri:'https://zbs.xueyousuohuo.cn',
- // appid: 'wx5224793b7dc7f7b7',
- appid: 'wx5eeae5f7b832b782', //大卫博士
- wxURL: 'https://open.weixin.qq.com/connect/oauth2/authorize',
- jinbiAudio: 'http://dwbszbs.dev.xmnk.cn/storage/good/2024-11-06/21wUbDdwzJC81UQEFJt0yLTZcswq6Q1t.mp3',
- hjAudio: 'http://dwbszbs.dev.xmnk.cn/storage/good/2024-11-06/gMlFSFkuwox7CrdtOBoWLFBS3D2u7Q07.MP3'
- },
- onLaunch() {
- },
- }
- </script>
- <style lang="scss">
- body {
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- }
- @import "uview-ui/index.scss";
- @import "common/demo.scss";
- .empty_image {
- margin-top: 10vh;
- }
- .flexV {
- display: flex;
- align-items: center;
- }
- .flexC {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .flexS {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- }
- .flexSS {
- display: flex;
- align-items: flex-start;
- justify-content: flex-start;
- }
- .flexE {
- display: flex;
- align-items: center;
- justify-content: flex-end;
- }
- .flexA {
- display: flex;
- justify-content: space-around;
- align-items: center;
- }
- .flexB {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .flexBS {
- display: flex;
- justify-content: space-between;
- align-items: flex-start;
- }
- .flexCC {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .bottom {
- position: fixed;
- width: 100%;
- left: 0;
- bottom: 0;
- padding: 15px 0;
- background-color: #ffffff;
- .bottom-btn {
- border-radius: 22px;
- height: 44px;
- margin: 0 12px;
- text-align: center;
- color: #ffffff;
- font-size: 16px;
- line-height: 44px;
- background: linear-gradient(90deg, #FFB800 0%, #FE4815 100%);
- }
- }
- </style>
|