|
@@ -526,7 +526,7 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
title: '公司名称',
|
|
|
- minWidth: 100,
|
|
|
+ minWidth: 160,
|
|
|
key: 'company_name',
|
|
|
align: 'center'
|
|
|
},
|
|
@@ -832,7 +832,7 @@ export default {
|
|
|
}
|
|
|
// 大会员
|
|
|
let bigVip = ''
|
|
|
- let levels = JSON.parse(row.filter).level
|
|
|
+ let levels = JSON.parse(row.filter || '{}').level
|
|
|
if (levels == 1) {
|
|
|
bigVip = '(专家版)'
|
|
|
} else if (levels == 2) {
|
|
@@ -880,7 +880,7 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
title: '协议签订时间',
|
|
|
- minWidth: 140,
|
|
|
+ minWidth: 180,
|
|
|
sort_classify: 5,
|
|
|
sortable: 'custom',
|
|
|
key: 'contract_time',
|
|
@@ -904,7 +904,7 @@ export default {
|
|
|
},
|
|
|
{
|
|
|
title: '协议归档时间',
|
|
|
- minWidth: 140,
|
|
|
+ minWidth: 180,
|
|
|
sort_classify: 6,
|
|
|
sortable: 'custom',
|
|
|
key: 'contract_archive_time',
|
|
@@ -1025,7 +1025,7 @@ export default {
|
|
|
page: payload.page,
|
|
|
size: payload.size,
|
|
|
isHelpList: false,
|
|
|
- listSource: 1,
|
|
|
+ listSource: -1,
|
|
|
searchContent: this.searchContent,
|
|
|
sort_type: this.sortState.sort_type,
|
|
|
sort_classify: this.sortState.sort_classify,
|
|
@@ -1111,7 +1111,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
rowClick(row) {
|
|
|
- const sources = JSON.parse(row.filter).source ? JSON.parse(row.filter).source : ''
|
|
|
+ const sources = JSON.parse(row.filter || '{}').source ? JSON.parse(row.filter || '{}').source : ''
|
|
|
const news = this.$router.resolve({
|
|
|
path: '/manage_admin/order/detail/' + row.id,
|
|
|
query: {id: row.id, proType: row.product_type, type: sources,otherType:row.orderProducttype}
|