|
@@ -104,9 +104,9 @@ export default {
|
|
itemCleanTime: '', // 每行清运时间
|
|
itemCleanTime: '', // 每行清运时间
|
|
// 查询参数
|
|
// 查询参数
|
|
queryParam: {
|
|
queryParam: {
|
|
- operatorUserId: undefined, // 网点编号
|
|
|
|
|
|
+ operatorUserId: undefined, // 操作人id
|
|
|
|
+ stationNo: undefined, // 网点编号
|
|
deviceNo: null, // 设备编号
|
|
deviceNo: null, // 设备编号
|
|
- loginFlag: '',
|
|
|
|
beginDate: null, // 开始时间
|
|
beginDate: null, // 开始时间
|
|
endDate: null // 结束时间
|
|
endDate: null // 结束时间
|
|
},
|
|
},
|
|
@@ -124,7 +124,7 @@ export default {
|
|
{ title: '可回收物清运量(kg)', dataIndex: 'cleanWeight', width: 100, align: 'center', sorter: true, customRender: (text) => { return text || 0 } },
|
|
{ title: '可回收物清运量(kg)', dataIndex: 'cleanWeight', width: 100, align: 'center', sorter: true, customRender: (text) => { return text || 0 } },
|
|
{ title: '清运司机', dataIndex: 'driverName', width: 100, align: 'center', customRender: (text) => { return text || '--' } },
|
|
{ title: '清运司机', dataIndex: 'driverName', width: 100, align: 'center', customRender: (text) => { return text || '--' } },
|
|
{ title: '操作人', dataIndex: 'operatorName', width: 100, align: 'center' },
|
|
{ title: '操作人', dataIndex: 'operatorName', width: 100, align: 'center' },
|
|
- { title: '备注', dataIndex: 'remarks', width: 100, align: 'center', customRender: (text) => { return text || '--' } },
|
|
|
|
|
|
+ { title: '备注', dataIndex: 'remarks', width: 100, align: 'center', ellipsis: true, customRender: (text) => { return text || '--' } },
|
|
{ title: '操作', dataIndex: 'action', width: 100, align: 'center', scopedSlots: { customRender: 'action' } }],
|
|
{ title: '操作', dataIndex: 'action', width: 100, align: 'center', scopedSlots: { customRender: 'action' } }],
|
|
// 加载数据方法 必须为 Promise 对象
|
|
// 加载数据方法 必须为 Promise 对象
|
|
loadData: parameter => {
|
|
loadData: parameter => {
|
|
@@ -222,9 +222,9 @@ export default {
|
|
// 重置
|
|
// 重置
|
|
reset () {
|
|
reset () {
|
|
this.queryParam = {
|
|
this.queryParam = {
|
|
- operatorUserId: undefined, // 网点编号
|
|
|
|
|
|
+ operatorUserId: undefined, // 操作人id
|
|
|
|
+ stationNo: undefined, // 网点编号
|
|
deviceNo: null, // 设备编号
|
|
deviceNo: null, // 设备编号
|
|
- loginFlag: '',
|
|
|
|
beginDate: null, // 开始时间
|
|
beginDate: null, // 开始时间
|
|
endDate: null // 结束时间
|
|
endDate: null // 结束时间
|
|
}
|
|
}
|