diff --git a/oms_web/oms_vue/src/views/inventory/info/index.vue b/oms_web/oms_vue/src/views/inventory/info/index.vue index 4e9cc4d6..8145f0c9 100644 --- a/oms_web/oms_vue/src/views/inventory/info/index.vue +++ b/oms_web/oms_vue/src/views/inventory/info/index.vue @@ -259,6 +259,8 @@ export default { productName: null, vendorCode: null, warehouseId: null, + orderByColumn:'createdAt', + isAsc: 'desc' }, // 表单参数 form: {}, diff --git a/oms_web/oms_vue/src/views/manage/delivery/index.vue b/oms_web/oms_vue/src/views/manage/delivery/index.vue index cd636a73..7533fe29 100644 --- a/oms_web/oms_vue/src/views/manage/delivery/index.vue +++ b/oms_web/oms_vue/src/views/manage/delivery/index.vue @@ -235,7 +235,9 @@ export default { logisticsCompany: null, logisticsCode: null, deliveryStatus: null, - orderName: null + orderName: null, + orderByColumn: 'deliveryDate', + isAsc: 'desc' }, // 字典 deliveryTypeOptions: [], diff --git a/oms_web/oms_vue/src/views/manage/order/index.vue b/oms_web/oms_vue/src/views/manage/order/index.vue index f0617a10..ba19dda8 100644 --- a/oms_web/oms_vue/src/views/manage/order/index.vue +++ b/oms_web/oms_vue/src/views/manage/order/index.vue @@ -71,7 +71,7 @@ - + @@ -122,7 +122,9 @@ export default { orderType: null, projectCode: null, orderAgentName: null, - orderPartnerName: null + orderPartnerName: null, + orderByColumn: 'orderDate', + isAsc: 'desc' }, // 导入相关 upload: { diff --git a/oms_web/oms_vue/src/views/system/partner/index.vue b/oms_web/oms_vue/src/views/system/partner/index.vue index 47f26077..92d36365 100644 --- a/oms_web/oms_vue/src/views/system/partner/index.vue +++ b/oms_web/oms_vue/src/views/system/partner/index.vue @@ -306,7 +306,7 @@ export default { province: null, city: null, isAsc : 'desc', - orderByColumn : 'createTime', + orderByColumn : 'createAt', }, // 省份选项 provinceOptions: [], diff --git a/oms_web/oms_vue/src/views/system/product/index.vue b/oms_web/oms_vue/src/views/system/product/index.vue index b955912d..ab28aa33 100644 --- a/oms_web/oms_vue/src/views/system/product/index.vue +++ b/oms_web/oms_vue/src/views/system/product/index.vue @@ -237,7 +237,7 @@ export default { model: null, vendorName: null, isAsc : 'desc', - orderByColumn : 'createTime', + orderByColumn : 'createdAt', }, // 表单参数 form: {},