Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-app-operator-master
Commits
b8bc9908
Commit
b8bc9908
authored
Sep 29, 2022
by
dcy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
佣金列表按原型修改
parent
9ff85068
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
14 deletions
+8
-14
index.vue
src/views/ecw/customerCommission/index.vue
+8
-14
No files found.
src/views/ecw/customerCommission/index.vue
View file @
b8bc9908
...
@@ -92,29 +92,22 @@
...
@@ -92,29 +92,22 @@
</el-table-column>
</el-table-column>
<el-table-column
label=
"运输方式"
align=
"center"
prop=
"transportId"
>
<el-table-column
label=
"运输方式"
align=
"center"
prop=
"transportId"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<dict-tag
:type=
"DICT_TYPE.ECW_TRANSPORT_TYPE"
:value=
"scope.row.transportId"
/>
<dict-tag
v-if=
"scope.row.transportId"
:type=
"DICT_TYPE.ECW_TRANSPORT_TYPE"
:value=
"scope.row.transportId"
/>
<div
v-else
>
全部
</div>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"始发地/目的地 "
align=
"center"
prop=
"departureId"
show-overflow-tooltip
:formatter=
"originDestination"
>
<el-table-column
label=
"始发地/目的地 "
align=
"center"
prop=
"departureId"
show-overflow-tooltip
:formatter=
"originDestination"
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"报关方式"
align=
"center"
prop=
"customsType"
show-overflow-tooltip
>
<el-table-column
label=
"报关方式"
align=
"center"
prop=
"customsType"
show-overflow-tooltip
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<dict-tag
:type=
"DICT_TYPE.SHIPPING_DECLARATION_TYPE"
:value=
"scope.row.customsType"
/>
<dict-tag
v-if=
"scope.row.customsType"
:type=
"DICT_TYPE.SHIPPING_DECLARATION_TYPE"
:value=
"scope.row.customsType"
/>
<div
v-else
>
全部
</div>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"备案"
align=
"center"
prop=
"approval"
>
<el-table-column
label=
"备案"
align=
"center"
prop=
"approval"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<dict-tag
:type=
"DICT_TYPE.COMMISSION_PRODUCT_APPROVAL"
:value=
"scope.row.approval"
/>
<dict-tag
v-if=
"scope.row.approval"
:type=
"DICT_TYPE.COMMISSION_PRODUCT_APPROVAL"
:value=
"scope.row.approval"
/>
</
template
>
<div
v-else
>
全部
</div>
</el-table-column>
<el-table-column
label=
"未付佣金"
align=
"center"
prop=
"darkReturnType"
>
<
template
slot-scope=
"scope"
>
<!--
<dict-tag
:type=
"DICT_TYPE.COMMISSION_DARK_TYPE"
:value=
"scope.row.darkReturnType"
/>
-->
</
template
>
</el-table-column>
<el-table-column
label=
"已付佣金"
align=
"center"
prop=
"darkReturnType"
>
<
template
slot-scope=
"scope"
>
<!--
<dict-tag
:type=
"DICT_TYPE.COMMISSION_DARK_TYPE"
:value=
"scope.row.darkReturnType"
/>
-->
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
width=
"200px"
>
<el-table-column
label=
"操作"
align=
"center"
class-name=
"small-padding fixed-width"
width=
"200px"
>
...
@@ -241,9 +234,10 @@ export default {
...
@@ -241,9 +234,10 @@ export default {
}).
catch
(()
=>
{});
}).
catch
(()
=>
{});
},
},
originDestination
(
row
){
originDestination
(
row
){
let
index1
=
this
.
exportCityList
.
findIndex
(
item
=>
item
.
id
==
row
.
departureId
);
let
index1
=
this
.
exportCityList
.
findIndex
(
item
=>
item
.
id
==
row
.
departureId
);
let
index2
=
this
.
importCityList
.
findIndex
(
item
=>
item
.
id
==
row
.
objectiveId
);
let
index2
=
this
.
importCityList
.
findIndex
(
item
=>
item
.
id
==
row
.
objectiveId
);
let
flag
=
`
${
index1
===
-
1
?
'
'
:
this
.
exportCityList
[
index1
].
titleZh
}
/
${
index2
===
-
1
?
'
'
:
this
.
importCityList
[
index2
].
titleZh
}
`
;
let
flag
=
`
${
index1
===
-
1
?
'
全部
'
:
this
.
exportCityList
[
index1
].
titleZh
}
/
${
index2
===
-
1
?
'
全部
'
:
this
.
importCityList
[
index2
].
titleZh
}
`
;
return
flag
return
flag
},
},
}
}
...
...
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