Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
576e70c0
提交
576e70c0
authored
9月 02, 2021
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加移动端Cascader组件
上级
ad35a530
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
186 行增加
和
2 行删除
+186
-2
MobileCascader.jsx
one_stop_public/tableCompon/CascaderDiy/MobileCascader.jsx
+58
-0
styles.less
one_stop_public/tableCompon/CascaderDiy/styles.less
+109
-0
index.jsx
one_stop_public/tableCompon/index.jsx
+19
-2
没有找到文件。
one_stop_public/tableCompon/CascaderDiy/MobileCascader.jsx
0 → 100644
浏览文件 @
576e70c0
import
React
,
{
useMemo
}
from
'react'
;
import
{
List
,
Picker
}
from
'antd-mobile'
;
import
styles
from
'./styles.less'
;
const
getItemChildren
=
(
childrenList
,
parent
)
=>
{
if
(
!
childrenList
||
!
childrenList
.
length
)
{
return
[];
}
for
(
let
item
of
childrenList
)
{
if
(
item
.
label
.
indexOf
(
parent
.
label
)
>
-
1
)
{
item
.
label
=
item
.
label
.
replace
(
parent
.
label
,
''
);
}
for
(
let
proviceName
of
[
'内蒙古'
,
'广西'
,
'新疆'
,
'香港'
,
'澳门'
,
'西藏'
,
'宁夏'
])
{
item
.
label
=
item
.
label
.
replace
(
proviceName
,
''
);
}
if
(
item
.
children
)
{
item
.
children
=
getItemChildren
(
item
.
children
,
parent
);
}
}
return
childrenList
;
}
export
default
function
MobileCascader
(
props
)
{
// 级联选择
const
{
onChange
,
options
,
label
,
disabled
,
value
,
json
,
otherProps
}
=
props
;
// console.log(props);
let
opt
=
useMemo
(()
=>
{
return
options
&&
Array
.
isArray
(
options
)
&&
options
.
map
((
x
)
=>
{
return
{
label
:
x
.
label
,
value
:
x
.
value
,
children
:
getItemChildren
(
x
.
children
,
x
),
};
});
},
[
options
]);
return
(
<
div
className=
{
styles
.
mobileFormInput
}
>
<
Picker
data=
{
opt
||
[]
}
cascade=
{
true
}
// cols={1}
disabled=
{
disabled
}
value=
{
value
}
extra=
{
disabled
?
''
:
json
.
placeholder
||
'点击选择'
}
onChange=
{
(
val
)
=>
{
console
.
log
(
val
);
onChange
(
val
||
undefined
);
}
}
{
...
otherProps
?
.
props
}
>
<
List
.
Item
arrow=
{
disabled
?
''
:
'horizontal'
}
>
{
/*{label}*/
}
</
List
.
Item
>
</
Picker
>
</
div
>
);
}
one_stop_public/tableCompon/CascaderDiy/styles.less
0 → 100644
浏览文件 @
576e70c0
.mobileFormInput {
border-bottom: 1px solid #eee;
:global {
.am-input-label,
.am-textarea-label,
.am-list-content {
white-space: pre-line !important;
font-size: 14px !important;
}
.am-list-item.am-input-item {
height: auto;
}
//.am-list-item .am-list-line .am-list-content{
// padding-left: 15px;
//}
.am-list-item {
padding-left: 0;
}
.am-list-item .am-list-line {
padding-right: 0;
}
.am-list-extra {
flex-basis: 100% !important;
font-size: 14px !important;
}
.am-list-item .am-input-control input {
text-align: right;
}
.am-list-item
.am-input-control
.fake-input-container
.fake-input-placeholder {
font-size: 14px;
}
}
input,
textarea {
font-size: 14px !important;
}
}
.mobileFormItem {
margin-bottom: 0px !important;
:global {
.ant-form-item-label {
/*隐藏手机端 字段的label 使用 antd-mobile 替代*/
display: inline !important;
height: 1px !important;
}
}
}
.viewDetail {
display: grid;
justify-content: start;
align-items: center;
width: 100%;
grid-template-columns: 15% 35% 15% 35%;
.title {
padding: 15px;
margin: -1px;
background-color: #fafafa;
border: 1px solid #eee;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.name {
margin: -1px;
padding: 15px;
background-color: #fff;
border: 1px solid #eee;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
}
.viewDetailMobile {
display: grid;
justify-content: start;
align-items: center;
width: 100%;
grid-template-columns: 35% 65%;
border: 1px solid #eee;
margin-top: -1px;
.title {
padding: 15px;
margin-bottom: 0;
//margin: -1px;
background-color: #fafafa;
//overflow: hidden;
//white-space: nowrap;
//text-overflow: ellipsis;
}
.name {
//margin: -1px;
padding: 15px;
background-color: #fff;
//overflow: hidden;
//white-space: nowrap;
//text-overflow: ellipsis;
}
}
one_stop_public/tableCompon/index.jsx
浏览文件 @
576e70c0
...
...
@@ -58,6 +58,7 @@ import { formulaList } from '../excelInitFuc/functionList';
import
FilePreview
from
'../filePreview'
;
import
DraftEditorCom
from
'../App/DraftEditorCom'
;
import
MobileItem
from
'./MobileItem'
;
import
MobileCascader
from
"./CascaderDiy/MobileCascader"
;
const
Bs64
=
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
;
const
base64
=
baseX
(
Bs64
);
...
...
@@ -905,7 +906,7 @@ export default class tableCom extends Component {
...
options
,
});
if
(
url
.
indexOf
(
'localhost'
)
>
-
1
)
{
url
=
url
.
replace
(
window
.
location
.
origin
,
window
.
specialImportantSystemConfig
.
gateWayPort
);
url
=
url
.
replace
(
window
.
location
.
origin
,
window
.
specialImportantSystemConfig
?
.
gateWayPort
);
}
umiRequest
(
url
,
{
data
:
requestParams
,
...
...
@@ -2828,6 +2829,22 @@ export default class tableCom extends Component {
style=
{
{
width
:
json
.
width
}
}
/>,
);
if
(
get
===
'mobile'
)
{
cm
=
getFieldDecorator
(
dataColumn
.
base52
,
{
initialValue
:
initValue
,
rules
:
json
.
vlds
&&
json
.
vlds
.
length
>
0
?
json
.
vlds
:
[{
required
:
required
,
message
:
'请选择'
+
dataColumn
.
title
}],
})(
<
MobileCascader
options=
{
options
}
label=
{
title
}
disabled=
{
disabled
}
json=
{
json
}
/>);
}
if
(
get
===
'mobile'
&&
((
json
.
isMobileLabel
!=
null
&&
json
.
isMobileLabel
)
||
...
...
@@ -2844,7 +2861,7 @@ export default class tableCom extends Component {
</
MobileItem
>
);
}
else
if
(
get
===
'mobile'
)
{
cm
=
<
div
>
{
cm
}
</
div
>;
cm
=
<
div
>
{
cm
}
</
div
>;
}
break
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论