fix 修复 oss 页面细节

This commit is contained in:
疯狂的狮子Li 2023-03-27 22:34:47 +08:00
parent 1d88c54c08
commit 6a35fceb48
2 changed files with 2 additions and 2 deletions

View File

@ -340,7 +340,7 @@ function submitForm() {
buttonLoading.value = false;
});
} else {
addOssConfig(this.form).then(response => {
addOssConfig(form.value).then(response => {
proxy.$modal.msgSuccess("新增成功");
open.value = false;
getList();

View File

@ -132,7 +132,7 @@
<el-table-column label="服务商" align="center" prop="service" sortable="custom"/>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template #default="scope">
<el-button link type="primary" icon="Edit" @click="handleDownload(scope.row)" v-hasPermi="['system:oss:download']">修改</el-button>
<el-button link type="primary" icon="Edit" @click="handleDownload(scope.row)" v-hasPermi="['system:oss:download']">下载</el-button>
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['system:oss:remove']">删除</el-button>
</template>
</el-table-column>