|
@@ -1,92 +1,75 @@
|
|
|
<template>
|
|
<template>
|
|
|
- <div class="list-view">
|
|
|
|
|
|
|
+ <div class="list-view">
|
|
|
<page-title>
|
|
<page-title>
|
|
|
- <el-button @click="addRow" type="primary" icon="el-icon-plus" :disabled="fetchingData || downloading" class="filter-item">
|
|
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ @click="addRow"
|
|
|
|
|
+ type="primary"
|
|
|
|
|
+ icon="el-icon-plus"
|
|
|
|
|
+ :disabled="fetchingData || downloading"
|
|
|
|
|
+ class="filter-item"
|
|
|
|
|
+ >
|
|
|
新增
|
|
新增
|
|
|
</el-button>
|
|
</el-button>
|
|
|
- <el-button @click="download" icon="el-icon-upload2" :loading="downloading" :disabled="fetchingData" class="filter-item">
|
|
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ @click="download"
|
|
|
|
|
+ icon="el-icon-upload2"
|
|
|
|
|
+ :loading="downloading"
|
|
|
|
|
+ :disabled="fetchingData"
|
|
|
|
|
+ class="filter-item"
|
|
|
|
|
+ >
|
|
|
导出
|
|
导出
|
|
|
</el-button>
|
|
</el-button>
|
|
|
</page-title>
|
|
</page-title>
|
|
|
<div class="filters-container">
|
|
<div class="filters-container">
|
|
|
<el-input
|
|
<el-input
|
|
|
- placeholder="搜索..."
|
|
|
|
|
- v-model="search"
|
|
|
|
|
- clearable
|
|
|
|
|
- class="filter-item search"
|
|
|
|
|
- @keyup.enter.native="getData"
|
|
|
|
|
|
|
+ placeholder="搜索..."
|
|
|
|
|
+ v-model="search"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ class="filter-item search"
|
|
|
|
|
+ @keyup.enter.native="getData"
|
|
|
>
|
|
>
|
|
|
<el-button @click="getData" slot="append" icon="el-icon-search"> </el-button>
|
|
<el-button @click="getData" slot="append" icon="el-icon-search"> </el-button>
|
|
|
</el-input>
|
|
</el-input>
|
|
|
</div>
|
|
</div>
|
|
|
- <el-table :data="tableData" row-key="id" ref="table"
|
|
|
|
|
- header-row-class-name="table-header-row"
|
|
|
|
|
- header-cell-class-name="table-header-cell"
|
|
|
|
|
- row-class-name="table-row" cell-class-name="table-cell"
|
|
|
|
|
- :height="tableHeight" v-loading="fetchingData">
|
|
|
|
|
- <el-table-column v-if="multipleMode" align="center" type="selection"
|
|
|
|
|
- width="50">
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column prop="id" label="ID" width="100">
|
|
|
|
|
|
|
+ <el-table
|
|
|
|
|
+ :data="tableData"
|
|
|
|
|
+ row-key="id"
|
|
|
|
|
+ ref="table"
|
|
|
|
|
+ header-row-class-name="table-header-row"
|
|
|
|
|
+ header-cell-class-name="table-header-cell"
|
|
|
|
|
+ row-class-name="table-row"
|
|
|
|
|
+ cell-class-name="table-cell"
|
|
|
|
|
+ :height="tableHeight"
|
|
|
|
|
+ v-loading="fetchingData"
|
|
|
|
|
+ >
|
|
|
|
|
+ <el-table-column v-if="multipleMode" align="center" type="selection" width="50"> </el-table-column>
|
|
|
|
|
+ <el-table-column prop="id" label="ID" width="100"> </el-table-column>
|
|
|
|
|
+ <el-table-column prop="userId" label="用户ID"> </el-table-column>
|
|
|
|
|
+ <el-table-column prop="collectionId" label="藏品ID"> </el-table-column>
|
|
|
|
|
+ <el-table-column prop="qty" label="数量"> </el-table-column>
|
|
|
|
|
+ <el-table-column prop="name" label="名称"> </el-table-column>
|
|
|
|
|
+ <el-table-column prop="pic" label="图片">
|
|
|
|
|
+ <template slot-scope="{ row }">
|
|
|
|
|
+ <el-image
|
|
|
|
|
+ style="width: 30px; height: 30px"
|
|
|
|
|
+ :src="row.pic[0]"
|
|
|
|
|
+ fit="cover"
|
|
|
|
|
+ :preview-src-list="row.pic"
|
|
|
|
|
+ ></el-image>
|
|
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="userId" label="用户ID"
|
|
|
|
|
->
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column prop="collectionId" label="藏品ID"
|
|
|
|
|
->
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column prop="qty" label="数量"
|
|
|
|
|
->
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column prop="name" label="名称"
|
|
|
|
|
->
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column prop="pic" label="图片"
|
|
|
|
|
->
|
|
|
|
|
- <template slot-scope="{row}">
|
|
|
|
|
- <el-image style="width: 30px; height: 30px"
|
|
|
|
|
- :src="row.pic[0]" fit="cover"
|
|
|
|
|
- :preview-src-list="row.pic"></el-image>
|
|
|
|
|
- </template>
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column prop="minter" label="铸造者"
|
|
|
|
|
->
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column prop="price" label="价格"
|
|
|
|
|
->
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column prop="gasPrice" label="gas费"
|
|
|
|
|
->
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column prop="totalPrice" label="总价"
|
|
|
|
|
->
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column prop="status" label="状态"
|
|
|
|
|
- :formatter="statusFormatter"
|
|
|
|
|
- >
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column prop="payMethod" label="支付方式"
|
|
|
|
|
- :formatter="payMethodFormatter"
|
|
|
|
|
- >
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column prop="transactionId" label="交易ID"
|
|
|
|
|
->
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column prop="payTime" label="支付时间"
|
|
|
|
|
->
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column prop="txHash" label="链上hash"
|
|
|
|
|
->
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column prop="gas" label="消耗gas"
|
|
|
|
|
->
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column
|
|
|
|
|
- label="操作"
|
|
|
|
|
- align="center"
|
|
|
|
|
- fixed="right"
|
|
|
|
|
- width="150">
|
|
|
|
|
- <template slot-scope="{row}">
|
|
|
|
|
|
|
+ <el-table-column prop="minter" label="铸造者"> </el-table-column>
|
|
|
|
|
+ <el-table-column prop="price" label="价格"> </el-table-column>
|
|
|
|
|
+ <el-table-column prop="gasPrice" label="gas费"> </el-table-column>
|
|
|
|
|
+ <el-table-column prop="totalPrice" label="总价"> </el-table-column>
|
|
|
|
|
+ <el-table-column prop="status" label="状态" :formatter="statusFormatter"> </el-table-column>
|
|
|
|
|
+ <el-table-column prop="payMethod" label="支付方式" :formatter="payMethodFormatter"> </el-table-column>
|
|
|
|
|
+ <el-table-column prop="transactionId" label="交易ID"> </el-table-column>
|
|
|
|
|
+ <el-table-column prop="payTime" label="支付时间"> </el-table-column>
|
|
|
|
|
+ <el-table-column prop="txHash" label="链上hash"> </el-table-column>
|
|
|
|
|
+ <el-table-column prop="gasUsed" label="消耗gas"> </el-table-column>
|
|
|
|
|
+ <el-table-column label="操作" align="center" fixed="right" width="150">
|
|
|
|
|
+ <template slot-scope="{ row }">
|
|
|
<el-button @click="editRow(row)" type="primary" size="mini" plain>编辑</el-button>
|
|
<el-button @click="editRow(row)" type="primary" size="mini" plain>编辑</el-button>
|
|
|
<el-button @click="deleteRow(row)" type="danger" size="mini" plain>删除</el-button>
|
|
<el-button @click="deleteRow(row)" type="danger" size="mini" plain>删除</el-button>
|
|
|
</template>
|
|
</template>
|
|
@@ -101,128 +84,140 @@
|
|
|
<el-button @click="toggleMultipleMode(false)">取消</el-button>
|
|
<el-button @click="toggleMultipleMode(false)">取消</el-button>
|
|
|
</el-button-group>
|
|
</el-button-group>
|
|
|
</div> -->
|
|
</div> -->
|
|
|
- <el-pagination background @size-change="onSizeChange"
|
|
|
|
|
- @current-change="onCurrentChange" :current-page="page"
|
|
|
|
|
- :page-sizes="[10, 20, 30, 40, 50]" :page-size="pageSize"
|
|
|
|
|
- layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
|
- :total="totalElements">
|
|
|
|
|
|
|
+ <el-pagination
|
|
|
|
|
+ background
|
|
|
|
|
+ @size-change="onSizeChange"
|
|
|
|
|
+ @current-change="onCurrentChange"
|
|
|
|
|
+ :current-page="page"
|
|
|
|
|
+ :page-sizes="[10, 20, 30, 40, 50]"
|
|
|
|
|
+ :page-size="pageSize"
|
|
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
|
+ :total="totalElements"
|
|
|
|
|
+ >
|
|
|
</el-pagination>
|
|
</el-pagination>
|
|
|
</div>
|
|
</div>
|
|
|
-
|
|
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
<script>
|
|
<script>
|
|
|
- import { mapState } from "vuex";
|
|
|
|
|
- import pageableTable from "@/mixins/pageableTable";
|
|
|
|
|
|
|
+import { mapState } from 'vuex';
|
|
|
|
|
+import pageableTable from '@/mixins/pageableTable';
|
|
|
|
|
|
|
|
- export default {
|
|
|
|
|
- name: 'OrderList',
|
|
|
|
|
- mixins: [pageableTable],
|
|
|
|
|
- data() {
|
|
|
|
|
- return {
|
|
|
|
|
- multipleMode: false,
|
|
|
|
|
- search: "",
|
|
|
|
|
- url: "/order/all",
|
|
|
|
|
- downloading: false,
|
|
|
|
|
- statusOptions:[{"label":"未支付","value":"NOT_PAID"},{"label":"已支付,处理中","value":"PROCESSING"},{"label":"已完成","value":"FINISH"},{"label":"已取消","value":"CANCELLED"}],
|
|
|
|
|
- payMethodOptions:[{"label":"微信","value":"WEIXIN"},{"label":"支付宝","value":"ALIPAY"}],
|
|
|
|
|
|
|
+export default {
|
|
|
|
|
+ name: 'OrderList',
|
|
|
|
|
+ mixins: [pageableTable],
|
|
|
|
|
+ data() {
|
|
|
|
|
+ return {
|
|
|
|
|
+ multipleMode: false,
|
|
|
|
|
+ search: '',
|
|
|
|
|
+ url: '/order/all',
|
|
|
|
|
+ downloading: false,
|
|
|
|
|
+ statusOptions: [
|
|
|
|
|
+ { label: '未支付', value: 'NOT_PAID' },
|
|
|
|
|
+ { label: '已支付,处理中', value: 'PROCESSING' },
|
|
|
|
|
+ { label: '已完成', value: 'FINISH' },
|
|
|
|
|
+ { label: '已取消', value: 'CANCELLED' }
|
|
|
|
|
+ ],
|
|
|
|
|
+ payMethodOptions: [
|
|
|
|
|
+ { label: '微信', value: 'WEIXIN' },
|
|
|
|
|
+ { label: '支付宝', value: 'ALIPAY' }
|
|
|
|
|
+ ]
|
|
|
|
|
+ };
|
|
|
|
|
+ },
|
|
|
|
|
+ computed: {
|
|
|
|
|
+ selection() {
|
|
|
|
|
+ return this.$refs.table.selection.map(i => i.id);
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ methods: {
|
|
|
|
|
+ statusFormatter(row, column, cellValue, index) {
|
|
|
|
|
+ let selectedOption = this.statusOptions.find(i => i.value === cellValue);
|
|
|
|
|
+ if (selectedOption) {
|
|
|
|
|
+ return selectedOption.label;
|
|
|
}
|
|
}
|
|
|
|
|
+ return '';
|
|
|
},
|
|
},
|
|
|
- computed: {
|
|
|
|
|
- selection() {
|
|
|
|
|
- return this.$refs.table.selection.map(i => i.id);
|
|
|
|
|
|
|
+ payMethodFormatter(row, column, cellValue, index) {
|
|
|
|
|
+ let selectedOption = this.payMethodOptions.find(i => i.value === cellValue);
|
|
|
|
|
+ if (selectedOption) {
|
|
|
|
|
+ return selectedOption.label;
|
|
|
}
|
|
}
|
|
|
|
|
+ return '';
|
|
|
},
|
|
},
|
|
|
- methods: {
|
|
|
|
|
- statusFormatter(row, column, cellValue, index) {
|
|
|
|
|
- let selectedOption = this.statusOptions.find(i => i.value === cellValue);
|
|
|
|
|
- if (selectedOption) {
|
|
|
|
|
- return selectedOption.label;
|
|
|
|
|
- }
|
|
|
|
|
- return '';
|
|
|
|
|
- },
|
|
|
|
|
- payMethodFormatter(row, column, cellValue, index) {
|
|
|
|
|
- let selectedOption = this.payMethodOptions.find(i => i.value === cellValue);
|
|
|
|
|
- if (selectedOption) {
|
|
|
|
|
- return selectedOption.label;
|
|
|
|
|
- }
|
|
|
|
|
- return '';
|
|
|
|
|
- },
|
|
|
|
|
- beforeGetData() {
|
|
|
|
|
- return { search: this.search, query: { del: false } };
|
|
|
|
|
- },
|
|
|
|
|
- toggleMultipleMode(multipleMode) {
|
|
|
|
|
- this.multipleMode = multipleMode;
|
|
|
|
|
- if (!multipleMode) {
|
|
|
|
|
- this.$refs.table.clearSelection();
|
|
|
|
|
|
|
+ beforeGetData() {
|
|
|
|
|
+ return { search: this.search, query: { del: false } };
|
|
|
|
|
+ },
|
|
|
|
|
+ toggleMultipleMode(multipleMode) {
|
|
|
|
|
+ this.multipleMode = multipleMode;
|
|
|
|
|
+ if (!multipleMode) {
|
|
|
|
|
+ this.$refs.table.clearSelection();
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ addRow() {
|
|
|
|
|
+ this.$router.push({
|
|
|
|
|
+ path: '/orderEdit',
|
|
|
|
|
+ query: {
|
|
|
|
|
+ ...this.$route.query
|
|
|
}
|
|
}
|
|
|
- },
|
|
|
|
|
- addRow() {
|
|
|
|
|
- this.$router.push({
|
|
|
|
|
- path: "/orderEdit",
|
|
|
|
|
- query: {
|
|
|
|
|
- ...this.$route.query
|
|
|
|
|
- }
|
|
|
|
|
- });
|
|
|
|
|
- },
|
|
|
|
|
- editRow(row) {
|
|
|
|
|
- this.$router.push({
|
|
|
|
|
- path: "/orderEdit",
|
|
|
|
|
- query: {
|
|
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ editRow(row) {
|
|
|
|
|
+ this.$router.push({
|
|
|
|
|
+ path: '/orderEdit',
|
|
|
|
|
+ query: {
|
|
|
id: row.id
|
|
id: row.id
|
|
|
- }
|
|
|
|
|
- });
|
|
|
|
|
- },
|
|
|
|
|
- download() {
|
|
|
|
|
- this.downloading = true;
|
|
|
|
|
- this.$axios
|
|
|
|
|
- .get("/order/excel", {
|
|
|
|
|
- responseType: "blob",
|
|
|
|
|
- params: { size: 10000 }
|
|
|
|
|
- })
|
|
|
|
|
- .then(res => {
|
|
|
|
|
- console.log(res);
|
|
|
|
|
- this.downloading = false;
|
|
|
|
|
- const downloadUrl = window.URL.createObjectURL(new Blob([res.data]));
|
|
|
|
|
- const link = document.createElement("a");
|
|
|
|
|
- link.href = downloadUrl;
|
|
|
|
|
- link.setAttribute(
|
|
|
|
|
- "download",
|
|
|
|
|
- res.headers["content-disposition"].split("filename=")[1]
|
|
|
|
|
- );
|
|
|
|
|
- document.body.appendChild(link);
|
|
|
|
|
- link.click();
|
|
|
|
|
- link.remove();
|
|
|
|
|
- })
|
|
|
|
|
- .catch(e => {
|
|
|
|
|
- console.log(e);
|
|
|
|
|
- this.downloading = false;
|
|
|
|
|
- this.$message.error(e.error);
|
|
|
|
|
- });
|
|
|
|
|
- },
|
|
|
|
|
- operation1() {
|
|
|
|
|
- this.$notify({
|
|
|
|
|
- title: '提示',
|
|
|
|
|
- message: this.selection
|
|
|
|
|
|
|
+ }
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ download() {
|
|
|
|
|
+ this.downloading = true;
|
|
|
|
|
+ this.$axios
|
|
|
|
|
+ .get('/order/excel', {
|
|
|
|
|
+ responseType: 'blob',
|
|
|
|
|
+ params: { size: 10000 }
|
|
|
|
|
+ })
|
|
|
|
|
+ .then(res => {
|
|
|
|
|
+ console.log(res);
|
|
|
|
|
+ this.downloading = false;
|
|
|
|
|
+ const downloadUrl = window.URL.createObjectURL(new Blob([res.data]));
|
|
|
|
|
+ const link = document.createElement('a');
|
|
|
|
|
+ link.href = downloadUrl;
|
|
|
|
|
+ link.setAttribute('download', res.headers['content-disposition'].split('filename=')[1]);
|
|
|
|
|
+ document.body.appendChild(link);
|
|
|
|
|
+ link.click();
|
|
|
|
|
+ link.remove();
|
|
|
|
|
+ })
|
|
|
|
|
+ .catch(e => {
|
|
|
|
|
+ console.log(e);
|
|
|
|
|
+ this.downloading = false;
|
|
|
|
|
+ this.$message.error(e.error);
|
|
|
});
|
|
});
|
|
|
- },
|
|
|
|
|
- operation2() {
|
|
|
|
|
- this.$message('操作2');
|
|
|
|
|
- },
|
|
|
|
|
- deleteRow(row) {
|
|
|
|
|
- this.$alert('删除将无法恢复,确认要删除么?', '警告', {type: 'error'}).then(() => {
|
|
|
|
|
- return this.$http.post(`/order/del/${row.id}`)
|
|
|
|
|
- }).then(() => {
|
|
|
|
|
|
|
+ },
|
|
|
|
|
+ operation1() {
|
|
|
|
|
+ this.$notify({
|
|
|
|
|
+ title: '提示',
|
|
|
|
|
+ message: this.selection
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ operation2() {
|
|
|
|
|
+ this.$message('操作2');
|
|
|
|
|
+ },
|
|
|
|
|
+ deleteRow(row) {
|
|
|
|
|
+ this.$alert('删除将无法恢复,确认要删除么?', '警告', { type: 'error' })
|
|
|
|
|
+ .then(() => {
|
|
|
|
|
+ return this.$http.post(`/order/del/${row.id}`);
|
|
|
|
|
+ })
|
|
|
|
|
+ .then(() => {
|
|
|
this.$message.success('删除成功');
|
|
this.$message.success('删除成功');
|
|
|
this.getData();
|
|
this.getData();
|
|
|
- }).catch(e => {
|
|
|
|
|
|
|
+ })
|
|
|
|
|
+ .catch(e => {
|
|
|
if (e !== 'cancel') {
|
|
if (e !== 'cancel') {
|
|
|
this.$message.error(e.error);
|
|
this.$message.error(e.error);
|
|
|
}
|
|
}
|
|
|
- })
|
|
|
|
|
- },
|
|
|
|
|
|
|
+ });
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
+};
|
|
|
</script>
|
|
</script>
|
|
|
<style lang="less" scoped>
|
|
<style lang="less" scoped>
|
|
|
</style>
|
|
</style>
|