Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
NLT-e-cigarette
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
张伯涛
NLT-e-cigarette
Commits
d8b73a06
Commit
d8b73a06
authored
Jun 18, 2022
by
11528
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
维修记录页面完善
parent
e039519c
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
210 additions
and
108 deletions
+210
-108
repairRecord.js
src/api/repairRecord.js
+9
-0
workOrder.vue
src/views/ProductionProcess/workOrder.vue
+4
-3
ModelDetails.vue
src/views/productionInfo/ModelDetails.vue
+2
-1
repairRecord.vue
src/views/repair/repairRecord.vue
+195
-104
No files found.
src/api/repairRecord.js
View file @
d8b73a06
...
...
@@ -8,3 +8,12 @@ export function listRepairRecord(query) {
params
:
query
})
}
// 维修工单详情
export
function
listRepairRecordDetails
(
query
)
{
return
request
({
url
:
'/nltmaintain/queryNltMaintainsDetail'
,
method
:
'get'
,
params
:
query
})
}
src/views/ProductionProcess/workOrder.vue
View file @
d8b73a06
...
...
@@ -155,14 +155,14 @@
@
click=
"handleDetail(scope.row)"
>
详情
</el-link>
<el-link
v-if=
"scope.row.status ===
'1'
"
v-if=
"scope.row.status ===
1
"
size=
"mini"
type=
"primary"
style=
"margin-left: 10px"
@
click=
"handleUpdate(scope.row)"
>
编辑生产模型
</el-link>
<el-link
v-if=
"scope.row.status ===
'0'
"
v-if=
"scope.row.status ===
0
"
size=
"mini"
type=
"danger"
style=
"margin-left: 10px"
...
...
@@ -623,7 +623,7 @@ export default {
this
.
total3
=
response
.
total
this
.
Loading3
=
false
})
}
else
{
}
else
{
this
.
rowsStation
.
orderModelId
=
row
.
orderModelId
listStation
(
this
.
rowsStation
).
then
(
response
=>
{
this
.
stationList
=
response
.
rows
...
...
@@ -652,6 +652,7 @@ export default {
path
:
'/ProductionProcess/ModelDetails'
,
query
:
{
businessId
:
row
.
orderModelId
,
orderBusinessId
:
row
.
businessId
,
type
:
'2'
}
})
...
...
src/views/productionInfo/ModelDetails.vue
View file @
d8b73a06
...
...
@@ -1065,7 +1065,8 @@ export default {
}
else
if
(
this
.
htmlType
===
'2'
)
{
nltordermodelUpdate
({
...
params
,
businessId
:
this
.
$route
.
query
.
businessId
businessId
:
this
.
$route
.
query
.
businessId
,
orderBusinessId
:
this
.
$route
.
query
.
orderBusinessId
}).
then
(
res
=>
{
this
.
$message
.
success
(
'编辑成功'
)
this
.
$router
.
push
({
...
...
src/views/repair/repairRecord.vue
View file @
d8b73a06
This diff is collapsed.
Click to expand it.
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