release(custom): 4.0.0
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-05-29 12:31:44 +08:00
parent 1bbaeb821d
commit d163995765
4 changed files with 11 additions and 8 deletions

View File

@@ -8,7 +8,8 @@ TARO_APP_KEY='1234567890'
TARO_APP_API='https://test.wanzhuanyongcheng.cn/app' TARO_APP_API='https://test.wanzhuanyongcheng.cn/app'
# 骰子游戏链接 # 骰子游戏链接
TARO_APP_GAME='https://jdt-test-tz.wanzhuanyongcheng.cn/pages/index/index?uid=' # TARO_APP_GAME='https://jdt-test-tz.wanzhuanyongcheng.cn/pages/index/index?uid='
TARO_APP_GAME='http://192.168.31.225:10086?uid='
# 捕鱼游戏链接 # 捕鱼游戏链接
TARO_APP_FISH_GAME='https://jdt-test-fish.wanzhuanyongcheng.cn/?uid=' TARO_APP_FISH_GAME='https://jdt-test-fish.wanzhuanyongcheng.cn/?uid='

View File

@@ -1,6 +1,6 @@
<template> <template>
<view> <view>
<view class="flex justify-center"> <view class="flex justify-center" v-if="storeList.length > 0">
<view <view
class="bg-white rounded-[15px] mt-3 p-2 w-[95%] flex items-center" class="bg-white rounded-[15px] mt-3 p-2 w-[95%] flex items-center"
v-for="(item, index) in storeList" v-for="(item, index) in storeList"
@@ -25,6 +25,7 @@
</view> </view>
</view> </view>
</view> </view>
<nut-empty v-else description="暂无数据"></nut-empty>
</view> </view>
</template> </template>

View File

@@ -1,3 +1,4 @@
export default definePageConfig({ export default definePageConfig({
navigationBarTitleText: "", navigationBarTitleText: "",
navigationStyle: "custom",
}); });

View File

@@ -3,14 +3,14 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { ref } from "vue"; import {ref} from 'vue';
import { getStorageSync, useLoad } from "@tarojs/taro"; import {getStorageSync, useDidShow} from '@tarojs/taro';
import { WebView } from "@tarojs/components"; import {WebView} from '@tarojs/components';
const url = ref(""); const url = ref('');
useLoad(() => { useDidShow(() => {
url.value = getStorageSync("game_url"); url.value = getStorageSync('game_url');
}); });
</script> </script>