Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
X
XiTianSenMall
Project
Project
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
leiqingsong
XiTianSenMall
Commits
726f6fa1
Commit
726f6fa1
authored
Mar 18, 2021
by
leiqingsong
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev_lqs' into 'master'
优化 See merge request
!105
parents
5125169d
39bef84d
Show whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
21 additions
and
21 deletions
+21
-21
bank.vue
H5/src/views/bank.vue
+2
-2
canCashOut.vue
H5/src/views/canCashOut.vue
+1
-1
cash-out-record.vue
H5/src/views/cashOut/cash-out-record.vue
+1
-1
cash-out.vue
H5/src/views/cashOut/cash-out.vue
+4
-4
customer-service.vue
H5/src/views/customer-service.vue
+1
-1
grade.vue
H5/src/views/grade.vue
+1
-1
allIncome.vue
H5/src/views/income/allIncome.vue
+1
-1
income-detail.vue
H5/src/views/income/income-detail.vue
+1
-1
wallet.vue
H5/src/views/income/wallet.vue
+1
-1
modefyAvatar.vue
H5/src/views/modefyAvatar.vue
+1
-1
moments.vue
H5/src/views/moments/moments.vue
+1
-1
publish.vue
H5/src/views/moments/publish.vue
+1
-1
myStatus.vue
H5/src/views/my/myStatus.vue
+2
-2
register.vue
H5/src/views/register.vue
+1
-1
month-award.vue
H5/src/views/rewards/month-award.vue
+1
-1
settings.vue
H5/src/views/settings.vue
+1
-1
No files found.
H5/src/views/bank.vue
View file @
726f6fa1
...
...
@@ -112,7 +112,7 @@ export default {
});
}
else
{
const
addParams
=
params
;
addParams
.
userId
=
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
;
addParams
.
userId
=
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
;
addUserBankInfo
(
params
)
.
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
...
...
@@ -131,7 +131,7 @@ export default {
},
getBankInfo
()
{
const
params
=
{
userId
:
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
userId
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
};
getUserBankInfo
(
params
).
then
(
res
=>
{
if
(
res
.
code
===
0
&&
res
.
data
)
{
...
...
H5/src/views/canCashOut.vue
View file @
726f6fa1
...
...
@@ -59,7 +59,7 @@ export default {
methods
:
{
getWithdrawal
()
{
const
params
=
{
userId
:
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
userId
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
};
getWithdrawalAmount
(
params
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
...
...
H5/src/views/cashOut/cash-out-record.vue
View file @
726f6fa1
...
...
@@ -74,7 +74,7 @@ export default {
},
getRecordList
(
yearMonth
)
{
const
params
=
{
userId
:
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
,
userId
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
,
yearMonth
:
yearMonth
};
getWithdrawalRecord
(
params
).
then
(
res
=>
{
...
...
H5/src/views/cashOut/cash-out.vue
View file @
726f6fa1
...
...
@@ -96,7 +96,7 @@ export default {
name
:
"CashOut"
,
data
()
{
return
{
userPhone
:
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
,
userPhone
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
,
bank
:
""
,
money
:
null
,
account
:
0
,
...
...
@@ -128,7 +128,7 @@ export default {
},
canCashOut
()
{
const
params
=
{
userId
:
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
userId
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
};
getWithdrawalAmount
(
params
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
...
...
@@ -158,7 +158,7 @@ export default {
return
;
}
const
params
=
{
userId
:
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
userId
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
};
sendSms
(
params
).
then
();
this
.
validCode
=
null
;
...
...
@@ -176,7 +176,7 @@ export default {
},
getUserInfo
()
{
const
params
=
{
userId
:
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
userId
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
};
getUserBankInfo
(
params
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
...
...
H5/src/views/customer-service.vue
View file @
726f6fa1
...
...
@@ -52,7 +52,7 @@ export default {
},
getCustomerData
()
{
let
params
=
{
userId
:
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
userId
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
};
getCustomer
(
params
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
...
...
H5/src/views/grade.vue
View file @
726f6fa1
...
...
@@ -115,7 +115,7 @@ export default {
this
.
$router
.
push
({
name
:
urlName
});
},
getstatus
()
{
const
userId
=
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
;
const
userId
=
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
;
console
.
log
(
userId
);
const
_this
=
this
;
getForestStatus
(
userId
).
then
(
res
=>
{
...
...
H5/src/views/income/allIncome.vue
View file @
726f6fa1
...
...
@@ -28,7 +28,7 @@ export default {
methods
:
{
getAllRecord
()
{
const
params
=
{
userId
:
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
userId
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
};
showIncomeRecord
(
params
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
...
...
H5/src/views/income/income-detail.vue
View file @
726f6fa1
...
...
@@ -231,7 +231,7 @@ export default {
},
getDetail
()
{
const
params
=
{
userId
:
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
userId
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
};
queryIncomeDetail
(
params
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
...
...
H5/src/views/income/wallet.vue
View file @
726f6fa1
...
...
@@ -73,7 +73,7 @@ export default {
// 获取用户钱包展示信息
getWalletInfo
()
{
const
params
=
{
userId
:
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
userId
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
};
getMoneyPackage
(
params
)
.
then
(
res
=>
{
...
...
H5/src/views/modefyAvatar.vue
View file @
726f6fa1
...
...
@@ -50,7 +50,7 @@ export default {
this
.
canSubmit
=
false
;
const
params
=
{
headImage
:
this
.
imageUrl
,
userId
:
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
userId
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
};
setAvatar
(
params
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
...
...
H5/src/views/moments/moments.vue
View file @
726f6fa1
...
...
@@ -20,7 +20,7 @@ export default {
methods
:
{
getMoment
()
{
const
params
=
{
userId
:
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
userId
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
};
findByUserId
(
params
).
then
(
res
=>
{
console
.
log
(
res
);
...
...
H5/src/views/moments/publish.vue
View file @
726f6fa1
...
...
@@ -51,7 +51,7 @@ export default {
fd
.
append
(
"files"
,
file
.
file
);
});
fd
.
append
(
"zxField"
,
this
.
message
);
fd
.
append
(
"userId"
,
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
);
fd
.
append
(
"userId"
,
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
);
uploadImage
(
fd
).
then
();
},
openPopup
()
{
...
...
H5/src/views/my/myStatus.vue
View file @
726f6fa1
...
...
@@ -164,7 +164,7 @@ export default {
},
getRecommendInfo
()
{
const
params
=
{
userId
:
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
userId
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
};
recomendInfo
(
params
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
...
...
@@ -181,7 +181,7 @@ export default {
},
getRecommendDetail
(
level
)
{
const
params
=
{
userId
:
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
,
userId
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
,
userlevel
:
level
};
recommendDetail
(
params
).
then
(
res
=>
{
...
...
H5/src/views/register.vue
View file @
726f6fa1
...
...
@@ -78,7 +78,7 @@ export default {
data
()
{
return
{
form
:
{
userId
:
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
,
userId
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
,
sms
:
""
,
beInvitedCode
:
""
},
...
...
H5/src/views/rewards/month-award.vue
View file @
726f6fa1
...
...
@@ -120,7 +120,7 @@ export default {
},
getData
()
{
const
params
=
{
userId
:
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
userId
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
};
monthRewards
(
params
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
...
...
H5/src/views/settings.vue
View file @
726f6fa1
...
...
@@ -125,7 +125,7 @@ export default {
this
.
inviteeCode
=
this
.
fillCode
;
const
params
=
{
inviteCode
:
this
.
fillCode
,
userId
:
JSON
.
par
a
se
(
localStorage
.
getItem
(
"user"
)).
userId
userId
:
JSON
.
parse
(
localStorage
.
getItem
(
"user"
)).
userId
};
fillInviteCode
(
params
).
then
();
},
...
...
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