meixioacomponent 0.2.88 → 0.2.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/meixioacomponent.common.js +364 -361
- package/lib/meixioacomponent.umd.js +364 -361
- package/lib/meixioacomponent.umd.min.js +18 -18
- package/package.json +1 -1
- package/packages/components/base/baseArea/baseArea.vue +1 -2
- package/packages/components/base/baseMoverVerifiBar/baseMoverVerifiBar.vue +6 -3
- package/packages/components/base/baseTimeLine/baseTimeLine.vue +5 -0
- package/packages/components/base/baseTimeLine/baseTimeLineLeft.vue +5 -1
- package/packages/components/proForm/proForm/pro_form.vue +1 -1
- package/packages/components/proForm/proForm/pro_form_item.vue +2 -4
- package/packages/components/proPageTable/oa_pro_table-header.vue +2 -0
- package/packages/components/proPageTable/oa_pro_table.vue +3 -1
package/package.json
CHANGED
|
@@ -412,12 +412,11 @@ export default {
|
|
|
412
412
|
}
|
|
413
413
|
/deep/ .el-input__inner {
|
|
414
414
|
font-weight: var(--font-weight-kg);
|
|
415
|
-
border-color:var(--color-gray-d);
|
|
415
|
+
border-color: var(--color-gray-d);
|
|
416
416
|
}
|
|
417
417
|
.is-open {
|
|
418
418
|
background: var(--color-primary);
|
|
419
419
|
/deep/ .el-input__inner {
|
|
420
|
-
color: white !important;
|
|
421
420
|
&::placeholder {
|
|
422
421
|
color: var(--color-error) !important;
|
|
423
422
|
}
|
|
@@ -89,7 +89,7 @@ export default {
|
|
|
89
89
|
|
|
90
90
|
iconClass() {
|
|
91
91
|
if (this.statusComplate) {
|
|
92
|
-
return "
|
|
92
|
+
return "meixicomponenticon-zhengque";
|
|
93
93
|
} else {
|
|
94
94
|
return "meixicomponenticon-icon-arrow-right";
|
|
95
95
|
}
|
|
@@ -161,9 +161,12 @@ export default {
|
|
|
161
161
|
overflow: hidden;
|
|
162
162
|
user-select: none;
|
|
163
163
|
position: relative;
|
|
164
|
-
border-radius: var(--radius);
|
|
165
164
|
background: var(--color-gray-m);
|
|
166
|
-
border:
|
|
165
|
+
border: 2px solid var(--color-gray-d);
|
|
166
|
+
border-radius: calc(var(--radius) * 2);
|
|
167
|
+
&:hover {
|
|
168
|
+
border-color: var(--color-primary);
|
|
169
|
+
}
|
|
167
170
|
.mover-box {
|
|
168
171
|
z-index: 3;
|
|
169
172
|
width: 40px;
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
:size="`s`"
|
|
19
19
|
:plain="true"
|
|
20
20
|
:event="false"
|
|
21
|
+
:iconClass="`element`"
|
|
21
22
|
v-if="timeLineItem.icon"
|
|
22
23
|
:name="timeLineItem.icon"
|
|
23
24
|
></base-icon>
|
|
@@ -80,12 +81,15 @@ export default {
|
|
|
80
81
|
|
|
81
82
|
<style lang="less" scoped>
|
|
82
83
|
.base-time-line-left-wrap {
|
|
83
|
-
width:
|
|
84
|
+
width: auto;
|
|
84
85
|
height: 100%;
|
|
85
86
|
display: flex;
|
|
86
87
|
flex-flow: row nowrap;
|
|
87
88
|
align-items: flex-start;
|
|
88
89
|
justify-content: flex-end;
|
|
90
|
+
.hasTimeWeek {
|
|
91
|
+
width: 50px;
|
|
92
|
+
}
|
|
89
93
|
.time-week-wrap {
|
|
90
94
|
padding: 0px var(--padding-5);
|
|
91
95
|
span {
|
|
@@ -224,7 +224,7 @@ export default {
|
|
|
224
224
|
mounted() {
|
|
225
225
|
this.$nextTick(() => {
|
|
226
226
|
if (this.$props.disableWatcher) {
|
|
227
|
-
this.triggerDisable();
|
|
227
|
+
this.triggerDisable(this.$props.value);
|
|
228
228
|
}
|
|
229
229
|
});
|
|
230
230
|
},
|
|
@@ -351,9 +351,7 @@ export default {
|
|
|
351
351
|
return this.$props.value;
|
|
352
352
|
},
|
|
353
353
|
set(val) {
|
|
354
|
-
console.log(val);
|
|
355
354
|
this.$emit("input", val);
|
|
356
|
-
console.log(this.$props.disableWatcher);
|
|
357
355
|
if (this.$props.disableWatcher) {
|
|
358
356
|
this.triggerDisable(val);
|
|
359
357
|
}
|
|
@@ -424,8 +422,8 @@ export default {
|
|
|
424
422
|
type: item.type,
|
|
425
423
|
result: item.fn(val),
|
|
426
424
|
};
|
|
427
|
-
console.log(obj);
|
|
428
425
|
|
|
426
|
+
console.log(val);
|
|
429
427
|
this.$emit("disableWatcherResult", obj);
|
|
430
428
|
});
|
|
431
429
|
},
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
:name="lockClass"
|
|
17
17
|
class="lock-icons"
|
|
18
18
|
:active="config.lock"
|
|
19
|
+
v-if="!isAverageWidth"
|
|
19
20
|
@iconClick="handleClick('lock')"
|
|
20
21
|
></base-icon>
|
|
21
22
|
|
|
@@ -63,6 +64,7 @@ export default {
|
|
|
63
64
|
require: true,
|
|
64
65
|
},
|
|
65
66
|
index: {},
|
|
67
|
+
isAverageWidth: {},
|
|
66
68
|
},
|
|
67
69
|
methods: {
|
|
68
70
|
handleClick(type) {
|
|
@@ -80,8 +80,9 @@
|
|
|
80
80
|
</template>
|
|
81
81
|
|
|
82
82
|
<el-table-column
|
|
83
|
-
|
|
83
|
+
fixed="left"
|
|
84
84
|
width="60px"
|
|
85
|
+
type="selection"
|
|
85
86
|
:selectable="selected"
|
|
86
87
|
></el-table-column>
|
|
87
88
|
<el-table-column
|
|
@@ -100,6 +101,7 @@
|
|
|
100
101
|
:scope="scope"
|
|
101
102
|
:config="item"
|
|
102
103
|
:index="index"
|
|
104
|
+
:isAverageWidth="isAverageWidth"
|
|
103
105
|
@headerItemLock="headerItemLock"
|
|
104
106
|
@headerItemUnlock="headerItemUnlock"
|
|
105
107
|
@handleScreenItem="handleScreenItem"
|