Commit 4a970d36 by agan

xg

parent df576290
Showing with 37 additions and 1 deletions
...@@ -74,7 +74,9 @@ if ($firefly.urlData.appversion >= 7400) { ...@@ -74,7 +74,9 @@ if ($firefly.urlData.appversion >= 7400) {
} }
function openExtra() { function openExtra() {
let infos = [ let infos;
if (fileName == 'com.happy.live') {
infos = [
[{ [{
"fontStyle": { "fontStyle": {
"highLight": false // 是否高亮 "highLight": false // 是否高亮
...@@ -111,6 +113,40 @@ if ($firefly.urlData.appversion >= 7400) { ...@@ -111,6 +113,40 @@ if ($firefly.urlData.appversion >= 7400) {
"webFunc": "$firefly.closeWebView()", "webFunc": "$firefly.closeWebView()",
}] }]
] ]
} else {
infos = [
[{
"fontStyle": {
"highLight": false // 是否高亮
},
"explain": $firefly.langList[$firefly.langType].lang2,
"webFunc": "$firefly.refreshWeb()",
}],
[{
"fontStyle": {
"highLight": false // 是否高亮
},
"explain": $firefly.langList[$firefly.langType].lang3,
"webFunc": "$firefly.goCustomerService()",
},
{
"fontStyle": {
"highLight": false // 是否高亮
},
"explain": $firefly.langList[$firefly.langType].lang4,
"webFunc": "goShare()",
},
{
"fontStyle": {
"highLight": true // 是否高亮
},
"explain": $firefly.langList[$firefly.langType].lang6,
"webFunc": "$firefly.closeWebView()",
}]
]
}
$firefly.openExtra(infos); $firefly.openExtra(infos);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment