|
|
@ -60,61 +60,11 @@ |
|
|
|
@selection="selectionChange" |
|
|
|
@selection="selectionChange" |
|
|
|
> |
|
|
|
> |
|
|
|
<template #default="slotProps"> |
|
|
|
<template #default="slotProps"> |
|
|
|
<el-text size="small" @click="editsolt(slotProps.scope)">查 看</el-text> |
|
|
|
<el-text type="primary" text icon="el-icon-view" @click="handleView(slotProps.scope.row)">查看</el-text> |
|
|
|
|
|
|
|
<el-text type="primary" text icon="el-icon-edit" @click="handleEdit(slotProps.scope.row)">编辑</el-text> |
|
|
|
|
|
|
|
<el-text type="primary" text icon="el-icon-delete" @click="rowDel(slotProps.scope.row)">删除</el-text> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</tablecmt> |
|
|
|
</tablecmt> |
|
|
|
<el-table ref="table" v-loading="loading" |
|
|
|
|
|
|
|
@selection-change="selectionChange" |
|
|
|
|
|
|
|
:data="data" |
|
|
|
|
|
|
|
:height="height" |
|
|
|
|
|
|
|
style="width: 100%" |
|
|
|
|
|
|
|
:border="option.border"> |
|
|
|
|
|
|
|
<el-table-column type="selection" v-if="option.selection" width="55" align="center"></el-table-column> |
|
|
|
|
|
|
|
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column> |
|
|
|
|
|
|
|
<el-table-column v-if="option.index" label="序号" type="index" width="60" align="center"> |
|
|
|
|
|
|
|
</el-table-column> |
|
|
|
|
|
|
|
<template v-for="(item,index) in option.column"> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- table字段 --> |
|
|
|
|
|
|
|
<el-table-column v-if="item.hide!==true " |
|
|
|
|
|
|
|
:prop="item.prop" |
|
|
|
|
|
|
|
:label="item.label" |
|
|
|
|
|
|
|
:width="item.width" |
|
|
|
|
|
|
|
:key="index" align="center"> |
|
|
|
|
|
|
|
<template #default="{row,$index}" v-if="item.hide!==true && item.prop =='brandIcon'"> |
|
|
|
|
|
|
|
<!-- {{$index}}--> |
|
|
|
|
|
|
|
<div class="demo-image__preview"> |
|
|
|
|
|
|
|
<el-image v-if="row.brandIcon !== undefined" |
|
|
|
|
|
|
|
lazy |
|
|
|
|
|
|
|
style="width: 140px; height: 45px;" |
|
|
|
|
|
|
|
:src="row.brandIcon" |
|
|
|
|
|
|
|
:preview-src-list="srcList" |
|
|
|
|
|
|
|
:initial-index="$index" |
|
|
|
|
|
|
|
fit="cover" |
|
|
|
|
|
|
|
/> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
</el-table-column> |
|
|
|
|
|
|
|
<!-- <el-table-column v-if="item.hide!==true && item.prop =='brandIcon'"--> |
|
|
|
|
|
|
|
<!-- :prop="item.prop"--> |
|
|
|
|
|
|
|
<!-- :label="item.label"--> |
|
|
|
|
|
|
|
<!-- :width="item.width"--> |
|
|
|
|
|
|
|
<!-- :key="index" align="center">--> |
|
|
|
|
|
|
|
<!-- --> |
|
|
|
|
|
|
|
<!-- --> |
|
|
|
|
|
|
|
<!-- </el-table-column>--> |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
<!-- 操作栏模块 --> |
|
|
|
|
|
|
|
<el-table-column prop="menu" label="操作" :width="300" align="center"> |
|
|
|
|
|
|
|
<template #="{row}"> |
|
|
|
|
|
|
|
<el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button> |
|
|
|
|
|
|
|
<el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button> |
|
|
|
|
|
|
|
<el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button> |
|
|
|
|
|
|
|
<!-- <el-button type="primary" text icon="el-icon-setting" @click="handleDrawer(row)">子表配置</el-button>--> |
|
|
|
|
|
|
|
</template> |
|
|
|
|
|
|
|
</el-table-column> |
|
|
|
|
|
|
|
</el-table> |
|
|
|
|
|
|
|
</el-row> |
|
|
|
</el-row> |
|
|
|
<el-row> |
|
|
|
<el-row> |
|
|
|
<div class="avue-crud__pagination" style="width:100%"> |
|
|
|
<div class="avue-crud__pagination" style="width:100%"> |
|
|
@ -215,74 +165,44 @@ export default { |
|
|
|
fixed: true, |
|
|
|
fixed: true, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
prop: 'stockArticleId', |
|
|
|
prop: 'brandName', |
|
|
|
label: '订单自编号', |
|
|
|
label: '品牌名称', |
|
|
|
type: 2, |
|
|
|
type: 2, |
|
|
|
values: '', |
|
|
|
values: '', |
|
|
|
width: '150', |
|
|
|
width: '200', |
|
|
|
checkarr: [], |
|
|
|
checkarr: [], |
|
|
|
fixed: false, |
|
|
|
fixed: false, |
|
|
|
sortable: true, |
|
|
|
sortable: true, |
|
|
|
head: false, |
|
|
|
head: false, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
prop: 'warehouseName', |
|
|
|
prop: 'brandCode', |
|
|
|
label: '配送仓库', |
|
|
|
label: '品牌编号', |
|
|
|
type: 2, |
|
|
|
type: 2, |
|
|
|
values: '', |
|
|
|
values: '', |
|
|
|
width: '150', |
|
|
|
width: '200', |
|
|
|
checkarr: [], |
|
|
|
checkarr: [], |
|
|
|
fixed: false, |
|
|
|
fixed: false, |
|
|
|
sortable: true, |
|
|
|
sortable: true, |
|
|
|
head: false, |
|
|
|
head: false, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
prop: 'consignee', |
|
|
|
prop: 'brandIcon', |
|
|
|
label: '客户名称', |
|
|
|
label: '品牌图标', |
|
|
|
type: 2, |
|
|
|
type: 7, |
|
|
|
values: '', |
|
|
|
values: '', |
|
|
|
width: '150', |
|
|
|
width: '200', |
|
|
|
checkarr: [], |
|
|
|
checkarr: [], |
|
|
|
fixed: false, |
|
|
|
fixed: false, |
|
|
|
sortable: true, |
|
|
|
sortable: true, |
|
|
|
head: false, |
|
|
|
head: false, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
prop: 'deliveryPhone', |
|
|
|
prop: 'acceptanceTime', |
|
|
|
label: '客户电话', |
|
|
|
label: '承接时间', |
|
|
|
type: 2, |
|
|
|
type: 2, |
|
|
|
values: '', |
|
|
|
values: '', |
|
|
|
width: '180', |
|
|
|
width: '', |
|
|
|
checkarr: [], |
|
|
|
|
|
|
|
fixed: false, |
|
|
|
|
|
|
|
sortable: true, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
prop: 'deliveryAddress', |
|
|
|
|
|
|
|
label: '客户地址', |
|
|
|
|
|
|
|
type: 2, |
|
|
|
|
|
|
|
values: '', |
|
|
|
|
|
|
|
width: '300', |
|
|
|
|
|
|
|
checkarr: [], |
|
|
|
|
|
|
|
fixed: false, |
|
|
|
|
|
|
|
sortable: true, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
prop: 'deliveryType', |
|
|
|
|
|
|
|
label: '业务类型', |
|
|
|
|
|
|
|
type: 3, |
|
|
|
|
|
|
|
values: '', |
|
|
|
|
|
|
|
width: '150', |
|
|
|
|
|
|
|
checkarr: [], |
|
|
|
|
|
|
|
fixed: false, |
|
|
|
|
|
|
|
sortable: true, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
prop: 'signingTime', |
|
|
|
|
|
|
|
label: '文员签收时间', |
|
|
|
|
|
|
|
type: 4, |
|
|
|
|
|
|
|
values: '', |
|
|
|
|
|
|
|
width: '180', |
|
|
|
|
|
|
|
checkarr: [], |
|
|
|
checkarr: [], |
|
|
|
fixed: false, |
|
|
|
fixed: false, |
|
|
|
sortable: true, |
|
|
|
sortable: true, |
|
|
@ -292,7 +212,7 @@ export default { |
|
|
|
label: '操作', |
|
|
|
label: '操作', |
|
|
|
type: 6, |
|
|
|
type: 6, |
|
|
|
values: '', |
|
|
|
values: '', |
|
|
|
width: '150', |
|
|
|
width: '300', |
|
|
|
checkarr: [], |
|
|
|
checkarr: [], |
|
|
|
fixed: 'right', |
|
|
|
fixed: 'right', |
|
|
|
hide: true, |
|
|
|
hide: true, |
|
|
|