This commit is contained in:
Vinjor 2025-06-30 17:38:11 +08:00
parent dff83d59c0
commit cd8d6a1adb
2 changed files with 18 additions and 5 deletions

View File

@ -1,6 +1,13 @@
<template>
<!-- 添加或修改网站栏目对话框 -->
<div class="app-container">
<el-row>
<el-col :span="24">
<el-button @click="cancel"> </el-button>
<el-button type="primary" @click="submitForm"> </el-button>
</el-col>
</el-row>
<el-divider></el-divider>
<el-form ref="form" :model="form" :rules="rules" label-width="150px">
<el-row :gutter="20">
@ -72,10 +79,13 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
<el-divider></el-divider>
<el-row>
<el-col :span="24">
<el-button @click="cancel"> </el-button>
<el-button type="primary" @click="submitForm"> </el-button>
</el-col>
</el-row>
</div>
</template>

View File

@ -224,7 +224,10 @@ export default {
* 返回上一页
*/
back() {
history.back()
//
this.$store.dispatch("tagsView/delView", this.$route);
//
this.$router.go(-1)
},
//
uploadedImg(fileList){