Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
W
WX_h5
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
godwithdh
WX_h5
Commits
51ebea79
Commit
51ebea79
authored
Dec 18, 2019
by
张锡奇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit
parent
a694a626
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
16 deletions
+24
-16
Table.vue
src/components/Table.vue
+2
-1
kanban.js
src/store/modules/tiip/kanban.js
+8
-1
operateCustomDetail.vue
src/view/tiip/kanban/operateCustomDetail.vue
+4
-4
operateDetail.vue
src/view/tiip/kanban/operateDetail.vue
+2
-3
operateSaleDetail.vue
src/view/tiip/kanban/operateSaleDetail.vue
+8
-7
No files found.
src/components/Table.vue
View file @
51ebea79
...
...
@@ -297,7 +297,8 @@ export default {
thead
.
scrollTo
(
tfoot
.
scrollLeft
,
thead
.
scrollTop
);
},
clickTd
(
i
,
index
){
if
(
!
this
.
columns
[
i
].
underline
)
return
false
;
let
value
=
this
.
list
[
index
][
this
.
columns
[
i
].
field
.
split
(
'HTML'
)[
0
]];
if
(
!
this
.
columns
[
i
].
underline
||
!
value
)
return
false
;
this
.
global
.
$emit
(
'clickTd'
,{
trIndex
:
index
,
tdIndex
:
i
,
...
...
src/store/modules/tiip/kanban.js
View file @
51ebea79
...
...
@@ -9,7 +9,8 @@ const obj = {
sType
:
'检验'
},
orderItem
:{},
warehouseDetail
:{}
warehouseDetail
:{},
customerItem
:{}
},
mutations
:
{
saveKanbanHdr
(
state
,
data
){
...
...
@@ -20,6 +21,9 @@ const obj = {
},
saveWarehouseDetail
(
state
,
data
){
state
.
warehouseDetail
=
data
;
},
saveCustomerItem
(
state
,
data
){
state
.
customerItem
=
data
;
}
},
actions
:
{
...
...
@@ -31,6 +35,9 @@ const obj = {
},
saveWarehouseDetail
({
commit
},
data
){
commit
(
'saveWarehouseDetail'
,
data
);
},
saveCustomerItem
({
commit
},
data
){
commit
(
'saveCustomerItem'
,
data
);
}
}
};
...
...
src/view/tiip/kanban/operateCustomDetail.vue
View file @
51ebea79
...
...
@@ -74,7 +74,7 @@ export default {
computed
:{
...
mapState
({
hdr
:
state
=>
state
.
kanban
.
hdr
,
orderItem
:
state
=>
state
.
kanban
.
ord
erItem
,
customerItem
:
state
=>
state
.
kanban
.
custom
erItem
,
})
},
async
mounted
(){
...
...
@@ -112,12 +112,12 @@ export default {
];
if
(
this
.
type
==
'custom'
){
if
(
this
.
hdr
.
sType
==
'采购'
||
this
.
hdr
.
sType
==
'加工'
||
this
.
hdr
.
sType
==
'检验'
){
postData
.
push
({
key
:
"upbProviderGUID"
,
value
:
this
.
ord
erItem
.
upbProviderGUID
})
postData
.
push
({
key
:
"upbProviderGUID"
,
value
:
this
.
custom
erItem
.
upbProviderGUID
})
}
else
{
postData
.
push
({
key
:
"upbCustomerGUID"
,
value
:
this
.
ord
erItem
.
upbCustomerGUID
})
postData
.
push
({
key
:
"upbCustomerGUID"
,
value
:
this
.
custom
erItem
.
upbCustomerGUID
})
}
}
else
{
postData
.
push
({
key
:
"sSampleMaterialNo"
,
value
:
this
.
ord
erItem
.
sSampleMaterialNo
})
postData
.
push
({
key
:
"sSampleMaterialNo"
,
value
:
this
.
custom
erItem
.
sSampleMaterialNo
})
}
let
res
=
await
this
.
request
(
'getBoss'
,{
data
:
postData
,
...
...
src/view/tiip/kanban/operateDetail.vue
View file @
51ebea79
...
...
@@ -302,20 +302,19 @@ export default {
}
]
}
this
.
global
.
$off
(
'clickTd'
);
//点击表格列触发
this
.
global
.
$on
(
'clickTd'
,
async
(
res
)
=>
{
this
.
$store
.
dispatch
(
'saveKanbanOrderItem'
,
this
.
list
[
res
.
trIndex
]);
if
(
res
.
tdIndex
==
0
){
if
(
this
.
activeTab
==
0
){
this
.
$store
.
dispatch
(
'saveCustomerItem'
,
this
.
list
[
res
.
trIndex
]);
this
.
$router
.
push
({
name
:
'tiipOperateCustomDetail'
,
params
:{
type
:
'custom'
}})
}
else
{
this
.
$store
.
dispatch
(
'searchOrderSaveDtl'
,
this
.
list
[
res
.
trIndex
]);
this
.
$router
.
push
({
name
:
'searchOrderMaterialDetail'
})
}
}
else
if
(
res
.
tdIndex
=
3
){
this
.
$store
.
dispatch
(
'saveKanbanOrderItem'
,
this
.
list
[
res
.
trIndex
]);
this
.
$router
.
push
({
name
:
'tiipOperateSaleDetail'
})
}
})
...
...
src/view/tiip/kanban/operateSaleDetail.vue
View file @
51ebea79
...
...
@@ -35,7 +35,7 @@ export default {
width
:
'40%'
,
name
:
'客户名称'
,
align
:
'center'
,
field
:
's
Sales
NameHTML'
,
field
:
's
Customer
NameHTML'
,
underline
:
true
,
color
:
'#2d8cf0'
,
},
...
...
@@ -79,6 +79,7 @@ export default {
//点击表格列触发
this
.
global
.
$on
(
'clickTd'
,
async
(
res
)
=>
{
this
.
$store
.
dispatch
(
'saveCustomerItem'
,
this
.
list
[
res
.
trIndex
]);
this
.
$router
.
push
({
name
:
'tiipOperateCustomDetail'
,
params
:{
type
:
'custom'
}})
})
},
...
...
@@ -103,16 +104,16 @@ export default {
res
.
map
(
x
=>
{
if
(
this
.
hdr
.
sType
==
'采购'
||
this
.
hdr
.
sType
==
'加工'
){
if
(
this
.
hdr
.
sType
==
'加工'
){
this
.
columns
[
0
].
name
=
'加工
员名称
'
;
this
.
columns
[
0
].
name
=
'加工
商
'
;
}
else
if
(
this
.
hdr
.
sType
==
'采购'
){
this
.
columns
[
0
].
name
=
'
采购员名称
'
;
this
.
columns
[
0
].
name
=
'
供应商
'
;
}
this
.
columns
[
0
].
field
=
's
Follow
erNameHTML'
;
x
.
s
FollowerNameHTML
=
`<div><span style="text-decoration:underline;">
${
x
.
sFollowerName
}
</span></div>`
;
this
.
columns
[
0
].
field
=
's
Provid
erNameHTML'
;
x
.
s
ProviderNameHTML
=
`<div><span style="text-decoration:underline;">
${
x
.
sProviderName
||
''
}
</span></div>`
;
}
else
{
x
.
s
SalesNameHTML
=
`<div><span style="text-decoration:underline;">
${
x
.
sSalesName
}
</span></div>`
;
x
.
s
CustomerNameHTML
=
`<div><span style="text-decoration:underline;">
${
x
.
sCustomerName
||
''
}
</span></div>`
;
}
x
.
nAmountHTML
=
`<div><span style="color:#339966;">
${
x
.
nAmount
}
</span></div>`
;
x
.
nAmountHTML
=
`<div><span style="color:#339966;">
${
x
.
nAmount
||
''
}
</span></div>`
;
})
this
.
list
=
res
;
}
...
...
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