76 lines
2.5 KiB
HTML
76 lines
2.5 KiB
HTML
<!--#
|
|
layout("/layouts/platform.html"){
|
|
#-->
|
|
|
|
<style>
|
|
.el-select {
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
|
|
<div id="app" v-cloak>
|
|
<guava ref="guava">
|
|
<template>
|
|
<proposal-search :page="pageForm" @search="doSearch" :audit="false"></proposal-search>
|
|
|
|
<proposal-table :loading="tableLoading" :page="pageForm" :data="tableData"
|
|
@order="pageOrder" @view="openView">
|
|
<template #column>
|
|
<el-table-column align="center" header-align="center" label="承办单位" width="200px">
|
|
<template scope="{row}">
|
|
<span>{{row.underTakeName}}({{row.underTakeType==1?'主办':'协办'}})</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column align="center" header-align="center" label="操作" fixed="right" width="200">
|
|
<template scope="{row}">
|
|
<el-button @click="openView(row)" size="mini" type="primary">查看</el-button>
|
|
<el-button @click="doExport(row)" size="mini" type="primary">导出</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</template>
|
|
<template #pagination>
|
|
<!--#include("/layouts/pagination.html"){}#-->
|
|
</template>
|
|
</proposal-table>
|
|
</template>
|
|
|
|
<template #view>
|
|
<proposal-info ref="info"></proposal-info>
|
|
</template>
|
|
</guava>
|
|
</div>
|
|
|
|
<script>
|
|
|
|
var vue = new Vue({
|
|
el: '#app',
|
|
mixins: [initTableMixins],
|
|
components: {
|
|
'file-upload': httpVueLoader('/components/plugins/FileUpload.vue'),
|
|
'proposal-info': httpVueLoader('/components/proposal/ProposalInfo.vue'),
|
|
'proposal-search': httpVueLoader('/components/proposal/ProposalSearch.vue'),
|
|
'proposal-table': httpVueLoader('/components/proposal/ProposalTable.vue')
|
|
},
|
|
data() {
|
|
return {
|
|
pageForm: {searchName: 'proposalName'}
|
|
}
|
|
},
|
|
methods: {
|
|
openView(row) {
|
|
this.$refs.guava.view()
|
|
this.$refs.info.openView(row.id)
|
|
},
|
|
doExport(row) {
|
|
window.open('/platform/proposal/transact/underTakeRead/oneProposalExport?proposalId=' + row.id)
|
|
}
|
|
},
|
|
async created() {
|
|
await proposal.initData(this)
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<!--#
|
|
}
|
|
#--> |