Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
wfc13
Project
Project
Details
Activity
Releases
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
wildfirecode13
wfc13
Commits
07e7f310
Commit
07e7f310
authored
Aug 18, 2021
by
shunx 马
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
删除spark/ui
parent
b3249a9d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
49 additions
and
9 deletions
+49
-9
package.json
project/package.json
+1
-0
cost.ts
project/src/panels/cost.ts
+48
-9
No files found.
project/package.json
View file @
07e7f310
...
...
@@ -22,6 +22,7 @@
"webpack-merge"
:
"^4.1.2"
},
"dependencies"
:
{
"@spark/api-base"
:
"^2.0.30"
,
"@spark/share"
:
"^2.0.90"
,
"duiba-utils"
:
"^1.0.11"
},
...
...
project/src/panels/cost.ts
View file @
07e7f310
import
{
showPanel
,
wait
}
from
"../../module/ctrls"
;
import
{
showPanel
,
showToast
,
wait
}
from
"../../module/ctrls"
;
import
{
RES
}
from
"../../module/RES"
;
import
{
layers
}
from
"../../module/views/layers"
;
import
{
Panel
}
from
"../../module/views/Panel"
;
...
...
@@ -12,8 +12,14 @@ import { NoPrizePanel } from "./noprize";
import
{
notEnoughMoneyPanel
}
from
"./notEnoughMoney"
;
import
{
PrizePanel
}
from
"./prize"
;
import
{
waitAPI
}
from
"./wait2"
;
import
{
polling
}
from
'@spark/api-base'
;
let
section
;
let
projectId
:
string
;
const
projectxString
=
"projectx/"
;
export
class
CostPanel
extends
Panel
{
start
()
{
super
.
start
();
...
...
@@ -28,25 +34,56 @@ export class CostPanel extends Panel {
this
.
getPrize
(
e
.
target
);
}
getProjectId
():
string
{
if
(
projectId
)
return
projectId
;
let
windowUrl
=
window
.
location
.
href
;
let
splitArr
=
windowUrl
.
split
(
projectxString
);
if
(
splitArr
.
length
!=
2
)
{
return
projectId
=
"projectId"
}
let
start
=
windowUrl
.
indexOf
(
projectxString
)
+
projectxString
.
length
;
let
end
=
splitArr
[
1
].
indexOf
(
"/"
);
return
projectId
=
windowUrl
.
substr
(
start
,
end
);
}
getPrize
=
async
(
btn
:
FYGE
.
Sprite
)
=>
{
btn
.
mouseEnable
=
false
;
const
indexResult
=
getWebData
(
WebNetName
.
index
);
const
params
:
any
=
{
toPlaywayId
:
'dazzle'
,
toActionId
:
'drawPrize'
};
let
result
,
prizeData
;
let
result
,
prizeData
,
resultPolling
;
if
(
indexResult
.
data
.
type
==
1
)
{
const
projectId
=
this
.
getProjectId
();
console
.
log
(
"====>"
,
projectId
)
params
.
credits
=
indexResult
.
data
.
needCredits
;
result
=
await
sendWebNet
(
WebNetName
.
getCreditCost
,
params
);
await
waitAPI
(
500
);
if
(
!
result
.
success
)
{
resultPolling
=
await
polling
(
(
rsp
)
=>
rsp
.
code
==
"0000000000"
,
`/projectx/
${
projectId
}
/credits/queryStatus.do`
,
{
ticketNum
:
result
.
data
},
10
,
500
,
'get'
).
catch
((
e
)
=>
{
console
.
log
(
"2222222"
,
e
);
showToast
(
"积分扣除失败"
);
})
if
(
resultPolling
==
1
)
{
if
(
!
result
.
success
)
{
btn
.
mouseEnable
=
true
;
return
;
}
prizeData
=
await
sendWebNetWithToken
(
WebNetName
.
drawPrize
,
{
ticket
:
result
.
data
});
btn
.
mouseEnable
=
true
;
return
;
}
else
if
(
resultPolling
==
2
)
{
showToast
(
"积分扣除失败"
);
}
prizeData
=
await
sendWebNetWithToken
(
WebNetName
.
drawPrize
,
{
ticket
:
result
.
data
});
btn
.
mouseEnable
=
true
;
}
else
{
prizeData
=
await
sendWebNetWithToken
(
WebNetName
.
drawPrize
);
...
...
@@ -70,6 +107,8 @@ export class CostPanel extends Panel {
}
get
groupNames
()
{
return
[
"cost"
];
}
...
...
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