Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
schedule
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fengzhaoyu
schedule
Commits
5bd00ca2
Commit
5bd00ca2
authored
Apr 25, 2020
by
xiexiaoqin
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
1273711b
381c50f9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
8 deletions
+29
-8
fileList.axml
components/fileList/fileList.axml
+2
-1
relatedApp.js
components/relatedApp/relatedApp.js
+5
-1
appDetails.js
pages/appDetails/appDetails.js
+22
-6
meetingDetail.acss
pages/meetingDetail/meetingDetail.acss
+0
-0
No files found.
components/fileList/fileList.axml
View file @
5bd00ca2
...
@@ -12,7 +12,8 @@
...
@@ -12,7 +12,8 @@
<view a:if="{{isCanDelete}}" class="iconfont iconicon_noAgreed1" catchTap="removeFile" data-id="{{item.fileId}}"></view>
<view a:if="{{isCanDelete}}" class="iconfont iconicon_noAgreed1" catchTap="removeFile" data-id="{{item.fileId}}"></view>
</view>
</view>
</view>
</view>
<view class="btns-pop" a:if="{{fileView.id == logId && (organizer === currentPeople ? true : currentPeople === fileView.creatorId)}}">
<!-- && (organizer === currentPeople ? true : currentPeople === fileView.creatorId) -->
<view class="btns-pop" a:if="{{fileView.id == logId}}">
<view class="edit" catchTap="updateFile" data-fileView="{{fileView}}">
<view class="edit" catchTap="updateFile" data-fileView="{{fileView}}">
编辑
编辑
</view>
</view>
...
...
components/relatedApp/relatedApp.js
View file @
5bd00ca2
...
@@ -26,7 +26,11 @@ create.Component({
...
@@ -26,7 +26,11 @@ create.Component({
didUnmount
()
{},
didUnmount
()
{},
methods
:
{
methods
:
{
getData
()
{
getData
()
{
getThirdUserPlatForm
().
then
(
res
=>
{
let
data
=
{
platForm
:
""
,
ddUserId
:
getApp
().
globalData
.
userid
};
getThirdUserPlatForm
(
data
).
then
(
res
=>
{
let
relatedAppPlatformList
=
[];
let
relatedAppPlatformList
=
[];
res
.
data
.
data
.
forEach
(
item
=>
{
res
.
data
.
data
.
forEach
(
item
=>
{
relatedAppPlatformList
.
push
(
item
.
platform
);
relatedAppPlatformList
.
push
(
item
.
platform
);
...
...
pages/appDetails/appDetails.js
View file @
5bd00ca2
...
@@ -47,12 +47,28 @@ create.Page({
...
@@ -47,12 +47,28 @@ create.Page({
clearInterval
(
interval
);
clearInterval
(
interval
);
}
}
requestNum
++
;
requestNum
++
;
getThirdUserPlatForm
().
then
(
res
=>
{
let
data
=
{
let
relatedAppPlatformList
=
[];
platForm
:
this
.
data
.
platform
,
res
.
data
.
data
.
forEach
(
item
=>
{
ddUserId
:
getApp
().
globalData
.
userid
if
(
item
.
platform
===
this
.
data
.
platform
)
{
};
getThirdUserPlatForm
(
data
).
then
(
res
=>
{
console
.
log
(
JSON
.
stringify
(
res
));
console
.
log
(
res
.
data
.
msg
===
"当前账号已被其他账号绑定!"
);
if
(
res
.
data
.
msg
===
"当前账号已被其他账号绑定!"
)
{
this
.
setData
({
isBind
:
false
,
bindStatus
:
"binded"
});
setTimeout
(()
=>
{
that
.
setData
({
isLoading
:
false
});
},
10000
);
clearInterval
(
interval
);
}
else
if
(
res
.
data
.
data
)
{
if
(
res
.
data
.
data
.
platform
===
this
.
data
.
platform
)
{
this
.
setData
({
this
.
setData
({
name
:
item
.
userName
,
name
:
res
.
data
.
data
.
userName
,
isBind
:
true
,
isBind
:
true
,
bindStatus
:
"success"
bindStatus
:
"success"
});
});
...
@@ -65,7 +81,7 @@ create.Page({
...
@@ -65,7 +81,7 @@ create.Page({
this
.
$store
.
data
.
relatedAppNeedUpdate
=
true
;
this
.
$store
.
data
.
relatedAppNeedUpdate
=
true
;
this
.
update
();
this
.
update
();
}
}
}
);
}
});
});
},
1000
);
},
1000
);
},
},
...
...
pages/meetingDetail/meetingDetail.acss
View file @
5bd00ca2
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment