This commit is contained in:
cc_caijp 2026-01-19 15:09:50 +08:00
parent f87ac76b30
commit 81a4acf951
2 changed files with 12 additions and 2 deletions

View File

@ -102,6 +102,12 @@
{{ detailInfo?.revokeInfo?.remark || '' }} {{ detailInfo?.revokeInfo?.remark || '' }}
</td> </td>
</tr> </tr>
<tr>
<th>除名撤销审批表</th>
<td>
<el-button type="primary" @click="downLoadFile">下载</el-button>
</td>
</tr>
</table> </table>
</div> </div>
</div> </div>
@ -200,6 +206,10 @@ export default {
}).catch(() => { }).catch(() => {
this.loading = false this.loading = false
}) })
},
downLoadFile() {
const fileUrl = `${process.env.VUE_APP_BASE_API}/expelled/downloadDoc?attachType=1&bizId=${this.bizId}`
window.open(fileUrl)
} }
} }
} }

View File

@ -93,7 +93,7 @@
</td> </td>
</tr> </tr>
<tr> <tr>
<th>文书</th> <th>除名修复审批表</th>
<td> <td>
<el-button type="primary" @click="downLoadFile">下载</el-button> <el-button type="primary" @click="downLoadFile">下载</el-button>
</td> </td>
@ -147,7 +147,7 @@
</template> </template>
<script> <script>
import Vue from 'vue' import { expelledRepairGetBiz } from '@/api/除名公告'
export default { export default {
data() { data() {
return { return {