bri-components 1.2.57 → 1.2.58

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 (40) hide show
  1. package/package.json +2 -2
  2. package/src/components/controls/base/BriUpload/BriUpload.vue +1 -1
  3. package/src/components/controls/base/DshCascader/DshCascader.vue +48 -203
  4. package/src/components/controls/base/DshCascader/{cascaderModal.vue → components/cascaderModal.vue} +22 -31
  5. package/src/components/controls/base/DshCascader/{cascaderPicker.vue → components/cascaderPicker.vue} +22 -18
  6. package/src/components/controls/base/DshCascader/components/cascaderSimple.vue +141 -0
  7. package/src/components/controls/base/DshCoordinates.vue +1 -1
  8. package/src/components/controls/base/DshDate/DshDate.vue +1 -1
  9. package/src/components/controls/base/DshDate/DshDaterange.vue +1 -1
  10. package/src/components/controls/base/DshDivider.vue +1 -1
  11. package/src/components/controls/base/DshEditor.vue +1 -1
  12. package/src/components/controls/base/DshInput/BriInputs.vue +1 -1
  13. package/src/components/controls/base/DshInput/DshInput.vue +1 -1
  14. package/src/components/controls/base/DshNumber/DshNumber.vue +1 -1
  15. package/src/components/controls/base/DshNumber/DshNumberange.vue +1 -1
  16. package/src/components/controls/base/DshSelect/DshCheckbox.vue +1 -1
  17. package/src/components/controls/base/DshSelect/DshSelect.vue +1 -1
  18. package/src/components/controls/base/DshSwitch/switchMixin.js +1 -1
  19. package/src/components/controls/extra/themeColor.vue +1 -1
  20. package/src/components/controls/extra/themeIcon.vue +1 -1
  21. package/src/components/controls/{base/DshCascader → mixins}/cascaderMixin.js +16 -33
  22. package/src/components/controls/{base/DshCascader → mixins}/cascaderPickerMixin.js +52 -44
  23. package/src/components/controls/{base/DshSelect → mixins}/selectMixin.js +1 -1
  24. package/src/components/controls/senior/BriLabels.vue +1 -1
  25. package/src/components/controls/senior/DshPackage.vue +1 -1
  26. package/src/components/controls/senior/cascaderTable.vue +1 -1
  27. package/src/components/controls/senior/flatTable.vue +1 -1
  28. package/src/components/controls/senior/selectDepartments.vue +1 -1
  29. package/src/components/controls/senior/selectUsers/selectUsers.vue +1 -1
  30. package/src/components/controls/special/DshBack.vue +1 -1
  31. package/src/components/controls/special/DshUndeveloped.vue +1 -1
  32. package/src/components/form/DshAdvSearch.vue +1 -1
  33. package/src/components/list/DshBox/DshCard.vue +153 -38
  34. package/src/components/list/DshBox/DshPanel.vue +260 -93
  35. package/src/components/small/BriTooltip.vue +2 -2
  36. package/src/components/unit/DshFormUnit.vue +6 -18
  37. package/src/styles/components/index.less +0 -2
  38. package/src/styles/components/list/DshBox/DshCard.less +0 -59
  39. package/src/styles/components/list/DshBox/DshPanel.less +0 -107
  40. /package/src/components/controls/{controlMixin.js → mixins/controlMixin.js} +0 -0
@@ -0,0 +1,141 @@
1
+ <template>
2
+ <div class="cascaderSimple">
3
+ <Cascader
4
+ :value="activeCodeValue"
5
+ :data="renderData"
6
+ :placeholder="selfPropsObj._placeholder"
7
+ :disabled="selfPropsObj._disabled"
8
+ :clearable="selfPropsObj._clearable"
9
+ :size="selfPropsObj._size"
10
+ :filterable="useFilter"
11
+ :render-format="renderFormat"
12
+ :change-on-select="changeOnSelect"
13
+ :transfer="selfPropsObj._transfer"
14
+ :transfer-class-name="selfPropsObj._transferClassName"
15
+ :load-data="loadData"
16
+ @on-visible-change="changeVisible"
17
+ @on-change="changeSelect"
18
+ @click.native="clickCascader"
19
+ >
20
+ <slot></slot>
21
+ </Cascader>
22
+ </div>
23
+ </template>
24
+
25
+ <script>
26
+ import cascaderPickerMixin from "../../../mixins/cascaderPickerMixin.js";
27
+
28
+ export default {
29
+ name: "cascaderSimple",
30
+ mixins: [
31
+ cascaderPickerMixin
32
+ ],
33
+ components: {},
34
+ props: {},
35
+ data () {
36
+ return {
37
+ renderAll: false
38
+ };
39
+ },
40
+ computed: {
41
+ selfPropsObj () {
42
+ return {
43
+ ...this.propsObj
44
+ };
45
+ },
46
+ useFilter () {
47
+ // 多选暂不支持搜索,值得弄成false,不然出bug
48
+ return this.multipleMode ? false : this.filterable;
49
+ },
50
+
51
+ renderData () {
52
+ return this.renderAll
53
+ ? this.data
54
+ : this.data.map(item => {
55
+ return {
56
+ ...item,
57
+ children: []
58
+ };
59
+ });
60
+ }
61
+ },
62
+ created () {},
63
+ methods: {
64
+ // 动态加载数据
65
+ loadData (treeItem, cb) {
66
+ const linealDatas = this.$getTreeLinealDatas(treeItem.keys, this.data, undefined, this.saveKey);
67
+ const lastData = linealDatas.slice(-1)[0];
68
+ treeItem.children = lastData.children.map(item =>
69
+ ({
70
+ ...item,
71
+ children: []
72
+ })
73
+ );
74
+
75
+ cb();
76
+ },
77
+ // 点击级联框 如果是需要搜索,需要先渲染完多有节点,不然搜索起来
78
+ clickCascader () {
79
+ // if (
80
+ // !this.selfPropsObj._disabled &&
81
+ // this.useFilter === true &&
82
+ // this.renderAll === false &&
83
+ // !this.clickFlag
84
+ // ) {
85
+ // this.clickFlag = true; // 这个处理其实觉大概率没必要,有没有不受影响
86
+ // setTimeout(() => {
87
+ // this.renderAll = true;
88
+ // }, 0);
89
+ // }
90
+ },
91
+ // 展开和关闭弹窗时触发
92
+ changeVisible (bool) {
93
+ this.isVisible = bool;
94
+
95
+ if (this.isVisible === false) {
96
+ // 多选时
97
+ if (this.multipleMode) {
98
+ this.clickConfirm();
99
+ }
100
+ }
101
+ },
102
+ // 选项变化
103
+ changeSelect (value, selectedOptions) {
104
+ if (this.isVisible || !value.length) {
105
+ const node = selectedOptions.slice(-1)[0] || {
106
+ keys: [],
107
+ loading: false
108
+ };
109
+
110
+ // 避免重复点击 -简易模式其实无效,不过为了代码对照好看
111
+ if (JSON.stringify(this.selectedValue) !== JSON.stringify(node.keys)) {
112
+ this.selectedValue = node.keys;
113
+
114
+ const obj = {
115
+ value: this.selectedValue,
116
+ selectedOptions: this.selectedOptions
117
+ };
118
+ this.$emit("change", obj);
119
+ node.loading === undefined && this.$emit("finish", obj);
120
+
121
+ // 单选时
122
+ if (!this.multipleMode) {
123
+ this.clickConfirm();
124
+ }
125
+ }
126
+ }
127
+ },
128
+ clickConfirm () {
129
+ if (this.selectedValue.length && this.selectedOptions.length) {
130
+ this.$emit("confirm", this.selectedValue, this.selectedOptions);
131
+ }
132
+ }
133
+ }
134
+ };
135
+ </script>
136
+
137
+ <style lang="less">
138
+ .cascaderSimple {
139
+
140
+ }
141
+ </style>>
@@ -141,7 +141,7 @@
141
141
  </template>
142
142
 
143
143
  <script>
144
- import controlMixin from "../controlMixin.js";
144
+ import controlMixin from "../mixins/controlMixin.js";
145
145
 
146
146
  const plotStrokeColor = "#4575EF";
147
147
  const plotFillColor = "#4575EF";
@@ -65,7 +65,7 @@
65
65
  </template>
66
66
 
67
67
  <script>
68
- import controlMixin from "../../controlMixin.js";
68
+ import controlMixin from "../../mixins/controlMixin.js";
69
69
  import DshDaterange from "./DshDaterange.vue";
70
70
 
71
71
  export default {
@@ -76,7 +76,7 @@
76
76
  </template>
77
77
 
78
78
  <script>
79
- import controlMixin from "../../controlMixin.js";
79
+ import controlMixin from "../../mixins/controlMixin.js";
80
80
 
81
81
  export default {
82
82
  name: "DshDaterange",
@@ -42,7 +42,7 @@
42
42
  </template>
43
43
 
44
44
  <script>
45
- import controlMixin from "../controlMixin.js";
45
+ import controlMixin from "../mixins/controlMixin.js";
46
46
 
47
47
  export default {
48
48
  name: "DshDivider",
@@ -62,7 +62,7 @@
62
62
  </template>
63
63
 
64
64
  <script>
65
- import controlMixin from "../controlMixin.js";
65
+ import controlMixin from "../mixins/controlMixin.js";
66
66
  import uploadMixin from "./BriUpload/uploadMixin.js";
67
67
  import E from "wangeditor";
68
68
 
@@ -46,7 +46,7 @@
46
46
  </template>
47
47
 
48
48
  <script>
49
- import controlMixin from "../../controlMixin.js";
49
+ import controlMixin from "../../mixins/controlMixin.js";
50
50
 
51
51
  export default {
52
52
  name: "BriInputs",
@@ -92,7 +92,7 @@
92
92
  </template>
93
93
 
94
94
  <script>
95
- import controlMixin from "../../controlMixin.js";
95
+ import controlMixin from "../../mixins/controlMixin.js";
96
96
  import DshInputs from "./BriInputs.vue";
97
97
 
98
98
  export default {
@@ -62,7 +62,7 @@
62
62
  </template>
63
63
 
64
64
  <script>
65
- import controlMixin from "../../controlMixin.js";
65
+ import controlMixin from "../../mixins/controlMixin.js";
66
66
  import BriInputNumber from "./BriInputNumber/BriInputNumber.vue";
67
67
  import DshNumberange from "./DshNumberange.vue";
68
68
 
@@ -52,7 +52,7 @@
52
52
  </template>
53
53
 
54
54
  <script>
55
- import controlMixin from "../../controlMixin.js";
55
+ import controlMixin from "../../mixins/controlMixin.js";
56
56
  import BriInputNumber from "./BriInputNumber/BriInputNumber.vue";
57
57
 
58
58
  export default {
@@ -110,7 +110,7 @@
110
110
  </template>
111
111
 
112
112
  <script>
113
- import selectMixin from "./selectMixin.js";
113
+ import selectMixin from "../../mixins/selectMixin.js";
114
114
 
115
115
  export default {
116
116
  name: "DshCheckbox",
@@ -119,7 +119,7 @@
119
119
  </template>
120
120
 
121
121
  <script>
122
- import selectMixin from "./selectMixin.js";
122
+ import selectMixin from "../../mixins/selectMixin.js";
123
123
  import DshCheckbox from "./DshCheckbox.vue";
124
124
 
125
125
  export default {
@@ -1,4 +1,4 @@
1
- import controlMixin from "../../controlMixin.js";
1
+ import controlMixin from "../../mixins/controlMixin.js";
2
2
  import DshCheckbox from "../DshSelect/DshCheckbox.vue";
3
3
 
4
4
  export default {
@@ -25,7 +25,7 @@
25
25
  </template>
26
26
 
27
27
  <script>
28
- import controlMixin from "../controlMixin.js";
28
+ import controlMixin from "../mixins/controlMixin.js";
29
29
 
30
30
  export default {
31
31
  name: "themeColor",
@@ -27,7 +27,7 @@
27
27
  </template>
28
28
 
29
29
  <script>
30
- import controlMixin from "../controlMixin.js";
30
+ import controlMixin from "../mixins/controlMixin.js";
31
31
 
32
32
  export default {
33
33
  name: "themeIcon",
@@ -1,4 +1,4 @@
1
- import controlMixin from "../../controlMixin.js";
1
+ import controlMixin from "./controlMixin.js";
2
2
  import { regionData, userIndustryData } from "bri-datas";
3
3
 
4
4
  export default {
@@ -15,6 +15,9 @@ export default {
15
15
  const _joinSymbol = this.propsObj._joinSymbol || "/";
16
16
  return {
17
17
  _showMode: "default",
18
+ _saveKey: "_key",
19
+ _valueKey: "code",
20
+ _nameKey: "name",
18
21
  _filterable: true,
19
22
  _cascaderFilterVals: [], // 过滤级联数据,只保留的数组
20
23
  _renderFormat: (labels) => labels.join(_joinSymbol),
@@ -22,9 +25,6 @@ export default {
22
25
  ...this.propsObj,
23
26
  ...this.commonDealPropsObj,
24
27
 
25
- _saveKey: this.propsObj._saveKey || "_key",
26
- _valueKey: this.propsObj._valueKey || "code",
27
- _nameKey: this.propsObj._nameKey || "name",
28
28
  _changeOnSelect: this.isOnSearch
29
29
  ? true
30
30
  : this.propsObj._changeOnSelect == undefined ? false : this.propsObj._changeOnSelect, // 每级菜单都可取值 -默认取末级
@@ -34,18 +34,6 @@ export default {
34
34
  showType () {
35
35
  return this.selfPropsObj._showMode;
36
36
  },
37
- filterable () {
38
- return this.selfPropsObj._filterable;
39
- },
40
- cascaderLevel () {
41
- return this.selfPropsObj._cascaderLevel;
42
- },
43
- cascaderFilterVals () {
44
- return this.selfPropsObj._cascaderFilterVals;
45
- },
46
- changeOnSelect () {
47
- return this.selfPropsObj._changeOnSelect;
48
- },
49
37
  saveKey () {
50
38
  return this.selfPropsObj._saveKey;
51
39
  },
@@ -55,6 +43,12 @@ export default {
55
43
  nameKey () {
56
44
  return this.selfPropsObj._nameKey;
57
45
  },
46
+ cascaderLevel () {
47
+ return this.selfPropsObj._cascaderLevel;
48
+ },
49
+ cascaderFilterVals () {
50
+ return this.selfPropsObj._cascaderFilterVals;
51
+ },
58
52
  renderFormat () {
59
53
  return this.selfPropsObj._renderFormat;
60
54
  },
@@ -67,13 +61,13 @@ export default {
67
61
  : this.selfPropsObj._data;
68
62
  },
69
63
  cascaderData () {
70
- const loop = (data = [], level, parentKeys = [], filterVals = [], isMobile = false) => {
71
- if (data && filterVals.length) {
72
- data = data.filter(item => filterVals.includes(item[this.saveKey]));
64
+ const loop = (arr = [], level, parentKeys = [], filterVals = [], isMobile = false) => {
65
+ if (arr && filterVals.length) {
66
+ arr = arr.filter(item => filterVals.includes(item[this.saveKey]));
73
67
  }
74
68
 
75
- return data
76
- ? data.reduce((arr, item) => {
69
+ return arr
70
+ ? arr.reduce((arr, item) => {
77
71
  let newItem = {
78
72
  keys: [...parentKeys, item[this.saveKey]], // !!此处就是用_key拼,不会用别的属性
79
73
  code: [...parentKeys, item._key].join(""),
@@ -104,9 +98,7 @@ export default {
104
98
 
105
99
  return loop(this.originData, this.cascaderLevel, undefined, this.cascaderFilterVals, this.isMobile);
106
100
  },
107
- curValKeyList () {
108
- return this.$getTreeLinealDatas(this.curValList, this.cascaderData, this.valueKey, this.saveKey);
109
- },
101
+
110
102
  curValName: {
111
103
  get () {
112
104
  return this.transformFullName(this.curValList);
@@ -133,15 +125,6 @@ export default {
133
125
  },
134
126
  created () { },
135
127
  methods: {
136
- // 点击选择框 进行选择
137
- clickInput (e) {
138
- if (!this.selfPropsObj._disabled) {
139
- this.openModal();
140
- } else {
141
- e.stopPropagation();
142
- }
143
- },
144
-
145
128
  // 点击清除
146
129
  clickClear () {
147
130
  this.curValList = [];
@@ -6,6 +6,10 @@ export default {
6
6
  type: Boolean,
7
7
  default: false
8
8
  },
9
+ multipleMode: {
10
+ type: Boolean,
11
+ default: false
12
+ },
9
13
 
10
14
  activeValue: {
11
15
  type: Array,
@@ -13,10 +17,6 @@ export default {
13
17
  return [];
14
18
  }
15
19
  },
16
- activeStr: {
17
- type: String,
18
- default: ""
19
- },
20
20
  data: {
21
21
  type: Array,
22
22
  drfault () {
@@ -36,7 +36,9 @@ export default {
36
36
  showMode: "default", // "flat", "default"
37
37
  maxFlatModeSearchNum: 80,
38
38
 
39
+ inputStr: "",
39
40
  selectedValue: [],
41
+ activeCodeValue: [],
40
42
 
41
43
  operationMap: {
42
44
  canCancel: {
@@ -71,12 +73,6 @@ export default {
71
73
  ...this.propsObj
72
74
  };
73
75
  },
74
- filterable () {
75
- return this.selfPropsObj._filterable;
76
- },
77
- changeOnSelect () {
78
- return this.selfPropsObj._changeOnSelect;
79
- },
80
76
  saveKey () {
81
77
  return this.selfPropsObj._saveKey;
82
78
  },
@@ -86,12 +82,18 @@ export default {
86
82
  nameKey () {
87
83
  return this.selfPropsObj._nameKey;
88
84
  },
89
- renderFormat () {
90
- return this.selfPropsObj._renderFormat;
91
- },
92
85
  resourceKey () {
93
86
  return this.selfPropsObj._resourceKey;
94
87
  },
88
+ filterable () {
89
+ return this.selfPropsObj._filterable;
90
+ },
91
+ changeOnSelect () {
92
+ return this.selfPropsObj._changeOnSelect;
93
+ },
94
+ renderFormat () {
95
+ return this.selfPropsObj._renderFormat;
96
+ },
95
97
 
96
98
  canUseModeSwitch () {
97
99
  return this.searchName.trim() &&
@@ -107,15 +109,8 @@ export default {
107
109
  将不支持使用模式切换,因为此时平级方式不方便,不适用`;
108
110
  },
109
111
 
110
- inputStr: {
111
- get () {
112
- return this.activeStr;
113
- },
114
- set (str) {
115
- if (!str) {
116
- this.$emit("clear", []);
117
- }
118
- }
112
+ initData () {
113
+ return this.data;
119
114
  },
120
115
  matchFunc () {
121
116
  return node => {
@@ -141,48 +136,44 @@ export default {
141
136
  };
142
137
  });
143
138
  },
139
+ // activeCodeValue () {
140
+ // return this.$getTreeLinealDatas(this.activeValue, this.data, this.valueKey, this.saveKey);
141
+ // },
144
142
  // 选中项 -各级数据对象集合
145
143
  selectedOptions () {
146
144
  return this.$getTreeLinealDatas(this.selectedValue, this.showTreeData, undefined, this.saveKey);
147
145
  },
148
146
  // 选中项 -最后一级数据对象
149
- selectedLastOption () {
147
+ selectedObj () {
150
148
  return this.selectedOptions.slice(-1)[0];
151
149
  },
152
150
  // 选中项 -名字
153
151
  selectedName () {
154
- return this.selectedLastOption ? this.selectedLastOption[this.nameKey] : "";
152
+ return this.selectedObj ? this.selectedObj[this.nameKey] : "";
155
153
  }
156
154
  },
157
- created () { },
155
+ created () {
156
+ this.cascaderPickerInit();
157
+ },
158
158
  methods: {
159
- clickInput () {
159
+ cascaderPickerInit () {
160
+ this.selectedValue = this.activeValue;
161
+ this.activeCodeValue = this.$getTreeLinealDatas(this.activeValue, this.data, this.valueKey, this.saveKey);
162
+ },
163
+
164
+ clickInput (e) {
160
165
  if (!this.selfPropsObj._disabled) {
161
166
  this.showModal = true;
167
+ } else {
168
+ e.stopPropagation();
162
169
  }
163
170
  },
164
- clickItem (node) {
165
- this.oldSelectedValue = this.selectedValue;
166
- this.selectedValue = node.keys;
167
- // 避免重复点击
168
- if (JSON.stringify(this.selectedValue) !== JSON.stringify(this.oldSelectedValue)) {
169
- const obj = {
170
- value: this.selectedValue,
171
- selectedOptions: this.selectedOptions,
172
- tabIndex: this.curTabIndex
173
- };
174
- this.$emit("change", obj);
175
- !node.children.length && this.$emit("finish", obj);
176
- }
177
-
178
- this.clickItemCb && this.clickItemCb(node);
179
- },
180
171
  clickCancel () {
181
172
  this.showModal = false;
182
173
  },
183
174
  clickConfirm () {
184
175
  if (this.selectedValue.length && this.selectedOptions.length) {
185
- if (!this.changeOnSelect && !this.selectedLastOption.isLeaf) {
176
+ if (!this.changeOnSelect && !this.selectedObj.isLeaf) {
186
177
  this.$Message.error({
187
178
  content: "请选择到末级数据!",
188
179
  duration: 2
@@ -196,7 +187,24 @@ export default {
196
187
  duration: 2
197
188
  });
198
189
  }
190
+ },
191
+ getDescription (value = []) {
192
+ if (value.length) {
193
+ this.$https({
194
+ url: {
195
+ module: "sheet",
196
+ name: "getResourceDescription"
197
+ },
198
+ params: {
199
+ resourceKey: this.resourceKey,
200
+ nodeKeys: value
201
+ },
202
+ callback: data => {
203
+ this.description = data;
204
+ this.selectedObj.description = data;
205
+ }
206
+ });
207
+ }
199
208
  }
200
-
201
209
  }
202
210
  };
@@ -1,4 +1,4 @@
1
- import controlMixin from "../../controlMixin.js";
1
+ import controlMixin from "./controlMixin.js";
2
2
  import { resourceData } from "bri-datas";
3
3
 
4
4
  export default {
@@ -117,7 +117,7 @@
117
117
  </template>
118
118
 
119
119
  <script>
120
- import controlMixin from "../controlMixin.js";
120
+ import controlMixin from "../mixins/controlMixin.js";
121
121
 
122
122
  export default {
123
123
  name: "BriLabels",
@@ -19,7 +19,7 @@
19
19
  </template>
20
20
 
21
21
  <script>
22
- import controlMixin from "../controlMixin.js";
22
+ import controlMixin from "../mixins/controlMixin.js";
23
23
 
24
24
  export default {
25
25
  name: "DshPackage",
@@ -68,7 +68,7 @@
68
68
  </template>
69
69
 
70
70
  <script>
71
- import controlMixin from "../controlMixin.js";
71
+ import controlMixin from "../mixins/controlMixin.js";
72
72
  import DshBtnModal from "../../small/DshBtnModal.vue";
73
73
  import DshCascaderTable from "../../list/DshCascaderTable.vue";
74
74
 
@@ -88,7 +88,7 @@
88
88
  </template>
89
89
 
90
90
  <script>
91
- import controlMixin from "../controlMixin.js";
91
+ import controlMixin from "../mixins/controlMixin.js";
92
92
  import DshBtnModal from "../../small/DshBtnModal.vue";
93
93
  import BriFlatTable from "../../list/BriFlatTable.vue";
94
94
  import flatTableImportModal from "./flatTableImportModal.vue";
@@ -121,7 +121,7 @@
121
121
  </template>
122
122
 
123
123
  <script>
124
- import controlMixin from "../controlMixin.js";
124
+ import controlMixin from "../mixins/controlMixin.js";
125
125
  import BriTreeItem from "../../list/BriTreeItem.vue";
126
126
  import BriCard from "../../list/BriCard.vue";
127
127
 
@@ -200,7 +200,7 @@
200
200
  </template>
201
201
 
202
202
  <script>
203
- import controlMixin from "../../controlMixin.js";
203
+ import controlMixin from "../../mixins/controlMixin.js";
204
204
  import departMenu from "./departMenu.vue";
205
205
 
206
206
  export default {
@@ -9,7 +9,7 @@
9
9
  </template>
10
10
 
11
11
  <script>
12
- import controlMixin from "../controlMixin.js";
12
+ import controlMixin from "../mixins/controlMixin.js";
13
13
 
14
14
  export default {
15
15
  name: "DshBack",
@@ -5,7 +5,7 @@
5
5
  </template>
6
6
 
7
7
  <script>
8
- import controlMixin from "../controlMixin.js";
8
+ import controlMixin from "../mixins/controlMixin.js";
9
9
 
10
10
  export default {
11
11
  name: "DshUndeveloped",
@@ -422,7 +422,7 @@
422
422
  }
423
423
 
424
424
  &-control {
425
- .dsh-margin-bottom5();
425
+ margin-bottom: 5px;
426
426
  }
427
427
 
428
428
  &-blank {