@netang/quasar 0.2.22 → 0.2.24

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.
@@ -133,7 +133,11 @@ export default {
133
133
  <style lang="scss">
134
134
  .n-toolbar {
135
135
  &__body {
136
- .q-btn {
136
+ display: flex;
137
+ flex-direction: row;
138
+ align-items: center;
139
+
140
+ > * {
137
141
  margin-top: 7px;
138
142
 
139
143
  // 非第一个子节点
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netang/quasar",
3
- "version": "0.2.22",
3
+ "version": "0.2.24",
4
4
 
5
5
  "description": "netang-quasar",
6
6
  "scripts": {
package/utils/$power.js CHANGED
@@ -1134,6 +1134,12 @@ async function request(options) {
1134
1134
 
1135
1135
  // 验证表单
1136
1136
  if (! await o.$form.formRef.value.validate()) {
1137
+
1138
+ // 轻提示
1139
+ $n_toast({
1140
+ message: '表单中有无效值',
1141
+ })
1142
+
1137
1143
  return
1138
1144
  }
1139
1145
  }