소스 검색

[首页图标修改]

tags/广东版3.2.1
meo 6 년 전
부모
커밋
f2825c6384
8개의 변경된 파일20개의 추가작업 그리고 5개의 파일을 삭제
  1. BIN
      assets/images/icon001.png
  2. BIN
      assets/images/icon002.png
  3. BIN
      assets/images/icon003.png
  4. +1
    -1
      config/config.js
  5. +3
    -0
      pages/index/index.js
  6. +3
    -3
      pages/index/index.wxml
  7. +1
    -1
      pages/user/index.wxml
  8. +12
    -0
      utils/imgurl.js

BIN
assets/images/icon001.png 파일 보기

Before After
Width: 160  |  Height: 160  |  Size: 17 KiB

BIN
assets/images/icon002.png 파일 보기

Before After
Width: 160  |  Height: 160  |  Size: 13 KiB

BIN
assets/images/icon003.png 파일 보기

Before After
Width: 160  |  Height: 160  |  Size: 13 KiB

+ 1
- 1
config/config.js 파일 보기

@@ -1,7 +1,7 @@
var extConfig = wx.getExtConfigSync ? wx.getExtConfigSync() : {};
var appId = extConfig.appId;
var config = {
// url: "https://ciformall.youlane.cn/C/api",
// url: "https://ciformall.youlane.cn/C/api",
// url:"https://c.malls.iformall.com/C/api",
url:'https://ctest.malls.iformall.com/C/api',
// url:'http://10.100.33.68:7000/C/api',


+ 3
- 0
pages/index/index.js 파일 보기

@@ -7,6 +7,9 @@ let app = getApp();
Page({
data: {
newUrl: imgurl.new.url,
icon001: imgurl.icon001.url,
icon002: imgurl.icon002.url,
icon003: imgurl.icon003.url,
market: app.globalData.market,
list: [],
loading: true,


+ 3
- 3
pages/index/index.wxml 파일 보기

@@ -4,15 +4,15 @@
<!-- 折扣卡 -->
<view class='section'>
<view bindtap='gotoRushBuy'>
<image src='./../../assets/images/icon001.png'></image>
<image src='{{icon001}}'></image>
<text>限时抢购</text>
</view>
<view bindtap='gotodiscountCardList'>
<image src='./../../assets/images/icon002.png'></image>
<image src='{{icon002}}'></image>
<text>消费卡</text>
</view>
<view bindtap='qrcode'>
<image src='./../../assets/images/icon003.png'></image>
<image src='{{icon003}}'></image>
<text>会员权益</text>
</view>
</view>


+ 1
- 1
pages/user/index.wxml 파일 보기

@@ -76,7 +76,7 @@
<view class="margin"></view>
<!-- <button bindtap="navigateTo" class="user-out-btn">退出登陆</button> -->
<view bindlongtap='showVersion' class='version'>
<view wx:if="{{flag=='show'}}">版本号:3.2.0</view>
<view wx:if="{{flag=='show'}}">版本号:3.2.1</view>
<view wx:if="{{flag=='hidden'}}"></view>
</view>
</view>


+ 12
- 0
utils/imgurl.js 파일 보기

@@ -323,5 +323,17 @@ module.exports = {
'wm03': {
'url': baseUrl + 'wm03.jpg',
'name': ''
},
'icon001': {
'url': baseUrl + 'icon001.png',
'name': ''
},
'icon002': {
'url': baseUrl + 'icon002.png',
'name': ''
},
'icon003': {
'url': baseUrl + 'icon003.png',
'name': ''
}
}

불러오는 중...
취소
저장