diff --git a/src/views/expelled/除名修复管理/一移出受理.vue b/src/views/expelled/除名修复管理/一移出受理.vue
index efda77c..c4bd817 100644
--- a/src/views/expelled/除名修复管理/一移出受理.vue
+++ b/src/views/expelled/除名修复管理/一移出受理.vue
@@ -203,10 +203,10 @@
{{ each.opinioncontent }}
-
+
{{ each.handler }}
{{ each.handledate }}
@@ -567,7 +567,7 @@ export default {
}
},
mounted() {
- this.bizId = this.$route.query.bizId
+ this.bizId = this.$route.query.bizId || this.$route.query.bizSeq
expelledRepairGetBiz(this.bizId).then(res => {
if (res.code === 0) {
this.detailInfo = res.data
@@ -1071,7 +1071,7 @@ export default {
nextPerformerNames: this.formData.nextPerformerNames,
repairApproveInfo: {
...this.detailInfo.repairInfo,
- acceptStatus: this.isAccept,
+ acceptStatus: this.isAgreeRepair,
repairReason: this.repairReason,
situation: this.formData.situation,
remark: this.remRemark
diff --git a/src/views/expelled/除名修复管理/三移出审批.vue b/src/views/expelled/除名修复管理/三移出审批.vue
index 7ba1fd7..ebaa7f9 100644
--- a/src/views/expelled/除名修复管理/三移出审批.vue
+++ b/src/views/expelled/除名修复管理/三移出审批.vue
@@ -5,7 +5,7 @@

- {{ isAgreeRepair === '1'? '除名修复审批表':'不予除名修复审批表' }}
+ {{ acceptStatus === '1'? '除名修复审批表':'不予除名修复审批表' }}
@@ -25,14 +25,14 @@
>
| 名称/姓名 |
- {{ companyInfo.entname }} |
+ {{ companyInfo?.repairInfo?.entName || '-' }} |
注册号/企业统一信用代码 |
- {{ companyInfo.regno }} |
+ {{ companyInfo?.repairInfo?.uscc || '-'}} |
| 作出决定的事实、理由、依据及主要内容 |
- {{ companyInfo.remreasons }}
+ {{ companyInfo?.repairInfo?.situation || '-'}}
|
@@ -41,10 +41,10 @@
{{ each.opinioncontent }}
-
+
{{ each.handler }}
{{ each.handledate }}
@@ -134,7 +134,7 @@
|
| 备注 |
- {{ companyInfo.remRemark }}
+ {{ companyInfo?.repairInfo?.remark || '-' }}
|
@@ -142,7 +142,7 @@
*是否审批通过
|
-
+
通过
回退
@@ -154,37 +154,6 @@
-
-
-
-
-
- {{ user.orgName }}
-
-
-
-
- {{ dialogTitle }}
-
-
-
-
- {{ companyInfo.entname }}
-
-
-
-
-
-
-
| 注册号/企业统一信用代码 |
- {{ companyInfo.regno }} |
+ {{ companyInfo?.repairInfo?.uscc || '-'}} |
- | 企业名称 | {{ companyInfo.entname }} |
+ | 企业名称 | {{ companyInfo?.repairInfo?.entName || '-'}} |
| 申请时间 |
- {{ companyInfo.applyTime }} |
+ {{ companyInfo?.repairInfo?.applyDate || '-' }} |
| 申请人 |
- {{ companyInfo.applicant }}
+ {{ companyInfo?.repairInfo?.contactName || '-' }}
|
- | 经营异常列入时间 |
+ 除名时间 |
- {{ tsabnlist.abntime }}
+ {{ companyInfo?.repairInfo?.removeDate || '-' }}
|
- | 经营异常列入机关 |
+ 除名列入机关 |
- {{ tsabnlist.intoDecorg }}
+ {{ companyInfo?.repairInfo?.removeOrgName || '-' }}
|
- | 经营异常列入原因 |
+ 除名原因 |
- {{ tsabnlist.spereasons }}
+ {{ companyInfo?.repairInfo?.situation || '-' }}
|
@@ -425,14 +394,13 @@ import editor from '@/components/editor.vue'
import { getConstant } from '@/api/system'
import { isMenHu } from '@/utils/utils'
import { checkPyBlacklist } from '@/api/pyBlacklist'
+import { expelledRepairNextBiz, expelledRepairGetBiz } from '@/api/除名公告'
export default {
- components: {
- Editor: editor
- },
data() {
return {
repairType: '1',
+ acceptStatus: '',
entInfoDialog: false,
isAccept: '',
firstEnt: {},
@@ -451,7 +419,7 @@ export default {
aicepsList: [], // 年报记录
eGtAlterRecoderList: [], // 变更记录
formData: {
- nextNodeID: 'endExptlist',
+ nextNodeId: 'endExptlist',
handledate: this.$moment().format('YYYY-MM-DD HH:mm:ss'),
opinion: '',
remark: ''
@@ -526,15 +494,6 @@ export default {
})
this.formData.opinion = name
},
- isAgreeRepair: {
- handler(newMsg, oldMsg) {
- if (newMsg === '1') {
- this.getRepairDecContent()
- } else if (newMsg === '0') {
- this.getNoRepairDecContent()
- }
- }
- },
specauseType() {
if (this.specauseType === 'nb') {
this.$set(this, 'fujianType', '未年报')
@@ -546,11 +505,14 @@ export default {
}
},
mounted() {
- this.bizseq = this.$route.query.bizseq // 获取跳转携带的参数bizseq
+ this.bizseq = this.$route.query.bizSeq // 获取跳转携带的参数bizseq
this.workflowId = this.$route.query.workflowId
- this.tasklistid = this.$route.query.tasklistid
+ this.tasklistid = this.$route.query.taskId
this.type = this.$route.query.type
-
+ expelledRepairGetBiz(this.bizseq).then(res => {
+ this.companyInfo = res.data
+ this.acceptStatus = res.data.repairInfo.acceptStatus
+ })
// 加载企业移出原因
getConstant('CD74').then(res => {
if (res.code === 0) {
@@ -595,63 +557,50 @@ export default {
})
// 加载待移出主体名单及 事实理由
- getBizRemInfo(this.bizseq).then(res => {
- if (res.code === 0) {
- // 添加分页index
- const list = []
- let i = 1
- const pageStart = (this.currentPage - 1) * this.pageSize
- res.data.bizList.forEach(each => {
- each.index = pageStart + i++
- each.uscc = each.uniscid ? each.uniscid : each.regno // 有统一码显示统一码 没有用注册号
- list.push(each)
- })
- this.entbase = list
- this.tsabnlist = res.data.tsAbnList
- const bizInfo = res.data.bizRemListMOdel
- this.companyInfo = res.data.bizRemListMOdel
- this.isAccept = bizInfo.isAccept
- this.isAgreeRepair = bizInfo.isAgreeRepair
- this.entname = bizInfo.entname
- this.$set(this, 'reason', bizInfo.remexcpres)
- this.specause = bizInfo.specause
- this.remRemark = bizInfo.remRemark
- this.specauseType = bizInfo.specauseType
- // 分页处理
- // this.total = this.entbase.length
- // 计算页数
- // this.calcPageData()
- // if (this.specause === '1') {
- // this.isnb(bizInfo.abnlistid)
- // }
- this.check_py(this.tsabnlist.uniscid)
- } else {
- this.$message.error('加载异常名录主体信息失败')
- }
- })
- if (this.type === 'farmer' || this.type === 'company') {
- this.repairType = '1'
- } else if (this.type === 'individual') {
- this.repairType = '2'
- }
- this.loadAttachmentList()
+ // getBizRemInfo(this.bizseq).then(res => {
+ // if (res.code === 0) {
+ // const list = []
+ // let i = 1
+ // const pageStart = (this.currentPage - 1) * this.pageSize
+ // res.data.bizList.forEach(each => {
+ // each.index = pageStart + i++
+ // each.uscc = each.uniscid ? each.uniscid : each.regno // 有统一码显示统一码 没有用注册号
+ // list.push(each)
+ // })
+ // this.entbase = list
+ // this.tsabnlist = res.data.tsAbnList
+ // const bizInfo = res.data.bizRemListMOdel
+ // this.companyInfo = res.data.bizRemListMOdel
+ // this.isAccept = bizInfo.isAccept
+ // this.isAgreeRepair = bizInfo.isAgreeRepair
+ // this.entname = bizInfo.entname
+ // this.$set(this, 'reason', bizInfo.remexcpres)
+ // this.specause = bizInfo.specause
+ // this.remRemark = bizInfo.remRemark
+ // this.specauseType = bizInfo.specauseType
+ // this.check_py(this.tsabnlist.uniscid)
+ // } else {
+ // this.$message.error('加载异常名录主体信息失败')
+ // }
+ // })
+ // this.loadAttachmentList()
// 获取主体年报记录
- getaicepsYbList(this.bizseq).then(res => {
- if (res.code === 0) {
- this.aicepsList = res.data
- } else {
- this.$message.error('加载年报记录失败')
- }
- })
+ // getaicepsYbList(this.bizseq).then(res => {
+ // if (res.code === 0) {
+ // this.aicepsList = res.data
+ // } else {
+ // this.$message.error('加载年报记录失败')
+ // }
+ // })
- // 获取变更记录
- geteGtAlterRecoderList(this.bizseq).then(res => {
- if (res.code === 0) {
- this.eGtAlterRecoderList = res.data
- } else {
- this.$message.error('加载变更记录失败')
- }
- })
+ // // 获取变更记录
+ // geteGtAlterRecoderList(this.bizseq).then(res => {
+ // if (res.code === 0) {
+ // this.eGtAlterRecoderList = res.data
+ // } else {
+ // this.$message.error('加载变更记录失败')
+ // }
+ // })
},
methods: {
// 番禺启示录
@@ -1043,18 +992,28 @@ export default {
return this.$message.error('请输入部门负责人意见')
}
this.formData.isagree = '1'
- if (this.formData.nextNodeID === 'exptlistEnter') {
+ if (this.formData.nextNodeId === 'exptlistEnter') {
this.formData.isagree = '2'
}
- this.formData.nextPerformerids = ''
- this.formData.bizseq = this.bizseq
+ this.formData.nextPerformerIds = ''
+ this.formData.bizId = this.bizseq
this.formData.workflowid = this.workflowId
- this.formData.tasklistid = this.tasklistid
+ this.formData.taskId = this.tasklistid
this.formData.handler = this.user.nickname
this.formData.handlerid = this.user.primaryKey
- this.formData.opiniontype = '2'
- this.formData.opinioncontent = this.formData.opinion
- bizRemoveNext(this.formData).then(res => {
+ expelledRepairNextBiz({
+ ...this.formData,
+ nextNodeId: this.formData.nextNodeId,
+ repairApproveInfo: {
+ ...this.companyInfo.repairInfo
+ },
+ opinionQuery: {
+ opinioncontent: this.formData.opinion,
+ opiniontype: '2',
+ isagree: this.formData.isagree,
+ handledate: this.formData.handledate
+ }
+ }).then(res => {
this.submitLoading = false
if (res.code === 0) {
this.$message.success('提交成功')
@@ -1240,5 +1199,7 @@ export default {
}
}
}
-
+.submit-btn-box {
+ text-align: center;
+}
diff --git a/src/views/expelled/除名修复管理/二移出审核.vue b/src/views/expelled/除名修复管理/二移出审核.vue
index 7da16e7..caf2096 100644
--- a/src/views/expelled/除名修复管理/二移出审核.vue
+++ b/src/views/expelled/除名修复管理/二移出审核.vue
@@ -4,7 +4,7 @@

- {{ isAgreeRepair === '1'? '信用修复审批表':'不予信用修复审批表' }}
+ {{ acceptStatus === '1'? '除名修复审批表':'不予除名修复审批表' }}
@@ -25,17 +25,16 @@
>
| 名称/姓名 |
- {{ companyInfo.entname }} |
+ {{ companyInfo?.repairInfo?.entName || '-' }} |
注册号/企业统一信用代码 |
- {{ companyInfo.regno }} |
+ {{ companyInfo?.repairInfo?.uscc || '-'}} |
| 作出决定的事实、理由、依据及主要内容 |
- {{ companyInfo.remreasons }}
+ {{ companyInfo?.repairInfo?.situation || '-'}}
|
- {{ historyLog }}
| {{ each.label }} |
@@ -137,7 +136,7 @@
| 备注 |
- {{ companyInfo.remRemark }}
+ {{ companyInfo?.repairInfo?.remark || '-' }}
|
@@ -145,16 +144,16 @@
*是否审核通过
|
-
+
通过
回退
|
-
+
| *审批人 |
-
+
-
-
-
-
-
- {{ user.orgName }}
-
-
-
-
- {{ dialogTitle }}
-
-
-
-
- {{ companyInfo.entname }}
-
-
-
-
-
-
-
| 注册号/企业统一信用代码 |
- {{ companyInfo.regno }} |
+ {{ companyInfo?.repairInfo?.uscc || '-'}} |
- | 企业名称 | {{ companyInfo.entname }} |
+ | 企业名称 | {{ companyInfo?.repairInfo?.entName || '-'}} |
| 申请时间 |
- {{ companyInfo.applyTime }} |
+ {{ companyInfo?.repairInfo?.applyDate || '-' }} |
| 申请人 |
- {{ companyInfo.applicant }}
+ {{ companyInfo?.repairInfo?.contactName || '-' }}
|
- | 经营异常列入时间 |
+ 除名时间 |
- {{ tsabnlist.abntime }}
+ {{ companyInfo?.repairInfo?.removeDate || '-' }}
|
- | 经营异常列入机关 |
+ 除名列入机关 |
- {{ tsabnlist.intoDecorg }}
+ {{ companyInfo?.repairInfo?.removeOrgName || '-' }}
|
- | 经营异常列入原因 |
+ 除名原因 |
- {{ tsabnlist.spereasons }}
+ {{ companyInfo?.repairInfo?.situation || '-' }}
|
@@ -260,12 +227,10 @@
cellspacing="0"
>
-
| 证据材料 |
-
- 《信用修复申请书》
+ 《除名修复申请书》
-
@@ -288,7 +251,7 @@
|
|
- 《信用修复承诺书》
+ 《除名修复承诺书》
-
@@ -310,7 +272,6 @@
|
|
-
履行法定义务、纠正违法行为的相关材料
-
-
@@ -334,7 +293,6 @@
|
-
履行法定义务、纠正违法行为的相关材料
|
- 《移出经营异常名录授权委托书》
+ 《除名修复授权委托书》
import { removeAttachementById, listAttachmentByBizseq, uploadFile } from '@/api/attachment'
-import {
- bizRemoveNext,
- getBizRemInfo,
- checknb,
- getaicepsYbList, geteGtAlterRecoderList
+import { checknb
+ // getaicepsYbList, geteGtAlterRecoderList
} from '@/api/abnormal'
import { getUsersWithPermission } from '@/api/user'
-import { getContentsWithBizseq, getNewestOpinion, saveOrUpdateContent } from '@/api/credit'
+import { getNewestOpinion, saveOrUpdateContent } from '@/api/credit'
import { taskOpinion } from '@/api/task'
-import editor from '@/components/editor.vue'
import { getConstant } from '@/api/system'
import { isMenHu } from '@/utils/utils'
import { checkPyBlacklist } from '@/api/pyBlacklist'
import { expelledRepairNextBiz, expelledRepairGetBiz } from '@/api/除名公告'
export default {
- components: {
- Editor: editor
- },
data() {
return {
repairType: '1',
@@ -477,11 +428,12 @@ export default {
tasklistid: '',
opinion: '',
reason: '',
+ acceptStatus: '',
companyInfo: {},
aicepsList: [], // 年报记录
eGtAlterRecoderList: [], // 变更记录
formData: {
- nextNodeID: 'approvelist',
+ nextNodeId: 'approvelist',
opinion: '',
handledate: this.$moment().format('YYYY-MM-DD HH:mm:ss')
},
@@ -557,15 +509,6 @@ export default {
})
this.$set(this.formData, 'opinion', name)
},
- isAgreeRepair: {
- handler(newMsg, oldMsg) {
- if (newMsg === '1') {
- this.getRepairDecContent()
- } else if (newMsg === '0') {
- this.getNoRepairDecContent()
- }
- }
- },
specauseType() {
if (this.specauseType === 'nb') {
this.$set(this, 'fujianType', '未年报')
@@ -579,11 +522,11 @@ export default {
async mounted() {
this.bizseq = this.$route.query.bizSeq // 获取跳转携带的参数bizseq
this.workflowId = this.$route.query.workflowId
- this.tasklistid = this.$route.query.tasklistid
+ this.tasklistid = this.$route.query.taskId
this.type = this.$route.query.type
expelledRepairGetBiz(this.bizseq).then(res => {
- console.log(res)
- this.companyInfo = res.data.repairInfo
+ this.companyInfo = res.data
+ this.acceptStatus = res.data.repairInfo.acceptStatus
})
// 加载企业移出原因
getConstant('CD74').then(res => {
@@ -660,30 +603,25 @@ export default {
// 加载审核人
this.loadReviewer()
- if (this.type === 'farmer' || this.type === 'company') {
- this.repairType = '1'
- } else if (this.type === 'individual') {
- this.repairType = '2'
- }
this.loadAttachmentList()
// 获取主体年报记录
- getaicepsYbList(this.bizseq).then(res => {
- if (res.code === 0) {
- this.aicepsList = res.data
- } else {
- this.$message.error('加载年报记录失败')
- }
- })
+ // getaicepsYbList(this.bizseq).then(res => {
+ // if (res.code === 0) {
+ // this.aicepsList = res.data
+ // } else {
+ // this.$message.error('加载年报记录失败')
+ // }
+ // })
- // 获取变更记录
- geteGtAlterRecoderList(this.bizseq).then(res => {
- if (res.code === 0) {
- this.eGtAlterRecoderList = res.data
- } else {
- this.$message.error('加载变更记录失败')
- }
- })
+ // // 获取变更记录
+ // geteGtAlterRecoderList(this.bizseq).then(res => {
+ // if (res.code === 0) {
+ // this.eGtAlterRecoderList = res.data
+ // } else {
+ // this.$message.error('加载变更记录失败')
+ // }
+ // })
},
methods: {
// 番禺启示录
@@ -927,52 +865,6 @@ export default {
await this.$refs.editorDialog.$emit('clear')
}
},
- // 获取不予受理决定书内容
- getDisagreeDecContent() {
- this.tswrittemplate.bizseq = this.bizseq
- this.tswrittemplate.writsType = '51'
- getContentsWithBizseq(this.tswrittemplate).then(res => {
- if (res.code === 0) {
- this.tswrittemplate.content = res.data.content
- } else {
- this.$message.error(res.msg)
- }
- })
- },
- // 获取不予信用修复决定书内容
- getNoRepairDecContent() {
- this.tswrittemplate.bizseq = this.bizseq
- if (this.type === 'farmer' || this.type === 'company') {
- this.$set(this.tswrittemplate, 'writsType', '55')
- } else {
- this.$set(this.tswrittemplate, 'writsType', '58')
- }
- this.tswrittemplate.type = this.type
- getContentsWithBizseq(this.tswrittemplate).then(res => {
- if (res.code === 0) {
- this.tswrittemplate.content = res.data.content
- } else {
- this.$message.error(res.msg)
- }
- })
- },
- // 获取准予信用修复决定书内容
- getRepairDecContent() {
- this.tswrittemplate.bizseq = this.bizseq
- if (this.type === 'farmer' || this.type === 'company') {
- this.$set(this.tswrittemplate, 'writsType', '56')
- } else {
- this.$set(this.tswrittemplate, 'writsType', '59')
- }
- this.tswrittemplate.type = this.type
- getContentsWithBizseq(this.tswrittemplate).then(res => {
- if (res.code === 0) {
- this.tswrittemplate.content = res.data.content
- } else {
- this.$message.error(res.msg)
- }
- })
- },
handleSuccess(index) {
return (res, file) => {
if (res.code === 0) {
@@ -1087,35 +979,45 @@ export default {
this.submitLoading = false
return this.$message.error('请输入经办机构负责人意见')
}
- if (this.formData.nextNodeID === 'approvelist' && this.$util.isEmpty(this.formData.nextPerformerids)) {
+ if (this.formData.nextNodeId === 'approvelist' && this.$util.isEmpty(this.formData.nextPerformerIds)) {
this.submitLoading = false
return this.$message.error('请选择审批人')
}
let name = ''
- const userId = this.formData.nextPerformerids
+ const userId = this.formData.nextPerformerIds
this.reviewer.forEach(each => {
if (userId === each.primaryKey) {
name = each.name
}
})
this.formData.isagree = '1'
- if (this.formData.nextNodeID === 'exptlistEnter') {
- this.formData.nextPerformerids = ''
+ if (this.formData.nextNodeId === 'exptlistEnter') {
+ this.formData.nextPerformerIds = ''
this.formData.isagree = '2'
}
for (const i in this.reviewer) {
- if (this.reviewer[i].primaryKey === this.formData.nextPerformerids) {
+ if (this.reviewer[i].primaryKey === this.formData.nextPerformerIds) {
this.formData.nextPerformerNames = this.reviewer[i].name
}
}
- this.formData.bizseq = this.bizseq
+ this.formData.bizId = this.bizseq
this.formData.workflowid = this.workflowId
- this.formData.tasklistid = this.tasklistid
+ this.formData.taskId = this.tasklistid
this.formData.handler = this.user.nickname
- this.formData.handlerid = this.user.primaryKey
- this.formData.opiniontype = '1'
- this.formData.opinioncontent = this.formData.opinion
- expelledRepairNextBiz(this.formData).then(res => {
+ expelledRepairNextBiz({
+ ...this.formData,
+ nextNodeId: this.formData.nextNodeId,
+ repairApproveInfo: {
+ ...this.companyInfo.repairInfo
+ },
+ opinionQuery: {
+ opinioncontent: this.formData.opinion,
+ handlerid: this.user.primaryKey,
+ opiniontype: '1',
+ isagree: this.formData.isagree,
+ handledate: this.formData.handledate
+ }
+ }).then(res => {
this.submitLoading = false
if (res.code === 0) {
this.$message.success('提交成功')
@@ -1347,5 +1249,8 @@ $font-size-label:#666;
text-align: $text-algin-left;
}
}
- }
+}
+.submit-btn-box {
+ text-align: center;
+}
| | | | |