Browse Source

Merge branch 'master' of http://git.ascrm.cn:3000/scrm/wechat-ui

kyoyue 7 months ago
parent
commit
46ba6e2fe0
1 changed files with 10 additions and 7 deletions
  1. 10 7
      src/views/wechat/batch_msg/batchMsg.data.ts

+ 10 - 7
src/views/wechat/batch_msg/batchMsg.data.ts

@@ -124,11 +124,14 @@ export const formSchema: FormSchema[] = [
     }),
     required: true,
   },
-  // {
-  //   field: 'tag',
-  //   label: t('wechat.batchMsg.tag'),
-  //   component: 'Input',
-  //   helpMessage: "多个标签用','分隔,全部群发填写'all'",
-  //   required: true,
-  // },
+  {
+    field: 'startTimeStr',
+    label: t('wechat.batchMsg.startTime'),
+    component: 'DatePicker',
+    componentProps: {
+      showTime: true,
+    },
+    helpMessage: '定时发送时间,不填写或填写当前时间或小于当前时间则立刻发送',
+    required: false,
+  },
 ];