问题件状态和title栏修改

This commit is contained in:
mengxiaolong
2020-08-20 13:50:09 +08:00
parent 3f57de2c39
commit e46839867c
2 changed files with 11 additions and 5 deletions

View File

@@ -651,6 +651,13 @@ export default {
async created() {
// 问题件类型
this.issueType = this.$route.params.type
if (this.issueType === 'TB89') {
document.title = '新契约基本问题件通知书'
} else if (this.issueType === '818901') {
document.title = '转账不成功问题件'
} else if (this.issueType === '828601') {
document.title = '补充资料通知书'
}
if (this.isWeixin) {
localStorage.setItem('token', this.$route.query.token)
let imgBase64Data = sessionStorage.getItem('twoimgBase64Data')

View File

@@ -248,15 +248,14 @@ export default {
stateFilter(val) {
switch (val) {
case '0':
return '已下发'
return '待客户处理处理问题件'
case '1':
return '已打印'
case '2':
return '已回扫'
return '待核心处理问题件'
case '3':
return '已回销'
return '已线下打印通知书,待客户处理'
case '4':
return '已逾期'
return '问题件逾期未处理,已撤单'
default:
return ''
}