|
|
|
@ -1,6 +1,14 @@
|
|
|
|
|
<template> |
|
|
|
|
<div class="app-container"> |
|
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px"> |
|
|
|
|
<el-form-item label="项目名称" prop="unitName"> |
|
|
|
|
<el-input |
|
|
|
|
v-model="queryParams.unitName" |
|
|
|
|
placeholder="请输入项目名称" |
|
|
|
|
clearable |
|
|
|
|
@keyup.enter.native="handleQuery" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="合约地址" prop="contract"> |
|
|
|
|
<el-input |
|
|
|
|
v-model="queryParams.contract" |
|
|
|
@ -17,6 +25,14 @@
|
|
|
|
|
@keyup.enter.native="handleQuery" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="燃气值" prop="gasPrice"> |
|
|
|
|
<el-input |
|
|
|
|
v-model="queryParams.gasPrice" |
|
|
|
|
placeholder="请输入燃气值" |
|
|
|
|
clearable |
|
|
|
|
@keyup.enter.native="handleQuery" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="私钥" prop="privateKey"> |
|
|
|
|
<el-input |
|
|
|
|
v-model="queryParams.privateKey" |
|
|
|
@ -25,6 +41,42 @@
|
|
|
|
|
@keyup.enter.native="handleQuery" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="单次阀值" prop="threshold"> |
|
|
|
|
<el-input |
|
|
|
|
v-model="queryParams.threshold" |
|
|
|
|
placeholder="请输入单次阀值" |
|
|
|
|
clearable |
|
|
|
|
@keyup.enter.native="handleQuery" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="总阀值" prop="totalThreshold"> |
|
|
|
|
<el-input |
|
|
|
|
v-model="queryParams.totalThreshold" |
|
|
|
|
placeholder="请输入总阀值" |
|
|
|
|
clearable |
|
|
|
|
@keyup.enter.native="handleQuery" |
|
|
|
|
/> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="状态" prop="status"> |
|
|
|
|
<el-select v-model="queryParams.status" placeholder="请选择状态" clearable> |
|
|
|
|
<el-option |
|
|
|
|
v-for="dict in dict.type.sys_normal_disable" |
|
|
|
|
:key="dict.value" |
|
|
|
|
:label="dict.label" |
|
|
|
|
:value="dict.value" |
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="环境" prop="environment"> |
|
|
|
|
<el-select v-model="queryParams.environment" placeholder="请选择环境" clearable> |
|
|
|
|
<el-option |
|
|
|
|
v-for="dict in dict.type.sys_system_switch" |
|
|
|
|
:key="dict.value" |
|
|
|
|
:label="dict.label" |
|
|
|
|
:value="dict.value" |
|
|
|
|
/> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item> |
|
|
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button> |
|
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button> |
|
|
|
@ -40,8 +92,7 @@
|
|
|
|
|
size="mini" |
|
|
|
|
@click="handleAdd" |
|
|
|
|
v-hasPermi="['system:config:add']" |
|
|
|
|
>新增 |
|
|
|
|
</el-button> |
|
|
|
|
>新增</el-button> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="1.5"> |
|
|
|
|
<el-button |
|
|
|
@ -52,8 +103,7 @@
|
|
|
|
|
:disabled="single" |
|
|
|
|
@click="handleUpdate" |
|
|
|
|
v-hasPermi="['system:config:edit']" |
|
|
|
|
>修改 |
|
|
|
|
</el-button> |
|
|
|
|
>修改</el-button> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="1.5"> |
|
|
|
|
<el-button |
|
|
|
@ -64,8 +114,7 @@
|
|
|
|
|
:disabled="multiple" |
|
|
|
|
@click="handleDelete" |
|
|
|
|
v-hasPermi="['system:config:remove']" |
|
|
|
|
>删除 |
|
|
|
|
</el-button> |
|
|
|
|
>删除</el-button> |
|
|
|
|
</el-col> |
|
|
|
|
<el-col :span="1.5"> |
|
|
|
|
<el-button |
|
|
|
@ -75,22 +124,31 @@
|
|
|
|
|
size="mini" |
|
|
|
|
@click="handleExport" |
|
|
|
|
v-hasPermi="['system:config:export']" |
|
|
|
|
>导出 |
|
|
|
|
</el-button> |
|
|
|
|
>导出</el-button> |
|
|
|
|
</el-col> |
|
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> |
|
|
|
|
</el-row> |
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="configList" @selection-change="handleSelectionChange"> |
|
|
|
|
<el-table-column type="selection" width="55" align="center"/> |
|
|
|
|
<el-table-column label="id" align="center" prop="id"/> |
|
|
|
|
<el-table-column label="项目名称" align="center" prop="unitName"/> |
|
|
|
|
<el-table-column label="合约地址" align="center" prop="contract"/> |
|
|
|
|
<el-table-column label="拥有者" align="center" prop="owner"/> |
|
|
|
|
<el-table-column label="私钥" align="center" prop="privateKey"/> |
|
|
|
|
<el-table-column label="单次阀值" align="center" prop="threshold"/> |
|
|
|
|
<el-table-column type="selection" width="55" align="center" /> |
|
|
|
|
<el-table-column label="" align="center" prop="id" /> |
|
|
|
|
<el-table-column label="项目名称" align="center" prop="unitName" /> |
|
|
|
|
<el-table-column label="合约地址" align="center" prop="contract" /> |
|
|
|
|
<el-table-column label="拥有者" align="center" prop="owner" /> |
|
|
|
|
<el-table-column label="燃气值" align="center" prop="gasPrice" /> |
|
|
|
|
<el-table-column label="私钥" align="center" prop="privateKey" /> |
|
|
|
|
<el-table-column label="单次阀值" align="center" prop="threshold" /> |
|
|
|
|
<el-table-column label="总阀值" align="center" prop="totalThreshold" /> |
|
|
|
|
<el-table-column label="燃气值" align="center" prop="gasPrice"/> |
|
|
|
|
<el-table-column label="状态" align="center" prop="status"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<dict-tag :options="dict.type.sys_normal_disable" :value="scope.row.status"/> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="环境" align="center" prop="environment"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<dict-tag :options="dict.type.sys_system_switch" :value="scope.row.environment"/> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<el-button |
|
|
|
@ -99,16 +157,14 @@
|
|
|
|
|
icon="el-icon-edit" |
|
|
|
|
@click="handleUpdate(scope.row)" |
|
|
|
|
v-hasPermi="['system:config:edit']" |
|
|
|
|
>修改 |
|
|
|
|
</el-button> |
|
|
|
|
>修改</el-button> |
|
|
|
|
<el-button |
|
|
|
|
size="mini" |
|
|
|
|
type="text" |
|
|
|
|
icon="el-icon-delete" |
|
|
|
|
@click="handleDelete(scope.row)" |
|
|
|
|
v-hasPermi="['system:config:remove']" |
|
|
|
|
>删除 |
|
|
|
|
</el-button> |
|
|
|
|
>删除</el-button> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
</el-table> |
|
|
|
@ -124,26 +180,35 @@
|
|
|
|
|
<!-- 添加或修改合约私钥配置对话框 --> |
|
|
|
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body> |
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px"> |
|
|
|
|
<el-form-item label="项目名称" prop="contract"> |
|
|
|
|
<el-input v-model="form.unitName" placeholder="请输入项目名称"/> |
|
|
|
|
<el-form-item label="项目名称" prop="unitName"> |
|
|
|
|
<el-input v-model="form.unitName" placeholder="请输入项目名称" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="合约地址" prop="contract"> |
|
|
|
|
<el-input v-model="form.contract" placeholder="请输入合约地址"/> |
|
|
|
|
<el-input v-model="form.contract" placeholder="请输入合约地址" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="拥有者" prop="owner"> |
|
|
|
|
<el-input v-model="form.owner" placeholder="请输入拥有者"/> |
|
|
|
|
<el-input v-model="form.owner" placeholder="请输入拥有者" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="燃气值" prop="gasPrice"> |
|
|
|
|
<el-input v-model="form.gasPrice" placeholder="请输入燃气值" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="私钥" prop="privateKey"> |
|
|
|
|
<el-input v-model="form.privateKey" placeholder="请输入私钥"/> |
|
|
|
|
<el-input v-model="form.privateKey" placeholder="请输入私钥" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="单次阀值" prop="threshold"> |
|
|
|
|
<el-input v-model="form.threshold" placeholder="请输入限制阀值"/> |
|
|
|
|
<el-input v-model="form.threshold" placeholder="请输入单次阀值" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="总阀值" prop="totalThreshold"> |
|
|
|
|
<el-input v-model="form.totalThreshold" placeholder="请输入上链的总阀值" /> |
|
|
|
|
<el-input v-model="form.totalThreshold" placeholder="请输入总阀值" /> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="燃气值" prop="privateKey"> |
|
|
|
|
<el-input v-model="form.gasPrice" placeholder="请输入私钥"/> |
|
|
|
|
<el-form-item label="环境"> |
|
|
|
|
<el-radio-group v-model="form.environment"> |
|
|
|
|
<el-radio |
|
|
|
|
v-for="dict in dict.type.sys_system_switch" |
|
|
|
|
:key="dict.value" |
|
|
|
|
:label="dict.value" |
|
|
|
|
>{{dict.label}}</el-radio> |
|
|
|
|
</el-radio-group> |
|
|
|
|
</el-form-item> |
|
|
|
|
</el-form> |
|
|
|
|
<div slot="footer" class="dialog-footer"> |
|
|
|
@ -155,151 +220,156 @@
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
import {listConfig, getConfig, delConfig, addConfig, updateConfig} from "@/api/system/contract"; |
|
|
|
|
import { listConfig, getConfig, delConfig, addConfig, updateConfig } from "@/api/system/contract"; |
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
|
name: "Config", |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
// 遮罩层 |
|
|
|
|
loading: true, |
|
|
|
|
// 选中数组 |
|
|
|
|
ids: [], |
|
|
|
|
// 非单个禁用 |
|
|
|
|
single: true, |
|
|
|
|
// 非多个禁用 |
|
|
|
|
multiple: true, |
|
|
|
|
// 显示搜索条件 |
|
|
|
|
showSearch: true, |
|
|
|
|
// 总条数 |
|
|
|
|
total: 0, |
|
|
|
|
// 合约私钥配置表格数据 |
|
|
|
|
configList: [], |
|
|
|
|
// 弹出层标题 |
|
|
|
|
title: "", |
|
|
|
|
// 是否显示弹出层 |
|
|
|
|
open: false, |
|
|
|
|
// 查询参数 |
|
|
|
|
queryParams: { |
|
|
|
|
pageNum: 1, |
|
|
|
|
pageSize: 10, |
|
|
|
|
unitName: null, |
|
|
|
|
contract: null, |
|
|
|
|
owner: null, |
|
|
|
|
gasPrice: null, |
|
|
|
|
privateKey: null, |
|
|
|
|
threshold: null, |
|
|
|
|
totalThreshold: null, |
|
|
|
|
}, |
|
|
|
|
// 表单参数 |
|
|
|
|
form: {}, |
|
|
|
|
// 表单校验 |
|
|
|
|
rules: {} |
|
|
|
|
export default { |
|
|
|
|
name: "Config", |
|
|
|
|
dicts: ['sys_normal_disable', 'sys_system_switch'], |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
// 遮罩层 |
|
|
|
|
loading: true, |
|
|
|
|
// 选中数组 |
|
|
|
|
ids: [], |
|
|
|
|
// 非单个禁用 |
|
|
|
|
single: true, |
|
|
|
|
// 非多个禁用 |
|
|
|
|
multiple: true, |
|
|
|
|
// 显示搜索条件 |
|
|
|
|
showSearch: true, |
|
|
|
|
// 总条数 |
|
|
|
|
total: 0, |
|
|
|
|
// 合约私钥配置表格数据 |
|
|
|
|
configList: [], |
|
|
|
|
// 弹出层标题 |
|
|
|
|
title: "", |
|
|
|
|
// 是否显示弹出层 |
|
|
|
|
open: false, |
|
|
|
|
// 查询参数 |
|
|
|
|
queryParams: { |
|
|
|
|
pageNum: 1, |
|
|
|
|
pageSize: 10, |
|
|
|
|
unitName: null, |
|
|
|
|
contract: null, |
|
|
|
|
owner: null, |
|
|
|
|
gasPrice: null, |
|
|
|
|
privateKey: null, |
|
|
|
|
threshold: null, |
|
|
|
|
totalThreshold: null, |
|
|
|
|
status: null, |
|
|
|
|
environment: null |
|
|
|
|
}, |
|
|
|
|
// 表单参数 |
|
|
|
|
form: {}, |
|
|
|
|
// 表单校验 |
|
|
|
|
rules: { |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
created() { |
|
|
|
|
this.getList(); |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
/** 查询合约私钥配置列表 */ |
|
|
|
|
getList() { |
|
|
|
|
this.loading = true; |
|
|
|
|
listConfig(this.queryParams).then(response => { |
|
|
|
|
this.configList = response.rows; |
|
|
|
|
this.total = response.total; |
|
|
|
|
this.loading = false; |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
// 取消按钮 |
|
|
|
|
cancel() { |
|
|
|
|
this.open = false; |
|
|
|
|
this.reset(); |
|
|
|
|
}, |
|
|
|
|
// 表单重置 |
|
|
|
|
reset() { |
|
|
|
|
this.form = { |
|
|
|
|
id: null, |
|
|
|
|
unitName: null, |
|
|
|
|
contract: null, |
|
|
|
|
owner: null, |
|
|
|
|
gasPrice: null, |
|
|
|
|
privateKey: null, |
|
|
|
|
threshold: null, |
|
|
|
|
totalThreshold: null, |
|
|
|
|
createTime: null, |
|
|
|
|
updateTime: null, |
|
|
|
|
status: "0", |
|
|
|
|
environment: "0" |
|
|
|
|
}; |
|
|
|
|
this.resetForm("form"); |
|
|
|
|
}, |
|
|
|
|
created() { |
|
|
|
|
/** 搜索按钮操作 */ |
|
|
|
|
handleQuery() { |
|
|
|
|
this.queryParams.pageNum = 1; |
|
|
|
|
this.getList(); |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
/** 查询合约私钥配置列表 */ |
|
|
|
|
getList() { |
|
|
|
|
this.loading = true; |
|
|
|
|
listConfig(this.queryParams).then(response => { |
|
|
|
|
this.configList = response.rows; |
|
|
|
|
this.total = response.total; |
|
|
|
|
this.loading = false; |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
// 取消按钮 |
|
|
|
|
cancel() { |
|
|
|
|
this.open = false; |
|
|
|
|
this.reset(); |
|
|
|
|
}, |
|
|
|
|
// 表单重置 |
|
|
|
|
reset() { |
|
|
|
|
this.form = { |
|
|
|
|
id: null, |
|
|
|
|
unitName: null, |
|
|
|
|
contract: null, |
|
|
|
|
owner: null, |
|
|
|
|
gasPrice: null, |
|
|
|
|
privateKey: null, |
|
|
|
|
threshold: null, |
|
|
|
|
totalThreshold: null, |
|
|
|
|
createTime: null, |
|
|
|
|
updateTime: null |
|
|
|
|
}; |
|
|
|
|
this.resetForm("form"); |
|
|
|
|
}, |
|
|
|
|
/** 搜索按钮操作 */ |
|
|
|
|
handleQuery() { |
|
|
|
|
this.queryParams.pageNum = 1; |
|
|
|
|
this.getList(); |
|
|
|
|
}, |
|
|
|
|
/** 重置按钮操作 */ |
|
|
|
|
resetQuery() { |
|
|
|
|
this.resetForm("queryForm"); |
|
|
|
|
this.handleQuery(); |
|
|
|
|
}, |
|
|
|
|
// 多选框选中数据 |
|
|
|
|
handleSelectionChange(selection) { |
|
|
|
|
this.ids = selection.map(item => item.id) |
|
|
|
|
this.single = selection.length !== 1 |
|
|
|
|
this.multiple = !selection.length |
|
|
|
|
}, |
|
|
|
|
/** 新增按钮操作 */ |
|
|
|
|
handleAdd() { |
|
|
|
|
this.reset(); |
|
|
|
|
/** 重置按钮操作 */ |
|
|
|
|
resetQuery() { |
|
|
|
|
this.resetForm("queryForm"); |
|
|
|
|
this.handleQuery(); |
|
|
|
|
}, |
|
|
|
|
// 多选框选中数据 |
|
|
|
|
handleSelectionChange(selection) { |
|
|
|
|
this.ids = selection.map(item => item.id) |
|
|
|
|
this.single = selection.length!==1 |
|
|
|
|
this.multiple = !selection.length |
|
|
|
|
}, |
|
|
|
|
/** 新增按钮操作 */ |
|
|
|
|
handleAdd() { |
|
|
|
|
this.reset(); |
|
|
|
|
this.open = true; |
|
|
|
|
this.title = "添加合约私钥配置"; |
|
|
|
|
}, |
|
|
|
|
/** 修改按钮操作 */ |
|
|
|
|
handleUpdate(row) { |
|
|
|
|
this.reset(); |
|
|
|
|
const id = row.id || this.ids |
|
|
|
|
getConfig(id).then(response => { |
|
|
|
|
this.form = response.data; |
|
|
|
|
this.open = true; |
|
|
|
|
this.title = "添加合约私钥配置"; |
|
|
|
|
}, |
|
|
|
|
/** 修改按钮操作 */ |
|
|
|
|
handleUpdate(row) { |
|
|
|
|
this.reset(); |
|
|
|
|
const id = row.id || this.ids |
|
|
|
|
getConfig(id).then(response => { |
|
|
|
|
this.form = response.data; |
|
|
|
|
this.open = true; |
|
|
|
|
this.title = "修改合约私钥配置"; |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
/** 提交按钮 */ |
|
|
|
|
submitForm() { |
|
|
|
|
this.$refs["form"].validate(valid => { |
|
|
|
|
if (valid) { |
|
|
|
|
if (this.form.id != null) { |
|
|
|
|
updateConfig(this.form).then(response => { |
|
|
|
|
this.$modal.msgSuccess("修改成功"); |
|
|
|
|
this.open = false; |
|
|
|
|
this.getList(); |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
addConfig(this.form).then(response => { |
|
|
|
|
this.$modal.msgSuccess("新增成功"); |
|
|
|
|
this.open = false; |
|
|
|
|
this.getList(); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
this.title = "修改合约私钥配置"; |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
/** 提交按钮 */ |
|
|
|
|
submitForm() { |
|
|
|
|
this.$refs["form"].validate(valid => { |
|
|
|
|
if (valid) { |
|
|
|
|
if (this.form.id != null) { |
|
|
|
|
updateConfig(this.form).then(response => { |
|
|
|
|
this.$modal.msgSuccess("修改成功"); |
|
|
|
|
this.open = false; |
|
|
|
|
this.getList(); |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
addConfig(this.form).then(response => { |
|
|
|
|
this.$modal.msgSuccess("新增成功"); |
|
|
|
|
this.open = false; |
|
|
|
|
this.getList(); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
/** 删除按钮操作 */ |
|
|
|
|
handleDelete(row) { |
|
|
|
|
const ids = row.id || this.ids; |
|
|
|
|
this.$modal.confirm('是否确认删除合约私钥配置编号为"' + ids + '"的数据项?').then(function () { |
|
|
|
|
return delConfig(ids); |
|
|
|
|
}).then(() => { |
|
|
|
|
this.getList(); |
|
|
|
|
this.$modal.msgSuccess("删除成功"); |
|
|
|
|
}).catch(() => { |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
/** 导出按钮操作 */ |
|
|
|
|
handleExport() { |
|
|
|
|
this.download('system/config/export', { |
|
|
|
|
...this.queryParams |
|
|
|
|
}, `config_${new Date().getTime()}.xlsx`) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
/** 删除按钮操作 */ |
|
|
|
|
handleDelete(row) { |
|
|
|
|
const ids = row.id || this.ids; |
|
|
|
|
this.$modal.confirm('是否确认删除合约私钥配置编号为"' + ids + '"的数据项?').then(function() { |
|
|
|
|
return delConfig(ids); |
|
|
|
|
}).then(() => { |
|
|
|
|
this.getList(); |
|
|
|
|
this.$modal.msgSuccess("删除成功"); |
|
|
|
|
}).catch(() => {}); |
|
|
|
|
}, |
|
|
|
|
/** 导出按钮操作 */ |
|
|
|
|
handleExport() { |
|
|
|
|
this.download('system/config/export', { |
|
|
|
|
...this.queryParams |
|
|
|
|
}, `config_${new Date().getTime()}.xlsx`) |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
</script> |
|
|
|
|