cloud-web-corejs 1.0.280 → 1.1.0-dev.10

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.
Files changed (193) hide show
  1. package/package.json +6 -2
  2. package/src/components/VabUpload/image-viewer.vue +442 -442
  3. package/src/components/VabUpload/index.vue +45 -3
  4. package/src/components/VabUpload/mixins.js +174 -34
  5. package/src/components/VabUpload/previewGroup.js +128 -0
  6. package/src/components/VabUpload/view.vue +248 -209
  7. package/src/components/baseTabs/mixins.js +181 -181
  8. package/src/components/bizTab/BizBillActions.vue +129 -0
  9. package/src/components/bizTab/BizTabListPage.vue +391 -0
  10. package/src/components/bizTab/README.md +378 -0
  11. package/src/components/bizTab/billTableUtil.js +48 -0
  12. package/src/components/bizTab/billValidators.js +136 -0
  13. package/src/components/bizTab/bizBillDetailMixin.js +705 -0
  14. package/src/components/bizTab/index.js +24 -0
  15. package/src/components/excelExport/exportFieldDialog.vue +23 -12
  16. package/src/components/excelExport/exportItemConfigUtil.js +30 -0
  17. package/src/components/excelExport/mixins.js +3 -3
  18. package/src/components/excelImport/index.vue +156 -156
  19. package/src/components/jsonImport/index.vue +1 -1
  20. package/src/components/langImport/index.vue +1 -1
  21. package/src/components/mobile/statusTag/mixins.js +1 -61
  22. package/src/components/mobile/wf/addTaskUserdialog.vue +23 -3
  23. package/src/components/mobile/wf/content.vue +1705 -1556
  24. package/src/components/mobile/wf/deleteTaskUserDialog.vue +22 -3
  25. package/src/components/mobile/wf/mixins/wfModifyDialogMixin.js +8 -6
  26. package/src/components/mobile/wf/selectUserDialog.vue +122 -0
  27. package/src/components/mobile/wf/setCandidateDialog.vue +25 -4
  28. package/src/components/mobile/wf/urgingDialog.vue +26 -3
  29. package/src/components/mobile/wf/wfModifyDialog.vue +4 -0
  30. package/src/components/obsUpload/index.vue +1 -1
  31. package/src/components/table/config.js +78 -78
  32. package/src/components/table/index.js +1276 -1276
  33. package/src/components/table/plugins/cell-area/index.js +1055 -0
  34. package/src/components/table/plugins/cell-area/index.scss +77 -0
  35. package/src/components/table/plugins/cell-area/util.js +224 -0
  36. package/src/components/table/tableForm.vue +330 -330
  37. package/src/components/table/tableFormMixin.js +318 -318
  38. package/src/components/table/vxeFilter/index.js +163 -163
  39. package/src/components/table/vxeFilter/mixin.js +316 -316
  40. package/src/components/wf/content.vue +1188 -1188
  41. package/src/components/wf/wf.js +40 -20
  42. package/src/components/wf/wfActionDropdown.vue +1 -1
  43. package/src/components/wf/wfActionItems.js +1 -1
  44. package/src/components/xform/docs/2026-08 xform H5 P0 /345/256/236/347/216/260/350/247/204/346/240/274.md" +528 -0
  45. package/src/components/xform/docs/2026-08 xform H5 P1 /345/256/236/347/216/260/350/247/204/346/240/274.md" +412 -0
  46. package/src/components/xform/docs/2026-08 xform H5 P2 /345/256/236/347/216/260/350/247/204/346/240/274.md" +287 -0
  47. package/src/components/xform/docs/2026-08 xform /347/247/273/345/212/250/347/253/257/345/270/203/345/261/200/345/257/271/351/275/220 bill_setting /346/226/271/346/241/210.md" +400 -0
  48. package/src/components/xform/form-designer/designer.js +51 -52
  49. package/src/components/xform/form-designer/form-widget/container-widget/data-table-widget.vue +269 -269
  50. package/src/components/xform/form-designer/form-widget/container-widget/detail-h5-widget.vue +18 -2
  51. package/src/components/xform/form-designer/form-widget/container-widget/detail-temp-widget.vue +132 -0
  52. package/src/components/xform/form-designer/form-widget/container-widget/detail-widget.vue +250 -250
  53. package/src/components/xform/form-designer/form-widget/container-widget/h5-card-pane-widget.vue +23 -2
  54. package/src/components/xform/form-designer/form-widget/container-widget/h5-card-widget.vue +30 -1
  55. package/src/components/xform/form-designer/form-widget/dialog/fileReferenceDialog.vue +319 -320
  56. package/src/components/xform/form-designer/form-widget/dialog/formDialog.vue +365 -365
  57. package/src/components/xform/form-designer/form-widget/dialog/importDialog.vue +185 -185
  58. package/src/components/xform/form-designer/form-widget/dialog/searchFormDialog.vue +554 -555
  59. package/src/components/xform/form-designer/form-widget/dialog/vabSearchDialog.vue +409 -409
  60. package/src/components/xform/form-designer/form-widget/field-widget/a-link-widget.vue +150 -132
  61. package/src/components/xform/form-designer/form-widget/field-widget/date-range-widget.vue +114 -114
  62. package/src/components/xform/form-designer/form-widget/field-widget/date-widget.vue +154 -154
  63. package/src/components/xform/form-designer/form-widget/field-widget/form-item-wrapper.vue +47 -1
  64. package/src/components/xform/form-designer/form-widget/field-widget/mixins/date-limit-mixin.js +178 -178
  65. package/src/components/xform/form-designer/form-widget/field-widget/mixins/time-limit-mixin.js +77 -77
  66. package/src/components/xform/form-designer/form-widget/field-widget/select-export-item-button-widget.vue +6 -0
  67. package/src/components/xform/form-designer/form-widget/field-widget/select-widget.vue +139 -139
  68. package/src/components/xform/form-designer/form-widget/field-widget/singleUpload-widget.vue +1 -1
  69. package/src/components/xform/form-designer/form-widget/field-widget/time-range-widget.vue +106 -106
  70. package/src/components/xform/form-designer/form-widget/field-widget/time-widget.vue +134 -134
  71. package/src/components/xform/form-designer/form-widget/field-widget/vabUpload-widget.vue +3 -2
  72. package/src/components/xform/form-designer/indexMixin.js +35 -1
  73. package/src/components/xform/form-designer/setting-panel/form-setting.vue +39 -39
  74. package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/data-table-editor.vue +10 -10
  75. package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/exportItemColumns-dialog.vue +438 -432
  76. package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/table-column-dialog.vue +2103 -2103
  77. package/src/components/xform/form-designer/setting-panel/property-editor/container-detail/detail-temp-edito.vue +90 -0
  78. package/src/components/xform/form-designer/setting-panel/property-editor/container-grid/gutter-editor.vue +82 -82
  79. package/src/components/xform/form-designer/setting-panel/property-editor/container-list-h5/list-h5-editor.vue +833 -846
  80. package/src/components/xform/form-designer/setting-panel/property-editor/container-table/table-dynamicField-editor.vue +8 -8
  81. package/src/components/xform/form-designer/setting-panel/property-editor/dropdownFlag-editor.vue +137 -137
  82. package/src/components/xform/form-designer/setting-panel/property-editor/field-button/search-dialog-event-editor.vue +237 -237
  83. package/src/components/xform/form-designer/setting-panel/property-editor/field-date/date-defaultValue-editor.vue +43 -43
  84. package/src/components/xform/form-designer/setting-panel/property-editor/field-date-range/date-range-defaultValue-editor.vue +43 -43
  85. package/src/components/xform/form-designer/setting-panel/property-editor/field-import-button/import2-button-editor.vue +96 -96
  86. package/src/components/xform/form-designer/setting-panel/property-editor/field-table-export-button/select-export-item-button-editor.vue +51 -0
  87. package/src/components/xform/form-designer/setting-panel/property-editor/field-time/time-defaultValue-editor.vue +42 -42
  88. package/src/components/xform/form-designer/setting-panel/property-editor/field-time-range/time-range-defaultValue-editor.vue +43 -43
  89. package/src/components/xform/form-designer/setting-panel/property-editor/formScriptEnabled-editor.vue +158 -158
  90. package/src/components/xform/form-designer/setting-panel/property-editor/h5Span-editor.vue +51 -0
  91. package/src/components/xform/form-designer/setting-panel/property-editor/itemStyle-editor.vue +39 -0
  92. package/src/components/xform/form-designer/setting-panel/property-editor/name-editor.vue +188 -188
  93. package/src/components/xform/form-designer/setting-panel/property-editor/styleTempClass-editor.vue +51 -0
  94. package/src/components/xform/form-designer/setting-panel/property-editor/textFlag-editor.vue +347 -347
  95. package/src/components/xform/form-designer/setting-panel/propertyRegister.js +12 -0
  96. package/src/components/xform/form-designer/toolbar-panel/index.vue +884 -874
  97. package/src/components/xform/form-designer/toolbar-panel/indexMixin.js +14 -0
  98. package/src/components/xform/form-designer/widget-panel/index.vue +11 -7
  99. package/src/components/xform/form-designer/widget-panel/indexMixin.js +30 -6
  100. package/src/components/xform/form-designer/widget-panel/widgetsConfig.js +112 -4
  101. package/src/components/xform/form-render/container-item/data-table-mixin.js +151 -93
  102. package/src/components/xform/form-render/container-item/detail-h5-item.vue +204 -34
  103. package/src/components/xform/form-render/container-item/detail-temp-item.vue +110 -0
  104. package/src/components/xform/form-render/container-item/h5-card-pane-item.vue +160 -140
  105. package/src/components/xform/form-render/container-item/list-h5-item.vue +1913 -1699
  106. package/src/components/xform/form-render/index.vue +153 -147
  107. package/src/components/xform/form-render/indexMixin.js +35 -3
  108. package/src/components/xform/lang/en-US.js +14 -0
  109. package/src/components/xform/lang/zh-CN.js +17 -0
  110. package/src/components/xform/mixins/defaultHandle.js +707 -707
  111. package/src/components/xform/styles/h5.scss +2238 -0
  112. package/src/components/xform/utils/textMaskUtil.js +182 -179
  113. package/src/components/xform/utils/treeTableUtil.js +1292 -1265
  114. package/src/components/xform/utils/util.js +56 -11
  115. package/src/directive/append-to-body/index.js +48 -0
  116. package/src/index.js +13 -4
  117. package/src/layout/components/Sidebar/default.vue +1655 -1655
  118. package/src/layout/components/extractedCode/viewDialog.vue +7 -7
  119. package/src/router/index.js +48 -27
  120. package/src/router/modules/customer.js +71 -14
  121. package/src/store/modules/permission.js +17 -18
  122. package/src/utils/assetUrl.js +19 -0
  123. package/src/utils/pdfUtil.js +429 -429
  124. package/src/utils/resolveViewComponent.js +142 -16
  125. package/src/utils/vab.js +1283 -1279
  126. package/src/views/bd/project/branch/bd_branch/edit.vue +145 -0
  127. package/src/views/bd/project/branch/bd_branch/list.vue +72 -0
  128. package/src/views/bd/project/branch/bd_branch/menuKindDialog.vue +106 -0
  129. package/src/views/bd/project/branch/bd_branch/mixins/edit.js +189 -0
  130. package/src/views/bd/project/branch/bd_branch/mixins/list.js +124 -0
  131. package/src/views/bd/project/branch/bd_branch/mixins/menuKindDialog.js +85 -0
  132. package/src/views/bd/project/branch/form_script/list.vue +31 -0
  133. package/src/views/bd/project/branch/form_template/list.vue +30 -0
  134. package/src/views/bd/project/branch/menu_kind/list.vue +31 -0
  135. package/src/views/bd/project/common/form_script/list.vue +16 -0
  136. package/src/views/bd/project/common/form_template/list.vue +15 -0
  137. package/src/views/bd/project/common/menu_kind/list.vue +15 -0
  138. package/src/views/bd/project/core/branchContext.js +100 -0
  139. package/src/views/bd/project/core/branchPage.js +78 -0
  140. package/src/views/bd/project/core/branchPageWrap.vue +225 -0
  141. package/src/views/bd/project/core/branchScope.js +44 -0
  142. package/src/views/bd/project/core/branchSearchPage.js +285 -0
  143. package/src/views/bd/project/core/branchSelect.vue +85 -0
  144. package/src/views/bd/project/core/branchTreeBar.vue +81 -0
  145. package/src/views/bd/project/core/httpBranchPatch.js +58 -0
  146. package/src/views/bd/project/datatable/menu_kind/list.vue +15 -0
  147. package/src/views/bd/project/datatable/table_model/list.vue +15 -0
  148. package/src/views/bd/setting/bd_company_env/dialog.vue +174 -174
  149. package/src/views/bd/setting/form_template/edit.vue +378 -356
  150. package/src/views/bd/setting/form_template/formDesignerDialog.vue +6 -0
  151. package/src/views/bd/setting/form_template/formTemplateType.js +43 -0
  152. package/src/views/bd/setting/form_template/list.vue +304 -303
  153. package/src/views/bd/setting/form_template/mixins/edit.js +344 -280
  154. package/src/views/bd/setting/form_template/mixins/list.js +748 -721
  155. package/src/views/bd/setting/table_model/edit.vue +1066 -1066
  156. package/src/views/bd/setting/table_model/mixins/edit.js +1455 -1455
  157. package/src/views/bd/setting/table_model/mixins/zdDialog.js +148 -148
  158. package/src/views/demo/bizTab/bill/billConfig.js +41 -0
  159. package/src/views/demo/bizTab/bill/detail.vue +436 -0
  160. package/src/views/demo/bizTab/bill/list.vue +288 -0
  161. package/src/views/demo/bizTab/bill/productDialog.vue +176 -0
  162. package/src/views/demo/bizTab/simple/billApi.js +123 -0
  163. package/src/views/demo/bizTab/simple/detail.vue +407 -0
  164. package/src/views/demo/bizTab/simple/list.vue +217 -0
  165. package/src/views/demo/bizTab/standalone/index.vue +121 -0
  166. package/src/views/demo/bizTab/wf/billConfig.js +44 -0
  167. package/src/views/demo/bizTab/wf/detail.vue +661 -0
  168. package/src/views/demo/bizTab/wf/list.vue +242 -0
  169. package/src/views/support/form-dialog-demo/demoPickerDialog.vue +72 -0
  170. package/src/views/support/form-dialog-demo/index.vue +537 -0
  171. package/src/views/user/file_view_ins/list.vue +970 -970
  172. package/src/views/user/form/vform/designer.vue +823 -821
  173. package/src/views/user/home/default.vue +1117 -1117
  174. package/src/views/user/home/default2.vue +1 -1
  175. package/src/views/user/home/index.vue +103 -101
  176. package/src/views/user/home/wjl/content.vue +1569 -0
  177. package/src/views/user/notify_message/dialog.vue +139 -137
  178. package/src/views/user/outLink/cc_form_view.vue +188 -0
  179. package/src/views/user/outLink/form_view.vue +202 -202
  180. package/src/views/user/outLink/index.vue +110 -110
  181. package/src/views/user/outLink/view.vue +3 -3
  182. package/src/views/user/role/edit.vue +632 -632
  183. package/src/views/user/role/list.vue +260 -260
  184. package/src/views/user/wf/iframe/index.vue +51 -51
  185. package/src/views/user/wf/iframe/index2.vue +64 -64
  186. package/src/views/user/wf/wf_manage/list.vue +1112 -1116
  187. package/src/views/user/wf/wf_manage/list2.vue +871 -875
  188. package/src/views/user/wf/wf_manage/wfContentDialog.vue +134 -131
  189. package/src/views/user/wf/wf_obj_config/importItemDialog.vue +1 -1
  190. package/src/components/xform/form-designer/form-widget/field-widget/dropdown-menu-widget.vue +0 -106
  191. package/src/components/xform/form-designer/form-widget/field-widget/tableexportbuttonwidget.vue +0 -99
  192. package/src/components/xform/form-render/container-item/list-h5-item2.vue +0 -1340
  193. package/src/utils/wf.js +0 -766
@@ -1,1117 +1,1117 @@
1
- <template>
2
- <div class="index-home">
3
- <el-row>
4
- <el-col :span="8">
5
- <div class="i-user-info">
6
- <img class="img" v-if="headPhotoUrl" :src="headPhotoUrl" />
7
- <p class="name">{{ $t1("您好") }},{{ userInfo.nickName }}</p>
8
- <p>{{ companyInfo.companyName }}</p>
9
- </div>
10
- <div class="notice-box">
11
- <div class="txt" @click="openMoreNotifyMessage()">
12
- <i class="iconfont icon-xiaoxitongzhi"></i>
13
- <span
14
- v-if="unreadMessageNum > 0"
15
- v-html="
16
- $t1('您 有{number}条 未读消息,请及时查看。', {
17
- number: `<b>${
18
- unreadMessageNum > 99 ? '99+' : unreadMessageNum
19
- }</b>`,
20
- })
21
- "
22
- >
23
- </span>
24
- <span v-else-if="unreadMessageNum == 0">
25
- {{ $t1("您 暂无 未读消息。") }}
26
- </span>
27
- </div>
28
- <el-tooltip
29
- class="item"
30
- effect="dark"
31
- :content="$t1('刷新')"
32
- placement="top"
33
- >
34
- <el-button type="text" @click="getUnreadMessageNum(true)"
35
- ><i class="el-icon-refresh"></i
36
- ></el-button>
37
- </el-tooltip>
38
- <el-tooltip
39
- class="item"
40
- effect="dark"
41
- :content="$t1('查看更多')"
42
- placement="top"
43
- >
44
- <el-button
45
- type="text"
46
- @click="openMoreNotifyMessage()"
47
- class="more"
48
- >
49
- <i class="el-icon-news"></i>
50
- </el-button>
51
- </el-tooltip>
52
- </div>
53
- <el-card class="box-card">
54
- <div slot="header" class="clearfix">
55
- <span style="float: left">
56
- <i class="el-icon-chat-line-round ico"></i>
57
- {{ $t1("公告") }}
58
- </span>
59
- <el-button type="text" @click="openSystemNoticeDialog()"
60
- ><span class="more">MORE+</span></el-button
61
- >
62
- </div>
63
- <div class="home-notice-list">
64
- <div
65
- v-for="(systemNotice, index) in systemNotices"
66
- :key="index"
67
- class="item"
68
- @click="openSystemNoticeDialog(systemNotice)"
69
- :title="systemNotice.title"
70
- >
71
- {{ systemNotice.title }}
72
- <span class="time">{{
73
- systemNotice.modifyDate.substring(0, 10)
74
- }}</span>
75
- </div>
76
- </div>
77
- </el-card>
78
- </el-col>
79
- <el-col :span="homeConfig.toDoSpan || 16" style="padding-left: 6px">
80
- <el-card class="box-card">
81
- <div slot="header" class="clearfix">
82
- <span style="float: left">
83
- <i class="el-icon-chat-line-round ico"></i>
84
- {{ $t1("待办事项") }}
85
- </span>
86
- <el-tooltip
87
- class="item"
88
- effect="dark"
89
- :content="$t1('刷新')"
90
- placement="top"
91
- >
92
- <el-button
93
- type="text"
94
- @click="getWfInfoList(true)"
95
- class="more"
96
- style="right: 107px"
97
- >
98
- <i class="el-icon-refresh"></i>
99
- </el-button>
100
- </el-tooltip>
101
- <el-button type="text" @click="toWorkflowManage()" class="more">
102
- <i class="el-icon-news"></i>
103
- <span>{{ $t1("查看更多+") }}</span>
104
- </el-button>
105
- </div>
106
- <div class="need-to">
107
- <vxe-grid
108
- :data="unDoWfRows"
109
- ref="table-wf"
110
- v-bind="wfOption"
111
- @resizable-change="$vxeTableUtil.onColumnWitchChange"
112
- @custom="$vxeTableUtil.customHandle"
113
- ></vxe-grid>
114
- </div>
115
- </el-card>
116
- </el-col>
117
- </el-row>
118
- <el-row>
119
- <el-col :span="24" v-show="homeConfig.showFastTrack !== false">
120
- <el-card class="box-card">
121
- <div slot="header" class="clearfix">
122
- <span style="float: left">
123
- <i class="el-icon-star-off ico"></i>
124
- {{ $t1("快捷通道") }}
125
- </span>
126
- <el-button type="text" @click="showCommMenuDialog = true"
127
- ><span class="more">MORE+</span></el-button
128
- >
129
- </div>
130
- <div class="fast-box">
131
- <div class="item" v-for="commMenu in commMenus" :key="commMenu.id">
132
- <a href="javascript:void(0);" @click="rourteTo(commMenu)">
133
- <p>
134
- <i
135
- :class="
136
- !!commMenu.menuImg ? 'iconfont ' + commMenu.menuImg : null
137
- "
138
- ></i
139
- ><span>{{ commMenu.menuName }}</span>
140
- </p>
141
- </a>
142
- </div>
143
- </div>
144
- </el-card>
145
- </el-col>
146
-
147
- <!-- <el-col :span="8">
148
- <el-card class="box-card">
149
- <div slot="header" class="clearfix">
150
- <span style="float:left">
151
- <i class="el-icon-message ico"></i>
152
- 消息通知
153
- </span>
154
- <el-button type="text" @click="openNotifyTemplateGroupDialog" class="more" style="right:100px">
155
- <i class="el-icon-receiving"></i>
156
- <span>选择分组</span>
157
- </el-button>
158
- <el-button type="text" @click="openMoreNotifyMessage()" class="more">
159
- <i class="el-icon-news"></i>
160
- <span>查看更多+</span>
161
- </el-button>
162
- </div>
163
- <div class="home-notice-list to-reed" style="height: 400px;">
164
- <div v-for="(notifyMessage,index) in notifyMessages" class="item"
165
- :class="{noread:notifyMessage.readed == 0}"
166
- :title="notifyMessage.content" @click="checkNotifyMessage(notifyMessage,index)">
167
- <div class="clearfix">
168
- <el-tag type="warning">{{
169
- notifyMessage.notifyTypeName
170
- }}
171
- </el-tag>
172
- <span class="time">{{
173
- notifyMessage.createDate
174
- }}</span>
175
- <div class="btns fr">
176
- <el-link type="primary" @click.stop="openNotifyMessageDialog(notifyMessage)"><i class="el-icon-files"></i>
177
- </el-link>
178
- </div>
179
- </div>
180
- <span class="name">{{ notifyMessage.content }}</span>
181
- </div>
182
- </div>
183
- </el-card>
184
- </el-col> -->
185
- </el-row>
186
- <slot></slot>
187
- <systemNoticeInfoDialog
188
- v-if="showSystemNoticeInfoDialog"
189
- :visiable.sync="showSystemNoticeInfoDialog"
190
- :param="csnRow"
191
- :appendToTop="true"
192
- ></systemNoticeInfoDialog>
193
-
194
- <commMenuDialog
195
- v-if="showCommMenuDialog"
196
- :visiable.sync="showCommMenuDialog"
197
- @confirm="commMenuCallBack"
198
- ></commMenuDialog>
199
- <wfContentDialog
200
- v-if="showWfDialog"
201
- :visible.sync="showWfDialog"
202
- @close="wfClose"
203
- :option.sync="wfContentOption"
204
- ></wfContentDialog>
205
-
206
- <notifyMessageDialog ref="notifyMessageDialog"></notifyMessageDialog>
207
-
208
- <notifyMessageInfoDialog
209
- v-if="showNoticeDialog"
210
- :visiable.sync="showNoticeDialog"
211
- :dataId.sync="notifyMessageInfoId"
212
- @readHanlde="notifyMessageReadHanlde"
213
- ></notifyMessageInfoDialog>
214
-
215
- <el-dialog
216
- :title="$t1('选择分组')"
217
- :append-to-body="true"
218
- :modal-append-to-body="true"
219
- :close-on-click-modal="false"
220
- v-if="showGroupDialog"
221
- :visible.sync="showGroupDialog"
222
- :modal="false"
223
- custom-class="el-dialog dialog-style list-dialog"
224
- width="355px"
225
- :destroy-on-close="true"
226
- >
227
- <div class="cont group-list">
228
- <div
229
- class="item"
230
- v-for="(notifyTemplate, index) in notifyTemplates"
231
- :key="index"
232
- @click="openMoreNotifyMessage(notifyTemplate.notifyType)"
233
- >
234
- <i class="iconfont icon-fenzu"></i>
235
- <span class="name">{{ notifyTemplate.ntName }}</span>
236
- <!-- <span class="nums">99+</span>-->
237
- </div>
238
- </div>
239
- </el-dialog>
240
- </div>
241
- </template>
242
-
243
- <script>
244
- import systemNoticeInfoDialog from "@base/views/user/system_notice/infoDialog.vue";
245
- import commMenuDialog from "@base/views/user/commMenu/index.vue";
246
- import notifyMessageDialog from "@base/views/user/notify_message/dialog.vue";
247
- import notifyMessageInfoDialog from "@base/views/user/notify_message/infoDialog";
248
-
249
- import { getToken } from "@base/utils/auth";
250
- import wfContentDialog from "@base/views/user/wf/wf_manage/wfContentDialog";
251
- import corejsConfig from "@/corejsConfig";
252
- import { getLogicParamValue } from "@base/api/user";
253
-
254
- export default {
255
- name: "home",
256
- components: {
257
- systemNoticeInfoDialog,
258
- commMenuDialog,
259
- notifyMessageDialog,
260
- notifyMessageInfoDialog,
261
- wfContentDialog,
262
- },
263
- data() {
264
- return {
265
- showNoticeDialog: false,
266
- showGroupDialog: false,
267
- notifyTemplates: [],
268
- userInfo: {},
269
- companyInfo: {},
270
- systemNotices: [],
271
- showSystemNoticeInfoDialog: false,
272
- csnRow: null,
273
- headPhotoUrl: "",
274
- dialogVisible: true,
275
- unDoWfRows: [],
276
- wfOption: {},
277
- showWfDialog: false,
278
- wfContentOption: {},
279
- showWfContent: true,
280
- wfContent: null,
281
- wfDataId: "",
282
- showCommMenuDialog: false,
283
- commMenus: [],
284
- notifyMessages: [],
285
- notifyMessageInfoIndex: null,
286
- notifyMessageInfoId: null,
287
- unreadMessageNum: 0,
288
- activating: true,
289
- wfTimer: null,
290
- homeConfig: corejsConfig.homeConfig || {},
291
- };
292
- },
293
- activated() {
294
- this.activating = true;
295
- if (this.wfTimer) {
296
- this.timerExcFun(true);
297
- }
298
- },
299
- deactivated() {
300
- this.activating = false;
301
- },
302
- beforeDestroy() {
303
- this.clearTimer();
304
- },
305
- created() {
306
- this.getUserInfo();
307
- this.initSystemNotice();
308
- this.initCommMenu();
309
- this.initNotifyMessage();
310
- this.initWfParam();
311
- this.initWfTimer();
312
- //初始化流程待办路由
313
- this.initWorkflowManageRoute();
314
- },
315
- methods: {
316
- initWorkflowManageRoute() {
317
- //初始化流程待办路由
318
- getLogicParamValue({
319
- data: { paramCode: "workflowManageRoute" },
320
- success: (res) => {
321
- let value = res?.objx;
322
- this.workflowManageRoute = value || "/basic/wf/wf_manage/list";
323
- },
324
- });
325
- },
326
- toWorkflowManage() {
327
- this.$router.push(this.workflowManageRoute);
328
- },
329
- wfClose() {
330
- this.timerExcFun(true);
331
- },
332
- initWfTimer() {
333
- this.wfTimer = setInterval(() => {
334
- this.timerExcFun(false);
335
- }, 10000);
336
- this.timerExcFun(true);
337
- },
338
- timerExcFun(isLoading) {
339
- if (!this.activating) {
340
- return;
341
- }
342
- this.getWfInfoList(isLoading);
343
- this.getUnreadMessageNum(isLoading);
344
- this.$emit("timerHandle");
345
- },
346
- clearTimer() {
347
- clearInterval(this.wfTimer);
348
- this.wfTimer = null;
349
- },
350
- getUserInfo() {
351
- this.$http({
352
- url: USER_PREFIX + "/user/currentUser",
353
- method: "post",
354
- success: (res) => {
355
- let userInfo = res.objx;
356
- this.headPhotoUrl = userInfo.headPhotoUrl
357
- ? userInfo.headPhotoUrl
358
- : require("@/resources/images" + "/default-header.png");
359
-
360
- this.userInfo = userInfo;
361
- },
362
- });
363
- this.$http({
364
- url: USER_PREFIX + "/company_info/getCurrent",
365
- method: `post`,
366
- success: (res) => {
367
- this.companyInfo = res.objx || {};
368
- },
369
- });
370
- },
371
- initSystemNotice() {
372
- this.$http({
373
- url: USER_PREFIX + "/system_notice/listPage",
374
- data: { publish: true, searchCount: false },
375
- method: "post",
376
- success: (res) => {
377
- this.systemNotices =
378
- res.objx && res.objx.records ? res.objx.records : [];
379
- },
380
- });
381
- },
382
- openSystemNoticeDialog(row) {
383
- this.csnRow = row || null;
384
- this.showSystemNoticeInfoDialog = true;
385
- },
386
- initUnDoWfInfo() {
387
- this.$http({
388
- url: AGILEBPM_PREFIX + "/wf_manage/listPage",
389
- data: { type: 0, searchCount: false },
390
- method: "post",
391
- success: (res) => {
392
- this.unDoWfRows = res.objx.records || [];
393
- },
394
- });
395
- },
396
- initWfTableList() {
397
- let that = this;
398
- let paramColumns = this.wfParamDTOs.map((item) => {
399
- return {
400
- title: this.$t1(item.paramName),
401
- field: item.paramKey,
402
- width: 150,
403
- };
404
- });
405
- var statuses = {
406
- running: this.$t1("审核中"),
407
- back: this.$t1("已驳回"),
408
- end: this.$t1("已完成"),
409
- };
410
- let tableOption = {
411
- vue: this,
412
- tableRef: "table-wf",
413
- tableName: "home-table-wf",
414
- config: {
415
- height: "auto",
416
- },
417
- columns: [
418
- { type: "checkbox", width: 48, resizable: false, fixed: "left" },
419
- {
420
- title: this.$t1("单据类型"),
421
- field: "objTypeName",
422
- width: 150,
423
- fixed: "left",
424
- },
425
- {
426
- title: this.$t1("流程主题"),
427
- field: "name",
428
- width: 150,
429
- },
430
- {
431
- title: this.$t1("启动人"),
432
- field: "starterName",
433
- width: 150,
434
- },
435
- {
436
- title: this.$t1("当前任务"),
437
- field: "taskName",
438
- width: 150,
439
- },
440
- {
441
- title: this.$t1("当前任务用户"),
442
- field: "candidateNames",
443
- width: 150,
444
- },
445
- {
446
- title: this.$t1("启动时间"),
447
- field: "createDate",
448
- width: 150,
449
- },
450
- ...paramColumns,
451
- {
452
- width: 47,
453
- fixed: "right",
454
- title: "",
455
- sortable: false,
456
- slots: {
457
- default: ({ row }) => {
458
- return [
459
- <a
460
- href="javascript:void(0);"
461
- class="a-link"
462
- onclick={() => {
463
- this.openWfDialog(row);
464
- }}
465
- >
466
- <el-tooltip
467
- enterable={false}
468
- effect="dark"
469
- content={this.$t1("查看")}
470
- placement="top"
471
- popper-class="tooltip-skin"
472
- >
473
- <i class="el-icon-edit" />
474
- </el-tooltip>
475
- </a>,
476
- ];
477
- },
478
- },
479
- },
480
- ],
481
- };
482
- this.$vxeTableUtil.initVxeTable(tableOption).then((opts) => {
483
- this.wfOption = opts;
484
- });
485
- },
486
- openWfDialog(row) {
487
- this.wfContentOption = {
488
- objId: row.objId,
489
- url: row.url,
490
- objTypeCode: row.objTypeCode,
491
- formCode: row.formCode,
492
- };
493
- this.showWfDialog = true;
494
- },
495
- commMenuCallBack(datas) {
496
- this.commMenus = datas || [];
497
- },
498
- initCommMenu() {
499
- this.$http({
500
- url: USER_PREFIX + "/comm_menu/currentList",
501
- data: { longOne: 0 },
502
- method: "POST",
503
- }).then((resultMsg) => {
504
- this.commMenus = resultMsg.objx || [];
505
- });
506
- },
507
- initNotifyMessage() {
508
- return;
509
- this.$http({
510
- url: USER_PREFIX + "/notify_message/listPage",
511
- data: { searchCount: false },
512
- method: "post",
513
- success: (res) => {
514
- this.notifyMessages =
515
- res.objx && res.objx.records ? res.objx.records : [];
516
- },
517
- });
518
- },
519
- openNotifyMessageDialog(row) {
520
- if (row.jumpContent) {
521
- this.$refs.notifyMessageDialog.open(row, () => {
522
- row.readed = 1;
523
- });
524
- }
525
- },
526
- openMoreNotifyMessage(notifyType) {
527
- let data = { notifyType: notifyType || "" };
528
- let view = {
529
- name: "notify_message:list",
530
- query: data,
531
- };
532
- this.$store.dispatch("tagsView/delCachedView", view).then(() => {
533
- this.$router.replace(view);
534
- });
535
-
536
- if (notifyType) {
537
- this.showGroupDialog = false;
538
- }
539
- },
540
- checkNotifyMessage(row, index) {
541
- this.showNoticeDialog = true;
542
- this.notifyMessageInfoIndex = index;
543
- this.notifyMessageInfoId = row.id;
544
- },
545
- notifyMessageReadHanlde() {
546
- this.notifyMessages[this.notifyMessageInfoIndex].readed = 1;
547
- },
548
- openNotifyTemplateGroupDialog() {
549
- this.$http({
550
- url: USER_PREFIX + `/notify_template/listPage`,
551
- method: `post`,
552
- data: { searchCount: false },
553
- isLoading: true,
554
- // loadingTarget: document.body,
555
- success: (res) => {
556
- this.notifyTemplates =
557
- res.objx && res.objx.records ? res.objx.records : [];
558
- this.showGroupDialog = true;
559
- },
560
- });
561
- },
562
- rourteTo(route) {
563
- if (route.type == 4) {
564
- this.jumpOutLink(route);
565
- } else if (route.type == 3) {
566
- let menuCode = route.menuCode;
567
- let path = "/user/outLink/index/" + menuCode;
568
- this.$openView({ path: path, query: { url: route.url } }, route);
569
- } else {
570
- let path = this.getPath(route);
571
- if (!path) return;
572
- this.$openView(path, route);
573
- }
574
- },
575
- getPath(route3) {
576
- let item = null;
577
- let path = null;
578
- if (route3.type == 0) {
579
- //普通菜单
580
- if (route3.url) {
581
- path = route3.route || route3.url;
582
- let str = "/report/vform/render/";
583
- if (path.indexOf(str) == 0) {
584
- } else {
585
- let pIndex = path.indexOf("?");
586
- if (pIndex > 0) {
587
- path = path.substring(0, pIndex);
588
- }
589
- }
590
- }
591
- } else if (route3.type == 5) {
592
- //动态表单
593
- let url = route3.route || route3.url;
594
- path = url;
595
- }
596
- if (path && path.startsWith("@")) {
597
- path = null;
598
- }
599
- return path;
600
- },
601
- jumpOutLink(route) {
602
- let path = route.url;
603
- if (route.type == 4 && path) {
604
- if (path.indexOf("token={token}") >= 0) {
605
- path = path.replace("token={token}", "token=" + getToken());
606
- }
607
- window.open(path);
608
- }
609
- },
610
- initWfParam() {
611
- return this.$http({
612
- url: USER_PREFIX + "/wf_param/list",
613
- method: `post`,
614
- data: {},
615
- isLoading: true,
616
- // loadingTarget: document.body,
617
- modalStrictly: true,
618
- success: (res) => {
619
- this.wfParamDTOs = res.objx || [];
620
- this.initWfTableList();
621
- },
622
- });
623
- },
624
- getWfInfoList(isLoading) {
625
- if (!this.activating) {
626
- return;
627
- }
628
- this.$http({
629
- url: USER_PREFIX + "/wf_info/listPage",
630
- data: { type: 0, size: 20, searchCount: false },
631
- method: "post",
632
- isLoading: isLoading,
633
- modal: isLoading || false,
634
- // loadingTarget: document.body,
635
- success: (res) => {
636
- this.unDoWfRows =
637
- res.objx && res.objx.records ? res.objx.records : [];
638
- },
639
- failMsg: false,
640
- errorMsg: false,
641
- fail: (res, response) => {
642
- if (response && response.status == 200) {
643
- this.$errorMsg(res);
644
- }
645
- },
646
- });
647
- },
648
- getUnreadMessageNum(isLoading) {
649
- if (!this.activating) {
650
- return;
651
- }
652
- return this.$http({
653
- url: USER_PREFIX + "/notify_message/countMessage",
654
- method: `post`,
655
- data: {},
656
- isLoading: isLoading,
657
- modal: isLoading || false,
658
- // loadingTarget: document.body,
659
- success: (res) => {
660
- this.unreadMessageNum = res.objx || 0;
661
- },
662
- failMsg: false,
663
- errorMsg: false,
664
- fail: (res, response) => {
665
- if (response && response.status == 200) {
666
- this.$errorMsg(res);
667
- }
668
- },
669
- });
670
- },
671
- wfhandleCallback(flag) {
672
- if ([1, 2, 3].includes(flag)) {
673
- this.showWfDialog = false;
674
- this.wfClose();
675
- }
676
- },
677
- },
678
- };
679
- </script>
680
- <style lang="scss" scoped>
681
- @import "~@/styles/variables.scss";
682
-
683
- body #app .index-home {
684
- margin: 3px 10px;
685
- height: calc(100vh - 38px);
686
- overflow: auto;
687
-
688
- #containt {
689
- margin: 0;
690
- background: none;
691
- height: auto;
692
- box-shadow: none;
693
- }
694
-
695
- .i-user-info {
696
- background: url(~@/resources/images/home-img.png) #2a6494 no-repeat 116%
697
- 45px;
698
- margin-bottom: 6px;
699
- background-size: 181px;
700
- padding: 14px 38px 11px 16px;
701
- border-radius: 4px 4px;
702
- color: #fff;
703
- font-size: 12px;
704
- margin-top: 3px;
705
- height: 95px;
706
- overflow: hidden;
707
-
708
- .name {
709
- opacity: 1;
710
- font-weight: 600;
711
- margin: 9px 0 14px;
712
- font-size: 14px;
713
- }
714
-
715
- .img {
716
- width: 60px;
717
- height: 60px;
718
- float: left;
719
- border-radius: 50%;
720
- border: solid 4px rgba(255, 255, 255, 0.28);
721
- margin-right: 10px;
722
- }
723
- }
724
-
725
- .home-notice-list {
726
- height: 182px;
727
- margin: 0 -12px;
728
-
729
- .item {
730
- padding: 6px 12px;
731
- font-size: 12px;
732
- cursor: pointer;
733
- overflow: hidden;
734
- text-overflow: ellipsis;
735
- white-space: nowrap;
736
-
737
- .time {
738
- color: #b9b9b9;
739
- font-size: 12px;
740
- right: 12px;
741
- }
742
-
743
- &:hover {
744
- color: $baseColor;
745
- background-color: transparentize($baseColor, 0.97);
746
-
747
- .time {
748
- color: $baseColor;
749
- }
750
- }
751
-
752
- &.no-read:before {
753
- content: "";
754
- width: 6px;
755
- height: 6px;
756
- background-color: $red;
757
- border-radius: 50%;
758
- vertical-align: middle;
759
- display: inline-block;
760
- margin-bottom: 1px;
761
- }
762
- }
763
-
764
- &.to-reed {
765
- height: 300px;
766
- overflow: auto;
767
- margin: -8px -12px;
768
-
769
- .item {
770
- white-space: initial;
771
- padding: 8px 22px 2px;
772
- position: relative;
773
-
774
- &:after {
775
- content: "";
776
- position: absolute;
777
- left: 22px;
778
- right: 22px;
779
- border-top: dashed 1px #eee;
780
- height: 1px;
781
- bottom: 0;
782
- }
783
-
784
- &.noread {
785
- &:before {
786
- content: "";
787
- width: 6px;
788
- height: 6px;
789
- background-color: $red;
790
- border-radius: 50%;
791
- margin-right: 5px;
792
- display: inline-block;
793
- position: absolute;
794
- left: 10px;
795
- top: 16px;
796
- }
797
- }
798
-
799
- .el-tag {
800
- zoom: 0.95;
801
- padding: 0 5px;
802
- height: 24px;
803
- line-height: 24px;
804
- }
805
-
806
- // .noread{
807
- // position: absolute;right:0;top:0;
808
- // span{transform: rotate(47deg);
809
- // -ms-transform: rotate(47deg);
810
- // -moz-transform: rotate(47deg);
811
- // -webkit-transform: rotate(47deg);
812
- // -o-transform: rotate(47deg);
813
- // z-index: 3;
814
- // color: #FFF;
815
- // position: absolute;
816
- // right: 1px;
817
- // top: 2px;}
818
- // &:after{
819
- // content: "\e618";
820
- // font-size: 62px;
821
- // font-family: "iconfont";
822
- // color:$red
823
- // }
824
- // }
825
- .time {
826
- position: relative;
827
- right: 0;
828
- margin-left: 12px;
829
- }
830
-
831
- .name {
832
- overflow: hidden;
833
- text-overflow: ellipsis;
834
- white-space: nowrap;
835
- margin-top: 3px;
836
- display: block;
837
- margin-bottom: 4px;
838
- }
839
-
840
- &:hover .name {
841
- color: $baseColor;
842
- }
843
-
844
- &:first-child:before {
845
- border-top: none;
846
- }
847
-
848
- .btns {
849
- text-align: right;
850
-
851
- .el-link {
852
- font-size: 12px;
853
- display: inline-block;
854
- margin-left: 14px;
855
-
856
- i {
857
- font-size: 12px;
858
- margin-right: 3px;
859
- }
860
- }
861
- }
862
- }
863
- }
864
- }
865
-
866
- .fast-box {
867
- margin: 6px 4px 4px;
868
- overflow: hidden;
869
-
870
- .item {
871
- width: 118px;
872
- text-align: center;
873
- float: left;
874
- margin-right: 14px;
875
-
876
- p {
877
- color: #2a6494;
878
- border: solid 1px #e2e2e2;
879
- margin: 3.5px 4px;
880
- width: calc(100% - 4px);
881
- border-radius: 6px;
882
- position: relative;
883
- height: 54px;
884
- line-height: 54px;
885
- text-align: left;
886
- padding-left: 14px;
887
- font-size: 12px;
888
-
889
- i {
890
- font-size: 14px;
891
- vertical-align: middle;
892
- margin-right: 2px;
893
- }
894
-
895
- span {
896
- vertical-align: middle;
897
- }
898
-
899
- &:before {
900
- content: "";
901
- width: 4px;
902
- height: 24px;
903
- display: inline-block;
904
- background: #225279b8;
905
- position: absolute;
906
- left: -1px;
907
- top: 50%;
908
- margin-top: -12px;
909
- }
910
-
911
- &:hover {
912
- background-color: $baseColor;
913
- color: #fff;
914
- border-color: $baseColor;
915
-
916
- &:before {
917
- background: #fff;
918
- }
919
- }
920
- }
921
- }
922
- }
923
-
924
- .need-to {
925
- height: 332px;
926
- }
927
-
928
- .table-box {
929
- width: 100%;
930
- font-size: 12px;
931
-
932
- th {
933
- line-height: 32px;
934
- background: #f7f7f7;
935
- font-weight: 400;
936
- color: #808080;
937
- padding: 0 6px;
938
- }
939
-
940
- td {
941
- text-align: center;
942
- line-height: 34px;
943
- color: #424242;
944
- border-bottom: solid 1px #eee;
945
- padding: 0 6px;
946
- }
947
-
948
- tr:last-child td {
949
- border-bottom: none;
950
- }
951
- }
952
- }
953
-
954
- .box-card .more {
955
- background-color: #f7f7f7;
956
- }
957
-
958
- .group-list {
959
- padding: 18px 18px 6px 32px !important;
960
- height: 400px;
961
- overflow: auto;
962
-
963
- .item {
964
- position: relative;
965
- height: 36px;
966
- border: solid 1px #eee;
967
- line-height: 34px;
968
- border-radius: 2px;
969
- padding: 0 42px 0 14px;
970
- margin-bottom: 10px;
971
- cursor: pointer;
972
-
973
- &::before {
974
- content: "";
975
- width: 8px;
976
- height: 8px;
977
- border: solid 1px #eee;
978
- border-radius: 50%;
979
- display: inline-block;
980
- position: absolute;
981
- left: -16px;
982
- top: 13px;
983
- }
984
-
985
- &.checked {
986
- &:before {
987
- content: "";
988
- background-color: $baseColor;
989
- border-color: $baseColor;
990
- }
991
-
992
- background-color: transparentize($baseColor, 0.9);
993
- color: $baseColor;
994
- border-color: $baseColor;
995
- }
996
-
997
- i {
998
- font-size: 12px;
999
- vertical-align: middle;
1000
- }
1001
-
1002
- .name {
1003
- font-size: 12px;
1004
- margin-left: 8px;
1005
- vertical-align: middle;
1006
- }
1007
-
1008
- .nums {
1009
- width: 22px;
1010
- height: 22px;
1011
- border-radius: 50%;
1012
- display: inline-block;
1013
- position: absolute;
1014
- right: 5px;
1015
- top: 6px;
1016
- color: #fff;
1017
- font-size: 12px;
1018
- background-color: $red;
1019
- line-height: 22px;
1020
- text-align: center;
1021
- }
1022
- }
1023
- }
1024
-
1025
- .notice-box {
1026
- background-color: #2a649429;
1027
- border-radius: 0 0 4px 4px;
1028
- padding: 9px 12px;
1029
- margin-bottom: 5px;
1030
- margin-top: -6px;
1031
- position: relative;
1032
- z-index: 2;
1033
- font-size: 13px;
1034
- color: #212121;
1035
- overflow: hidden;
1036
-
1037
- .txt {
1038
- line-height: 28px;
1039
- font-size: 12px;
1040
- position: relative;
1041
- display: inline-block;
1042
- cursor: pointer;
1043
-
1044
- &:before {
1045
- content: "";
1046
- background-color: $baseColor;
1047
- width: 4px;
1048
- height: 20px;
1049
- border-radius: 2px;
1050
- display: inline-block;
1051
- vertical-align: middle;
1052
- margin-right: 18px;
1053
- }
1054
-
1055
- i {
1056
- font-size: 14px;
1057
- margin-right: 12px;
1058
- vertical-align: middle;
1059
- }
1060
-
1061
- > span {
1062
- vertical-align: middle;
1063
- height: 22px;
1064
- line-height: 22px;
1065
- display: inline-block;
1066
-
1067
- b {
1068
- color: #fff;
1069
- margin: 0 4px;
1070
- font-size: 16px;
1071
- vertical-align: middle;
1072
- background: #ff5615;
1073
- border-radius: 50%;
1074
- display: inline-block;
1075
- padding: 4px;
1076
- font-weight: 200;
1077
- line-height: 1;
1078
- }
1079
- }
1080
- }
1081
-
1082
- .el-button {
1083
- position: absolute;
1084
- right: 46px;
1085
- padding: 0;
1086
- height: 22px;
1087
- line-height: 22px;
1088
- min-width: 22px;
1089
- text-align: center;
1090
- border-radius: 2px;
1091
- top: 50%;
1092
- margin-top: -11px;
1093
-
1094
- i {
1095
- font-size: 15px;
1096
- }
1097
-
1098
- &:hover {
1099
- background-color: $baseColor;
1100
- color: #fff;
1101
- }
1102
-
1103
- &.more {
1104
- right: 12px;
1105
- background: #f7f7f7;
1106
-
1107
- &:hover {
1108
- color: $baseColor;
1109
- }
1110
- }
1111
- }
1112
-
1113
- ::v-deep .el-card.is-always-shadow {
1114
- box-shadow: 0 2px 2px 0 rgb(0 0 0 / 6%);
1115
- }
1116
- }
1117
- </style>
1
+ <template>
2
+ <div class="index-home">
3
+ <el-row>
4
+ <el-col :span="8">
5
+ <div class="i-user-info">
6
+ <img class="img" v-if="headPhotoUrl" :src="headPhotoUrl" />
7
+ <p class="name">{{ $t1("您好") }},{{ userInfo.nickName }}</p>
8
+ <p>{{ companyInfo.companyName }}</p>
9
+ </div>
10
+ <div class="notice-box">
11
+ <div class="txt" @click="openMoreNotifyMessage()">
12
+ <i class="iconfont icon-xiaoxitongzhi"></i>
13
+ <span
14
+ v-if="unreadMessageNum > 0"
15
+ v-html="
16
+ $t1('您 有{number}条 未读消息,请及时查看。', {
17
+ number: `<b>${
18
+ unreadMessageNum > 99 ? '99+' : unreadMessageNum
19
+ }</b>`,
20
+ })
21
+ "
22
+ >
23
+ </span>
24
+ <span v-else-if="unreadMessageNum == 0">
25
+ {{ $t1("您 暂无 未读消息。") }}
26
+ </span>
27
+ </div>
28
+ <el-tooltip
29
+ class="item"
30
+ effect="dark"
31
+ :content="$t1('刷新')"
32
+ placement="top"
33
+ >
34
+ <el-button type="text" @click="getUnreadMessageNum(true)"
35
+ ><i class="el-icon-refresh"></i
36
+ ></el-button>
37
+ </el-tooltip>
38
+ <el-tooltip
39
+ class="item"
40
+ effect="dark"
41
+ :content="$t1('查看更多')"
42
+ placement="top"
43
+ >
44
+ <el-button
45
+ type="text"
46
+ @click="openMoreNotifyMessage()"
47
+ class="more"
48
+ >
49
+ <i class="el-icon-news"></i>
50
+ </el-button>
51
+ </el-tooltip>
52
+ </div>
53
+ <el-card class="box-card">
54
+ <div slot="header" class="clearfix">
55
+ <span style="float: left">
56
+ <i class="el-icon-chat-line-round ico"></i>
57
+ {{ $t1("公告") }}
58
+ </span>
59
+ <el-button type="text" @click="openSystemNoticeDialog()"
60
+ ><span class="more">MORE+</span></el-button
61
+ >
62
+ </div>
63
+ <div class="home-notice-list">
64
+ <div
65
+ v-for="(systemNotice, index) in systemNotices"
66
+ :key="index"
67
+ class="item"
68
+ @click="openSystemNoticeDialog(systemNotice)"
69
+ :title="systemNotice.title"
70
+ >
71
+ {{ systemNotice.title }}
72
+ <span class="time">{{
73
+ systemNotice.modifyDate.substring(0, 10)
74
+ }}</span>
75
+ </div>
76
+ </div>
77
+ </el-card>
78
+ </el-col>
79
+ <el-col :span="homeConfig.toDoSpan || 16" style="padding-left: 6px">
80
+ <el-card class="box-card">
81
+ <div slot="header" class="clearfix">
82
+ <span style="float: left">
83
+ <i class="el-icon-chat-line-round ico"></i>
84
+ {{ $t1("待办事项") }}
85
+ </span>
86
+ <el-tooltip
87
+ class="item"
88
+ effect="dark"
89
+ :content="$t1('刷新')"
90
+ placement="top"
91
+ >
92
+ <el-button
93
+ type="text"
94
+ @click="getWfInfoList(true)"
95
+ class="more"
96
+ style="right: 107px"
97
+ >
98
+ <i class="el-icon-refresh"></i>
99
+ </el-button>
100
+ </el-tooltip>
101
+ <el-button type="text" @click="toWorkflowManage()" class="more">
102
+ <i class="el-icon-news"></i>
103
+ <span>{{ $t1("查看更多+") }}</span>
104
+ </el-button>
105
+ </div>
106
+ <div class="need-to">
107
+ <vxe-grid
108
+ :data="unDoWfRows"
109
+ ref="table-wf"
110
+ v-bind="wfOption"
111
+ @resizable-change="$vxeTableUtil.onColumnWitchChange"
112
+ @custom="$vxeTableUtil.customHandle"
113
+ ></vxe-grid>
114
+ </div>
115
+ </el-card>
116
+ </el-col>
117
+ </el-row>
118
+ <el-row>
119
+ <el-col :span="24" v-show="homeConfig.showFastTrack !== false">
120
+ <el-card class="box-card">
121
+ <div slot="header" class="clearfix">
122
+ <span style="float: left">
123
+ <i class="el-icon-star-off ico"></i>
124
+ {{ $t1("快捷通道") }}
125
+ </span>
126
+ <el-button type="text" @click="showCommMenuDialog = true"
127
+ ><span class="more">MORE+</span></el-button
128
+ >
129
+ </div>
130
+ <div class="fast-box">
131
+ <div class="item" v-for="commMenu in commMenus" :key="commMenu.id">
132
+ <a href="javascript:void(0);" @click="rourteTo(commMenu)">
133
+ <p>
134
+ <i
135
+ :class="
136
+ !!commMenu.menuImg ? 'iconfont ' + commMenu.menuImg : null
137
+ "
138
+ ></i
139
+ ><span>{{ commMenu.menuName }}</span>
140
+ </p>
141
+ </a>
142
+ </div>
143
+ </div>
144
+ </el-card>
145
+ </el-col>
146
+
147
+ <!-- <el-col :span="8">
148
+ <el-card class="box-card">
149
+ <div slot="header" class="clearfix">
150
+ <span style="float:left">
151
+ <i class="el-icon-message ico"></i>
152
+ 消息通知
153
+ </span>
154
+ <el-button type="text" @click="openNotifyTemplateGroupDialog" class="more" style="right:100px">
155
+ <i class="el-icon-receiving"></i>
156
+ <span>选择分组</span>
157
+ </el-button>
158
+ <el-button type="text" @click="openMoreNotifyMessage()" class="more">
159
+ <i class="el-icon-news"></i>
160
+ <span>查看更多+</span>
161
+ </el-button>
162
+ </div>
163
+ <div class="home-notice-list to-reed" style="height: 400px;">
164
+ <div v-for="(notifyMessage,index) in notifyMessages" class="item"
165
+ :class="{noread:notifyMessage.readed == 0}"
166
+ :title="notifyMessage.content" @click="checkNotifyMessage(notifyMessage,index)">
167
+ <div class="clearfix">
168
+ <el-tag type="warning">{{
169
+ notifyMessage.notifyTypeName
170
+ }}
171
+ </el-tag>
172
+ <span class="time">{{
173
+ notifyMessage.createDate
174
+ }}</span>
175
+ <div class="btns fr">
176
+ <el-link type="primary" @click.stop="openNotifyMessageDialog(notifyMessage)"><i class="el-icon-files"></i>
177
+ </el-link>
178
+ </div>
179
+ </div>
180
+ <span class="name">{{ notifyMessage.content }}</span>
181
+ </div>
182
+ </div>
183
+ </el-card>
184
+ </el-col> -->
185
+ </el-row>
186
+ <slot></slot>
187
+ <systemNoticeInfoDialog
188
+ v-if="showSystemNoticeInfoDialog"
189
+ :visiable.sync="showSystemNoticeInfoDialog"
190
+ :param="csnRow"
191
+ :appendToTop="true"
192
+ ></systemNoticeInfoDialog>
193
+
194
+ <commMenuDialog
195
+ v-if="showCommMenuDialog"
196
+ :visiable.sync="showCommMenuDialog"
197
+ @confirm="commMenuCallBack"
198
+ ></commMenuDialog>
199
+ <wfContentDialog
200
+ v-if="showWfDialog"
201
+ :visible.sync="showWfDialog"
202
+ @close="wfClose"
203
+ :option.sync="wfContentOption"
204
+ ></wfContentDialog>
205
+
206
+ <notifyMessageDialog ref="notifyMessageDialog"></notifyMessageDialog>
207
+
208
+ <notifyMessageInfoDialog
209
+ v-if="showNoticeDialog"
210
+ :visiable.sync="showNoticeDialog"
211
+ :dataId.sync="notifyMessageInfoId"
212
+ @readHanlde="notifyMessageReadHanlde"
213
+ ></notifyMessageInfoDialog>
214
+
215
+ <el-dialog
216
+ :title="$t1('选择分组')"
217
+ :append-to-body="true"
218
+ :modal-append-to-body="true"
219
+ :close-on-click-modal="false"
220
+ v-if="showGroupDialog"
221
+ :visible.sync="showGroupDialog"
222
+ :modal="false"
223
+ custom-class="el-dialog dialog-style list-dialog"
224
+ width="355px"
225
+ :destroy-on-close="true"
226
+ >
227
+ <div class="cont group-list">
228
+ <div
229
+ class="item"
230
+ v-for="(notifyTemplate, index) in notifyTemplates"
231
+ :key="index"
232
+ @click="openMoreNotifyMessage(notifyTemplate.notifyType)"
233
+ >
234
+ <i class="iconfont icon-fenzu"></i>
235
+ <span class="name">{{ notifyTemplate.ntName }}</span>
236
+ <!-- <span class="nums">99+</span>-->
237
+ </div>
238
+ </div>
239
+ </el-dialog>
240
+ </div>
241
+ </template>
242
+
243
+ <script>
244
+ import systemNoticeInfoDialog from "@base/views/user/system_notice/infoDialog.vue";
245
+ import commMenuDialog from "@base/views/user/commMenu/index.vue";
246
+ import notifyMessageDialog from "@base/views/user/notify_message/dialog.vue";
247
+ import notifyMessageInfoDialog from "@base/views/user/notify_message/infoDialog";
248
+
249
+ import { getToken } from "@base/utils/auth";
250
+ import wfContentDialog from "@base/views/user/wf/wf_manage/wfContentDialog";
251
+ import corejsConfig from "@/corejsConfig";
252
+ import { getLogicParamValue } from "@base/api/user";
253
+
254
+ export default {
255
+ name: "home",
256
+ components: {
257
+ systemNoticeInfoDialog,
258
+ commMenuDialog,
259
+ notifyMessageDialog,
260
+ notifyMessageInfoDialog,
261
+ wfContentDialog,
262
+ },
263
+ data() {
264
+ return {
265
+ showNoticeDialog: false,
266
+ showGroupDialog: false,
267
+ notifyTemplates: [],
268
+ userInfo: {},
269
+ companyInfo: {},
270
+ systemNotices: [],
271
+ showSystemNoticeInfoDialog: false,
272
+ csnRow: null,
273
+ headPhotoUrl: "",
274
+ dialogVisible: true,
275
+ unDoWfRows: [],
276
+ wfOption: {},
277
+ showWfDialog: false,
278
+ wfContentOption: {},
279
+ showWfContent: true,
280
+ wfContent: null,
281
+ wfDataId: "",
282
+ showCommMenuDialog: false,
283
+ commMenus: [],
284
+ notifyMessages: [],
285
+ notifyMessageInfoIndex: null,
286
+ notifyMessageInfoId: null,
287
+ unreadMessageNum: 0,
288
+ activating: true,
289
+ wfTimer: null,
290
+ homeConfig: corejsConfig.homeConfig || {},
291
+ };
292
+ },
293
+ activated() {
294
+ this.activating = true;
295
+ if (this.wfTimer) {
296
+ this.timerExcFun(true);
297
+ }
298
+ },
299
+ deactivated() {
300
+ this.activating = false;
301
+ },
302
+ beforeDestroy() {
303
+ this.clearTimer();
304
+ },
305
+ created() {
306
+ this.getUserInfo();
307
+ this.initSystemNotice();
308
+ this.initCommMenu();
309
+ this.initNotifyMessage();
310
+ this.initWfParam();
311
+ this.initWfTimer();
312
+ //初始化流程待办路由
313
+ this.initWorkflowManageRoute();
314
+ },
315
+ methods: {
316
+ initWorkflowManageRoute() {
317
+ //初始化流程待办路由
318
+ getLogicParamValue({
319
+ data: { paramCode: "workflowManageRoute" },
320
+ success: (res) => {
321
+ let value = res?.objx;
322
+ this.workflowManageRoute = value || "/basic/wf/wf_manage/list";
323
+ },
324
+ });
325
+ },
326
+ toWorkflowManage() {
327
+ this.$router.push(this.workflowManageRoute);
328
+ },
329
+ wfClose() {
330
+ this.timerExcFun(true);
331
+ },
332
+ initWfTimer() {
333
+ this.wfTimer = setInterval(() => {
334
+ this.timerExcFun(false);
335
+ }, 10000);
336
+ this.timerExcFun(true);
337
+ },
338
+ timerExcFun(isLoading) {
339
+ if (!this.activating) {
340
+ return;
341
+ }
342
+ this.getWfInfoList(isLoading);
343
+ this.getUnreadMessageNum(isLoading);
344
+ this.$emit("timerHandle");
345
+ },
346
+ clearTimer() {
347
+ clearInterval(this.wfTimer);
348
+ this.wfTimer = null;
349
+ },
350
+ getUserInfo() {
351
+ this.$http({
352
+ url: USER_PREFIX + "/user/currentUser",
353
+ method: "post",
354
+ success: (res) => {
355
+ let userInfo = res.objx;
356
+ this.headPhotoUrl = userInfo.headPhotoUrl
357
+ ? userInfo.headPhotoUrl
358
+ : (require("@/resources/images/default-header.png").default || require("@/resources/images/default-header.png"));
359
+
360
+ this.userInfo = userInfo;
361
+ },
362
+ });
363
+ this.$http({
364
+ url: USER_PREFIX + "/company_info/getCurrent",
365
+ method: `post`,
366
+ success: (res) => {
367
+ this.companyInfo = res.objx || {};
368
+ },
369
+ });
370
+ },
371
+ initSystemNotice() {
372
+ this.$http({
373
+ url: USER_PREFIX + "/system_notice/listPage",
374
+ data: { publish: true, searchCount: false },
375
+ method: "post",
376
+ success: (res) => {
377
+ this.systemNotices =
378
+ res.objx && res.objx.records ? res.objx.records : [];
379
+ },
380
+ });
381
+ },
382
+ openSystemNoticeDialog(row) {
383
+ this.csnRow = row || null;
384
+ this.showSystemNoticeInfoDialog = true;
385
+ },
386
+ initUnDoWfInfo() {
387
+ this.$http({
388
+ url: AGILEBPM_PREFIX + "/wf_manage/listPage",
389
+ data: { type: 0, searchCount: false },
390
+ method: "post",
391
+ success: (res) => {
392
+ this.unDoWfRows = res.objx.records || [];
393
+ },
394
+ });
395
+ },
396
+ initWfTableList() {
397
+ let that = this;
398
+ let paramColumns = this.wfParamDTOs.map((item) => {
399
+ return {
400
+ title: this.$t1(item.paramName),
401
+ field: item.paramKey,
402
+ width: 150,
403
+ };
404
+ });
405
+ var statuses = {
406
+ running: this.$t1("审核中"),
407
+ back: this.$t1("已驳回"),
408
+ end: this.$t1("已完成"),
409
+ };
410
+ let tableOption = {
411
+ vue: this,
412
+ tableRef: "table-wf",
413
+ tableName: "home-table-wf",
414
+ config: {
415
+ height: "auto",
416
+ },
417
+ columns: [
418
+ { type: "checkbox", width: 48, resizable: false, fixed: "left" },
419
+ {
420
+ title: this.$t1("单据类型"),
421
+ field: "objTypeName",
422
+ width: 150,
423
+ fixed: "left",
424
+ },
425
+ {
426
+ title: this.$t1("流程主题"),
427
+ field: "name",
428
+ width: 150,
429
+ },
430
+ {
431
+ title: this.$t1("启动人"),
432
+ field: "starterName",
433
+ width: 150,
434
+ },
435
+ {
436
+ title: this.$t1("当前任务"),
437
+ field: "taskName",
438
+ width: 150,
439
+ },
440
+ {
441
+ title: this.$t1("当前任务用户"),
442
+ field: "candidateNames",
443
+ width: 150,
444
+ },
445
+ {
446
+ title: this.$t1("启动时间"),
447
+ field: "createDate",
448
+ width: 150,
449
+ },
450
+ ...paramColumns,
451
+ {
452
+ width: 47,
453
+ fixed: "right",
454
+ title: "",
455
+ sortable: false,
456
+ slots: {
457
+ default: ({ row }) => {
458
+ return [
459
+ <a
460
+ href="javascript:void(0);"
461
+ class="a-link"
462
+ onclick={() => {
463
+ this.openWfDialog(row);
464
+ }}
465
+ >
466
+ <el-tooltip
467
+ enterable={false}
468
+ effect="dark"
469
+ content={this.$t1("查看")}
470
+ placement="top"
471
+ popper-class="tooltip-skin"
472
+ >
473
+ <i class="el-icon-edit" />
474
+ </el-tooltip>
475
+ </a>,
476
+ ];
477
+ },
478
+ },
479
+ },
480
+ ],
481
+ };
482
+ this.$vxeTableUtil.initVxeTable(tableOption).then((opts) => {
483
+ this.wfOption = opts;
484
+ });
485
+ },
486
+ openWfDialog(row) {
487
+ this.wfContentOption = {
488
+ objId: row.objId,
489
+ url: row.url,
490
+ objTypeCode: row.objTypeCode,
491
+ formCode: row.formCode,
492
+ };
493
+ this.showWfDialog = true;
494
+ },
495
+ commMenuCallBack(datas) {
496
+ this.commMenus = datas || [];
497
+ },
498
+ initCommMenu() {
499
+ this.$http({
500
+ url: USER_PREFIX + "/comm_menu/currentList",
501
+ data: { longOne: 0 },
502
+ method: "POST",
503
+ }).then((resultMsg) => {
504
+ this.commMenus = resultMsg.objx || [];
505
+ });
506
+ },
507
+ initNotifyMessage() {
508
+ return;
509
+ this.$http({
510
+ url: USER_PREFIX + "/notify_message/listPage",
511
+ data: { searchCount: false },
512
+ method: "post",
513
+ success: (res) => {
514
+ this.notifyMessages =
515
+ res.objx && res.objx.records ? res.objx.records : [];
516
+ },
517
+ });
518
+ },
519
+ openNotifyMessageDialog(row) {
520
+ if (row.jumpContent) {
521
+ this.$refs.notifyMessageDialog.open(row, () => {
522
+ row.readed = 1;
523
+ });
524
+ }
525
+ },
526
+ openMoreNotifyMessage(notifyType) {
527
+ let data = { notifyType: notifyType || "" };
528
+ let view = {
529
+ name: "notify_message:list",
530
+ query: data,
531
+ };
532
+ this.$store.dispatch("tagsView/delCachedView", view).then(() => {
533
+ this.$router.replace(view);
534
+ });
535
+
536
+ if (notifyType) {
537
+ this.showGroupDialog = false;
538
+ }
539
+ },
540
+ checkNotifyMessage(row, index) {
541
+ this.showNoticeDialog = true;
542
+ this.notifyMessageInfoIndex = index;
543
+ this.notifyMessageInfoId = row.id;
544
+ },
545
+ notifyMessageReadHanlde() {
546
+ this.notifyMessages[this.notifyMessageInfoIndex].readed = 1;
547
+ },
548
+ openNotifyTemplateGroupDialog() {
549
+ this.$http({
550
+ url: USER_PREFIX + `/notify_template/listPage`,
551
+ method: `post`,
552
+ data: { searchCount: false },
553
+ isLoading: true,
554
+ // loadingTarget: document.body,
555
+ success: (res) => {
556
+ this.notifyTemplates =
557
+ res.objx && res.objx.records ? res.objx.records : [];
558
+ this.showGroupDialog = true;
559
+ },
560
+ });
561
+ },
562
+ rourteTo(route) {
563
+ if (route.type == 4) {
564
+ this.jumpOutLink(route);
565
+ } else if (route.type == 3) {
566
+ let menuCode = route.menuCode;
567
+ let path = "/user/outLink/index/" + menuCode;
568
+ this.$openView({ path: path, query: { url: route.url } }, route);
569
+ } else {
570
+ let path = this.getPath(route);
571
+ if (!path) return;
572
+ this.$openView(path, route);
573
+ }
574
+ },
575
+ getPath(route3) {
576
+ let item = null;
577
+ let path = null;
578
+ if (route3.type == 0) {
579
+ //普通菜单
580
+ if (route3.url) {
581
+ path = route3.route || route3.url;
582
+ let str = "/report/vform/render/";
583
+ if (path.indexOf(str) == 0) {
584
+ } else {
585
+ let pIndex = path.indexOf("?");
586
+ if (pIndex > 0) {
587
+ path = path.substring(0, pIndex);
588
+ }
589
+ }
590
+ }
591
+ } else if (route3.type == 5) {
592
+ //动态表单
593
+ let url = route3.route || route3.url;
594
+ path = url;
595
+ }
596
+ if (path && path.startsWith("@")) {
597
+ path = null;
598
+ }
599
+ return path;
600
+ },
601
+ jumpOutLink(route) {
602
+ let path = route.url;
603
+ if (route.type == 4 && path) {
604
+ if (path.indexOf("token={token}") >= 0) {
605
+ path = path.replace("token={token}", "token=" + getToken());
606
+ }
607
+ window.open(path);
608
+ }
609
+ },
610
+ initWfParam() {
611
+ return this.$http({
612
+ url: USER_PREFIX + "/wf_param/list",
613
+ method: `post`,
614
+ data: {},
615
+ isLoading: true,
616
+ // loadingTarget: document.body,
617
+ modalStrictly: true,
618
+ success: (res) => {
619
+ this.wfParamDTOs = res.objx || [];
620
+ this.initWfTableList();
621
+ },
622
+ });
623
+ },
624
+ getWfInfoList(isLoading) {
625
+ if (!this.activating) {
626
+ return;
627
+ }
628
+ this.$http({
629
+ url: USER_PREFIX + "/wf_info/listPage",
630
+ data: { type: 0, size: 20, searchCount: false },
631
+ method: "post",
632
+ isLoading: isLoading,
633
+ modal: isLoading || false,
634
+ // loadingTarget: document.body,
635
+ success: (res) => {
636
+ this.unDoWfRows =
637
+ res.objx && res.objx.records ? res.objx.records : [];
638
+ },
639
+ failMsg: false,
640
+ errorMsg: false,
641
+ fail: (res, response) => {
642
+ if (response && response.status == 200) {
643
+ this.$errorMsg(res);
644
+ }
645
+ },
646
+ });
647
+ },
648
+ getUnreadMessageNum(isLoading) {
649
+ if (!this.activating) {
650
+ return;
651
+ }
652
+ return this.$http({
653
+ url: USER_PREFIX + "/notify_message/countMessage",
654
+ method: `post`,
655
+ data: {},
656
+ isLoading: isLoading,
657
+ modal: isLoading || false,
658
+ // loadingTarget: document.body,
659
+ success: (res) => {
660
+ this.unreadMessageNum = res.objx || 0;
661
+ },
662
+ failMsg: false,
663
+ errorMsg: false,
664
+ fail: (res, response) => {
665
+ if (response && response.status == 200) {
666
+ this.$errorMsg(res);
667
+ }
668
+ },
669
+ });
670
+ },
671
+ wfhandleCallback(flag) {
672
+ if ([1, 2, 3].includes(flag)) {
673
+ this.showWfDialog = false;
674
+ this.wfClose();
675
+ }
676
+ },
677
+ },
678
+ };
679
+ </script>
680
+ <style lang="scss" scoped>
681
+ @import "~@/styles/variables.scss";
682
+
683
+ body #app .index-home {
684
+ margin: 3px 10px;
685
+ height: calc(100vh - 38px);
686
+ overflow: auto;
687
+
688
+ #containt {
689
+ margin: 0;
690
+ background: none;
691
+ height: auto;
692
+ box-shadow: none;
693
+ }
694
+
695
+ .i-user-info {
696
+ background: url(~@/resources/images/home-img.png) #2a6494 no-repeat 116%
697
+ 45px;
698
+ margin-bottom: 6px;
699
+ background-size: 181px;
700
+ padding: 14px 38px 11px 16px;
701
+ border-radius: 4px 4px;
702
+ color: #fff;
703
+ font-size: 12px;
704
+ margin-top: 3px;
705
+ height: 95px;
706
+ overflow: hidden;
707
+
708
+ .name {
709
+ opacity: 1;
710
+ font-weight: 600;
711
+ margin: 9px 0 14px;
712
+ font-size: 14px;
713
+ }
714
+
715
+ .img {
716
+ width: 60px;
717
+ height: 60px;
718
+ float: left;
719
+ border-radius: 50%;
720
+ border: solid 4px rgba(255, 255, 255, 0.28);
721
+ margin-right: 10px;
722
+ }
723
+ }
724
+
725
+ .home-notice-list {
726
+ height: 182px;
727
+ margin: 0 -12px;
728
+
729
+ .item {
730
+ padding: 6px 12px;
731
+ font-size: 12px;
732
+ cursor: pointer;
733
+ overflow: hidden;
734
+ text-overflow: ellipsis;
735
+ white-space: nowrap;
736
+
737
+ .time {
738
+ color: #b9b9b9;
739
+ font-size: 12px;
740
+ right: 12px;
741
+ }
742
+
743
+ &:hover {
744
+ color: $baseColor;
745
+ background-color: transparentize($baseColor, 0.97);
746
+
747
+ .time {
748
+ color: $baseColor;
749
+ }
750
+ }
751
+
752
+ &.no-read:before {
753
+ content: "";
754
+ width: 6px;
755
+ height: 6px;
756
+ background-color: $red;
757
+ border-radius: 50%;
758
+ vertical-align: middle;
759
+ display: inline-block;
760
+ margin-bottom: 1px;
761
+ }
762
+ }
763
+
764
+ &.to-reed {
765
+ height: 300px;
766
+ overflow: auto;
767
+ margin: -8px -12px;
768
+
769
+ .item {
770
+ white-space: initial;
771
+ padding: 8px 22px 2px;
772
+ position: relative;
773
+
774
+ &:after {
775
+ content: "";
776
+ position: absolute;
777
+ left: 22px;
778
+ right: 22px;
779
+ border-top: dashed 1px #eee;
780
+ height: 1px;
781
+ bottom: 0;
782
+ }
783
+
784
+ &.noread {
785
+ &:before {
786
+ content: "";
787
+ width: 6px;
788
+ height: 6px;
789
+ background-color: $red;
790
+ border-radius: 50%;
791
+ margin-right: 5px;
792
+ display: inline-block;
793
+ position: absolute;
794
+ left: 10px;
795
+ top: 16px;
796
+ }
797
+ }
798
+
799
+ .el-tag {
800
+ zoom: 0.95;
801
+ padding: 0 5px;
802
+ height: 24px;
803
+ line-height: 24px;
804
+ }
805
+
806
+ // .noread{
807
+ // position: absolute;right:0;top:0;
808
+ // span{transform: rotate(47deg);
809
+ // -ms-transform: rotate(47deg);
810
+ // -moz-transform: rotate(47deg);
811
+ // -webkit-transform: rotate(47deg);
812
+ // -o-transform: rotate(47deg);
813
+ // z-index: 3;
814
+ // color: #FFF;
815
+ // position: absolute;
816
+ // right: 1px;
817
+ // top: 2px;}
818
+ // &:after{
819
+ // content: "\e618";
820
+ // font-size: 62px;
821
+ // font-family: "iconfont";
822
+ // color:$red
823
+ // }
824
+ // }
825
+ .time {
826
+ position: relative;
827
+ right: 0;
828
+ margin-left: 12px;
829
+ }
830
+
831
+ .name {
832
+ overflow: hidden;
833
+ text-overflow: ellipsis;
834
+ white-space: nowrap;
835
+ margin-top: 3px;
836
+ display: block;
837
+ margin-bottom: 4px;
838
+ }
839
+
840
+ &:hover .name {
841
+ color: $baseColor;
842
+ }
843
+
844
+ &:first-child:before {
845
+ border-top: none;
846
+ }
847
+
848
+ .btns {
849
+ text-align: right;
850
+
851
+ .el-link {
852
+ font-size: 12px;
853
+ display: inline-block;
854
+ margin-left: 14px;
855
+
856
+ i {
857
+ font-size: 12px;
858
+ margin-right: 3px;
859
+ }
860
+ }
861
+ }
862
+ }
863
+ }
864
+ }
865
+
866
+ .fast-box {
867
+ margin: 6px 4px 4px;
868
+ overflow: hidden;
869
+
870
+ .item {
871
+ width: 118px;
872
+ text-align: center;
873
+ float: left;
874
+ margin-right: 14px;
875
+
876
+ p {
877
+ color: #2a6494;
878
+ border: solid 1px #e2e2e2;
879
+ margin: 3.5px 4px;
880
+ width: calc(100% - 4px);
881
+ border-radius: 6px;
882
+ position: relative;
883
+ height: 54px;
884
+ line-height: 54px;
885
+ text-align: left;
886
+ padding-left: 14px;
887
+ font-size: 12px;
888
+
889
+ i {
890
+ font-size: 14px;
891
+ vertical-align: middle;
892
+ margin-right: 2px;
893
+ }
894
+
895
+ span {
896
+ vertical-align: middle;
897
+ }
898
+
899
+ &:before {
900
+ content: "";
901
+ width: 4px;
902
+ height: 24px;
903
+ display: inline-block;
904
+ background: #225279b8;
905
+ position: absolute;
906
+ left: -1px;
907
+ top: 50%;
908
+ margin-top: -12px;
909
+ }
910
+
911
+ &:hover {
912
+ background-color: $baseColor;
913
+ color: #fff;
914
+ border-color: $baseColor;
915
+
916
+ &:before {
917
+ background: #fff;
918
+ }
919
+ }
920
+ }
921
+ }
922
+ }
923
+
924
+ .need-to {
925
+ height: 332px;
926
+ }
927
+
928
+ .table-box {
929
+ width: 100%;
930
+ font-size: 12px;
931
+
932
+ th {
933
+ line-height: 32px;
934
+ background: #f7f7f7;
935
+ font-weight: 400;
936
+ color: #808080;
937
+ padding: 0 6px;
938
+ }
939
+
940
+ td {
941
+ text-align: center;
942
+ line-height: 34px;
943
+ color: #424242;
944
+ border-bottom: solid 1px #eee;
945
+ padding: 0 6px;
946
+ }
947
+
948
+ tr:last-child td {
949
+ border-bottom: none;
950
+ }
951
+ }
952
+ }
953
+
954
+ .box-card .more {
955
+ background-color: #f7f7f7;
956
+ }
957
+
958
+ .group-list {
959
+ padding: 18px 18px 6px 32px !important;
960
+ height: 400px;
961
+ overflow: auto;
962
+
963
+ .item {
964
+ position: relative;
965
+ height: 36px;
966
+ border: solid 1px #eee;
967
+ line-height: 34px;
968
+ border-radius: 2px;
969
+ padding: 0 42px 0 14px;
970
+ margin-bottom: 10px;
971
+ cursor: pointer;
972
+
973
+ &::before {
974
+ content: "";
975
+ width: 8px;
976
+ height: 8px;
977
+ border: solid 1px #eee;
978
+ border-radius: 50%;
979
+ display: inline-block;
980
+ position: absolute;
981
+ left: -16px;
982
+ top: 13px;
983
+ }
984
+
985
+ &.checked {
986
+ &:before {
987
+ content: "";
988
+ background-color: $baseColor;
989
+ border-color: $baseColor;
990
+ }
991
+
992
+ background-color: transparentize($baseColor, 0.9);
993
+ color: $baseColor;
994
+ border-color: $baseColor;
995
+ }
996
+
997
+ i {
998
+ font-size: 12px;
999
+ vertical-align: middle;
1000
+ }
1001
+
1002
+ .name {
1003
+ font-size: 12px;
1004
+ margin-left: 8px;
1005
+ vertical-align: middle;
1006
+ }
1007
+
1008
+ .nums {
1009
+ width: 22px;
1010
+ height: 22px;
1011
+ border-radius: 50%;
1012
+ display: inline-block;
1013
+ position: absolute;
1014
+ right: 5px;
1015
+ top: 6px;
1016
+ color: #fff;
1017
+ font-size: 12px;
1018
+ background-color: $red;
1019
+ line-height: 22px;
1020
+ text-align: center;
1021
+ }
1022
+ }
1023
+ }
1024
+
1025
+ .notice-box {
1026
+ background-color: #2a649429;
1027
+ border-radius: 0 0 4px 4px;
1028
+ padding: 9px 12px;
1029
+ margin-bottom: 5px;
1030
+ margin-top: -6px;
1031
+ position: relative;
1032
+ z-index: 2;
1033
+ font-size: 13px;
1034
+ color: #212121;
1035
+ overflow: hidden;
1036
+
1037
+ .txt {
1038
+ line-height: 28px;
1039
+ font-size: 12px;
1040
+ position: relative;
1041
+ display: inline-block;
1042
+ cursor: pointer;
1043
+
1044
+ &:before {
1045
+ content: "";
1046
+ background-color: $baseColor;
1047
+ width: 4px;
1048
+ height: 20px;
1049
+ border-radius: 2px;
1050
+ display: inline-block;
1051
+ vertical-align: middle;
1052
+ margin-right: 18px;
1053
+ }
1054
+
1055
+ i {
1056
+ font-size: 14px;
1057
+ margin-right: 12px;
1058
+ vertical-align: middle;
1059
+ }
1060
+
1061
+ > span {
1062
+ vertical-align: middle;
1063
+ height: 22px;
1064
+ line-height: 22px;
1065
+ display: inline-block;
1066
+
1067
+ b {
1068
+ color: #fff;
1069
+ margin: 0 4px;
1070
+ font-size: 16px;
1071
+ vertical-align: middle;
1072
+ background: #ff5615;
1073
+ border-radius: 50%;
1074
+ display: inline-block;
1075
+ padding: 4px;
1076
+ font-weight: 200;
1077
+ line-height: 1;
1078
+ }
1079
+ }
1080
+ }
1081
+
1082
+ .el-button {
1083
+ position: absolute;
1084
+ right: 46px;
1085
+ padding: 0;
1086
+ height: 22px;
1087
+ line-height: 22px;
1088
+ min-width: 22px;
1089
+ text-align: center;
1090
+ border-radius: 2px;
1091
+ top: 50%;
1092
+ margin-top: -11px;
1093
+
1094
+ i {
1095
+ font-size: 15px;
1096
+ }
1097
+
1098
+ &:hover {
1099
+ background-color: $baseColor;
1100
+ color: #fff;
1101
+ }
1102
+
1103
+ &.more {
1104
+ right: 12px;
1105
+ background: #f7f7f7;
1106
+
1107
+ &:hover {
1108
+ color: $baseColor;
1109
+ }
1110
+ }
1111
+ }
1112
+
1113
+ ::v-deep .el-card.is-always-shadow {
1114
+ box-shadow: 0 2px 2px 0 rgb(0 0 0 / 6%);
1115
+ }
1116
+ }
1117
+ </style>