index.vue
6.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
<template>
<anji-crud ref="listPage" :option="crudOption">
<template v-slot:buttonLeftOnTable>
<el-upload
class="el-upload"
ref="upload"
:action="uploadUrl"
:headers="headers"
:on-success="handleUpload"
:on-error="handleError"
:show-file-list="false"
:limit="1"
>
<el-button
type="primary"
icon="el-icon"
v-permission="'fileManage:upload'"
>文件上传</el-button
>
</el-upload>
</template>
<template slot="edit" slot-scope="props">
<el-button type="text" @click="copyUrlPath(props)">复制url</el-button>
</template>
<template slot="rowButton" slot-scope="props">
<el-button type="text" @click="customButtom(props)">下载</el-button>
</template>
</anji-crud>
</template>
<script>
import { fileList, fileAdd, fileDel, fileUpdate, fileDetail } from "@/api/file";
import { getToken } from "@/utils/auth";
export default {
name: "File",
components: {
anjiCrud: require("@/components/AnjiPlus/anji-crud/anji-crud").default
},
data() {
return {
selectedList: [],
uploadUrl: process.env.BASE_API + "/file/upload",
crudOption: {
// 使用菜单做为页面标题
title: "文件管理",
// 详情页中输入框左边文字宽度
labelWidth: "120px",
// 查询表单条件
queryFormFields: [
{
inputType: "input",
label: "文件路径",
field: "filePath"
}
],
// 操作按钮
buttons: {
query: {
api: fileList,
permission: "fileManage:query",
sort: "create_time",
order: "DESC"
},
queryByPrimarykey: {
api: fileDetail,
permission: "fileManage:query"
},
add: {
api: fileAdd,
permission: "fileManage:upload",
isShow: false
},
delete: {
api: fileDel,
permission: "fileManage:delete"
},
edit: {
api: fileUpdate,
permission: "fileManage:update",
isShow: false
},
// 自定义按钮
customButton: {
operationWidth: 150 // row自定义按钮表格宽度
}
},
// 表格列
columns: [
{
label: "",
field: "id",
primaryKey: true, // 根据主键查询详情或者根据主键删除时, 主键的
tableHide: true, // 表格中不显示
editHide: true // 编辑弹框中不显示
},
{
// 以下为表格的配置
label: "图片缩略图", // 列名称,必填
field: "urlPath", // 字段名,必填
columnType: "imgPreview", // 图片 不设置默认text
editHide: true, // 编辑弹框中不显示
// 以下为编辑查看弹框的配置
// inputType: 'input', // 编辑查看表单组件类型 input anji-select
placeholder: "",
disabled: false
},
{
label: "文件标识", // 文件标识
placeholder: "",
field: "fileId",
editField: "fileId",
tableHide: true, // 表格中不显示
inputType: "input",
rules: [
{ min: 1, max: 64, message: "不超过64个字符", trigger: "blur" }
],
disabled: false
},
{
label: "文件类型", // 文件路径
placeholder: "",
field: "fileType",
editField: "fileType",
inputType: "input",
rules: [
{
min: 1,
max: 1024,
message: "不超过1024个字符",
trigger: "blur"
}
],
disabled: false
},
{
label: "文件路径", // 文件路径
placeholder: "",
field: "filePath",
editField: "filePath",
inputType: "input",
rules: [
{
min: 1,
max: 1024,
message: "不超过1024个字符",
trigger: "blur"
}
],
disabled: false
},
{
label: "url路径", // url路径
placeholder: "",
field: "urlPath",
editField: "urlPath",
inputType: "input",
rules: [
{
min: 1,
max: 1024,
message: "不超过1024个字符",
trigger: "blur"
}
],
disabled: false
},
{
label: "内容说明", // 内容说明
placeholder: "",
field: "fileInstruction",
editField: "fileInstruction",
inputType: "input",
rules: [
{
min: 1,
max: 1024,
message: "不超过1024个字符",
trigger: "blur"
}
],
disabled: false
},
{
label: "创建人",
field: "createByView",
columnType: "expand", // 表格中放在可展开行中
inputType: "input", // 编辑和查看详情中显示的input
disabled: true // 编辑和查看详情中不可编辑
},
{
label: "创建时间",
field: "createTime",
columnType: "expand",
inputType: "input",
disabled: true
}
]
}
};
},
computed: {
headers() {
return {
Authorization: getToken() // 直接从本地获取token就行
};
}
},
created() {},
methods: {
// 上传成功的回调
handleUpload(response, file, fileList) {
console.log(this);
// 触发查询按钮
this.$refs.listPage.handleQueryForm();
//清除el-upload组件中的文件
this.$refs.upload.clearFiles();
},
handleError() {
this.$message({
message: "上传失败!",
type: "error"
});
},
async downloadFile(row) {
window.open(row.urlPath);
},
customButtom(val) {
this.downloadFile(val.msg);
},
copyUrlPath(val) {
this.copyToClip(val.msg.urlPath);
this.$message({
message: "已将url路径复制至剪切板!",
type: "success"
});
},
copyToClip(content, message) {
var aux = document.createElement("input");
aux.setAttribute("value", content);
document.body.appendChild(aux);
aux.select();
document.execCommand("copy");
document.body.removeChild(aux);
}
}
};
</script>
<style scoped lang="scss">
.el-upload {
display: inline-block;
}
</style>