This commit is contained in:
parent
038f5d2935
commit
240351df80
|
|
@ -528,11 +528,8 @@ export default {
|
|||
}
|
||||
|
||||
.gridPanel {
|
||||
height: calc(100vh - 300px);
|
||||
height: calc(100vh - 220px);
|
||||
}
|
||||
</style>
|
||||
|
||||
<style>
|
||||
.oplinks svg {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
@ -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: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue