mooho-base-admin-plus 2.0.2 → 2.0.4

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mooho-base-admin-plus",
3
3
  "description": "MOOHO basic framework for admin by Vue3",
4
- "version": "2.0.2",
4
+ "version": "2.0.4",
5
5
  "author": "jinyifan <jinyifan@mooho.com.cn>",
6
6
  "license": "MIT",
7
7
  "private": false,
@@ -434,16 +434,16 @@
434
434
  <Input type="number" style="width: 100px" number v-model="data.tabIndex" />
435
435
  </FormItem>
436
436
  </Col>
437
- <Col v-bind="grid24" v-if="viewType == 'FormView'">
438
- <FormItem label="文字提示" key="tooltip" prop="tooltip">
439
- <Input type="text" v-model="data.tooltip" maxlength="100" />
440
- </FormItem>
441
- </Col>
442
437
  <Col v-bind="grid24">
443
438
  <FormItem label="计算表达式" key="calculate" prop="calculate">
444
439
  <Input type="text" v-model="data.calculate" maxlength="500" />
445
440
  </FormItem>
446
441
  </Col>
442
+ <Col v-bind="grid24" v-if="viewType == 'FormView'">
443
+ <FormItem label="文字提示" key="tooltip" prop="tooltip">
444
+ <Input type="textarea" :autosize="true" v-model="data.tooltip" maxlength="500" />
445
+ </FormItem>
446
+ </Col>
447
447
  </Row>
448
448
  </Form>
449
449
  </div>