This commit is contained in:
xielue 2023-06-15 15:11:43 +08:00
parent 038f5d2935
commit 240351df80
3 changed files with 24 additions and 13 deletions

View File

@ -528,11 +528,8 @@ export default {
} }
.gridPanel { .gridPanel {
height: calc(100vh - 300px); height: calc(100vh - 220px);
} }
</style>
<style>
.oplinks svg { .oplinks svg {
width: 22px; width: 22px;
height: 22px; height: 22px;

View File

@ -51,6 +51,17 @@ export default {
start_time: 0, // start_time: 0, //
end_time: 0, // end_time: 0, //
exportFileTitle: "车贷客户信息列表",
enabledExport: true,
enabledImport: false,
enabledImportTemplate: false,
exportColumns: [
{ title: '姓名', field: "name" },
{ title: '手机号', field: "phone" },
{ title: '车型', field: "car_type" },
{ title: '城市', field: "work_city" }
],
// //
searchFormData: { searchFormData: {
@ -63,8 +74,8 @@ export default {
], ],
// //
searchFormItems: [ // searchFormItems: [ //
{ field: 'name', title: '姓名', span: 5, itemRender: { name: '$input', props: { placeholder: '请输入姓名' } } }, { field: 'name', title: '姓名', span: 6, itemRender: { name: '$input', props: { placeholder: '请输入姓名' } } },
{ span: 6, slots: { default: 'date' } },
{ {
align: 'right', span: 4, itemRender: { // align: 'right', span: 4, itemRender: { //
name: '$buttons', children: [{ props: { type: 'submit', content: '搜索', status: 'primary' } }, // name: '$buttons', children: [{ props: { type: 'submit', content: '搜索', status: 'primary' } }, //
@ -84,9 +95,9 @@ export default {
{ type: 'checkbox', width: 50 }, // { type: 'checkbox', width: 50 }, //
{ title: '操作', slots: { default: 'op' }, width: 120 }, { title: '操作', slots: { default: 'op' }, width: 120 },
{ field: 'name', sortable: true, title: '姓名', width: 250 }, { field: 'name', sortable: true, title: '姓名', width: 130 },
{ field: 'phone', sortable: true, title: '手机号', width: 250 }, { field: 'phone', sortable: true, title: '手机号', width: 130 },
{ field: 'car_type', sortable: true, title: '车型', width: 250 }, { field: 'car_type', sortable: true, title: '车型', width: 100 },
{ field: 'work_city', sortable: true, title: '城市', width: 250 }, { field: 'work_city', sortable: true, title: '城市', width: 250 },
@ -110,4 +121,7 @@ export default {
} }
}; };
</script> </script>
<style scoped lang="less">
</style>

View File

@ -9,7 +9,7 @@ const view = {
const routerMap = { const routerMap = {
}; };
routerMap['Basic']= { routerMap['Basic']= {
name: 'Basic', name: '资料管理',
icon: 'idcard', icon: 'idcard',
component: view.blank, component: view.blank,
meta: { meta: {
@ -19,7 +19,7 @@ routerMap['Basic']= {
} }
}; };
routerMap['basic']= { routerMap['basic']= {
name: 'basic', name: '资料管理',
icon: 'idcard', icon: 'idcard',
component: view.blank, component: view.blank,
meta: { meta: {