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
cdc709ba
Commit
cdc709ba
authored
Apr 29, 2020
by
renjintao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add
parent
496c0920
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
298 additions
and
182 deletions
+298
-182
zh-CN.js
i18n/locale/zh-CN.js
+3
-3
add.vue
pages/technology/details/add.vue
+292
-178
index.vue
pages/technology/details/index.vue
+3
-1
No files found.
i18n/locale/zh-CN.js
View file @
cdc709ba
...
...
@@ -1201,11 +1201,11 @@ export default {
isDeleted
:
'是否删除'
,
deleterUserId
:
'删除人'
,
deletionTime
:
'删除时间'
,
classId
:
''
,
classId
:
'
classId
'
,
routingHeaderId
:
'工艺规程id'
,
name
:
'工序名称'
,
taskSeq
:
'工序号'
,
description
:
'
备注
'
,
description
:
'
描述
'
,
taskContent
:
'工序内容'
,
resourceId
:
'资源ID'
,
resourceType
:
'资源类型'
,
...
...
@@ -1217,7 +1217,7 @@ export default {
efficiencyValue
:
'效率系数'
,
singleOut
:
'单件产出'
,
isOutside
:
'是否外协'
,
departmentId
:
'
工序的
承制车间'
,
departmentId
:
'承制车间'
,
isImportant
:
'是否关键工序'
,
milestoneId
:
'里程碑'
,
phaseId
:
'阶段id'
,
...
...
pages/technology/details/add.vue
View file @
cdc709ba
<
template
>
<Form
ref=
"form"
:model=
"entity"
:rules=
"rules"
:label-width=
"90"
>
<Row>
<Col
:span=
"12"
><FormItem
:label=
"l('classId')"
prop=
"classId"
>
<InputNumber
v-model=
"entity.classId"
></InputNumber>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('routingHeaderId')"
prop=
"routingHeaderId"
>
<InputNumber
v-model=
"entity.routingHeaderId"
></InputNumber>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('name')"
prop=
"name"
>
<Input
v-model=
"entity.name"
>
</Input>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('taskSeq')"
prop=
"taskSeq"
>
<InputNumber
v-model=
"entity.taskSeq"
></InputNumber>
</FormItem></Col>
<Col
:span=
"24"
><FormItem
:label=
"l('description')"
prop=
"description"
>
<Input
v-model=
"entity.description"
type=
"textarea"
:rows=
"5"
></Input>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('taskContent')"
prop=
"taskContent"
>
<Input
v-model=
"entity.taskContent"
>
</Input>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('resourceId')"
prop=
"resourceId"
>
<InputNumber
v-model=
"entity.resourceId"
></InputNumber>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('resourceType')"
prop=
"resourceType"
>
<Dictionary
code=
"Process.routing_detail.resource_type"
v-model=
"entity.resourceType"
></Dictionary>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('runtime')"
prop=
"runtime"
>
<InputNumber
v-model=
"entity.runtime"
></InputNumber>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('setupTime')"
prop=
"setupTime"
>
<InputNumber
v-model=
"entity.setupTime"
></InputNumber>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('transportTime')"
prop=
"transportTime"
>
<InputNumber
v-model=
"entity.transportTime"
></InputNumber>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('checkTime')"
prop=
"checkTime"
>
<InputNumber
v-model=
"entity.checkTime"
></InputNumber>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('checkFlag')"
prop=
"checkFlag"
>
<Dictionary
code=
"Process.routing_detail.check_flag"
v-model=
"entity.checkFlag"
></Dictionary>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('efficiencyValue')"
prop=
"efficiencyValue"
>
<InputNumber
v-model=
"entity.efficiencyValue"
></InputNumber>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('singleOut')"
prop=
"singleOut"
>
<InputNumber
v-model=
"entity.singleOut"
></InputNumber>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('isOutside')"
prop=
"isOutside"
>
<Dictionary
code=
"Process.state"
v-model=
"entity.isOutside"
></Dictionary>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('departmentId')"
prop=
"departmentId"
>
<InputNumber
v-model=
"entity.departmentId"
></InputNumber>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('isImportant')"
prop=
"isImportant"
>
<Dictionary
code=
"Process.state"
v-model=
"entity.isImportant"
></Dictionary>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('milestoneId')"
prop=
"milestoneId"
>
<InputNumber
v-model=
"entity.milestoneId"
></InputNumber>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('phaseId')"
prop=
"phaseId"
>
<InputNumber
v-model=
"entity.phaseId"
></InputNumber>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('status')"
prop=
"status"
>
<Dictionary
code=
"Process.Status"
v-model=
"entity.status"
></Dictionary>
</FormItem></Col>
<Col
:span=
"24"
><FormItem
:label=
"l('remark')"
prop=
"remark"
>
<Input
v-model=
"entity.remark"
type=
"textarea"
:rows=
"5"
></Input>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('extend')"
prop=
"extend"
>
<Input
v-model=
"entity.extend"
>
</Input>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('outsideTime')"
prop=
"outsideTime"
>
<InputNumber
v-model=
"entity.outsideTime"
></InputNumber>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('performanceHours')"
prop=
"performanceHours"
>
<InputNumber
v-model=
"entity.performanceHours"
></InputNumber>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('resourceCode')"
prop=
"resourceCode"
>
<Input
v-model=
"entity.resourceCode"
>
</Input>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('isImportantResources')"
prop=
"isImportantResources"
>
<Dictionary
code=
"Process.state"
v-model=
"entity.isImportantResources"
></Dictionary>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('schedulingWorkingHours')"
prop=
"schedulingWorkingHours"
>
<InputNumber
v-model=
"entity.schedulingWorkingHours"
></InputNumber>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('realWorkingHours')"
prop=
"realWorkingHours"
>
<InputNumber
v-model=
"entity.realWorkingHours"
></InputNumber>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('realRuntime')"
prop=
"realRuntime"
>
<InputNumber
v-model=
"entity.realRuntime"
></InputNumber>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('performanceWorkingHours')"
prop=
"performanceWorkingHours"
>
<InputNumber
v-model=
"entity.performanceWorkingHours"
></InputNumber>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('isParticipateIntime')"
prop=
"isParticipateIntime"
>
<Dictionary
code=
"Process.state"
v-model=
"entity.isParticipateIntime"
></Dictionary>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('equipType')"
prop=
"equipType"
>
<Input
v-model=
"entity.equipType"
>
</Input>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('equipTypeId')"
prop=
"equipTypeId"
>
<InputNumber
v-model=
"entity.equipTypeId"
></InputNumber>
</FormItem></Col>
<Col
:span=
"12"
><FormItem
:label=
"l('note')"
prop=
"note"
>
<Input
v-model=
"entity.note"
>
</Input>
</FormItem></Col>
</Row>
<FormItem>
<Button
type=
"primary"
@
click=
"handleSubmit"
:disabled=
"disabled"
>
保存
</Button>
<Button
@
click=
"handleClose"
class=
"ml20"
>
取消
</Button>
</FormItem>
</Form>
</
template
>
<Form
ref=
"form"
:model=
"entity"
:rules=
"rules"
:label-width=
"110"
>
<Row>
<!--
<Col
:span=
"12"
>
<FormItem
:label=
"l('routingHeaderId')"
prop=
"routingHeaderId"
>
<InputNumber
v-model=
"entity.routingHeaderId"
></InputNumber>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('classId')"
prop=
"classId"
>
<InputNumber
v-model=
"entity.classId"
></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('singleOut')"
prop=
"singleOut"
>
<InputNumber
v-model=
"entity.singleOut"
></InputNumber>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('milestoneId')"
prop=
"milestoneId"
>
<InputNumber
v-model=
"entity.milestoneId"
></InputNumber>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('status')"
prop=
"status"
>
<Dictionary
code=
"Process.Status"
v-model=
"entity.status"
></Dictionary>
</FormItem>
</Col>
<Col
:span=
"24"
>
<FormItem
:label=
"l('remark')"
prop=
"remark"
>
<Input
v-model=
"entity.remark"
type=
"textarea"
:rows=
"5"
></Input>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('extend')"
prop=
"extend"
>
<Input
v-model=
"entity.extend"
></Input>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('performanceHours')"
prop=
"performanceHours"
>
<InputNumber
v-model=
"entity.performanceHours"
></InputNumber>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('resourceCode')"
prop=
"resourceCode"
>
<Input
v-model=
"entity.resourceCode"
></Input>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('schedulingWorkingHours')"
prop=
"schedulingWorkingHours"
>
<InputNumber
v-model=
"entity.schedulingWorkingHours"
></InputNumber>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('realWorkingHours')"
prop=
"realWorkingHours"
>
<InputNumber
v-model=
"entity.realWorkingHours"
></InputNumber>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('realRuntime')"
prop=
"realRuntime"
>
<InputNumber
v-model=
"entity.realRuntime"
></InputNumber>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('performanceWorkingHours')"
prop=
"performanceWorkingHours"
>
<InputNumber
v-model=
"entity.performanceWorkingHours"
></InputNumber>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('isParticipateIntime')"
prop=
"isParticipateIntime"
>
<Dictionary
code=
"Process.state"
v-model=
"entity.isParticipateIntime"
></Dictionary>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('equipType')"
prop=
"equipType"
>
<Input
v-model=
"entity.equipType"
></Input>
</FormItem>
</Col>
<Col
:span=
"12"
>
<FormItem
:label=
"l('equipTypeId')"
prop=
"equipTypeId"
>
<InputNumber
v-model=
"entity.equipTypeId"
></InputNumber>
</FormItem>
</Col>
-->
<Col
:span=
"8"
>
<FormItem
:label=
"l('taskSeq')"
prop=
"taskSeq"
>
<InputNumber
v-model=
"entity.taskSeq"
></InputNumber>
</FormItem>
</Col>
<Col
:span=
"8"
>
<FormItem
:label=
"l('name')"
prop=
"name"
>
<Input
v-model=
"entity.name"
></Input>
</FormItem>
</Col>
<Col
:span=
"8"
>
<FormItem
:label=
"l('taskContent')"
prop=
"taskContent"
>
<Input
v-model=
"entity.taskContent"
></Input>
</FormItem>
</Col>
<Col
:span=
"8"
>
<FormItem
:label=
"l('phaseId')"
prop=
"phaseId"
>
<InputNumber
v-model=
"entity.phaseId"
></InputNumber>
</FormItem>
</Col>
<Col
:span=
"8"
>
<FormItem
:label=
"l('resourceType')"
prop=
"resourceType"
>
<Dictionary
code=
"Process.routing_detail.resource_type"
v-model=
"entity.resourceType"
></Dictionary>
</FormItem>
</Col>
<Col
:span=
"8"
>
<FormItem
:label=
"l('resourceId')"
prop=
"resourceId"
>
<InputNumber
v-model=
"entity.resourceId"
></InputNumber>
</FormItem>
</Col>
<Col
:span=
"8"
>
<FormItem
:label=
"l('runtime')"
prop=
"runtime"
>
<InputNumber
v-model=
"entity.runtime"
></InputNumber>
</FormItem>
</Col>
<Col
:span=
"8"
>
<FormItem
:label=
"l('setupTime')"
prop=
"setupTime"
>
<InputNumber
v-model=
"entity.setupTime"
></InputNumber>
</FormItem>
</Col>
<Col
:span=
"8"
>
<FormItem
:label=
"l('transportTime')"
prop=
"transportTime"
>
<InputNumber
v-model=
"entity.transportTime"
></InputNumber>
</FormItem>
</Col>
<Col
:span=
"8"
>
<FormItem
:label=
"l('checkTime')"
prop=
"checkTime"
>
<InputNumber
v-model=
"entity.checkTime"
></InputNumber>
</FormItem>
</Col>
<Col
:span=
"8"
>
<FormItem
:label=
"l('isImportant')"
prop=
"isImportant"
>
<Dictionary
code=
"Process.state"
v-model=
"entity.isImportant"
></Dictionary>
</FormItem>
</Col>
<Col
:span=
"8"
>
<FormItem
:label=
"l('isImportantResources')"
prop=
"isImportantResources"
>
<Dictionary
code=
"Process.state"
v-model=
"entity.isImportantResources"
></Dictionary>
</FormItem>
</Col>
<Col
:span=
"8"
>
<FormItem
:label=
"l('isOutside')"
prop=
"isOutside"
>
<Dictionary
code=
"Process.state"
v-model=
"entity.isOutside"
></Dictionary>
</FormItem>
</Col>
<Col
:span=
"8"
>
<FormItem
:label=
"l('outsideTime')"
prop=
"outsideTime"
>
<InputNumber
v-model=
"entity.outsideTime"
></InputNumber>
</FormItem>
</Col>
<Col
:span=
"8"
>
<FormItem
:label=
"l('departmentId')"
prop=
"departmentId"
>
<InputNumber
v-model=
"entity.departmentId"
></InputNumber>
</FormItem>
</Col>
<Col
:span=
"8"
>
<FormItem
:label=
"l('efficiencyValue')"
prop=
"efficiencyValue"
>
<InputNumber
v-model=
"entity.efficiencyValue"
></InputNumber>
</FormItem>
</Col>
<Col
:span=
"8"
>
<FormItem
:label=
"l('checkFlag')"
prop=
"checkFlag"
>
<Dictionary
code=
"Process.routing_detail.check_flag"
v-model=
"entity.checkFlag"
></Dictionary>
</FormItem>
</Col>
<Col
:span=
"24"
>
<FormItem
:label=
"l('description')"
prop=
"description"
>
<Input
v-model=
"entity.description"
type=
"textarea"
:rows=
"5"
></Input>
</FormItem>
</Col>
</Row>
<FormItem>
<Button
type=
"primary"
@
click=
"handleSubmit"
:disabled=
"disabled"
>
保存
</Button>
<Button
@
click=
"handleClose"
class=
"ml20"
>
取消
</Button>
</FormItem>
</Form>
</
template
>
<
script
>
import
Api
from
'./api'
export
default
{
name
:
'Add'
,
data
()
{
return
{
disabled
:
false
,
entity
:
{
classId
:
null
,
routingHeaderId
:
null
,
name
:
""
,
taskSeq
:
null
,
description
:
""
,
taskContent
:
""
,
resourceId
:
null
,
resourceType
:
null
,
runtime
:
null
,
setupTime
:
null
,
transportTime
:
null
,
checkTime
:
null
,
checkFlag
:
null
,
efficiencyValue
:
null
,
singleOut
:
null
,
isOutside
:
null
,
departmentId
:
null
,
isImportant
:
null
,
milestoneId
:
null
,
phaseId
:
null
,
status
:
null
,
remark
:
""
,
extend
:
""
,
outsideTime
:
null
,
performanceHours
:
null
,
resourceCode
:
""
,
isImportantResources
:
null
,
schedulingWorkingHours
:
null
,
realWorkingHours
:
null
,
realRuntime
:
null
,
performanceWorkingHours
:
null
,
isParticipateIntime
:
null
,
equipType
:
""
,
equipTypeId
:
null
,
note
:
""
},
rules
:
{
name
:
[{
required
:
true
,
message
:
'必填'
,
trigger
:
'blur'
}]
}
}
},
props
:
{
v
:
Object
,
eid
:
Number
},
mounted
()
{
if
(
this
.
eid
>
0
)
{
this
.
load
(
this
.
eid
);
}
},
methods
:
{
handleSubmit
()
{
this
.
$refs
.
form
.
validate
((
v
)
=>
{
if
(
v
)
{
this
.
disabled
=
true
;
Api
.
create
(
this
.
entity
).
then
((
r
)
=>
{
this
.
disabled
=
false
;
if
(
r
.
success
)
{
this
.
$Message
.
success
(
'保存成功'
)
this
.
$emit
(
'on-ok'
)
}
else
{
this
.
$Message
.
error
(
'保存失败'
)
}
}).
catch
(
err
=>
{
this
.
disabled
=
false
;
this
.
$Message
.
error
(
'保存失败'
)
console
.
warn
(
err
)
})
}
})
},
handleClose
()
{
this
.
$emit
(
'on-close'
)
},
load
(
v
)
{
Api
.
get
({
id
:
v
}).
then
(
r
=>
{
this
.
entity
=
r
.
result
;
this
.
entity
.
id
=
0
;
});
},
l
(
key
)
{
key
=
"routing_detail"
+
"."
+
key
;
return
this
.
$t
(
key
)
import
Api
from
"./api"
;
export
default
{
name
:
"Add"
,
data
()
{
return
{
disabled
:
false
,
entity
:
{
classId
:
null
,
routingHeaderId
:
null
,
name
:
""
,
taskSeq
:
null
,
description
:
""
,
taskContent
:
""
,
resourceId
:
null
,
resourceType
:
null
,
runtime
:
null
,
setupTime
:
null
,
transportTime
:
null
,
checkTime
:
null
,
checkFlag
:
null
,
efficiencyValue
:
null
,
singleOut
:
null
,
isOutside
:
null
,
departmentId
:
null
,
isImportant
:
null
,
milestoneId
:
null
,
phaseId
:
null
,
status
:
null
,
remark
:
""
,
extend
:
""
,
outsideTime
:
null
,
performanceHours
:
null
,
resourceCode
:
""
,
isImportantResources
:
null
,
schedulingWorkingHours
:
null
,
realWorkingHours
:
null
,
realRuntime
:
null
,
performanceWorkingHours
:
null
,
isParticipateIntime
:
null
,
equipType
:
""
,
equipTypeId
:
null
,
note
:
""
},
rules
:
{
name
:
[{
required
:
true
,
message
:
"必填"
,
trigger
:
"blur"
}]
}
},
watch
:
{
v
()
{
this
.
entity
=
this
.
$u
.
clone
(
this
.
v
)
},
eid
(
v
)
{
if
(
v
>
0
)
{
this
.
load
(
v
);
}
}
};
},
props
:
{
v
:
Object
,
eid
:
Number
},
mounted
()
{
if
(
this
.
eid
>
0
)
{
this
.
load
(
this
.
eid
);
}
},
methods
:
{
handleSubmit
()
{
this
.
$refs
.
form
.
validate
(
v
=>
{
if
(
v
)
{
this
.
disabled
=
true
;
Api
.
create
(
this
.
entity
)
.
then
(
r
=>
{
this
.
disabled
=
false
;
if
(
r
.
success
)
{
this
.
$Message
.
success
(
"保存成功"
);
this
.
$emit
(
"on-ok"
);
}
else
{
this
.
$Message
.
error
(
"保存失败"
);
}
})
.
catch
(
err
=>
{
this
.
disabled
=
false
;
this
.
$Message
.
error
(
"保存失败"
);
console
.
warn
(
err
);
});
}
});
},
handleClose
()
{
this
.
$emit
(
"on-close"
);
},
load
(
v
)
{
Api
.
get
({
id
:
v
}).
then
(
r
=>
{
this
.
entity
=
r
.
result
;
this
.
entity
.
id
=
0
;
});
},
l
(
key
)
{
key
=
"routing_detail"
+
"."
+
key
;
return
this
.
$t
(
key
);
}
},
watch
:
{
v
()
{
this
.
entity
=
this
.
$u
.
clone
(
this
.
v
);
},
eid
(
v
)
{
if
(
v
>
0
)
{
this
.
load
(
v
);
}
}
</
script
>
\ No newline at end of file
}
};
</
script
>
\ No newline at end of file
pages/technology/details/index.vue
View file @
cdc709ba
...
...
@@ -6,7 +6,7 @@
</
template
>
</DataGrid>
<Modal
v-model=
"modal"
:title=
"title"
width=
"1200"
footer-hide
>
<component
:is=
"detail"
:eid=
"curId"
@
on-close=
"cancel"
@
on-ok=
"ok"
/>
<component
:is=
"detail"
:eid=
"curId"
:headid=
"hid"
@
on-close=
"cancel"
@
on-ok=
"ok"
/>
</Modal>
</div>
</template>
...
...
@@ -40,6 +40,7 @@ export default {
title
:
"新增"
,
detail
:
null
,
curId
:
0
,
hid
:
0
,
columns
:
[
{
type
:
"expand"
,
...
...
@@ -291,6 +292,7 @@ export default {
}
else
{
this
.
easySearch
.
routingHeaderId
.
value
=
this
.
$route
.
query
.
id
;
}
this
.
hid
=
this
.
$route
.
query
.
id
},
mounted
()
{
this
.
load
();
...
...
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