1 Star 0 Fork 9

十三月/省钱兄外卖霸王餐源码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
App.vue 1.70 KB
一键复制 编辑 原始数据 按行查看 历史
小马总 提交于 2021-11-19 23:30 . init
<script>
import Vue from 'vue';
export default {
methods: {
},
onLaunch: function() {
let that = this;
//获取全局邀请码
that.$Request.getT('/common/type/88').then(res => {
if (res.code == 0) {
if (res.data && res.data.value) {
this.$queue.setData('publicRelation', res.data.value);
}
}
});
// 微信单笔提现最大金额
that.$Request.getT('/common/type/86').then(res => {
if (res.code == 0) {
if (res.data && res.data.value) {
this.$queue.setData('WxMaxMoney', res.data.value);
}
}
});
// 微信单笔提现最大金额
that.$Request.getT('/common/type/170').then(res => {
if (res.code == 0) {
if (res.data && res.data.value) {
this.$queue.setData('fensiImage', res.data.value);
}
}
});
// 微信提现是否显示
that.$Request.getT('/common/type/168').then(res => {
if (res.code == 0) {
if (res.data && res.data.value) {
this.$queue.setData('wxCashSelect', res.data.value);
}
}
});
// 商户端微信小程序APPID 139
that.$Request.getT('/common/type/139').then(res => {
if (res.code == 0) {
if (res.data && res.data.value) {
this.$queue.setData('shopAppId', res.data.value);
}
}
});
// 我的页面是否显示商家端 167
that.$Request.getT('/common/type/167').then(res => {
if (res.code == 0) {
if (res.data && res.data.value) {
this.$queue.setData('shopIsEn', res.data.value);
}
}
});
},
onShow: function() {
},
onHide: function() {}
};
</script>
<style lang="scss">
@import '@/static/css/colorui-main.css';
@import '@/static/css/colorui-icon.css';
@import '@/static/css/iconfont.css';
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/tt-month/waimaibawangcan.git
git@gitee.com:tt-month/waimaibawangcan.git
tt-month
waimaibawangcan
省钱兄外卖霸王餐源码
master

搜索帮助