提交 25edf511 编写于 作者: ibizdev's avatar ibizdev

ibizdev提交

上级 b3b3dcba
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
"id": "男", "id": "男",
"label": "男性", "label": "男性",
"text": "男性", "text": "男性",
"data":"",
"value": "男", "value": "男",
"disabled": false "disabled": false
...@@ -16,6 +17,7 @@ ...@@ -16,6 +17,7 @@
"id": "女", "id": "女",
"label": "女性", "label": "女性",
"text": "女性", "text": "女性",
"data":"",
"value": "女", "value": "女",
"disabled": false "disabled": false
...@@ -24,6 +26,7 @@ ...@@ -24,6 +26,7 @@
"id": "性别不详", "id": "性别不详",
"label": "性别不详", "label": "性别不详",
"text": "性别不详", "text": "性别不详",
"data":"",
"value": "性别不详", "value": "性别不详",
"disabled": false "disabled": false
......
...@@ -43,7 +43,7 @@ export default class AppCheckBox extends Vue { ...@@ -43,7 +43,7 @@ export default class AppCheckBox extends Vue {
* @type {string} * @type {string}
* @memberof AppCheckBox * @memberof AppCheckBox
*/ */
@Prop({default:';'}) public valueSeparator?: string; @Prop({default:','}) public valueSeparator?: string;
/** /**
* 是否禁用 * 是否禁用
...@@ -97,28 +97,6 @@ export default class AppCheckBox extends Vue { ...@@ -97,28 +97,6 @@ export default class AppCheckBox extends Vue {
} }
} }
/**
* 分隔符
*
* @type {*}
* @memberof AppCheckBox
*/
@Prop() separator: any;
/**
* 获取分隔符
*
* @readonly
* @memberof AppCheckBox
*/
get currentseparator() {
if (this.separator) {
return this.separator;
} else {
return ';';
}
}
/** /**
* 选中值 * 选中值
* *
......
...@@ -55,14 +55,14 @@ export default class AppSpan extends Vue { ...@@ -55,14 +55,14 @@ export default class AppSpan extends Vue {
* @type {boolean} * @type {boolean}
* @memberof AppSpan * @memberof AppSpan
*/ */
@Prop({default:"、"}) public textSeparator?: string; @Prop({default:'、'}) public textSeparator?: string;
/** /**
* 值分隔符 * 值分隔符
* @type {boolean} * @type {boolean}
* @memberof AppSpan * @memberof AppSpan
*/ */
@Prop({default:";"}) public valueSeparator?: string; @Prop({default:','}) public valueSeparator?: string;
/** /**
* 监控表单属性 data 值 * 监控表单属性 data 值
......
...@@ -61,14 +61,14 @@ export default class CodeList extends Vue { ...@@ -61,14 +61,14 @@ export default class CodeList extends Vue {
* @type {boolean} * @type {boolean}
* @memberof SelectPicker * @memberof SelectPicker
*/ */
@Prop({default:"、"}) public textSeparator?: string; @Prop({default:'、'}) public textSeparator?: string;
/** /**
* 值分隔符 * 值分隔符
* @type {boolean} * @type {boolean}
* @memberof SelectPicker * @memberof SelectPicker
*/ */
@Prop({default:";"}) public valueSeparator?: string; @Prop({default:','}) public valueSeparator?: string;
/** /**
* 是否为空 * 是否为空
......
...@@ -60,7 +60,7 @@ export default class DropDownListMpicker extends Vue { ...@@ -60,7 +60,7 @@ export default class DropDownListMpicker extends Vue {
* @type {string} * @type {string}
* @memberof DropDownListMpicker * @memberof DropDownListMpicker
*/ */
@Prop({default:';'}) public valueSeparator?: string; @Prop({default:','}) public valueSeparator?: string;
/** /**
* 是否禁用 * 是否禁用
......
...@@ -16,6 +16,7 @@ mock.onGet('./assets/json/data-dictionary.json').reply((config: any) => { ...@@ -16,6 +16,7 @@ mock.onGet('./assets/json/data-dictionary.json').reply((config: any) => {
id: '男', id: '男',
label: '男性', label: '男性',
text: '男性', text: '男性',
"data":"",
value: '男', value: '男',
disabled: false, disabled: false,
...@@ -24,6 +25,7 @@ mock.onGet('./assets/json/data-dictionary.json').reply((config: any) => { ...@@ -24,6 +25,7 @@ mock.onGet('./assets/json/data-dictionary.json').reply((config: any) => {
id: '女', id: '女',
label: '女性', label: '女性',
text: '女性', text: '女性',
"data":"",
value: '女', value: '女',
disabled: false, disabled: false,
...@@ -32,6 +34,7 @@ mock.onGet('./assets/json/data-dictionary.json').reply((config: any) => { ...@@ -32,6 +34,7 @@ mock.onGet('./assets/json/data-dictionary.json').reply((config: any) => {
id: '性别不详', id: '性别不详',
label: '性别不详', label: '性别不详',
text: '性别不详', text: '性别不详',
"data":"",
value: '性别不详', value: '性别不详',
disabled: false, disabled: false,
......
...@@ -243,7 +243,6 @@ export default class IBZDepartmentEditViewBase extends Vue { ...@@ -243,7 +243,6 @@ export default class IBZDepartmentEditViewBase extends Vue {
* @memberof IBZDepartmentEditViewBase * @memberof IBZDepartmentEditViewBase
*/ */
public viewState: Subject<ViewState> = new Subject(); public viewState: Subject<ViewState> = new Subject();
/** /**
* 工具栏模型 * 工具栏模型
* *
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
<div class='content-container'> <div class='content-container'>
<div class='view-top-messages'> <div class='view-top-messages'>
</div> </div>
<row style='margin-bottom: 6px;'> <div style='margin-bottom: 6px;'>
<i-input v-show="!isExpandSearchForm" v-model="query" search enter-button @on-search="onSearch($event)" class='pull-left' style='max-width: 400px;margin-top:6px;' /> <i-input v-show="!isExpandSearchForm" v-model="query" search enter-button @on-search="onSearch($event)" class='quick-search-input' style='max-width: 400px;' />
<div class='pull-right'> <div class='pull-right'>
<div class='toolbar-container'> <div class='toolbar-container'>
<tooltip :transfer="true" :max-width="600"> <tooltip :transfer="true" :max-width="600">
...@@ -53,7 +53,7 @@ ...@@ -53,7 +53,7 @@
</tooltip> </tooltip>
</div> </div>
</div> </div>
</row> </div>
<view_searchform <view_searchform
:viewState="viewState" :viewState="viewState"
:viewparams="viewparams" :viewparams="viewparams"
...@@ -282,7 +282,6 @@ export default class IBZDepartmentGridViewBase extends Vue { ...@@ -282,7 +282,6 @@ export default class IBZDepartmentGridViewBase extends Vue {
* @memberof IBZDepartmentGridViewBase * @memberof IBZDepartmentGridViewBase
*/ */
public viewState: Subject<ViewState> = new Subject(); public viewState: Subject<ViewState> = new Subject();
/** /**
* 工具栏模型 * 工具栏模型
* *
...@@ -311,6 +310,7 @@ export default class IBZDepartmentGridViewBase extends Vue { ...@@ -311,6 +310,7 @@ export default class IBZDepartmentGridViewBase extends Vue {
/** /**
* 视图引擎 * 视图引擎
* *
...@@ -540,6 +540,7 @@ export default class IBZDepartmentGridViewBase extends Vue { ...@@ -540,6 +540,7 @@ export default class IBZDepartmentGridViewBase extends Vue {
_this.loadModel(); _this.loadModel();
} }
} }
......
...@@ -229,7 +229,6 @@ export default class IBZEmployeeChangePwdViewBase extends Vue { ...@@ -229,7 +229,6 @@ export default class IBZEmployeeChangePwdViewBase extends Vue {
* @memberof IBZEmployeeChangePwdViewBase * @memberof IBZEmployeeChangePwdViewBase
*/ */
public viewState: Subject<ViewState> = new Subject(); public viewState: Subject<ViewState> = new Subject();
/** /**
* 工具栏模型 * 工具栏模型
* *
......
...@@ -243,7 +243,6 @@ export default class IBZEmployeeEditViewBase extends Vue { ...@@ -243,7 +243,6 @@ export default class IBZEmployeeEditViewBase extends Vue {
* @memberof IBZEmployeeEditViewBase * @memberof IBZEmployeeEditViewBase
*/ */
public viewState: Subject<ViewState> = new Subject(); public viewState: Subject<ViewState> = new Subject();
/** /**
* 工具栏模型 * 工具栏模型
* *
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
<div class='content-container'> <div class='content-container'>
<div class='view-top-messages'> <div class='view-top-messages'>
</div> </div>
<row style='margin-bottom: 6px;'> <div style='margin-bottom: 6px;'>
<i-input v-show="!isExpandSearchForm" v-model="query" search enter-button @on-search="onSearch($event)" class='pull-left' style='max-width: 400px;margin-top:6px;' /> <i-input v-show="!isExpandSearchForm" v-model="query" search enter-button @on-search="onSearch($event)" class='quick-search-input' style='max-width: 400px;' />
<div class='pull-right'> <div class='pull-right'>
<div class='toolbar-container'> <div class='toolbar-container'>
<tooltip :transfer="true" :max-width="600"> <tooltip :transfer="true" :max-width="600">
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
</tooltip> </tooltip>
</div> </div>
</div> </div>
</row> </div>
<view_searchform <view_searchform
:viewState="viewState" :viewState="viewState"
:viewparams="viewparams" :viewparams="viewparams"
...@@ -289,7 +289,6 @@ export default class IBZEmployeeGridViewBase extends Vue { ...@@ -289,7 +289,6 @@ export default class IBZEmployeeGridViewBase extends Vue {
* @memberof IBZEmployeeGridViewBase * @memberof IBZEmployeeGridViewBase
*/ */
public viewState: Subject<ViewState> = new Subject(); public viewState: Subject<ViewState> = new Subject();
/** /**
* 工具栏模型 * 工具栏模型
* *
...@@ -321,6 +320,7 @@ export default class IBZEmployeeGridViewBase extends Vue { ...@@ -321,6 +320,7 @@ export default class IBZEmployeeGridViewBase extends Vue {
/** /**
* 视图引擎 * 视图引擎
* *
...@@ -550,6 +550,7 @@ export default class IBZEmployeeGridViewBase extends Vue { ...@@ -550,6 +550,7 @@ export default class IBZEmployeeGridViewBase extends Vue {
_this.loadModel(); _this.loadModel();
} }
} }
......
...@@ -243,7 +243,6 @@ export default class IBZOrganizationEditViewBase extends Vue { ...@@ -243,7 +243,6 @@ export default class IBZOrganizationEditViewBase extends Vue {
* @memberof IBZOrganizationEditViewBase * @memberof IBZOrganizationEditViewBase
*/ */
public viewState: Subject<ViewState> = new Subject(); public viewState: Subject<ViewState> = new Subject();
/** /**
* 工具栏模型 * 工具栏模型
* *
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
<div class='content-container'> <div class='content-container'>
<div class='view-top-messages'> <div class='view-top-messages'>
</div> </div>
<row style='margin-bottom: 6px;'> <div style='margin-bottom: 6px;'>
<i-input v-show="!isExpandSearchForm" v-model="query" search enter-button @on-search="onSearch($event)" class='pull-left' style='max-width: 400px;margin-top:6px;' /> <i-input v-show="!isExpandSearchForm" v-model="query" search enter-button @on-search="onSearch($event)" class='quick-search-input' style='max-width: 400px;' />
<div class='pull-right'> <div class='pull-right'>
<div class='toolbar-container'> <div class='toolbar-container'>
<tooltip :transfer="true" :max-width="600"> <tooltip :transfer="true" :max-width="600">
...@@ -53,7 +53,7 @@ ...@@ -53,7 +53,7 @@
</tooltip> </tooltip>
</div> </div>
</div> </div>
</row> </div>
<view_searchform <view_searchform
:viewState="viewState" :viewState="viewState"
:viewparams="viewparams" :viewparams="viewparams"
...@@ -282,7 +282,6 @@ export default class IBZOrganizationGridViewBase extends Vue { ...@@ -282,7 +282,6 @@ export default class IBZOrganizationGridViewBase extends Vue {
* @memberof IBZOrganizationGridViewBase * @memberof IBZOrganizationGridViewBase
*/ */
public viewState: Subject<ViewState> = new Subject(); public viewState: Subject<ViewState> = new Subject();
/** /**
* 工具栏模型 * 工具栏模型
* *
...@@ -311,6 +310,7 @@ export default class IBZOrganizationGridViewBase extends Vue { ...@@ -311,6 +310,7 @@ export default class IBZOrganizationGridViewBase extends Vue {
/** /**
* 视图引擎 * 视图引擎
* *
...@@ -540,6 +540,7 @@ export default class IBZOrganizationGridViewBase extends Vue { ...@@ -540,6 +540,7 @@ export default class IBZOrganizationGridViewBase extends Vue {
_this.loadModel(); _this.loadModel();
} }
} }
......
...@@ -213,6 +213,17 @@ ...@@ -213,6 +213,17 @@
height: 100%; height: 100%;
} }
} }
>.view-card{
>.ivu-card-body{
>.content-container{
.quick-group-container,.quick-search-container,.quick-search-input{
float: left;
margin-top: 6px;
margin-bottom: 6px;
}
}
}
}
} }
/*** END:多数据视图属性布局 ***/ /*** END:多数据视图属性布局 ***/
......
...@@ -10,6 +10,9 @@ ...@@ -10,6 +10,9 @@
.ivu-modal-body { .ivu-modal-body {
padding: 0; padding: 0;
height: calc(100% - 52px); height: calc(100% - 52px);
.view-container{
padding: 15px;
}
} }
} }
} }
......
...@@ -514,6 +514,8 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -514,6 +514,8 @@ export default class MainBase extends Vue implements ControlInterface {
public stopRowClick: boolean = false; public stopRowClick: boolean = false;
/** /**
* 表格是否显示 * 表格是否显示
* *
......
...@@ -530,6 +530,8 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -530,6 +530,8 @@ export default class MainBase extends Vue implements ControlInterface {
public stopRowClick: boolean = false; public stopRowClick: boolean = false;
/** /**
* 表格是否显示 * 表格是否显示
* *
...@@ -970,7 +972,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -970,7 +972,7 @@ export default class MainBase extends Vue implements ControlInterface {
codelistType : 'STATIC', codelistType : 'STATIC',
renderMode: 'other', renderMode: 'other',
textSeparator: '、', textSeparator: '、',
valueSeparator: ';', valueSeparator: ',',
}, },
]; ];
let _this = this; let _this = this;
......
...@@ -507,6 +507,8 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -507,6 +507,8 @@ export default class MainBase extends Vue implements ControlInterface {
public stopRowClick: boolean = false; public stopRowClick: boolean = false;
/** /**
* 表格是否显示 * 表格是否显示
* *
......
...@@ -37,11 +37,11 @@ ...@@ -37,11 +37,11 @@
git clone -b master $para2 ibzou/ git clone -b master $para2 ibzou/
export NODE_OPTIONS=--max-old-space-size=4096 export NODE_OPTIONS=--max-old-space-size=4096
cd ibzou/ cd ibzou/
mvn clean package -Papi mvn clean package -Pweb
cd ibzou-provider/ibzou-provider-api cd ibzou-app/ibzou-app-web
mvn -Papi docker:build mvn -Pweb docker:build
mvn -Papi docker:push mvn -Pweb docker:push
docker -H $para1 stack deploy --compose-file=src/main/docker/ibzou-provider-api.yaml ibzlab-rt --with-registry-auth docker -H $para1 stack deploy --compose-file=src/main/docker/ibzou-app-web.yaml ibzlab-rt --with-registry-auth
</command> </command>
</hudson.tasks.Shell> </hudson.tasks.Shell>
</builders> </builders>
......
...@@ -9,6 +9,6 @@ CMD echo "The application will start in ${IBZ_SLEEP}s..." && \ ...@@ -9,6 +9,6 @@ CMD echo "The application will start in ${IBZ_SLEEP}s..." && \
sleep ${IBZ_SLEEP} && \ sleep ${IBZ_SLEEP} && \
java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar /ibzou-app-web.jar java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar /ibzou-app-web.jar
EXPOSE 8080 EXPOSE 30001
ADD ibzou-app-web.jar /ibzou-app-web.jar ADD ibzou-app-web.jar /ibzou-app-web.jar
...@@ -3,9 +3,11 @@ services: ...@@ -3,9 +3,11 @@ services:
ibzou-app-web: ibzou-app-web:
image: registry.cn-shanghai.aliyuncs.com/ibizsys/ibzou-app-web:latest image: registry.cn-shanghai.aliyuncs.com/ibizsys/ibzou-app-web:latest
ports: ports:
- "8080:8080" - "30001:30001"
networks: networks:
- agent_network - agent_network
environment:
SPRING_CLOUD_NACOS_DISCOVERY_IP: 172.16.180.237
deploy: deploy:
mode: replicated mode: replicated
replicas: 1 replicas: 1
......
server: server:
port: 8080 port: 30001
\ No newline at end of file \ No newline at end of file
server: server:
port: 8080 port: 30001
#zuul网关路由设置 #zuul网关路由设置
zuul: zuul:
......
...@@ -9,6 +9,6 @@ CMD echo "The application will start in ${IBZ_SLEEP}s..." && \ ...@@ -9,6 +9,6 @@ CMD echo "The application will start in ${IBZ_SLEEP}s..." && \
sleep ${IBZ_SLEEP} && \ sleep ${IBZ_SLEEP} && \
java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar /ibzou-provider-api.jar java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar /ibzou-provider-api.jar
EXPOSE 40001 EXPOSE 8081
ADD ibzou-provider-api.jar /ibzou-provider-api.jar ADD ibzou-provider-api.jar /ibzou-provider-api.jar
...@@ -3,11 +3,9 @@ services: ...@@ -3,11 +3,9 @@ services:
ibzou-provider-api: ibzou-provider-api:
image: registry.cn-shanghai.aliyuncs.com/ibizsys/ibzou-provider-api:latest image: registry.cn-shanghai.aliyuncs.com/ibizsys/ibzou-provider-api:latest
ports: ports:
- "40001:40001" - "8081:8081"
networks: networks:
- agent_network - agent_network
environment:
SPRING_CLOUD_NACOS_DISCOVERY_IP: 172.16.180.237
deploy: deploy:
mode: replicated mode: replicated
replicas: 1 replicas: 1
......
server: server:
port: 40001 port: 8081
\ No newline at end of file \ No newline at end of file
...@@ -32,7 +32,7 @@ public class PermissionSyncJob implements ApplicationRunner { ...@@ -32,7 +32,7 @@ public class PermissionSyncJob implements ApplicationRunner {
@Value("${ibiz.enablePermissionValid:false}") @Value("${ibiz.enablePermissionValid:false}")
boolean enablePermissionValid; //是否开启权限校验 boolean enablePermissionValid; //是否开启权限校验
@Value("${ibiz.systemid:2C40DFCD-0DF5-47BF-91A5-C45F810B0001}") @Value("${ibiz.systemid:110B1A3E-4944-47C8-B4C4-EC15FB8982F3}")
private String systemId; private String systemId;
@Override @Override
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册