fix
Showing
2 changed files
with
9 additions
and
5 deletions
| ... | @@ -229,7 +229,7 @@ const tableBtnClick = (scope, btn) => { | ... | @@ -229,7 +229,7 @@ const tableBtnClick = (scope, btn) => { |
| 229 | localStorage.setItem('isRestart', btn.label == '重新提交' ? 'true' : ''); | 229 | localStorage.setItem('isRestart', btn.label == '重新提交' ? 'true' : ''); |
| 230 | router.push({ | 230 | router.push({ |
| 231 | name: 'registerStart', | 231 | name: 'registerStart', |
| 232 | query: { guid: row.guid, exchangeGuid: row.exchangeGuid, name: row.daName, type } | 232 | query: { guid: row.guid, exchangeGuid: row.exchangeGuid, name: row.daName, type, serviceTenantGuid: row.tenantGuid } |
| 233 | }); | 233 | }); |
| 234 | } else if (type == "delete") { | 234 | } else if (type == "delete") { |
| 235 | delTableOpen("此操作将永久删除该资产登记,是否继续?", "warning"); | 235 | delTableOpen("此操作将永久删除该资产登记,是否继续?", "warning"); | ... | ... |
| ... | @@ -334,7 +334,8 @@ const tableBtnClick = (scope, btn) => { | ... | @@ -334,7 +334,8 @@ const tableBtnClick = (scope, btn) => { |
| 334 | type: type == 'edit' ? 'edit' : 'redit', | 334 | type: type == 'edit' ? 'edit' : 'redit', |
| 335 | case: '1', | 335 | case: '1', |
| 336 | name: row.damName, | 336 | name: row.damName, |
| 337 | exchangeGuid: row.exchangeGuid | 337 | exchangeGuid: row.exchangeGuid, |
| 338 | serviceTenantGuid: row.tenantGuid | ||
| 338 | } | 339 | } |
| 339 | }) | 340 | }) |
| 340 | } else { | 341 | } else { |
| ... | @@ -344,7 +345,8 @@ const tableBtnClick = (scope, btn) => { | ... | @@ -344,7 +345,8 @@ const tableBtnClick = (scope, btn) => { |
| 344 | guid: row.guid, | 345 | guid: row.guid, |
| 345 | type: type == 'edit' ? 'edit' : 'redit', | 346 | type: type == 'edit' ? 'edit' : 'redit', |
| 346 | case: '2', | 347 | case: '2', |
| 347 | name: row.damName | 348 | name: row.damName, |
| 349 | serviceTenantGuid: row.tenantGuid | ||
| 348 | } | 350 | } |
| 349 | }); | 351 | }); |
| 350 | } | 352 | } |
| ... | @@ -512,7 +514,8 @@ const tableBtnClick = (scope, btn) => { | ... | @@ -512,7 +514,8 @@ const tableBtnClick = (scope, btn) => { |
| 512 | type: type == 'edit' ? 'edit' : 'redit', | 514 | type: type == 'edit' ? 'edit' : 'redit', |
| 513 | case: '1', | 515 | case: '1', |
| 514 | name: row.damName, | 516 | name: row.damName, |
| 515 | exchangeGuid: row.exchangeGuid | 517 | exchangeGuid: row.exchangeGuid, |
| 518 | serviceTenantGuid: row.tenantGuid | ||
| 516 | } | 519 | } |
| 517 | }) | 520 | }) |
| 518 | } else { | 521 | } else { |
| ... | @@ -522,7 +525,8 @@ const tableBtnClick = (scope, btn) => { | ... | @@ -522,7 +525,8 @@ const tableBtnClick = (scope, btn) => { |
| 522 | guid: row.guid, | 525 | guid: row.guid, |
| 523 | type: type == 'edit' ? 'edit' : 'redit', | 526 | type: type == 'edit' ? 'edit' : 'redit', |
| 524 | case: '2', | 527 | case: '2', |
| 525 | name: row.damName | 528 | name: row.damName, |
| 529 | serviceTenantGuid: row.tenantGuid | ||
| 526 | } | 530 | } |
| 527 | }); | 531 | }); |
| 528 | } | 532 | } | ... | ... |
-
Please register or sign in to post a comment