Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
lumastoreapp
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xieyishang
lumastoreapp
Commits
8002c101
Commit
8002c101
authored
Feb 22, 2021
by
xieyishang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
addxx
parent
59783790
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
24 deletions
+13
-24
manifest.json
manifest.json
+6
-21
pages/index/index.vue
pages/index/index.vue
+4
-1
pages/myStockRight/myStockRight.vue
pages/myStockRight/myStockRight.vue
+3
-2
No files found.
manifest.json
View file @
8002c101
...
...
@@ -2,8 +2,8 @@
"name"
:
"鹿马商家助手"
,
"appid"
:
"__UNI__1EA80F1"
,
//这个是
web
的
"description"
:
"商家"
,
"versionName"
:
"1.11
4
"
,
"versionCode"
:
111
4
,
"versionName"
:
"1.11
6
"
,
"versionCode"
:
111
6
,
"transformPx"
:
false
,
"compatible"
:
{
"ignoreVersion"
:
true
//
true
表示忽略版本检查提示框,HBuilderX
1.9
.
0
及以上版本支持
...
...
@@ -133,9 +133,9 @@
},
"splashscreen"
:
{
"android"
:
{
"hdpi"
:
"
C:/Users/Administrator/Desktop/da/6b51802bba0a32ac69392831b1fc324
.png"
,
"xhdpi"
:
"
C:/Users/Administrator/Desktop/da/6b51802bba0a32ac69392831b1fc324
.png"
,
"xxhdpi"
:
"
C:/Users/Administrator/Desktop/da/6b51802bba0a32ac69392831b1fc324
.png"
"hdpi"
:
"
F:/证书/d0abce82961b508e6a0b9924d15fe86
.png"
,
"xhdpi"
:
"
F:/证书/d0abce82961b508e6a0b9924d15fe86
.png"
,
"xxhdpi"
:
"
F:/证书/d0abce82961b508e6a0b9924d15fe86
.png"
},
"ios"
:
{
"iphone"
:
{
...
...
@@ -172,22 +172,7 @@
}
},
"compilerVersion"
:
2
,
"nativePlugins"
:
{
"push-live"
:
{
"__plugin_info__"
:
{
"name"
:
"安卓保活插件(限制 防杀)含前台服务,后台运行,白名单,定时任务等"
,
"description"
:
"如果你的应用希望能够一直在后台运行而不被系统自动杀死的话,可以尝试一下。群485147231"
,
"platforms"
:
"Android"
,
"url"
:
"https://ext.dcloud.net.cn/plugin?id=2930"
,
"android_package_name"
:
"com.app.lumastore"
,
"ios_bundle_id"
:
"com.app.lumastore"
,
"isCloud"
:
true
,
"bought"
:
1
,
"pid"
:
"2930"
,
"parameters"
:
{}
}
}
}
"nativePlugins"
:
{}
},
/*
快应用特有相关
*/
"quickapp"
:
{},
...
...
pages/index/index.vue
View file @
8002c101
...
...
@@ -345,7 +345,7 @@
</navigator>
</view>
<view
class=
"jiu_max"
v-if=
"
amount_piao!=0 && amount_piao!='0.00' && amount_piao!=''&& amount_piao!=null
"
>
<view
class=
"jiu_max"
v-if=
"
isshowpiao
"
>
<navigator
url=
"/pages/myStockRight/myStockRight"
>
<view
class=
"jiu_min"
>
<view>
...
...
@@ -407,6 +407,7 @@
is_bld
:
''
,
amount_piao
:
0
,
isshowpiao
:
false
,
}
},
components
:
{
...
...
@@ -514,8 +515,10 @@
});
if
(
res
.
code
==
0
){
this
.
isshowpiao
=
true
;
this
.
amount_piao
=
res
.
data
.
amount_piao
;
}
else
{
this
.
isshowpiao
=
false
;
this
.
amount_piao
=
0
;
}
},
...
...
pages/myStockRight/myStockRight.vue
View file @
8002c101
...
...
@@ -10,7 +10,8 @@
<!-- 我的股票 -->
<view
v-if=
"amount_piao!=0 && amount_piao!='' && amount_piao!=null && amount_piao!='0.00'"
class=
"mystock_tab"
>
<!-- amount_piao!=0 && amount_piao!='' && amount_piao!=null && amount_piao!='0.00' -->
<view
v-if=
"amount_piao!=null && amount_piao!=''"
class=
"mystock_tab"
>
<view
class=
"stocktiit"
>
恭喜您获得多思盈股票
</view>
<view
class=
"sharesmain"
:style=
"
{backgroundImage:'url('+joinurl+'/images/stock/sharesbg.png)'}">
<view
class=
"sharestit"
>
我的股票
</view>
...
...
@@ -36,7 +37,7 @@
<!-- 空空如也 -->
<empty
msgs=
"您没有获得多思盈股票"
v-
if=
"(amount_piao=='' || amount_piao=='0' || amount_piao==null || amount_piao=='0.00')"
></empty>
<empty
msgs=
"您没有获得多思盈股票"
v-
else
></empty>
...
...
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