|
|
|
@ -856,11 +856,10 @@ export default defineComponent({
|
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
state.tableData.data = roleList; |
|
|
|
|
// console.log('gameRoleList: ', roleList); |
|
|
|
|
}); |
|
|
|
|
state.queryParams.orderAccount = list[0].AccountName; |
|
|
|
|
state.queryParams.channel = getCompleteChannel(list[0].Channel, list[0].SubChannel); |
|
|
|
|
console.log('gameRoleList: ', list[0],list[0].Channel, list[0].SubChannel, state.queryParams, getCompleteChannel(list[0].Channel, list[0].SubChannel)); |
|
|
|
|
// console.log('gameRoleList: ', list[0],list[0].Channel, list[0].SubChannel, state.queryParams, getCompleteChannel(list[0].Channel+"", list[0].SubChannel+"")); |
|
|
|
|
orderList(); |
|
|
|
|
loginOut(); |
|
|
|
|
loginOutLog(); |
|
|
|
@ -904,7 +903,7 @@ export default defineComponent({
|
|
|
|
|
const loginOut = () => { |
|
|
|
|
state.tableData.loginOutData = []; |
|
|
|
|
gameLoginOut({ |
|
|
|
|
account: state.queryParams.orderAccount, |
|
|
|
|
account: getAccount(state.queryParams.orderAccount, state.queryParams.channel), |
|
|
|
|
serverId: state.queryParams.serverId, |
|
|
|
|
id: state.queryParams.id, |
|
|
|
|
pageSize: state.queryParams.loginOutPageSize, |
|
|
|
@ -922,7 +921,7 @@ export default defineComponent({
|
|
|
|
|
const loginOutLog = () => { |
|
|
|
|
state.tableData.loginOutLogData = []; |
|
|
|
|
gameLoginOutLog({ |
|
|
|
|
account: state.queryParams.orderAccount, |
|
|
|
|
account:getAccount(state.queryParams.orderAccount, state.queryParams.channel), |
|
|
|
|
id: state.queryParams.id, |
|
|
|
|
serverId: state.queryParams.serverId, |
|
|
|
|
pageSize: state.queryParams.loginOutLogPageSize, |
|
|
|
@ -940,7 +939,7 @@ export default defineComponent({
|
|
|
|
|
const itemRecord = () => { |
|
|
|
|
state.tableData.itemRecordData = []; |
|
|
|
|
gameItemRecord({ |
|
|
|
|
account: state.queryParams.orderAccount, |
|
|
|
|
account: getAccount(state.queryParams.orderAccount, state.queryParams.channel), |
|
|
|
|
id: state.queryParams.id, |
|
|
|
|
serverId: state.queryParams.serverId, |
|
|
|
|
pageSize: state.queryParams.itemPageSize, |
|
|
|
|