@zscreate/zhxy-app-component 1.0.326 → 1.0.328
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<view class="form-item"
|
|
3
|
-
:class="{ showFalse: showFalse, isScroll: isScroll, isCorrected: widget.options.isCorrected ? true : false }"
|
|
3
|
+
:class="{ showFalse: showFalse, isScroll: isScroll, isCorrected: widget.options.isCorrected ? true : false, tableItemview0 :tableKey && (itemkey % 3) == 0, tableItemview1 : tableKey && (itemkey % 3) == 1,tableItemview2 : tableKey && (itemkey % 3) == 2, }"
|
|
4
4
|
@click="resetShowFalse">
|
|
5
5
|
<view v-if="widget.options.isCorrected" class="editCorrent correctedWrap" >
|
|
6
6
|
<view @click.native="CorrentItem">原值是: {{ correctOldValue(widget.options.oldValue) }}</view>
|
|
@@ -1238,7 +1238,7 @@ export default {
|
|
|
1238
1238
|
// this.models[this.widget.model] = val;
|
|
1239
1239
|
}
|
|
1240
1240
|
let rule = this.rules[this.widget.model]
|
|
1241
|
-
if (rule.length > 0) {
|
|
1241
|
+
if (rule && rule.length > 0) {
|
|
1242
1242
|
this.validateInit()
|
|
1243
1243
|
}
|
|
1244
1244
|
},
|
|
@@ -2580,14 +2580,31 @@ checkbox-group label {
|
|
|
2580
2580
|
color: #FFFFFF;
|
|
2581
2581
|
}
|
|
2582
2582
|
}
|
|
2583
|
-
.
|
|
2583
|
+
.tableItemview0 {
|
|
2584
2584
|
background-color: #f4f7fc !important;
|
|
2585
|
+
.uni-list {
|
|
2586
|
+
background-color: #f4f7fc !important;
|
|
2587
|
+
}
|
|
2585
2588
|
}
|
|
2586
|
-
.
|
|
2589
|
+
.tableItemview1 {
|
|
2587
2590
|
background-color: #f4f9fb !important;
|
|
2591
|
+
.uni-list {
|
|
2592
|
+
background-color: #f4f9fb !important;
|
|
2593
|
+
}
|
|
2588
2594
|
}
|
|
2589
|
-
.
|
|
2595
|
+
.tableItemview2 {
|
|
2590
2596
|
background-color: #f6f6fc !important;
|
|
2597
|
+
.uni-list {
|
|
2598
|
+
background-color: #f6f6fc !important;
|
|
2599
|
+
}
|
|
2600
|
+
}
|
|
2601
|
+
|
|
2602
|
+
::v-deep .u-numberbox .u-icon-minus {
|
|
2603
|
+
display: none;
|
|
2604
|
+
}
|
|
2605
|
+
|
|
2606
|
+
::v-deep .u-numberbox .u-icon-plus {
|
|
2607
|
+
display: none;
|
|
2591
2608
|
}
|
|
2592
2609
|
|
|
2593
2610
|
.isCorrected {
|