|
@@ -99,6 +99,7 @@
|
|
|
<template #footer>
|
|
|
<div class="hc-task-dialog-footer">
|
|
|
<el-button :disabled="tabsKey !== 1" @click="rejectionClick">驳回审批</el-button>
|
|
|
+ <el-button type="warning" @click="rowViewPdf">查看报表</el-button>
|
|
|
<el-button type="primary" :loading="confirmLoading" :disabled="tabsKey !== 1" @click="confirmClick">同意审批</el-button>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -109,6 +110,8 @@
|
|
|
<HcRepealForm v-model="isRepealShow" :info="rowInfo" @finish="taskRepealFinish" />
|
|
|
<!-- 短信认证 -->
|
|
|
<HcSmsAuth :loading="SMSAuthLoading" :show="SMSAuthShow" @cancel="SMSAuthCancel" @confirm="SMSAuthConfirm" />
|
|
|
+ <!-- 查看报表 -->
|
|
|
+ <hc-view-report v-model="isReportDrawer" :datas="pdfList" />
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
@@ -406,6 +409,13 @@ const taskTabsKey = ref('key1')
|
|
|
const taskTabsClick = (key) => {
|
|
|
taskTabsKey.value = key
|
|
|
}
|
|
|
+
|
|
|
+//查看报表
|
|
|
+const isReportDrawer = ref(false)
|
|
|
+const pdfList = ref([])
|
|
|
+const rowViewPdf = () => {
|
|
|
+ window.$message.warning('暂无相关接口')
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|