mooho-base-admin-plus 2.4.25 → 2.4.27
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
CHANGED
package/src/mixins/page.js
CHANGED
|
@@ -513,6 +513,8 @@ export default {
|
|
|
513
513
|
|
|
514
514
|
if (data == null) {
|
|
515
515
|
result += expression;
|
|
516
|
+
} else if (typeof data === 'object') {
|
|
517
|
+
result += expression;
|
|
516
518
|
} else if (isNaN(data) || data.toString().length > 16) {
|
|
517
519
|
result += "'" + String(data) + "'";
|
|
518
520
|
} else {
|
|
@@ -95,11 +95,12 @@
|
|
|
95
95
|
|
|
96
96
|
/* 表单标签 */
|
|
97
97
|
.form-title {
|
|
98
|
+
background-color: #eee;
|
|
99
|
+
padding-left: 12px;
|
|
98
100
|
font-weight: bold;
|
|
99
101
|
font-size: 17px;
|
|
100
|
-
/* margin-left: 12px; */
|
|
101
102
|
margin-bottom: 16px;
|
|
102
|
-
border-bottom: dotted #ccc 1px;
|
|
103
|
+
/* border-bottom: dotted #ccc 1px; */
|
|
103
104
|
line-height: 30px;
|
|
104
105
|
}
|
|
105
106
|
|