合并代码
This commit is contained in:
parent
9f02c72dbd
commit
b65cbd6417
|
@ -36,7 +36,20 @@ const mine = {
|
||||||
url: `/user/adolescent/open`,
|
url: `/user/adolescent/open`,
|
||||||
data: param.data,
|
data: param.data,
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
load: 1,
|
load: true,
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 青少年模式解锁
|
||||||
|
* @param {Object} param
|
||||||
|
*/
|
||||||
|
adolescentClose(param) {
|
||||||
|
return util.request({
|
||||||
|
url: `/user/adolescent`,
|
||||||
|
path: param.path,
|
||||||
|
method: 'GET',
|
||||||
|
load: true,
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -53,7 +66,7 @@ const mine = {
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 验证盖章后是否实名
|
* 验证实名信息是否填写
|
||||||
* @param {Object} param
|
* @param {Object} param
|
||||||
*/
|
*/
|
||||||
isCertification(param) {
|
isCertification(param) {
|
||||||
|
|
|
@ -6,8 +6,9 @@ const config = {
|
||||||
// #endif
|
// #endif
|
||||||
// #ifndef H5
|
// #ifndef H5
|
||||||
// host: 'http://91f.xyz:8080',
|
// host: 'http://91f.xyz:8080',
|
||||||
// host: 'http://192.168.31.61:8080',
|
// host: 'http://192.168.0.110:8080',
|
||||||
host: 'http://192.168.31.41:8080',
|
// host: 'http://192.168.0.105:8080',
|
||||||
|
host: 'http://192.168.0.102:8080',
|
||||||
// #endif
|
// #endif
|
||||||
// 支付方式配置
|
// 支付方式配置
|
||||||
payType: {
|
payType: {
|
||||||
|
|
|
@ -110,13 +110,13 @@
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
// 1是商家
|
// 1是商家
|
||||||
if(userinfo.value.isShop == 1) {
|
// if(userinfo.value.isShop == 1) {
|
||||||
result.push({
|
// result.push({
|
||||||
name: '发布商品',
|
// name: '发布商品',
|
||||||
img: '/static/footerMenu1.png',
|
// img: '/static/footerMenu1.png',
|
||||||
url: '/pages/release/commodity',
|
// url: '/pages/release/commodity',
|
||||||
})
|
// })
|
||||||
}
|
// }
|
||||||
// 追加
|
// 追加
|
||||||
// result.push({
|
// result.push({
|
||||||
// name: '打车',
|
// name: '打车',
|
||||||
|
|
|
@ -38,31 +38,14 @@
|
||||||
// md5加密
|
// md5加密
|
||||||
data.userPassword = CryptoJS.MD5(data.userPassword).toString();
|
data.userPassword = CryptoJS.MD5(data.userPassword).toString();
|
||||||
|
|
||||||
api.mine.checkSecondLevelCipher({
|
|
||||||
data,
|
|
||||||
}).then(rs => {
|
|
||||||
if (rs.code === 200) {
|
|
||||||
// 更新用户信息解除青少年模式
|
|
||||||
unLockTeenMode()
|
|
||||||
return
|
|
||||||
}
|
|
||||||
util.alert({
|
|
||||||
content: rs.msg,
|
|
||||||
showCancel: false,
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
// 解除青少年模式
|
// 解除青少年模式
|
||||||
function unLockTeenMode() {
|
api.mine.adolescentClose({
|
||||||
api.mine.updateUserInfo({
|
path: [data.userPassword],
|
||||||
data: {
|
|
||||||
userId: userinfo.value.userId,
|
|
||||||
teen
|
|
||||||
}
|
|
||||||
}).then(rs => {
|
}).then(rs => {
|
||||||
if (rs.code == 200) {
|
if (rs.code == 200) {
|
||||||
// uni.navigateBack()
|
uni.switchTab({
|
||||||
|
url: '/pages/index/index'
|
||||||
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
util.alert({
|
util.alert({
|
||||||
|
@ -77,10 +60,10 @@
|
||||||
<view class="container pr fmid fdc">
|
<view class="container pr fmid fdc">
|
||||||
<view class="title f40 b">输入登录密码解锁未成年模式</view>
|
<view class="title f40 b">输入登录密码解锁未成年模式</view>
|
||||||
|
|
||||||
<view class="account mtb20 c666 f32">当前账号: {{userinfo.userPhone}}</view>
|
<view class="account mtb20 c666 f32">当前账号: {{userinfo.phoneNumber}}</view>
|
||||||
|
|
||||||
<view class="password mtb30 br20">
|
<view class="password mtb30 br20">
|
||||||
<input class="input" type="text" v-model="form.userPassword" placeholder="登录密码" />
|
<input class="input" type="text" v-model="form.userPassword" placeholder="二级密码" />
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="button btn lg bar black mt60" @click="handleSubmit">解锁</view>
|
<view class="button btn lg bar black mt60" @click="handleSubmit">解锁</view>
|
||||||
|
|
|
@ -74,13 +74,23 @@
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 跳转
|
||||||
|
* @param {Object} url 路径
|
||||||
|
*/
|
||||||
|
function link(url) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url
|
||||||
|
})
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<view class="app">
|
<view class="app">
|
||||||
<apex title="商品管理">
|
<apex title="商品管理">
|
||||||
<template #right>
|
<template #right>
|
||||||
<view class="f24">添加</view>
|
<view class="f24" @click="link('/pages/release/commodity')">添加</view>
|
||||||
</template>
|
</template>
|
||||||
</apex>
|
</apex>
|
||||||
|
|
||||||
|
|
|
@ -431,3 +431,4 @@ likeType
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -5,8 +5,9 @@ import uni from '@dcloudio/vite-plugin-uni';
|
||||||
|
|
||||||
//
|
//
|
||||||
// let target = 'http://91f.xyz:8080'
|
// let target = 'http://91f.xyz:8080'
|
||||||
let target = 'http://192.168.31.41:8080'
|
// let target = 'http://192.168.0.110:8080'
|
||||||
// let target = 'http://192.168.31.61:8080'
|
// let target = 'http://192.168.0.105:8080'
|
||||||
|
let target = 'http://192.168.0.102:8080'
|
||||||
|
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
plugins: [uni()],
|
plugins: [uni()],
|
||||||
|
|
Loading…
Reference in New Issue