Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
M
manager-app-sz
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
ReactNative
manager-app-sz
Commits
5c5a4bc3
提交
5c5a4bc3
authored
11月 21, 2017
作者:
吴强
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
更新图标,更新基地选择
上级
09f0a8af
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
19 行增加
和
13 行删除
+19
-13
ic_launcher.png
android/app/src/main/res/mipmap-hdpi/ic_launcher.png
+0
-0
ic_launcher.png
android/app/src/main/res/mipmap-mdpi/ic_launcher.png
+0
-0
ic_launcher.png
android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
+0
-0
ic_launcher.png
android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
+0
-0
strings.xml
android/app/src/main/res/values/strings.xml
+1
-1
domain.js
src/models/domain.js
+18
-12
没有找到文件。
android/app/src/main/res/mipmap-hdpi/ic_launcher.png
查看替换文件 @
09f0a8af
浏览文件 @
5c5a4bc3
3.3 KB
|
W:
|
H:
254.6 KB
|
W:
|
H:
2-up
Swipe
Onion skin
android/app/src/main/res/mipmap-mdpi/ic_launcher.png
查看替换文件 @
09f0a8af
浏览文件 @
5c5a4bc3
2.2 KB
|
W:
|
H:
254.6 KB
|
W:
|
H:
2-up
Swipe
Onion skin
android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
查看替换文件 @
09f0a8af
浏览文件 @
5c5a4bc3
4.7 KB
|
W:
|
H:
254.6 KB
|
W:
|
H:
2-up
Swipe
Onion skin
android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
查看替换文件 @
09f0a8af
浏览文件 @
5c5a4bc3
7.5 KB
|
W:
|
H:
254.6 KB
|
W:
|
H:
2-up
Swipe
Onion skin
android/app/src/main/res/values/strings.xml
浏览文件 @
5c5a4bc3
<resources>
<string
moduleConfig=
"true"
name=
"reactNativeCodePush_androidDeploymentKey"
></string>
<string
name=
"app_name"
>
bolanManagerApp
</string>
<string
name=
"app_name"
>
深圳棚改云
</string>
</resources>
src/models/domain.js
浏览文件 @
5c5a4bc3
...
...
@@ -16,7 +16,6 @@ const findTarget = (list, dmpath) => {
return
list
[
i
];
}
else
{
const
data
=
findTarget
(
list
[
i
].
children
,
dmpath
);
// console.log(data);
if
(
data
)
{
return
data
;
}
...
...
@@ -28,22 +27,21 @@ const createData = async (list, dmpath, payload) => {
// 根据path用fetchDomains 查出children
let
childrens
=
[];
let
pathArray
;
if
(
dmpath
!==
'/'
||
dmpath
.
split
(
'/'
).
length
===
3
)
{
if
(
dmpath
!==
'/'
&&
dmpath
.
split
(
'/'
).
length
!==
4
)
{
childrens
=
await
fetchDomains
(
dmpath
);
console
.
info
(
'ChildRen-------------------------'
);
console
.
info
(
childrens
);
console
.
info
(
'ChildRen------------------------'
);
if
(
childrens
.
length
!==
0
)
{
const
childrenPath
=
childrens
[
0
].
path
;
pathArray
=
[...
payload
,
childrenPath
];
console
.
info
(
pathArray
)
;
pathArray
=
[...
payload
,
''
]
;
}
else
{
pathArray
=
[...
payload
]
;
}
}
else
{
pathArray
=
[...
payload
];
}
const
cols
=
pathArray
.
length
;
const
childrenData
=
[];
if
(
childrens
.
length
!==
0
)
{
childrenData
.
push
({
label
:
'请选择'
,
value
:
''
,
children
:
[]
});
childrens
.
map
(({
name
,
path
})
=>
{
childrenData
.
push
({
label
:
name
,
value
:
path
,
children
:
[]
});
return
childrenData
;
...
...
@@ -52,9 +50,13 @@ const createData = async (list, dmpath, payload) => {
// 根据path在list查出需要添加children的对象target
const
findData
=
findTarget
(
list
,
dmpath
);
findData
.
children
=
childrenData
;
const
data
=
list
;
console
.
log
(
list
);
return
{
data
,
pathArray
,
cols
};
// if (childrens.length !== 0) {
// await createData(list, pathArray[pathArray.length - 1], pathArray);
// return { data, pathArray, cols: pathArray.length };
// } else {
// console.info('xxxxx');
return
{
data
:
list
,
pathArray
,
cols
:
pathArray
.
length
};
// }
};
export
default
{
...
...
@@ -123,6 +125,10 @@ export default {
},
*
getUserInfo
(
ignored
,
{
put
,
call
})
{
const
userInfo
=
yield
call
(
getUser
);
const
domain
=
yield
call
(
getDomain
);
console
.
info
(
domain
.
path
);
const
list
=
yield
call
(
fetchDomains
,
domain
.
path
,
true
);
console
.
info
(
list
[
0
].
name
);
yield
put
({
type
:
'queryUserInfo'
,
payload
:
userInfo
});
},
},
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论