|
@@ -1,5 +1,5 @@
|
|
|
-
|
|
|
-export default function getChainList (payload) {
|
|
|
+import VueClipboard from 'vue-clipboard2'
|
|
|
+export default function getChainList(payload) {
|
|
|
return new Promise((resolve, reject) => {
|
|
|
const filters = [
|
|
|
{
|
|
@@ -97,6 +97,15 @@ export default function getChainList (payload) {
|
|
|
}, row.trans_id)
|
|
|
},
|
|
|
},
|
|
|
+ {
|
|
|
+ title: '二维码地址',
|
|
|
+ key: 'block_time',
|
|
|
+ align: 'center',
|
|
|
+ render: (h, { row }) => {
|
|
|
+ return h('p', 'http://uptoyo.com/' + row.serialize)
|
|
|
+
|
|
|
+ },
|
|
|
+ },
|
|
|
{
|
|
|
nodeType: 'image',
|
|
|
payload: {
|
|
@@ -146,3 +155,4 @@ export default function getChainList (payload) {
|
|
|
)
|
|
|
})
|
|
|
}
|
|
|
+
|