Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zhichan
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
蒋勇
zhichan
Commits
c62eb84a
Commit
c62eb84a
authored
Feb 20, 2020
by
刘泽奇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
123
parent
0432ef19
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
73 additions
and
9 deletions
+73
-9
igirl-channel-web/app/front/vues/pages/jdindentlist/jdindentlist.html
+58
-9
igirl-channel-web/app/front/vues/pages/jdindentlist/jdindentlist.js
+15
-0
No files found.
igirl-channel-web/app/front/vues/pages/jdindentlist/jdindentlist.html
View file @
c62eb84a
...
...
@@ -483,25 +483,74 @@
<div
class=
"jdindentlist-list"
>
<el-table
header-row-class-name=
"companydetail-name-header"
:data=
"tableData"
style=
"width: 100%"
>
<el-table-column
prop=
"channelServiceNo"
label=
"订单编号"
>
<el-table-column
prop=
"channelOrderNo"
label=
"订单编号"
>
<template
slot-scope=
"scope"
>
<el-tooltip
placement=
"top"
:content=
"scope.row.channelOrderNo"
:disabled=
"scope.row.channelOrderNo ? false : true"
>
<p
solt=
"content"
>
{{scope.row.channelOrderNo ? scope.row.channelOrderNo : \'---\'}}
</p>
</el-tooltip>
</template>
</el-table-column>
<el-table-column
prop=
"deliveryOrderNo"
label=
"注册地区"
>
<el-table-column
prop=
"channelItemName"
label=
"注册地区"
>
<template
slot-scope=
"scope"
>
<el-tooltip
placement=
"top"
:content=
"scope.row.channelItemName"
:disabled=
"scope.row.channelItemName ? false : true"
>
<p
solt=
"content"
>
{{scope.row.channelItemName ? scope.row.channelItemName : \'---\'}}
</p>
</el-tooltip>
</template>
</el-table-column>
<el-table-column
prop=
"itemName"
label=
"公司类型"
>
<template
slot-scope=
"scope"
>
<el-tooltip
placement=
"top"
:content=
"scope.row.tmName"
:disabled=
"scope.row.tmName ? false : true"
>
<p
solt=
"content"
>
{{scope.row.tmName ? scope.row.tmName : \'---\'}}
</p>
</el-tooltip>
</template>
</el-table-column>
<el-table-column
prop=
"tmName"
label=
"件数"
>
<el-table-column
prop=
"quantity"
label=
"件数"
>
<template
slot-scope=
"scope"
>
<el-tooltip
placement=
"top"
:content=
"scope.row.quantity"
:disabled=
"scope.row.quantity ? false : true"
>
<p
solt=
"content"
>
{{scope.row.quantity ? scope.row.quantity : \'---\'}}
</p>
</el-tooltip>
</template>
</el-table-column>
<el-table-column
prop=
"nclOneCodes"
label=
"订单金额"
>
<el-table-column
prop=
"totalSum"
label=
"订单金额"
>
<template
slot-scope=
"scope"
>
<el-tooltip
placement=
"top"
:content=
"scope.row.totalSum"
:disabled=
"scope.row.totalSum ? false : true"
>
<p
solt=
"content"
>
{{scope.row.totalSum ? scope.row.totalSum : \'---\'}}
</p>
</el-tooltip>
</template>
</el-table-column>
<el-table-column
prop=
"nclOneCount"
label=
"付款状态"
>
<el-table-column
prop=
"orderStatus"
label=
"付款状态"
>
<template
slot-scope=
"scope"
>
<el-tooltip
placement=
"top"
:content=
"scope.row.orderStatus"
:disabled=
"scope.row.orderStatus ? false : true"
>
<p
solt=
"content"
>
{{scope.row.orderStatus ? scope.row.orderStatus : \'---\'}}
</p>
</el-tooltip>
</template>
</el-table-column>
<el-table-column
prop=
"name"
label=
"下单时间"
>
<el-table-column
prop=
"payTime"
label=
"下单时间"
>
<template
slot-scope=
"scope"
>
<el-tooltip
placement=
"top"
:content=
"scope.row.payTime"
:disabled=
"scope.row.payTime ? false : true"
>
<p
solt=
"content"
>
{{scope.row.payTime ? scope.row.payTime : \'---\'}}
</p>
</el-tooltip>
</template>
</el-table-column>
<el-table-column
prop=
"address"
label=
"操作"
>
<template
slot-scope=
"scope"
>
<el-button
v-show=
"showDetails(scope.$index, scope.row)"
style=
"border:0;width:100%;color: #0F8EE9;"
size=
"mini"
@
click=
"viewDetails(scope.$index, scope.row)"
>
详情
</el-button>
<el-button
style=
"border:0;width:100%;color: #0F8EE9;"
size=
"mini"
@
click=
"icbcDetails(scope.$index, scope.row)"
>
详情
</el-button>
<!-- <el-button v-show="showSelf(scope.$index, scope.row)"
style="border:0;color: #0F8EE9;width:100%;margin:0;" size="mini"
@click="uploadMaterials(scope.$index, scope.row)">上传材料</el-button>
...
...
igirl-channel-web/app/front/vues/pages/jdindentlist/jdindentlist.js
View file @
c62eb84a
...
...
@@ -599,6 +599,20 @@
}
});
},
icbcDetails
(
index
,
row
)
{
console
.
log
(
index
,
row
);
this
.
currentOrderType
=
row
.
itemName
;
this
.
deliveryStatus
=
row
.
deliveryStatus
;
this
.
$router
.
push
({
path
:
`/
${
this
.
$root
.
channelName
}
/companydetail`
,
query
:
{
deliveryOrderNo
:
row
.
deliveryOrderNo
,
channelUserId
:
this
.
$route
.
query
.
channelUserId
,
deliveryStatus
:
this
.
deliveryStatus
,
totalSum
:
row
.
totalSum
,
}
});
},
goPayment
(
index
,
row
){
this
.
$router
.
push
({
path
:
`/
${
this
.
channelFrom
}
/orderpay`
,
...
...
@@ -683,6 +697,7 @@
if
(
this
.
$route
.
query
.
channelUserId
!=
""
)
{
this
.
indentInfo
.
pageIndex
=
this
.
currentPage
;
var
obj
=
this
.
$root
.
copyParams
(
this
.
icbcIndentInfo
,
"getOrderList"
,
"/action/tmOrder/springBoard"
,
"yes"
,
"yes"
);
obj
.
actionBody
.
channelUserId
=
'15010929366'
;
this
.
$root
.
loading
=
true
;
this
.
$root
.
postReq
(
"/web/trademark/tmqueryCtl/doPost"
,
obj
).
then
(
d
=>
{
this
.
$root
.
loading
=
false
;
...
...
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