|
@@ -63,7 +63,7 @@
|
|
|
width="120"
|
|
|
label="下载链接">
|
|
|
<template slot-scope="scope">
|
|
|
- <overflow-text width="120px" :text="scope.row.downloadUrl"></overflow-text>
|
|
|
+ <overflow-text width="120px" :text="decode(scope.row.downloadUrl)"></overflow-text>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column align="center"
|
|
@@ -160,6 +160,7 @@
|
|
|
<script>
|
|
|
import { appVersionInfo, addAppVersionInfo, resetAppVersionInfo } from "@/api/systemManage";
|
|
|
import pagination from "@/components/Pagination/index";
|
|
|
+import { decode } from 'js-base64'
|
|
|
export default {
|
|
|
components: {
|
|
|
pagination
|
|
@@ -213,6 +214,7 @@ export default {
|
|
|
this.init();
|
|
|
},
|
|
|
methods: {
|
|
|
+ decode,
|
|
|
search () {
|
|
|
this.rules.page = 1;
|
|
|
this.getList()
|
|
@@ -254,6 +256,7 @@ export default {
|
|
|
},
|
|
|
resetEdit (row) {
|
|
|
this.isNew = false;
|
|
|
+ row.downloadUrl = decode(row.downloadUrl)
|
|
|
this.sectionForm = row;
|
|
|
this.sectionVisible = true;
|
|
|
},
|