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
25cd92c6
Commit
25cd92c6
authored
May 22, 2020
by
renjintao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
orderList zh-cn
parent
71e95416
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
10 deletions
+20
-10
zh-CN.js
i18n/locale/zh-CN.js
+10
-0
orderlist.vue
pages/produce/orderlist.vue
+10
-10
No files found.
i18n/locale/zh-CN.js
View file @
25cd92c6
...
...
@@ -1438,5 +1438,15 @@ export default {
productUrl
:
'产品图像url'
,
productUrlList
:
'产品图象列表'
,
},
order_list
:{
mesCode
:
'订单编号'
,
status
:
'工单状态'
,
productName
:
'产品名称'
,
drawnNumber
:
'图号'
,
quantity
:
'生产数量'
,
beginTime
:
'开始时间'
,
endTime
:
'结束时间'
,
action
:
'操作'
}
}
pages/produce/orderlist.vue
View file @
25cd92c6
...
...
@@ -58,7 +58,7 @@
/>
</Col>
<Col
span=
"16"
class=
"row"
>
<p>
开始时间
:
{{
row
.
beginTime
}}
</p>
<p>
{{
l
(
"beginTime"
)
}}
:
{{
row
.
beginTime
}}
</p>
<p>
<span
v-if=
"getStatus(row.status)"
>
计划
</span>
结束时间:
{{
row
.
endTime
}}
</p>
...
...
@@ -66,11 +66,11 @@
剩余时间:
<OutputTime
:value=
"getTimes(row.endTime)"
style=
"display:inline"
></OutputTime>
</p>
<p>
生产数量
:
{{
row
.
quantity
}}
</p>
<p>
{{
l
(
"quantity"
)
}}
:
{{
row
.
quantity
}}
</p>
</Col>
</Row>
<Row
class=
"rowBottom"
>
<Col
span=
"14"
>
图号
:
{{
row
.
drawnNumber
}}
</Col>
<Col
span=
"14"
>
{{
l
(
"drawnNumber"
)
}}
:
{{
row
.
drawnNumber
}}
</Col>
<Col
span=
"10"
class=
"tr"
>
<Icon
type=
"md-alert"
...
...
@@ -123,7 +123,7 @@ export default {
},
{
key
:
"status"
,
title
:
"工单状态"
,
title
:
this
.
l
(
"status"
)
,
align
:
"center"
,
high
:
true
,
code
:
"taskList.status"
,
...
...
@@ -131,33 +131,33 @@ export default {
},
{
key
:
"productName"
,
title
:
"产品名称"
,
title
:
this
.
l
(
"productName"
)
,
align
:
"left"
,
high
:
true
},
{
key
:
"drawnNumber"
,
title
:
"图号"
,
title
:
this
.
l
(
"drawnNumber"
)
,
align
:
"left"
,
high
:
true
},
{
key
:
"quantity"
,
title
:
"生产数量"
,
title
:
this
.
l
(
"quantity"
)
,
align
:
"right"
,
width
:
120
,
high
:
true
},
{
key
:
"beginTime"
,
title
:
"开始时间"
,
title
:
this
.
l
(
"beginTime"
)
,
align
:
"center"
,
width
:
180
,
high
:
true
},
{
key
:
"endTime"
,
title
:
"结束时间"
,
title
:
this
.
l
(
"endTime"
)
,
align
:
"center"
,
width
:
180
,
high
:
true
...
...
@@ -270,7 +270,7 @@ export default {
return
tempUrl
;
},
l
(
key
)
{
let
vkey
=
"
mes_order
"
+
"."
+
key
;
let
vkey
=
"
order_list
"
+
"."
+
key
;
return
this
.
$t
(
vkey
)
||
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