diff --git a/supply.html b/supply.html index ab2bb01..262fb3f 100644 --- a/supply.html +++ b/supply.html @@ -5095,6 +5095,11 @@ // 获取上架时间 function getPublishTime(supply) { try { + // 上架状态时,优先使用修改时间作为上架时间 + if (supply.status === 'published' && supply.updated_at) { + return supply.updated_at; + } + // 检查是否为第一次上架 if (isFirstPublish(supply)) { // 第一次上架,使用创建时间