|
@@ -70,11 +70,7 @@
|
|
</div>
|
|
</div>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col v-if="!ruleForm.img" :span="7">
|
|
<el-col v-if="!ruleForm.img" :span="7">
|
|
- <el-button
|
|
|
|
- type="warning"
|
|
|
|
- size="mini"
|
|
|
|
- @click="showIconModel = true"
|
|
|
|
- >
|
|
|
|
|
|
+ <el-button type="warning" size="mini" @click="showIconModel = true">
|
|
选择图标
|
|
选择图标
|
|
</el-button>
|
|
</el-button>
|
|
</el-col>
|
|
</el-col>
|
|
@@ -87,11 +83,7 @@
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
- <el-form-item
|
|
|
|
- v-if="level === 2"
|
|
|
|
- label="页面路径:"
|
|
|
|
- prop="component"
|
|
|
|
- >
|
|
|
|
|
|
+ <el-form-item v-if="level === 2" label="页面路径:" prop="component">
|
|
<el-input
|
|
<el-input
|
|
v-model="ruleForm.component"
|
|
v-model="ruleForm.component"
|
|
:disabled="isDetail"
|
|
:disabled="isDetail"
|
|
@@ -104,28 +96,16 @@
|
|
<el-row>
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
<el-form-item label="状态:" prop="is_show">
|
|
<el-form-item label="状态:" prop="is_show">
|
|
- <el-radio
|
|
|
|
- v-model="ruleForm.is_show"
|
|
|
|
- :label="'1'"
|
|
|
|
- :disabled="isDetail"
|
|
|
|
- >
|
|
|
|
|
|
+ <el-radio v-model="ruleForm.is_show" :label="'1'" :disabled="isDetail">
|
|
启用
|
|
启用
|
|
</el-radio>
|
|
</el-radio>
|
|
- <el-radio
|
|
|
|
- v-model="ruleForm.is_show"
|
|
|
|
- :label="'0'"
|
|
|
|
- :disabled="isDetail"
|
|
|
|
- >
|
|
|
|
|
|
+ <el-radio v-model="ruleForm.is_show" :label="'0'" :disabled="isDetail">
|
|
禁用
|
|
禁用
|
|
</el-radio>
|
|
</el-radio>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
- <el-form-item
|
|
|
|
- v-if="level < 3"
|
|
|
|
- label="页面状态:"
|
|
|
|
- prop="is_display"
|
|
|
|
- >
|
|
|
|
|
|
+ <el-form-item v-if="level < 3" label="页面状态:" prop="is_display">
|
|
<el-radio
|
|
<el-radio
|
|
v-model="ruleForm.is_display"
|
|
v-model="ruleForm.is_display"
|
|
:label="'1'"
|
|
:label="'1'"
|
|
@@ -161,22 +141,23 @@
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item v-if="level < 3" label="菜单等级" prop="level">
|
|
<el-form-item v-if="level < 3" label="菜单等级" prop="level">
|
|
- <el-select v-model="ruleForm.level">
|
|
|
|
|
|
+ <el-select
|
|
|
|
+ v-model="ruleForm.level"
|
|
|
|
+ :disabled="isDetail"
|
|
|
|
+ style="width: 100%"
|
|
|
|
+ >
|
|
<el-option label="公共" value="0" />
|
|
<el-option label="公共" value="0" />
|
|
<el-option label="超管" value="1" />
|
|
<el-option label="超管" value="1" />
|
|
<el-option label="业务公司" value="2" />
|
|
<el-option label="业务公司" value="2" />
|
|
<el-option label="供应商" value="3" />
|
|
<el-option label="供应商" value="3" />
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
-
|
|
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
</el-form>
|
|
</el-form>
|
|
|
|
|
|
<el-col :span="24" style="text-align: right; padding: 0 0 10px 0">
|
|
<el-col :span="24" style="text-align: right; padding: 0 0 10px 0">
|
|
- <el-button v-if="!isDetail" type="primary" @click="submitForm">
|
|
|
|
- 保 存
|
|
|
|
- </el-button>
|
|
|
|
|
|
+ <el-button v-if="!isDetail" type="primary" @click="submitForm"> 保 存 </el-button>
|
|
<el-button @click="showModelThis = false">{{
|
|
<el-button @click="showModelThis = false">{{
|
|
isDetail ? "关 闭" : "取 消"
|
|
isDetail ? "关 闭" : "取 消"
|
|
}}</el-button>
|
|
}}</el-button>
|
|
@@ -186,30 +167,30 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
-import asyncRequest from '@/apis/service/system/menu'
|
|
|
|
-import btnList from '@/assets/js/btnList'
|
|
|
|
-import iconDialog from '@/views/system/menuOperator/iconDialog'
|
|
|
|
-import resToken from '@/mixins/resToken'
|
|
|
|
|
|
+import asyncRequest from "@/apis/service/system/menu";
|
|
|
|
+import btnList from "@/assets/js/btnList";
|
|
|
|
+import iconDialog from "@/views/system/menuOperator/iconDialog";
|
|
|
|
+import resToken from "@/mixins/resToken";
|
|
export default {
|
|
export default {
|
|
components: {
|
|
components: {
|
|
- iconDialog
|
|
|
|
|
|
+ iconDialog,
|
|
},
|
|
},
|
|
mixins: [resToken],
|
|
mixins: [resToken],
|
|
props: [
|
|
props: [
|
|
- 'showModel',
|
|
|
|
- 'id',
|
|
|
|
- 'isDetail',
|
|
|
|
- 'parentIds',
|
|
|
|
- 'level',
|
|
|
|
- 'isAdd',
|
|
|
|
- 'type',
|
|
|
|
- 'formData'
|
|
|
|
|
|
+ "showModel",
|
|
|
|
+ "id",
|
|
|
|
+ "isDetail",
|
|
|
|
+ "parentIds",
|
|
|
|
+ "level",
|
|
|
|
+ "isAdd",
|
|
|
|
+ "type",
|
|
|
|
+ "formData",
|
|
],
|
|
],
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
loading: false,
|
|
loading: false,
|
|
showIconModel: false,
|
|
showIconModel: false,
|
|
- title: '',
|
|
|
|
|
|
+ title: "",
|
|
btnList,
|
|
btnList,
|
|
showModelThis: this.showModel,
|
|
showModelThis: this.showModel,
|
|
ruleForm: {},
|
|
ruleForm: {},
|
|
@@ -218,159 +199,169 @@ export default {
|
|
name: [
|
|
name: [
|
|
{
|
|
{
|
|
required: true,
|
|
required: true,
|
|
- message: '请输入名称',
|
|
|
|
- trigger: 'blur'
|
|
|
|
|
|
+ message: "请输入名称",
|
|
|
|
+ trigger: "blur",
|
|
},
|
|
},
|
|
{
|
|
{
|
|
min: 1,
|
|
min: 1,
|
|
max: 50,
|
|
max: 50,
|
|
- message: '长度在 1 到 50 个字符',
|
|
|
|
- trigger: 'blur'
|
|
|
|
- }
|
|
|
|
|
|
+ message: "长度在 1 到 50 个字符",
|
|
|
|
+ trigger: "blur",
|
|
|
|
+ },
|
|
],
|
|
],
|
|
code: [
|
|
code: [
|
|
{
|
|
{
|
|
required: true,
|
|
required: true,
|
|
- message: '请输入按钮标识编码(用于判断按钮是否显示)',
|
|
|
|
- trigger: 'change'
|
|
|
|
- }
|
|
|
|
|
|
+ message: "请输入按钮标识编码(用于判断按钮是否显示)",
|
|
|
|
+ trigger: "change",
|
|
|
|
+ },
|
|
],
|
|
],
|
|
level: [
|
|
level: [
|
|
{
|
|
{
|
|
required: true,
|
|
required: true,
|
|
- message: '请选择菜单等级',
|
|
|
|
- trigger: 'change'
|
|
|
|
- }
|
|
|
|
|
|
+ message: "请选择菜单等级",
|
|
|
|
+ trigger: "change",
|
|
|
|
+ },
|
|
],
|
|
],
|
|
img: [
|
|
img: [
|
|
{
|
|
{
|
|
required: true,
|
|
required: true,
|
|
- message: '请选择图标',
|
|
|
|
- trigger: 'blur'
|
|
|
|
- }
|
|
|
|
|
|
+ message: "请选择图标",
|
|
|
|
+ trigger: "blur",
|
|
|
|
+ },
|
|
],
|
|
],
|
|
route: [
|
|
route: [
|
|
{
|
|
{
|
|
required: true,
|
|
required: true,
|
|
- message: '请输入路由',
|
|
|
|
- trigger: 'blur'
|
|
|
|
|
|
+ message: "请输入路由",
|
|
|
|
+ trigger: "blur",
|
|
},
|
|
},
|
|
{
|
|
{
|
|
min: 1,
|
|
min: 1,
|
|
max: 50,
|
|
max: 50,
|
|
- message: '长度在 1 到 50 个字符',
|
|
|
|
- trigger: 'blur'
|
|
|
|
- }
|
|
|
|
|
|
+ message: "长度在 1 到 50 个字符",
|
|
|
|
+ trigger: "blur",
|
|
|
|
+ },
|
|
],
|
|
],
|
|
component: [
|
|
component: [
|
|
{
|
|
{
|
|
required: true,
|
|
required: true,
|
|
- message: '请输入页面组件路径',
|
|
|
|
- trigger: 'blur'
|
|
|
|
|
|
+ message: "请输入页面组件路径",
|
|
|
|
+ trigger: "blur",
|
|
},
|
|
},
|
|
{
|
|
{
|
|
min: 1,
|
|
min: 1,
|
|
max: 100,
|
|
max: 100,
|
|
- message: '长度在 1 到 100 个字符',
|
|
|
|
- trigger: 'blur'
|
|
|
|
- }
|
|
|
|
|
|
+ message: "长度在 1 到 100 个字符",
|
|
|
|
+ trigger: "blur",
|
|
|
|
+ },
|
|
],
|
|
],
|
|
weight: [
|
|
weight: [
|
|
{
|
|
{
|
|
required: true,
|
|
required: true,
|
|
- message: '请输入权重,数值越大排名越靠前',
|
|
|
|
- trigger: 'blur'
|
|
|
|
- }
|
|
|
|
|
|
+ message: "请输入权重,数值越大排名越靠前",
|
|
|
|
+ trigger: "blur",
|
|
|
|
+ },
|
|
],
|
|
],
|
|
is_show: [
|
|
is_show: [
|
|
{
|
|
{
|
|
required: true,
|
|
required: true,
|
|
- message: '请选择状态',
|
|
|
|
- trigger: 'change'
|
|
|
|
- }
|
|
|
|
|
|
+ message: "请选择状态",
|
|
|
|
+ trigger: "change",
|
|
|
|
+ },
|
|
],
|
|
],
|
|
is_display: [
|
|
is_display: [
|
|
{
|
|
{
|
|
required: true,
|
|
required: true,
|
|
- message: '请选择页面状态',
|
|
|
|
- trigger: 'change'
|
|
|
|
- }
|
|
|
|
- ]
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+ message: "请选择页面状态",
|
|
|
|
+ trigger: "change",
|
|
|
|
+ },
|
|
|
|
+ ],
|
|
|
|
+ },
|
|
|
|
+ };
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
- showModel: function(val) {
|
|
|
|
- this.showModelThis = val
|
|
|
|
|
|
+ showModel: function (val) {
|
|
|
|
+ this.showModelThis = val;
|
|
if (val) {
|
|
if (val) {
|
|
- this.initForm()
|
|
|
|
|
|
+ this.initForm();
|
|
}
|
|
}
|
|
},
|
|
},
|
|
showModelThis(val) {
|
|
showModelThis(val) {
|
|
if (!val) {
|
|
if (!val) {
|
|
- this.$emit('cancel')
|
|
|
|
|
|
+ this.$emit("cancel");
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
+ },
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
codeChange(code) {
|
|
codeChange(code) {
|
|
for (let i = 0; i < this.btnList.length; i++) {
|
|
for (let i = 0; i < this.btnList.length; i++) {
|
|
if (this.btnList[i].code === code) {
|
|
if (this.btnList[i].code === code) {
|
|
- this.ruleForm.name = this.btnList[i].name
|
|
|
|
- break
|
|
|
|
|
|
+ this.ruleForm.name = this.btnList[i].name;
|
|
|
|
+ break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
setVal(val) {
|
|
setVal(val) {
|
|
- this.ruleForm.img = val
|
|
|
|
- this.$refs.ruleForm.validateField('img')
|
|
|
|
|
|
+ this.ruleForm.img = val;
|
|
|
|
+ this.$refs.ruleForm.validateField("img");
|
|
},
|
|
},
|
|
async initForm() {
|
|
async initForm() {
|
|
|
|
+ console.log(
|
|
|
|
+ this.showModel,
|
|
|
|
+ this.id,
|
|
|
|
+ this.isDetail,
|
|
|
|
+ this.parentIds,
|
|
|
|
+ this.level,
|
|
|
|
+ this.isAdd,
|
|
|
|
+ this.type,
|
|
|
|
+ this.formData
|
|
|
|
+ );
|
|
if (this.isAdd) {
|
|
if (this.isAdd) {
|
|
if (this.level === 1) {
|
|
if (this.level === 1) {
|
|
- this.title = '添加一级菜单'
|
|
|
|
|
|
+ this.title = "添加一级菜单";
|
|
} else if (this.level === 2) {
|
|
} else if (this.level === 2) {
|
|
- this.title = '添加二级菜单'
|
|
|
|
|
|
+ this.title = "添加二级菜单";
|
|
} else {
|
|
} else {
|
|
- this.title = '添加按钮'
|
|
|
|
|
|
+ this.title = "添加按钮";
|
|
}
|
|
}
|
|
- this.loading = false
|
|
|
|
- this.rulesThis = this.rules
|
|
|
|
- await this.resetForm()
|
|
|
|
|
|
+ this.loading = false;
|
|
|
|
+ this.rulesThis = this.rules;
|
|
|
|
+ await this.resetForm();
|
|
} else {
|
|
} else {
|
|
if (this.isDetail) {
|
|
if (this.isDetail) {
|
|
if (this.level === 1) {
|
|
if (this.level === 1) {
|
|
- this.title = '一级菜单详情'
|
|
|
|
|
|
+ this.title = "一级菜单详情";
|
|
} else if (this.level === 2) {
|
|
} else if (this.level === 2) {
|
|
- this.title = '二级菜单详情'
|
|
|
|
|
|
+ this.title = "二级菜单详情";
|
|
} else {
|
|
} else {
|
|
- this.title = '按钮详情'
|
|
|
|
|
|
+ this.title = "按钮详情";
|
|
}
|
|
}
|
|
- this.rulesThis = {}
|
|
|
|
|
|
+ this.rulesThis = {};
|
|
} else {
|
|
} else {
|
|
if (this.level === 1) {
|
|
if (this.level === 1) {
|
|
- this.title = '修改一级菜单'
|
|
|
|
|
|
+ this.title = "修改一级菜单";
|
|
} else if (this.level === 2) {
|
|
} else if (this.level === 2) {
|
|
- this.title = '修改二级菜单'
|
|
|
|
|
|
+ this.title = "修改二级菜单";
|
|
} else {
|
|
} else {
|
|
- this.title = '修改按钮'
|
|
|
|
|
|
+ this.title = "修改按钮";
|
|
}
|
|
}
|
|
- this.rulesThis = this.rules
|
|
|
|
|
|
+ this.rulesThis = this.rules;
|
|
}
|
|
}
|
|
- await this.initData()
|
|
|
|
|
|
+ await this.initData();
|
|
}
|
|
}
|
|
},
|
|
},
|
|
async initData() {
|
|
async initData() {
|
|
- this.loading = true
|
|
|
|
- let parentIds = ''
|
|
|
|
|
|
+ this.loading = true;
|
|
|
|
+ let parentIds = "";
|
|
if (this.isAdd) {
|
|
if (this.isAdd) {
|
|
if (this.id === 0) {
|
|
if (this.id === 0) {
|
|
- parentIds = '0'
|
|
|
|
|
|
+ parentIds = "0";
|
|
} else {
|
|
} else {
|
|
- parentIds = this.parentIds
|
|
|
|
|
|
+ parentIds = this.parentIds;
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
- parentIds = this.parentIds
|
|
|
|
|
|
+ parentIds = this.parentIds;
|
|
}
|
|
}
|
|
const {
|
|
const {
|
|
menu_name,
|
|
menu_name,
|
|
@@ -384,94 +375,94 @@ export default {
|
|
action_name,
|
|
action_name,
|
|
action_code,
|
|
action_code,
|
|
is_display,
|
|
is_display,
|
|
- level
|
|
|
|
- } = this.formData
|
|
|
|
|
|
+ level,
|
|
|
|
+ } = this.formData;
|
|
|
|
|
|
if (this.level !== 3) {
|
|
if (this.level !== 3) {
|
|
// 重置
|
|
// 重置
|
|
this.ruleForm = {
|
|
this.ruleForm = {
|
|
- parentId: this.id + '', // 父级ID(一级为0)
|
|
|
|
- parentIds: parentIds + '', // 所有父级编号(用逗号分隔)
|
|
|
|
- name: menu_name + '', // 名称
|
|
|
|
- code: '', // 编码(用于按钮是否显示)
|
|
|
|
- img: menu_img + '', // 图标(导航图标)
|
|
|
|
- route: menu_route + '', // 路由
|
|
|
|
- component: this.level === 1 ? '' : menu_url + '', // 页面组件
|
|
|
|
- menuCategory: 1 + '', // 菜单类别(1.导航菜单 2.按钮)
|
|
|
|
- type: this.type + '', // 类型(1.运营菜单 2.物业菜单)
|
|
|
|
- is_show: is_show + '', // 状态(1启用 0禁用)
|
|
|
|
- is_display: is_display + '',
|
|
|
|
- weight: parseInt(weight + ''), // 权重,越大越靠前
|
|
|
|
- level: String(level)
|
|
|
|
- }
|
|
|
|
|
|
+ parentId: this.id + "", // 父级ID(一级为0)
|
|
|
|
+ parentIds: parentIds + "", // 所有父级编号(用逗号分隔)
|
|
|
|
+ name: menu_name + "", // 名称
|
|
|
|
+ code: "", // 编码(用于按钮是否显示)
|
|
|
|
+ img: menu_img + "", // 图标(导航图标)
|
|
|
|
+ route: menu_route + "", // 路由
|
|
|
|
+ component: this.level === 1 ? "" : menu_url + "", // 页面组件
|
|
|
|
+ menuCategory: 1 + "", // 菜单类别(1.导航菜单 2.按钮)
|
|
|
|
+ type: this.type + "", // 类型(1.运营菜单 2.物业菜单)
|
|
|
|
+ is_show: is_show + "", // 状态(1启用 0禁用)
|
|
|
|
+ is_display: is_display + "",
|
|
|
|
+ weight: parseInt(weight + ""), // 权重,越大越靠前
|
|
|
|
+ level: String(level),
|
|
|
|
+ };
|
|
if (this.level === 1) {
|
|
if (this.level === 1) {
|
|
- delete this.ruleForm['parentIds']
|
|
|
|
|
|
+ delete this.ruleForm["parentIds"];
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
this.ruleForm = {
|
|
this.ruleForm = {
|
|
- parentId: this.id + '', // 父级ID(一级为0)
|
|
|
|
- parentIds: menuid + '', // 所有父级编号(用逗号分隔)
|
|
|
|
- name: action_name + '', // 名称
|
|
|
|
- code: action_code + '', // 编码(用于按钮是否显示)
|
|
|
|
- img: '', // 图标(导航图标)
|
|
|
|
- route: '', // 路由
|
|
|
|
- component: '', // 页面组件
|
|
|
|
- menuCategory: 2 + '', // 菜单类别(1.导航菜单 2.按钮)
|
|
|
|
- type: this.type + '', // 类型(1.运营菜单 2.物业菜单)
|
|
|
|
- is_show: status + '', // 状态(1启用 0禁用)
|
|
|
|
- weight: 1 + '' // 权重,越大越靠前
|
|
|
|
- }
|
|
|
|
|
|
+ parentId: this.id + "", // 父级ID(一级为0)
|
|
|
|
+ parentIds: menuid + "", // 所有父级编号(用逗号分隔)
|
|
|
|
+ name: action_name + "", // 名称
|
|
|
|
+ code: action_code + "", // 编码(用于按钮是否显示)
|
|
|
|
+ img: "", // 图标(导航图标)
|
|
|
|
+ route: "", // 路由
|
|
|
|
+ component: "", // 页面组件
|
|
|
|
+ menuCategory: 2 + "", // 菜单类别(1.导航菜单 2.按钮)
|
|
|
|
+ type: this.type + "", // 类型(1.运营菜单 2.物业菜单)
|
|
|
|
+ is_show: status + "", // 状态(1启用 0禁用)
|
|
|
|
+ weight: 1 + "", // 权重,越大越靠前
|
|
|
|
+ };
|
|
}
|
|
}
|
|
- this.loading = false
|
|
|
|
|
|
+ this.loading = false;
|
|
await this.$nextTick(() => {
|
|
await this.$nextTick(() => {
|
|
if (this.$refs.ruleForm) {
|
|
if (this.$refs.ruleForm) {
|
|
- this.$refs.ruleForm.clearValidate()
|
|
|
|
|
|
+ this.$refs.ruleForm.clearValidate();
|
|
}
|
|
}
|
|
- })
|
|
|
|
|
|
+ });
|
|
},
|
|
},
|
|
async resetForm() {
|
|
async resetForm() {
|
|
- let parentIds = ''
|
|
|
|
|
|
+ let parentIds = "";
|
|
if (this.isAdd) {
|
|
if (this.isAdd) {
|
|
if (this.id === 0) {
|
|
if (this.id === 0) {
|
|
- parentIds = '0'
|
|
|
|
|
|
+ parentIds = "0";
|
|
} else {
|
|
} else {
|
|
- parentIds = this.parentIds
|
|
|
|
|
|
+ parentIds = this.parentIds;
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
- parentIds = this.parentIds
|
|
|
|
|
|
+ parentIds = this.parentIds;
|
|
}
|
|
}
|
|
|
|
|
|
// 重置
|
|
// 重置
|
|
this.ruleForm = {
|
|
this.ruleForm = {
|
|
parentId: this.id, // 父级ID(一级为0)
|
|
parentId: this.id, // 父级ID(一级为0)
|
|
parentIds, // 所有父级编号(用逗号分隔)
|
|
parentIds, // 所有父级编号(用逗号分隔)
|
|
- name: '', // 名称
|
|
|
|
- code: '', // 编码(用于按钮是否显示)
|
|
|
|
- img: '', // 图标(导航图标)
|
|
|
|
- route: '', // 路由
|
|
|
|
- component: '', // 页面组件
|
|
|
|
|
|
+ name: "", // 名称
|
|
|
|
+ code: "", // 编码(用于按钮是否显示)
|
|
|
|
+ img: "", // 图标(导航图标)
|
|
|
|
+ route: "", // 路由
|
|
|
|
+ component: "", // 页面组件
|
|
menuCategory: this.level < 3 ? 1 : 2, // 菜单类别(1.导航菜单 2.按钮)
|
|
menuCategory: this.level < 3 ? 1 : 2, // 菜单类别(1.导航菜单 2.按钮)
|
|
- type: this.type + '', // 类型(1.运营菜单 2.物业菜单)
|
|
|
|
- is_show: '1', // 状态(1启用 0禁用)
|
|
|
|
- is_display: '1', // 页面状态(1显示 0隐藏)
|
|
|
|
- weight: 1 // 权重,越大越靠前
|
|
|
|
- }
|
|
|
|
|
|
+ type: this.type + "", // 类型(1.运营菜单 2.物业菜单)
|
|
|
|
+ is_show: "1", // 状态(1启用 0禁用)
|
|
|
|
+ is_display: "1", // 页面状态(1显示 0隐藏)
|
|
|
|
+ weight: 1, // 权重,越大越靠前
|
|
|
|
+ };
|
|
await this.$nextTick(() => {
|
|
await this.$nextTick(() => {
|
|
if (this.$refs.ruleForm) {
|
|
if (this.$refs.ruleForm) {
|
|
- this.$refs.ruleForm.clearValidate()
|
|
|
|
|
|
+ this.$refs.ruleForm.clearValidate();
|
|
}
|
|
}
|
|
- })
|
|
|
|
|
|
+ });
|
|
},
|
|
},
|
|
async submitForm() {
|
|
async submitForm() {
|
|
if (this.loading) {
|
|
if (this.loading) {
|
|
- return false
|
|
|
|
|
|
+ return false;
|
|
}
|
|
}
|
|
- this.loading = true
|
|
|
|
|
|
+ this.loading = true;
|
|
|
|
|
|
- await this.$refs.ruleForm.validate(async(valid) => {
|
|
|
|
|
|
+ await this.$refs.ruleForm.validate(async (valid) => {
|
|
if (valid) {
|
|
if (valid) {
|
|
- let model = {}
|
|
|
|
- let res = {}
|
|
|
|
|
|
+ let model = {};
|
|
|
|
+ let res = {};
|
|
const {
|
|
const {
|
|
name,
|
|
name,
|
|
img,
|
|
img,
|
|
@@ -481,8 +472,8 @@ export default {
|
|
weight,
|
|
weight,
|
|
component,
|
|
component,
|
|
code,
|
|
code,
|
|
- level
|
|
|
|
- } = this.ruleForm
|
|
|
|
|
|
+ level,
|
|
|
|
+ } = this.ruleForm;
|
|
|
|
|
|
model = {
|
|
model = {
|
|
id: this.id,
|
|
id: this.id,
|
|
@@ -498,72 +489,72 @@ export default {
|
|
url: component,
|
|
url: component,
|
|
action_code: code,
|
|
action_code: code,
|
|
status: is_show,
|
|
status: is_show,
|
|
- level
|
|
|
|
- }
|
|
|
|
|
|
+ level,
|
|
|
|
+ };
|
|
|
|
|
|
if (this.level === 1) {
|
|
if (this.level === 1) {
|
|
- delete model['pid']
|
|
|
|
- delete model['menuid']
|
|
|
|
- delete model['url']
|
|
|
|
- delete model['action_code']
|
|
|
|
- delete model['action_name']
|
|
|
|
- delete model['status']
|
|
|
|
|
|
+ delete model["pid"];
|
|
|
|
+ delete model["menuid"];
|
|
|
|
+ delete model["url"];
|
|
|
|
+ delete model["action_code"];
|
|
|
|
+ delete model["action_name"];
|
|
|
|
+ delete model["status"];
|
|
} else if (this.level === 2) {
|
|
} else if (this.level === 2) {
|
|
- delete model['menuid']
|
|
|
|
- delete model['action_code']
|
|
|
|
- delete model['action_name']
|
|
|
|
- delete model['status']
|
|
|
|
|
|
+ delete model["menuid"];
|
|
|
|
+ delete model["action_code"];
|
|
|
|
+ delete model["action_name"];
|
|
|
|
+ delete model["status"];
|
|
} else {
|
|
} else {
|
|
- delete model['pid']
|
|
|
|
- delete model['img']
|
|
|
|
- delete model['is_show']
|
|
|
|
- delete model['weight']
|
|
|
|
- delete model['route']
|
|
|
|
- delete model['is_display']
|
|
|
|
- delete model['url']
|
|
|
|
- delete model['name']
|
|
|
|
|
|
+ delete model["pid"];
|
|
|
|
+ delete model["img"];
|
|
|
|
+ delete model["is_show"];
|
|
|
|
+ delete model["weight"];
|
|
|
|
+ delete model["route"];
|
|
|
|
+ delete model["is_display"];
|
|
|
|
+ delete model["url"];
|
|
|
|
+ delete model["name"];
|
|
}
|
|
}
|
|
|
|
|
|
if (this.isAdd) {
|
|
if (this.isAdd) {
|
|
- delete model['id']
|
|
|
|
|
|
+ delete model["id"];
|
|
}
|
|
}
|
|
|
|
|
|
if (this.level < 3) {
|
|
if (this.level < 3) {
|
|
- res = await asyncRequest.update(model)
|
|
|
|
|
|
+ res = await asyncRequest.update(model);
|
|
} else {
|
|
} else {
|
|
if (this.isAdd) {
|
|
if (this.isAdd) {
|
|
- res = await asyncRequest.actionadd(model)
|
|
|
|
|
|
+ res = await asyncRequest.actionadd(model);
|
|
} else {
|
|
} else {
|
|
- res = await asyncRequest.actionedit(model)
|
|
|
|
|
|
+ res = await asyncRequest.actionedit(model);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- this.loading = false
|
|
|
|
|
|
+ this.loading = false;
|
|
if (res && res.code === 0) {
|
|
if (res && res.code === 0) {
|
|
- this.ruleForm = {}
|
|
|
|
- const title = this.isAdd ? '添加成功' : '修改成功'
|
|
|
|
|
|
+ this.ruleForm = {};
|
|
|
|
+ const title = this.isAdd ? "添加成功" : "修改成功";
|
|
this.$notify.success({
|
|
this.$notify.success({
|
|
title,
|
|
title,
|
|
- message: ''
|
|
|
|
- })
|
|
|
|
- this.showModelThis = false
|
|
|
|
- let pids = this.parentIds
|
|
|
|
|
|
+ message: "",
|
|
|
|
+ });
|
|
|
|
+ this.showModelThis = false;
|
|
|
|
+ let pids = this.parentIds;
|
|
if (this.id === 0) {
|
|
if (this.id === 0) {
|
|
- pids = '0'
|
|
|
|
|
|
+ pids = "0";
|
|
}
|
|
}
|
|
- this.$emit('refresh', this.id, pids, this.level)
|
|
|
|
|
|
+ this.$emit("refresh", this.id, pids, this.level);
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
- await this.logout()
|
|
|
|
|
|
+ await this.logout();
|
|
} else {
|
|
} else {
|
|
- this.$message.warning(res.message)
|
|
|
|
|
|
+ this.$message.warning(res.message);
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
- this.loading = false
|
|
|
|
- return false
|
|
|
|
|
|
+ this.loading = false;
|
|
|
|
+ return false;
|
|
}
|
|
}
|
|
- })
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+};
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|