diff --git a/src/views/oa/crm/crmQuoteInfo/index.vue b/src/views/oa/crm/crmQuoteInfo/index.vue
index ae12b4c..44f0ebb 100644
--- a/src/views/oa/crm/crmQuoteInfo/index.vue
+++ b/src/views/oa/crm/crmQuoteInfo/index.vue
@@ -290,7 +290,7 @@
{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}
-
+
@@ -308,15 +308,15 @@
-
-
-
+
+
+
+
+
+
+
+
+
{
});
};
-/** 报价明细按钮操作 */
-const handleDetail = (row: CrmQuoteInfoVO) => {
- router.push({
- path: '/quote/crmQuoteMaterial',
- query: {
- quoteId: row.quoteId,
- quoteCode: row.quoteCode,
- quoteName: row.quoteName
- }
- });
-};
-
/** 提交按钮 */
const submitForm = () => {
crmQuoteInfoFormRef.value?.validate(async (valid: boolean) => {
diff --git a/src/views/wms/wmsShippingBill/edit.vue b/src/views/wms/wmsShippingBill/edit.vue
index bfc1749..0c6071e 100644
--- a/src/views/wms/wmsShippingBill/edit.vue
+++ b/src/views/wms/wmsShippingBill/edit.vue
@@ -538,7 +538,7 @@ const isCurrentTaskBusinessMatched = computed(() => {
const taskBusinessId = String(currentTask.value?.businessId || '').trim();
const shippingBillId = String(form.value.shippingBillId || '').trim();
if (!taskBusinessId) {
- // 为什么这样做:部分任务接口场景可能不回 businessId,前端不能因为缺少辅助字段把到货确认入口误隐藏
+ // 部分任务接口场景可能不回 businessId,前端不能因为缺少辅助字段把到货确认入口误隐藏
return true;
}
return taskBusinessId === shippingBillId;
diff --git a/src/views/wms/wmsShippingBill/index.vue b/src/views/wms/wmsShippingBill/index.vue
index 05a6490..d558c6c 100644
--- a/src/views/wms/wmsShippingBill/index.vue
+++ b/src/views/wms/wmsShippingBill/index.vue
@@ -564,7 +564,7 @@ const handleView = (row: WmsShippingBillVO) => {
/** 审批记录 */
const handleApprovalRecord = (row: WmsShippingBillVO) => {
- // 为什么这样做:审批记录只依赖业务单ID,列表页直接打开记录弹窗能减少用户在详情页来回跳转
+ // 审批记录只依赖业务单ID,列表页直接打开记录弹窗能减少用户在详情页来回跳转
approvalRecordRef.value?.init(row.shippingBillId);
};