Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mes-ui
Project
Project
Details
Activity
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
ximai
mes-ui
Commits
5bf4ce07
Commit
5bf4ce07
authored
Nov 07, 2024
by
沈翠玲
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
生产版本编号更改为:生产版本号
parent
581f216e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
7 deletions
+10
-7
th_TH.json
src/i18n/lang/th_TH.json
+2
-1
zh_CN.json
src/i18n/lang/zh_CN.json
+2
-1
proofingInfo.vue
src/views/mes/pro/productionSolution/proofingInfo.vue
+6
-5
No files found.
src/i18n/lang/th_TH.json
View file @
5bf4ce07
...
@@ -2978,5 +2978,6 @@
...
@@ -2978,5 +2978,6 @@
"是否紧急"
:
"ไม่ว่าจะเป็นเรื่องเร่งด่วน"
,
"是否紧急"
:
"ไม่ว่าจะเป็นเรื่องเร่งด่วน"
,
"是否委外"
:
"ไม่ว่าจะเป็นนอกสภา"
,
"是否委外"
:
"ไม่ว่าจะเป็นนอกสภา"
,
"订单项次"
:
"รายการสั่งซื้อ"
,
"订单项次"
:
"รายการสั่งซื้อ"
,
"订单号"
:
"หมายเลขการสั่งซื้อ"
"订单号"
:
"หมายเลขการสั่งซื้อ"
,
"生产版本号必填且应为数字"
:
"หมายเลขรุ่นการผลิต จำเป็นและควรเป็นตัวเลข"
}
}
\ No newline at end of file
src/i18n/lang/zh_CN.json
View file @
5bf4ce07
...
@@ -2978,5 +2978,6 @@
...
@@ -2978,5 +2978,6 @@
"是否紧急"
:
"是否紧急"
,
"是否紧急"
:
"是否紧急"
,
"是否委外"
:
"是否委外"
,
"是否委外"
:
"是否委外"
,
"订单项次"
:
"订单项次"
,
"订单项次"
:
"订单项次"
,
"订单号"
:
"订单号"
"订单号"
:
"订单号"
,
"生产版本号必填且应为数字"
:
"生产版本号必填且应为数字"
}
}
src/views/mes/pro/productionSolution/proofingInfo.vue
View file @
5bf4ce07
...
@@ -32,7 +32,7 @@
...
@@ -32,7 +32,7 @@
>
>
<el-row>
<el-row>
<el-col
:lg=
"6"
:md=
"8"
:sm=
"12"
:xs=
"12"
>
<el-col
:lg=
"6"
:md=
"8"
:sm=
"12"
:xs=
"12"
>
<el-form-item
:label=
"$t('生产版本
编码
')"
prop=
"productionSolutionCode"
>
<el-form-item
:label=
"$t('生产版本
号
')"
prop=
"productionSolutionCode"
>
<el-input
<el-input
v-model=
"form.productionSolutionCode"
v-model=
"form.productionSolutionCode"
placeholder
placeholder
...
@@ -144,7 +144,7 @@
...
@@ -144,7 +144,7 @@
<
script
>
<
script
>
import
{
genCode
}
from
"@/api/system/autocode/rule"
;
//
import { genCode } from "@/api/system/autocode/rule";
import
ProogingBom
from
"./components/ProogingBom.vue"
;
import
ProogingBom
from
"./components/ProogingBom.vue"
;
import
ProogingProcess
from
"./components/ProogingProcess.vue"
;
import
ProogingProcess
from
"./components/ProogingProcess.vue"
;
import
ItemSelect
from
"@/components/itemSelect/single.vue"
;
import
ItemSelect
from
"@/components/itemSelect/single.vue"
;
...
@@ -253,9 +253,9 @@ export default {
...
@@ -253,9 +253,9 @@ export default {
methods
:
{
methods
:
{
//自动生成编码
//自动生成编码
handleAutoGenChange
()
{
handleAutoGenChange
()
{
genCode
(
"PRO_SOLUTION_CODE"
).
then
((
response
)
=>
{
//
genCode("PRO_SOLUTION_CODE").then((response) => {
this
.
form
.
productionSolutionCode
=
response
;
//
this.form.productionSolutionCode = response;
});
//
});
},
},
updateItemUpload
(
items
)
{
updateItemUpload
(
items
)
{
this
.
form
.
drawingList
=
items
;
this
.
form
.
drawingList
=
items
;
...
@@ -310,6 +310,7 @@ export default {
...
@@ -310,6 +310,7 @@ export default {
},
},
/**提交 */
/**提交 */
saveForm
()
{
saveForm
()
{
if
(
!
this
.
form
.
productionSolutionCode
||
isNaN
(
Number
(
this
.
form
.
productionSolutionCode
)))
return
this
.
$modal
.
msgError
(
this
.
$t
(
'生产版本号必填且应为数字'
));
const
bomHead
=
this
.
$refs
.
ProogingBomRef
.
getComData
();
const
bomHead
=
this
.
$refs
.
ProogingBomRef
.
getComData
();
const
processList
=
this
.
$refs
.
ProogingProcessRef
.
getComData
();
const
processList
=
this
.
$refs
.
ProogingProcessRef
.
getComData
();
if
(
typeof
processList
===
'boolean'
)
return
if
(
typeof
processList
===
'boolean'
)
return
...
...
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