Skip to content

Commit

Permalink
chore: ElementProCrud升级至0.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
BoBoooooo committed Jan 12, 2021
1 parent 2125400 commit ebdc782
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"axios": "^0.19.2",
"core-js": "3.6.5",
"dayjs": "1.8.20",
"element-pro-crud": "^0.8.2",
"element-pro-crud": "^0.8.3",
"element-ui": "^2.13.2",
"inquirer": "^6.5.2",
"lodash": "^4.17.14",
Expand Down
2 changes: 1 addition & 1 deletion src/views/devTools/TableDesignerModule.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default class TableDesignerModule extends Vue {
crud(DML.SELECT, 'ad_codelist_type').then((res) => {
this.dictList = res.data.list.map(item => ({
label: item.typeName,
value: item.codeValue,
value: item.id,
}));
});
}
Expand Down
1 change: 1 addition & 0 deletions src/views/person/Person.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
orderCondition="timestamp desc"
:visibleList="{
btnDel: true,
tableTitle: true
}"
>
<template #column_jobno="{row}">
Expand Down
4 changes: 2 additions & 2 deletions vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ module.exports = {
'/axios@0.19.2/dist/axios.min.js',
'/lodash@4.17.14/lodash.min.js',
'/core-js@2.6.5/client/shim.min.js',
'/element-pro-crud@0.8.2/lib/ProCrud.umd.min.js',
'/element-pro-crud@0.8.2/lib/ProCrud.css',
'/element-pro-crud@0.8.3/lib/ProCrud.umd.min.js',
'/element-pro-crud@0.8.3/lib/ProCrud.css',
],
append: false,
// hash: true,
Expand Down

0 comments on commit ebdc782

Please sign in to comment.