|
@@ -67,7 +67,7 @@
|
|
v-show="AddNewElementField ==''"
|
|
v-show="AddNewElementField ==''"
|
|
style="width:160px;position: fixed;bottom: 20px; right:20px;"
|
|
style="width:160px;position: fixed;bottom: 20px; right:20px;"
|
|
>
|
|
>
|
|
- <el-button type="info">取消</el-button>
|
|
|
|
|
|
+ <el-button type="info" @click="toBack">取消</el-button>
|
|
<el-button type="primary">保存</el-button>
|
|
<el-button type="primary">保存</el-button>
|
|
</div>
|
|
</div>
|
|
</el-col>
|
|
</el-col>
|
|
@@ -519,6 +519,11 @@ export default {
|
|
}
|
|
}
|
|
});
|
|
});
|
|
},
|
|
},
|
|
|
|
+
|
|
|
|
+ // 返回上一页
|
|
|
|
+ toBack(){
|
|
|
|
+ this.$router.go(-1);
|
|
|
|
+ }
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
'options' () {
|
|
'options' () {
|