Skip to content
项目
群组
代码片段
帮助
正在加载...
登录/注册
切换导航
广
广东建设用地-前端
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
广东建设用地
广东建设用地-前端
Commits
796b97a0
提交
796b97a0
authored
11月 14, 2023
作者:
gjx
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改地块bug
上级
25080f0b
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
27 行增加
和
7 行删除
+27
-7
CdUpload.vue
src/components/customComponent/CdUpload.vue
+1
-1
EditTrwr.vue
src/components/customComponent/EditTrwr.vue
+4
-0
suBainForm.vue
src/components/customComponent/suBainForm.vue
+15
-5
index.vue
...layouts/default/header/components/user-dropdown/index.vue
+7
-1
DataFilling.vue
src/views/dkgl/investigate/modal/DataFilling.vue
+0
-0
没有找到文件。
src/components/customComponent/CdUpload.vue
浏览文件 @
796b97a0
...
...
@@ -142,7 +142,7 @@ const formSchemas: FormSchema[] = [
upLoad({
wrdkid: props.data.wrdkid,
id: props.data.id,
dkpic
: arry[arry.length - 1]
xxdcjcsjbg
: arry[arry.length - 1]
})
},
...
...
src/components/customComponent/EditTrwr.vue
浏览文件 @
796b97a0
...
...
@@ -235,6 +235,8 @@ watch(
obj
.
cbGz
=
obj
.
cbGzz
?
true
:
false
obj
.
cbSxz
=
obj
.
cbSxz
?
true
:
false
obj
.
wcc
=
obj
.
wcc
?
true
:
false
obj
.
cbGzz
=
obj
.
cbGzz
?
true
:
false
if
(
obj
.
wrwSxz
)
{
obj
.
wrwSxz
=
obj
.
wrwSxz
.
split
(
','
)
wrwSxz
.
value
=
obj
.
wrwSxz
...
...
@@ -260,6 +262,8 @@ async function getFormValueTr() {
fieldsValue
.
cbGz
=
fieldsValue
.
cbGzz
?
1
:
0
fieldsValue
.
cbSxz
=
fieldsValue
.
cbSxz
?
1
:
0
fieldsValue
.
wcc
=
fieldsValue
.
wcc
?
1
:
0
fieldsValue
.
cbGzz
=
fieldsValue
.
cbGzz
?
1
:
0
return
fieldsValue
}
...
...
src/components/customComponent/suBainForm.vue
浏览文件 @
796b97a0
...
...
@@ -54,6 +54,7 @@ const formSchemas: FormSchema[] = [
{
label
:
'网址'
,
field
:
'gswz'
,
component
:
'Input'
,
show
:
false
},
...
...
@@ -65,7 +66,7 @@ const formSchemas: FormSchema[] = [
},
{
label
:
`
${
props
.
labelFirst
}
调查开始日期`
,
field
:
'
cbdcwc
sj'
,
field
:
'
fb
sj'
,
component
:
'DatePicker'
,
componentProps
:
{
//日期格式化,页面上显示的值
...
...
@@ -78,7 +79,7 @@ const formSchemas: FormSchema[] = [
},
{
label
:
`
${
props
.
labelFirst
}
调查完成日期`
,
field
:
'
cbdcfb
sj'
,
field
:
'
wc
sj'
,
component
:
'DatePicker'
,
componentProps
:
{
//日期格式化,页面上显示的值
...
...
@@ -93,6 +94,7 @@ const formSchemas: FormSchema[] = [
label
:
'公示'
,
field
:
'projectType'
,
component
:
'JDictSelectTag'
,
defaultValue
:
'1'
,
slot
:
'gstype'
,
colProps
:
{
span
:
24
},
},
...
...
@@ -100,10 +102,18 @@ const formSchemas: FormSchema[] = [
label
:
'是否为超标地块'
,
field
:
'pollueted'
,
defaultValue
:
'0'
,
component
:
'
JDictSelectTag
'
,
component
:
'
RadioGroup
'
,
componentProps
:
{
dictCode
:
'yn'
,
type
:
'radio'
options
:
[
{
label
:
'否'
,
value
:
'0'
,
},
{
label
:
'是'
,
value
:
'1'
,
},
],
},
},
{
...
...
src/layouts/default/header/components/user-dropdown/index.vue
浏览文件 @
796b97a0
...
...
@@ -135,8 +135,14 @@ export default defineComponent({
console
.
log
(
v
,
'v'
)
menus
.
setMenus
(
v
)
if
(
v
?.
children
)
{
console
.
log
(
v
?.
children
,
'22'
)
if
(
v
?.
children
[
0
]?.
children
)
{
go
(
v
?.
children
[
0
].
children
[
0
]?.
path
)
if
(
v
?.
children
[
0
]?.
children
[
0
].
hideTab
)
{
go
(
v
?.
children
[
0
].
path
)
}
else
{
go
(
v
?.
children
[
0
].
children
[
0
]?.
path
)
}
}
else
{
go
(
v
?.
children
[
0
]?.
path
)
}
...
...
src/views/dkgl/investigate/modal/DataFilling.vue
浏览文件 @
796b97a0
差异被折叠。
点击展开。
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论