明树Git Lab

Commit 8af886d4 authored by zhanghan's avatar zhanghan

1

parent ffd4ac49
Pipeline #112030 passed with stage
in 18 seconds
<template>
<div class="manage-container">
<div class="manage-wrap">
<search-form @search="handleSearch" />
<search-form @search="handleSearch" :items="items" />
<div class="manage-header">
<div class="header-left"></div>
<div class="header-right">
......@@ -65,6 +65,66 @@ const handleSearch = (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 { proxy } = getCurrentInstance();
......@@ -82,23 +142,28 @@ let tableColumns = ref([
showOverflowTooltip: true,
},
{
prop: "ssejqy",
label: "所属二级企业",
prop: "tzsxyjfl",
label: "一级分类",
showOverflowTooltip: true,
},
{
prop: "tzsxejfl",
label: "二级分类",
showOverflowTooltip: true,
},
{
prop: "xmgsmc",
label: "项目公司名称",
prop: "zyfzy",
label: "主页/非主业",
showOverflowTooltip: true,
},
{
prop: "xmkgsjyj",
label: "项目预计起始时间",
prop: "cwbblx",
label: "财务报表类型",
showOverflowTooltip: true,
},
{
prop: "xmjgsjyj",
label: "项目预计完成时间",
prop: "cgqk",
label: "参股情况",
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