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
87812f82
Commit
87812f82
authored
Apr 24, 2020
by
周远喜
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
删除样式处理
parent
70deed81
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
11 deletions
+17
-11
opration.vue
components/page/opration.vue
+3
-2
zh-CN.js
i18n/locale/zh-CN.js
+11
-6
index.vue
pages/technology/routing_header/index.vue
+1
-1
search.vue
pages/technology/routing_header/search.vue
+1
-1
config.js
static/config.js
+1
-1
No files found.
components/page/opration.vue
View file @
87812f82
...
@@ -47,7 +47,8 @@ export default {
...
@@ -47,7 +47,8 @@ export default {
detail
:
"查看"
,
detail
:
"查看"
,
edit
:
"编辑"
,
edit
:
"编辑"
,
add
:
"添加"
,
add
:
"添加"
,
delete
:
"删除"
delete
:
"删除"
,
remove
:
"删除"
};
};
if
(
oprates
[
this
.
oprate
])
{
if
(
oprates
[
this
.
oprate
])
{
...
@@ -61,7 +62,7 @@ export default {
...
@@ -61,7 +62,7 @@ export default {
},
},
methods
:
{
methods
:
{
handler
()
{
handler
()
{
if
(
this
.
oprate
==
"delete"
)
{
if
(
this
.
oprate
==
"delete"
||
this
.
oprate
==
"remove"
)
{
this
.
$Modal
.
confirm
({
this
.
$Modal
.
confirm
({
title
:
"确认"
,
title
:
"确认"
,
content
:
"<p>"
+
this
.
msg
+
"</p>"
,
content
:
"<p>"
+
this
.
msg
+
"</p>"
,
...
...
i18n/locale/zh-CN.js
View file @
87812f82
...
@@ -4,6 +4,11 @@ export default {
...
@@ -4,6 +4,11 @@ export default {
menu
:
{
menu
:
{
i18n
:
'多语言'
i18n
:
'多语言'
},
},
id
:
'编号'
,
creationTime
:
'创建时间'
,
creatorUserId
:
'创建人'
,
lastModificationTime
:
'更新时间'
,
lastModifierUserId
:
'更新人'
,
page
:
{
page
:
{
login
:
{
login
:
{
title
:
'登录'
,
title
:
'登录'
,
...
@@ -960,12 +965,12 @@ export default {
...
@@ -960,12 +965,12 @@ export default {
outSideTime
:
'外协工期'
,
outSideTime
:
'外协工期'
,
taskSeq
:
'工序号'
,
taskSeq
:
'工序号'
,
taskName
:
'工序名称'
,
taskName
:
'工序名称'
,
productName
:
'产品名称'
,
productName
:
'产品名称'
,
drawingNum
:
'产品图号'
,
drawingNum
:
'产品图号'
,
batchNum
:
'批次号'
,
batchNum
:
'批次号'
,
projectNo
:
'项目号'
,
projectNo
:
'项目号'
,
partTaskPk
:
'计划编号'
,
partTaskPk
:
'计划编号'
,
opTaskPk
:
'工单Id'
,
opTaskPk
:
'工单Id'
,
},
//多租户-服务器数据源
},
//多租户-服务器数据源
host
:
{
host
:
{
id
:
''
,
id
:
''
,
...
...
pages/technology/routing_header/index.vue
View file @
87812f82
...
@@ -81,7 +81,7 @@ keys:{op:"unicode,name,code",value:null}
...
@@ -81,7 +81,7 @@ keys:{op:"unicode,name,code",value:null}
h
(
'op'
,
{
attrs
:
{
oprate
:
'detail'
},
on
:
{
click
:
()
=>
this
.
view
(
params
.
row
.
id
)
}
},
'查看'
),
h
(
'op'
,
{
attrs
:
{
oprate
:
'detail'
},
on
:
{
click
:
()
=>
this
.
view
(
params
.
row
.
id
)
}
},
'查看'
),
//h('op', { attrs: { oprate: 'copy' }, on: { click: () => this.copy(params.row.id) } }, '克隆'),
//h('op', { attrs: { oprate: 'copy' }, on: { click: () => this.copy(params.row.id) } }, '克隆'),
h
(
'op'
,
{
attrs
:
{
oprate
:
'edit'
},
on
:
{
click
:
()
=>
this
.
edit
(
params
.
row
.
id
)
}
},
'编辑'
),
h
(
'op'
,
{
attrs
:
{
oprate
:
'edit'
},
on
:
{
click
:
()
=>
this
.
edit
(
params
.
row
.
id
)
}
},
'编辑'
),
h
(
'op'
,
{
attrs
:
{
oprate
:
'
remov
e'
},
on
:
{
click
:
()
=>
this
.
remove
(
params
.
row
.
id
)
}
},
'删除'
)
h
(
'op'
,
{
attrs
:
{
oprate
:
'
delet
e'
},
on
:
{
click
:
()
=>
this
.
remove
(
params
.
row
.
id
)
}
},
'删除'
)
])
])
}
}
},
},
...
...
pages/technology/routing_header/search.vue
View file @
87812f82
<
template
>
<
template
>
<Form
ref=
"form"
:model=
"condition"
:label-width=
"90"
>
<Form
ref=
"form"
:model=
"condition"
:label-width=
"90"
>
<Row>
<Row>
<Col
:span=
"12"
:v-if=
"condition.id.show"
><FormItem
:label=
"
l
('id')"
prop=
"id"
>
<Input
v-model=
"condition.id.value"
>
</Input>
<Col
:span=
"12"
:v-if=
"condition.id.show"
><FormItem
:label=
"
$t
('id')"
prop=
"id"
>
<Input
v-model=
"condition.id.value"
>
</Input>
</FormItem></Col>
</FormItem></Col>
<Col
:span=
"12"
:v-if=
"condition.creationTime.show"
><FormItem
:label=
"$t('creationTime')"
prop=
"creationTime"
>
<DatePicker
type=
"daterange"
v-model=
"condition.creationTime.value"
></DatePicker>
<Col
:span=
"12"
:v-if=
"condition.creationTime.show"
><FormItem
:label=
"$t('creationTime')"
prop=
"creationTime"
>
<DatePicker
type=
"daterange"
v-model=
"condition.creationTime.value"
></DatePicker>
</FormItem></Col>
</FormItem></Col>
...
...
static/config.js
View file @
87812f82
...
@@ -49,7 +49,7 @@ const systemApi = {
...
@@ -49,7 +49,7 @@ const systemApi = {
window
.
iconImg
=
`http://
${
hostAddress
}
:3006/imgicon/`
;
//待办任务图标路径
window
.
iconImg
=
`http://
${
hostAddress
}
:3006/imgicon/`
;
//待办任务图标路径
window
.
apsManualUrl
=
`http://
${
apsAdress
}
:10091/api/services/app`
;
//aps手工排产
window
.
apsManualUrl
=
`http://
${
apsAdress
}
:10091/api/services/app`
;
//aps手工排产
window
.
apsUrl
=
`http://
${
apsAdress
}
:10110/api/services/app`
;
//aps排产
window
.
apsUrl
=
`http://
${
apsAdress
}
:10110/api/services/app`
;
//aps排产
window
.
technologyUrl
=
`http://
localhost
:10031/api/services/app/`
;
window
.
technologyUrl
=
`http://
${
address
}
:10031/api/services/app/`
;
//oidc配置:
//oidc配置:
window
.
authConfig
=
{
window
.
authConfig
=
{
authority
:
`http://
${
address
}
:10010`
,
authority
:
`http://
${
address
}
:10010`
,
...
...
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