diff --git a/fe/PDA/common/new_style.css b/fe/PDA/common/new_style.css
index cd2035b91..f6e9ec526 100644
--- a/fe/PDA/common/new_style.css
+++ b/fe/PDA/common/new_style.css
@@ -665,6 +665,17 @@ uni-page-head .uni-page-head__title {
z-index: 2;
}
+.choose_marked_count {
+ position: absolute;
+ width: 100%;
+ /* height: 100%; */
+ top: 0;
+ left: 0;
+ border-top: 6rpx solid #5FCB94;
+ border-top-left-radius: 16rpx;
+ border-top-right-radius: 16rpx;
+}
+
.choose_marked {
position: absolute;
width: 100%;
diff --git a/fe/PDA/mycomponents/common/comEasyInputCount.vue b/fe/PDA/mycomponents/common/comEasyInputCount.vue
new file mode 100644
index 000000000..ec55915b1
--- /dev/null
+++ b/fe/PDA/mycomponents/common/comEasyInputCount.vue
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/fe/PDA/pages/task/count_detail.vue b/fe/PDA/pages/task/count_detail.vue
index 65d0301f1..6d1f31503 100644
--- a/fe/PDA/pages/task/count_detail.vue
+++ b/fe/PDA/pages/task/count_detail.vue
@@ -42,7 +42,7 @@
{{item.inventoryQty}}
-
@@ -50,9 +50,26 @@
-
- {{item.countQty}}
+ -->
+
+ {{item.countQty}}
+
+ 修改
+
+
+
+ {{item.countQty}}
+
+ 修改
+
+
+
+ {{item.countQty}}
+
+
{{ item.locationCode }}
{{item.lot}}
@@ -115,8 +135,11 @@
-
-
+
+
+
+
+
@@ -131,6 +154,7 @@
+
@@ -176,8 +200,11 @@
import comCountScanDetail from '@/mycomponents/coms/task/comCountScanDetail.vue';
import comNumberBox from '@/mycomponents/common/comNumberBox.vue';
import comEasyInput from '@/mycomponents/common/comEasyInput.vue';
+ import comEasyInputCount from '@/mycomponents/common/comEasyInputCount.vue';
+
import winInventoryStatus from '@/mycomponents/wincom/winInventoryStatus.vue';
-
+
+
export default {
components: {
// comCountItems,
@@ -187,6 +214,7 @@
comCountScanDetail,
comNumberBox,
comEasyInput,
+ comEasyInputCount,
winInventoryStatus
},
data() {
@@ -198,6 +226,7 @@
allDetails: [], //所以的明细
currentItem: {},
editDescItem: {},
+ editCountItem:{},
scrollTop: 0,
old: {
scrollTop: 0
@@ -331,7 +360,7 @@
that.datacontent = res;
if (res.details != null) {
res.details.forEach(r => {
- r.scaned = false
+ r.scaned = true
r.countTime = new Date()
// r.countQty = r.inventoryQty;
r.countQty = 0;
@@ -746,6 +775,16 @@
this.editDescItem.countDescription = content;
this.$forceUpdate();
},
+ openEditCount(item) {
+ this.editCountItem = item;
+ this.$refs.countPopup.openPopup(item.countQty);
+ },
+
+ closeEditCount(content) {
+ this.editCountItem.countQty = content;
+ this.$forceUpdate();
+ },
+
showCommitSuccessMessage() {
this.$refs.comMessage.showCommitSuccess();