|
@@ -160,7 +160,7 @@ export default {
|
|
|
taskStatus: [{ name: '进行中', value: 0 }, { name: '已上线', value: 1 }],
|
|
|
bugStatus: [{ name: '待解决', value: 0 }, { name: '已解决', value: 1 }],
|
|
|
userInformation: localStorage.getItem('username'),
|
|
|
- bizJson: localStorage.getItem('key'),
|
|
|
+ bizJson: localStorage.getItem('bizId'),
|
|
|
dialogTableVisible: false,
|
|
|
dialogTableVisible1: false,
|
|
|
dialogTableVisible0: false,
|
|
@@ -227,7 +227,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
- this.getTopShowData(localStorage.getItem('key'))
|
|
|
+ this.getTopShowData(localStorage.getItem('bizId'))
|
|
|
this.Setstatus(1)
|
|
|
},
|
|
|
methods: {
|
|
@@ -290,7 +290,7 @@ export default {
|
|
|
this.isBugOrTask = e.isBugOrTask
|
|
|
this.userName = e
|
|
|
this.userName.status = e.status
|
|
|
- this.userName.bizId = localStorage.getItem('key')
|
|
|
+ this.userName.bizId = localStorage.getItem('bizId')
|
|
|
this.userName.handlerPerson = this.userInformation
|
|
|
this.userName.title = e.titles
|
|
|
personalworkstationQueryBackLogBugAndTask(this.userName).then(res => {
|
|
@@ -318,7 +318,7 @@ export default {
|
|
|
this.$set(this.bugOrTask1, 'status', '')
|
|
|
this.tableType = []
|
|
|
this.Informationen.isBugOrTask = e
|
|
|
- this.Informationen.bizId = localStorage.getItem('key')
|
|
|
+ this.Informationen.bizId = localStorage.getItem('bizId')
|
|
|
this.Informationen.handlerPerson = this.userInformation
|
|
|
personalworkstationQueryStatusAndPriority(this.Informationen).then(res => {
|
|
|
var backLogStatusList = res.data.backLogStatusList
|
|
@@ -341,7 +341,7 @@ export default {
|
|
|
this.total = 0
|
|
|
this.$set(this.bugOrTask, 'isBugOrTask', 1)
|
|
|
if (tab.label === '工作统计') {
|
|
|
- this.userName = { bizId: localStorage.getItem('key'), handlerPerson: this.userInformation, timeType: 0 }
|
|
|
+ this.userName = { bizId: localStorage.getItem('bizId'), handlerPerson: this.userInformation, timeType: 0 }
|
|
|
personalworkstationQueryPeriodBugAndTask(this.userName).then(res => {
|
|
|
this.HashSet = res.data.taskInfoDoingList.length
|
|
|
this.HashSetArray = res.data.taskInfoDoingList
|
|
@@ -387,7 +387,7 @@ export default {
|
|
|
if (e.value2) {
|
|
|
if (e.value2 !== '') {
|
|
|
var obj = {
|
|
|
- bizId: localStorage.getItem('key'),
|
|
|
+ bizId: localStorage.getItem('bizId'),
|
|
|
timeType: this.selectData,
|
|
|
status: e.status,
|
|
|
isBugOrTask: e.isBugOrTask,
|
|
@@ -423,7 +423,7 @@ export default {
|
|
|
Setstatus(e) {
|
|
|
this.$set(this.bugOrTask, 'status', '')
|
|
|
this.Informationen.isBugOrTask = e
|
|
|
- this.Informationen.bizId = localStorage.getItem('key')
|
|
|
+ this.Informationen.bizId = localStorage.getItem('bizId')
|
|
|
this.Informationen.handlerPerson = this.userInformation
|
|
|
personalworkstationQueryStatusAndPriority(this.Informationen).then(res => {
|
|
|
if (res.code === 200) {
|