forked from zhurui/management
97 lines
3.7 KiB
Vue
97 lines
3.7 KiB
Vue
<template>
|
|
<el-card shadow="never" class="aui-card--fill">
|
|
<div class="mod-projectApplication__lxsqb}">
|
|
<el-form :inline="true" :model="dataForm" @keyup.enter.native="getDataList()">
|
|
<el-form-item>
|
|
<el-input v-model="dataForm.id" placeholder="id" clearable></el-input>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button @click="getDataList()">{{ $t('query') }}</el-button>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" @click="addOrUpdateHandleWapper()">{{ $t('add') }}</el-button>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="danger" @click="deleteHandleWapper()">{{ $t('deleteBatch') }}</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
|
|
<el-table v-loading="dataListLoading" :data="dataList" border @selection-change="dataListSelectionChangeHandle" style="width: 100%;">
|
|
<el-table-column type="selection" header-align="center" align="center" width="50"></el-table-column>
|
|
<el-table-column prop="xmmc" label="项目名称" header-align="center" align="center"></el-table-column>
|
|
<el-table-column prop="sqr" label="申请人" header-align="center" align="center"></el-table-column>
|
|
<el-table-column prop="sqdw" label="申请单位" header-align="center" align="center"></el-table-column>
|
|
<el-table-column prop="xmkssj" label="项目开始时间" header-align="center" align="center"></el-table-column>
|
|
<el-table-column prop="xmjssj" label="项目结束时间" header-align="center" align="center"></el-table-column>
|
|
<el-table-column prop="xmlx" label="项目类型" header-align="center" align="center"></el-table-column>
|
|
<el-table-column prop="xmzt" label="项目状态" header-align="center" align="center"></el-table-column>
|
|
|
|
<el-table-column :label="$t('handle')" fixed="right" header-align="center" align="center" width="230">
|
|
<template slot-scope="scope">
|
|
<el-button plain size="small" @click="lookUpInfo(scope.row.id)">{{ "详情" }}</el-button>
|
|
<el-button plain size="small" @click="addOrUpdateHandleWapper(scope.row.id)">{{ $t('update') }}</el-button>
|
|
<el-button type="danger" size="small" @click="deleteHandleWapper(scope.row.id)">{{ $t('delete') }}</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<el-pagination
|
|
:current-page="page"
|
|
:page-sizes="[10, 20, 50, 100]"
|
|
:page-size="limit"
|
|
:total="total"
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
@size-change="pageSizeChangeHandle"
|
|
@current-change="pageCurrentChangeHandle">
|
|
</el-pagination>
|
|
<!-- 弹窗, 新增 / 修改 -->
|
|
<add-or-update :isedit="popIsEdit" v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList"></add-or-update>
|
|
</div>
|
|
</el-card>
|
|
</template>
|
|
|
|
<script>
|
|
import mixinViewModule from '@/mixins/view-module'
|
|
import AddOrUpdate from './lxsqb-add-or-update'
|
|
export default {
|
|
mixins: [mixinViewModule],
|
|
data () {
|
|
return {
|
|
mixinViewModuleOptions: {
|
|
getDataListURL: '/system/projectApplication/lxsqb/page',
|
|
getDataListIsPage: true,
|
|
deleteURL: '/system/projectApplication/lxsqb',
|
|
deleteIsBatch: true
|
|
},
|
|
|
|
dataForm: {
|
|
id: ''
|
|
},
|
|
|
|
popIsEdit: false,
|
|
|
|
}
|
|
},
|
|
components: {
|
|
AddOrUpdate
|
|
},
|
|
methods:{
|
|
lookUpInfo(scopeRowId){
|
|
|
|
this.popIsEdit = false;
|
|
this.addOrUpdateHandle(scopeRowId)
|
|
|
|
},
|
|
addOrUpdateHandleWapper(scopeRowId){
|
|
this.popIsEdit = true;
|
|
this.addOrUpdateHandle(scopeRowId)
|
|
},
|
|
deleteHandleWapper(scopeRowId){
|
|
this.deleteHandle(scopeRowId)
|
|
},
|
|
|
|
|
|
}
|
|
}
|
|
</script>
|