diff --git a/klp-ui/src/api/wms/coil.js b/klp-ui/src/api/wms/coil.js
index e9317e58..1dc86698 100644
--- a/klp-ui/src/api/wms/coil.js
+++ b/klp-ui/src/api/wms/coil.js
@@ -214,4 +214,14 @@ export function getMaxCoilNo(enterCoilNoPrefix) {
enterCoilNoPrefix
}
})
+}
+
+/**
+ * 查询存在重号的钢卷
+ */
+export function getDuplicateGroups() {
+ return request({
+ url: '/wms/materialCoil/duplicateGroups',
+ method: 'get'
+ })
}
\ No newline at end of file
diff --git a/klp-ui/src/views/wms/coil/repeated.vue b/klp-ui/src/views/wms/coil/repeated.vue
new file mode 100644
index 00000000..9e0367d4
--- /dev/null
+++ b/klp-ui/src/views/wms/coil/repeated.vue
@@ -0,0 +1,297 @@
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 刷新
+
+
+
+
+
+
+
+ 当前卷号:{{ item.currentCoilNo }}
+ (共 {{ item.coils.length }} 条重号钢卷数据)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 暂无当前卷号重号的钢卷数据
+
+
+
+
+
+
+
+ 刷新
+
+
+
+
+
+
+
+ 入厂卷号:{{ item.enterCoilNo }}
+ (共 {{ item.coils.length }} 条重号钢卷数据)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 暂无入厂卷号重号的钢卷数据
+
+
+
+
+
+
+
+
+
\ No newline at end of file