撤销除名管理和除名行政复议详情增加文书下载
This commit is contained in:
parent
3c6f16c7c2
commit
527bfdd07b
|
|
@ -34,6 +34,11 @@
|
|||
<el-input v-model="form.remRemark" type="textarea" style="display:inline-block;width:1000px" :autosize="{ minRows: 3, maxRows: 6 }" disabled />
|
||||
</el-form-item>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-form-item label="文书" class="bt0">
|
||||
<el-button type="primary" @click="downLoadFile">下载</el-button>
|
||||
</el-form-item>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-form-item label="材料列表" class="bt0">
|
||||
<ul style="list-style:none;padding:0;margin:5px">
|
||||
|
|
@ -420,6 +425,10 @@ export default {
|
|||
this.$message.error(res.msg)
|
||||
}
|
||||
})
|
||||
},
|
||||
downLoadFile() {
|
||||
const fileUrl = `${process.env.VUE_APP_BASE_API}/expelled/downloadDoc?attachType=1&bizId=${this.bizId}`
|
||||
window.open(fileUrl)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -147,8 +147,6 @@
|
|||
</template>
|
||||
|
||||
<script>
|
||||
import { downLoadFile } from '@/api/punishment';
|
||||
import { expelledRepairGetBiz } from '@/api/除名公告'
|
||||
import Vue from 'vue'
|
||||
export default {
|
||||
data() {
|
||||
|
|
|
|||
|
|
@ -34,6 +34,11 @@
|
|||
<el-input v-model="form.remRemark" type="textarea" style="display:inline-block;width:1000px" :autosize="{ minRows: 3, maxRows: 6 }" disabled />
|
||||
</el-form-item>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-form-item label="文书" class="bt0">
|
||||
<el-button type="primary" @click="downLoadFile">下载</el-button>
|
||||
</el-form-item>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-form-item label="材料列表" class="bt0">
|
||||
<ul style="list-style:none;padding:0;margin:5px">
|
||||
|
|
@ -411,6 +416,10 @@ export default {
|
|||
showEntbaseList() {
|
||||
this.showEntbase = true
|
||||
},
|
||||
downLoadFile() {
|
||||
const fileUrl = `${process.env.VUE_APP_BASE_API}/expelled/downloadDoc?attachType=1&bizId=${this.bizId}`
|
||||
window.open(fileUrl)
|
||||
},
|
||||
// 移除文件回调
|
||||
removeFile(file) {
|
||||
removeAttachementById(file.id).then(res => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue