|
@@ -85,8 +85,8 @@
|
|
|
:scroll="{ x: 1940, y: tableHeight }"
|
|
|
bordered>
|
|
|
<!-- 单号 -->
|
|
|
- <template slot="allocateSn" slot-scope="text, record">
|
|
|
- <span style="color: #ed1c24;cursor: pointer;" @click="handleDetail(record)">{{ record.allocateSn }}</span>
|
|
|
+ <template slot="allocateNo" slot-scope="text, record">
|
|
|
+ <span style="color: #ed1c24;cursor: pointer;" @click="handleDetail(record)">{{ record.allocateNo }}</span>
|
|
|
</template>
|
|
|
<!-- 财务状态 -->
|
|
|
<template slot="settleState" slot-scope="text, record">
|
|
@@ -148,7 +148,7 @@ export default {
|
|
|
columns: [
|
|
|
{ title: '序号', dataIndex: 'no', width: 80, align: 'center' },
|
|
|
{ title: '创建时间', dataIndex: 'createDate', width: 160, align: 'center' },
|
|
|
- { title: '调拨单号', scopedSlots: { customRender: 'allocateSn' }, align: 'center' },
|
|
|
+ { title: '调拨单号', scopedSlots: { customRender: 'allocateNo' }, align: 'center' },
|
|
|
{ title: '调往对象', dataIndex: 'targetName', width: 220, align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
{ title: '客户类型', dataIndex: 'callOutTypeName', width: 160, align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
{ title: '总数量', dataIndex: 'totalQty', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|