|
|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <Touchable direction="column" center :padding="40" :gap="10" @click="showBuildInfo">
|
|
|
+ <Touchable v-if="showAct" direction="column" center :padding="40" :gap="10" @click="showBuildInfo">
|
|
|
<Text
|
|
|
color="text.second"
|
|
|
:fontSize="22"
|
|
|
@@ -27,7 +27,7 @@ function showBuildInfo() {
|
|
|
'\n构建GUID:' + AppCofig.buildInfo) : ''),
|
|
|
icon: 'prompt-filling',
|
|
|
iconColor: 'primary',
|
|
|
- customButtons: showAct ? [
|
|
|
+ customButtons: [
|
|
|
{
|
|
|
text: '测试非遗路线页面',
|
|
|
name: 'testRoutePage',
|
|
|
@@ -40,7 +40,7 @@ function showBuildInfo() {
|
|
|
text: '测试异常BUG(2)',
|
|
|
name: 'testBug2',
|
|
|
},
|
|
|
- ] : [],
|
|
|
+ ],
|
|
|
bottomVertical: true,
|
|
|
width: 560,
|
|
|
}).then((res) => {
|