mooho-base-admin-plus 2.9.1 → 2.9.3

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.9.1",
4
+ "version": "2.9.3",
5
5
  "author": "jinyifan <jinyifan@mooho.com.cn>",
6
6
  "license": "MIT",
7
7
  "private": false,
@@ -1226,7 +1226,7 @@
1226
1226
  }
1227
1227
 
1228
1228
  // 级联更新时清空数据
1229
- if (column.controlType == 'Select' || column.controlType == 'SelectWithOther' || column.controlType == 'Radio') {
1229
+ if (column.controlType == 'Select' || column.controlType == 'Radio') {
1230
1230
  if (
1231
1231
  !column.dataSource.some(item => {
1232
1232
  return item.id == this.parseData(data, column.code);
@@ -1640,7 +1640,7 @@
1640
1640
  let column = this.columns[j];
1641
1641
  let value = this.parseData(row, column.code);
1642
1642
 
1643
- if (column.slot) {
1643
+ if (column.slot != 'normal') {
1644
1644
  continue;
1645
1645
  }
1646
1646
 
@@ -11,7 +11,7 @@
11
11
  :create-enable="allow('create')"
12
12
  :remove-enable="allow('remove')"
13
13
  @create="$refs.form.open()"
14
- @edit="({ row, index }) => $refs.form.open(row)"
14
+ @edit="({ row, index }) => $refs.form.open(row.customPage)"
15
15
  >
16
16
  <template #filterCommand>
17
17
  <Button v-if="allow('export')" size="small" type="info" custom-icon="fa fa-cloud-download-alt" @click="exportFile()">{{ $t('Front_Btn_Export') }}</Button>