centaline-data-driven 1.1.62 → 1.1.63
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/package.json +1 -1
- package/src/centaline/css/common.css +4 -2
- package/src/centaline/css/max.css +6 -0
- package/src/centaline/dynamicSearchList/src/dynamicSearchTable.vue +4 -1
- package/wwwroot/static/centaline/centaline-data-driven.js +1 -1
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
package/package.json
CHANGED
|
@@ -589,11 +589,13 @@ html {
|
|
|
589
589
|
background-color: #bebebe;
|
|
590
590
|
height: 5px;
|
|
591
591
|
border-radius: 4px;
|
|
592
|
+
display: block;
|
|
592
593
|
}
|
|
593
|
-
|
|
594
|
+
::-webkit-scrollbar {
|
|
594
595
|
width: 6px;
|
|
595
596
|
height:6px;
|
|
596
|
-
background-color: #f1f1f1
|
|
597
|
+
background-color: #f1f1f1;
|
|
598
|
+
display: block;
|
|
597
599
|
}
|
|
598
600
|
|
|
599
601
|
.el-input-group__append, .el-input-group__prepend {
|
|
@@ -146,6 +146,12 @@
|
|
|
146
146
|
width:4px;
|
|
147
147
|
height:6px;
|
|
148
148
|
}
|
|
149
|
+
.ct-selectOptionVertical::-webkit-scrollbar {
|
|
150
|
+
width: 6px!important;
|
|
151
|
+
height:6px!important;
|
|
152
|
+
background-color: #f1f1f1!important;
|
|
153
|
+
display: block!important;
|
|
154
|
+
}
|
|
149
155
|
.ct-table-auto{
|
|
150
156
|
white-space: nowrap;
|
|
151
157
|
}
|
|
@@ -754,9 +754,12 @@
|
|
|
754
754
|
self.operationLoading = true;
|
|
755
755
|
field.doAction(submitData, (data) => {
|
|
756
756
|
self.operationLoading = false;
|
|
757
|
-
|
|
757
|
+
if (!field.flagFreshCurrentRow) {
|
|
758
|
+
self.model.doAction({ responseData: data });
|
|
759
|
+
}
|
|
758
760
|
self.$forceUpdate();
|
|
759
761
|
self.$refs.footer.$forceUpdate();
|
|
762
|
+
self.updateCurrentRow(field);
|
|
760
763
|
})
|
|
761
764
|
}
|
|
762
765
|
}
|