Showing
1 changed file
with
9 additions
and
3 deletions
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2022-06-29 18:18:02 | 2 | * @Date: 2022-06-29 18:18:02 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2024-12-20 17:07:15 | 4 | + * @LastEditTime: 2024-12-24 10:43:11 |
| 5 | * @FilePath: /data-table/src/views/stop.vue | 5 | * @FilePath: /data-table/src/views/stop.vue |
| 6 | * @Description: 文件描述 | 6 | * @Description: 文件描述 |
| 7 | --> | 7 | --> |
| ... | @@ -19,8 +19,8 @@ | ... | @@ -19,8 +19,8 @@ |
| 19 | <span v-if="status === 'apply'">表单未开始</span> | 19 | <span v-if="status === 'apply'">表单未开始</span> |
| 20 | <span v-if="status === 'finish'">表单已结束</span> | 20 | <span v-if="status === 'finish'">表单已结束</span> |
| 21 | <span v-if="status === 'disable'">表单已关闭</span> | 21 | <span v-if="status === 'disable'">表单已关闭</span> |
| 22 | - <span v-if="status === 'get_location_fail'">表单获取定位授权失败</span> | 22 | + <span v-if="status === 'get_location_fail'" class="text-error">获取定位授权失败!<br/>请在“设置”中打开<br/>“定位服务”或“位置信息”权限后再试</span> |
| 23 | - <span v-if="status === 'location_error'">未在指定位置提交,请确认后重试</span> | 23 | + <span v-if="status === 'location_error'" class="text-error">提交失败!<br/>表单管理员设置了填表的限定位置<br/>请在指定位置完成提交</span> |
| 24 | </p> | 24 | </p> |
| 25 | <!-- <p style="font-size: 0.9rem; margin-bottom: 0.5rem">您的作品正在审核中</p> --> | 25 | <!-- <p style="font-size: 0.9rem; margin-bottom: 0.5rem">您的作品正在审核中</p> --> |
| 26 | <!-- <p style="font-size: 0.9rem">请耐心等待~~</p> --> | 26 | <!-- <p style="font-size: 0.9rem">请耐心等待~~</p> --> |
| ... | @@ -84,5 +84,11 @@ const handle = () => { | ... | @@ -84,5 +84,11 @@ const handle = () => { |
| 84 | // color: @base-color; | 84 | // color: @base-color; |
| 85 | font-weight: bold; | 85 | font-weight: bold; |
| 86 | } | 86 | } |
| 87 | + | ||
| 88 | + .text-error { | ||
| 89 | + font-weight: normal; | ||
| 90 | + font-size: 1rem; | ||
| 91 | + line-height: 1.75; | ||
| 92 | + } | ||
| 87 | } | 93 | } |
| 88 | </style> | 94 | </style> | ... | ... |
-
Please register or login to post a comment