diff --git a/src/api/orderIssure/soIssueNotify.js b/src/api/orderIssure/soIssueNotify.js
index 6ddb916..1da9b55 100644
--- a/src/api/orderIssure/soIssueNotify.js
+++ b/src/api/orderIssure/soIssueNotify.js
@@ -82,4 +82,6 @@ export const cancelIssueNotify = data => createAPI(`/orderIssure/issureNotify/ca
// 查询预留标签清单 - rqrq
export const searchMaterialListDetail = data => createAPI(`/orderIssure/newIssure/searchMaterialListDetail`,'post',data)
+export const updateMaterialDetail = data => createAPI(`/orderIssure/issureNotify/updateMaterialDetail`,'post',data)
+
diff --git a/src/views/modules/orderIssure/searchIssureNotify.vue b/src/views/modules/orderIssure/searchIssureNotify.vue
index c21fee3..4302e83 100644
--- a/src/views/modules/orderIssure/searchIssureNotify.vue
+++ b/src/views/modules/orderIssure/searchIssureNotify.vue
@@ -183,6 +183,7 @@
border
:row-class-name="tableRowClassName"
v-loading="dataListLoading"
+ @row-dblclick="handleMaterialRowDblClick"
style="width: 100%; ">
@@ -374,6 +375,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ editMaterialData.qtyToIssue = value
+ .replace(/[^\d.]/g, '')
+ .replace(/\.{2,}/g, '.')
+ .replace(/^\./, '0.')
+ .replace(/(\.\d{4}).*/, '$1')
+ .replace(/^0+(?=\d)/, '0')
+ .replace(/^0+(?=\.)/, '0')"
+ >
+
+
+
+
+
+
+
+
+
+
+
+ 保存
+ 关闭
+
+
+
{
+ if (data.code === 0) {
+ this.editMaterialModalFlag = false
+ this.refreshCurrentTabTable()
+ this.$message.success('保存成功')
+ } else {
+ this.$alert(data.msg, '错误', {
+ confirmButtonText: '确定',
+ })
+ }
+ }).catch(() => {
+ this.$message.error('保存失败')
+ })
+ },