| | |
| | | </template> |
| | | |
| | | <script setup lang="ts"> |
| | | import { SERVE_URL } from '@/constants'; |
| | | import { Check, Download } from '@element-plus/icons-vue'; |
| | | import { ElMessage } from 'element-plus'; |
| | | import { reactive, ref } from 'vue'; |
| | |
| | | const downloadForm = () => { |
| | | // 这里添加下载表格的逻辑 |
| | | const link = document.createElement('a'); |
| | | link.href = '/files/subsidy_application_form.doc'; |
| | | link.href = `${SERVE_URL}files/subsidy_application_form.doc`; |
| | | link.download = '上海市工业通信业用能设备更新专项扶持工作平台企业申请表.doc'; |
| | | document.body.appendChild(link); |
| | | link.click(); |