Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
dev
/
zhiliang-light-mp
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
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
4ac18314
authored
2019-11-22 22:22:04 +0800
by
simon
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
默认提交
1 parent
e3fcabea
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
src/pages/contact-table/contact-table.js
src/pages/vip-login/vip-login.js
src/pages/contact-table/contact-table.js
View file @
4ac1831
...
...
@@ -197,7 +197,7 @@ Page({
let
count
=
_this
.
data
.
maxImg
-
_this
.
data
.
length
;
wx
.
chooseImage
({
sizeType
:
[
'original'
,
'compressed'
],
sourceType
:
[
'album'
],
sourceType
:
[
'album'
,
'camera'
],
count
:
count
,
success
(
res
)
{
// tempFilePath可以作为img标签的src属性显示图片
...
...
src/pages/vip-login/vip-login.js
View file @
4ac1831
...
...
@@ -47,7 +47,9 @@ Page({
this
.
queryMember
().
then
((
result
)
=>
{
let
auditStatus
=
this
.
data
.
userInfo
&&
this
.
data
.
userInfo
.
auditStatus
||
""
;
// console.log("viplogin - auditStatus:", auditStatus);
if
(
auditStatus
==
"authorization"
||
auditStatus
==
"unauthorized"
)
{
let
isModify
=
this
.
data
.
isModify
;
// console.log("isModify:", isModify)
if
((
auditStatus
==
"authorization"
||
auditStatus
==
"unauthorized"
)
&&
!
isModify
)
{
// 未验证和待验证
app
.
router
.
push
({
openType
:
"redirect"
,
...
...
@@ -288,7 +290,7 @@ Page({
let
count
=
_this
.
data
.
maxImg
-
_this
.
data
.
length
;
wx
.
chooseImage
({
sizeType
:
[
'original'
,
'compressed'
],
sourceType
:
[
'album'
],
sourceType
:
[
'album'
,
'camera'
],
count
:
1
,
success
(
res
)
{
// tempFilePath可以作为img标签的src属性显示图片
...
...
Please
register
or
sign in
to post a comment