shijiplus-web-plugin 0.1.33 → 0.1.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shijiplus-web-plugin",
3
- "version": "0.1.33",
3
+ "version": "0.1.34",
4
4
  "files": [
5
5
  "src"
6
6
  ],
@@ -167,6 +167,9 @@ export default {
167
167
  // Update progress based on total count
168
168
  this.orderExportModalPercent = (exportedCount / this.totalCount * 100).toFixed(2)
169
169
  instance.updatePercent(this.orderExportModalPercent)
170
+ if (this.orderExportModalPercent >= 100) {
171
+ break
172
+ }
170
173
  }
171
174
 
172
175
  // 5. Export the data (logic omitted here, add your export implementation)