1287 lines
34 KiB
Vue
1287 lines
34 KiB
Vue
<template>
|
|
<ContentLayout
|
|
:title="breadcrumb"
|
|
:actions="actions"
|
|
bodyClass="p-4 bg-white"
|
|
titleClass="justify-between items-center"
|
|
>
|
|
<template #body>
|
|
<Tabulator
|
|
:data="data"
|
|
:columns="columns"
|
|
:action="true"
|
|
action-mode="api"
|
|
@editUser="handleEdit"
|
|
@promoteUser="handlePromot"
|
|
/>
|
|
</template>
|
|
</ContentLayout>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { TabulatorHeader } from "dolphin-components";
|
|
import { ref } from "vue";
|
|
|
|
const breadcrumb = ref([
|
|
{ name: "Dashboard", link: "/" },
|
|
{ name: "Reports", count: 3 }, // last breadcrumb item
|
|
]);
|
|
|
|
const actions = ref([
|
|
{
|
|
title: "Add Report",
|
|
emit: "add-report",
|
|
class: "btn btn-primary",
|
|
},
|
|
{
|
|
title: "Export",
|
|
emit: "export-data",
|
|
class: "btn btn-outline-primary",
|
|
},
|
|
]);
|
|
|
|
const columns: TabulatorHeader[] = [
|
|
{ title: "ID", field: "id", width: 80 },
|
|
{
|
|
title: "Name",
|
|
field: "name",
|
|
headerFilter: "input",
|
|
headerFilterPlaceholder: "Search name...",
|
|
},
|
|
{
|
|
title: "Address",
|
|
field: "address",
|
|
headerFilter: "input",
|
|
},
|
|
{
|
|
title: "Country",
|
|
field: "country",
|
|
},
|
|
{
|
|
title: "Phone",
|
|
field: "phone",
|
|
},
|
|
{
|
|
title: "Deposit",
|
|
width: "6%",
|
|
field: "deposit",
|
|
hozAlign: "right",
|
|
bottomCalc: "sum",
|
|
},
|
|
];
|
|
|
|
const handleEdit = () => alert("Edit User");
|
|
const handlePromot = () => alert("Promot User");
|
|
|
|
const data = [
|
|
{
|
|
id: "73426",
|
|
name: "Cortney Ferry",
|
|
address: "1816 W High Street",
|
|
country: "Canada",
|
|
phone: "(522) 599-9712 x831",
|
|
deposit: "26937",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
{ name: "Deactivate", emit: "deactivateUser" },
|
|
{ name: "Activate", emit: "activateUser" },
|
|
{ name: "Delete", emit: "deleteUser" },
|
|
{ name: "Reset Password", emit: "resetUserPassword" },
|
|
{ name: "View Profile", emit: "viewUserProfile" },
|
|
{ name: "Suspend", emit: "suspendUser" },
|
|
{ name: "Assign Role", emit: "assignUserRole" },
|
|
{ name: "Send Message", emit: "messageUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "80334",
|
|
name: "Johnson Kessler",
|
|
address: "4770 Flatley Valley",
|
|
country: "Kyrgyz Republic",
|
|
phone: "1-886-277-4265 x43935",
|
|
deposit: "65784",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "48486",
|
|
name: "Anahi McLaughlin",
|
|
address: "9689 Crown Street",
|
|
country: "Mexico",
|
|
phone: "(488) 466-2111 x497",
|
|
deposit: "64058",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "95231",
|
|
name: "Clare Ondricka",
|
|
address: "2685 Willie Mall",
|
|
country: "Netherlands",
|
|
phone: "362-811-7771 x122",
|
|
deposit: "38899",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "75553",
|
|
name: "Rhiannon Koepp",
|
|
address: "9392 Adaline Track",
|
|
country: "Serbia",
|
|
phone: "915-483-8340 x535",
|
|
deposit: "82897",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "47005",
|
|
name: "Genevieve VonRueden",
|
|
address: "53146 Nolan Fort",
|
|
country: "Wallis and Futuna",
|
|
phone: "1-470-513-6978 x148",
|
|
deposit: "62557",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "21988",
|
|
name: "Jerrold Walker",
|
|
address: "570 Hillside Avenue",
|
|
country: "Japan",
|
|
phone: "752-843-9560 x0955",
|
|
deposit: "81471",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "25141",
|
|
name: "Anthony Kassulke",
|
|
address: "8644 VonRueden Falls",
|
|
country: "Heard Island and McDonald Islands",
|
|
phone: "754-888-5673",
|
|
deposit: "20388",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "10600",
|
|
name: "Geraldine Satterfield-Krajcik",
|
|
address: "112 Joesph Via",
|
|
country: "Antarctica",
|
|
phone: "623.883.2440 x0164",
|
|
deposit: "25236",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "25278",
|
|
name: "Jaiden Turcotte",
|
|
address: "888 Wade Rapids",
|
|
country: "Botswana",
|
|
phone: "397-623-3119 x19080",
|
|
deposit: "44357",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "19228",
|
|
name: "Lilla Haley",
|
|
address: "3802 Murray Forest",
|
|
country: "Egypt",
|
|
phone: "1-762-542-0810 x6404",
|
|
deposit: "10097",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "15642",
|
|
name: "Alexandrine White",
|
|
address: "257 Auer Parkways",
|
|
country: "Albania",
|
|
phone: "670.699.7699",
|
|
deposit: "70984",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "57277",
|
|
name: "Brando Pacocha",
|
|
address: "7629 Kassulke Divide",
|
|
country: "Bolivia",
|
|
phone: "344.929.6138 x3168",
|
|
deposit: "3670",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "69155",
|
|
name: "Felipe Upton",
|
|
address: "967 Danielle Brooks",
|
|
country: "Latvia",
|
|
phone: "993-591-2419 x4337",
|
|
deposit: "6852",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "35697",
|
|
name: "Brionna Jakubowski",
|
|
address: "49165 Dale Street",
|
|
country: "San Marino",
|
|
phone: "(798) 400-0016",
|
|
deposit: "32600",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "49434",
|
|
name: "Giovanny Kuphal-Von",
|
|
address: "20343 Nicolette Centers",
|
|
country: "Belize",
|
|
phone: "267-473-0415 x0525",
|
|
deposit: "41177",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "45655",
|
|
name: "Eryn Langworth",
|
|
address: "25862 Pacocha Stream",
|
|
country: "Greenland",
|
|
phone: "1-998-514-3412 x21732",
|
|
deposit: "81862",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "54912",
|
|
name: "Ethan Beahan",
|
|
address: "222 Considine Corner",
|
|
country: "Japan",
|
|
phone: "1-212-506-0198 x9328",
|
|
deposit: "29244",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "43771",
|
|
name: "Garnett D'Amore",
|
|
address: "96226 Lolita Manor",
|
|
country: "Nigeria",
|
|
phone: "345-428-1195 x50553",
|
|
deposit: "61349",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "88895",
|
|
name: "Lela Fay",
|
|
address: "942 Flossie Crest",
|
|
country: "Russian Federation",
|
|
phone: "951.511.1507 x86072",
|
|
deposit: "78683",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "93498",
|
|
name: "Salvatore Stanton",
|
|
address: "5740 W Front Street",
|
|
country: "Macao",
|
|
phone: "(980) 883-8128",
|
|
deposit: "35013",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "73482",
|
|
name: "Shanon Schroeder",
|
|
address: "18155 N Bridge Street",
|
|
country: "Guinea",
|
|
phone: "658-403-1820 x459",
|
|
deposit: "1955",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "69038",
|
|
name: "Winona Waelchi",
|
|
address: "83345 Abbott Terrace",
|
|
country: "Canada",
|
|
phone: "218-464-6635 x0040",
|
|
deposit: "45554",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "8464",
|
|
name: "Keven Shields",
|
|
address: "168 Kilback Squares",
|
|
country: "Sudan",
|
|
phone: "(804) 381-1462 x01216",
|
|
deposit: "56060",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "24594",
|
|
name: "Patricia Doyle",
|
|
address: "71856 Natasha Oval",
|
|
country: "New Caledonia",
|
|
phone: "1-939-592-2049 x6833",
|
|
deposit: "12807",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "69897",
|
|
name: "Magnus Boyle",
|
|
address: "7764 Johnpaul Dam",
|
|
country: "China",
|
|
phone: "527.889.3361 x379",
|
|
deposit: "29388",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "13244",
|
|
name: "Alexie Sawayn",
|
|
address: "87691 Cross Street",
|
|
country: "Saint Kitts and Nevis",
|
|
phone: "1-381-216-7953 x89900",
|
|
deposit: "87630",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "8122",
|
|
name: "Gwendolyn Marks",
|
|
address: "19632 N Harrison Street",
|
|
country: "Indonesia",
|
|
phone: "389-369-4301 x6832",
|
|
deposit: "32703",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "19369",
|
|
name: "Travis Rodriguez",
|
|
address: "165 Balmoral Road",
|
|
country: "Hungary",
|
|
phone: "1-297-693-5424 x70125",
|
|
deposit: "29115",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "51826",
|
|
name: "Mya Kohler",
|
|
address: "25508 Kohler Motorway",
|
|
country: "Saint Vincent and the Grenadines",
|
|
phone: "1-208-608-6700 x4832",
|
|
deposit: "7858",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "61346",
|
|
name: "Kirstin Mohr",
|
|
address: "9843 Jacinthe Center",
|
|
country: "Philippines",
|
|
phone: "(758) 558-0475 x253",
|
|
deposit: "41006",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "68597",
|
|
name: "Giovani Upton",
|
|
address: "18586 Sauer Knoll",
|
|
country: "Marshall Islands",
|
|
phone: "1-904-529-0248 x572",
|
|
deposit: "87809",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "15956",
|
|
name: "Jailyn Watsica-Witting",
|
|
address: "6819 Ash Close",
|
|
country: "Sierra Leone",
|
|
phone: "1-420-485-8264 x890",
|
|
deposit: "9708",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "55979",
|
|
name: "Daniella Bogisich",
|
|
address: "3445 Railroad Street",
|
|
country: "Nicaragua",
|
|
phone: "223-414-5494 x5395",
|
|
deposit: "46194",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "87350",
|
|
name: "Maximillian Witting",
|
|
address: "619 E Market Street",
|
|
country: "Jamaica",
|
|
phone: "286-738-7470 x12061",
|
|
deposit: "2477",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "61844",
|
|
name: "Jody Russel",
|
|
address: "513 Castle Close",
|
|
country: "Uruguay",
|
|
phone: "1-246-296-9029",
|
|
deposit: "51137",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "96275",
|
|
name: "Elza Jacobson",
|
|
address: "16795 Kamron Crossroad",
|
|
country: "Ghana",
|
|
phone: "1-267-681-0884",
|
|
deposit: "9835",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "32594",
|
|
name: "Bianka Hermiston",
|
|
address: "9774 Darrell Ridge",
|
|
country: "Bermuda",
|
|
phone: "(733) 512-7086 x7358",
|
|
deposit: "76344",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "9559",
|
|
name: "Keenan Miller",
|
|
address: "3117 Janice Field",
|
|
country: "Equatorial Guinea",
|
|
phone: "1-798-591-1283",
|
|
deposit: "48461",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "86531",
|
|
name: "Christopher Bosco",
|
|
address: "6845 West Street",
|
|
country: "French Guiana",
|
|
phone: "377.544.1770 x91794",
|
|
deposit: "95422",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "69979",
|
|
name: "Toy Hackett",
|
|
address: "69081 Tennyson Road",
|
|
country: "Cape Verde",
|
|
phone: "(662) 557-4853",
|
|
deposit: "37038",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "45833",
|
|
name: "Stanton Walter",
|
|
address: "3742 Bode Pine",
|
|
country: "Guernsey",
|
|
phone: "860.686.2310 x158",
|
|
deposit: "71935",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "59754",
|
|
name: "Savanna Jenkins",
|
|
address: "1254 Ken Freeway",
|
|
country: "Japan",
|
|
phone: "542.381.0919 x39091",
|
|
deposit: "47755",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "6338",
|
|
name: "Rose O'Kon",
|
|
address: "332 Austen Cape",
|
|
country: "Marshall Islands",
|
|
phone: "794.337.9131 x057",
|
|
deposit: "27337",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "63594",
|
|
name: "Rosella Cremin-Lockman",
|
|
address: "151 Laburnum Grove",
|
|
country: "Holy See (Vatican City State)",
|
|
phone: "598-710-5271 x88288",
|
|
deposit: "90585",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "99640",
|
|
name: "Beth Boyer",
|
|
address: "288 Gabe Valley",
|
|
country: "Turkmenistan",
|
|
phone: "250.752.0255 x763",
|
|
deposit: "92405",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "47934",
|
|
name: "Tobin Moen",
|
|
address: "80112 Smitham Crossing",
|
|
country: "Micronesia",
|
|
phone: "(459) 226-0711 x662",
|
|
deposit: "53794",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "88133",
|
|
name: "Rodrigo Smith",
|
|
address: "564 Woodlands Avenue",
|
|
country: "Nigeria",
|
|
phone: "(369) 701-6816 x2853",
|
|
deposit: "4233",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "79132",
|
|
name: "Eric Trantow",
|
|
address: "7159 Oma Parkways",
|
|
country: "Bolivia",
|
|
phone: "525.466.6120 x72654",
|
|
deposit: "49276",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "54965",
|
|
name: "Theron Kshlerin",
|
|
address: "401 Main",
|
|
country: "Iran",
|
|
phone: "755-948-0229 x240",
|
|
deposit: "9935",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "3492",
|
|
name: "Pinkie Rodriguez",
|
|
address: "299 Lemke Burgs",
|
|
country: "Botswana",
|
|
phone: "1-813-613-6083 x53914",
|
|
deposit: "31252",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "99723",
|
|
name: "Helene Erdman",
|
|
address: "1085 Bogisich Rue",
|
|
country: "Colombia",
|
|
phone: "(543) 571-3896 x8560",
|
|
deposit: "97286",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "48004",
|
|
name: "Ayla Hessel",
|
|
address: "91349 Botsford Motorway",
|
|
country: "Montserrat",
|
|
phone: "1-522-320-9830 x05982",
|
|
deposit: "65433",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "90528",
|
|
name: "Shemar Sauer",
|
|
address: "73463 Presley Springs",
|
|
country: "Sri Lanka",
|
|
phone: "951-766-3491 x438",
|
|
deposit: "82100",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "60484",
|
|
name: "Grover Beatty",
|
|
address: "7280 The Oval",
|
|
country: "Angola",
|
|
phone: "1-454-466-2140 x098",
|
|
deposit: "43095",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "75692",
|
|
name: "Xavier Barton",
|
|
address: "8962 Antone Pike",
|
|
country: "Gabon",
|
|
phone: "(989) 278-4370 x6448",
|
|
deposit: "22798",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "20904",
|
|
name: "Angelica Davis",
|
|
address: "32878 Beech Grove",
|
|
country: "Benin",
|
|
phone: "501.408.5967 x7077",
|
|
deposit: "63004",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "77663",
|
|
name: "Lizeth Block",
|
|
address: "146 N Lincoln Street",
|
|
country: "Mozambique",
|
|
phone: "1-879-666-4796 x9058",
|
|
deposit: "63976",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "91541",
|
|
name: "Quincy Schuster",
|
|
address: "97962 Springfield Close",
|
|
country: "Saint Vincent and the Grenadines",
|
|
phone: "1-281-597-9952 x22175",
|
|
deposit: "52099",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "93758",
|
|
name: "Daphnee Hettinger",
|
|
address: "3903 Allison Meadows",
|
|
country: "Cook Islands",
|
|
phone: "(313) 524-8526",
|
|
deposit: "23998",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "60867",
|
|
name: "Gregory Mann",
|
|
address: "38177 Legros Lock",
|
|
country: "Burkina Faso",
|
|
phone: "600.515.2156 x7402",
|
|
deposit: "76928",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "30185",
|
|
name: "Emmanuelle Bogisich",
|
|
address: "939 Aufderhar Alley",
|
|
country: "Poland",
|
|
phone: "456.884.4864 x46556",
|
|
deposit: "22770",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "12682",
|
|
name: "Mittie Brekke",
|
|
address: "999 Waelchi Trafficway",
|
|
country: "Greece",
|
|
phone: "488-842-2455",
|
|
deposit: "50764",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "22384",
|
|
name: "Emmanuelle Nikolaus",
|
|
address: "57671 Witting Well",
|
|
country: "Israel",
|
|
phone: "1-822-694-4931 x905",
|
|
deposit: "42746",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "59113",
|
|
name: "Trevion Mosciski",
|
|
address: "27565 7th Street",
|
|
country: "Yemen",
|
|
phone: "(682) 952-3192 x68463",
|
|
deposit: "44803",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "6931",
|
|
name: "Christine Bode",
|
|
address: "53773 Holly Close",
|
|
country: "Democratic People's Republic of Korea",
|
|
phone: "939.422.4327",
|
|
deposit: "45249",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "20270",
|
|
name: "Tabitha Wilderman",
|
|
address: "57275 Marquardt Flats",
|
|
country: "Jersey",
|
|
phone: "(450) 812-8034 x24765",
|
|
deposit: "32325",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "80337",
|
|
name: "Roderick Turner",
|
|
address: "7765 Goodwin Avenue",
|
|
country: "Iceland",
|
|
phone: "200.204.4224",
|
|
deposit: "11856",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "28899",
|
|
name: "Lois Aufderhar-Brekke",
|
|
address: "4533 Greenway",
|
|
country: "Finland",
|
|
phone: "(894) 887-2158",
|
|
deposit: "31993",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "83295",
|
|
name: "Tom Turcotte",
|
|
address: "85429 Castle Lane",
|
|
country: "Bouvet Island",
|
|
phone: "454.566.8629",
|
|
deposit: "95506",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "21462",
|
|
name: "Sasha Ritchie-Leuschke",
|
|
address: "18928 Cleo Path",
|
|
country: "Tajikistan",
|
|
phone: "(580) 419-5203 x956",
|
|
deposit: "66165",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "69439",
|
|
name: "Stefan Conroy",
|
|
address: "979 Maryam Cape",
|
|
country: "Guinea",
|
|
phone: "561-375-8375 x107",
|
|
deposit: "47512",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "23434",
|
|
name: "Marilie Stanton",
|
|
address: "6195 Elvis Light",
|
|
country: "Gambia",
|
|
phone: "597.952.4624 x75350",
|
|
deposit: "98607",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "39122",
|
|
name: "Micaela Feeney",
|
|
address: "87676 Woodrow Vista",
|
|
country: "Malta",
|
|
phone: "796.517.5361 x596",
|
|
deposit: "82884",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "39409",
|
|
name: "Mekhi Greenfelder",
|
|
address: "635 W Center Street",
|
|
country: "Spain",
|
|
phone: "994.606.6425 x991",
|
|
deposit: "64541",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "59939",
|
|
name: "Bryce Waters",
|
|
address: "668 Vivianne Shore",
|
|
country: "Peru",
|
|
phone: "775.829.6812",
|
|
deposit: "55829",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "99445",
|
|
name: "Oswald Kessler",
|
|
address: "53754 Bertram Station",
|
|
country: "Azerbaijan",
|
|
phone: "(505) 964-3245",
|
|
deposit: "89212",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "53762",
|
|
name: "Ismael Robel",
|
|
address: "72661 S 1st Street",
|
|
country: "Niger",
|
|
phone: "902.970.7086 x5419",
|
|
deposit: "95438",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "38424",
|
|
name: "Eloisa Fadel",
|
|
address: "25395 Heathcote Mill",
|
|
country: "Estonia",
|
|
phone: "830-687-6463 x0840",
|
|
deposit: "57347",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "58636",
|
|
name: "Guiseppe Pfeffer",
|
|
address: "82316 Schneider Rapids",
|
|
country: "Dominican Republic",
|
|
phone: "983-216-9118",
|
|
deposit: "19286",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "87347",
|
|
name: "Jovan Osinski",
|
|
address: "81268 Malcolm Lakes",
|
|
country: "Democratic Republic of the Congo",
|
|
phone: "(343) 428-3727 x578",
|
|
deposit: "18363",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "15508",
|
|
name: "Lucio Zboncak",
|
|
address: "7853 Hickle Hill",
|
|
country: "Northern Mariana Islands",
|
|
phone: "(901) 636-6070",
|
|
deposit: "61470",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "17266",
|
|
name: "Darian Treutel",
|
|
address: "3917 Boyer Harbors",
|
|
country: "Saint Barthelemy",
|
|
phone: "1-370-815-5236",
|
|
deposit: "86428",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "36652",
|
|
name: "Issac Orn",
|
|
address: "433 Reggie Road",
|
|
country: "Cote d'Ivoire",
|
|
phone: "562.203.3217",
|
|
deposit: "75029",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "28253",
|
|
name: "Horace Mosciski",
|
|
address: "4093 Uriah Motorway",
|
|
country: "Azerbaijan",
|
|
phone: "539-591-3766 x461",
|
|
deposit: "57862",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "77788",
|
|
name: "Rebeka Cremin",
|
|
address: "3803 Eli Groves",
|
|
country: "Zimbabwe",
|
|
phone: "968-385-4801 x2390",
|
|
deposit: "50540",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "94274",
|
|
name: "Shana Boehm",
|
|
address: "9263 Schoen Fords",
|
|
country: "Jordan",
|
|
phone: "(419) 769-5424 x274",
|
|
deposit: "43537",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "3684",
|
|
name: "Flossie Cummerata",
|
|
address: "74842 Olson Stravenue",
|
|
country: "Seychelles",
|
|
phone: "324.242.6441 x24706",
|
|
deposit: "20735",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "44543",
|
|
name: "Gladyce Littel",
|
|
address: "6639 Newton Road",
|
|
country: "Saint Lucia",
|
|
phone: "(217) 282-6858",
|
|
deposit: "23468",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "75683",
|
|
name: "Emanuel Daniel-Jaskolski",
|
|
address: "860 The Ridings",
|
|
country: "Northern Mariana Islands",
|
|
phone: "733.289.6463",
|
|
deposit: "21098",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "97043",
|
|
name: "Tyrese Wisozk",
|
|
address: "6503 Alfred Street",
|
|
country: "Guatemala",
|
|
phone: "(792) 928-8900 x523",
|
|
deposit: "65376",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "50701",
|
|
name: "Prudence Dietrich-Feil",
|
|
address: "2216 Bogisich Valley",
|
|
country: "Benin",
|
|
phone: "1-815-329-7712 x4003",
|
|
deposit: "35360",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "92124",
|
|
name: "Hillary Harris",
|
|
address: "17951 Hall Lane",
|
|
country: "Greenland",
|
|
phone: "(717) 741-9837 x833",
|
|
deposit: "88373",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "5994",
|
|
name: "Ramon Turcotte",
|
|
address: "9608 Jacky Roads",
|
|
country: "Puerto Rico",
|
|
phone: "317.735.5734",
|
|
deposit: "57322",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "77569",
|
|
name: "Justina Williamson",
|
|
address: "10710 Jonathan View",
|
|
country: "Tajikistan",
|
|
phone: "(581) 709-3893 x7519",
|
|
deposit: "9790",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "34226",
|
|
name: "Abe Wilkinson-Strosin",
|
|
address: "131 Schumm Trace",
|
|
country: "Wallis and Futuna",
|
|
phone: "900.804.2062 x939",
|
|
deposit: "59500",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "63543",
|
|
name: "Reyes Willms",
|
|
address: "43731 Juniper Close",
|
|
country: "Niger",
|
|
phone: "941-797-4663 x9420",
|
|
deposit: "10214",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "76444",
|
|
name: "Camron Durgan",
|
|
address: "1867 Mill Lane",
|
|
country: "Bouvet Island",
|
|
phone: "381.314.5250 x951",
|
|
deposit: "16379",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "63684",
|
|
name: "Romaine Satterfield",
|
|
address: "50675 Waelchi Knolls",
|
|
country: "Liechtenstein",
|
|
phone: "925-222-1907 x3620",
|
|
deposit: "86791",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
{
|
|
id: "53911",
|
|
name: "Callie Mohr",
|
|
address: "470 Gottlieb Street",
|
|
country: "Lao People's Democratic Republic",
|
|
phone: "529.731.9632",
|
|
deposit: "84406",
|
|
actions: [
|
|
{ name: "Edit", emit: "editUser" },
|
|
{ name: "Promote", emit: "promoteUser" },
|
|
],
|
|
},
|
|
];
|
|
</script>
|