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

样式修改

parent b7759b27
<template>
<Form ref="form" :model="entity" :rules="rules" :label-width="90" >
<Form ref="form" :model="entity" :rules="rules" :label-width="90">
<Row>
<Col :span="24">
<FormItem :label="l('title')" prop="title">
......@@ -14,13 +14,12 @@
</Col>
<Col :span="24">
<FormItem :label="l('menuIds')" style="margin-bottom:0px"></FormItem>
<FormItem :label="l('menuIds')" style="margin-bottom:0px"></FormItem>
</Col>
<Col :span="24">
<div style="overflow:auto;height:320px;margin-left: 60px;margin-bottom:16px">
<Tree ref="tree" :data="menuData" show-checkbox multiple ></Tree>
</div>
<div style="overflow:auto;height:320px;margin-left: 60px;margin-bottom:16px">
<Tree ref="tree" :data="menuData" show-checkbox multiple></Tree>
</div>
</Col>
</Row>
<FormItem>
......@@ -31,43 +30,43 @@
</template>
<script>
import Api from "./api";
import api1 from '../menu/api'
import api1 from "../menu/api";
export default {
name: "Add",
data() {
return {
disabled: false,
entity: {status:1},
menuData:[],//菜单树数据
menuIds:[],//勾选的菜单数组
entity: { status: 1 },
menuData: [], //菜单树数据
menuIds: [], //勾选的菜单数组
rules: {
title: [{ required: true, message: "必填"}],
status:[{ required: true, message: "必填" }]
}
title: [{ required: true, message: "必填" }],
status: [{ required: true, message: "必填" }],
},
};
},
props: {
v: Object
v: Object,
},
mounted(){
api1.getTree().then((v)=>{
this.menuData=v.result
})
mounted() {
api1.getTree().then((v) => {
this.menuData = v.result;
});
},
methods: {
handleSubmit() {
this.$refs.form.validate(v => {
this.$refs.form.validate((v) => {
if (v) {
this.disabled = true;
//获取选中和半选的节点
let node=this.$refs.tree.getCheckedAndIndeterminateNodes();
let menuId=node.map(item=>{
return item.id
})
this.entity.menuIds=this.menuIds=menuId
let node = this.$refs.tree.getCheckedAndIndeterminateNodes();
let menuId = node.map((item) => {
return item.id;
});
this.entity.menuIds = this.menuIds = menuId;
//console.log(menuId)
Api.create(this.entity)
.then(r => {
.then((r) => {
this.disabled = false;
if (r.success) {
this.$Message.success("保存成功");
......@@ -76,7 +75,7 @@ export default {
this.$Message.error("保存失败");
}
})
.catch(err => {
.catch((err) => {
this.disabled = false;
this.$Message.error("保存失败");
console.warn(err);
......@@ -90,12 +89,12 @@ export default {
l(key) {
key = "set_menu" + "." + key;
return this.$t(key);
}
},
},
watch: {
v() {
this.entity = this.$u.clone(this.v);
}
}
},
},
};
</script>
\ No newline at end of file
<template>
<Form ref="form" :model="entity" :rules="rules" :label-width="90" >
<Form ref="form" :model="entity" :rules="rules" :label-width="90">
<Row>
<Col :span="24">
<FormItem :label="l('title')" prop="title">
......@@ -14,83 +14,78 @@
</Col>
<Col :span="24">
<FormItem :label="l('menuIds')" style="margin-bottom:0px"></FormItem>
<FormItem :label="l('menuIds')" style="margin-bottom:0px"></FormItem>
</Col>
<Col :span="24">
<div style="overflow:auto;height:320px;margin-left: 60px;margin-bottom:16px">
<Tree ref="tree" :data="menuData" show-checkbox multiple ></Tree>
</div>
<div style="overflow:auto;height:320px;margin-left: 60px;margin-bottom:16px">
<Tree ref="tree" :data="menuData" show-checkbox multiple></Tree>
</div>
</Col>
</Row>
</Form>
</template>
<script>
import Api from './api'
import api1 from '../menu/api'
export default {
name: 'Add',
data() {
return {
entity: {},
menuData:[],
menuIds:[],
rules: {
name: [{ required: true, message: '必填', trigger: 'blur' }],
code: [{ required: true, message: '必填', trigger: 'blur' }]
}
}
},
mounted(){
api1.getTree().then((v)=>{
this.menuData=v.result
})
},
props: {
eid: Number
},
methods: {
load(v) {
Api.get({ id: v }).then(r => {
this.entity = r.result;
this.menuIds=this.entity.menuIds;
this.setChecked(this.menuData,this.menuIds)
this.$emit('on-load')
})
},
setChecked(data,ids){
if(ids.length==0){
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)
import Api from "./api";
import api1 from "../menu/api";
export default {
name: "Add",
data() {
return {
entity: {},
menuData: [],
menuIds: [],
rules: {
name: [{ required: true, message: "必填", trigger: "blur" }],
code: [{ required: true, message: "必填", trigger: "blur" }],
},
};
},
mounted() {
api1.getTree().then((v) => {
this.menuData = v.result;
});
},
props: {
eid: Number,
},
methods: {
load(v) {
Api.get({ id: v }).then((r) => {
this.entity = r.result;
this.menuIds = this.entity.menuIds;
this.setChecked(this.menuData, this.menuIds);
this.$emit("on-load");
});
},
setChecked(data, ids) {
if (ids.length == 0) {
return data;
}
},
watch: {
eid(v) {
if (v != 0) {
this.load(v);
}
}
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: {
eid(v) {
if (v != 0) {
this.load(v);
}
},
},
};
</script>
\ No newline at end of file
<template>
<div>
<DataGrid :columns="columns" ref="grid" :action="action"><template slot="easySearch"><Form ref="formInline" :model="easySearch" inline><FormItem prop="keys"><Input placeholder="请输入关键字套餐名称/备注" v-model="easySearch.keys.value" /> </FormItem>
<FormItem><Button type="primary" @click="search">查询</Button></FormItem>
</Form></template>
<template slot="searchForm">
<Search />
</template>
<template slot="buttons">
<Button type="primary" @click="addModal=true">新增</Button>
</template>
</DataGrid>
<Modal v-model="addModal" title="新增" footer-hide>
<Add @on-close="cancel" @on-ok="addOk" />
</Modal>
<Modal v-model="editModal" title="编辑" footer-hide>
<Edit :eid="curId" @on-close="cancel" @on-ok="addOk" />
</Modal>
<Modal v-model="detailModal" title="详情">
<Detail :eid="curId" />
</Modal>
<Modal v-model="deletelModal" title="删除" @on-ok="removeOk"
@on-cancel="cancel">
<p>确定删除?</p>
</Modal>
</div>
<div>
<DataGrid :columns="columns" ref="grid" :action="action">
<template slot="easySearch">
<Form ref="formInline" :model="easySearch" inline>
<FormItem prop="keys">
<Input placeholder="请输入关键字套餐名称/备注" v-model="easySearch.keys.value" />
</FormItem>
<FormItem>
<Button type="primary" @click="search">查询</Button>
</FormItem>
</Form>
</template>
<template slot="searchForm">
<Search />
</template>
<template slot="buttons">
<Button type="primary" @click="addModal=true">新增</Button>
</template>
</DataGrid>
<Modal v-model="addModal" title="新增" footer-hide>
<Add @on-close="cancel" @on-ok="addOk" />
</Modal>
<Modal v-model="editModal" title="编辑" footer-hide>
<Edit :eid="curId" @on-close="cancel" @on-ok="addOk" />
</Modal>
<Modal v-model="detailModal" title="详情">
<Detail :eid="curId" />
</Modal>
<Modal v-model="deletelModal" title="删除" @on-ok="removeOk" @on-cancel="cancel">
<p>确定删除?</p>
</Modal>
</div>
</template>
<script>
import Api from './api'
import Add from './add'
import Edit from './edit'
import Detail from './detail'
import Search from './search'
import api from '../account/api'
import api1 from '../menu/api'
import Api from "./api";
import Add from "./add";
import Edit from "./edit";
import Detail from "./detail";
import Search from "./search";
import api from "../account/api";
import api1 from "../menu/api";
export default {
name: 'list',
components:{
Add,Edit,Detail,Search
name: "list",
components: {
Add,
Edit,
Detail,
Search,
},
data() {
return {
action: Api.index,
easySearch: {
keys:{op:"title,remark",value:null}
},
addModal: false,
editModal: false,
detailModal: false,
deletelModal: false,
curId: 0,
return {
action: Api.index,
easySearch: {
keys: { op: "title,remark", value: null },
},
addModal: false,
editModal: false,
detailModal: false,
deletelModal: false,
curId: 0,
columns: [
//{ key:"id",title:this.l("id") ,hide:true ,align:"left" },
{ key:"creationTime",title:this.l("creationTime") ,align:"center" ,width:200 },
{ key:"creatorUserId",title:this.l("creatorUserId") ,hide:true ,align:"left" },
{ key:"lastModificationTime",title:this.l("lastModificationTime") ,hide:true ,align:"left" },
{ key:"lastModifierUserId",title:this.l("lastModifierUserId") ,hide:true ,align:"left" },
{ key:"isDeleted",title:this.l("isDeleted") ,hide:true ,align:"left" },
{ key:"deletionTime",title:this.l("deletionTime") ,hide:true ,align:"left" },
{ key:"deleterUserId",title:this.l("deleterUserId") ,hide:true ,align:"left" },
{ key:"title",title:this.l("title") ,align:"center" ,easy:true ,high:true ,width:240 },
// { key:"remark",title:this.l("remark") ,align:"left" ,easy:true ,high:true },
{ key:"status",title:this.l("status") ,align:"center" ,high:true ,width:140,code:'crm.customer.status' },
{
title: '操作',
key: 'id',
width: 140,
align: 'center',
render: (h, params) => {
return h('div', { class: "action" }, [
h('op', { attrs: { oprate: 'detail' }, on: { click: () => this.detail(params.row.id) } }, '查看'),
h('op', { attrs: { oprate: 'edit'}, on: { click: () => this.edit(params.row.id) } }, '编辑'),
h('op', { attrs: { oprate: 'remove' }, on: { click: () => this.remove(params.row.id) } }, '删除')
])
}
//{ key:"id",title:this.l("id") ,hide:true ,align:"left" },
{
key: "creatorUserId",
title: this.l("creatorUserId"),
hide: true,
align: "left",
},
{
key: "lastModificationTime",
title: this.l("lastModificationTime"),
hide: true,
align: "left",
},
{
key: "lastModifierUserId",
title: this.l("lastModifierUserId"),
hide: true,
align: "left",
},
{
key: "isDeleted",
title: this.l("isDeleted"),
hide: true,
align: "left",
},
{
key: "deletionTime",
title: this.l("deletionTime"),
hide: true,
align: "left",
},
{
key: "deleterUserId",
title: this.l("deleterUserId"),
hide: true,
align: "left",
},
{
key: "title",
title: this.l("title"),
align: "left",
easy: true,
high: true,
},
// { key:"remark",title:this.l("remark") ,align:"left" ,easy:true ,high:true },
{
key: "status",
title: this.l("status"),
align: "center",
high: true,
width: 160,
code: "crm.customer.status",
},
{
key: "creationTime",
title: this.l("creationTime"),
align: "center",
width: 200,
},
{
title: "操作",
key: "id",
width: 200,
align: "center",
render: (h, params) => {
return h("div", { class: "action" }, [
h(
"op",
{
attrs: { oprate: "detail" },
on: { click: () => this.detail(params.row.id) },
},
"查看"
),
h(
"op",
{
attrs: { oprate: "edit" },
on: { click: () => this.edit(params.row.id) },
},
"编辑"
),
h(
"op",
{
attrs: { oprate: "remove" },
on: { click: () => this.remove(params.row.id) },
},
"删除"
),
]);
},
]
}
},
],
};
},
mounted(){
mounted() {
console.log(this);
},
async fetch({ store, params }) {
await store.dispatch('loadDictionary') // 加载数据字典
},
methods:{
addOk() {
this.$refs.grid.load()
this.addModal = false
this.detailModal = false
this.editModal = false;
this.curId = 0;
},
search() {
this.$refs.grid.reload(this.easySearch)
},
detail(id) {
this.detailModal = true;
this.curId = id;
},
edit(id) {
this.editModal = true;
this.curId = id;
},
remove(id) {
this.deletelModal = true;
this.curId = id;
},
removeOk() {
Api.delete({ id: this.curId }).then((r) => {
if (r.success) {
this.$refs.grid.load();
this.deletelModal = false;
this.$Message.success('删除成功')
}
})
},
removeCancel() {
async fetch({ store, params }) {
await store.dispatch("loadDictionary"); // 加载数据字典
},
methods: {
addOk() {
this.$refs.grid.load();
this.addModal = false;
this.detailModal = false;
this.editModal = false;
this.curId = 0;
},
search() {
this.$refs.grid.reload(this.easySearch);
},
detail(id) {
this.detailModal = true;
this.curId = id;
},
edit(id) {
this.editModal = true;
this.curId = id;
},
remove(id) {
this.deletelModal = true;
this.curId = id;
},
removeOk() {
Api.delete({ id: this.curId }).then((r) => {
if (r.success) {
this.$refs.grid.load();
this.deletelModal = false;
},
cancel() {
this.curId = 0;
this.addModal = false
this.detailModal = false
this.editModal = false;
this.deletedlModal = false;
},
l(key) {
/*
this.$Message.success("删除成功");
}
});
},
removeCancel() {
this.deletelModal = false;
},
cancel() {
this.curId = 0;
this.addModal = false;
this.detailModal = false;
this.editModal = false;
this.deletedlModal = false;
},
l(key) {
/*
set_menu:{
id:'',
creationTime:'创建时间',
......@@ -144,11 +223,11 @@ keys:{op:"title,remark",value:null}
status:'状态',
}
*/
let vkey = "set_menu" + "." + key;
return this.$t(vkey)||key
}
}
}
let vkey = "set_menu" + "." + key;
return this.$t(vkey) || key;
},
},
};
</script>
<style lang="less">
</style>
\ No newline at end of file
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