个体户批量列异修改
This commit is contained in:
parent
0333edbdeb
commit
e1b2488c51
|
|
@ -10,7 +10,7 @@
|
|||
<el-form ref="form" :model="form" label-width="180px" label-position="right" :rules="formRules">
|
||||
<div class="form">
|
||||
|
||||
<div class="tab" v-if="bizList.length === 1">
|
||||
<div v-if="bizList.length === 1" class="tab">
|
||||
<div class="tab-title">
|
||||
<label>
|
||||
主体信息
|
||||
|
|
@ -81,7 +81,7 @@
|
|||
<el-row>
|
||||
<el-form-item label="列入原因" required class="bt0">
|
||||
<el-col :span="24">
|
||||
<el-select v-model="reason" style="width:100%" placeholder="请选择列入原因" class="custom" :disabled="isBatchNB">
|
||||
<el-select v-model="reason" style="width:100%" placeholder="请选择列入原因" class="custom">
|
||||
<el-option
|
||||
v-for="item in reasonOptions"
|
||||
:key="item.value"
|
||||
|
|
@ -95,7 +95,7 @@
|
|||
<el-row>
|
||||
<el-form-item label="案件来源" required prop="caseSource" class="bt0">
|
||||
<el-col :span="24">
|
||||
<el-select v-model="caseSource" style="width:100%" placeholder="请选择案件来源" class="custom" >
|
||||
<el-select v-model="caseSource" style="width:100%" placeholder="请选择案件来源" class="custom">
|
||||
<el-option
|
||||
v-for="item in caseSourceOptions"
|
||||
:key="item.value"
|
||||
|
|
@ -120,7 +120,7 @@
|
|||
<el-row>
|
||||
<el-form-item v-if="dataFrom === '3'" label="现场核查人员" prop="remark" class="bt0">
|
||||
<el-col :span="24">
|
||||
<div style="margin-top: 10px">{{regEntryUserName}}</div>
|
||||
<div style="margin-top: 10px">{{ regEntryUserName }}</div>
|
||||
<!-- <el-input v-model="regEntryUserName" placeholder="现场核查人员" style="width:100%" disabled maxlength="500" show-word-limit />-->
|
||||
</el-col>
|
||||
</el-form-item>
|
||||
|
|
@ -370,7 +370,7 @@ import DetailHead from '@/components/DetailHead'
|
|||
import HandleDialog from '@/components/HandleDialog'
|
||||
import { removeAttachementById, listAttachmentByBizseq } from '@/api/attachment'
|
||||
import { returnClue, deleteClue, nextAbnormaInclusionProcess,
|
||||
getBizSpeListPage, removeBySpelistid, searchBizSpeByBizSeqId, getDecContent, validateBiz, down, checkIsBatchNB } from '@/api/abnormal'
|
||||
getBizSpeListPage, removeBySpelistid, getDecContent, validateBiz, down } from '@/api/abnormal'
|
||||
import { getUsersPermission } from '@/api/user'
|
||||
import { validBeforeUpload } from '@/api/fileUpload'
|
||||
import { getConstant } from '@/api/system'
|
||||
|
|
@ -620,37 +620,10 @@ export default {
|
|||
}
|
||||
})
|
||||
}),
|
||||
checkIsBatchNB({ bizSeq: this.bizseq }).then(res => {
|
||||
this.isBatchNB = res.data
|
||||
}),
|
||||
this.loadRemListPage(),
|
||||
// listAbnormalByBizSeq(this.bizseq).then(res => {
|
||||
// if (res.code === 0) {
|
||||
// // 添加分页index
|
||||
// let i = 1
|
||||
// const pageStart = (this.currentPage - 1) * this.pageSize
|
||||
// res.data.forEach(each => {
|
||||
// each.index = pageStart + i++
|
||||
// each.name = each.entname
|
||||
// each.typeName = each.entTypeName
|
||||
// // this.$set(this, 'reason', each.specause)
|
||||
// this.entbase.push(each)
|
||||
// })
|
||||
// this.reason = this.entbase[0].specause
|
||||
// this.remark = this.entbase[0].remark === 'null' ? '' : this.entbase[0].remark
|
||||
// if (this.entbase[0].decisionContent !== null) {
|
||||
// this.$nextTick(() => {
|
||||
// this.decisionContent = this.entbase[0].decisionContent
|
||||
// })
|
||||
// }
|
||||
// // 分页处理
|
||||
// this.total = this.entbase.length
|
||||
// // 计算页数
|
||||
// this.calcPageData()
|
||||
// } else {
|
||||
// this.$message.error('加载异常名录主体信息失败')
|
||||
// }
|
||||
// checkIsBatchNB({ bizSeq: this.bizseq }).then(res => {
|
||||
// this.isBatchNB = res.data
|
||||
// }),
|
||||
this.loadRemListPage(),
|
||||
|
||||
// 加载附件清单
|
||||
listAttachmentByBizseq(this.bizseq).then(data => {
|
||||
|
|
@ -1109,7 +1082,7 @@ export default {
|
|||
index = i
|
||||
}
|
||||
}
|
||||
this.fileList.splice(index,1)
|
||||
this.fileList.splice(index, 1)
|
||||
} else {
|
||||
this.$message.error(res.msg)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -92,7 +92,7 @@
|
|||
<div class="content-body">
|
||||
<el-row class="bl0" style="margin-bottom: 10px">
|
||||
<el-col :span="6">
|
||||
<el-button style="margin-left: 50px" size="mini" type="primary" @click="templateDialog = true">未年报批量列异</el-button>
|
||||
<el-button style="margin-left: 50px" size="mini" type="primary" @click="templateDialog = true">批量列异</el-button>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<div class="body">
|
||||
|
|
@ -348,7 +348,7 @@
|
|||
import searchHeader from '@/components/searchHeader'
|
||||
import pageSelector from '@/components/PageSelector'
|
||||
import { commonPage } from '@/api/company'
|
||||
import { saveAbnormalAccept, getRegulatory, validateBiz, saveBatchAbnListAccept, saveBatchAbnListAcceptByNB, removeClue, saveIvdAccept, saveAcceptBatch } from '@/api/abnormal'
|
||||
import { saveAbnormalAccept, getRegulatory, validateBiz, saveBatchAbnListAcceptByNB, saveIvdAccept, saveAcceptBatch } from '@/api/abnormal'
|
||||
import { getConstant, getOrgTreeList } from '@/api/system'
|
||||
import { getBasePage } from '@/api/entBase'
|
||||
import FakeProgress from '@/components/FakeProgress'
|
||||
|
|
@ -596,8 +596,8 @@ export default {
|
|||
this.showFakeProgress = false
|
||||
var resData = {}
|
||||
this.$confirm(`可导数量:${res.data.enableSize} 不可导数量:${res.data.disableSize}`, '导入筛选结果', {
|
||||
confirmButtonText: '继续导入',
|
||||
cancelButtonText: '保存清单',
|
||||
confirmButtonText: '发起业务',
|
||||
cancelButtonText: '保存不可导入清单',
|
||||
distinguishCancelAndClose: true,
|
||||
beforeClose: (action, instance, done) => {
|
||||
if (action === 'confirm') {
|
||||
|
|
|
|||
Loading…
Reference in New Issue