You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
419 lines
13 KiB
419 lines
13 KiB
<template>
|
|
<div class="app-container">
|
|
<!--列表页面-->
|
|
<div v-show="viewState == 1">
|
|
<button-bar view-title="审计监管管理" ref="btnbar" :btndisabled="btndisabled" @btnhandle="btnHandle" />
|
|
<!--Start查询列表部分-->
|
|
<div class="main-content">
|
|
<div class="searchcon">
|
|
<el-button size="small" class="searchbtn" @click="clicksearchShow">{{ searchxianshitit }}</el-button>
|
|
<div v-show="isSearchShow" class="search">
|
|
<el-form ref="listQueryform" :inline="true" :model="listQuery" class="tab-header">
|
|
<el-form-item label="分公司">
|
|
<el-input v-model="listQuery.params.orgName" placeholder="" clearable />
|
|
</el-form-item>
|
|
<el-form-item label="审计事项">
|
|
<el-input v-model="listQuery.params.auditMatters" placeholder="" clearable />
|
|
</el-form-item>
|
|
<el-form-item label="审计日期">
|
|
<el-date-picker v-model="listQuery.params.createStartDate" value-format="yyyy-MM-dd" format="yyyy-MM-dd"
|
|
type="date" placeholder="选择日期"></el-date-picker>
|
|
<span style="padding: 0 8px">至</span>
|
|
<el-date-picker v-model="listQuery.params.createEndDate" value-format="yyyy-MM-dd" format="yyyy-MM-dd"
|
|
type="date" placeholder="选择日期"></el-date-picker>
|
|
</el-form-item>
|
|
</el-form>
|
|
<div class="btn" style="text-align: center;">
|
|
<el-button type="primary" icon="el-icon-search" size="small" @click="handleFilter">查询</el-button>
|
|
<el-button type="primary" icon="el-icon-refresh" size="small" @click="handleReset">重置</el-button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!--End查询列表部分-->
|
|
<div class="listtop">
|
|
<div class="tit">审计列表</div>
|
|
<!-- <pageye v-show="list.length > 0" :total="listQuery.total" :page.sync="listQuery.current"
|
|
:limit.sync="listQuery.size" class="pagination" @pagination="getList" /> -->
|
|
</div>
|
|
<!--Start 主页面主要部分 -->
|
|
<div class="">
|
|
<el-table :key="tableKey" v-loading="listLoading" :data="list" :border="true" style="width: 100%;"
|
|
@selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" align="center" width="50" />
|
|
<el-table-column label="序号" type="index" width="80" :index="indexMethod" align="center" />
|
|
<el-table-column label="操作" width="80" align="center">
|
|
<template slot-scope="scope">
|
|
<el-button type="primary" size="mini" @click="toInfo(scope.row)">详情</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="orgName" label="分公司" align="center" />
|
|
<el-table-column prop="auditMatters" label="审计事项" align="center" />
|
|
<el-table-column prop="createStartDate" label="审计开始日期" align="center" />
|
|
<el-table-column prop="createEndDate" label="审计结束日期" align="center" />
|
|
<el-table-column prop="auditor" label="审计人" align="center" />
|
|
<el-table-column prop="auditResults" label="审计结果" align="center" />
|
|
</el-table>
|
|
</div>
|
|
<!--End 主页面主要部分-->
|
|
<div class="pages">
|
|
<div class="tit" />
|
|
<!-- 翻页 -->
|
|
<pagination v-show="list.length > 0" :total="listQuery.total" :page.sync="listQuery.current"
|
|
:limit.sync="listQuery.size" class="pagination" @pagination="getList" />
|
|
</div>
|
|
<!--End查询列表部分-->
|
|
</div>
|
|
</div>
|
|
<!--新增及修改 -->
|
|
<auditSupervisionAdd v-show="viewState == 2 || viewState == 3" ref="divAdd" @doback="resetState"
|
|
@reloadlist="getList" />
|
|
<!--详情-->
|
|
<auditSupervisionInfo v-show="viewState == 4" ref="divInfo" @doback="resetState" />
|
|
|
|
<el-dialog title="审计结果" :visible.sync="dialogVisible" :before-close="handleClose">
|
|
<el-form ref="form_obj" :model="formobj" :rules="rules" class="formaddcopy02" style="margin-top: -30px">
|
|
<el-row style="border-top: 1px solid #e0e3eb">
|
|
<el-col :span="24">
|
|
<div class="span-sty"><span class="must">*</span> 审计结果</div>
|
|
<el-form-item prop="result"><el-input v-model="formobj.result" clearable placeholder=""
|
|
class="addinputInfo addinputw" /></el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
|
|
<div style="display: flex;flex-direction: row;width: 100%;justify-content: center;align-items: center;">
|
|
<el-button type="primary" style="margin-top: 20px;" @click="saveResults">确 定</el-button>
|
|
</div>
|
|
|
|
</el-dialog>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Pagination from '@/components/pagination'
|
|
import pageye from '@/components/pagination/pageye'
|
|
import ButtonBar from '@/components/ButtonBar'
|
|
import req from '@/api/auditSupervision/auditSupervision'
|
|
import auditSupervisionAdd from './auditSupervisionAdd'
|
|
import auditSupervisionInfo from './auditSupervisionInfo'
|
|
|
|
export default {
|
|
name: 'AdvanceDetails',
|
|
components: {
|
|
Pagination,
|
|
pageye,
|
|
ButtonBar,
|
|
auditSupervisionAdd,
|
|
auditSupervisionInfo
|
|
},
|
|
data() {
|
|
return {
|
|
btndisabled: false,
|
|
dialogVisible: false,
|
|
btnList: [{
|
|
type: 'primary',
|
|
size: 'small',
|
|
icon: 'plus',
|
|
btnKey: 'toAdd',
|
|
btnLabel: '新增'
|
|
},
|
|
{
|
|
type: 'primary',
|
|
size: 'small',
|
|
icon: 'plus',
|
|
btnKey: 'toEdit',
|
|
btnLabel: '编辑'
|
|
},
|
|
{
|
|
type: 'primary',
|
|
size: 'small',
|
|
icon: 'plus',
|
|
btnKey: 'toResult',
|
|
btnLabel: '审计结果'
|
|
},
|
|
{
|
|
type: 'danger',
|
|
size: 'small',
|
|
icon: 'del',
|
|
btnKey: 'doDel',
|
|
btnLabel: '删除'
|
|
},
|
|
{
|
|
type: 'info',
|
|
size: 'small',
|
|
icon: 'cross',
|
|
btnKey: 'doClose',
|
|
btnLabel: '关闭'
|
|
}
|
|
],
|
|
isSearchShow: false,
|
|
searchxianshitit: '显示查询条件',
|
|
viewState: 1, // 1、列表 2、新增 3、编辑 4、查看
|
|
tableKey: 0,
|
|
list: [],
|
|
sids: [], // 用于导出的时候保存已选择的SIDs
|
|
FormLoading: false,
|
|
listLoading: false,
|
|
// 翻页
|
|
listQuery: {
|
|
current: 1,
|
|
size: 10,
|
|
total: 0,
|
|
params: {
|
|
"userSid": "",
|
|
"menuUrl": "",
|
|
"orgPath": "",
|
|
"orgName": "",
|
|
"auditMatters": "",
|
|
"createStartDate": "",
|
|
"createEndDate": ""
|
|
}
|
|
},
|
|
sids: [],
|
|
formobj: {
|
|
sids: [],
|
|
result: '',
|
|
userSid: window.sessionStorage.getItem('userSid'),
|
|
},
|
|
rules: {
|
|
result: [{
|
|
required: true,
|
|
message: '审计结果不能为空',
|
|
trigger: 'blur'
|
|
}],
|
|
}
|
|
}
|
|
},
|
|
created() {
|
|
// 初始化变量
|
|
this.getList()
|
|
},
|
|
mounted() {
|
|
this.$refs['btnbar'].setButtonList(this.btnList)
|
|
},
|
|
methods: {
|
|
// 搜索条件效果
|
|
clicksearchShow() {
|
|
this.isSearchShow = !this.isSearchShow
|
|
if (this.isSearchShow) {
|
|
this.searchxianshitit = '隐藏查询条件'
|
|
} else {
|
|
this.searchxianshitit = '显示查询条件'
|
|
}
|
|
},
|
|
btnHandle(btnKey) {
|
|
console.log('XXXXXXXXXXXXXXX ' + btnKey)
|
|
switch (btnKey) {
|
|
case 'toAdd':
|
|
this.toAdd()
|
|
break
|
|
case 'toEdit':
|
|
this.toEdit()
|
|
break
|
|
case 'toResult':
|
|
this.toResult()
|
|
break
|
|
case 'doDel':
|
|
this.doDel()
|
|
break
|
|
case 'doClose':
|
|
this.doClose()
|
|
break
|
|
default:
|
|
break
|
|
}
|
|
},
|
|
handleSelectionChange(row) {
|
|
const aa = []
|
|
row.forEach(element => {
|
|
aa.push(element.sid)
|
|
})
|
|
this.sids = aa
|
|
},
|
|
|
|
// 表中序号
|
|
indexMethod(index) {
|
|
var pagestart = (this.listQuery.current - 1) * this.listQuery.size
|
|
var pageindex = index + 1 + pagestart
|
|
return pageindex
|
|
},
|
|
// 查询列表信息
|
|
getList() {
|
|
this.listLoading = true
|
|
this.listQuery.params.userSid = window.sessionStorage.getItem('userSid')
|
|
this.listQuery.params.orgPath = window.sessionStorage.getItem('defaultOrgPath')
|
|
this.listQuery.params.menuUrl = this.$route.path
|
|
req.listPage(this.listQuery).then(response => {
|
|
this.listLoading = false
|
|
if (response.success) {
|
|
this.list = response.data.records
|
|
this.listQuery.total = response.data.total
|
|
} else {
|
|
this.list = []
|
|
this.listQuery.total = 0
|
|
}
|
|
})
|
|
},
|
|
// 查询按钮
|
|
handleFilter() {
|
|
this.listQuery.current = 1
|
|
this.getList()
|
|
},
|
|
// 点击重置
|
|
handleReset() {
|
|
this.listQuery = {
|
|
current: 1,
|
|
size: 10,
|
|
total: 0,
|
|
params: {
|
|
"userSid": "",
|
|
"menuUrl": "",
|
|
"orgPath": "",
|
|
"orgName": "",
|
|
"auditMatters": "",
|
|
"createStartDate": "",
|
|
"createEndDate": ""
|
|
}
|
|
}
|
|
this.getList()
|
|
},
|
|
toAdd() {
|
|
this.viewState = 2
|
|
this.$refs['divAdd'].showAdd()
|
|
},
|
|
toEdit() {
|
|
|
|
if (this.sids.length != 1) {
|
|
this.$message({
|
|
showClose: true,
|
|
type: 'error',
|
|
message: '请选择一条记录进行操作'
|
|
})
|
|
return
|
|
}
|
|
|
|
this.viewState = 3
|
|
this.$refs['divAdd'].showEdit(this.sids[0])
|
|
},
|
|
toResult() {
|
|
|
|
this.dialogVisible = true
|
|
|
|
},
|
|
handleClose() {
|
|
this.dialogVisible = false
|
|
this.formobj = {
|
|
sids: [],
|
|
result: '',
|
|
userSid: window.sessionStorage.getItem('userSid'),
|
|
}
|
|
},
|
|
saveResults() {
|
|
|
|
this.formobj.sids = this.sids
|
|
this.$refs['form_obj'].validate((valid) => {
|
|
if (valid) {
|
|
req.saveResult(this.formobj).then((res) => {
|
|
if (res.success) {
|
|
this.handleClose()
|
|
}
|
|
})
|
|
|
|
}
|
|
})
|
|
|
|
|
|
},
|
|
doDel() {
|
|
if (this.sids.length === 0) {
|
|
this.$message({
|
|
showClose: true,
|
|
type: 'error',
|
|
message: '请选择至少一条记录进行删除操作'
|
|
})
|
|
return
|
|
}
|
|
const tip = '请确认是否删除所选 ' + this.sids.length + ' 条记录?'
|
|
this.$confirm(tip, '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
const loading = this.$loading({
|
|
lock: true,
|
|
text: 'Loading',
|
|
spinner: 'el-icon-loading',
|
|
background: 'rgba(0, 0, 0, 0.7)'
|
|
})
|
|
req.deleteBySids(this.sids).then(resp => {
|
|
if (resp.success) {
|
|
this.$message({
|
|
type: 'success',
|
|
message: resp.msg,
|
|
showClose: true
|
|
})
|
|
}
|
|
this.getList()
|
|
loading.close()
|
|
}).catch(e => {
|
|
loading.close()
|
|
})
|
|
}).catch(() => {})
|
|
},
|
|
doClose() {
|
|
this.$store.dispatch('tagsView/delView', this.$route)
|
|
this.$router.go(-1)
|
|
},
|
|
toInfo(row) {
|
|
|
|
this.viewState = 4
|
|
this.$refs['divInfo'].showDetail(row.sid)
|
|
},
|
|
resetState() {
|
|
this.viewState = 1
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
<style scoped>
|
|
/deep/ .el-form-item__error {
|
|
margin-left: 120px !important;
|
|
}
|
|
|
|
.must {
|
|
color: #f00;
|
|
}
|
|
|
|
.span-sty {
|
|
width: 130px !important;
|
|
align-items: center;
|
|
}
|
|
|
|
.addinputInfo {
|
|
margin-left: 120px !important;
|
|
}
|
|
|
|
.formaddcopy02 .el-row .el-col /deep/ .el-form-item .addinputw {
|
|
margin-left: 120px !important;
|
|
width: calc(100% - 115px);
|
|
}
|
|
|
|
.first_row {
|
|
border-top: 1px solid #E0E3EB;
|
|
}
|
|
|
|
.titleOne {
|
|
padding: 7px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.formaddcopy02 .el-row .el-col /deep/ .el-form-item .el-radio-group {
|
|
display: inline;
|
|
line-height: 1px;
|
|
vertical-align: middle;
|
|
}
|
|
</style>
|
|
|