doway-coms 1.6.62 → 1.6.64

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 (69) hide show
  1. package/.browserslistrc +2 -2
  2. package/README.md +28 -28
  3. package/package.json +52 -52
  4. package/packages/BaseButton/index.js +7 -7
  5. package/packages/BaseButton/src/index.vue +241 -241
  6. package/packages/BaseCheckbox/index.js +7 -7
  7. package/packages/BaseCheckbox/src/index.vue +134 -134
  8. package/packages/BaseDate/index.js +7 -7
  9. package/packages/BaseDate/src/index.vue +197 -197
  10. package/packages/BaseDateMonth/index.js +8 -0
  11. package/packages/BaseDateMonth/src/index.vue +164 -0
  12. package/packages/BaseDateWeek/index.js +7 -7
  13. package/packages/BaseDateWeek/src/index.vue +163 -163
  14. package/packages/BaseDatetime/index.js +7 -7
  15. package/packages/BaseDatetime/src/index.vue +196 -196
  16. package/packages/BaseForm/index.js +7 -7
  17. package/packages/BaseForm/src/index.vue +686 -666
  18. package/packages/BaseGantt/index.js +9 -9
  19. package/packages/BaseGantt/src/index.vue +608 -608
  20. package/packages/BaseGrid/index.js +9 -9
  21. package/packages/BaseGrid/src/index.vue +2735 -2735
  22. package/packages/BaseGridAdjust/index.js +9 -9
  23. package/packages/BaseGridAdjust/src/index.vue +482 -482
  24. package/packages/BaseInput/index.js +7 -7
  25. package/packages/BaseInput/src/index.vue +164 -164
  26. package/packages/BaseIntervalInput/index.js +7 -7
  27. package/packages/BaseIntervalInput/src/index.vue +310 -310
  28. package/packages/BaseKanbanEmpty/index.js +7 -7
  29. package/packages/BaseKanbanEmpty/src/index.vue +176 -176
  30. package/packages/BaseNumberInput/index.js +7 -7
  31. package/packages/BaseNumberInput/src/index.vue +229 -229
  32. package/packages/BasePagination/index.js +7 -7
  33. package/packages/BasePagination/src/index.vue +91 -91
  34. package/packages/BasePictureCard/index.js +7 -7
  35. package/packages/BasePictureCard/src/index.vue +580 -580
  36. package/packages/BasePrintPreview/index.js +7 -7
  37. package/packages/BasePrintPreview/src/index.vue +117 -117
  38. package/packages/BasePulldown/index.js +7 -7
  39. package/packages/BasePulldown/src/index.vue +1136 -1136
  40. package/packages/BaseSearch/index.js +7 -7
  41. package/packages/BaseSearch/src/index.vue +935 -935
  42. package/packages/BaseSelect/index.js +7 -7
  43. package/packages/BaseSelect/src/index.vue +155 -155
  44. package/packages/BaseSelectMulti/index.js +7 -7
  45. package/packages/BaseSelectMulti/src/index.vue +148 -148
  46. package/packages/BaseTextArea/index.js +7 -7
  47. package/packages/BaseTextArea/src/index.vue +178 -178
  48. package/packages/BaseTime/index.js +7 -7
  49. package/packages/BaseTime/src/index.vue +166 -166
  50. package/packages/BaseTool/index.js +7 -7
  51. package/packages/BaseTool/src/index.vue +349 -349
  52. package/packages/BaseToolStatus/index.js +7 -7
  53. package/packages/BaseToolStatus/src/index.vue +388 -388
  54. package/packages/LeaveAMessage/index.js +7 -7
  55. package/packages/LeaveAMessage/src/index.vue +568 -571
  56. package/packages/index.js +167 -167
  57. package/packages/styles/default.less +80 -80
  58. package/packages/utils/api.js +88 -88
  59. package/packages/utils/auth.js +38 -38
  60. package/packages/utils/common.js +595 -595
  61. package/packages/utils/dom.js +181 -181
  62. package/packages/utils/enum.js +83 -83
  63. package/packages/utils/filters.js +458 -458
  64. package/packages/utils/gridFormat.js +60 -60
  65. package/packages/utils/msg.js +16 -16
  66. package/packages/utils/patchFiles.js +44 -44
  67. package/packages/utils/request.js +169 -169
  68. package/packages/utils/store.js +261 -261
  69. package/vue.config.js +59 -59
@@ -1,389 +1,389 @@
1
- <template>
2
- <div class="status-bar">
3
- <div class="status-bar-btns">
4
- <a-button
5
- class="status-bar-btn"
6
- size="small"
7
- :type="btn.isPrimary === true ? 'primary' : 'default'"
8
- v-show="btn.visible === true"
9
- :loading="btn.isLoading"
10
- @click="btnClick(btn)"
11
- v-for="btn in internalBtns"
12
- :key="btn.code"
13
- >{{ btn.caption }}</a-button
14
- >
15
- </div>
16
- <div class="status-bar-status">
17
- <div class="el-status-btn-wrapper">
18
- <div
19
- v-for="(status, index) in statuss"
20
- :key="index"
21
- style="display:inline-block"
22
- >
23
- <a-button
24
- v-if="!status.notButton"
25
- class="status-primary"
26
- :class="
27
- status.value === (workFlowStatus?workFlowStatus:formRow.status)
28
- ? 'current-status'
29
- : 'inactive-status'
30
- "
31
- type="text"
32
- >
33
- {{ status.caption }}</a-button
34
- >
35
- <div
36
- v-else
37
- class="progressBar"
38
- :class="
39
- formRow.value == 'progress' ? 'progressBar' : 'progressBarStop'
40
- "
41
- >
42
- <div class="inProgressBar" :style="{ width: status.progress }">
43
- <div class="text">
44
- {{ status.progress }}
45
- </div>
46
- </div>
47
- </div>
48
- </div>
49
- </div>
50
- </div>
51
- </div>
52
- </template>
53
-
54
- <script>
55
- import { Button } from 'ant-design-vue'
56
- export default {
57
- name: 'BaseToolStatus',
58
- components:{
59
- 'a-button': Button
60
- },
61
- data() {
62
- return {
63
- internalWorkFlowBtns: [],
64
- internalBtns: [],
65
- internalStatuss: [],
66
- internalFormRow: {}
67
- }
68
- },
69
- props: {
70
- workFlowBtns: {
71
- type: Array,
72
- default: () => {
73
- return []
74
- }
75
- },
76
- actionData: {
77
- type: Object,
78
- default: () => {
79
- return {}
80
- },
81
- deep: true
82
- },
83
- workFlowStatus: {
84
- // 对象信息
85
- type: String,
86
- default: ''
87
- },
88
- objectName: {
89
- // 对象信息
90
- type: String,
91
- default: 'artRout'
92
- },
93
- formRow: {
94
- type: Object,
95
- default: function() {
96
- return {}
97
- }
98
- },
99
- btns: {
100
- // 按钮
101
- type: Array,
102
- default: function() {
103
- return []
104
- }
105
- },
106
- statuss: {
107
- // 状态栏
108
- type: Array,
109
- default: function() {
110
- return []
111
- }
112
- }
113
- },
114
- watch: {
115
- workFlowBtns: {
116
- handler: function(newVal) {
117
- this.internalWorkFlowBtns = newVal
118
- },
119
- deep: true
120
- },
121
- btns: {
122
- handler: function(newVal) {
123
- this.internalBtns = newVal
124
- },
125
- deep: true
126
- }
127
- },
128
- created() {
129
- this.internalWorkFlowBtns = this.workFlowBtns
130
- this.internalBtns = this.btns
131
- },
132
- methods: {
133
- btnClick(btn) {
134
- this.$emit(btn.code, btn)
135
- }
136
- }
137
- }
138
- </script>
139
- <style lang="scss" scoped>
140
- .progressBarStop {
141
- background-color: #fafafa;
142
- width: 90px;
143
- height: 32px;
144
- margin-bottom: -12px !important;
145
- .inProgressBar {
146
- background: 0;
147
- }
148
- }
149
- .progressBar {
150
- position: relative;
151
- background-color: #fafafa;
152
- width: 90px;
153
- height: 32px;
154
- margin-bottom: -12px !important;
155
- }
156
- .progressBar:after {
157
- content: "";
158
- position: absolute;
159
- top: 0;
160
- right: 0;
161
- background-color: #ccc;
162
- width: 1px;
163
- height: 32px;
164
- }
165
- .inProgressBar {
166
- width: 90px;
167
- height: 32px;
168
- background: -webkit-repeating-linear-gradient(
169
- 30deg,
170
- #83a7cf 0,
171
- #83a7cf 10px,
172
- #93b3d6 10px,
173
- #93b3d6 20px
174
- );
175
- -webkit-animation: move 5s linear infinite;
176
- }
177
- .text {
178
- position: absolute;
179
- top: 20%;
180
- left: 40%;
181
- color: black;
182
- font-size: 14px;
183
- }
184
- @-webkit-keyframes move {
185
- 0% {
186
- background-position: 0 0;
187
- }
188
- 100% {
189
- background-position: -200px 0;
190
- }
191
- }
192
- //所在状态状态提示样式
193
- .current-status {
194
- color: #010101 !important;
195
- font-weight: bold;
196
- background-color: #ffc56b !important;
197
- }
198
- //所在状态状态指向提示样式
199
- .current-status::before {
200
- content: " ";
201
- display: block;
202
- position: absolute;
203
- top: 0px;
204
- left: auto;
205
- bottom: auto;
206
- right: -12px;
207
- border-top: 16px solid transparent;
208
- border-bottom: 18px solid transparent;
209
- border-right: none;
210
- border-left: 11px solid #ffc56b !important;
211
- z-index: 10;
212
- }
213
- //所在状态状态指向提示样式
214
- .current-status::after {
215
- content: " ";
216
- display: block;
217
- position: absolute;
218
- top: 0px;
219
- left: auto;
220
- bottom: auto;
221
- right: -11px;
222
- border-left: 11px solid #ffc56b !important;
223
- border-top: 16px solid transparent;
224
- border-bottom: 18px solid transparent;
225
- border-right: none;
226
- z-index: 11;
227
- }
228
- //未使用的状态提示样式
229
- .inactive-status {
230
- background-color: #f9f9f9;
231
- }
232
- //未使用的状态指向提示样式
233
- .inactive-status::before {
234
- content: " ";
235
- display: block;
236
- position: absolute;
237
- top: 0px;
238
- left: auto;
239
- bottom: auto;
240
- right: -12px;
241
- border-top: 16px solid transparent;
242
- border-bottom: 18px solid transparent;
243
- border-right: none;
244
- border-left: 11px solid #ccc !important;
245
- z-index: 10;
246
- }
247
- //未使用的状态指向提示样式
248
- .inactive-status::after {
249
- content: " ";
250
- display: block;
251
- position: absolute;
252
- top: 0px;
253
- left: auto;
254
- bottom: auto;
255
- right: -11px;
256
- border-left: 11px solid #f9f9f9 !important;
257
- border-top: 16px solid transparent;
258
- border-bottom: 18px solid transparent;
259
- border-right: none;
260
- z-index: 11;
261
- }
262
- //状态条样式
263
- .status-bar {
264
- display: flex;
265
- justify-content: space-between;
266
- border-bottom: 1px solid #ccc;
267
- border-top: 1px solid #ccc;
268
- // padding-top: 1px;
269
-
270
- padding-left: 8px;
271
- // padding-bottom: 1px;
272
- // border-left: none;
273
- //状态栏高度
274
- .status-bar-btns {
275
- line-height: 30px;
276
- float: left;
277
- margin-left: 10px;
278
- //状态工作按钮样式
279
- .status-bar-btn {
280
- // margin-top: 1px;
281
- // border-radius: 3px;
282
- // height: 28px;
283
- // font-size: 12px;
284
- // padding: 5px 10px;
285
- margin-right: 8px;
286
- }
287
- //状态工作按钮样式
288
- .btn-primary {
289
- color: #efefef;
290
- background-color: #219bff;
291
- cursor: pointer;
292
- // margin-top: 1px;
293
- }
294
- }
295
- //状态提示按钮样式
296
- .status-bar-status {
297
- overflow: hidden;
298
- .el-status-btn-wrapper {
299
- overflow: visible;
300
- border-left: 1px solid #ccc;
301
- // border-bottom: 1px solid #ccc;
302
- .el-status-btn {
303
- margin-left: 0px !important;
304
- color: #000;
305
- padding-left: 20px;
306
- padding-right: 20px;
307
- position: relative;
308
- padding-left: 22px;
309
- cursor: default;
310
- font-size: 11px;
311
- background-color: #fff;
312
- }
313
- .el-status-btn::before {
314
- content: " ";
315
- display: block;
316
- position: absolute;
317
- top: 0px;
318
- left: auto;
319
- bottom: auto;
320
- right: -12px;
321
- border-top: 16px solid transparent;
322
- border-bottom: 18px solid transparent;
323
- border-right: none;
324
- border-left: 11px solid #ccc !important;
325
- z-index: 10;
326
- }
327
- .el-status-btn::after {
328
- content: " ";
329
- display: block;
330
- position: absolute;
331
- top: 0px;
332
- left: auto;
333
- bottom: auto;
334
- right: -11px;
335
- border-left: 11px solid white !important;
336
- border-top: 16px solid transparent;
337
- border-bottom: 18px solid transparent;
338
- border-right: none;
339
- z-index: 11;
340
- }
341
- .status-primary {
342
- color: #0b0b0b;
343
- font-size: 12px;
344
- border-radius: 0;
345
- background-color: #fafafa;
346
- margin-left: 0px !important;
347
- padding-left: 20px;
348
- padding-right: 20px;
349
- position: relative;
350
- padding-left: 22px;
351
- cursor: default;
352
- }
353
- .status-primary::before {
354
- content: " ";
355
- display: block;
356
- position: absolute;
357
- top: 0px;
358
- left: auto;
359
- bottom: auto;
360
- right: -12px;
361
- border-top: 16px solid transparent;
362
- border-bottom: 18px solid transparent;
363
- border-right: none;
364
- border-left: 11px solid #ccc;
365
- z-index: 10;
366
- }
367
-
368
- .status-primary::after {
369
- content: " ";
370
- display: block;
371
- position: absolute;
372
- top: 0px;
373
- left: auto;
374
- bottom: auto;
375
- right: -11px;
376
- border-left: 11px solid #f9f9f9;
377
- border-top: 16px solid transparent;
378
- border-bottom: 18px solid transparent;
379
- border-right: none;
380
- z-index: 11;
381
- }
382
- }
383
- }
384
- }
385
- </style>
386
- <style lang="less">
387
- @import '../../styles/default.less';
388
- </style>
1
+ <template>
2
+ <div class="status-bar">
3
+ <div class="status-bar-btns">
4
+ <a-button
5
+ class="status-bar-btn"
6
+ size="small"
7
+ :type="btn.isPrimary === true ? 'primary' : 'default'"
8
+ v-show="btn.visible === true"
9
+ :loading="btn.isLoading"
10
+ @click="btnClick(btn)"
11
+ v-for="btn in internalBtns"
12
+ :key="btn.code"
13
+ >{{ btn.caption }}</a-button
14
+ >
15
+ </div>
16
+ <div class="status-bar-status">
17
+ <div class="el-status-btn-wrapper">
18
+ <div
19
+ v-for="(status, index) in statuss"
20
+ :key="index"
21
+ style="display:inline-block"
22
+ >
23
+ <a-button
24
+ v-if="!status.notButton"
25
+ class="status-primary"
26
+ :class="
27
+ status.value === (workFlowStatus?workFlowStatus:formRow.status)
28
+ ? 'current-status'
29
+ : 'inactive-status'
30
+ "
31
+ type="text"
32
+ >
33
+ {{ status.caption }}</a-button
34
+ >
35
+ <div
36
+ v-else
37
+ class="progressBar"
38
+ :class="
39
+ formRow.value == 'progress' ? 'progressBar' : 'progressBarStop'
40
+ "
41
+ >
42
+ <div class="inProgressBar" :style="{ width: status.progress }">
43
+ <div class="text">
44
+ {{ status.progress }}
45
+ </div>
46
+ </div>
47
+ </div>
48
+ </div>
49
+ </div>
50
+ </div>
51
+ </div>
52
+ </template>
53
+
54
+ <script>
55
+ import { Button } from 'ant-design-vue'
56
+ export default {
57
+ name: 'BaseToolStatus',
58
+ components:{
59
+ 'a-button': Button
60
+ },
61
+ data() {
62
+ return {
63
+ internalWorkFlowBtns: [],
64
+ internalBtns: [],
65
+ internalStatuss: [],
66
+ internalFormRow: {}
67
+ }
68
+ },
69
+ props: {
70
+ workFlowBtns: {
71
+ type: Array,
72
+ default: () => {
73
+ return []
74
+ }
75
+ },
76
+ actionData: {
77
+ type: Object,
78
+ default: () => {
79
+ return {}
80
+ },
81
+ deep: true
82
+ },
83
+ workFlowStatus: {
84
+ // 对象信息
85
+ type: String,
86
+ default: ''
87
+ },
88
+ objectName: {
89
+ // 对象信息
90
+ type: String,
91
+ default: 'artRout'
92
+ },
93
+ formRow: {
94
+ type: Object,
95
+ default: function() {
96
+ return {}
97
+ }
98
+ },
99
+ btns: {
100
+ // 按钮
101
+ type: Array,
102
+ default: function() {
103
+ return []
104
+ }
105
+ },
106
+ statuss: {
107
+ // 状态栏
108
+ type: Array,
109
+ default: function() {
110
+ return []
111
+ }
112
+ }
113
+ },
114
+ watch: {
115
+ workFlowBtns: {
116
+ handler: function(newVal) {
117
+ this.internalWorkFlowBtns = newVal
118
+ },
119
+ deep: true
120
+ },
121
+ btns: {
122
+ handler: function(newVal) {
123
+ this.internalBtns = newVal
124
+ },
125
+ deep: true
126
+ }
127
+ },
128
+ created() {
129
+ this.internalWorkFlowBtns = this.workFlowBtns
130
+ this.internalBtns = this.btns
131
+ },
132
+ methods: {
133
+ btnClick(btn) {
134
+ this.$emit(btn.code, btn)
135
+ }
136
+ }
137
+ }
138
+ </script>
139
+ <style lang="scss" scoped>
140
+ .progressBarStop {
141
+ background-color: #fafafa;
142
+ width: 90px;
143
+ height: 32px;
144
+ margin-bottom: -12px !important;
145
+ .inProgressBar {
146
+ background: 0;
147
+ }
148
+ }
149
+ .progressBar {
150
+ position: relative;
151
+ background-color: #fafafa;
152
+ width: 90px;
153
+ height: 32px;
154
+ margin-bottom: -12px !important;
155
+ }
156
+ .progressBar:after {
157
+ content: "";
158
+ position: absolute;
159
+ top: 0;
160
+ right: 0;
161
+ background-color: #ccc;
162
+ width: 1px;
163
+ height: 32px;
164
+ }
165
+ .inProgressBar {
166
+ width: 90px;
167
+ height: 32px;
168
+ background: -webkit-repeating-linear-gradient(
169
+ 30deg,
170
+ #83a7cf 0,
171
+ #83a7cf 10px,
172
+ #93b3d6 10px,
173
+ #93b3d6 20px
174
+ );
175
+ -webkit-animation: move 5s linear infinite;
176
+ }
177
+ .text {
178
+ position: absolute;
179
+ top: 20%;
180
+ left: 40%;
181
+ color: black;
182
+ font-size: 14px;
183
+ }
184
+ @-webkit-keyframes move {
185
+ 0% {
186
+ background-position: 0 0;
187
+ }
188
+ 100% {
189
+ background-position: -200px 0;
190
+ }
191
+ }
192
+ //所在状态状态提示样式
193
+ .current-status {
194
+ color: #010101 !important;
195
+ font-weight: bold;
196
+ background-color: #ffc56b !important;
197
+ }
198
+ //所在状态状态指向提示样式
199
+ .current-status::before {
200
+ content: " ";
201
+ display: block;
202
+ position: absolute;
203
+ top: 0px;
204
+ left: auto;
205
+ bottom: auto;
206
+ right: -12px;
207
+ border-top: 16px solid transparent;
208
+ border-bottom: 18px solid transparent;
209
+ border-right: none;
210
+ border-left: 11px solid #ffc56b !important;
211
+ z-index: 10;
212
+ }
213
+ //所在状态状态指向提示样式
214
+ .current-status::after {
215
+ content: " ";
216
+ display: block;
217
+ position: absolute;
218
+ top: 0px;
219
+ left: auto;
220
+ bottom: auto;
221
+ right: -11px;
222
+ border-left: 11px solid #ffc56b !important;
223
+ border-top: 16px solid transparent;
224
+ border-bottom: 18px solid transparent;
225
+ border-right: none;
226
+ z-index: 11;
227
+ }
228
+ //未使用的状态提示样式
229
+ .inactive-status {
230
+ background-color: #f9f9f9;
231
+ }
232
+ //未使用的状态指向提示样式
233
+ .inactive-status::before {
234
+ content: " ";
235
+ display: block;
236
+ position: absolute;
237
+ top: 0px;
238
+ left: auto;
239
+ bottom: auto;
240
+ right: -12px;
241
+ border-top: 16px solid transparent;
242
+ border-bottom: 18px solid transparent;
243
+ border-right: none;
244
+ border-left: 11px solid #ccc !important;
245
+ z-index: 10;
246
+ }
247
+ //未使用的状态指向提示样式
248
+ .inactive-status::after {
249
+ content: " ";
250
+ display: block;
251
+ position: absolute;
252
+ top: 0px;
253
+ left: auto;
254
+ bottom: auto;
255
+ right: -11px;
256
+ border-left: 11px solid #f9f9f9 !important;
257
+ border-top: 16px solid transparent;
258
+ border-bottom: 18px solid transparent;
259
+ border-right: none;
260
+ z-index: 11;
261
+ }
262
+ //状态条样式
263
+ .status-bar {
264
+ display: flex;
265
+ justify-content: space-between;
266
+ border-bottom: 1px solid #ccc;
267
+ border-top: 1px solid #ccc;
268
+ // padding-top: 1px;
269
+
270
+ padding-left: 8px;
271
+ // padding-bottom: 1px;
272
+ // border-left: none;
273
+ //状态栏高度
274
+ .status-bar-btns {
275
+ line-height: 30px;
276
+ float: left;
277
+ margin-left: 10px;
278
+ //状态工作按钮样式
279
+ .status-bar-btn {
280
+ // margin-top: 1px;
281
+ // border-radius: 3px;
282
+ // height: 28px;
283
+ // font-size: 12px;
284
+ // padding: 5px 10px;
285
+ margin-right: 8px;
286
+ }
287
+ //状态工作按钮样式
288
+ .btn-primary {
289
+ color: #efefef;
290
+ background-color: #219bff;
291
+ cursor: pointer;
292
+ // margin-top: 1px;
293
+ }
294
+ }
295
+ //状态提示按钮样式
296
+ .status-bar-status {
297
+ overflow: hidden;
298
+ .el-status-btn-wrapper {
299
+ overflow: visible;
300
+ border-left: 1px solid #ccc;
301
+ // border-bottom: 1px solid #ccc;
302
+ .el-status-btn {
303
+ margin-left: 0px !important;
304
+ color: #000;
305
+ padding-left: 20px;
306
+ padding-right: 20px;
307
+ position: relative;
308
+ padding-left: 22px;
309
+ cursor: default;
310
+ font-size: 11px;
311
+ background-color: #fff;
312
+ }
313
+ .el-status-btn::before {
314
+ content: " ";
315
+ display: block;
316
+ position: absolute;
317
+ top: 0px;
318
+ left: auto;
319
+ bottom: auto;
320
+ right: -12px;
321
+ border-top: 16px solid transparent;
322
+ border-bottom: 18px solid transparent;
323
+ border-right: none;
324
+ border-left: 11px solid #ccc !important;
325
+ z-index: 10;
326
+ }
327
+ .el-status-btn::after {
328
+ content: " ";
329
+ display: block;
330
+ position: absolute;
331
+ top: 0px;
332
+ left: auto;
333
+ bottom: auto;
334
+ right: -11px;
335
+ border-left: 11px solid white !important;
336
+ border-top: 16px solid transparent;
337
+ border-bottom: 18px solid transparent;
338
+ border-right: none;
339
+ z-index: 11;
340
+ }
341
+ .status-primary {
342
+ color: #0b0b0b;
343
+ font-size: 12px;
344
+ border-radius: 0;
345
+ background-color: #fafafa;
346
+ margin-left: 0px !important;
347
+ padding-left: 20px;
348
+ padding-right: 20px;
349
+ position: relative;
350
+ padding-left: 22px;
351
+ cursor: default;
352
+ }
353
+ .status-primary::before {
354
+ content: " ";
355
+ display: block;
356
+ position: absolute;
357
+ top: 0px;
358
+ left: auto;
359
+ bottom: auto;
360
+ right: -12px;
361
+ border-top: 16px solid transparent;
362
+ border-bottom: 18px solid transparent;
363
+ border-right: none;
364
+ border-left: 11px solid #ccc;
365
+ z-index: 10;
366
+ }
367
+
368
+ .status-primary::after {
369
+ content: " ";
370
+ display: block;
371
+ position: absolute;
372
+ top: 0px;
373
+ left: auto;
374
+ bottom: auto;
375
+ right: -11px;
376
+ border-left: 11px solid #f9f9f9;
377
+ border-top: 16px solid transparent;
378
+ border-bottom: 18px solid transparent;
379
+ border-right: none;
380
+ z-index: 11;
381
+ }
382
+ }
383
+ }
384
+ }
385
+ </style>
386
+ <style lang="less">
387
+ @import '../../styles/default.less';
388
+ </style>
389
389