riku
2025-09-02 adc9abd145c24f2d3e7033bb738e1e8641eaf4cf
src/stores/device.js
@@ -21,7 +21,9 @@
      return deviceApi
        .fethchDevice({ type: type, page, pageSize })
        .then((res) => {
          deviceList.value = res.data;
          deviceList.value = res.data.sort((a, b) => {
            return a.deviceCode < b.deviceCode ? -1 : 1;
          });
          return res;
        });
    });