
7 changed files with 1357 additions and 385 deletions
@ -0,0 +1,62 @@ |
|||||
|
import request from '@/utils/request' |
||||
|
// 审计监管
|
||||
|
export default { |
||||
|
// 查询分页列表
|
||||
|
listPage: function(params) { |
||||
|
return request({ |
||||
|
// baseURL: "http://127.0.0.1:4523/m1/613533-0-default",
|
||||
|
url: '/riskcenter/v1/auditSupervision/listPage', |
||||
|
method: 'post', |
||||
|
data: params, |
||||
|
headers: { |
||||
|
'Content-Type': 'application/json' |
||||
|
} |
||||
|
}) |
||||
|
}, |
||||
|
|
||||
|
saveOrUpdate: function(data) { |
||||
|
return request({ |
||||
|
// baseURL: "http://127.0.0.1:4523/m1/613533-0-default",
|
||||
|
url: '/riskcenter/v1/auditSupervision/saveOrUpdate', |
||||
|
method: 'post', |
||||
|
data: data, |
||||
|
headers: { |
||||
|
'Content-Type': 'application/json' |
||||
|
} |
||||
|
}) |
||||
|
}, |
||||
|
|
||||
|
saveResult: function(data) { |
||||
|
return request({ |
||||
|
// baseURL: "http://127.0.0.1:4523/m1/613533-0-default",
|
||||
|
url: '/riskcenter/v1/auditSupervision/saveResult', |
||||
|
method: 'post', |
||||
|
data: data, |
||||
|
headers: { |
||||
|
'Content-Type': 'application/json' |
||||
|
} |
||||
|
}) |
||||
|
}, |
||||
|
|
||||
|
init: function(data) { |
||||
|
return request({ |
||||
|
// baseURL: "http://127.0.0.1:4523/m1/613533-0-default",
|
||||
|
url: '/riskcenter/v1/auditSupervision/gteInitBySid/' + data, |
||||
|
method: 'get', |
||||
|
|
||||
|
}) |
||||
|
}, |
||||
|
|
||||
|
deleteBySids: function(data) { |
||||
|
return request({ |
||||
|
// baseURL: "http://127.0.0.1:4523/m1/613533-0-default",
|
||||
|
url: '/riskcenter/v1/auditSupervision/delBySids', |
||||
|
method: 'DELETE', |
||||
|
data: data, |
||||
|
headers: { |
||||
|
'Content-Type': 'application/json' |
||||
|
} |
||||
|
}) |
||||
|
}, |
||||
|
|
||||
|
} |
File diff suppressed because it is too large
@ -0,0 +1,419 @@ |
|||||
|
<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> |
@ -0,0 +1,272 @@ |
|||||
|
<template> |
||||
|
<div class="app-container"> |
||||
|
<div class="tab-header webtop"> |
||||
|
<div>{{ viewTitle }}</div> |
||||
|
<div> |
||||
|
<el-button type="primary" size="small" :disabled="submitdisabled" @click="saveOrUpdate()">保存</el-button> |
||||
|
<el-button type="info" size="small" @click="handleReturn()">关闭</el-button> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="listconadd"> |
||||
|
<el-form ref="form_obj" :model="formobj" :rules="rules" class="formaddcopy02"> |
||||
|
<el-row style="border-top: 1px solid #e0e3eb"> |
||||
|
<el-col :span="8"> |
||||
|
<div class="span-sty">申请部门</div> |
||||
|
<el-form-item><span class="addinputInfo">{{ formobj.deptName }}</span></el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="8"> |
||||
|
<div class="span-sty">申请人</div> |
||||
|
<el-form-item><span class="addinputInfo">{{ formobj.createByName }}</span></el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="8"> |
||||
|
<div class="span-sty">申请日期</div> |
||||
|
<el-form-item><span class="addinputInfo">{{ formobj.createStartDate }}</span></el-form-item> |
||||
|
</el-col> |
||||
|
</el-row> |
||||
|
<el-row> |
||||
|
<el-col :span="8"> |
||||
|
<div class="span-sty"><span class="must">*</span> 分公司</div> |
||||
|
<el-form-item prop="orgName"> |
||||
|
<el-select class="addinputInfo addinputw" v-model="formobj.orgName" placeholder="请选择" |
||||
|
@change="seleOrgName"> |
||||
|
<el-option v-for="item in orgList" :key="item.sid" :label="item.name" :value="item.sid"></el-option> |
||||
|
</el-select> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="8"> |
||||
|
<div class="span-sty"><span class="must">*</span> 审计人</div> |
||||
|
<el-form-item prop="auditor"><el-input v-model="formobj.auditor" clearable placeholder="" |
||||
|
class="addinputInfo addinputw" /></el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="8"> |
||||
|
<div class="span-sty"><span class="must">*</span> 审计事项</div> |
||||
|
<el-form-item prop="auditMatters"><el-input v-model="formobj.auditMatters" clearable placeholder="" |
||||
|
class="addinputInfo addinputw" /></el-form-item> |
||||
|
</el-col> |
||||
|
</el-row> |
||||
|
<el-row> |
||||
|
<el-col :span="24"> |
||||
|
<div class="span-sty">备注</div> |
||||
|
<el-form-item><el-input v-model="formobj.remarks" clearable placeholder="" |
||||
|
class="addinputInfo addinputw" /></el-form-item> |
||||
|
</el-col> |
||||
|
</el-row> |
||||
|
<el-row> |
||||
|
<el-col :span="24"> |
||||
|
<div class="span-sty">附件</div> |
||||
|
<el-form-item> |
||||
|
<upload-img ref="uploadImg" class="addinputw addinputInfo" v-model="formobj.urls" :limit="1" bucket="map" |
||||
|
:upload-data="{ type: '0001' }" @change="backData" /> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
</el-row> |
||||
|
</el-form> |
||||
|
</div> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
import req from '@/api/auditSupervision/auditSupervision' |
||||
|
import uploadImg from '@/components/uploadFile/uploadImg' |
||||
|
import { |
||||
|
selectOrgSidList, |
||||
|
getOrgSidByPath |
||||
|
} from '@/api/Common/dictcommons' |
||||
|
import { |
||||
|
getCurrentDate, |
||||
|
} from '@/utils/index' |
||||
|
|
||||
|
export default { |
||||
|
name: 'AuditSupervisionAdd', |
||||
|
components: { |
||||
|
uploadImg |
||||
|
}, |
||||
|
data() { |
||||
|
return { |
||||
|
viewTitle: '', |
||||
|
submitdisabled: false, |
||||
|
formobj: { |
||||
|
"sid": "", |
||||
|
"orgName": "", |
||||
|
"orgSid": "", |
||||
|
"auditMatters": "", |
||||
|
"createStartDate": getCurrentDate(), |
||||
|
"createEndDate": "", |
||||
|
"auditor": "", |
||||
|
"auditResults": "", |
||||
|
"remarks": "", |
||||
|
"urls": [], |
||||
|
"userSid": window.sessionStorage.getItem('userSid'), |
||||
|
"createByName": window.sessionStorage.getItem('name'), |
||||
|
"createOrgSid": "", |
||||
|
"userOrgPath": window.sessionStorage.getItem('defaultOrgPath'), |
||||
|
"deptName": window.sessionStorage.getItem('defaultOrgPathName').substring(window |
||||
|
.sessionStorage.getItem('defaultOrgPathName').lastIndexOf('/') + 1), |
||||
|
"deptSid": window.sessionStorage.getItem('defaultOrgPath').substring(window.sessionStorage |
||||
|
.getItem('defaultOrgPath').lastIndexOf('/') + 1) |
||||
|
}, |
||||
|
rules: { |
||||
|
orgName: [{ |
||||
|
required: true, |
||||
|
message: '请选择分公司', |
||||
|
trigger: 'change' |
||||
|
}], |
||||
|
auditor: [{ |
||||
|
required: true, |
||||
|
message: '审计人不能为空', |
||||
|
trigger: 'blur' |
||||
|
}], |
||||
|
auditMatters: [{ |
||||
|
required: true, |
||||
|
message: '审计项目不能为空', |
||||
|
trigger: 'blur' |
||||
|
}], |
||||
|
}, |
||||
|
orgList: [], |
||||
|
} |
||||
|
}, |
||||
|
methods: { |
||||
|
|
||||
|
init() { |
||||
|
selectOrgSidList().then((res) => { |
||||
|
if (res.success) { |
||||
|
console.log("selectOrgSidList", res); |
||||
|
this.orgList = res.data |
||||
|
} |
||||
|
}) |
||||
|
|
||||
|
getOrgSidByPath({ |
||||
|
orgPath: window.sessionStorage.getItem('defaultOrgPath') |
||||
|
}).then((resp) => { |
||||
|
if (resp.success) { |
||||
|
this.formobj.createOrgSid = resp.data |
||||
|
} |
||||
|
}) |
||||
|
|
||||
|
}, |
||||
|
backData(value) { |
||||
|
|
||||
|
console.log('backData》》》》', value) |
||||
|
|
||||
|
this.formobj.urls = value |
||||
|
|
||||
|
}, |
||||
|
showAdd() { |
||||
|
this.viewTitle = '【新增】审计监管' |
||||
|
this.$nextTick(() => { |
||||
|
this.$refs['form_obj'].clearValidate() |
||||
|
}) |
||||
|
this.init() |
||||
|
}, |
||||
|
showEdit(sid) { |
||||
|
this.viewTitle = '【编辑】审计监管' |
||||
|
this.$nextTick(() => { |
||||
|
this.$refs['form_obj'].clearValidate() |
||||
|
}) |
||||
|
this.init() |
||||
|
req.init(sid).then((res) => { |
||||
|
if (res.success) { |
||||
|
this.formobj = res.data |
||||
|
} |
||||
|
}) |
||||
|
}, |
||||
|
|
||||
|
saveOrUpdate() { |
||||
|
this.$refs['form_obj'].validate((valid) => { |
||||
|
if (valid) { |
||||
|
this.submitdisabled = true |
||||
|
req.saveOrUpdate(this.formobj).then((res) => { |
||||
|
if (res.success) { |
||||
|
this.$message({ |
||||
|
showClose: true, |
||||
|
type: 'success', |
||||
|
message: '保存成功' |
||||
|
}) |
||||
|
this.handleReturn('true') |
||||
|
} else { |
||||
|
this.submitdisabled = false |
||||
|
} |
||||
|
}).catch(() => { |
||||
|
this.submitdisabled = false |
||||
|
}) |
||||
|
} |
||||
|
}) |
||||
|
}, |
||||
|
|
||||
|
handleReturn(isreload) { |
||||
|
if (isreload === 'true') this.$emit('reloadlist') |
||||
|
this.formobj = { |
||||
|
"sid": "", |
||||
|
"orgName": "", |
||||
|
"orgSid": "", |
||||
|
"auditMatters": "", |
||||
|
"createStartDate": getCurrentDate(), |
||||
|
"createEndDate": "", |
||||
|
"auditor": "", |
||||
|
"auditResults": "", |
||||
|
"remarks": "", |
||||
|
"urls": [], |
||||
|
"userSid": window.sessionStorage.getItem('userSid'), |
||||
|
"createByName": window.sessionStorage.getItem('name'), |
||||
|
"createOrgSid": "", |
||||
|
"userOrgPath": window.sessionStorage.getItem('defaultOrgPath'), |
||||
|
"deptName": window.sessionStorage.getItem('defaultOrgPathName').substring(window |
||||
|
.sessionStorage.getItem('defaultOrgPathName').lastIndexOf('/') + 1), |
||||
|
"deptSid": window.sessionStorage.getItem('defaultOrgPath').substring(window.sessionStorage |
||||
|
.getItem('defaultOrgPath').lastIndexOf('/') + 1) |
||||
|
} |
||||
|
this.submitdisabled = false |
||||
|
this.$emit('doback') |
||||
|
}, |
||||
|
seleOrgName(val) { |
||||
|
console.log("seleOrgName", val); |
||||
|
const choose = this.orgList.filter((item) => item.sid == val) |
||||
|
console.log('>>>>>>>>>seleOrgName', choose) |
||||
|
this.formobj.orgSid = choose[0].sid |
||||
|
this.formobj.orgName = choose[0].name |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</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> |
@ -0,0 +1,114 @@ |
|||||
|
<template> |
||||
|
<div class="app-container"> |
||||
|
<div class="tab-header webtop"> |
||||
|
<div>{{ viewTitle }}</div> |
||||
|
<div> |
||||
|
<el-button type="info" size="small" @click="handleReturn()">关闭</el-button> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div class="listconadd"> |
||||
|
<el-form ref="form_obj" :model="formobj" class="formaddcopy02"> |
||||
|
<el-row style="border-top: 1px solid #e0e3eb"> |
||||
|
<el-col :span="8"> |
||||
|
<div class="span-sty">申请部门</div> |
||||
|
<el-form-item><span class="addinputInfo">{{ formobj.deptName }}</span></el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="8"> |
||||
|
<div class="span-sty">申请人</div> |
||||
|
<el-form-item><span class="addinputInfo">{{ formobj.createByName }}</span></el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="8"> |
||||
|
<div class="span-sty">申请日期</div> |
||||
|
<el-form-item><span class="addinputInfo">{{ formobj.createStartDate }}</span></el-form-item> |
||||
|
</el-col> |
||||
|
</el-row> |
||||
|
<el-row> |
||||
|
<el-col :span="8"> |
||||
|
<div class="span-sty">分公司</div> |
||||
|
<el-form-item><span class="addinputInfo">{{ formobj.orgName }}</span></el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="8"> |
||||
|
<div class="span-sty">审计人</div> |
||||
|
<el-form-item><span class="addinputInfo">{{ formobj.auditor }}</span></el-form-item> |
||||
|
</el-col> |
||||
|
<el-col :span="8"> |
||||
|
<div class="span-sty">审计事项</div> |
||||
|
<el-form-item><span class="addinputInfo">{{ formobj.auditMatters }}</span></el-form-item> |
||||
|
</el-col> |
||||
|
</el-row> |
||||
|
<el-row> |
||||
|
<el-col :span="24"> |
||||
|
<div class="span-sty">备注</div> |
||||
|
<el-form-item><span class="addinputInfo">{{ formobj.remarks }}</span></el-form-item> |
||||
|
</el-col> |
||||
|
</el-row> |
||||
|
<el-row> |
||||
|
<el-col :span="24"> |
||||
|
<div class="span-sty">附件</div> |
||||
|
<el-form-item> |
||||
|
<template slot-scope="scope"> |
||||
|
<span v-for="(item,index) in formobj.urls" :key="index" class="addinputInfo"> |
||||
|
<el-popover placement="left" trigger="click" width="300"> |
||||
|
<img :src="item.url" width="100%" /> |
||||
|
<img slot="reference" :src="item.url" :alt="item.url" |
||||
|
style="max-height: 70px;max-width: 70px; padding: 5px" /> |
||||
|
</el-popover> |
||||
|
</span> |
||||
|
</template> |
||||
|
</el-form-item> |
||||
|
</el-col> |
||||
|
</el-row> |
||||
|
</el-form> |
||||
|
</div> |
||||
|
</div> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
import req from '@/api/auditSupervision/auditSupervision' |
||||
|
|
||||
|
export default { |
||||
|
name: 'AuditSupervisionAdd', |
||||
|
components: {}, |
||||
|
data() { |
||||
|
return { |
||||
|
viewTitle: '', |
||||
|
submitdisabled: false, |
||||
|
formobj: {}, |
||||
|
} |
||||
|
}, |
||||
|
methods: { |
||||
|
showDetail(sid) { |
||||
|
this.viewTitle = '审计监管详情' |
||||
|
req.init(sid).then((res) => { |
||||
|
if (res.success) { |
||||
|
this.formobj = res.data |
||||
|
} |
||||
|
}) |
||||
|
}, |
||||
|
|
||||
|
handleReturn(isreload) { |
||||
|
if (isreload === 'true') this.$emit('reloadlist') |
||||
|
this.formobj = { |
||||
|
|
||||
|
} |
||||
|
this.submitdisabled = false |
||||
|
this.$emit('doback') |
||||
|
}, |
||||
|
} |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style scoped> |
||||
|
.span-sty { |
||||
|
width: 160px !important; |
||||
|
} |
||||
|
|
||||
|
.addinputInfo { |
||||
|
margin-left: 150px !important; |
||||
|
} |
||||
|
|
||||
|
.formaddcopy02 .el-row .el-col /deep/ .el-form-item .addinputw { |
||||
|
margin-left: 150px !important; |
||||
|
width: calc(100% - 145px); |
||||
|
} |
||||
|
</style> |
Loading…
Reference in new issue