Commit 323a302d by 刘泽奇

123

parent 09d9738a
......@@ -98,17 +98,22 @@
</template>
</el-table-column> -->
<el-table-column prop="deliveryOrderNo" label="交付单号" width="180">
<template slot-scope="scope">
<el-tooltip placement="top" :content="scope.row.deliveryOrderNo">
<p solt="content">
{{scope.row.deliveryOrderNo ? scope.row.deliveryOrderNo : \'---\'}}
</p>
</el-tooltip>
<el-tooltip placement="top" :content="scope.row.deliveryOrderNo"
:disabled="scope.row.itemName ? false : true">
<el-tooltip placement="top" :content="scope.row.deliveryOrderNo"
:disabled="scope.row.itemName ? false : true">
<p solt="content">
{{scope.row.deliveryOrderNo ? scope.row.deliveryOrderNo : \'---\'}}
</p>
</el-tooltip>
</template>
</el-table-column>
<el-table-column prop="itemName" label="业务类型" width="180">
<template slot-scope="scope">
<el-tooltip placement="top" :content="scope.row.itemName">
<el-tooltip placement="top" :content="scope.row.itemName"
:disabled="scope.row.itemName ? false : true">
<p solt="content">{{scope.row.itemName ? scope.row.itemName : \'---\'}}
</p>
</el-tooltip>
......@@ -116,7 +121,8 @@
</el-table-column>
<el-table-column prop="tmName" label="商标名称" width="180">
<template slot-scope="scope">
<el-tooltip placement="top" :content="scope.row.tmName">
<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>
......@@ -124,7 +130,8 @@
</el-table-column>
<el-table-column prop="nclOneCodes" label="类别">
<template slot-scope="scope">
<el-tooltip placement="top" :content="scope.row.nclOneCodes">
<el-tooltip placement="top" :content="scope.row.nclOneCodes"
:disabled="scope.row.nclOneCodes ? false : true">
<p solt="content">
{{scope.row.nclOneCodes ?\'第\'+scope.row.nclOneCodes+\'类\': "---"}}
</p>
......@@ -133,7 +140,8 @@
</el-table-column>
<el-table-column prop="nclOneCount" label="件数" width="" class-name="jdindentlist-brand-count">
<template slot-scope="scope">
<el-tooltip placement="top" :content="scope.row.nclOneCount">
<el-tooltip placement="top" :content="scope.row.nclOneCount"
:disabled="scope.row.nclOneCount ? false : true">
<p solt="content">{{scope.row.nclOneCount?scope.row.nclOneCount: \'---\'}}
</p>
</el-tooltip>
......@@ -141,7 +149,8 @@
</el-table-column>
<el-table-column prop="name" label="申请人">
<template slot-scope="scope">
<el-tooltip placement="top" :content="scope.row.name">
<el-tooltip placement="top" :content="scope.row.name"
:disabled="scope.row.name ? false : true">
<p solt="content">{{scope.row.name ? scope.row.name :\'---\'}}
</p>
</el-tooltip>
......@@ -149,7 +158,8 @@
</el-table-column>
<el-table-column prop="totalSum" label="订单金额">
<template slot-scope="scope">
<el-tooltip placement="top" :content="scope.row.totalSum">
<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>
......@@ -157,7 +167,8 @@
</el-table-column>
<el-table-column prop="deliveryStatusName" label="交付状态" class-name="dsqcl">
<template slot-scope="scope">
<el-tooltip placement="top" :content="scope.row.deliveryStatusName">
<el-tooltip placement="top" :content="scope.row.deliveryStatusName"
:disabled="scope.row.deliveryStatusName ? false : true">
<p solt="content">
{{scope.row.deliveryStatusName ? scope.row.deliveryStatusName : \'---\'}}
</p>
......@@ -166,7 +177,8 @@
</el-table-column>
<el-table-column prop="CreateDate" label="下单时间">
<template slot-scope="scope">
<el-tooltip placement="top" :content="scope.row.CreateDate">
<el-tooltip placement="top" :content="scope.row.CreateDate"
:disabled="scope.row.CreateDate ? false : true">
<p solt="content">{{scope.row.CreateDate ? scope.row.CreateDate: \'---\'}}
</p>
</el-tooltip>
......@@ -174,13 +186,15 @@
</el-table-column>
<el-table-column prop="submitTime" label="递交时间" class-name="subtime">
<template slot-scope="scope">
<el-tooltip placement="top" :content="scope.row.submitTime">
<p solt="content">{{scope.row.submitTime ? scope.row.submitTime : \'---\'}}
<el-tooltip placement="top" :content="scope.row.submitTime"
:disabled="scope.row.submitTime ? false : true">
<p solt="content">
{{scope.row.submitTime ? scope.row.submitTime : \'---\'}}
</p>
</el-tooltip>
</template>
</el-table-column>
<!-- <el-table-column prop="address" label="操作" class-name="jdindentlist-tablecolumn-handle">
<el-table-column prop="address" label="操作" class-name="jdindentlist-tablecolumn-handle">
<template slot-scope="scope">
<el-button v-show="showDetails(scope.$index, scope.row)"
style="border:0;width:100%;color: #0F8EE9;" size="mini"
......@@ -195,12 +209,11 @@
style="border:0;width:100%;color: #0F8EE9;margin:0;" size="mini"
@click="goSelftmreg(scope.$index, scope.row)">去注册</el-button>
</template>
</el-table-column> -->
</el-table-column>
</el-table>
<div class="jdindentlist-list-page">
<el-pagination @current-change="handleSizeChange()" :current-page.sync="currentPage"
:page-sizes="[10, 20, 30, 40]" :page-size="10" layout="prev, pager, next,jumper"
:total="countPage">
:page-size="20" layout="prev, pager, next,jumper" :total="countPage">
</el-pagination>
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment