Skip to content

Commit

Permalink
1、新增批量修改物理库配置
Browse files Browse the repository at this point in the history
2、新增6个复合查询
  • Loading branch information
matrixbingo committed Feb 23, 2021
1 parent be898b4 commit 4906821
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions das-console-manager/src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
spring.profiles.active = dev

server.port=8088
server.port=8080
server.servlet.session.timeout = 60s
spring.evn.active=dev
application.isdev=false
Expand All @@ -25,7 +25,7 @@ logback.logdir=/work/logs
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
spring.jackson.time-zone=GMT+8

atlas.url.base=http://atlas.ppdaicorp.com/web/users/username/
atlas.url.base=

############################################################
#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ return /******/ (function(modules) { // webpackBootstrap
/******/ script.charset = 'utf-8';
/******/ script.async = true;
/******/
/******/ script.src = __webpack_require__.p + "" + ({"1":"index"}[chunkId]||chunkId) + "." + {"1":"ebbaa1585a2eee0e719d"}[chunkId] + ".js";
/******/ script.src = __webpack_require__.p + "" + ({"1":"index"}[chunkId]||chunkId) + "." + {"1":"2f0d9110e9a0dd8e00d8"}[chunkId] + ".js";
/******/ head.appendChild(script);
/******/ }
/******/ };
Expand Down

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions das-console-manager/src/main/resources/pages/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -243918,6 +243918,10 @@ return webpackJsonp([1],[

Init.prototype.initAdminInfo = function initAdminInfo(current) {
var admin = this.getValueToJson(this.admin);
if (!admin.password || admin.password.length < 6 || admin.password.length > 20) {
this.showErrorsMsg('密码长度6~20位');
return;
}
this.props.initAdminInfo(admin, this, function (_this, data) {
if (data.code == 200) {
_this.showSuccessMsg('admin初始化成功');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ logback.logdir=/work/logs
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
spring.jackson.time-zone=GMT+8

atlas.url.base=http://atlas.ppdaicorp.com/web/users/username/
atlas.url.base=

############################################################
#
Expand Down

0 comments on commit 4906821

Please sign in to comment.