|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<!-- 项目管理 活动开展 -->
|
|
|
- <div class="ProjectManagement3">
|
|
|
+ <div class="ProjectManagement3" v-loading="loading">
|
|
|
<div class="vfpHeader">
|
|
|
<!-- 详情页 -->
|
|
|
<div class="titleOne">项目管理</div>
|
|
@@ -83,7 +83,7 @@
|
|
|
<template #default="scope">
|
|
|
<div class="operations">
|
|
|
<el-button type="primary" size="mini" @click="detail(scope.row.acId)" style="background: #477edd">查看详情</el-button>
|
|
|
- <el-button type="primary" size="mini" style="background: #477edd">申请表</el-button>
|
|
|
+ <el-button type="primary" size="mini" @click='sqb' style="background: #477edd">申请表</el-button>
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -106,9 +106,11 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+ import downloadFile from '@/components/tool/downloadFile.js'
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
|
+ loading:false,
|
|
|
tableData:[], //项目列表数据
|
|
|
table:{ // 分页数据
|
|
|
total:0,
|
|
@@ -118,6 +120,9 @@
|
|
|
}
|
|
|
},
|
|
|
methods:{
|
|
|
+ sqb(){
|
|
|
+ downloadFile("/file/附件 2:创客专项资金项目申请表(创客活动).doc","创客专项资金项目申请表(创客活动).doc",(_b)=>this.loading = _b)
|
|
|
+ },
|
|
|
getData(){
|
|
|
// console.log(localStorage.getItem('pid'))
|
|
|
let param={
|