Skip to content
项目
群组
代码片段
帮助
正在加载...
登录/注册
切换导航
广
广东建设用地-前端
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
广东建设用地
广东建设用地-前端
Commits
d0d5c912
提交
d0d5c912
authored
7月 30, 2024
作者:
jinrb
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
统计分析--业务开展统计--新增专家评审信息统计
上级
eac55769
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
117 行增加
和
3 行删除
+117
-3
api.ts
src/views/tjfx/business/api.ts
+5
-0
data.ts
src/views/tjfx/business/data.ts
+42
-3
zjPs.vue
src/views/tjfx/business/zjPs.vue
+70
-0
没有找到文件。
src/views/tjfx/business/api.ts
浏览文件 @
d0d5c912
...
...
@@ -59,6 +59,11 @@ export const dkpsxxtj = (params) => {
return
defHttp
.
get
({
url
:
`/ywkztj/dkpsxxtj`
,
params
});
}
export
const
dkpsxxtjExcel
=
'/ywkztj/dkpsxxtjExcel'
// 专家信息评审记录
export
const
zjpsxxtj
=
(
params
)
=>
{
return
defHttp
.
get
({
url
:
`/ywkztj/zjpsxxtj`
,
params
});
}
export
const
zjpsxxtjExcel
=
'/ywkztj/zjpsxxtjExcel'
// 记录
export
const
dkjlxq
=
(
params
)
=>
{
return
defHttp
.
get
({
url
:
`/hydwtj/dkjlxq`
,
params
});
...
...
src/views/tjfx/business/data.ts
浏览文件 @
d0d5c912
...
...
@@ -762,7 +762,7 @@ export const MonthsearchFormSchema: FormSchema[] = [
// 地块评审
export
const
DkpsFormSchema
:
FormSchema
[]
=
[
{
label
:
'地块
名称
'
,
label
:
'地块
编码
'
,
field
:
'wrdkbm'
,
component
:
'Input'
,
componentProps
:
{
...
...
@@ -772,13 +772,13 @@ export const DkpsFormSchema: FormSchema[] = [
]
export
const
DkpsColumns
:
BasicColumn
[]
=
[
{
title
:
'地块
编码
'
,
title
:
'地块
名称
'
,
dataIndex
:
'wrdkmc'
,
resizable
:
true
,
width
:
220
,
},
{
title
:
'地块
名称
'
,
title
:
'地块
编码
'
,
dataIndex
:
'wrdkbm'
,
width
:
220
,
resizable
:
true
,
...
...
@@ -871,3 +871,42 @@ export const DkpsColumns: BasicColumn[] = [
]
},
]
// 地块评审
export
const
ZjpsFormSchema
:
FormSchema
[]
=
[
{
label
:
'专家名称'
,
field
:
'zjxm'
,
component
:
'Input'
,
componentProps
:
{
placeholder
:
'请输入专家名称'
}
},
]
export
const
ZjpsColumns
:
BasicColumn
[]
=
[
{
title
:
'序号'
,
dataIndex
:
'index'
,
key
:
'index'
,
width
:
150
,
customRender
:
({
index
})
=>
{
return
index
+
1
;
},
},
{
title
:
'专家名称'
,
dataIndex
:
'zjxm'
,
resizable
:
true
,
width
:
220
,
},
{
title
:
'参与项目'
,
dataIndex
:
'cyxm'
,
resizable
:
true
,
},
{
title
:
'项目时间(评审会时间)'
,
dataIndex
:
'hysj'
,
width
:
220
,
resizable
:
true
,
},
]
src/views/tjfx/business/zjPs.vue
0 → 100644
浏览文件 @
d0d5c912
<
template
>
<BasicTable
@
register=
"registerTable"
>
<!--
<template
#
form-userLevle=
"
{ model, field }">
<a-select
v-model:value=
"model[field]"
placeholder=
"请选择"
@
change=
"change(model)"
:fieldNames=
"
{ label: 'text', value: 'value' }"
:options="Options"
>
</a-select>
</
template
>
<
template
#
form-category=
"{ model, field }"
>
<a-tree-select
v-model:value=
"model[field]"
show-search
placeholder=
"请选择"
allow-clear
tree-default-expand-all
:field-names=
"
{ label: 'name', value: 'id', children: 'children' }"
:tree-data="treeData"
tree-node-filter-prop="label"
>
<template
#
suffixIcon
>
<SmileOutlined
/>
</
template
>
</a-tree-select>
</template>
-->
<
template
#
tableTitle
>
<a-button
type=
"primary"
preIcon=
"ant-design:export-outlined"
v-auth=
"'ywkz-zjpsxx-dc'"
@
click=
"onExportXls"
>
导出
</a-button>
</
template
>
</BasicTable>
</template>
<
script
setup
lang=
"ts"
>
import
{
BasicTable
}
from
'@/components/Table'
;
import
{
useListPage
}
from
'/@/hooks/system/useListPage'
;
import
{
ZjpsColumns
,
ZjpsFormSchema
}
from
'./data'
;
import
{
zjpsxxtj
,
zjpsxxtjExcel
}
from
'./api'
;
const
{
tableContext
,
onExportXls
}
=
useListPage
({
tableProps
:
{
title
:
''
,
api
:
zjpsxxtj
,
columns
:
ZjpsColumns
,
canResize
:
false
,
// rowSelection: { type: 'checkbox' },
rowKey
:
'wrdkid'
,
clickToRowSelect
:
false
,
showActionColumn
:
false
,
formConfig
:
{
labelWidth
:
120
,
schemas
:
ZjpsFormSchema
,
autoSubmitOnEnter
:
true
,
showAdvancedButton
:
false
,
},
actionColumn
:
{
width
:
120
,
fixed
:
'right'
,
},
},
exportConfig
:
{
name
:
'专家评审信息统计'
,
url
:
zjpsxxtjExcel
,
},
});
const
[
registerTable
,
{
reload
}]
=
tableContext
;
</
script
>
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论