|
@@ -274,7 +274,12 @@ $(document).ready(() => {
|
|
|
if (status !== 0) {
|
|
|
url += '/status/'+ status;
|
|
|
}
|
|
|
- window.location.href = url + window.location.search;
|
|
|
+ let orderSetting = getLocalCache('change-'+ $('#tenderId').val() +'-list-order');
|
|
|
+ if (orderSetting) {
|
|
|
+ const orders = orderSetting.split('|');
|
|
|
+ url += '?sort=' + orders[0] + '&order=' + orders[1];
|
|
|
+ }
|
|
|
+ window.location.href = url;
|
|
|
});
|
|
|
// 不再显示首次使用
|
|
|
$('#changeFirst').click(function () {
|