|
@@ -1,108 +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>-->
|
|
|
|
|
|
|
+ <!-- <el-button @click="addRow" type="primary" icon="el-icon-plus" :disabled="fetchingData || downloading"-->
|
|
|
|
|
+ <!-- class="filter-item">-->
|
|
|
|
|
+ <!-- 新增-->
|
|
|
|
|
+ <!-- </el-button>-->
|
|
|
<el-button @click="download" icon="el-icon-upload2" :loading="downloading" :disabled="fetchingData"
|
|
<el-button @click="download" icon="el-icon-upload2" :loading="downloading" :disabled="fetchingData"
|
|
|
- class="filter-item">
|
|
|
|
|
|
|
+ class="filter-item">
|
|
|
导出
|
|
导出
|
|
|
</el-button>
|
|
</el-button>
|
|
|
</page-title>
|
|
</page-title>
|
|
|
<div class="filters-container">
|
|
<div class="filters-container">
|
|
|
- <el-input
|
|
|
|
|
- placeholder="搜索..."
|
|
|
|
|
- v-model="search"
|
|
|
|
|
- clearable
|
|
|
|
|
- class="filter-item search"
|
|
|
|
|
- @keyup.enter.native="getData"
|
|
|
|
|
- >
|
|
|
|
|
|
|
+ <el-select v-model="status" placeholder="筛选状态" clearable @change="getData" class="filter-item">
|
|
|
|
|
+ <el-option v-for="item in statusOptions" :key="item.value" :value="item.value"
|
|
|
|
|
+ :label="item.label"></el-option>
|
|
|
|
|
+ </el-select>
|
|
|
|
|
+ <el-input placeholder="搜索用户ID" v-model="userId" clearable class="filter-item" @keyup.enter.native="getData">
|
|
|
|
|
+ </el-input>
|
|
|
|
|
+ <el-input placeholder="搜索用户名" v-model="userName" clearable class="filter-item" @keyup.enter.native="getData">
|
|
|
|
|
+ </el-input>
|
|
|
|
|
+ <el-input placeholder="搜索图片名称" v-model="picName" clearable class="filter-item" @keyup.enter.native="getData">
|
|
|
|
|
+ </el-input>
|
|
|
|
|
+ <el-input 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 :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>
|
|
|
<el-table-column prop="id" label="ID" width="100">
|
|
<el-table-column prop="id" label="ID" width="100">
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="userId" label="用户Id"
|
|
|
|
|
- >
|
|
|
|
|
|
|
+ <el-table-column prop="userId" label="用户Id">
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="userName" label="用户名"
|
|
|
|
|
- >
|
|
|
|
|
|
|
+ <el-table-column prop="userName" label="用户名">
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="destroyAssetName" label="销毁藏品"
|
|
|
|
|
- show-overflow-tooltip
|
|
|
|
|
- >
|
|
|
|
|
|
|
+ <el-table-column prop="destroyAssetName" label="销毁藏品" show-overflow-tooltip>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="destroyAssetNumber" label="藏品编号"
|
|
|
|
|
- >
|
|
|
|
|
|
|
+ <el-table-column prop="destroyAssetNumber" label="藏品编号">
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column prop="destroyAssetPic" label="销毁藏品图片" width="90" align="center">
|
|
<el-table-column prop="destroyAssetPic" label="销毁藏品图片" width="90" align="center">
|
|
|
<template slot-scope="{ row }">
|
|
<template slot-scope="{ row }">
|
|
|
- <el-image
|
|
|
|
|
- style="width: 30px; height: 30px"
|
|
|
|
|
- :src="row.destroyAssetPicture.thumb || row.destroyAssetPicture.url"
|
|
|
|
|
- fit="cover"
|
|
|
|
|
- :preview-src-list="[row.destroyAssetPicture.thumb || row.destroyAssetPicture.url]"
|
|
|
|
|
- ></el-image>
|
|
|
|
|
|
|
+ <el-image style="width: 30px; height: 30px"
|
|
|
|
|
+ :src="row.destroyAssetPicture.thumb || row.destroyAssetPicture.url" fit="cover"
|
|
|
|
|
+ :preview-src-list="[row.destroyAssetPicture.thumb || row.destroyAssetPicture.url]"></el-image>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="picName" label="图片名称"
|
|
|
|
|
- show-overflow-tooltip
|
|
|
|
|
- >
|
|
|
|
|
|
|
+ <el-table-column prop="picName" label="图片名称" show-overflow-tooltip>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="picDesc" label="图片描述"
|
|
|
|
|
- show-overflow-tooltip
|
|
|
|
|
- >
|
|
|
|
|
|
|
+ <el-table-column prop="picDesc" label="图片描述" show-overflow-tooltip>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column prop="pic" label="作品内容" width="90" align="center">
|
|
<el-table-column prop="pic" label="作品内容" width="90" align="center">
|
|
|
<template slot-scope="{ row }">
|
|
<template slot-scope="{ row }">
|
|
|
- <el-image
|
|
|
|
|
- style="width: 30px; height: 30px"
|
|
|
|
|
- :src="row.pic.thumb || row.pic.url"
|
|
|
|
|
- fit="cover"
|
|
|
|
|
- :preview-src-list="[row.pic.thumb || row.pic.url]"
|
|
|
|
|
- ></el-image>
|
|
|
|
|
|
|
+ <el-image style="width: 30px; height: 30px" :src="row.pic.thumb || row.pic.url" fit="cover"
|
|
|
|
|
+ :preview-src-list="[row.pic.thumb || row.pic.url]"></el-image>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="status" label="状态"
|
|
|
|
|
- :formatter="statusFormatter"
|
|
|
|
|
- >
|
|
|
|
|
|
|
+ <el-table-column prop="status" label="状态" :formatter="statusFormatter">
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column prop="auditResult" label="图片审查建议"
|
|
|
|
|
- >
|
|
|
|
|
|
|
+ <el-table-column prop="auditResult" label="图片审查建议">
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
|
|
- label="操作"
|
|
|
|
|
- align="center"
|
|
|
|
|
- fixed="right"
|
|
|
|
|
- width="150">
|
|
|
|
|
|
|
+ <el-table-column label="操作" align="center" fixed="right" width="150">
|
|
|
<template slot-scope="{row}">
|
|
<template slot-scope="{row}">
|
|
|
- <el-button
|
|
|
|
|
- @click="pass(row)"
|
|
|
|
|
- type="success"
|
|
|
|
|
- size="mini"
|
|
|
|
|
- plain
|
|
|
|
|
- v-if="row.status === 'PENDING' && row.orderStatus === 'FINISH'"
|
|
|
|
|
- :loading="row.saving"
|
|
|
|
|
- >
|
|
|
|
|
|
|
+ <el-button @click="pass(row)" type="success" size="mini" plain
|
|
|
|
|
+ v-if="row.status === 'PENDING' && row.orderStatus === 'FINISH'" :loading="row.saving">
|
|
|
通过
|
|
通过
|
|
|
</el-button>
|
|
</el-button>
|
|
|
- <el-button
|
|
|
|
|
- @click="deny(row)"
|
|
|
|
|
- type="danger"
|
|
|
|
|
- size="mini"
|
|
|
|
|
- plain
|
|
|
|
|
- v-if="row.status === 'PENDING'"
|
|
|
|
|
- :loading="row.saving"
|
|
|
|
|
- >
|
|
|
|
|
|
|
+ <el-button @click="deny(row)" type="danger" size="mini" plain v-if="row.status === 'PENDING'"
|
|
|
|
|
+ :loading="row.saving">
|
|
|
拒绝
|
|
拒绝
|
|
|
</el-button>
|
|
</el-button>
|
|
|
</template>
|
|
</template>
|
|
@@ -117,161 +84,193 @@
|
|
|
<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 {
|
|
export default {
|
|
|
- name: 'PhotoAssetList',
|
|
|
|
|
- mixins: [pageableTable],
|
|
|
|
|
- data() {
|
|
|
|
|
- return {
|
|
|
|
|
- multipleMode: false,
|
|
|
|
|
- search: "",
|
|
|
|
|
- url: "/photoAsset/all",
|
|
|
|
|
- downloading: false,
|
|
|
|
|
- statusOptions: [{"label": "审核中", "value": "PENDING"}, {"label": "通过", "value": "SUCCESS"}, {
|
|
|
|
|
- "label": "失败",
|
|
|
|
|
- "value": "FAIL"
|
|
|
|
|
- }],
|
|
|
|
|
- }
|
|
|
|
|
- },
|
|
|
|
|
- computed: {
|
|
|
|
|
- selection() {
|
|
|
|
|
- return this.$refs.table.selection.map(i => i.id);
|
|
|
|
|
- }
|
|
|
|
|
- },
|
|
|
|
|
- methods: {
|
|
|
|
|
- afterGetData(res) {
|
|
|
|
|
- this.tableData = res.content.map(item => {
|
|
|
|
|
- return {
|
|
|
|
|
- ...item,
|
|
|
|
|
- saving: false
|
|
|
|
|
- };
|
|
|
|
|
- });
|
|
|
|
|
- },
|
|
|
|
|
- pass(row) {
|
|
|
|
|
- this.$set(row, 'saving', true);
|
|
|
|
|
- this.$confirm('确定通过?')
|
|
|
|
|
- .then(res => {
|
|
|
|
|
- return this.$http.post('/photoAsset/pass', { id: row.id });
|
|
|
|
|
- })
|
|
|
|
|
- .then(res => {
|
|
|
|
|
- this.$message.success('成功');
|
|
|
|
|
- this.$set(row, 'saving', false);
|
|
|
|
|
- this.getData();
|
|
|
|
|
- })
|
|
|
|
|
- .catch(e => {
|
|
|
|
|
- this.$set(row, 'saving', false);
|
|
|
|
|
- });
|
|
|
|
|
- },
|
|
|
|
|
- deny(row, index) {
|
|
|
|
|
- this.$set(row, 'saving', true);
|
|
|
|
|
- this.$confirm('确定拒绝?')
|
|
|
|
|
- .then(res => {
|
|
|
|
|
- return this.$http.post('/photoAsset/deny', { id: row.id });
|
|
|
|
|
- })
|
|
|
|
|
- .then(res => {
|
|
|
|
|
- this.$message.success('成功');
|
|
|
|
|
- this.$set(row, 'saving', false);
|
|
|
|
|
- this.getData();
|
|
|
|
|
- })
|
|
|
|
|
- .catch(e => {
|
|
|
|
|
- this.$set(row, 'saving', false);
|
|
|
|
|
- });
|
|
|
|
|
- },
|
|
|
|
|
- statusFormatter(row, column, cellValue, index) {
|
|
|
|
|
- let selectedOption = this.statusOptions.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();
|
|
|
|
|
- }
|
|
|
|
|
- },
|
|
|
|
|
- addRow() {
|
|
|
|
|
- this.$router.push({
|
|
|
|
|
- path: "/photoAssetEdit",
|
|
|
|
|
- query: {
|
|
|
|
|
- ...this.$route.query
|
|
|
|
|
- }
|
|
|
|
|
- });
|
|
|
|
|
- },
|
|
|
|
|
- editRow(row) {
|
|
|
|
|
- this.$router.push({
|
|
|
|
|
- path: "/photoAssetEdit",
|
|
|
|
|
|
|
+ name: 'PhotoAssetList',
|
|
|
|
|
+ mixins: [pageableTable],
|
|
|
|
|
+ data() {
|
|
|
|
|
+ return {
|
|
|
|
|
+ multipleMode: false,
|
|
|
|
|
+ search: '',
|
|
|
|
|
+ url: '/photoAsset/all',
|
|
|
|
|
+ downloading: false,
|
|
|
|
|
+ statusOptions: [
|
|
|
|
|
+ { label: '审核中', value: 'PENDING' },
|
|
|
|
|
+ { label: '通过', value: 'SUCCESS' },
|
|
|
|
|
+ {
|
|
|
|
|
+ label: '失败',
|
|
|
|
|
+ value: 'FAIL'
|
|
|
|
|
+ }
|
|
|
|
|
+ ],
|
|
|
|
|
+ status: null,
|
|
|
|
|
+ userId: '',
|
|
|
|
|
+ userName: '',
|
|
|
|
|
+ picName: ''
|
|
|
|
|
+
|
|
|
|
|
+ };
|
|
|
|
|
+ },
|
|
|
|
|
+ computed: {
|
|
|
|
|
+ selection() {
|
|
|
|
|
+ return this.$refs.table.selection.map(i => i.id);
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ methods: {
|
|
|
|
|
+ afterGetData(res) {
|
|
|
|
|
+ this.tableData = res.content.map(item => {
|
|
|
|
|
+ return {
|
|
|
|
|
+ ...item,
|
|
|
|
|
+ saving: false
|
|
|
|
|
+ };
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ pass(row) {
|
|
|
|
|
+ this.$set(row, 'saving', true);
|
|
|
|
|
+ this.$confirm('确定通过?')
|
|
|
|
|
+ .then(res => {
|
|
|
|
|
+ return this.$http.post('/photoAsset/pass', { id: row.id });
|
|
|
|
|
+ })
|
|
|
|
|
+ .then(res => {
|
|
|
|
|
+ this.$message.success('成功');
|
|
|
|
|
+ this.$set(row, 'saving', false);
|
|
|
|
|
+ this.getData();
|
|
|
|
|
+ })
|
|
|
|
|
+ .catch(e => {
|
|
|
|
|
+ this.$set(row, 'saving', false);
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ deny(row, index) {
|
|
|
|
|
+ this.$set(row, 'saving', true);
|
|
|
|
|
+ this.$confirm('确定拒绝?')
|
|
|
|
|
+ .then(res => {
|
|
|
|
|
+ return this.$http.post('/photoAsset/deny', { id: row.id });
|
|
|
|
|
+ })
|
|
|
|
|
+ .then(res => {
|
|
|
|
|
+ this.$message.success('成功');
|
|
|
|
|
+ this.$set(row, 'saving', false);
|
|
|
|
|
+ this.getData();
|
|
|
|
|
+ })
|
|
|
|
|
+ .catch(e => {
|
|
|
|
|
+ this.$set(row, 'saving', false);
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ statusFormatter(row, column, cellValue, index) {
|
|
|
|
|
+ let selectedOption = this.statusOptions.find(i => i.value === cellValue);
|
|
|
|
|
+ if (selectedOption) {
|
|
|
|
|
+ return selectedOption.label;
|
|
|
|
|
+ }
|
|
|
|
|
+ return '';
|
|
|
|
|
+ },
|
|
|
|
|
+ getParams() {
|
|
|
|
|
+ let data = {
|
|
|
|
|
+ // sort: 'createdAt,desc',
|
|
|
query: {
|
|
query: {
|
|
|
- id: row.id
|
|
|
|
|
- }
|
|
|
|
|
- });
|
|
|
|
|
- },
|
|
|
|
|
- download() {
|
|
|
|
|
- this.downloading = true;
|
|
|
|
|
- this.$axios
|
|
|
|
|
- .get("/photoAsset/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
|
|
|
|
|
- });
|
|
|
|
|
- },
|
|
|
|
|
- operation2() {
|
|
|
|
|
- this.$message('操作2');
|
|
|
|
|
- },
|
|
|
|
|
- deleteRow(row) {
|
|
|
|
|
- this.$alert('删除将无法恢复,确认要删除么?', '警告', {type: 'error'}).then(() => {
|
|
|
|
|
- return this.$http.post(`/photoAsset/del/${row.id}`)
|
|
|
|
|
- }).then(() => {
|
|
|
|
|
- this.$message.success('删除成功');
|
|
|
|
|
- this.getData();
|
|
|
|
|
- }).catch(e => {
|
|
|
|
|
- if (e !== 'cancel') {
|
|
|
|
|
- this.$message.error(e.error);
|
|
|
|
|
|
|
+ del: false,
|
|
|
}
|
|
}
|
|
|
- })
|
|
|
|
|
|
|
+ };
|
|
|
|
|
+ if (this.search) {
|
|
|
|
|
+ data.search = this.search;
|
|
|
|
|
+ }
|
|
|
|
|
+ if (this.status) {
|
|
|
|
|
+ data.query.status = this.status;
|
|
|
|
|
+ }
|
|
|
|
|
+ if (this.userName) {
|
|
|
|
|
+ data.query.userName = this.userName;
|
|
|
|
|
+ }
|
|
|
|
|
+ if (this.picName) {
|
|
|
|
|
+ data.query.picName = this.picName;
|
|
|
|
|
+ }
|
|
|
|
|
+ if (this.userId) {
|
|
|
|
|
+ data.query.userId = this.userId;
|
|
|
|
|
+ }
|
|
|
|
|
+ return data;
|
|
|
},
|
|
},
|
|
|
- }
|
|
|
|
|
-}
|
|
|
|
|
|
|
+ beforeGetData() {
|
|
|
|
|
+ return this.getParams();
|
|
|
|
|
+ },
|
|
|
|
|
+ toggleMultipleMode(multipleMode) {
|
|
|
|
|
+ this.multipleMode = multipleMode;
|
|
|
|
|
+ if (!multipleMode) {
|
|
|
|
|
+ this.$refs.table.clearSelection();
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
|
|
+ addRow() {
|
|
|
|
|
+ this.$router.push({
|
|
|
|
|
+ path: '/photoAssetEdit',
|
|
|
|
|
+ query: {
|
|
|
|
|
+ ...this.$route.query
|
|
|
|
|
+ }
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ editRow(row) {
|
|
|
|
|
+ this.$router.push({
|
|
|
|
|
+ path: '/photoAssetEdit',
|
|
|
|
|
+ query: {
|
|
|
|
|
+ id: row.id
|
|
|
|
|
+ }
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ download() {
|
|
|
|
|
+ this.downloading = true;
|
|
|
|
|
+ let params = this.getParams();
|
|
|
|
|
+ params.size = 100000;
|
|
|
|
|
+ this.$axios
|
|
|
|
|
+ .get('/photoAsset/excel', {
|
|
|
|
|
+ responseType: 'blob',
|
|
|
|
|
+ params: params
|
|
|
|
|
+ })
|
|
|
|
|
+ .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
|
|
|
|
|
+ });
|
|
|
|
|
+ },
|
|
|
|
|
+ operation2() {
|
|
|
|
|
+ this.$message('操作2');
|
|
|
|
|
+ },
|
|
|
|
|
+ deleteRow(row) {
|
|
|
|
|
+ this.$alert('删除将无法恢复,确认要删除么?', '警告', { type: 'error' })
|
|
|
|
|
+ .then(() => {
|
|
|
|
|
+ return this.$http.post(`/photoAsset/del/${row.id}`);
|
|
|
|
|
+ })
|
|
|
|
|
+ .then(() => {
|
|
|
|
|
+ this.$message.success('删除成功');
|
|
|
|
|
+ this.getData();
|
|
|
|
|
+ })
|
|
|
|
|
+ .catch(e => {
|
|
|
|
|
+ if (e !== 'cancel') {
|
|
|
|
|
+ this.$message.error(e.error);
|
|
|
|
|
+ }
|
|
|
|
|
+ });
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+};
|
|
|
</script>
|
|
</script>
|
|
|
-<style lang="less" scoped>
|
|
|
|
|
-</style>
|
|
|
|
|
|
|
+<style lang="less" scoped></style>
|