|
@@ -443,12 +443,12 @@ export default {
|
|
|
left-columns={[
|
|
|
{ id: 'belongCompanyCode', label: '所属公司编号', width: '160' },
|
|
|
{ id: 'websitId', label: '网点编号', width: '120' },
|
|
|
- { id: 'name', label: '网点名称', width: '' }
|
|
|
+ { id: 'websitName', label: '网点名称', width: '' }
|
|
|
]}
|
|
|
right-columns={[
|
|
|
{ id: 'belongCompanyCode', label: '所属公司编号', width: '160' },
|
|
|
{ id: 'websitId', label: '网点编号', width: '120' },
|
|
|
- { id: 'name', label: '网点名称', width: '' }
|
|
|
+ { id: 'websitName', label: '网点名称', width: '' }
|
|
|
]}
|
|
|
show-pagination={false}
|
|
|
pagination-call-back={this.paginationCallback}
|
|
@@ -487,7 +487,12 @@ export default {
|
|
|
getWebsit({ ...this.formInline, attr: 'SELF' }).then(res => {
|
|
|
resolve({
|
|
|
total: res.data.length,
|
|
|
- data: res.data
|
|
|
+ data: res.data.map(item => {
|
|
|
+ return {
|
|
|
+ ...item,
|
|
|
+ websitName: item.name
|
|
|
+ }
|
|
|
+ })
|
|
|
})
|
|
|
})
|
|
|
})
|