mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-22 03:36:44 +08:00
[FIX]入司流程查看-审批拒绝原因bug
This commit is contained in:
@@ -177,6 +177,7 @@ export default {
|
|||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.processCheck()
|
this.processCheck()
|
||||||
|
localStorage.setItem('agentEnter-refusalCause', '')
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
processCheck() {
|
processCheck() {
|
||||||
@@ -256,8 +257,9 @@ export default {
|
|||||||
} else {
|
} else {
|
||||||
let obj = this.proces.ebizExamineApproveDtoList[Number(val)]
|
let obj = this.proces.ebizExamineApproveDtoList[Number(val)]
|
||||||
this.refusalCause = obj.examineApproveMsg
|
this.refusalCause = obj.examineApproveMsg
|
||||||
|
localStorage.setItem('agentEnter-refusalCause', this.refusalCause)
|
||||||
}
|
}
|
||||||
this.$store.commit('updateRefusalCause', this.refusalCause)
|
// this.$store.commit('updateRefusalCause', this.refusalCause)
|
||||||
this.$jump({
|
this.$jump({
|
||||||
flag: 'h5',
|
flag: 'h5',
|
||||||
extra: {
|
extra: {
|
||||||
@@ -286,7 +288,7 @@ export default {
|
|||||||
if (examineApproveStatus == '1') {
|
if (examineApproveStatus == '1') {
|
||||||
text = '审批中'
|
text = '审批中'
|
||||||
} else if (examineApproveStatus == '2') {
|
} else if (examineApproveStatus == '2') {
|
||||||
text = examineApproveResult == '1' ? '审批通过' : '拒绝审批'
|
text = examineApproveResult == '1' ? '审批通过' : '审批拒绝'
|
||||||
}
|
}
|
||||||
return text
|
return text
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<img :src="srcSuccess" class=" mb15 pt15" width="100" />
|
<img :src="srcSuccess" class=" mb15 pt15" width="100" />
|
||||||
<div v-if="refusalCause == '' || refusalCause == undefined">
|
<div v-if="refusalCause == '' || refusalCause == undefined">
|
||||||
<h4 class="text-left ph50">入司资料审核不通过,可能是以下问题,请修改相应资料,确认无误后再次提交审核!</h4>
|
<h4 class="text-left ph50">入司资料审核不通过,可能是以下问题,请修改相应资料,确认无误后再次提交审核!</h4>
|
||||||
<div class="text-left mt60 c-gray-base">未通过原因</div>
|
<div class="text-left mt60 c-gray-base">未通过原因:</div>
|
||||||
<ul class="text-left c-gray-base">
|
<ul class="text-left c-gray-base">
|
||||||
<li v-for="(causeText, index) in cause" :key="index">{{ index + 1 }}.{{ causeText.text }}</li>
|
<li v-for="(causeText, index) in cause" :key="index">{{ index + 1 }}.{{ causeText.text }}</li>
|
||||||
</ul>
|
</ul>
|
||||||
@@ -40,10 +40,10 @@ export default {
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {},
|
|
||||||
mounted() {
|
mounted() {
|
||||||
this.refusalCause = this.$store.getters.getRefusalCause
|
// this.refusalCause = this.$store.getters.getRefusalCause
|
||||||
console.log('refusalCause ==', this.refusalCause)
|
// console.log('refusalCause ==', this.refusalCause)
|
||||||
|
this.refusalCause = localStorage.getItem('agentEnter-refusalCause')
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
goBaseInfo() {
|
goBaseInfo() {
|
||||||
|
|||||||
Reference in New Issue
Block a user