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
4f89e496
Commit
4f89e496
authored
Oct 26, 2020
by
仇晓婷
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'product' of
http://git.mes123.com/zhouyx/mes-ui
into product
parents
2bf71804
c6468b1f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
560 additions
and
565 deletions
+560
-565
speed.vue
pages/order/monitoring/speed.vue
+377
-396
add.vue
pages/project/record/add.vue
+43
-8
index1.vue
pages/project/record/index1.vue
+34
-6
add.vue
pages/project/task/add.vue
+28
-55
detail.vue
pages/project/task/detail.vue
+18
-12
edit.vue
pages/project/task/edit.vue
+32
-58
index.vue
pages/project/task/index.vue
+28
-30
No files found.
pages/order/monitoring/speed.vue
View file @
4f89e496
This diff is collapsed.
Click to expand it.
pages/project/record/add.vue
View file @
4f89e496
...
...
@@ -8,20 +8,18 @@
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('status')"
prop=
"status"
>
<Dictionary
code=
"mes.project_plan_record.Status"
v-model=
"entity.status"
></Dictionary>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('title')"
prop=
"title"
>
<Input
v-model=
"entity.title"
>
</Input>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('note')"
prop=
"note"
>
<Input
v-model=
"entity.note"
>
</Input>
<Col
:span=
"24"
>
<FormItem
:label=
"l('note')"
prop=
"note"
>
<i-quill
v-model=
"entity.note"
:height=
"300"
v-paste=
"handleImg"
/></Input>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('attachment')"
prop=
"attachment"
>
<Input
v-model=
"entity.attachment"
>
</Input>
<FormItem
:label=
"l('attachment')"
prop=
"attachment"
>
<files
ref=
"refFile"
:parms=
"parms"
files
/>
</Input>
</FormItem>
</Col>
</Row>
...
...
@@ -34,8 +32,12 @@
<
script
>
import
Api
from
'./api'
import
iQuill
from
'@/components/quill'
export
default
{
name
:
'Add'
,
components
:
{
iQuill
},
data
()
{
return
{
disabled
:
false
,
...
...
@@ -56,6 +58,12 @@ export default {
attachment
:
""
,
taskId
:
""
},
parms
:
{
app
:
"taskRecord"
,
eid
:
null
,
name
:
""
,
field
:
""
,
},
rules
:
{
name
:
[{
required
:
true
,
...
...
@@ -72,12 +80,18 @@ export default {
mounted
()
{
if
(
this
.
eid
!=
""
)
{
this
.
load
(
this
.
eid
);
this
.
parms
.
eid
=
this
.
$u
.
guid
();
}
},
methods
:
{
handleSubmit
()
{
this
.
$refs
.
form
.
validate
((
v
)
=>
{
if
(
v
)
{
if
(
this
.
$refs
.
refFile
.
nameList
.
length
>
0
)
{
this
.
entity
.
attachment
=
this
.
parms
.
eid
;
}
else
{
this
.
entity
.
attachment
=
""
;
}
this
.
disabled
=
true
;
this
.
entity
.
taskId
=
this
.
eid
Api
.
create
(
this
.
entity
).
then
((
r
)
=>
{
...
...
@@ -107,6 +121,27 @@ export default {
this
.
entity
.
id
=
0
;
});
},
handleImg
(
e
)
{
console
.
warn
(
e
)
let
file
=
null
if
(
e
.
clipboardData
&&
e
.
clipboardData
.
items
[
0
]
&&
e
.
clipboardData
.
items
[
0
].
type
&&
e
.
clipboardData
.
items
[
0
].
type
.
indexOf
(
'image'
)
>
-
1
)
{
//这里就是判断是否有粘贴进来的文件且文件为图片格式
file
=
e
.
clipboardData
.
items
[
0
].
getAsFile
()
let
reader
=
new
FileReader
()
reader
.
readAsDataURL
(
file
)
setTimeout
(()
=>
{
var
img
=
'<img src="'
+
reader
.
result
+
'" alt=""/>'
this
.
entity
.
note
+=
img
},
1000
)
// new R
}
},
l
(
key
)
{
key
=
"project_plan_record"
+
"."
+
key
;
return
this
.
$t
(
key
)
...
...
pages/project/record/index1.vue
View file @
4f89e496
...
...
@@ -4,7 +4,7 @@
<Form
ref=
"formInline"
:model=
"easySearch"
inline
>
<FormItem>
<div
class=
"taskMenu"
>
<Menu
mode=
"horizontal"
active-name=
"2"
@
on-select=
"onSelect"
>
<Menu
mode=
"horizontal"
active-name=
"2"
>
<MenuItem
name=
"1"
>
所有
</MenuItem>
...
...
@@ -40,7 +40,7 @@
</div>
</FormItem>
<FormItem
style=
"float:right"
>
<Button
type=
"primary"
@
click=
"add"
>
新增
</Button>
<Button
type=
"primary"
@
click=
"add"
>
新增
记录
</Button>
</FormItem>
</Form>
</div>
...
...
@@ -73,14 +73,28 @@
</Col>
<Col
span=
"19"
>
<div
class=
"boxBoder"
>
<Timeline>
<TimelineItem
v-for=
"(item,index) in recordList"
:key=
"index"
>
<Timeline
v-if=
"recordList&&recordList.length>0"
>
<TimelineItem
v-for=
"(item,index) in recordList"
:key=
"index"
v-if=
"recordList&&recordList.length>0"
>
<p
class=
"content"
>
{{item.creationTime}}
</p>
<p
class=
"content"
>
<User
:value=
"item.creatorUserId"
></User>
关闭了 任务 1089 测试任务
<User
:value=
"item.creatorUserId"
></User>
新增:{{item.title}}
<!--
<Tooltip max-width="400" v-if="item.note">
<a>详细信息</a>
<div slot="content">
<div v-html=" item.note"></div>
</div>
</Tooltip>
-->
</p>
<p
v-if=
"item.note"
>
<div
class=
"pl10"
v-html=
"item.note"
></div>
</p>
<p
class=
"pl10"
v-if=
"item.attachment"
><a
@
click=
"viewFiles(item.attachment)"
>
查看附件
</a></p>
</TimelineItem>
</Timeline>
<p
class=
"content"
v-else
>
暂无数据
</p>
</div>
</Col>
</Row>
...
...
@@ -89,6 +103,9 @@
<Modal
v-model=
"modal"
:title=
"title"
width=
"1200"
footer-hide
>
<component
:is=
"detail"
:eid=
"curId"
@
on-close=
"cancel"
@
on-ok=
"ok"
/>
</Modal>
<Modal
v-model=
"modalFiles"
title=
"查看附件"
width=
"800"
footer-hide
:mask-closable=
"false"
>
<FilesView
ref=
"refFile"
:parms=
"parms"
/>
</Modal>
</div>
</template>
...
...
@@ -117,6 +134,7 @@ export default {
value
:
null
}
},
modalFiles
:
false
,
modal
:
false
,
title
:
"新增"
,
detail
:
null
,
...
...
@@ -258,7 +276,13 @@ export default {
}
},
],
recordList
:
[]
recordList
:
[],
parms
:
{
app
:
"taskRecord"
,
eid
:
null
,
name
:
""
,
field
:
""
,
},
}
},
mounted
()
{
...
...
@@ -335,6 +359,10 @@ export default {
this
.
curId
=
0
;
this
.
modal
=
false
},
viewFiles
(
val
)
{
this
.
parms
.
eid
=
val
;
this
.
modalFiles
=
true
;
},
l
(
key
)
{
let
vkey
=
"project_plan_record"
+
"."
+
key
;
return
this
.
$t
(
vkey
)
||
key
...
...
pages/project/task/add.vue
View file @
4f89e496
...
...
@@ -5,71 +5,19 @@
<FormItem
:label=
"l('title')"
prop=
"title"
>
<Input
v-model=
"entity.title"
>
</Input>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('level')"
prop=
"level"
>
<Dictionary
code=
"project.task.level"
v-model=
"entity.level"
></Dictionary>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('projectTitle')"
prop=
"projectTitle"
>
<Input
v-model=
"entity.projectTitle"
>
</Input>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('planTitle')"
prop=
"planTitle"
>
<Input
v-model=
"entity.planTitle"
>
</Input>
</FormItem>
</Col>
<Col
:span=
"12"
v-if=
"false"
>
<FormItem
:label=
"l('planId')"
prop=
"planId"
>
<Input
v-model=
"entity.planId"
></Input>
</FormItem>
</Col>
<Col
:span=
"12"
v-if=
"false"
>
<FormItem
:label=
"l('projectId')"
prop=
"projectId"
>
<Input
v-model=
"entity.projectId"
></Input>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('userId')"
prop=
"userId"
>
<UserSelect
ref=
"userSelected"
v-model=
"entity.userId"
/>
</Input>
<UserSelect
ref=
"userSelected"
v-model=
"entity.userId"
/>
</FormItem>
</Col>
<Col
:span=
"24"
>
<FormItem
:label=
"l('userIds')"
prop=
"userIds"
>
<Input
v-model=
"entity.userIds"
type=
"textarea"
:rows=
"5"
></Input>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('startDate')"
prop=
"startDate"
>
<DatePicker
type=
"date"
v-model=
"entity.startDate"
></DatePicker>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('endDate')"
prop=
"endDate"
>
<DatePicker
type=
"date"
v-model=
"entity.endDate"
></DatePicker>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('plansToStartDate')"
prop=
"plansToStartDate"
>
<DatePicker
type=
"date"
v-model=
"entity.plansToStartDate"
></DatePicker>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('plansToEndTime')"
prop=
"plansToEndTime"
>
<DatePicker
type=
"date"
v-model=
"entity.plansToEndTime"
></DatePicker>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('completePercentage')"
prop=
"completePercentage"
>
<InputNumber
v-model=
"entity.completePercentage"
></InputNumber>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('note')"
prop=
"note"
>
<Input
v-model=
"entity.note"
>
</Input>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('upTaskId')"
prop=
"upTaskId"
>
<InputNumber
v-model=
"entity.upTaskId"
></InputNumber>
<FormItem
:label=
"l('note')"
prop=
"note"
>
<i-quill
v-model=
"entity.note"
:height=
"300"
v-paste=
"handleImg"
/>
</FormItem>
</Col>
</Row>
...
...
@@ -82,8 +30,12 @@
<
script
>
import
Api
from
'./api'
import
iQuill
from
'@/components/quill'
export
default
{
name
:
'Add'
,
components
:
{
iQuill
},
data
()
{
return
{
disabled
:
false
,
...
...
@@ -169,6 +121,27 @@ export default {
this
.
entity
.
id
=
0
;
});
},
handleImg
(
e
)
{
console
.
warn
(
e
)
let
file
=
null
if
(
e
.
clipboardData
&&
e
.
clipboardData
.
items
[
0
]
&&
e
.
clipboardData
.
items
[
0
].
type
&&
e
.
clipboardData
.
items
[
0
].
type
.
indexOf
(
'image'
)
>
-
1
)
{
//这里就是判断是否有粘贴进来的文件且文件为图片格式
file
=
e
.
clipboardData
.
items
[
0
].
getAsFile
()
let
reader
=
new
FileReader
()
reader
.
readAsDataURL
(
file
)
setTimeout
(()
=>
{
var
img
=
'<img src="'
+
reader
.
result
+
'" alt=""/>'
this
.
entity
.
note
+=
img
},
1000
)
// new R
}
},
l
(
key
)
{
key
=
"project_task"
+
"."
+
key
;
return
this
.
$t
(
key
)
...
...
pages/project/task/detail.vue
View file @
4f89e496
<
template
>
<div
class=
"detail"
>
<Row
style=
"height:
180
px"
>
<div
class=
"detail"
style=
"width:100%"
>
<Row
style=
"height:
284
px"
>
<Filed
:span=
"6"
:name=
"l('creationTime')"
>
{{
entity
.
creationTime
}}
</Filed>
<Filed
:span=
"6"
:name=
"l('creatorUserId')"
>
<User
:value=
"entity.creatorUserId"
></User>
</Filed>
<Filed
:span=
"6"
:name=
"l('title')"
>
{{
entity
.
title
}}
</Filed>
<Filed
:span=
"6"
:name=
"l('level')"
>
{{
entity
.
level
}}
</Filed>
<Filed
:span=
"6"
:name=
"l('status')"
>
{{
entity
.
status
}}
</Filed>
<Filed
:span=
"6"
:name=
"l('projectTitle')"
>
{{
entity
.
projectTitle
}}
</Filed>
<Filed
:span=
"6"
:name=
"l('planTitle')"
>
{{
entity
.
planTitle
}}
</Filed>
<Filed
:span=
"6"
:name=
"l('userIds')"
>
{{
entity
.
userIds
}}
</Filed>
<Filed
:span=
"6"
:name=
"l('level')"
>
<state
code=
"project.task.level"
:value=
"entity.level"
type=
"text"
></state>
</Filed>
<Filed
:span=
"6"
:name=
"l('status')"
>
<state
code=
"project.task.status"
:value=
"entity.status"
type=
"text"
></state>
</Filed>
<Filed
:span=
"6"
:name=
"l('userId')"
>
{{
entity
.
userId
}}
</Filed>
<Filed
:span=
"6"
:name=
"l('endDate')"
>
{{
entity
.
endDate
}}
</Filed>
<Filed
:span=
"6"
:name=
"l('note')"
>
{{
entity
.
note
}}
</Filed>
<Filed
:span=
"6"
:name=
"l('startDate')"
>
{{
entity
.
startDate
}}
</Filed>
<Filed
:span=
"6"
:name=
"l('plansToStartDate')"
>
{{
entity
.
plansToStartDate
}}
</Filed>
<Filed
:span=
"6"
:name=
"l('plansToEndTime')"
>
{{
entity
.
plansToEndTime
}}
</Filed>
<Filed
:span=
"6"
:name=
"l('completePercentage')"
>
{{
entity
.
completePercentage
}}
</Filed>
<Filed
:span=
"6"
:name=
"l('upTaskId')"
>
{{
entity
.
upTaskId
}}
</Filed>
<Filed
:span=
"24"
:name=
"l('note')"
>
<div
style=
"height:200px"
v-html=
"entity.note"
class=
"tex_in10"
></div>
</Filed>
</Row>
<component
:is=
"detail"
:eid=
"curId"
/>
</div>
...
...
@@ -84,3 +83,10 @@ export default {
}
}
</
script
>
<
style
scoped
>
.tex_in10
{
text-indent
:
12px
;
text-align
:
inherit
!important
;
}
</
style
>
pages/project/task/edit.vue
View file @
4f89e496
...
...
@@ -6,74 +6,19 @@
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('planId')"
prop=
"planId"
>
<Input
v-model=
"entity.planId"
></Input>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('projectId')"
prop=
"projectId"
>
<Input
v-model=
"entity.projectId"
></Input>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('level')"
prop=
"level"
>
<Dictionary
code=
"project.task.level"
v-model=
"entity.level"
></Dictionary>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('status')"
prop=
"status"
>
<Dictionary
code=
"project.task.status"
v-model=
"entity.status"
></Dictionary>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('projectTitle')"
prop=
"projectTitle"
>
<Input
v-model=
"entity.projectTitle"
>
</Input>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('planTitle')"
prop=
"planTitle"
>
<Input
v-model=
"entity.planTitle"
>
</Input>
</FormItem>
</Col>
<Col
:span=
"24"
>
<FormItem
:label=
"l('userIds')"
prop=
"userIds"
>
<Input
v-model=
"entity.userIds"
type=
"textarea"
:rows=
"5"
></Input>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('userId')"
prop=
"userId"
>
<UserSelect
ref=
"userSelected"
v-model=
"entity.userId"
/></Input>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('startDate')"
prop=
"startDate"
>
<DatePicker
type=
"date"
v-model=
"entity.startDate"
></DatePicker>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('endDate')"
prop=
"endDate"
>
<DatePicker
type=
"date"
v-model=
"entity.endDate"
></DatePicker>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('plansToStartDate')"
prop=
"plansToStartDate"
>
<DatePicker
type=
"date"
v-model=
"entity.plansToStartDate"
></DatePicker>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('plansToEndTime')"
prop=
"plansToEndTime"
>
<DatePicker
type=
"date"
v-model=
"entity.plansToEndTime"
></DatePicker>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('completePercentage')"
prop=
"completePercentage"
>
<InputNumber
v-model=
"entity.completePercentage"
></InputNumber>
</FormItem>
</Col>
<Col
:span=
"24"
>
<FormItem
:label=
"l('note')"
prop=
"note"
>
<Input
v-model=
"entity.note"
>
</Input>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('upTaskId')"
prop=
"upTaskId"
>
<Input
v-model=
"entity.upTaskId"
></Input>
<FormItem
:label=
"l('note')"
prop=
"note"
>
<i-quill
v-model=
"entity.note"
:height=
"300"
v-paste=
"handleImg"
/></Input>
</FormItem>
</Col>
</Row>
...
...
@@ -85,9 +30,16 @@
</
template
>
<
script
>
import
{
replace
}
from
'lodash'
;
import
Api
from
'./api'
import
iQuill
from
'@/components/quill'
export
default
{
name
:
'Edit'
,
components
:
{
iQuill
},
data
()
{
return
{
disabled
:
false
,
...
...
@@ -121,6 +73,7 @@ export default {
id
:
v
}).
then
(
r
=>
{
this
.
entity
=
r
.
result
;
this
.
entity
.
userId
=
parseInt
(
r
.
result
.
userId
)
})
},
handleSubmit
()
{
...
...
@@ -146,6 +99,27 @@ export default {
handleClose
()
{
this
.
$emit
(
'on-close'
)
},
handleImg
(
e
)
{
console
.
warn
(
e
)
let
file
=
null
if
(
e
.
clipboardData
&&
e
.
clipboardData
.
items
[
0
]
&&
e
.
clipboardData
.
items
[
0
].
type
&&
e
.
clipboardData
.
items
[
0
].
type
.
indexOf
(
'image'
)
>
-
1
)
{
//这里就是判断是否有粘贴进来的文件且文件为图片格式
file
=
e
.
clipboardData
.
items
[
0
].
getAsFile
()
let
reader
=
new
FileReader
()
reader
.
readAsDataURL
(
file
)
setTimeout
(()
=>
{
var
img
=
'<img src="'
+
reader
.
result
+
'" alt=""/>'
this
.
entity
.
note
+=
img
},
1000
)
// new R
}
},
l
(
key
)
{
key
=
"project_task"
+
"."
+
key
;
return
this
.
$t
(
key
)
...
...
pages/project/task/index.vue
View file @
4f89e496
...
...
@@ -108,12 +108,14 @@ export default {
detail
:
null
,
curId
:
''
,
fullScreen
:
false
,
columns
:
[{
key
:
"selection"
,
type
:
"selection"
,
width
:
50
,
align
:
"center"
},
{
columns
:
[
// {
// key: "selection",
// type: "selection",
// width: 50,
// align: "center"
// },
{
key
:
"id"
,
title
:
this
.
$t
(
"id"
),
align
:
"left"
,
...
...
@@ -131,7 +133,7 @@ export default {
oprate
:
'detail'
},
on
:
{
click
:
()
=>
this
.
add
Record
(
params
.
row
.
id
)
click
:
()
=>
this
.
view
Record
(
params
.
row
.
id
)
}
},
params
.
row
.
title
)
}
...
...
@@ -179,34 +181,12 @@ export default {
title
:
this
.
l
(
"startDate"
),
align
:
"center"
,
high
:
true
,
type
:
'date'
},
{
key
:
"endDate"
,
title
:
this
.
l
(
"endDate"
),
align
:
"center"
,
high
:
true
,
type
:
'date'
},
{
key
:
"plansToStartDate"
,
title
:
this
.
l
(
"plansToStartDate"
),
align
:
"center"
,
high
:
true
,
type
:
'date'
},
{
key
:
"plansToEndTime"
,
title
:
this
.
l
(
"plansToEndTime"
),
align
:
"center"
,
high
:
true
,
type
:
'date'
},
{
key
:
"completePercentage"
,
title
:
this
.
l
(
"completePercentage"
),
align
:
"left"
,
high
:
true
},
{
key
:
"note"
,
...
...
@@ -272,6 +252,17 @@ export default {
click
:
()
=>
params
.
row
.
status
!=
0
?
this
.
updatestatus
(
params
.
row
.
id
,
3
)
:
null
}
}),
h
(
'op'
,
{
attrs
:
{
icon
:
"md-add"
,
type
:
"icon"
,
title
:
params
.
row
.
status
!=
3
?
"新增记录"
:
"无法操作"
,
color
:
params
.
row
.
status
!=
3
?
"#19be6b"
:
"#ccc"
,
},
on
:
{
click
:
()
=>
params
.
row
.
status
!=
0
?
this
.
addRecord
(
params
.
row
.
id
)
:
null
}
}),
h
(
'op'
,
{
attrs
:
{
icon
:
"ios-create-outline"
,
...
...
@@ -408,11 +399,18 @@ export default {
onSelect
(
val
)
{
this
.
$refs
.
grid
.
reload
(
this
.
easySearch
)
},
viewRecord
(
id
)
{
this
.
curId
=
id
;
this
.
title
=
"查看记录"
;
this
.
fullScreen
=
true
;
this
.
detail
=
()
=>
import
(
'./detail'
)
this
.
modal
=
true
;
},
addRecord
(
id
)
{
this
.
curId
=
id
;
this
.
title
=
"新增记录"
;
this
.
fullScreen
=
true
;
this
.
detail
=
()
=>
import
(
'.
/detail
'
)
this
.
detail
=
()
=>
import
(
'.
./record/add
'
)
this
.
modal
=
true
;
},
l
(
key
)
{
...
...
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