eoss-ui 0.7.17 → 0.7.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/eoss-ui.common.js +262 -175
- package/lib/flow.js +102 -44
- package/lib/handler.js +58 -50
- package/lib/icon.js +7 -4
- package/lib/index.js +1 -1
- package/lib/main.js +74 -56
- package/lib/theme-chalk/handler.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/main.css +1 -1
- package/lib/theme-chalk/simplicity.css +1 -1
- package/package.json +1 -1
- package/packages/flow/src/component/Circulate.vue +12 -9
- package/packages/flow/src/component/FreeCirculation.vue +10 -5
- package/packages/flow/src/component/taskUnionExamine.vue +35 -29
- package/packages/flow/src/freeStartFlow.vue +5 -3
- package/packages/flow/src/main.vue +35 -17
- package/packages/handler/src/main.vue +31 -27
- package/packages/icon/src/main.vue +5 -2
- package/packages/main/src/default/index.vue +2 -6
- package/packages/main/src/main.vue +2 -1
- package/packages/main/src/simplicity/handler.vue +25 -21
- package/packages/theme-chalk/lib/handler.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/main.css +1 -1
- package/packages/theme-chalk/lib/simplicity.css +1 -1
- package/packages/theme-chalk/src/handler.scss +5 -0
- package/packages/theme-chalk/src/simplicity.scss +5 -0
- package/src/index.js +1 -1
|
@@ -38,29 +38,33 @@
|
|
|
38
38
|
</span>
|
|
39
39
|
人在线
|
|
40
40
|
</div>
|
|
41
|
-
<el-
|
|
42
|
-
class="es-simplicity-handler-item"
|
|
43
|
-
v-else-if="item.type === 'notice' || item.type === 'messsage'"
|
|
44
|
-
:key="item.type"
|
|
45
|
-
:value="noticeNum"
|
|
46
|
-
:max="99"
|
|
47
|
-
:hidden="noticeNum < 1"
|
|
48
|
-
>
|
|
49
|
-
<div
|
|
50
|
-
class="es-simplicity-handler-icon"
|
|
51
|
-
:title="item.title"
|
|
52
|
-
:class="item.icon"
|
|
53
|
-
@click="handleClick(item)"
|
|
54
|
-
></div>
|
|
55
|
-
</el-badge>
|
|
56
|
-
<div
|
|
41
|
+
<el-tooltip
|
|
57
42
|
v-else
|
|
58
|
-
class="es-simplicity-handler-item es-simplicity-handler-icon"
|
|
59
43
|
:key="item.type"
|
|
60
|
-
|
|
61
|
-
:
|
|
62
|
-
|
|
63
|
-
|
|
44
|
+
effect="dark"
|
|
45
|
+
:content="item.title"
|
|
46
|
+
placement="bottom"
|
|
47
|
+
>
|
|
48
|
+
<el-badge
|
|
49
|
+
class="es-simplicity-handler-item"
|
|
50
|
+
v-if="item.type === 'notice' || item.type === 'messsage'"
|
|
51
|
+
:value="noticeNum"
|
|
52
|
+
:max="99"
|
|
53
|
+
:hidden="noticeNum < 1"
|
|
54
|
+
>
|
|
55
|
+
<es-icon
|
|
56
|
+
class="es-simplicity-handler-icon"
|
|
57
|
+
@click.stop="handleClick(item)"
|
|
58
|
+
:contents="item.icon"
|
|
59
|
+
></es-icon>
|
|
60
|
+
</el-badge>
|
|
61
|
+
<es-icon
|
|
62
|
+
v-else
|
|
63
|
+
class="es-simplicity-handler-item es-simplicity-handler-icon"
|
|
64
|
+
@click.stop="handleClick(item)"
|
|
65
|
+
:contents="item.icon"
|
|
66
|
+
></es-icon>
|
|
67
|
+
</el-tooltip>
|
|
64
68
|
</template>
|
|
65
69
|
</div>
|
|
66
70
|
</template>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@charset "UTF-8";.es-handler{padding:5px 16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.es-handler .es-handler-item{position:relative}.es-handler .es-handler-item+.es-handler-item{margin-left:12px}.es-handler .es-handler-item .el-badge__content.is-fixed{top:4px;right:14px}.es-handler .es-handler-item:first-child .es-handler-date,.es-handler .es-handler-item:first-child .es-handler-user{padding-right:12px}.es-handler .es-handler-item:first-child .es-handler-date::after,.es-handler .es-handler-item:first-child .es-handler-user::after{content:'';height:100%;display:block;position:absolute;top:0;right:0;border-right:1px solid #d9d9d9}.es-handler .es-handler-icon{font-size:24px;cursor:pointer;padding:4px;border-radius:4px}.es-handler .es-handler-icon:hover{background-color:#69c0ff}.es-handler .es-handler-contact{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:20px;margin-right:12px;-moz-text-align-last:justify;text-align-last:justify}.es-handler .es-handler-contact .es-contact-label{width:56px;margin-right:12px}.es-handler .es-handler-date{font-size:14px;padding-right:8px}.es-handler .es-handler-date .es-online-num{font-weight:700;padding:0 7px;color:#ffea00}.es-handler .es-handler-user{height:48px}.es-handler .es-handler-user .es-user-img{width:48px;height:48px;float:left}.es-handler .es-handler-user .es-user-info{margin-left:60px}.es-handler .es-handler-user .es-user-job{max-width:140px}.es-popper-sub-system{background-color:#1890ff!important;color:#ffff;min-width:unset}.es-popper-sub-system.is-width{width:346px}.es-popper-sub-system .popper__arrow::after{border-bottom-color:#096dd9!important}.es-sub-system{margin:0}.es-sub-system::after{content:'';display:block;clear:both}.es-sub-system .es-sub-system-item{width:80px;height:80px;padding:10px 4px;float:left;text-align:center;cursor:pointer}.es-sub-system .es-sub-system-item .es-sub-system-icon{font-size:32px;display:block;clear:both;margin-bottom:8px}.es-sub-system .es-sub-system-item .es-sub-system-title{width:100%;height:17px;font-size:13px;line-height:17px;display:block;overflow:hidden}.es-sub-system .es-sub-system-item:hover{background-color:#69c0ff;color:#fff}.es-sub-system .es-sub-system-item.es-disabled{cursor:not-allowed;color:rgba(255,255,255,.3);background-color:transparent}.el-dropdown-menu__item:focus,.el-dropdown-menu__item:not(.is-disabled):hover{color:#1890ff}.el-dropdown-menu__item.es-job-active{background-color:#1890ff;color:#fff}.es-color-picker{padding-left:24px}.es-color-picker .el-color-picker-tip{font-size:12px;color:#f21f06;margin-top:8px}
|
|
1
|
+
@charset "UTF-8";.es-handler{padding:5px 16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.es-handler .es-handler-item{position:relative}.es-handler .es-handler-item+.es-handler-item{margin-left:12px}.es-handler .es-handler-item .el-badge__content.is-fixed{top:4px;right:14px}.es-handler .es-handler-item:first-child .es-handler-date,.es-handler .es-handler-item:first-child .es-handler-user{padding-right:12px}.es-handler .es-handler-item:first-child .es-handler-date::after,.es-handler .es-handler-item:first-child .es-handler-user::after{content:'';height:100%;display:block;position:absolute;top:0;right:0;border-right:1px solid #d9d9d9}.es-handler .es-handler-icon{font-size:24px;cursor:pointer;padding:4px;border-radius:4px}.es-handler .es-handler-icon.es-icon_image{width:24px;height:24px;padding:0}.es-handler .es-handler-icon:hover{background-color:#69c0ff}.es-handler .es-handler-contact{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:20px;margin-right:12px;-moz-text-align-last:justify;text-align-last:justify}.es-handler .es-handler-contact .es-contact-label{width:56px;margin-right:12px}.es-handler .es-handler-date{font-size:14px;padding-right:8px}.es-handler .es-handler-date .es-online-num{font-weight:700;padding:0 7px;color:#ffea00}.es-handler .es-handler-user{height:48px}.es-handler .es-handler-user .es-user-img{width:48px;height:48px;float:left}.es-handler .es-handler-user .es-user-info{margin-left:60px}.es-handler .es-handler-user .es-user-job{max-width:140px}.es-popper-sub-system{background-color:#1890ff!important;color:#ffff;min-width:unset}.es-popper-sub-system.is-width{width:346px}.es-popper-sub-system .popper__arrow::after{border-bottom-color:#096dd9!important}.es-sub-system{margin:0}.es-sub-system::after{content:'';display:block;clear:both}.es-sub-system .es-sub-system-item{width:80px;height:80px;padding:10px 4px;float:left;text-align:center;cursor:pointer}.es-sub-system .es-sub-system-item .es-sub-system-icon{font-size:32px;display:block;clear:both;margin-bottom:8px}.es-sub-system .es-sub-system-item .es-sub-system-title{width:100%;height:17px;font-size:13px;line-height:17px;display:block;overflow:hidden}.es-sub-system .es-sub-system-item:hover{background-color:#69c0ff;color:#fff}.es-sub-system .es-sub-system-item.es-disabled{cursor:not-allowed;color:rgba(255,255,255,.3);background-color:transparent}.el-dropdown-menu__item:focus,.el-dropdown-menu__item:not(.is-disabled):hover{color:#1890ff}.el-dropdown-menu__item.es-job-active{background-color:#1890ff;color:#fff}.es-color-picker{padding-left:24px}.es-color-picker .el-color-picker-tip{font-size:12px;color:#f21f06;margin-top:8px}
|