Skip to content

Commit

Permalink
fix(demo): fix display problem of editable table with apiSelect
Browse files Browse the repository at this point in the history
修复ApiSelect在可编辑表格中的显示问题
  • Loading branch information
mynetfan committed Jul 18, 2021
1 parent 18567e1 commit 535bddd
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
14 changes: 13 additions & 1 deletion src/views/demo/table/EditCellTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import { defineComponent, ref } from 'vue';
import { BasicTable, useTable, BasicColumn } from '/@/components/Table';
import { optionsListApi } from '/@/api/demo/select';
import { demoListApi } from '/@/api/demo/table';
const optionsData = ref([]);
const columns: BasicColumn[] = [
{
title: '输入框',
Expand Down Expand Up @@ -87,6 +88,17 @@
resultField: 'list',
labelField: 'name',
valueField: 'id',
onOptionsChange(options) {
optionsData.value = options;
},
},
editValueMap(value: any) {
const found = optionsData.value.find((option) => option.id === value);
if (found) {
return found.name;
} else {
return value;
}
},
width: 200,
},
Expand Down
14 changes: 13 additions & 1 deletion src/views/demo/table/EditRowTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
import { optionsListApi } from '/@/api/demo/select';
import { demoListApi } from '/@/api/demo/table';
const optionsData = ref([]);
const columns: BasicColumn[] = [
{
title: '输入框',
Expand Down Expand Up @@ -98,6 +100,17 @@
resultField: 'list',
labelField: 'name',
valueField: 'id',
onOptionsChange(options) {
optionsData.value = options;
},
},
editValueMap(value: any) {
const found = optionsData.value.find((option) => option.id === value);
if (found) {
return found.name;
} else {
return value;
}
},
width: 200,
},
Expand Down Expand Up @@ -149,7 +162,6 @@
components: { BasicTable, TableAction },
setup() {
const currentEditKeyRef = ref('');
const [registerTable] = useTable({
title: '可编辑行示例',
titleHelpMessage: [
Expand Down

0 comments on commit 535bddd

Please sign in to comment.