198 lines
8.1 KiB
HTML
198 lines
8.1 KiB
HTML
<!--#
|
|
layout("/layouts/platform.html"){
|
|
#-->
|
|
<style>
|
|
.aa > div {
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
white-space: nowrap;
|
|
margin: 5px;
|
|
}
|
|
</style>
|
|
<div id="app" v-cloak>
|
|
|
|
<guava ref="guava">
|
|
<el-card shadow="never">
|
|
<div class="search">
|
|
<div class="search-item">
|
|
<div class="search-item-label">年份:</div>
|
|
<el-date-picker style="width: 100%"
|
|
clearable="false"
|
|
placeholder="选择年份"
|
|
type="year"
|
|
v-model="pageForm.year"
|
|
value-format="yyyy">
|
|
</el-date-picker>
|
|
</div>
|
|
<div class="search-item">
|
|
<el-input @keyup.enter.native="doSearch" placeholder="请输入内容" v-model="pageForm.searchKeyword">
|
|
<el-select placeholder="查询类型" slot="prepend" style="width: 120px;"
|
|
v-model="pageForm.searchName">
|
|
<el-option label="申报人姓名" value="u.username"></el-option>
|
|
<el-option label="申报人工号" value="u.loginname"></el-option>
|
|
</el-select>
|
|
</el-input>
|
|
</div>
|
|
<div class="search-item">
|
|
<div class="search-item-label">工会:</div>
|
|
<div class="search-item-option">
|
|
<el-select v-model="pageForm.unionid" clearable filterable placeholder="请选择院级工会"
|
|
@change="getUnitList()"
|
|
style="width: 100%">
|
|
<el-option
|
|
v-for="item in unionList"
|
|
:key="item.id"
|
|
:label="item.unionname"
|
|
:value="item.id">
|
|
</el-option>
|
|
</el-select>
|
|
</div>
|
|
</div>
|
|
<div class="search-item">
|
|
<div class="search-item-label">单位:</div>
|
|
<div class="search-item-option">
|
|
<el-select v-model="pageForm.unitid" clearable filterable placeholder="请选择单位"
|
|
style="width: 100%">
|
|
<el-option
|
|
v-for="item in unitList"
|
|
:key="item.id"
|
|
:label="item.name"
|
|
:value="item.id">
|
|
</el-option>
|
|
</el-select>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<slot name="search-group">
|
|
<!--不同页面的查询条件自定义-->
|
|
</slot>
|
|
<div class="search-query">
|
|
<el-button icon="el-icon-search" type="primary" @click="doSearch"></el-button>
|
|
</div>
|
|
</div>
|
|
|
|
</el-card>
|
|
<el-card class="mt10" shadow="never">
|
|
<vi-title2 title="优秀课题汇总">
|
|
<template #func>
|
|
<el-button @click="exportSummary" type="primary">
|
|
<i aria-hidden="true" class="fa fa-file-word-o"></i>
|
|
优秀课题汇总表
|
|
</el-button>
|
|
</template>
|
|
</vi-title2>
|
|
<el-table :data="tableData" @sort-change='pageOrder'>
|
|
<el-table-column align="center" header-align="center" label="序号" type="index">
|
|
<template scope="scope">
|
|
<span>{{scope.$index+(pageForm.pageNumber - 1) * pageForm.pageSize + 1}} </span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="项目名称" prop="xmmc" show-overflow-tooltip width="400"></el-table-column>
|
|
<el-table-column label="申报人" prop="username"></el-table-column>
|
|
<el-table-column label="性别" prop="sex" width="100"></el-table-column>
|
|
<el-table-column label="申报单位" prop="dwname" show-overflow-tooltip width="150"></el-table-column>
|
|
<el-table-column label="院级工会" prop="ghname" show-overflow-tooltip width="150"></el-table-column>
|
|
<el-table-column label="职务职称" prop="zwzc" width="100"></el-table-column>
|
|
<el-table-column label="状态" prop="statename" sortable width="200"></el-table-column>
|
|
<el-table-column label="申报日期" prop="sbrq" sortable width="100"></el-table-column>
|
|
<el-table-column fixed="right" label="操作" width="100">
|
|
<template slot-scope="{row}">
|
|
<el-button @click="openView(row)" size="mini">查看</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<el-row class="el-pagination-container">
|
|
<el-pagination
|
|
:current-page="pageForm.pageNumber"
|
|
:page-size="pageForm.pageSize"
|
|
:total="pageForm.totalCount"
|
|
@current-change="pageNumberChange"
|
|
layout="total, prev, pager, next, jumper">
|
|
</el-pagination>
|
|
</el-row>
|
|
</el-card>
|
|
|
|
<template #view>
|
|
<syr-info-new ref="viewInfo"></syr-info-new>
|
|
</template>
|
|
</guava>
|
|
</div>
|
|
<script>
|
|
let vm = new Vue({
|
|
el: '#app',
|
|
data() {
|
|
return {
|
|
unionList: [],
|
|
unitList: [],
|
|
tableShow: true,
|
|
pageForm: {
|
|
pageNumber: 1,
|
|
pageSize: 10,
|
|
totalCount: 0,
|
|
pageOrderName: '',
|
|
pageOrderBy: '',
|
|
searchName: 'u.username',
|
|
searchKeyword: '',
|
|
xmmc: '',
|
|
unionid: '',
|
|
unitid: '',
|
|
year: ''
|
|
},
|
|
tableData: [],
|
|
xmid: '',
|
|
hasAdminRole:${@shiro.hasRole('sysadmin')}
|
|
}
|
|
},
|
|
components: {
|
|
'syr-info-new': httpVueLoader('/components/syr/SyrInfoNew.vue'),
|
|
},
|
|
methods: {
|
|
async pageData() {
|
|
const {data} = await $.post('/platform/syr/cxtj/goodkt/pageData', this.pageForm, true)
|
|
this.tableData = data.list
|
|
this.pageForm.totalCount = data.totalCount
|
|
},
|
|
pageOrder(column) {
|
|
this.pageForm.pageOrderName = column.prop
|
|
this.pageForm.pageOrderBy = column.order
|
|
this.pageData()
|
|
},
|
|
pageNumberChange(val) {
|
|
this.pageForm.pageNumber = val
|
|
this.pageData()
|
|
},
|
|
doSearch() {
|
|
this.pageForm.pageNumber = 1
|
|
this.pageData()
|
|
},
|
|
async openView(row) {
|
|
this.$refs.guava.view()
|
|
this.$refs.viewInfo.openView(row.id)
|
|
},
|
|
async getUnitList() {
|
|
this.unitList = []
|
|
this.pageForm.unitid = ''
|
|
this.unitList = await getUnits(this.pageForm.unionid)
|
|
},
|
|
exportSummary() {
|
|
if (this.pageForm.year === '') {
|
|
this.$message.info('请先选择年份!')
|
|
return
|
|
}
|
|
window.location.href = '/platform/syr/cxtj/goodkt/exportSummary?year=' + this.pageForm.year
|
|
}
|
|
},
|
|
async created() {
|
|
this.pageData()
|
|
this.unionList = await getUnions(null)
|
|
}
|
|
})
|
|
</script>
|
|
|
|
|
|
<!--#
|
|
}
|
|
#-->
|