mooho-base-admin-plus 2.4.14 → 2.4.16

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.4.14",
4
+ "version": "2.4.16",
5
5
  "author": "jinyifan <jinyifan@mooho.com.cn>",
6
6
  "license": "MIT",
7
7
  "private": false,
@@ -82,14 +82,14 @@ export default {
82
82
  data.groupColumn = JSON.parse(tableView.groupColumn);
83
83
  data.groupMethod = JSON.parse(tableView.groupMethod);
84
84
 
85
- await request({
85
+ result = await request({
86
86
  url: `api/${res}/group`,
87
87
  method: 'post',
88
88
  responseType: 'blob',
89
89
  data
90
90
  });
91
91
  } else {
92
- await request({
92
+ result = await request({
93
93
  url: `api/${res}/query`,
94
94
  method: 'post',
95
95
  responseType: 'blob',
@@ -117,14 +117,14 @@ export default {
117
117
  data.groupColumn = JSON.parse(tableView.groupColumn);
118
118
  data.groupMethod = JSON.parse(tableView.groupMethod);
119
119
 
120
- await request({
120
+ result = await request({
121
121
  url: `api/${res}/group`,
122
122
  method: 'post',
123
123
  responseType: 'blob',
124
124
  data
125
125
  });
126
126
  } else {
127
- await request({
127
+ result = await request({
128
128
  url: `api/${res}/query`,
129
129
  method: 'post',
130
130
  responseType: 'blob',
@@ -32,13 +32,7 @@
32
32
  <Button type="primary" custom-icon="fa fa-save" @click="save">{{ $t('Front_Btn_Save') }}</Button>
33
33
  <Button
34
34
  type="warning"
35
- v-if="
36
- $refs.form &&
37
- $refs.form.data &&
38
- $refs.form.data.application &&
39
- $refs.form.data.applicationID &&
40
- ($refs.form.data.application.status == 'Draft' || $refs.form.data.application.status == 'Rejected')
41
- "
35
+ v-if="$refs.form && $refs.form.data && $refs.form.data.application && ($refs.form.data.application.status == 'Draft' || $refs.form.data.application.status == 'Rejected')"
42
36
  custom-icon="fa fa-trash-alt"
43
37
  @click="cancel"
44
38
  >
@@ -328,6 +328,10 @@
328
328
  text-transform: uppercase;
329
329
  }
330
330
 
331
+ .ivu-modal-fullscreen .ivu-modal-body {
332
+ max-height: initial;
333
+ }
334
+
331
335
  /* 按钮图标 */
332
336
  /* .ivu-btn {
333
337
  line-height: 30px;