Commit 6567790a8c5399493aedac513d5f6eaeb18ffec1
1 parent
724d3457
授权激活页面提示修改
Signed-off-by: TanYibin <5491541@qq.com>
Showing
2 changed files
with
2 additions
and
2 deletions
ant-design-vue-jeecg/src/views/user/modules/SystemActivationModal.vue
... | ... | @@ -5,7 +5,7 @@ |
5 | 5 | <a-tab-pane key="tab1" tab="系统激活授权"/> |
6 | 6 | </a-tabs> |
7 | 7 | <a-form-model-item> |
8 | - <a-input size="large" v-model="model.activationCode" autocomplete="false" placeholder="请输入系统激活码"/> | |
8 | + <a-input size="large" v-model="model.activationCode" autocomplete="false" placeholder="系统授权已过期,请输入系统激活码"/> | |
9 | 9 | </a-form-model-item> |
10 | 10 | <a-form-item style="margin-top:24px"> |
11 | 11 | <a-button size="large" type="primary" htmlType="submit" class="login-button" :loading="loginBtn" @click.stop.prevent="handleSubmit" :disabled="loginBtn">确定 |
... | ... |
huaheng-wms-core/src/main/java/org/jeecg/utils/HuahengJwtUtil.java
... | ... | @@ -292,7 +292,7 @@ public class HuahengJwtUtil { |
292 | 292 | System.out.println("jwt.getIssuedAt():" + DateUtil.format(jwt.getIssuedAt(), DatePattern.NORM_DATETIME_PATTERN)); |
293 | 293 | System.out.println("jwt.getExpiresAt():" + DateUtil.format(jwt.getExpiresAt(), DatePattern.NORM_DATETIME_PATTERN)); |
294 | 294 | |
295 | - System.out.println("-------------------------------------系统激活码TOKEN-------------------------------------"); | |
295 | + System.out.println("-------------------------------------系统激活码-------------------------------------"); | |
296 | 296 | // 生成系统激活码TOKEN |
297 | 297 | SystemAuthentication systemAuthentication = new SystemAuthentication(); |
298 | 298 | // 生成TOKEN必填参数 |
... | ... |