Skip to content
This repository was archived by the owner on Feb 25, 2019. It is now read-only.

Commit 567e6a7

Browse files
authored
Merge pull request #100 from StellarCN/v2.0.0
fixed before v2.1.0 release
2 parents e08a943 + 9e6fcc6 commit 567e6a7

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

src/components/FullK.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<i class="material-icons k-icon">keyboard_arrow_left</i>
1414
</v-btn>
1515
</div>
16-
<div :class="'flex3 textcenter ' + ( (titleData.change >=0 ^ redUpGreenDown ) ? 'down':'up') ">
16+
<div :class="'flex3 textcenter ' + ( (titleData.change >=0 ^ redUpGreenDown ) ? 'up':'down') ">
1717
<div class="price textcenter">
1818
<span class="price">{{titleData.price}}</span>
1919
<span class="code">{{counter.code}}</span>

src/components/K.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<i class="material-icons k-icon">keyboard_arrow_left</i>
1616
</v-btn>
1717
</div>
18-
<div :class="'flex3 textcenter ' + ( (titleData.change >=0 ^ redUpGreenDown) ? 'down':'up') ">
18+
<div :class="'flex3 textcenter ' + ( (titleData.change >=0 ^ redUpGreenDown) ? 'up':'down') ">
1919
<div class="price textcenter">
2020
<span class="price">{{titleData.price}}</span>
2121
<!-- <span class="code">{{counter.code}}</span> -->

src/components/KLine.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
* @Author: mazhaoyong@gmail.com
44
* @Date: 2018-01-26 15:59:49
55
* @Last Modified by: mazhaoyong@gmail.com
6-
* @Last Modified time: 2018-06-04 22:16:33
6+
* @Last Modified time: 2018-06-05 16:54:52
77
* @License MIT
88
*/
99

1010
<template>
1111
<div class="line flex-row" v-if="lineData!=null || !loading">
1212
<div class="flex1">
13-
<div :class="' price textright ' + ((titleData.change >=0 ^ redUpGreenDown)? 'down':'up') ">
13+
<div :class="' price textright ' + ((titleData.change >=0 ^ redUpGreenDown)? 'up':'down') ">
1414
{{titleData.price >= 0 ? (titleData.price>=0.000001 ? Number(titleData.price): titleData.price):''}}</div>
1515
</div>
1616
<div class="flex1">
1717
<div class="rate">
18-
<div v-if="titleData.rate!==null && typeof titleData.rate!=='undefined'" :class="'rate-btn textcenter ' + (( titleData.change >=0 ^ redUpGreenDown)? 'down':'up')">
18+
<div v-if="titleData.rate!==null && typeof titleData.rate!=='undefined'" :class="'rate-btn textcenter ' + (( titleData.change >=0 ^ redUpGreenDown)? 'up':'down')">
1919
<span v-if="titleData.rate>0">+</span>{{titleData.rate}}%
2020
</div>
2121
</div>

src/locales/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ export const ZH_TW = {
2929
export const LANGUAGES = [
3030
EN,
3131
ZH_CN,
32-
ZH_HK,
33-
ZH_TW
32+
ZH_HK
3433
]
3534

3635
export const MOMENT_LANGUAGES = {

src/pages/trade/TradeCenter.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ import { getDefaultTradePairs } from '@/api/gateways'
130130
131131
const TAG_ALL = 'All', TAG_XCN = 'XCN', TAG_XLM = 'XLM', TAG_BTC = 'BTC', TAG_ETH = 'ETH', TAG_CUSTOM = '_CUSTOM', TAG_XFF = 'XFF'
132132
133-
const TAGS = [TAG_XCN, TAG_BTC, TAG_XLM, TAG_ETH, TAG_XFF, TAG_CUSTOM]
133+
const TAGS = [TAG_XCN, TAG_BTC, TAG_XLM, TAG_CUSTOM]
134134
135135
export default {
136136
data(){
@@ -280,7 +280,7 @@ export default {
280280
// this.filterTag = TAG_CUSTOM
281281
// this.tagIndex = TAGS.indexOf(TAG_CUSTOM).toString()
282282
// }
283-
this.allTagsLabel = [TAG_XCN, TAG_BTC, TAG_XLM, TAG_ETH, TAG_XFF, this.$t('custom')]
283+
this.allTagsLabel = [TAG_XCN, TAG_BTC, TAG_XLM, this.$t('custom')]
284284
},
285285
mounted(){
286286
// if(!this.islogin){

0 commit comments

Comments
 (0)