mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-21 18:16:43 +08:00
[FIX]入司流程查看-审批拒绝原因bug
This commit is contained in:
@@ -177,6 +177,7 @@ export default {
|
||||
},
|
||||
created() {
|
||||
this.processCheck()
|
||||
localStorage.setItem('agentEnter-refusalCause', '')
|
||||
},
|
||||
methods: {
|
||||
processCheck() {
|
||||
@@ -256,8 +257,9 @@ export default {
|
||||
} else {
|
||||
let obj = this.proces.ebizExamineApproveDtoList[Number(val)]
|
||||
this.refusalCause = obj.examineApproveMsg
|
||||
localStorage.setItem('agentEnter-refusalCause', this.refusalCause)
|
||||
}
|
||||
this.$store.commit('updateRefusalCause', this.refusalCause)
|
||||
// this.$store.commit('updateRefusalCause', this.refusalCause)
|
||||
this.$jump({
|
||||
flag: 'h5',
|
||||
extra: {
|
||||
@@ -286,7 +288,7 @@ export default {
|
||||
if (examineApproveStatus == '1') {
|
||||
text = '审批中'
|
||||
} else if (examineApproveStatus == '2') {
|
||||
text = examineApproveResult == '1' ? '审批通过' : '拒绝审批'
|
||||
text = examineApproveResult == '1' ? '审批通过' : '审批拒绝'
|
||||
}
|
||||
return text
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<img :src="srcSuccess" class=" mb15 pt15" width="100" />
|
||||
<div v-if="refusalCause == '' || refusalCause == undefined">
|
||||
<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">
|
||||
<li v-for="(causeText, index) in cause" :key="index">{{ index + 1 }}.{{ causeText.text }}</li>
|
||||
</ul>
|
||||
@@ -40,10 +40,10 @@ export default {
|
||||
]
|
||||
}
|
||||
},
|
||||
created() {},
|
||||
mounted() {
|
||||
this.refusalCause = this.$store.getters.getRefusalCause
|
||||
console.log('refusalCause ==', this.refusalCause)
|
||||
// this.refusalCause = this.$store.getters.getRefusalCause
|
||||
// console.log('refusalCause ==', this.refusalCause)
|
||||
this.refusalCause = localStorage.getItem('agentEnter-refusalCause')
|
||||
},
|
||||
methods: {
|
||||
goBaseInfo() {
|
||||
|
||||
Reference in New Issue
Block a user