From f9b6865fafcad274edb9f89a43e0535a9b4eff40 Mon Sep 17 00:00:00 2001
From: cloudroam <cloudroam>
Date: 星期三, 08 一月 2025 14:46:40 +0800
Subject: [PATCH] add:物流发货针对散户更改微信发货方式,保存物流单号,未发送之前可更改
---
pages/sms/send-batch/index.vue | 20 +++++++++++---------
1 files changed, 11 insertions(+), 9 deletions(-)
diff --git a/pages/sms/send-batch/index.vue b/pages/sms/send-batch/index.vue
index 15ff60a..7e639aa 100644
--- a/pages/sms/send-batch/index.vue
+++ b/pages/sms/send-batch/index.vue
@@ -53,13 +53,12 @@
],
onResetView: (row) => {
// this.$router.push(`${this.$route.path}/${row.id}`)
-
- // const searchFormRef = this.$refs.crud.$refs.searchForm
- // const searchFormValue = searchFormRef.getFormValue()
- const url = this.$router.resolve(
- `/sms/send-batch/${row.id}`
- ).href
- window.open(url, '_blank')
+ this.$router.push(`${this.$route.path}/${row.id}`)
+
+ // const url = this.$router.resolve(
+ // `/sms/send-batch/${row.id}`
+ // ).href
+ // window.open(url, '_blank')
},
columns: [
@@ -209,6 +208,10 @@
trigger: 'change',
},
],
+ // outputFormat: (val) => {
+ // console.log(val)
+ // return '';
+ // },
},
{
label: '',
@@ -326,12 +329,11 @@
hidden: (row) => row.type !== 'SELECT',
rules: { required: true, message: '请选择领取用户' },
inputFormat: (row) => {
- if ('smsUserDTOS' in row) {
+ if ('smsUserDTOS' in row && row.smsUserDTOS && row.smsUserDTOS.length>0) {
return row.smsUserDTOS.filter((i) => i)
}
},
outputFormat: (val) => {
- console.log(val)
return val?.length ? val.map((i) => {return {userId:i.userId,userPhone:i.tel} }) : []
},
--
Gitblit v1.9.3