加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 4.49 KB
一键复制 编辑 原始数据 按行查看 历史
<script>
export default {
onLaunch(e) {
if(!uni.getStorageSync('phone') && e.query.phone){
uni.setStorageSync('phone', e.query.phone);
}
if(!uni.getStorageSync('factory_id') && e.query.factoryid){
uni.setStorageSync('factory_id', e.query.factoryid);
}
// 展示本地存储能力
var logs = uni.getStorageSync('logs') || [];
logs.unshift(Date.now());
uni.setStorageSync('logs', logs);
// 获取用户信息
uni.getSetting({
success: res => {
// console.log("resresresresresresresresres", res);
if (res.authSetting['scope.userInfo']) {
// 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框
uni.getUserInfo({
success: res => {
// 可以将 res 发送给后台解码出 unionId
// this.globalData.userInfo = res.userInfo
// console.log("****************", res.userInfo);
// // 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
// // 所以此处加入 callback 以防止这种情况
// if (this.userInfoReadyCallback) {
// this.userInfoReadyCallback(res)
// }
}
});
}
}
});
}
};
</script>
<style lang="scss">
// view,
// text{
// font-family: "PingFang SC",Arial,"Microsoft YaHei",sans-serif;
// }
/* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
@import "uview-ui/index.scss";
view,
text {
box-sizing: unset;
}
</style>
<style lang="less">
@import "./iconfont.css";
/*每个页面公共css */
/* 灰体 */
.gray {
color: #999999;
}
/* 平铺 */
.w100 {
width: 100%;
}
/* 中划线 */
.line-through {
text-decoration: line-through;
}
/* 填满 */
.h100 {
height: 100%;
}
/* 相对定位 */
.relative {
position: relative;
}
/* 粗体 */
.bold {
font-weight: bold;
}
/* 主题提交按钮 */
.theme-submit-btn {
width: 660rpx;
height: 90rpx;
border-radius: 16rpx;
background: #e41805;
font-size: 32rpx;
line-height: 90rpx;
color: #fff;
}
/* 主题返回按钮 */
.theme-back-btn {
width: 660rpx;
height: 90rpx;
border-radius: 16rpx;
border: 3rpx solid #e41805;
background: #fff;
font-size: 32rpx;
line-height: 90rpx;
color: #e41805;
}
/* 居中 */
.x-y-center {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
/* 分割点 */
.spot {
display: inline-block;
width: 26rpx;
text-align: center;
}
/* 块级元素 */
.block {
display: block;
}
/* 溢出隐藏 */
.clear {
overflow: hidden;
}
/* 左浮动 */
.pull-left {
float: left;
}
/* 右浮动 */
.pull-right {
float: right;
}
/* 行内块元素 */
.inline-block {
display: inline-block;
}
/* 溢出用省略号代替 */
.text-overflow {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* 行内元素 */
.inline {
display: inline;
}
/* 白色背景 */
.bg-white {
background: #ffffff;
}
/* 白色字体 */
.white {
color: #ffffff;
}
/* 主题背景 */
.bg-theme {
background: #e41805;
}
/* 主题字体颜色 */
.theme {
color: #e41805;
}
/* 文字居中 */
.text-center {
text-align: center;
}
/* placeholder 字体大小 */
.placeholder-fs {
font-size: 26rpx;
}
.color-red {
color: #f96b36;
}
.bold {
font-weight: bold;
}
.flex {
display: flex;
}
.ju-be {
justify-content: space-between;
}
.ju-ar {
justify-content: space-around;
}
.center {
align-items: center;
align-items: center;
justify-content: center;
}
/* flex 布局 */
.flex-space(@justifyContent: space-around, @flexDirection: row) {
display: flex;
flex-direction: @flexDirection;
align-items: center;
flex-wrap: wrap;
justify-content: @justifyContent;
}
/* x 轴 */
.flex-x-between {
.flex-space(space-between);
}
.flex-x-around {
.flex-space(space-around);
}
.flex-x-start {
.flex-space(flex-start);
}
.flex-x-end {
.flex-space(flex-end);
}
.flex-x-center {
.flex-space(center);
}
/* y 轴 */
.flex-y-center {
.flex-space(center, column);
}
/* 通用 style */
.container {
font-size: 14px;
line-height: 24px;
}
::-webkit-scrollbar {
width: 0;
height: 0;
color: transparent;
}
/* 编辑页头部文案样式 */
.common-tips-box {
padding: 40rpx 0 0;
.t1 {
font-size: 48rpx;
line-height: 48rpx;
}
.t2 {
font-size: 24rpx;
line-height: 24rpx;
margin-top: 14rpx;
color: #999;
}
}
.creat_btn {
position: fixed;
left: 0;
right: 0;
bottom: 0;
padding: 30rpx;
box-shadow: -1rpx -2rpx 7rpx 0rpx rgba(0, 0, 0, 0.1);
background-color: #fff;
text {
display: block;
padding: 20rpx 0;
background-color: #e41805;
color: #fff;
text-align: center;
border-radius: 10rpx;
}
}
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化