Browse Source

添加上链数据页面

master
long 3 years ago
parent
commit
370f8972e2
  1. 44
      src/api/system/collection.js
  2. 356
      src/views/log/index.vue
  3. 423
      src/views/push/index.vue

44
src/api/system/collection.js

@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询nft上链列表
export function listCollection(query) {
return request({
url: '/system/collection/list',
method: 'get',
params: query
})
}
// 查询nft上链详细
export function getCollection(id) {
return request({
url: '/system/collection/' + id,
method: 'get'
})
}
// 新增nft上链
export function addCollection(data) {
return request({
url: '/system/collection',
method: 'post',
data: data
})
}
// 修改nft上链
export function updateCollection(data) {
return request({
url: '/system/collection',
method: 'put',
data: data
})
}
// 删除nft上链
export function delCollection(id) {
return request({
url: '/system/collection/' + id,
method: 'delete'
})
}

356
src/views/log/index.vue

@ -17,44 +17,60 @@
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="交易hash值" prop="hashCode">
<el-input
v-model="queryParams.hashCode"
placeholder="请输入交易hash值"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="消费的gas值" prop="gasUsed">
<el-input
v-model="queryParams.gasUsed"
placeholder="请输入消费的gas值"
clearable
@keyup.enter.native="handleQuery"
/>
</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>
</el-form-item>
</el-form>
<!-- <el-row :gutter="10" class="mb8">-->
<!--&lt;!&ndash; <el-col :span="1.5">&ndash;&gt;-->
<!--&lt;!&ndash; <el-button&ndash;&gt;-->
<!--&lt;!&ndash; type="primary"&ndash;&gt;-->
<!--&lt;!&ndash; plain&ndash;&gt;-->
<!--&lt;!&ndash; icon="el-icon-plus"&ndash;&gt;-->
<!--&lt;!&ndash; size="mini"&ndash;&gt;-->
<!--&lt;!&ndash; @click="handleAdd"&ndash;&gt;-->
<!--&lt;!&ndash; v-hasPermi="['system:log:add']"&ndash;&gt;-->
<!--&lt;!&ndash; >新增</el-button>&ndash;&gt;-->
<!--&lt;!&ndash; </el-col>&ndash;&gt;-->
<!--&lt;!&ndash; <el-col :span="1.5">&ndash;&gt;-->
<!--&lt;!&ndash; <el-button&ndash;&gt;-->
<!--&lt;!&ndash; type="success"&ndash;&gt;-->
<!--&lt;!&ndash; plain&ndash;&gt;-->
<!--&lt;!&ndash; icon="el-icon-edit"&ndash;&gt;-->
<!--&lt;!&ndash; size="mini"&ndash;&gt;-->
<!--&lt;!&ndash; :disabled="single"&ndash;&gt;-->
<!--&lt;!&ndash; @click="handleUpdate"&ndash;&gt;-->
<!--&lt;!&ndash; v-hasPermi="['system:log:edit']"&ndash;&gt;-->
<!--&lt;!&ndash; >修改</el-button>&ndash;&gt;-->
<!--&lt;!&ndash; </el-col>&ndash;&gt;-->
<!--&lt;!&ndash; <el-col :span="1.5">&ndash;&gt;-->
<!--&lt;!&ndash; <el-button&ndash;&gt;-->
<!--&lt;!&ndash; type="danger"&ndash;&gt;-->
<!--&lt;!&ndash; plain&ndash;&gt;-->
<!--&lt;!&ndash; icon="el-icon-delete"&ndash;&gt;-->
<!--&lt;!&ndash; size="mini"&ndash;&gt;-->
<!--&lt;!&ndash; :disabled="multiple"&ndash;&gt;-->
<!--&lt;!&ndash; @click="handleDelete"&ndash;&gt;-->
<!--&lt;!&ndash; v-hasPermi="['system:log:remove']"&ndash;&gt;-->
<!--&lt;!&ndash; >删除</el-button>&ndash;&gt;-->
<el-row :gutter="10" class="mb8">
<!-- <el-col :span="1.5">-->
<!-- <el-button-->
<!-- type="primary"-->
<!-- plain-->
<!-- icon="el-icon-plus"-->
<!-- size="mini"-->
<!-- @click="handleAdd"-->
<!-- v-hasPermi="['system:log:add']"-->
<!-- >新增</el-button>-->
<!-- </el-col>-->
<!-- <el-col :span="1.5">-->
<!-- <el-button-->
<!-- type="success"-->
<!-- plain-->
<!-- icon="el-icon-edit"-->
<!-- size="mini"-->
<!-- :disabled="single"-->
<!-- @click="handleUpdate"-->
<!-- v-hasPermi="['system:log:edit']"-->
<!-- >修改</el-button>-->
<!-- </el-col>-->
<!-- <el-col :span="1.5">-->
<!-- <el-button-->
<!-- type="danger"-->
<!-- plain-->
<!-- icon="el-icon-delete"-->
<!-- size="mini"-->
<!-- :disabled="multiple"-->
<!-- @click="handleDelete"-->
<!-- v-hasPermi="['system:log:remove']"-->
<!-- >删除</el-button>-->
<!-- </el-col>-->
<!-- <el-col :span="1.5">-->
<!-- <el-button-->
@ -66,14 +82,16 @@
<!-- v-hasPermi="['system:log:export']"-->
<!-- >导出</el-button>-->
<!-- </el-col>-->
<!-- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>-->
<!-- </el-row>-->
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="logList" @selection-change="handleSelectionChange">
<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="id" />
<el-table-column label="公司名称" align="center" prop="unitName" />
<el-table-column label="上链数量" align="center" prop="nftNum" />
<el-table-column label="交易hash值" align="center" prop="hashCode" />
<el-table-column label="消费的gas值" align="center" prop="gasUsed" />
<!-- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">-->
<!-- <template slot-scope="scope">-->
<!-- <el-button-->
@ -111,6 +129,12 @@
<el-form-item label="上链数量" prop="nftNum">
<el-input v-model="form.nftNum" placeholder="请输入上链数量" />
</el-form-item>
<el-form-item label="交易hash值" prop="hashCode">
<el-input v-model="form.hashCode" placeholder="请输入交易hash值" />
</el-form-item>
<el-form-item label="消费的gas值" prop="gasUsed">
<el-input v-model="form.gasUsed" placeholder="请输入消费的gas值" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
@ -121,140 +145,144 @@
</template>
<script>
import { listLog, getLog, delLog, addLog, updateLog } from "@/api/system/log";
import { listLog, getLog, delLog, addLog, updateLog } from "@/api/system/log";
export default {
name: "Log",
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
// nft
logList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
unitName: null,
nftNum: null,
},
//
form: {},
//
rules: {
}
};
},
created() {
this.getList();
},
methods: {
/** 查询nft日志列表 */
getList() {
this.loading = true;
listLog(this.queryParams).then(response => {
this.logList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
id: null,
unitName: null,
nftNum: null,
createTime: null
export default {
name: "Log",
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
// nft
logList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
unitName: null,
nftNum: null,
hashCode: null,
gasUsed: null,
},
//
form: {},
//
rules: {
}
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
created() {
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();
this.open = true;
this.title = "添加nft日志";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getLog(id).then(response => {
this.form = response.data;
methods: {
/** 查询nft日志列表 */
getList() {
this.loading = true;
listLog(this.queryParams).then(response => {
this.logList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
id: null,
unitName: null,
nftNum: null,
hashCode: null,
gasUsed: null,
createTime: 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();
this.open = true;
this.title = "修改nft日志";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateLog(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addLog(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
this.title = "添加nft日志";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getLog(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改nft日志";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateLog(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addLog(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除nft日志编号为"' + ids + '"的数据项?').then(function() {
return delLog(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('system/log/export', {
...this.queryParams
}, `log_${new Date().getTime()}.xlsx`)
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除nft日志编号为"' + ids + '"的数据项?').then(function() {
return delLog(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('system/log/export', {
...this.queryParams
}, `log_${new Date().getTime()}.xlsx`)
}
}
}
};
};
</script>

423
src/views/push/index.vue

@ -0,0 +1,423 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="120px">
<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="藏品ID" prop="informationTableId">
<el-input
v-model="queryParams.informationTableId"
placeholder="请输入上链藏品ID"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="通证ID" prop="nftId">
<el-input
v-model="queryParams.nftId"
placeholder="请输入nft通证 ID"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="合约地址" prop="contract">
<el-input
v-model="queryParams.contract"
placeholder="请输入合约地址"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="hash值" prop="hashCode">
<el-input
v-model="queryParams.hashCode"
placeholder="请输入交易的hash值"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="gas值" prop="gasUsed">
<el-input
v-model="queryParams.gasUsed"
placeholder="请输入消费的gas值"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="铸造状态" prop="onChainStatus">
<el-select v-model="queryParams.onChainStatus" placeholder="请选择(0待铸造 1已铸造 2链上已确认)" clearable>
<el-option
v-for="dict in dict.type.sys_nft_push"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<!--<el-form-item label="创建公司" prop="createdBy">
<el-input
v-model="queryParams.createdBy"
placeholder="请输入创建公司"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>-->
<el-form-item label="创建时间" prop="createdTime">
<el-date-picker clearable
v-model="queryParams.createdTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择创建时间">
</el-date-picker>
</el-form-item>
<!-- <el-form-item label="更新人" prop="updatedBy">
<el-input
v-model="queryParams.updatedBy"
placeholder="请输入更新人"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="更新时间" prop="updatedTime">
<el-date-picker clearable
v-model="queryParams.updatedTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择更新时间">
</el-date-picker>
</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>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<!-- <el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['system:collection:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['system:collection:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['system:collection:remove']"
>删除</el-button>
</el-col>-->
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['system:collection:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="collectionList" @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="上链藏品ID" align="center" prop="informationTableId" />
<el-table-column label="图片地址" align="center" prop="nftUri" />
<el-table-column label="nft通证 ID" align="center" prop="nftId" />
<el-table-column label="合约地址" align="center" prop="contract" />
<el-table-column label="交易的hash值" align="center" prop="hashCode" />
<el-table-column label="消费的gas值" align="center" prop="gasUsed" />
<el-table-column label="(0待铸造 1已铸造 2链上已确认)" align="center" prop="onChainStatus">
<template slot-scope="scope">
<dict-tag :options="dict.type.sys_nft_push" :value="scope.row.onChainStatus"/>
</template>
</el-table-column>
<!-- <el-table-column label="创建公司" align="center" prop="createdBy" />-->
<el-table-column label="创建时间" align="center" prop="createdTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.createdTime, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<!-- <el-table-column label="更新人" align="center" prop="updatedBy" />
<el-table-column label="更新时间" align="center" prop="updatedTime" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.updatedTime, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>-->
<!-- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['system:collection:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['system:collection:remove']"
>删除</el-button>
</template>
</el-table-column>-->
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改nft上链对话框 -->
<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="unitName">
<el-input v-model="form.unitName" placeholder="请输入项目名称" />
</el-form-item>
<el-form-item label="上链藏品ID" prop="informationTableId">
<el-input v-model="form.informationTableId" placeholder="请输入上链藏品ID" />
</el-form-item>
<el-form-item label="图片地址" prop="nftUri">
<el-input v-model="form.nftUri" type="textarea" placeholder="请输入内容" />
</el-form-item>
<el-form-item label="nft通证 ID" prop="nftId">
<el-input v-model="form.nftId" placeholder="请输入nft通证 ID" />
</el-form-item>
<el-form-item label="合约地址" prop="contract">
<el-input v-model="form.contract" placeholder="请输入合约地址" />
</el-form-item>
<el-form-item label="交易的hash值" prop="hashCode">
<el-input v-model="form.hashCode" placeholder="请输入交易的hash值" />
</el-form-item>
<el-form-item label="消费的gas值" prop="gasUsed">
<el-input v-model="form.gasUsed" placeholder="请输入消费的gas值" />
</el-form-item>
<el-form-item label="(0待铸造 1已铸造 2链上已确认)" prop="onChainStatus">
<el-select v-model="form.onChainStatus" placeholder="请选择(0待铸造 1已铸造 2链上已确认)">
<el-option
v-for="dict in dict.type.sys_nft_push"
:key="dict.value"
:label="dict.label"
:value="parseInt(dict.value)"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="创建公司" prop="createdBy">
<el-input v-model="form.createdBy" placeholder="请输入创建公司" />
</el-form-item>
<el-form-item label="创建时间" prop="createdTime">
<el-date-picker clearable
v-model="form.createdTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择创建时间">
</el-date-picker>
</el-form-item>
<el-form-item label="更新人" prop="updatedBy">
<el-input v-model="form.updatedBy" placeholder="请输入更新人" />
</el-form-item>
<el-form-item label="更新时间" prop="updatedTime">
<el-date-picker clearable
v-model="form.updatedTime"
type="date"
value-format="yyyy-MM-dd"
placeholder="请选择更新时间">
</el-date-picker>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { listCollection, getCollection, delCollection, addCollection, updateCollection } from "@/api/system/collection";
export default {
name: "Collection",
dicts: ['sys_nft_push'],
data() {
return {
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
// nft
collectionList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
unitName: null,
informationTableId: null,
nftUri: null,
nftId: null,
contract: null,
hashCode: null,
gasUsed: null,
onChainStatus: null,
createdBy: null,
createdTime: null,
updatedBy: null,
updatedTime: null
},
//
form: {},
//
rules: {
}
};
},
created() {
this.getList();
},
methods: {
/** 查询nft上链列表 */
getList() {
this.loading = true;
listCollection(this.queryParams).then(response => {
this.collectionList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
id: null,
unitName: null,
informationTableId: null,
nftUri: null,
nftId: null,
contract: null,
hashCode: null,
gasUsed: null,
onChainStatus: null,
createdBy: null,
createdTime: null,
updatedBy: null,
updatedTime: 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();
this.open = true;
this.title = "添加nft上链";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getCollection(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改nft上链";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateCollection(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addCollection(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除nft上链编号为"' + ids + '"的数据项?').then(function() {
return delCollection(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('system/collection/export', {
...this.queryParams
}, `collection_${new Date().getTime()}.xlsx`)
}
}
};
</script>
Loading…
Cancel
Save