From d3ee929a12ed4a4cdbfc492ed4036cc854a09883 Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Fri, 21 Nov 2025 19:28:11 +0800
Subject: [PATCH] Merge branch 'refs/heads/feature/v8.0/8.0.2' into prod
---
src/views/tickets/ticket.vue | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/views/tickets/ticket.vue b/src/views/tickets/ticket.vue
index 91b754b..e418862 100644
--- a/src/views/tickets/ticket.vue
+++ b/src/views/tickets/ticket.vue
@@ -234,7 +234,7 @@
</el-button>
</template>
- <template v-if="row.status === 4 && activeTab === 'completed'">
+ <template v-if="row.status === 4 && activeTab === 'completed' && !isProd">
<el-button type="text" icon="el-icon-download" @click="exportTheTick(row)"
>导出
</el-button>
@@ -1027,7 +1027,7 @@
import getBaseConfig from '@/buildConfig/config';
import CreateQRcode from '@/components/CreateQRcode/CreateQRcode.vue';
import { CircleClose } from '@element-plus/icons-vue';
-
+const isProd = import.meta.env.VITE_APP_ENV === 'production'
const { envName } = getBaseConfig();
function regExp(label, name) {
--
Gitblit v1.9.3