Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mes-ui
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
周远喜
mes-ui
Commits
c0623cee
Commit
c0623cee
authored
Jul 28, 2020
by
仇晓婷
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
样式修改
parent
b7759b27
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
297 additions
and
224 deletions
+297
-224
add.vue
pages/system/set_menu/add.vue
+28
-29
detail.vue
pages/system/set_menu/detail.vue
+66
-71
index.vue
pages/system/set_menu/index.vue
+203
-124
No files found.
pages/system/set_menu/add.vue
View file @
c0623cee
<
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"
>
...
@@ -18,9 +18,8 @@
...
@@ -18,9 +18,8 @@
</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
pages/system/set_menu/detail.vue
View file @
c0623cee
<
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"
>
...
@@ -18,79 +18,74 @@
...
@@ -18,79 +18,74 @@
</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
(){
};
api1
.
getTree
().
then
((
v
)
=>
{
},
this
.
menuData
=
v
.
result
mounted
()
{
})
api1
.
getTree
().
then
((
v
)
=>
{
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
=>
{
data
.
forEach
((
item
)
=>
{
if
(
!
item
.
children
||
item
.
children
.
length
==
0
)
{
if
(
!
item
.
children
||
item
.
children
.
length
==
0
){
if
(
ids
.
indexOf
(
item
.
id
)
>
-
1
)
{
this
.
$set
(
item
,
"checked"
,
true
);
if
(
ids
.
indexOf
(
item
.
id
)
>-
1
){
this
.
$set
(
item
,
"checked"
,
true
);
}
}
}
else
if
(
item
.
children
&&
item
.
children
.
length
>
0
)
{
}
else
if
(
item
.
children
&&
item
.
children
.
length
>
0
)
{
this
.
setChecked
(
item
.
children
,
ids
)
this
.
setChecked
(
item
.
children
,
ids
);
}
}
});
})
},
},
handleClose
()
{
handleClose
()
{
this
.
$emit
(
'on-close'
)
this
.
$emit
(
"on-close"
);
},
},
l
(
key
)
{
l
(
key
)
{
key
=
"set_menu"
+
"."
+
key
;
key
=
"set_menu"
+
"."
+
key
;
return
this
.
$t
(
key
)
return
this
.
$t
(
key
);
}
},
},
},
watch
:
{
watch
:
{
eid
(
v
)
{
eid
(
v
)
{
if
(
v
!=
0
)
{
if
(
v
!=
0
)
{
this
.
load
(
v
);
this
.
load
(
v
);
}
}
}
},
}
},
}
};
</
script
>
</
script
>
\ No newline at end of file
pages/system/set_menu/index.vue
View file @
c0623cee
<
template
>
<
template
>
<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>
<DataGrid
:columns=
"columns"
ref=
"grid"
:action=
"action"
>
<FormItem><Button
type=
"primary"
@
click=
"search"
>
查询
</Button></FormItem>
<template
slot=
"easySearch"
>
</Form></
template
>
<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"
>
<
template
slot=
"searchForm"
>
<Search
/>
<Search
/>
</
template
>
</
template
>
...
@@ -19,31 +27,33 @@
...
@@ -19,31 +27,33 @@
<Modal
v-model=
"detailModal"
title=
"详情"
>
<Modal
v-model=
"detailModal"
title=
"详情"
>
<Detail
:eid=
"curId"
/>
<Detail
:eid=
"curId"
/>
</Modal>
</Modal>
<Modal
v-model=
"deletelModal"
title=
"删除"
@
on-ok=
"removeOk"
<Modal
v-model=
"deletelModal"
title=
"删除"
@
on-ok=
"removeOk"
@
on-cancel=
"cancel"
>
@
on-cancel=
"cancel"
>
<p>
确定删除?
</p>
<p>
确定删除?
</p>
</Modal>
</Modal>
</div>
</div>
</template>
</template>
<
script
>
<
script
>
import
Api
from
'./api'
import
Api
from
"./api"
;
import
Add
from
'./add'
import
Add
from
"./add"
;
import
Edit
from
'./edit'
import
Edit
from
"./edit"
;
import
Detail
from
'./detail'
import
Detail
from
"./detail"
;
import
Search
from
'./search'
import
Search
from
"./search"
;
import
api
from
'../account/api'
import
api
from
"../account/api"
;
import
api1
from
'../menu/api'
import
api1
from
"../menu/api"
;
export
default
{
export
default
{
name
:
'list'
,
name
:
"list"
,
components
:{
components
:
{
Add
,
Edit
,
Detail
,
Search
Add
,
Edit
,
Detail
,
Search
,
},
},
data
()
{
data
()
{
return
{
return
{
action
:
Api
.
index
,
action
:
Api
.
index
,
easySearch
:
{
easySearch
:
{
keys
:{
op
:
"title,remark"
,
value
:
null
}
keys
:
{
op
:
"title,remark"
,
value
:
null
},
},
},
addModal
:
false
,
addModal
:
false
,
editModal
:
false
,
editModal
:
false
,
detailModal
:
false
,
detailModal
:
false
,
...
@@ -51,50 +61,119 @@ keys:{op:"title,remark",value:null}
...
@@ -51,50 +61,119 @@ keys:{op:"title,remark",value:null}
curId
:
0
,
curId
:
0
,
columns
:
[
columns
:
[
//{ key:"id",title:this.l("id") ,hide:true ,align:"left" },
//{ 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
:
"creatorUserId"
,
{
key
:
"lastModifierUserId"
,
title
:
this
.
l
(
"lastModifierUserId"
)
,
hide
:
true
,
align
:
"left"
},
title
:
this
.
l
(
"creatorUserId"
),
{
key
:
"isDeleted"
,
title
:
this
.
l
(
"isDeleted"
)
,
hide
:
true
,
align
:
"left"
},
hide
:
true
,
{
key
:
"deletionTime"
,
title
:
this
.
l
(
"deletionTime"
)
,
hide
:
true
,
align
:
"left"
},
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
:
"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:"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
:
"status"
,
key
:
'id'
,
title
:
this
.
l
(
"status"
),
width
:
140
,
align
:
"center"
,
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
)
=>
{
render
:
(
h
,
params
)
=>
{
return
h
(
'div'
,
{
class
:
"action"
},
[
return
h
(
"div"
,
{
class
:
"action"
},
[
h
(
'op'
,
{
attrs
:
{
oprate
:
'detail'
},
on
:
{
click
:
()
=>
this
.
detail
(
params
.
row
.
id
)
}
},
'查看'
),
h
(
h
(
'op'
,
{
attrs
:
{
oprate
:
'edit'
},
on
:
{
click
:
()
=>
this
.
edit
(
params
.
row
.
id
)
}
},
'编辑'
)
,
"op"
,
h
(
'op'
,
{
attrs
:
{
oprate
:
'remove'
},
on
:
{
click
:
()
=>
this
.
remove
(
params
.
row
.
id
)
}
},
'删除'
)
{
])
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
);
console
.
log
(
this
);
},
},
async
fetch
({
store
,
params
})
{
async
fetch
({
store
,
params
})
{
await
store
.
dispatch
(
'loadDictionary'
)
// 加载数据字典
await
store
.
dispatch
(
"loadDictionary"
);
// 加载数据字典
},
},
methods
:{
methods
:
{
addOk
()
{
addOk
()
{
this
.
$refs
.
grid
.
load
()
this
.
$refs
.
grid
.
load
();
this
.
addModal
=
false
this
.
addModal
=
false
;
this
.
detailModal
=
false
this
.
detailModal
=
false
;
this
.
editModal
=
false
;
this
.
editModal
=
false
;
this
.
curId
=
0
;
this
.
curId
=
0
;
},
},
search
()
{
search
()
{
this
.
$refs
.
grid
.
reload
(
this
.
easySearch
)
this
.
$refs
.
grid
.
reload
(
this
.
easySearch
);
},
},
detail
(
id
)
{
detail
(
id
)
{
this
.
detailModal
=
true
;
this
.
detailModal
=
true
;
...
@@ -114,17 +193,17 @@ keys:{op:"title,remark",value:null}
...
@@ -114,17 +193,17 @@ keys:{op:"title,remark",value:null}
if
(
r
.
success
)
{
if
(
r
.
success
)
{
this
.
$refs
.
grid
.
load
();
this
.
$refs
.
grid
.
load
();
this
.
deletelModal
=
false
;
this
.
deletelModal
=
false
;
this
.
$Message
.
success
(
'删除成功'
)
this
.
$Message
.
success
(
"删除成功"
);
}
}
})
});
},
},
removeCancel
()
{
removeCancel
()
{
this
.
deletelModal
=
false
;
this
.
deletelModal
=
false
;
},
},
cancel
()
{
cancel
()
{
this
.
curId
=
0
;
this
.
curId
=
0
;
this
.
addModal
=
false
this
.
addModal
=
false
;
this
.
detailModal
=
false
this
.
detailModal
=
false
;
this
.
editModal
=
false
;
this
.
editModal
=
false
;
this
.
deletedlModal
=
false
;
this
.
deletedlModal
=
false
;
},
},
...
@@ -145,10 +224,10 @@ keys:{op:"title,remark",value:null}
...
@@ -145,10 +224,10 @@ keys:{op:"title,remark",value:null}
}
}
*/
*/
let
vkey
=
"set_menu"
+
"."
+
key
;
let
vkey
=
"set_menu"
+
"."
+
key
;
return
this
.
$t
(
vkey
)
||
key
return
this
.
$t
(
vkey
)
||
key
;
}
},
}
}
,
}
}
;
</
script
>
</
script
>
<
style
lang=
"less"
>
<
style
lang=
"less"
>
</
style
>
</
style
>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment