1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <template>
- <mobile-frame>
- <view class="main">
- <view class="one">
- <image class="logo" :src="logoUrl" mode=""></image>
- </view>
- </view>
- </mobile-frame>
- </template>
- <script>
- export default {
- data() {
- return {
- logoUrl: '',
- };
- },
- onLoad: async function() {
- const that = this;
- await that.searchConfig();
- },
- methods: {
- // 查询基本设置
- async searchConfig() {
- const that = this;
- let res = await that.$api(`/config`, 'GET', {});
- if (res.errcode == '0') {
- let config = res.data;
- that.$set(that, `logoUrl`, config.config.logo[0].url);
- uni.setStorage({
- key: 'config',
- data: config,
- success: function(res) {
- // 赋值默认值
- that.$config.share = {
- title: config.title,
- path: '/pages/index/index',
- imageUrl: config.config.share[0].url
- }
- let url = `/pages/my/index`;
- uni.redirectTo({
- url
- })
- },
- fail: function(err) {
- console.log(err);
- }
- })
- }
- }
- }
- }
- </script>
- <style lang="scss">
- .main {
- display: flex;
- flex-direction: column;
- width: 100vw;
- height: 100vh;
- .one {
- text-align: center;
- margin: 40vw 0 0 0;
- .logo {
- width: 50vw;
- height: 50vw;
- border-radius: 90px;
- box-shadow: 0 0 5px #f1f1f1;
- }
- }
- }
- </style>
|