138 Star 555 Fork 332

Fexcoin / exchange-app

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
App.vue 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
fex 提交于 2020-08-20 00:16 . 修复首页BUG
<script>
import {
mapActions,
mapMutations
} from 'vuex'
export default {
created() {
},
methods: {
async getLocation() {
return await new Promise((resolve, reject) => {
wx.getLocation({
success(location) {
resolve(location)
},
fail(err) {
console.log(err)
reject(err)
}
})
})
}
}
}
</script>
<style lang="scss">
@import "uview-ui/index.scss";
/* uni.css - 通用组件、模板样式库,可以当作一套ui库应用 */
@import './common/uni.css';
.container {
font-size: $font-base;
height: 100%;
}
.wrapper {
font-size: $font-base;
text-align: left;
}
.uni-navbar__header-btns{
padding: 0 !important;
width: 150upx !important;
}
* {
transition: width 2s;
-moz-transition: width 2s;
-webkit-transition: width 2s;
-o-transition: width 2s;
}
/* font color */
* {
color: #353535;
}
.gray {
color: #808080;
}
.wxParse {
text-indent: 2em;
}
.wxParse image {
text-indent: 0;
}
.wxParse ._view {
padding: 0 10rpx;
text-indent: 0;
}
.wxParse .p {
text-indent: 1em;
}
</style>
JavaScript
1
https://gitee.com/koch/exchange-app.git
git@gitee.com:koch/exchange-app.git
koch
exchange-app
exchange-app
master

搜索帮助