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 {
height: calc(100vh - 300px);
height: calc(100vh - 220px);
}
</style>
<style>
.oplinks svg {
width: 22px;
height: 22px;

View File

@ -51,6 +51,17 @@ export default {
start_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: {
@ -63,8 +74,8 @@ export default {
],
//
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: { //
name: '$buttons', children: [{ props: { type: 'submit', content: '搜索', status: 'primary' } }, //
@ -84,9 +95,9 @@ export default {
{ type: 'checkbox', width: 50 }, //
{ title: '操作', slots: { default: 'op' }, width: 120 },
{ field: 'name', sortable: true, title: '姓名', width: 250 },
{ field: 'phone', sortable: true, title: '手机号', width: 250 },
{ field: 'car_type', sortable: true, title: '车型', width: 250 },
{ field: 'name', sortable: true, title: '姓名', width: 130 },
{ field: 'phone', sortable: true, title: '手机号', width: 130 },
{ field: 'car_type', sortable: true, title: '车型', width: 100 },
{ field: 'work_city', sortable: true, title: '城市', width: 250 },
@ -111,3 +122,6 @@ export default {
};
</script>
<style scoped lang="less">
</style>

View File

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