Showing
1 changed file
with
2 additions
and
2 deletions
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2022-07-18 10:22:22 | 2 | * @Date: 2022-07-18 10:22:22 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2024-07-21 11:49:27 | 4 | + * @LastEditTime: 2024-07-21 11:58:41 |
| 5 | * @FilePath: /data-table/src/views/index.vue | 5 | * @FilePath: /data-table/src/views/index.vue |
| 6 | * @Description: 首页 | 6 | * @Description: 首页 |
| 7 | --> | 7 | --> |
| ... | @@ -808,7 +808,7 @@ const checkRules = () => { | ... | @@ -808,7 +808,7 @@ const checkRules = () => { |
| 808 | // 处理多选项带补充信息时判断,去除补充信息 | 808 | // 处理多选项带补充信息时判断,去除补充信息 |
| 809 | form_submission_value = form_submission_value.map(item => { | 809 | form_submission_value = form_submission_value.map(item => { |
| 810 | if (item.includes(':')) { | 810 | if (item.includes(':')) { |
| 811 | - return item.split(':')[0].trim(); // 去除冒号及其后面的部分并去除前后空格 | 811 | + return item.split(':')[0].trim(); // 去除冒号及其后面的部分并去除前后空格 |
| 812 | } | 812 | } |
| 813 | return item; | 813 | return item; |
| 814 | }); | 814 | }); | ... | ... |
-
Please register or login to post a comment