diff --git a/other-module/canteen-device/raw-veg-inspection-scale/01-verify-inspection.html b/other-module/canteen-device/raw-veg-inspection-scale/01-verify-inspection.html
index 84e134c..4ed246f 100644
--- a/other-module/canteen-device/raw-veg-inspection-scale/01-verify-inspection.html
+++ b/other-module/canteen-device/raw-veg-inspection-scale/01-verify-inspection.html
@@ -915,10 +915,6 @@
-
'
+ '
' + f.name
+ '' + info.catLabel + ''
- + (info.traceCode ? '溯源: ' + info.traceCode + '' : '')
+ ''
+ specHtml
+ orderQtyHtml
@@ -1999,7 +1990,7 @@
ngType: ngType,
ngScope: ngScope,
ngReason: document.getElementById('ngReason').value,
- ngNote: document.getElementById('ngNote').value,
+ ngNote: '',
actualWeight: accumulatedWeights[currentFoodIdx]
};
renderFoodList();
@@ -2153,7 +2144,6 @@
function openNgModal() {
// 重置表单
resetNgForm();
- document.getElementById('ngNote').value = '';
// 填充不合格原因下拉菜单
var reasonSel = document.getElementById('ngReason');
reasonSel.innerHTML = '
';
@@ -2237,7 +2227,7 @@
ngType: ngType,
ngScope: ngScope,
ngReason: reason,
- ngNote: document.getElementById('ngNote').value.trim(),
+ ngNote: '',
refundAmount: refundAmount,
refundMoney: customRefundMoney, // 前置付款时存储自定义金额
refundQty: isSpice(selectedOrder.foods[currentFoodIdx].name) ? refundAmount : 0
@@ -2515,9 +2505,7 @@
var deductNum = parseFloat(deductAmt.replace('¥', '')) || 0;
var finalAmt = '¥' + Math.max(0, baseNum - deductNum).toFixed(2);
var deductVisible = document.getElementById('amountDeductRow').style.display !== 'none';
- var modeLabel = paymentMode === 'pre' ? '前置付款' : '后置付款';
-
- document.getElementById('summaryInfo').textContent = selectedOrder.id + ' | ' + selectedOrder.supplier + ' | ' + modeLabel;
+ document.getElementById('summaryInfo').textContent = selectedOrder.id + ' | ' + selectedOrder.supplier;
document.getElementById('summaryPass').textContent = passCount;
document.getElementById('summaryFail').textContent = failCount;
diff --git a/other-module/canteen-device/raw-veg-inspection-scale/03-verify-history.html b/other-module/canteen-device/raw-veg-inspection-scale/03-verify-history.html
index 1f08e77..a492a88 100644
--- a/other-module/canteen-device/raw-veg-inspection-scale/03-verify-history.html
+++ b/other-module/canteen-device/raw-veg-inspection-scale/03-verify-history.html
@@ -206,12 +206,6 @@
.logout-btn:hover { background: rgba(255,77,79,0.18); color: #ff6b6d; border-color: rgba(255,77,79,0.4); }
.tag--orange { background: rgba(250,173,22,0.15); color: #faad14; }
- .detail-link {
- color: #4a90d9; cursor: pointer; text-decoration: none; font-size: 13px;
- padding: 6px 12px; border-radius: 6px; transition: all 0.2s;
- }
- .detail-link:hover { background: rgba(74,144,217,0.15); color: #6db3f8; }
-
/* 底栏 */
.table-footer {
display: flex; align-items: center; justify-content: center;
@@ -227,37 +221,6 @@
.empty-state.show { display: flex; }
.empty-state__icon { font-size: 40px; opacity: 0.4; }
- /* 右侧抽屉 */
- .drawer-mask {
- display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000;
- }
- .drawer-mask.show { display: block; }
- .drawer {
- position: fixed; top: 0; right: -520px; bottom: 0; width: 520px; background: #1a2b4a;
- z-index: 1001; transition: right 0.3s ease; box-shadow: -4px 0 20px rgba(0,0,0,0.3);
- display: flex; flex-direction: column;
- }
- .drawer.show { right: 0; }
- .drawer__header {
- display: flex; align-items: center; justify-content: space-between;
- padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.08);
- }
- .drawer__title { font-size: 16px; font-weight: 600; }
- .drawer__close {
- width: 40px; height: 40px; font-size: 22px; cursor: pointer; color: rgba(255,255,255,0.5);
- background: rgba(255,255,255,0.06); border: none; border-radius: 8px;
- display: flex; align-items: center; justify-content: center;
- }
- .drawer__close:hover { color: #fff; background: rgba(255,255,255,0.1); }
- .drawer__body { padding: 20px 24px; overflow-y: auto; flex: 1; }
- .drawer-section { margin-bottom: 20px; }
- .drawer-section__title {
- font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6);
- padding-bottom: 8px; margin-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.06);
- }
- .drawer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
- .drawer-cell__label { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
- .drawer-cell__value { font-size: 14px; color: rgba(255,255,255,0.9); font-weight: 500; }
@@ -337,7 +300,7 @@
| 订单号 | 食材 | 供应商 |
- 支付方式 | 配送方式 | 时间 | 验收结果 | 操作 |
+ 配送方式 | 时间 | 验收结果 |
@@ -349,16 +312,6 @@
-
-