release(custom): 4.0.0
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<view>
|
||||
<view class="flex justify-center">
|
||||
<view class="flex justify-center" v-if="storeList.length > 0">
|
||||
<view
|
||||
class="bg-white rounded-[15px] mt-3 p-2 w-[95%] flex items-center"
|
||||
v-for="(item, index) in storeList"
|
||||
@@ -25,6 +25,7 @@
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
<nut-empty v-else description="暂无数据"></nut-empty>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
export default definePageConfig({
|
||||
navigationBarTitleText: "",
|
||||
navigationStyle: "custom",
|
||||
});
|
||||
|
||||
@@ -3,14 +3,14 @@
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { ref } from "vue";
|
||||
import { getStorageSync, useLoad } from "@tarojs/taro";
|
||||
import { WebView } from "@tarojs/components";
|
||||
import {ref} from 'vue';
|
||||
import {getStorageSync, useDidShow} from '@tarojs/taro';
|
||||
import {WebView} from '@tarojs/components';
|
||||
|
||||
const url = ref("");
|
||||
const url = ref('');
|
||||
|
||||
useLoad(() => {
|
||||
url.value = getStorageSync("game_url");
|
||||
useDidShow(() => {
|
||||
url.value = getStorageSync('game_url');
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user