|
|
@@ -87,9 +87,9 @@
|
|
|
row-key="id"
|
|
|
style="width: 100%"
|
|
|
>
|
|
|
- <el-table-column prop="img" label="期刊封面">
|
|
|
+ <el-table-column prop="img" label="期刊封面" width="120">
|
|
|
<template slot-scope="scope">
|
|
|
- <img :src="scope.row.img" alt="" height="80" width="60" />
|
|
|
+ <img :src="scope.row.img" alt="" width="80" style="margin:5px;" />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="name" width="180" label="期刊名称">
|
|
|
@@ -325,7 +325,7 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
del(id) {
|
|
|
- this.$confirm("确定删除吗", "提示", {
|
|
|
+ this.$confirm("确定删除吗?关联数据都会被删除!", "提示", {
|
|
|
type: "warning",
|
|
|
}).then(() => {
|
|
|
this.$api.delJournal({ id: id }).then((res) => {
|