Files
UNION_NSI/target/classes/views/platform/proposal/transact/leaderSee.html
T
2026-09-08 19:49:21 +08:00

68 lines
2.0 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="操作" fixed="right" width="100px">
<template scope="{row}">
<el-button size="mini" @click="openView(row)">查看</el-button>
</template>
</el-table-column>
</template>
</proposal-table>
<!--#include("/layouts/pagination.html"){}#-->
</template>
<template #view>
<proposal-info ref="info"></proposal-info>
</template>
</guava>
</div>
<script>
var vue = new Vue({
el: '#app',
mixins: [initTableMixins],
components: {
'guava': httpVueLoader('/components/plugins/Guava.vue'),
'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 {
submitDisabled: false,
pageForm: {searchName: 'proposalName', isAudit: false}
}
},
methods: {
openView(row) {
this.$refs.guava.view()
this.$refs.info.openView(row.id)
}
},
async created() {
await initData(null, this)
}
})
</script>
<!--#
}
#-->