wangdong 6 months ago
commit b6eac91c53
  1. 1
      pages/goods/detail.vue
  2. 665
      pages/login/index.vue
  3. 9
      pages/news/consult/about.vue
  4. 24
      pages/news1/jinqun.vue
  5. 6
      pages/order/detail.vue

@ -530,6 +530,7 @@
} }
}, },
onLoad(options) { onLoad(options) {
console.log(options)
const that = this; const that = this;
that.options = options; that.options = options;
let result = uni.getStorageSync("addressResult") let result = uni.getStorageSync("addressResult")

@ -1,322 +1,391 @@
<template> <template>
<view class="login"> <view class="login">
<view class="refund-navbar"> <view class="refund-navbar">
<u-navbar <u-navbar title="" :border-bottom="false" :background="background"></u-navbar>
title="" </view>
:border-bottom="false" <view class="login-hd">
:background="background" <view class="a">验证码登录</view>
></u-navbar> <view class="b">若该手机号未注册我们将自动为您注册</view>
</view> </view>
<view class="login-hd"> <view class="login-bd">
<view class="a">验证码登录</view> <view class="a">+86<input v-model="phoneNum" type="tel" placeholder="请输入手机号" /></view>
<view class="b">若该手机号未注册我们将自动为您注册</view> <view class="b">
</view> <input v-model="semCode" placeholder="请输入验证码" />
<view class="login-bd"> <text @click="getCode" v-if="!showCountDown">获取验证码</text>
<view class="a" <text v-if="showCountDown">{{ countdown }}s</text>
>+86<input v-model="phoneNum" type="tel" placeholder="请输入手机号" </view>
/></view> <view class="c" style="display: flex; align-items: center">
<view class="b"> <u-checkbox active-color="#FF343C" v-model="isCheckout" style="margin-right: -20rpx"></u-checkbox>
<input v-model="semCode" placeholder="请输入验证码" /> 同意<text @click="toTextPage(1)">用户服务协议</text><text @click="toTextPage(2)">隐私政策</text>
<text @click="getCode" v-if="!showCountDown">获取验证码</text> </view>
<text v-if="showCountDown">{{ countdown }}s</text> </view>
</view> <view class="login-fd login-fd-on" @click="login">登录</view>
<view class="c" style="display: flex; align-items: center"> <view class="" v-if="isCheckout">
<u-checkbox <mpWeiXinMobile :refereeId="refereeId"></mpWeiXinMobile>
active-color="#FF343C" </view>
v-model="isCheckout" <view class="" v-else style="
style="margin-right: -20rpx"
></u-checkbox
>同意<text @click="toTextPage(1)">用户服务协议</text><text
@click="toTextPage(2)"
>隐私政策</text
>
</view>
</view>
<view class="login-fd login-fd-on" @click="login">登录</view>
<view class="" v-if="isCheckout">
<mpWeiXinMobile :refereeId="refereeId"></mpWeiXinMobile>
</view>
<view
class=""
v-else
style="
font-size: 28rpx; font-size: 28rpx;
color: #666; color: #666;
text-align: center; text-align: center;
margin-top: 50rpx; margin-top: 50rpx;
" " @click="login">
@click="login" 手机号快捷登录
> </view>
手机号快捷登录 </view>
</view> <view class="login-box" style="display: none;">
</view> <view class="refund-navbar">
<u-navbar title="" :border-bottom="false" background="rgba(255, 233, 240, 1)"></u-navbar>
</view>
<view class="login-logo">
<image src="../../static/login_logo.png" mode=""></image>
</view>
<view class="login-name">
京苏云商
</view>
<view class="c">
<u-checkbox active-color="#FF343C" v-model="isCheckout" style="margin-right: -20rpx"></u-checkbox>
同意<text @click="toTextPage(1)">用户服务协议</text><text @click="toTextPage(2)">隐私政策</text>
</view>
<view class="fd fd-on" @click="login">登录</view>
</view>
</template> </template>
<script> <script>
import * as UserApi from "@/api/user"; import * as UserApi from "@/api/user";
import * as CaptchaApi from "@/api/captcha"; import * as CaptchaApi from "@/api/captcha";
import mpWeiXinMobile from "./components/mp-weixin-mobile.vue"; import mpWeiXinMobile from "./components/mp-weixin-mobile.vue";
import store from "@/store"; import store from "@/store";
import { isEmpty } from "@/utils/util"; import {
import { getSceneData } from '@/core/app' isEmpty
export default { } from "@/utils/util";
components: { import {
mpWeiXinMobile, getSceneData
}, } from '@/core/app'
data() { export default {
return { components: {
isCheckout: false, mpWeiXinMobile,
showCountDown: false, },
currentIndex: 0, data() {
background: { return {
background: `url(${this.$picUrl}/static/news/login-bg.png) center top no-repeat`, isCheckout: false,
backgroundSize: "100% auto", showCountDown: false,
}, currentIndex: 0,
phoneNum: "", background: {
semCode: "", background: `url(${this.$picUrl}/static/news/login-bg.png) center top no-repeat`,
countdown: 60, backgroundSize: "100% auto",
countDownFun: null, },
code: "", phoneNum: "",
refereeId: "", semCode: "",
}; countdown: 60,
}, countDownFun: null,
onLoad(o) { code: "",
// refereeId: "",
const scene = getSceneData(o) };
// ID },
const refereeId = scene.refereeId ? scene.refereeId : (scene.uid?scene.uid:o.refereeId) onLoad(o) {
this.refereeId = refereeId; //
console.log(scene) const scene = getSceneData(o)
console.log(o) // ID
console.log(scene.refereeId) const refereeId = scene.refereeId ? scene.refereeId : (scene.uid ? scene.uid : o.refereeId)
console.log("refereeId",refereeId) this.refereeId = refereeId;
console.log(this.refereeId) console.log(scene)
}, console.log(o)
methods: { console.log(scene.refereeId)
toTextPage(n) { console.log("refereeId", refereeId)
uni.navigateTo({ console.log(this.refereeId)
url: "/pages/news1/text?pageFlag=" + n, },
}); methods: {
}, toTextPage(n) {
validatePhoneNumber(phone) { uni.navigateTo({
// url: "/pages/news1/text?pageFlag=" + n,
var regExp = /^1[3456789]\d{9}$/; });
},
validatePhoneNumber(phone) {
//
var regExp = /^1[3456789]\d{9}$/;
if (regExp.test(phone)) { if (regExp.test(phone)) {
return true; // return true; //
} else { } else {
return false; // return false; //
} }
}, },
getCode() { getCode() {
// //
const that = this; const that = this;
if (that.isCheckout == false) { if (that.isCheckout == false) {
that.$toast("请勾选用户协议"); that.$toast("请勾选用户协议");
return; return;
} }
if (!that.validatePhoneNumber(that.phoneNum)) { if (!that.validatePhoneNumber(that.phoneNum)) {
uni.showToast({ uni.showToast({
title: "请输入正确的手机号", title: "请输入正确的手机号",
}); });
return; return;
} }
that.showCountDown = !that.showCountDown; that.showCountDown = !that.showCountDown;
CaptchaApi.sendSmsCaptcha({ CaptchaApi.sendSmsCaptcha({
mobile: that.phoneNum mobile: that.phoneNum
}).then((res) => { }).then((res) => {
if (res.status == 200) { if (res.status == 200) {
that.countDownFun = setInterval(() => { that.countDownFun = setInterval(() => {
if (that.countdown >= 1) { if (that.countdown >= 1) {
that.countdown = that.countdown - 1; that.countdown = that.countdown - 1;
} else { } else {
that.showCountDown = false; that.showCountDown = false;
that.countdown = 60; that.countdown = 60;
clearInterval(that.countDownFun); clearInterval(that.countDownFun);
} }
}, 1000); }, 1000);
uni.showToast({ uni.showToast({
icon:"none", icon: "none",
title: res.message, title: res.message,
}); });
} else { } else {
uni.showToast({ uni.showToast({
icon:"none", icon: "none",
title: res.message, title: res.message,
}); });
} }
}); });
}, },
login() { login() {
let that = this; let that = this;
if (that.isCheckout == false) { if (that.isCheckout == false) {
that.$toast("请勾选用户协议"); that.$toast("请勾选用户协议");
return; return;
} }
// //
if (!that.validatePhoneNumber(that.phoneNum)) { if (!that.validatePhoneNumber(that.phoneNum)) {
that.$toast("请输入正确的手机号"); that.$toast("请输入正确的手机号");
return; return;
} }
if (that.semCode == "") { if (that.semCode == "") {
that.$toast("请输入验证码"); that.$toast("请输入验证码");
return; return;
} }
uni.login({ uni.login({
provider: "weixin", provider: "weixin",
success: function (res) { success: function(res) {
store store
.dispatch("Login", { .dispatch("Login", {
smsCode: that.semCode, smsCode: that.semCode,
mobile: that.phoneNum, mobile: that.phoneNum,
refereeId: that.refereeId, refereeId: that.refereeId,
isParty: false, isParty: false,
partyData: {}, partyData: {},
ucode: res.code ucode: res.code
}) })
.then((res) => { .then((res) => {
uni.setStorageSync("token", res.data.token); uni.setStorageSync("token", res.data.token);
that.$toast(res.message); that.$toast(res.message);
that.getUserInfo(); that.getUserInfo();
setTimeout(() => that.onNavigateBack(1), 2000); setTimeout(() => that.onNavigateBack(1), 2000);
}); });
}, },
fail:function(){ fail: function() {
store store
.dispatch("Login", { .dispatch("Login", {
smsCode: that.semCode, smsCode: that.semCode,
mobile: that.phoneNum, mobile: that.phoneNum,
refereeId: that.refereeId, refereeId: that.refereeId,
isParty: false, isParty: false,
partyData: {}, partyData: {},
// ucode: res.code // ucode: res.code
}) })
.then((res) => { .then((res) => {
uni.setStorageSync("token", res.data.token); uni.setStorageSync("token", res.data.token);
that.$toast(res.message); that.$toast(res.message);
that.getUserInfo(); that.getUserInfo();
setTimeout(() => that.onNavigateBack(1), 2000); setTimeout(() => that.onNavigateBack(1), 2000);
}); });
} }
}); });
}, },
getUserInfo() { getUserInfo() {
UserApi.info().then((result) => { UserApi.info().then((result) => {
uni.setStorageSync("userInfo", result.data.userInfo); uni.setStorageSync("userInfo", result.data.userInfo);
}); });
}, },
onNavigateBack(delta = 1) { onNavigateBack(delta = 1) {
// //
const pages = getCurrentPages(); const pages = getCurrentPages();
if (pages.length > 1) { if (pages.length > 1) {
uni.navigateBack({ uni.navigateBack({
delta: Number(delta || 1), delta: Number(delta || 1),
}); });
} else { } else {
this.$navTo("pages/index/index"); this.$navTo("pages/index/index");
} }
}, },
}, },
}; };
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.login { .login-box {
width: 100%; width: 100%;
background: #fffafb url(https://www.royaum.com.cn/static/news/login-bg.png) background: linear-gradient(180deg, rgba(255, 233, 240, 1) 0%, rgba(226, 244, 243, 0) 35%);
center top no-repeat; min-height: 100vh;
background-size: 100% auto;
min-height: 100vh;
&-hd { .login-logo {
padding: 90rpx 75rpx 75rpx; margin: 365rpx auto 0 auto;
overflow: hidden; width: 132rpx;
height: 132rpx;
border-radius: 24rpx;
background: rgba(243, 74, 64, 1);
box-shadow: -4rpx -8rpx 20rpx rgba(243, 74, 64, 0.16);
.a { image {
line-height: 80rpx; width: 75rpx;
font-size: 40rpx; height: 85rpx;
font-weight: 500; margin: 23.5rpx 0 0 28.5rpx;
color: #000000; }
} }
.b { .login-name {
font-size: 28rpx; width: 100%;
font-weight: 400; text-align: center;
color: #5a5a5a;
line-height: 50rpx;
}
}
&-bd { font-weight: bold;
padding: 0 75rpx; font-size: 36rpx;
overflow: hidden; color: rgba(243, 74, 64, 1);
margin-top: 22rpx;
}
.a { .c {
padding: 20rpx 0; justify-content: center;
border-bottom: 1px solid #f2f2f2; padding: 28rpx 0;
display: flex; font-size: 26rpx;
align-items: center; font-weight: 400;
font-size: 32rpx; color: #a0a0a0;
font-weight: 400; display: flex;
color: #212121; align-items: center;
input { text {
flex: 1; color: #ff343c;
margin-left: 30rpx; }
line-height: 50rpx;
border-left: 1px solid #c4c4c4;
padding-left: 30rpx;
font-size: 28rpx;
color: #212121;
}
}
.b { ::v-deep .u-checkbox__icon-wrap--square {
padding: 30rpx 0; border-radius: 50% !important;
border-bottom: 1px solid #f2f2f2; width: 17px !important;
display: flex; height: 17px !important;
align-items: center; }
font-size: 28rpx; }
font-weight: 400;
color: #f3202a;
input { .fd {
flex: 1; width: 680rpx;
margin-right: 30rpx; line-height: 88rpx;
line-height: 50rpx; background: rgba(243, 74, 64, 1);
font-size: 28rpx; border-radius: 88rpx;
color: #212121; text-align: center;
} margin: 0 auto;
} margin-top: 50rpx;
font-size: 28rpx;
font-weight: 600;
color: #ffffff;
.fd-on {
background-color: rgba(243, 74, 64, 1);
}
}
}
.c { .login {
padding: 28rpx 0; width: 100%;
font-size: 28rpx; background: #fffafb url(https://www.royaum.com.cn/static/news/login-bg.png) center top no-repeat;
font-weight: 400; background-size: 100% auto;
color: #a0a0a0; min-height: 100vh;
text { &-hd {
color: #ff343c; padding: 90rpx 75rpx 75rpx;
} overflow: hidden;
}
}
&-fd { .a {
width: 680rpx; line-height: 80rpx;
line-height: 88rpx; font-size: 40rpx;
background: #ffbdba; font-weight: 500;
border-radius: 88rpx; color: #000000;
text-align: center; }
margin: 0 auto;
margin-top: 120rpx; .b {
font-size: 28rpx; font-size: 28rpx;
font-weight: 600; font-weight: 400;
color: #ffffff; color: #5a5a5a;
line-height: 50rpx;
}
}
&-on { &-bd {
background-color: #ff343c; padding: 0 75rpx;
} overflow: hidden;
}
} .a {
</style> padding: 20rpx 0;
border-bottom: 1px solid #f2f2f2;
display: flex;
align-items: center;
font-size: 32rpx;
font-weight: 400;
color: #212121;
input {
flex: 1;
margin-left: 30rpx;
line-height: 50rpx;
border-left: 1px solid #c4c4c4;
padding-left: 30rpx;
font-size: 28rpx;
color: #212121;
}
}
.b {
padding: 30rpx 0;
border-bottom: 1px solid #f2f2f2;
display: flex;
align-items: center;
font-size: 28rpx;
font-weight: 400;
color: #f3202a;
input {
flex: 1;
margin-right: 30rpx;
line-height: 50rpx;
font-size: 28rpx;
color: #212121;
}
}
.c {
padding: 28rpx 0;
font-size: 28rpx;
font-weight: 400;
color: #a0a0a0;
text {
color: #ff343c;
}
}
}
&-fd {
width: 680rpx;
line-height: 88rpx;
background: #ffbdba;
border-radius: 88rpx;
text-align: center;
margin: 0 auto;
margin-top: 120rpx;
font-size: 28rpx;
font-weight: 600;
color: #ffffff;
&-on {
background-color: #ff343c;
}
}
}
</style>

@ -13,7 +13,9 @@
<view class="b">{{cityInfo.phone}}<image :src="$picUrl+'/static/news/tel.png'" @click="callPhone()"></image></view> <view class="b">{{cityInfo.phone}}<image :src="$picUrl+'/static/news/tel.png'" @click="callPhone()"></image></view>
</view> </view>
<view class="park-fd"> <view class="park-fd">
<image :src="cityInfo.wechat" show-menu-by-longpress='1'></image> <!-- <image :src="cityInfo.wechat" show-menu-by-longpress='1'></image> -->
<!-- -->
<image mode="widthFix" :src="cityInfo.wechat"></image>
<view class="txt">长按识别二维码</view> <view class="txt">长按识别二维码</view>
<view class="txt">添加我的微信</view> <view class="txt">添加我的微信</view>
</view> </view>
@ -141,15 +143,16 @@
text-align: center; text-align: center;
image{ image{
width: 300rpx; width: 300rpx;
height: 300rpx; // height: 300rpx;
display: block; display: block;
margin: 0 auto; margin: 0 auto;
max-height:400rpx ;
} }
.txt{ .txt{
font-size: 32rpx; font-size: 32rpx;
font-weight: 400; font-weight: 400;
color: #686868; color: #686868;
margin-top: 20rpx; margin-top: 30rpx;
} }
} }
&-btn{ &-btn{

@ -2,6 +2,7 @@
<view class="jinqun" :style="{background:`url(${$picUrl}/static/jinqun-bg1.png)`}" <view class="jinqun" :style="{background:`url(${$picUrl}/static/jinqun-bg1.png)`}"
style="background-size: 100% 100%;text-align: center;"> style="background-size: 100% 100%;text-align: center;">
<view class="image-box"> <view class="image-box">
<!-- mode="heightFix" -->
<image :src="cityInfo.group_share_img" class="image" bindtap="clickImg"></image> <image :src="cityInfo.group_share_img" class="image" bindtap="clickImg"></image>
</view> </view>
</view> </view>
@ -56,25 +57,32 @@
} }
} }
</script> </script>
<style>
page {
width: 100% !important;
height: 100%;
background-color: #E2b257;
}
</style>
<style lang="scss" scoped> <style lang="scss" scoped>
.jinqun { .jinqun {
.image-box { .image-box {
width: 330rpx; overflow: hidden;
height: 330rpx; width: 335rpx;
margin: 420rpx auto; height: 335rpx;
margin: 485rpx auto 0 auto;
.image { .image {
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
} }
overflow: hidden;
overflow: hidden;
height:100%; height:100%;
position: relative; // position: relative;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: cover; background-size: cover;
min-height: 100vh; height: 1325rpx;
.flag { .flag {
position: absolute; position: absolute;

@ -266,11 +266,11 @@
<view v-if="menushow" class="menuarea"> <view v-if="menushow" class="menuarea">
<view class="menulist"> <view class="menulist">
<view class="" @click="onInvoicing(order.order_id,order)" <view class="" @click="onInvoicing(order.order_id,order)"
v-if="order.order_status == OrderStatusEnum.COMPLETED.value&&item.pay_status == PayStatusEnum.SUCCESS.value"> v-if="order.order_status == OrderStatusEnum.COMPLETED.value&&order.pay_status == PayStatusEnum.SUCCESS.value">
申请开票 申请开票
</view> </view>
<view class="" @click="onDelete(order.order_id)" <view class="" @click="onDelete(order.order_id)"
v-if="order.order_status == OrderStatusEnum.COMPLETED.value&&item.pay_status == PayStatusEnum.SUCCESS.value"> v-if="order.order_status == OrderStatusEnum.COMPLETED.value&&order.pay_status == PayStatusEnum.SUCCESS.value">
删除订单 删除订单
</view> </view>
<view class="" <view class=""
@ -283,7 +283,7 @@
</view> </view>
<view class="footer"> <view class="footer">
<view class="meetPrice" @click="changeMenu" <view class="meetPrice" @click="changeMenu"
v-if="(order.order_status == OrderStatusEnum.COMPLETED.value&&item.pay_status == PayStatusEnum.SUCCESS.value) || (order.delivery_status == DeliveryStatusEnum.NOT_DELIVERED.value&&order.order_status == OrderStatusEnum.NORMAL.value)"> v-if="(order.order_status == OrderStatusEnum.COMPLETED.value&&order.pay_status == PayStatusEnum.SUCCESS.value) || (order.delivery_status == DeliveryStatusEnum.NOT_DELIVERED.value&&order.order_status == OrderStatusEnum.NORMAL.value)">
更多 更多
</view> </view>
<view v-else style="color: #fff;">-</view> <view v-else style="color: #fff;">-</view>

Loading…
Cancel
Save