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

View File

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