12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <script>
- export default {
- onLaunch: function() {
- },
- onShow: function() {
-
- },
- onHide: function() {
- },
- methods:{
- getAuth(){
- this.$api.getCurrentAuthCode().then(resp=>{
- uni.setStorageSync('perList',resp.data);
- })
- }
- }
- }
- </script>
- <style lang="scss">
-
-
-
- @import "uview-ui/index.scss";
-
-
-
- page{
- background-color:
- }
-
-
- .hover-class{
- background-color:
- }
-
- .bottom-safety{
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- }
-
-
- .bgc-f{
- background-color:
- }
- </style>
|