明树Git Lab

Commit 8af886d4 authored by zhanghan's avatar zhanghan

1

parent ffd4ac49
Pipeline #112030 passed with stage
in 18 seconds
<template> <template>
<div class="manage-container"> <div class="manage-container">
<div class="manage-wrap"> <div class="manage-wrap">
<search-form @search="handleSearch" /> <search-form @search="handleSearch" :items="items" />
<div class="manage-header"> <div class="manage-header">
<div class="header-left"></div> <div class="header-left"></div>
<div class="header-right"> <div class="header-right">
...@@ -65,6 +65,66 @@ const handleSearch = (formData) => { ...@@ -65,6 +65,66 @@ const handleSearch = (formData) => {
getProjectData(formData); getProjectData(formData);
}; };
const items = ref([
{
type: "input",
label: "项目名称",
prop: "projectName",
placeholder: "请输入项目名称",
span: 6,
clearable: true,
},
{
type: "input",
label: "项目编号",
prop: "projectCode",
placeholder: "请输入项目编号",
span: 6,
clearable: true,
},
{
type: "dict-select",
label: "财务报表类型",
prop: "cwbblx",
dictName: "cwbblx",
placeholder: "请选择财务报表类型",
span: 6,
clearable: true,
},
{
type: "input",
label: "直属企业",
prop: "zsqy",
placeholder: "请输入直属企业",
span: 6,
clearable: true,
},
{
type: "input",
label: "管理主体",
prop: "glzt",
placeholder: "请输入管理主体",
span: 6,
clearable: true,
},
{
type: "input",
label: "联系人",
prop: "lxr",
placeholder: "请输入联系人",
span: 6,
clearable: true,
},
{
type: "dict-select",
label: "项目区域",
prop: "xmqy",
dictName: "xmqy",
placeholder: "请选择项目区域",
span: 6,
clearable: true,
},
]);
const router = useRouter(); const router = useRouter();
const { proxy } = getCurrentInstance(); const { proxy } = getCurrentInstance();
...@@ -82,23 +142,28 @@ let tableColumns = ref([ ...@@ -82,23 +142,28 @@ let tableColumns = ref([
showOverflowTooltip: true, showOverflowTooltip: true,
}, },
{ {
prop: "ssejqy", prop: "tzsxyjfl",
label: "所属二级企业", label: "一级分类",
showOverflowTooltip: true,
},
{
prop: "tzsxejfl",
label: "二级分类",
showOverflowTooltip: true, showOverflowTooltip: true,
}, },
{ {
prop: "xmgsmc", prop: "zyfzy",
label: "项目公司名称", label: "主页/非主业",
showOverflowTooltip: true, showOverflowTooltip: true,
}, },
{ {
prop: "xmkgsjyj", prop: "cwbblx",
label: "项目预计起始时间", label: "财务报表类型",
showOverflowTooltip: true, showOverflowTooltip: true,
}, },
{ {
prop: "xmjgsjyj", prop: "cgqk",
label: "项目预计完成时间", label: "参股情况",
showOverflowTooltip: true, showOverflowTooltip: true,
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment