Commit 9dc02b80 authored by 赵啸非's avatar 赵啸非

Merge remote-tracking branch 'origin/master'

parents 0c83b062 702f83dc
...@@ -275,7 +275,8 @@ export default { ...@@ -275,7 +275,8 @@ export default {
// 编辑 // 编辑
handleEdit(row) { handleEdit(row) {
this.title = "编辑"; this.title = "编辑";
this.$refs.AddData.onEdit(row); let data = this.$_.cloneDeep(row);
this.$refs.AddData.onEdit(data);
this.AddVisible = true; this.AddVisible = true;
}, },
// 选择 // 选择
......
<template> <template>
<div class="system flex flexc"> <div class="system flex flexc">
<a-tabs :activeKey="activeKey" @change="changeRouter"> <a-tabs :activeKey="activeKey" @change="changeRouter">
<a-tab-pane key="/system/user"> <!-- <a-tab-pane key="/system/user">
<span slot="tab"> <span slot="tab">
<a-icon type="user" /> <a-icon type="user" />
用户管理 用户管理
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
<a-icon type="deployment-unit" /> <a-icon type="deployment-unit" />
维度管理 维度管理
</span> </span>
</a-tab-pane> </a-tab-pane> -->
<a-tab-pane key="/system/parameter"> <a-tab-pane key="/system/parameter">
<span slot="tab"> <span slot="tab">
<a-icon type="container" /> <a-icon type="container" />
......
...@@ -306,7 +306,7 @@ const options = { ...@@ -306,7 +306,7 @@ const options = {
meta: { meta: {
icon: "global", icon: "global",
}, },
redirect: "system/user", redirect: "system/parameter",
children: [ children: [
{ {
path: "user", path: "user",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment