Commit 22208306e63857c34b10a31334b35bc6484db529
Merge branch 'fix/DEFECT-3000' into 'main_dev'
fix: 云端短信点击发送时,框内提示应该修改为一条,示例:[123456]。 See merge request yunteng/thingskit-front!1514
Showing
3 changed files
with
3 additions
and
4 deletions
... | ... | @@ -66,7 +66,7 @@ export default { |
66 | 66 | phoneNumber: 'Phone number', |
67 | 67 | SMSparameters: 'SMS parameters', |
68 | 68 | placeSMS: 'Example: {\'{"code": "1234"}\'}', |
69 | - placeStringRule: `["123456]`, | |
69 | + placeStringRule: `["123456"]`, | |
70 | 70 | ruleSMS: `Please enter JSON format, for example {\'{"code": "1234"}\'}`, |
71 | 71 | example: 'Example', |
72 | 72 | stringArrayRule: `Please enter this format ["123456"]`, | ... | ... |
... | ... | @@ -61,7 +61,7 @@ export default { |
61 | 61 | phoneNumber: '手机号码', //Phone number |
62 | 62 | SMSparameters: '短信参数', //SMS parameters |
63 | 63 | placeSMS: `示例:{'"code":"1234"'}`, |
64 | - placeStringRule: `["123456]`, | |
64 | + placeStringRule: `["123456"]`, | |
65 | 65 | ruleSMS: `请输入JSON格式例如{'"code":"1234"'}`, //Please enter JSON format, for example {"code": "1234"} |
66 | 66 | example: '示例:', //Example |
67 | 67 | stringArrayRule: `请输入这种格式["123456"]`, //Please enter this format ["123456"] | ... | ... |
... | ... | @@ -150,8 +150,7 @@ |
150 | 150 | placeholder: |
151 | 151 | platformType.value !== PlateFormTypeEnum.tencent_cound |
152 | 152 | ? t('monitor.message.template.form.placeSMS') |
153 | - : t('monitor.message.template.form.placeStringRule') + | |
154 | - t('monitor.message.template.form.placeStringRule'), | |
153 | + : t('monitor.message.template.form.placeStringRule'), | |
155 | 154 | }, |
156 | 155 | dynamicRules: () => { |
157 | 156 | return [ | ... | ... |