!592 导出权限问题、支付应用选择问题:update src/views/pay/order/index.vue.

Merge pull request !592 from 山野羡民/N/A
pull/608/head
芋道源码 2024-11-30 00:59:07 +00:00 committed by Gitee
commit 019bd9533e
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 3 additions and 1 deletions

View File

@ -97,7 +97,7 @@
plain
@click="handleExport"
:loading="exportLoading"
v-hasPermi="['system:tenant:export']"
v-hasPermi="['pay:order:export']"
>
<Icon icon="ep:download" class="mr-5px" /> 导出
</el-button>
@ -192,6 +192,7 @@ import { dateFormatter } from '@/utils/formatTime'
import * as OrderApi from '@/api/pay/order'
import OrderDetail from './OrderDetail.vue'
import download from '@/utils/download'
import { getAppList } from '@/api/pay/app'
defineOptions({ name: 'PayOrder' })
@ -263,6 +264,7 @@ const openDetail = (id: number) => {
/** 初始化 **/
onMounted(async () => {
await getList()
appList.value = await getAppList()
})
</script>
<style>