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
f980e05d
authored
2019-11-01 15:21:11 +0800
by
simon
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
默认提交
1 parent
a56f4969
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
3 deletions
src/config.js
src/pages/auction-detail/auction-detail.scss
src/pages/my-message/my-message.scss
src/pages/my-message/my-message.wxml
src/config.js
View file @
f980e05
...
...
@@ -2,7 +2,7 @@ let ENV_CONFIG = require('./env/index');
const
APPID
=
''
/** ====每次发布版本记得修改此环境配置==== */
const
ENV
=
'
Dev
'
;
// Dev Prod
const
ENV
=
'
Prod
'
;
// Dev Prod
const
NET_CONFIG
=
ENV_CONFIG
[
ENV
];
const
MOCKAPI
=
ENV_CONFIG
.
mockApi
;
...
...
src/pages/auction-detail/auction-detail.scss
View file @
f980e05
...
...
@@ -254,7 +254,7 @@ $contentWidth:690px;
// 我的出价
.my-price
{
margin
:
72
px
auto
12px
;
margin
:
36
px
auto
12px
;
text-align
:
center
;
font-size
:
24px
;
}
...
...
src/pages/my-message/my-message.scss
View file @
f980e05
...
...
@@ -52,6 +52,7 @@ $contentWidth:690px;
border-radius
:
8px
;
color
:
#3680EB
;
font-size
:
30px
;
font-weight
:
bold
;
}
// 删除
...
...
src/pages/my-message/my-message.wxml
View file @
f980e05
...
...
@@ -19,7 +19,7 @@
<span bindtap="tagReadItem" data-data="{{item}}" data-index="{{index}}" wx:if="{{item.read == 0}}" class="t1">
标记已读
</span>
<span bindtap="deleteItem" data-data="{{item}}" data-index="{{index}}" wx:if="{{item.read == 1}}" class="t2">
<span bindtap="deleteItem" data-data="{{item}}" data-index="{{index}}" wx:if="{{item.read == 1}}" class="t
1 t
2">
删除
</span>
</view>
...
...
Please
register
or
sign in
to post a comment