mooho-base-admin-plus 0.4.21 → 0.4.22

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": "0.4.21",
4
+ "version": "0.4.22",
5
5
  "author": "jinyifan <jinyifan@mooho.com.cn>",
6
6
  "dotnetVersion": "1.4.0",
7
7
  "license": "MIT",
@@ -13,8 +13,8 @@
13
13
  </div>
14
14
  </template>
15
15
  <div class="ivu-ml-8 ivu-mr-8">
16
- <view-form v-show="!isCustom" ref="form" :readonly="readonly"></view-form>
17
- <component v-show="isCustom" :is="customComponent" :readonly="readonly" ref="customComponent"></component>
16
+ <view-form v-if="!isCustom" ref="form" :readonly="readonly"></view-form>
17
+ <component v-if="isCustom" ref="customComponent" :is="customComponent" :readonly="readonly"></component>
18
18
  </div>
19
19
  <template #footer>
20
20
  <div>
@@ -226,9 +226,6 @@
226
226
 
227
227
  let res = await modelApi.query('Outcome', { activityFromID: row.activityInst.activityID });
228
228
  this.outcomes = res.data;
229
-
230
- // res = await modelApi.query('Task', { processInstID: row.processInstID });
231
- // this.$refs.approvalHistoryTable.loadData(res.data);
232
229
  },
233
230
  // 执行结果
234
231
  async action(outcome) {