Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tianjin
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
徐来柯
tianjin
Commits
9847916a
Commit
9847916a
authored
Jan 21, 2021
by
徐来柯
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug
parent
755011fd
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
34 additions
and
1 deletion
+34
-1
EquipmentAccount.vue
src/views/education/EquipmentAccount.vue
+1
-0
LineBody.vue
src/views/education/LineBody.vue
+1
-0
ManageList.vue
src/views/education/ManageList.vue
+1
-0
MaterialDelivery.vue
src/views/education/MaterialDelivery.vue
+1
-0
MaterialWarehousingMoudle.vue
src/views/education/MaterialWarehousingMoudle.vue
+1
-0
ProducSchedule.vue
src/views/education/ProducSchedule.vue
+1
-0
ProductDelivery.vue
src/views/education/ProductDelivery.vue
+1
-0
ProductStorage.vue
src/views/education/ProductStorage.vue
+19
-0
ProductionPlan.vue
src/views/education/ProductionPlan.vue
+1
-0
BomPop.vue
src/views/education/component/BomPop.vue
+1
-1
linePop.vue
src/views/education/component/linePop.vue
+1
-0
deviceManage.vue
src/views/education/deviceManage.vue
+1
-0
materiel.vue
src/views/education/materiel.vue
+1
-0
productManage.vue
src/views/education/productManage.vue
+1
-0
technology.vue
src/views/education/technology.vue
+1
-0
wordProcedure.vue
src/views/education/wordProcedure.vue
+1
-0
No files found.
src/views/education/EquipmentAccount.vue
View file @
9847916a
...
...
@@ -18,6 +18,7 @@
:data=
"tableData"
tooltip-effect=
"dark"
style=
"width: 100%"
highlight-current-row
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
...
...
src/views/education/LineBody.vue
View file @
9847916a
...
...
@@ -18,6 +18,7 @@
:data=
"tableData"
tooltip-effect=
"dark"
style=
"width: 100%"
highlight-current-row
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
...
...
src/views/education/ManageList.vue
View file @
9847916a
...
...
@@ -9,6 +9,7 @@
:data=
"tableData"
class=
"table-style"
tooltip-effect=
"dark"
highlight-current-row
style=
"width: 100%"
:row-class-name=
"tableRowClassName"
>
...
...
src/views/education/MaterialDelivery.vue
View file @
9847916a
...
...
@@ -9,6 +9,7 @@
:data=
"tableData"
class=
"table-style"
tooltip-effect=
"dark"
highlight-current-row
style=
"width: 100%"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
...
...
src/views/education/MaterialWarehousingMoudle.vue
View file @
9847916a
...
...
@@ -9,6 +9,7 @@
:data=
"tableData"
class=
"table-style"
tooltip-effect=
"dark"
highlight-current-row
style=
"width: 100%"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
...
...
src/views/education/ProducSchedule.vue
View file @
9847916a
...
...
@@ -16,6 +16,7 @@
class=
"conterFool_middle"
ref=
"multipleTable"
:data=
"tableData"
highlight-current-row
tooltip-effect=
"dark"
style=
"width: 100%"
@
selection-change=
"handleSelectionChange"
>
...
...
src/views/education/ProductDelivery.vue
View file @
9847916a
...
...
@@ -10,6 +10,7 @@
class=
"table-style"
tooltip-effect=
"dark"
style=
"width: 100%"
highlight-current-row
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
...
...
src/views/education/ProductStorage.vue
View file @
9847916a
...
...
@@ -10,6 +10,7 @@
class=
"table-style"
tooltip-effect=
"dark"
style=
"width: 100%"
highlight-current-row
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
...
...
@@ -257,6 +258,24 @@ export default {
},
conserve
(
data
)
{
var
$this
=
this
if
(
data
.
LID
.
trim
()
===
''
)
{
$this
.
typeV
=
'5'
$this
.
deleteShow
=
true
$this
.
deletetext
=
'线体编号不能为空'
return
}
if
(
data
.
PID
.
trim
()
===
''
)
{
$this
.
typeV
=
'5'
$this
.
deleteShow
=
true
$this
.
deletetext
=
'产品编号不能为空'
return
}
if
(
data
.
Quantity
.
trim
()
==
''
)
{
$this
.
typeV
=
'5'
$this
.
deleteShow
=
true
$this
.
deletetext
=
'入库数量不能为空'
return
}
this
.
$axios
({
method
:
"post"
,
url
:
`/api/ProductStorage/ProductStorage_WindowAddSave`
,
...
...
src/views/education/ProductionPlan.vue
View file @
9847916a
...
...
@@ -18,6 +18,7 @@
:data=
"tableData"
tooltip-effect=
"dark"
style=
"width: 100%"
highlight-current-row
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
...
...
src/views/education/component/BomPop.vue
View file @
9847916a
...
...
@@ -31,7 +31,7 @@
<el-table
:data=
"item.BomMaterielInfos"
@
selection-change=
"handleSelectionChange"
highlight-current-row
border
height=
"280px"
style=
"width: 100%"
>
...
...
src/views/education/component/linePop.vue
View file @
9847916a
...
...
@@ -168,6 +168,7 @@
class=
"conterFool_middle"
ref=
"multipleTable"
:data=
"tableDataList"
highlight-current-row
tooltip-effect=
"dark"
style=
"width: 100%"
@
selection-change=
"handleSelectionChange"
>
...
...
src/views/education/deviceManage.vue
View file @
9847916a
...
...
@@ -17,6 +17,7 @@
ref=
"multipleTable"
:data=
"tableData"
tooltip-effect=
"dark"
highlight-current-row
style=
"width: 100%"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
...
...
src/views/education/materiel.vue
View file @
9847916a
...
...
@@ -17,6 +17,7 @@
ref=
"multipleTable"
:data=
"tableData"
tooltip-effect=
"dark"
highlight-current-row
style=
"width: 100%"
@
selection-change=
"handleSelectionChange"
>
<el-table-column
...
...
src/views/education/productManage.vue
View file @
9847916a
...
...
@@ -18,6 +18,7 @@
:data=
"tableData"
tooltip-effect=
"dark"
style=
"width: 100%"
highlight-current-row
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
...
...
src/views/education/technology.vue
View file @
9847916a
...
...
@@ -18,6 +18,7 @@
:data=
"tableData"
tooltip-effect=
"dark"
style=
"width: 100%"
highlight-current-row
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
...
...
src/views/education/wordProcedure.vue
View file @
9847916a
...
...
@@ -18,6 +18,7 @@
:data=
"tableData"
tooltip-effect=
"dark"
style=
"width: 100%"
highlight-current-row
@
selection-change=
"handleSelectionChange"
>
<el-table-column
type=
"selection"
...
...
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