Toggle navigation
Toggle navigation
This project
Loading...
Sign in
罗广聪
/
ProtectGod
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
罗广聪
2017-09-28 19:24:08 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7d4af5fa628a28463bd11f3a298a08aad1c22b06
7d4af5fa
1 parent
9d8782cc
discover alert
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
index.ios.js
src/pages/Discover/discover.js → src/pages/Mine/discover.js
index.ios.js
View file @
7d4af5f
...
...
@@ -19,7 +19,7 @@ import ProductTemplate from "./src/Components/ProductTemplate";
import
ArticleTemplate
from
"./src/Components/articleTemplate"
;
import
Details
from
"./src/pages/InsuranceCircle/details"
;
import
Release
from
"./src/pages/InsuranceCircle/release"
;
import
Discover
from
"./src/pages/
Discover
/discover"
;
import
Discover
from
"./src/pages/
Mine
/discover"
;
import
AIBegin
from
"./src/pages/Home/AISolution/Begin"
;
import
AIQuestion
from
"./src/pages/Home/AISolution/Question"
;
import
AISolution
from
"./src/pages/Home/AISolution/Solution"
;
...
...
src/pages/
Discover
/discover.js
→
src/pages/
Mine
/discover.js
View file @
7d4af5f
...
...
@@ -23,9 +23,7 @@ export default class Discover extends Component {
result
:
""
};
}
handleCopyPress
(
string
)
{
Clipboard
.
setString
(
string
);
}
componentWillMount
()
{
this
.
getImages
();
}
...
...
@@ -60,8 +58,13 @@ export default class Discover extends Component {
}
});
}
// handleCopyPress(string) {
// Clipboard.setString(string);
// }
copyWords
(
string
)
{
const
{
goBack
}
=
this
.
props
.
navigation
;
Clipboard
.
setString
(
string
);
Alert
.
alert
(
"复制成功"
,
null
,()
=>
goBack
());
}
ShareSomething
()
{
const
that
=
this
;
...
...
Please
register
or
login
to post a comment