Browse Source

修改已办列表提示错误

master
yunuo970428 3 years ago
parent
commit
e6a48fd3bb
  1. 13
      anrui-system-ui/src/views/flow/doneList.vue
  2. 5
      anrui-system-ui/src/views/flow/todoList.vue

13
anrui-system-ui/src/views/flow/doneList.vue

@ -245,7 +245,7 @@
},
created() {
//
this.getList()
// this.getList()
this.init()
},
filters: {
@ -271,8 +271,10 @@
loginDetails(token).then((response) => {
if (response.code === '200') {
this.loginInfo = response.data;
this.revokeList.userSid = this.loginInfo.userSid
this.listQuery.params.userSid = this.loginInfo.userSid
console.log(this.loginInfo)
this.revokeList.userSid = this.loginInfo.sid
this.listQuery.params.userSid = this.loginInfo.sid
this.getList()
}
});
this.getType()
@ -286,12 +288,13 @@
const parameter_list = {
instanceId: row.procInsId,
taskId: row.taskId,
taskName: row.taskName
taskName: row.taskName,
transactState: '01' //
}
selectUrl(this.selectUrl_list).then((response) => {
if (response.code === '200') {
// this.url = 'http://120.46.131.15' + response.data.url + '?row=' + row.processVariables.businessSid + '#data=' + JSON.stringify(parameter_list) + '?token=' + getStorage()
this.url = 'http://localhost:9532' + response.data.url + '?row=' + row.processVariables.businessSid + '#data=' + JSON.stringify(parameter_list) + '?token=123456abc'
this.url = 'http://localhost:9531' + response.data.url + '?row=' + row.processVariables.businessSid + '#data=' + JSON.stringify(parameter_list) + '?token=123456abc'
console.log('页面url', this.url)
} else {
this.$notify({

5
anrui-system-ui/src/views/flow/todoList.vue

@ -330,13 +330,14 @@
const parameter_list = {
instanceId: row.procInsId,
taskId: row.taskId,
taskName: row.taskName
taskName: row.taskName,
transactState: '00' //
}
console.log('123123123', JSON.stringify(parameter_list))
selectUrl(this.selectUrl_list).then((response) => {
if (response.code === '200') {
// this.url = 'http://120.46.131.15' + response.data.url + '?row=' + row.processVariables.businessSid + '#data=' + JSON.stringify(parameter_list) + '?token=' + getStorage()
this.url = 'http://localhost:9532' + response.data.url + '?row=' + row.processVariables.businessSid + '#data=' + JSON.stringify(parameter_list) + '?token=123456abc'
this.url = 'http://localhost:9531' + response.data.url + '?row=' + row.processVariables.businessSid + '#data=' + JSON.stringify(parameter_list) + '?token=123456abc'
console.log('页面url', this.url)
} else {
this.$notify({

Loading…
Cancel
Save