|
@@ -366,10 +366,10 @@ export default {
|
|
if(response.data){
|
|
if(response.data){
|
|
for(var i in response.data){
|
|
for(var i in response.data){
|
|
var item = response.data[i];
|
|
var item = response.data[i];
|
|
- that.gameItemMap[item.itemLocation.toString() + "_" + item.gameId] = item.itemName;
|
|
|
|
|
|
+ that.gameItemMap[item.itemLocation.toString() + "_" + item.gameId] = item.itemName+ "("+(parseInt(item.itemLocation) + 1)+")";
|
|
that.gameItemList.push({
|
|
that.gameItemList.push({
|
|
value:item.itemLocation+"_"+item.gameId,
|
|
value:item.itemLocation+"_"+item.gameId,
|
|
- label:item.itemName,
|
|
|
|
|
|
+ label:item.itemName + "("+(parseInt(item.itemLocation) + 1)+")",
|
|
gameId:item.gameId
|
|
gameId:item.gameId
|
|
})
|
|
})
|
|
}
|
|
}
|