剔除没有的

main
JING 8 months ago
parent 126fb61bee
commit 25b5ffd7b0
  1. 4
      config/env.js
  2. 2
      pages.json
  3. 176
      pages/user/auth/login.vue
  4. 205
      pages/user/auth/regist.vue
  5. 2
      pagesA/merge/face_1.vue
  6. 2
      pagesA/photo/face.vue
  7. BIN
      static/img/common/common_21.png
  8. BIN
      static/img/common/photo_common_21.png
  9. BIN
      static/img/index/liucheng.png
  10. BIN
      static/img/index/notice.png
  11. BIN
      static/img/index/pic.png
  12. BIN
      static/img/index/scan.png
  13. BIN
      static/img/index/waiting.png
  14. BIN
      static/img/photo/cartoon_2.png
  15. BIN
      static/img/photo/组 67101@2x(1).png
  16. BIN
      static/img/user/account.png
  17. BIN
      static/img/user/banner.jpg
  18. BIN
      static/img/user/chat.png
  19. BIN
      static/img/user/code.png
  20. BIN
      static/img/user/img.png
  21. BIN
      static/img/user/link.png
  22. BIN
      static/img/user/money_log.png
  23. BIN
      static/img/user/noshop.png
  24. BIN
      static/img/user/order_all.png
  25. BIN
      static/img/user/order_finish.png
  26. BIN
      static/img/user/order_ing.png
  27. BIN
      static/img/user/pic_bg.png
  28. BIN
      static/img/user/popup_bg.png
  29. BIN
      static/img/user/user.png
  30. 7904
      static/json/city.json
  31. BIN
      static/logo.png

@ -23,10 +23,10 @@ var ENV = {
appData:function() {
var data = {}; //版本号
data.i_app_version = '2.1.2';
data.i_app_version = '1.0.0';
return data;
},
QQmapkey:'2EBBZ-RAL33-TLM3A-3KVVR-V2LMO-3TFQ4',
QQmapkey:'',
}

@ -144,7 +144,7 @@
"path" : "merge/idcard",
"style" :
{
"navigationBarTitleText" : "二寸证件照",
"navigationBarTitleText" : "证件照",
"navigationStyle": "custom"
}
},

@ -1,176 +0,0 @@
<template>
<view class="container">
<view class="input_box">
<text class="input_title">{{$t('pages.user.auth.login.mobile')}}</text>
<view class="input_content">
<u--input
:placeholder="$t('pages.user.auth.login.input_mobile')"
prefixIcon="phone"
prefixIconStyle="font-size: 24rpx;color: #909399"
v-model="form.mobile"
@change="mobileChange"
></u--input>
</view>
</view>
<view class="input_box">
<text class="input_title">{{$t('pages.user.auth.login.password')}}</text>
<view class="input_content">
<u--input
:placeholder="$t('pages.user.auth.login.input_password')"
prefixIcon="lock"
prefixIconStyle="font-size: 24rpx;color: #909399"
border="surround"
password
clearable
v-model="form.password"
@change="pwdChange"
></u--input>
</view>
</view>
<view class="button_box">
<view class="submit">
<u-button type="primary" :plain="true" :hairline="true" :text="$t('locale.login')" size="normal" @click="login"></u-button>
</view>
</view>
<view class="footer">
<!-- <text class="footer-text">找回密码</text> -->
<text class="footer-text" @click="regist">{{$t('locale.regist')}}</text>
<!-- <text class="footer-text">投诉建议</text> -->
</view>
</view>
</template>
<script>
export default {
components: {
},
data() {
return {
form:{
mobile:'',
password:'',
},
};
},
onShow() {
var _this =this;
},
methods:{
//
regist(){
uni.$u.route({
type:'redirectTo',
url: 'pages/user/auth/regist',
params: {}
});
},
//
mobileChange(e)
{
var _this = this;
_this.form['mobile'] = e;
},
//
pwdChange(e)
{
var _this = this;
_this.form['password'] = e;
},
login(){
var _this =this;
var form = _this.form;
if(!_this.$com.check(form.mobile,'mobile'))
{
uni.$u.toast(_this.$t('pages.user.auth.login.mobile_must'));
return false;
}
if(form.password.length < 6)
{
uni.$u.toast(_this.$t('pages.user.auth.login.password_must'));
return false;
}
var post = form;
_this.$api.post('user/log',post,function(rs){
console.log(rs);
_this.$user.session('userInfo',rs.userinfo);
_this.$user.session('token',rs.token);
uni.$u.route({
type:'navigateBack',
delta:2,
params: {}
});
},function(err){
console.log(err);
});
},
},
};
</script>
<style scoped lang="scss">
/*输入框*/
.input_box{
width: 90%;
margin: 40rpx auto 40rpx auto;
height: auto;
}
.input_title{
font-size: 30rpx;
color: #ABABAB;
height: 50rpx;
line-height: 50rpx;
margin: 10rpx auto;
display: block;
}
.button_box {
width: 90%;
margin: 40rpx auto 20rpx auto;
}
.submit {
width: 100%;
background-color: #4CAF50;
justify-content: center;
align-items: center;
border-radius: 10rpx;
}
.submit-text {
color: white;
padding: 30rpx;
}
.submit:active {
background-color: green;
opacity: 0.5;
}
.footer {
flex-direction: row;
justify-content: center;
text-align: center;
align-items: center;
margin-top: 100rpx;
}
.footer-text {
font-size: 28rpx;
color: #296db5;
padding: 30rpx;
}
</style>

@ -1,205 +0,0 @@
<template>
<view class="container">
<view class="input_box">
<text class="input_title">{{$t('pages.user.auth.login.mobile')}}</text>
<view class="input_content">
<u--input
:placeholder="$t('pages.user.auth.login.input_mobile')"
prefixIcon="phone"
prefixIconStyle="font-size: 24rpx;color: #909399"
type="number"
v-model="form.mobile"
@change="mobileChange"
></u--input>
</view>
</view>
<view class="input_box">
<text class="input_title">{{$t('pages.user.auth.login.password')}}</text>
<view class="input_content">
<u--input
:placeholder="$t('pages.user.auth.login.input_password')"
prefixIcon="lock"
prefixIconStyle="font-size: 24rpx;color: #909399"
border="surround"
password
clearable
v-model="form.password"
@change="pwdChange"
></u--input>
</view>
</view>
<view class="input_box">
<text class="input_title">{{$t('pages.user.auth.login.email')}}</text>
<view class="input_content">
<u--input
:placeholder="$t('pages.user.auth.login.input_email')"
prefixIcon="email"
prefixIconStyle="font-size: 24rpx;color: #909399"
v-model="form.email"
@change="emailChange"
></u--input>
</view>
</view>
<view class="button_box">
<view class="submit">
<u-button type="primary" :plain="true" :hairline="true" :text="$t('locale.regist')" size="normal" @click="regist"></u-button>
</view>
</view>
<view class="footer">
<!-- <text class="footer-text">找回密码</text> -->
<text class="footer-text" @click="login">{{$t('locale.login')}}</text>
<!-- <text class="footer-text">投诉建议</text> -->
</view>
</view>
</template>
<script>
export default {
components: {
},
data() {
return {
form:{
mobile:'',
password:'',
email:'',
},
};
},
onShow() {
var _this =this;
},
methods:{
//
login(){
uni.$u.route({
type:'redirectTo',
url: 'pages/user/auth/login',
params: {}
});
},
//
mobileChange(e)
{
var _this = this;
_this.form['mobile'] = e;
},
//
pwdChange(e)
{
var _this = this;
_this.form['password'] = e;
},
//email
emailChange(e)
{
var _this = this;
_this.form['email'] = e;
},
regist()
{
var _this =this;
var form = _this.form;
if(!_this.$com.check(form.mobile,'mobile'))
{
uni.$u.toast(_this.$t('pages.user.auth.login.mobile_must'));
return false;
}
if(form.password.length < 6)
{
uni.$u.toast(_this.$t('pages.user.auth.login.password_must'));
return false;
}
if(!_this.$com.check(form.email,'email'))
{
uni.$u.toast(_this.$t('pages.user.auth.login.email_must'));
return false;
}
var post = form;
_this.$api.post('user/reg',post,function(rs){
console.log(rs);
uni.showModal({
title: _this.$t('locale.tips'),
content: _this.$t('pages.user.auth.regist.regist_success'),
success: function (res) {
if (res.confirm) {
console.log('用户点击确定');
_this.login();
} else if (res.cancel) {
console.log('用户点击取消');
}
}
});
},function(err){
console.log(err);
});
},
},
};
</script>
<style scoped lang="scss">
/*输入框*/
.input_box{
width: 90%;
margin: 40rpx auto 40rpx auto;
height: auto;
}
.input_title{
font-size: 30rpx;
color: #ABABAB;
height: 50rpx;
line-height: 50rpx;
margin: 10rpx auto;
display: block;
}
.button_box {
width: 90%;
margin: 40rpx auto 20rpx auto;
}
.submit {
width: 100%;
background-color: #4CAF50;
justify-content: center;
align-items: center;
border-radius: 10rpx;
}
.submit-text {
color: white;
padding: 30rpx;
}
.submit:active {
background-color: green;
opacity: 0.5;
}
.footer {
flex-direction: row;
justify-content: center;
text-align: center;
align-items: center;
margin-top: 100rpx;
}
.footer-text {
font-size: 28rpx;
color: #296db5;
padding: 30rpx;
}
</style>

@ -11,7 +11,7 @@
<view class="photo_main_face_2">
<view class="photo_main_face_2_1">上传5-10有效照片越多生成效果越好</view>
<view class="photo_main_face_2_2">
<image src="/static/img/common/common_21.png" />
<image src="/static/img/index/tips.png" />
</view>
</view>

@ -11,7 +11,7 @@
<view class="photo_main_face_2">
<view class="photo_main_face_2_1">上传5-10有效照片越多生成效果越好</view>
<view class="photo_main_face_2_2">
<image src="/static/img/common/common_21.png" />
<image src="/static/img/index/tips.png" />
</view>
</view>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 750 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 733 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 93 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 721 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 805 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 7.8 KiB

Loading…
Cancel
Save