@@ -267,6 +272,7 @@ export default {
"turns": [-10, -11, -12, -13],
"userids": [],
"usertype": 'add',
+ "userlimit": 0,
},
{
"id": -11,
@@ -275,6 +281,7 @@ export default {
"turns": [-10, -11, -12, -13],
"userids": [],
"usertype": 'add',
+ "userlimit": 0,
},
{
"id": -12,
@@ -283,6 +290,7 @@ export default {
"turns": [-10, -11, -12, -13],
"userids": [],
"usertype": 'add',
+ "userlimit": 0,
},
{
"id": -13,
@@ -291,6 +299,7 @@ export default {
"turns": [-10, -11, -12, -13],
"userids": [],
"usertype": 'add',
+ "userlimit": 0,
}
]
})
@@ -343,6 +352,7 @@ export default {
this.$set(this.userData, 'name', item.name);
this.$set(this.userData, 'userids', item.userids);
this.$set(this.userData, 'usertype', item.usertype);
+ this.$set(this.userData, 'userlimit', item.userlimit);
this.userShow = true;
break;
@@ -363,6 +373,7 @@ export default {
if (item) {
this.$set(item, 'userids', this.userData.userids)
this.$set(item, 'usertype', this.userData.usertype)
+ this.$set(item, 'userlimit', this.userData.userlimit)
}
})
},
@@ -409,6 +420,7 @@ export default {
turns,
userids: [],
usertype: 'add',
+ userlimit: 0,
})
data.project_flow_item.some(item => {
item.turns.push(id)
diff --git a/resources/assets/sass/pages/common.scss b/resources/assets/sass/pages/common.scss
index 9c16a587..256c40c6 100755
--- a/resources/assets/sass/pages/common.scss
+++ b/resources/assets/sass/pages/common.scss
@@ -2,6 +2,8 @@ body {
overflow: hidden;
.form-tip {
color: #999999;
+ line-height: 22px;
+ padding: 5px 0;
}
.ivu-input,
.ivu-select-selection {
diff --git a/resources/assets/sass/pages/components/project-workflow.scss b/resources/assets/sass/pages/components/project-workflow.scss
index 041ac17b..c7b835e5 100644
--- a/resources/assets/sass/pages/components/project-workflow.scss
+++ b/resources/assets/sass/pages/components/project-workflow.scss
@@ -106,7 +106,7 @@
.taskflow-config {
display: flex;
- max-height: 580px;
+ max-height: 800px;
.taskflow-config-table {
display: flex;