1
This commit is contained in:
parent
dff83d59c0
commit
cd8d6a1adb
@ -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>
|
||||
|
||||
|
@ -224,7 +224,10 @@ export default {
|
||||
* 返回上一页
|
||||
*/
|
||||
back() {
|
||||
history.back()
|
||||
//关闭当前页面
|
||||
this.$store.dispatch("tagsView/delView", this.$route);
|
||||
// 调用全局挂载的方法,关闭当前页
|
||||
this.$router.go(-1)
|
||||
},
|
||||
//图片上传回调
|
||||
uploadedImg(fileList){
|
||||
|
Loading…
Reference in New Issue
Block a user