Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
zrch-risk-39
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Administrator
zrch-risk-39
Commits
5b3bb188
提交
5b3bb188
authored
1月 29, 2026
作者:
kxjia
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改报送校验
上级
85224dc7
显示空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
22 行增加
和
10 行删除
+22
-10
BaosongTaskAlloc.api.ts
...client-39/src/views/baosong/alloc/BaosongTaskAlloc.api.ts
+8
-6
index.vue
zrch-risk-client-39/src/views/baosong/report/index.vue
+2
-1
BaosongDataValid.api.ts
...k-client-39/src/views/baosong/tpl/BaosongDataValid.api.ts
+7
-0
BaosongTplDrawer.vue
...-39/src/views/baosong/tpl/components/BaosongTplDrawer.vue
+1
-1
BaosongTplItem.vue
...nt-39/src/views/baosong/tpl/components/BaosongTplItem.vue
+4
-2
没有找到文件。
zrch-risk-client-39/src/views/baosong/alloc/BaosongTaskAlloc.api.ts
浏览文件 @
5b3bb188
...
...
@@ -13,15 +13,10 @@ enum Api {
exportXls
=
'/baosong/baosongTaskAlloc/exportXls'
,
saveOrUpdateBatch
=
'/baosong/baosongTaskAlloc/saveOrUpdateBatch'
,
queryAllTplForUser
=
'/baosong/baosongTaskAlloc/queryAllTplForUser'
,
queryAllTplItemForUser
=
'/baosong/baosongTaskAlloc/queryAllTplItemForUser'
,
queryCurTaskAllocUser
=
'/baosong/baosongTaskAlloc/queryCurTaskAllocUser'
,
updateFillStaBatch
=
'/baosong/baosongTaskAlloc/updateFillStaBatch'
,
findUserRightForTplItem
=
'/baosong/baosongTaskAlloc/findUserRightForTplItem'
,
}
/**
* 导出api
...
...
@@ -105,3 +100,10 @@ export const updateFillStaBatch = (params) => {
}
export
const
findUserRightForTplItem
=
(
params
)
=>
{
let
url
=
Api
.
findUserRightForTplItem
;
return
defHttp
.
get
({
url
:
url
,
params
});
}
zrch-risk-client-39/src/views/baosong/report/index.vue
浏览文件 @
5b3bb188
...
...
@@ -32,6 +32,7 @@ import { ref, onMounted, computed,nextTick } from 'vue';
import
{
findUserRightForTpl
}
from
'../tpl/BaosongTpl.api'
;
import
{
useRoute
,
useRouter
}
from
'vue-router'
;
import
{
take
}
from
'lodash-es'
;
const
route
=
useRoute
();
const
router
=
useRouter
();
const
queryParam
=
ref
({
...
...
@@ -181,7 +182,7 @@ const dataMap = ref({})
const
dataAllList
=
ref
([])
async
function
iniData
()
{
dataAllList
.
value
=
await
findUserRightForTpl
({});
dataAllList
.
value
=
await
findUserRightForTpl
({
taskId
:
queryParam
.
value
.
taskId
});
dataMap
.
value
=
dataAllList
.
value
.
reduce
((
result
,
item
)
=>
{
const
key
=
item
.
tp
;
if
(
!
result
[
key
])
{
...
...
zrch-risk-client-39/src/views/baosong/tpl/BaosongDataValid.api.ts
浏览文件 @
5b3bb188
...
...
@@ -12,6 +12,8 @@ enum Api {
importExcel
=
'/baosong/baosongDataValid/importExcel'
,
exportXls
=
'/baosong/baosongDataValid/exportXls'
,
queryAllList
=
'/baosong/baosongDataValid/queryAllList'
,
getTblvalidFormula
=
'/baosong/baosongDataValid/getTblvalidFormula'
,
}
/**
* 导出api
...
...
@@ -33,6 +35,11 @@ export const queryAllList = (params) =>{
return
defHttp
.
get
({
url
:
Api
.
queryAllList
,
params
});
}
export
const
getTblvalidFormula
=
(
params
)
=>
{
return
defHttp
.
get
({
url
:
Api
.
getTblvalidFormula
,
params
});
}
/**
* 删除单个
*/
...
...
zrch-risk-client-39/src/views/baosong/tpl/components/BaosongTplDrawer.vue
浏览文件 @
5b3bb188
...
...
@@ -12,7 +12,7 @@
import
TplItem
from
'./TplItem.vue'
;
import
{
saveOrUpdateBatch
}
from
'../../alloc/BaosongTaskAlloc.api'
;
import
{
VXETable
}
from
'vxe-table'
;
import
{
textAreaProps
}
from
'ant-design-vue/lib/input/inputProps'
;
import
{
textAreaProps
}
from
'ant-design-vue/lib/input/inputProps'
;
const
isVisible
=
ref
(
false
)
...
...
zrch-risk-client-39/src/views/baosong/tpl/components/BaosongTplItem.vue
浏览文件 @
5b3bb188
...
...
@@ -73,8 +73,8 @@
<a-card
class=
"gutter-box"
style=
"height:100%"
title=
"验证公式"
>
<div
style=
"margin: 5px;"
>
<vxe-select
v-model=
"formData.tplItemid"
placeholder=
""
size=
"mini"
>
<vxe-option
v-for=
"item in selTplItems"
:key=
"item.
code
"
:value=
"item.id"
:label=
"item.title"
></vxe-option>
<vxe-select
v-model=
"formData.tplItemid"
placeholder=
""
size=
"mini"
:clearable=
"true"
>
<vxe-option
v-for=
"item in selTplItems"
:key=
"item.
id
"
:value=
"item.id"
:label=
"item.title"
></vxe-option>
</vxe-select>
</div>
<div
style=
"height: 150px;margin: 5px;"
>
...
...
@@ -155,6 +155,8 @@ import { VxeUI, VxeTextareaInstance } from 'vxe-pc-ui'
import
{
allTplItems
}
from
'../BaosongTplItem.api'
import
{
allTpls
}
from
'../BaosongTpl.api'
import
{
saveOrUpdate
}
from
'../BaosongDataValid.api'
import
{
itemFormSchema
}
from
'/@/views/system/dict/dict.data'
import
{
Item
}
from
'ant-design-vue/es/menu'
interface
TplItem
{
id
:
number
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论