Commit c0623cee authored by 仇晓婷's avatar 仇晓婷

样式修改

parent b7759b27
<template> <template>
<Form ref="form" :model="entity" :rules="rules" :label-width="90" > <Form ref="form" :model="entity" :rules="rules" :label-width="90">
<Row> <Row>
<Col :span="24"> <Col :span="24">
<FormItem :label="l('title')" prop="title"> <FormItem :label="l('title')" prop="title">
...@@ -14,13 +14,12 @@ ...@@ -14,13 +14,12 @@
</Col> </Col>
<Col :span="24"> <Col :span="24">
<FormItem :label="l('menuIds')" style="margin-bottom:0px"></FormItem> <FormItem :label="l('menuIds')" style="margin-bottom:0px"></FormItem>
</Col> </Col>
<Col :span="24"> <Col :span="24">
<div style="overflow:auto;height:320px;margin-left: 60px;margin-bottom:16px"> <div style="overflow:auto;height:320px;margin-left: 60px;margin-bottom:16px">
<Tree ref="tree" :data="menuData" show-checkbox multiple ></Tree> <Tree ref="tree" :data="menuData" show-checkbox multiple></Tree>
</div> </div>
</Col> </Col>
</Row> </Row>
<FormItem> <FormItem>
...@@ -31,43 +30,43 @@ ...@@ -31,43 +30,43 @@
</template> </template>
<script> <script>
import Api from "./api"; import Api from "./api";
import api1 from '../menu/api' import api1 from "../menu/api";
export default { export default {
name: "Add", name: "Add",
data() { data() {
return { return {
disabled: false, disabled: false,
entity: {status:1}, entity: { status: 1 },
menuData:[],//菜单树数据 menuData: [], //菜单树数据
menuIds:[],//勾选的菜单数组 menuIds: [], //勾选的菜单数组
rules: { rules: {
title: [{ required: true, message: "必填"}], title: [{ required: true, message: "必填" }],
status:[{ required: true, message: "必填" }] status: [{ required: true, message: "必填" }],
} },
}; };
}, },
props: { props: {
v: Object v: Object,
}, },
mounted(){ mounted() {
api1.getTree().then((v)=>{ api1.getTree().then((v) => {
this.menuData=v.result this.menuData = v.result;
}) });
}, },
methods: { methods: {
handleSubmit() { handleSubmit() {
this.$refs.form.validate(v => { this.$refs.form.validate((v) => {
if (v) { if (v) {
this.disabled = true; this.disabled = true;
//获取选中和半选的节点 //获取选中和半选的节点
let node=this.$refs.tree.getCheckedAndIndeterminateNodes(); let node = this.$refs.tree.getCheckedAndIndeterminateNodes();
let menuId=node.map(item=>{ let menuId = node.map((item) => {
return item.id return item.id;
}) });
this.entity.menuIds=this.menuIds=menuId this.entity.menuIds = this.menuIds = menuId;
//console.log(menuId) //console.log(menuId)
Api.create(this.entity) Api.create(this.entity)
.then(r => { .then((r) => {
this.disabled = false; this.disabled = false;
if (r.success) { if (r.success) {
this.$Message.success("保存成功"); this.$Message.success("保存成功");
...@@ -76,7 +75,7 @@ export default { ...@@ -76,7 +75,7 @@ export default {
this.$Message.error("保存失败"); this.$Message.error("保存失败");
} }
}) })
.catch(err => { .catch((err) => {
this.disabled = false; this.disabled = false;
this.$Message.error("保存失败"); this.$Message.error("保存失败");
console.warn(err); console.warn(err);
...@@ -90,12 +89,12 @@ export default { ...@@ -90,12 +89,12 @@ export default {
l(key) { l(key) {
key = "set_menu" + "." + key; key = "set_menu" + "." + key;
return this.$t(key); return this.$t(key);
} },
}, },
watch: { watch: {
v() { v() {
this.entity = this.$u.clone(this.v); this.entity = this.$u.clone(this.v);
} },
} },
}; };
</script> </script>
\ No newline at end of file
<template> <template>
<Form ref="form" :model="entity" :rules="rules" :label-width="90" > <Form ref="form" :model="entity" :rules="rules" :label-width="90">
<Row> <Row>
<Col :span="24"> <Col :span="24">
<FormItem :label="l('title')" prop="title"> <FormItem :label="l('title')" prop="title">
...@@ -14,83 +14,78 @@ ...@@ -14,83 +14,78 @@
</Col> </Col>
<Col :span="24"> <Col :span="24">
<FormItem :label="l('menuIds')" style="margin-bottom:0px"></FormItem> <FormItem :label="l('menuIds')" style="margin-bottom:0px"></FormItem>
</Col> </Col>
<Col :span="24"> <Col :span="24">
<div style="overflow:auto;height:320px;margin-left: 60px;margin-bottom:16px"> <div style="overflow:auto;height:320px;margin-left: 60px;margin-bottom:16px">
<Tree ref="tree" :data="menuData" show-checkbox multiple ></Tree> <Tree ref="tree" :data="menuData" show-checkbox multiple></Tree>
</div> </div>
</Col> </Col>
</Row> </Row>
</Form> </Form>
</template> </template>
<script> <script>
import Api from './api' import Api from "./api";
import api1 from '../menu/api' import api1 from "../menu/api";
export default { export default {
name: 'Add', name: "Add",
data() { data() {
return { return {
entity: {}, entity: {},
menuData:[], menuData: [],
menuIds:[], menuIds: [],
rules: { rules: {
name: [{ required: true, message: '必填', trigger: 'blur' }], name: [{ required: true, message: "必填", trigger: "blur" }],
code: [{ required: true, message: '必填', trigger: 'blur' }] code: [{ required: true, message: "必填", trigger: "blur" }],
} },
} };
}, },
mounted(){ mounted() {
api1.getTree().then((v)=>{ api1.getTree().then((v) => {
this.menuData=v.result this.menuData = v.result;
}) });
}, },
props: { props: {
eid: Number eid: Number,
}, },
methods: { methods: {
load(v) { load(v) {
Api.get({ id: v }).then(r => { Api.get({ id: v }).then((r) => {
this.entity = r.result; this.entity = r.result;
this.menuIds=this.entity.menuIds; this.menuIds = this.entity.menuIds;
this.setChecked(this.menuData,this.menuIds) this.setChecked(this.menuData, this.menuIds);
this.$emit('on-load') this.$emit("on-load");
}) });
}, },
setChecked(data,ids){ setChecked(data, ids) {
if(ids.length==0){ if (ids.length == 0) {
return data; return data;
}
data.forEach(item=>{
if(!item.children || item.children.length == 0){
if(ids.indexOf(item.id)>-1){
this.$set(item,"checked",true);
}
}else if (item.children && item.children.length > 0) {
this.setChecked(item.children, ids)
}
})
},
handleClose() {
this.$emit('on-close')
},
l(key) {
key = "set_menu" + "." + key;
return this.$t(key)
} }
},
watch: { data.forEach((item) => {
eid(v) { if (!item.children || item.children.length == 0) {
if (v != 0) { if (ids.indexOf(item.id) > -1) {
this.load(v); this.$set(item, "checked", true);
} }
} } else if (item.children && item.children.length > 0) {
this.setChecked(item.children, ids);
} }
} });
},
handleClose() {
this.$emit("on-close");
},
l(key) {
key = "set_menu" + "." + key;
return this.$t(key);
},
},
watch: {
eid(v) {
if (v != 0) {
this.load(v);
}
},
},
};
</script> </script>
\ No newline at end of file
This diff is collapsed.
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