123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <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') {
- uni.getStorage({
- key: 'token',
- success: async (res) => {
- let arr = await that.$api(`/user/cct`, 'POST');
- if (arr.errcode == '0') {
- uni.setStorage({
- key: 'token',
- data: arr.data,
- success: function() {}
- });
- }
- }
- })
- 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/home/index`; ///pagesHome/order/detail /pages/home/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>
|