同步代码
This commit is contained in:
@@ -1,16 +1,20 @@
|
|||||||
{ // launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/
|
{
|
||||||
|
// launch.json 配置了启动调试时相关设置,configurations下节点名称可为 app-plus/h5/mp-weixin/mp-baidu/mp-alipay/mp-qq/mp-toutiao/mp-360/
|
||||||
// launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数
|
// launchtype项可配置值为local或remote, local代表前端连本地云函数,remote代表前端连云端云函数
|
||||||
"version" : "0.0",
|
"version" : "0.0",
|
||||||
"configurations": [{
|
"configurations" : [
|
||||||
"app-plus" :
|
|
||||||
{
|
{
|
||||||
|
"app-plus" : {
|
||||||
"launchtype" : "local"
|
"launchtype" : "local"
|
||||||
},
|
},
|
||||||
"default" :
|
"default" : {
|
||||||
{
|
|
||||||
"launchtype" : "local"
|
"launchtype" : "local"
|
||||||
},
|
},
|
||||||
"type" : "uniCloud"
|
"type" : "uniCloud"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"playground" : "standard",
|
||||||
|
"type" : "uni-app:app-android"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,8 +9,8 @@ import { router } from '@/router/index.js'
|
|||||||
|
|
||||||
// 基础配置
|
// 基础配置
|
||||||
const config = {
|
const config = {
|
||||||
apiUrl : 'https://api.douhuotest.douhuofalv.com/api/', // 测试环境
|
apiUrl : 'https://douhuo.douhuofalv.com/api/',
|
||||||
// apiUrl : 'https://douhuo.douhuofalv.com/api/', // 正式环境
|
// apiUrl : 'https://douhuo.demos.uzchain.tech/api/', //测试环境
|
||||||
timeout : 60000
|
timeout : 60000
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -67,6 +67,14 @@ const registeragree = (website) =>{
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 验证码登录
|
||||||
|
const authSms = (data) =>{
|
||||||
|
return request({
|
||||||
|
url: "user/auth/sms",
|
||||||
|
method: 'POST',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
export {
|
export {
|
||||||
Register,
|
Register,
|
||||||
Captcha,
|
Captcha,
|
||||||
@@ -74,5 +82,6 @@ export {
|
|||||||
Login,
|
Login,
|
||||||
resetPassword,
|
resetPassword,
|
||||||
modifyPassword,
|
modifyPassword,
|
||||||
registeragree
|
registeragree,
|
||||||
|
authSms
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -208,6 +208,71 @@ const Bind = (data) => {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 账户管理类
|
||||||
|
const accountManagement = () => {
|
||||||
|
return request({
|
||||||
|
url: "account_management/index"
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 账户管理类 - 办理
|
||||||
|
const accountFrom = (data, id) => {
|
||||||
|
return request({
|
||||||
|
url : "account_management/" + id + "/store",
|
||||||
|
method : "POST",
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 账户管理类 - 订单
|
||||||
|
const accountOrder = data => {
|
||||||
|
return request({
|
||||||
|
url : "account_management/order/lists",
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 账户管理类 - 取消订单
|
||||||
|
const accountCancel = id => {
|
||||||
|
return request({
|
||||||
|
url : "account_management/order/" + id + "/cancel",
|
||||||
|
method : "DELETE"
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 委托管理类
|
||||||
|
const delegation = () => {
|
||||||
|
return request({
|
||||||
|
url: "delegation/index"
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 委托管理类 - 办理
|
||||||
|
const delegationFrom = (data, id) => {
|
||||||
|
return request({
|
||||||
|
url : "delegation/" + id + "/store",
|
||||||
|
method : "POST",
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 委托管理类 - 订单
|
||||||
|
const delegationOrder = data => {
|
||||||
|
return request({
|
||||||
|
url : "delegation/order/lists",
|
||||||
|
method : "POST",
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 委托管理类 - 取消订单
|
||||||
|
const delegationCancel = id => {
|
||||||
|
return request({
|
||||||
|
url : "delegation/order/" + id + "/cancel",
|
||||||
|
method : "DELETE"
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
export {
|
export {
|
||||||
home,
|
home,
|
||||||
articleSort,
|
articleSort,
|
||||||
@@ -234,5 +299,13 @@ export {
|
|||||||
Schemes,
|
Schemes,
|
||||||
wechatCode,
|
wechatCode,
|
||||||
Verify,
|
Verify,
|
||||||
Bind
|
Bind,
|
||||||
|
accountManagement,
|
||||||
|
accountFrom,
|
||||||
|
accountOrder,
|
||||||
|
accountCancel,
|
||||||
|
delegation,
|
||||||
|
delegationFrom,
|
||||||
|
delegationOrder,
|
||||||
|
delegationCancel
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -164,9 +164,6 @@ const payInfo = data => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const payWechat = data => {
|
const payWechat = data => {
|
||||||
|
|
||||||
console.log('111')
|
|
||||||
|
|
||||||
return request({
|
return request({
|
||||||
url : "pay/cashier_desk/wechat",
|
url : "pay/cashier_desk/wechat",
|
||||||
method : 'POST',
|
method : 'POST',
|
||||||
|
|||||||
42
pages.json
42
pages.json
@@ -84,7 +84,15 @@
|
|||||||
"aliasPath": "/login/login",
|
"aliasPath": "/login/login",
|
||||||
"name": "Login",
|
"name": "Login",
|
||||||
"style": {
|
"style": {
|
||||||
"navigationBarTitleText": "抖火法律-登录",
|
"navigationBarTitleText": "抖火法律-验证码登录",
|
||||||
|
"navigationStyle": "custom"
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
"path": "pages/login/passwordLogin",
|
||||||
|
"aliasPath": "/login/passwordLogin",
|
||||||
|
"name": "PasswordLogin",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "抖火法律-密码登录",
|
||||||
"navigationStyle": "custom"
|
"navigationStyle": "custom"
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
@@ -657,6 +665,38 @@
|
|||||||
"enablePullDownRefresh": false,
|
"enablePullDownRefresh": false,
|
||||||
"navigationStyle": "custom"
|
"navigationStyle": "custom"
|
||||||
}
|
}
|
||||||
|
},{
|
||||||
|
"path" : "pages/management/account",
|
||||||
|
"name" : "MagAccount",
|
||||||
|
"style" : {
|
||||||
|
"navigationBarTitleText" : "账户咨询办理",
|
||||||
|
"enablePullDownRefresh" : false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path" : "pages/management/delegation",
|
||||||
|
"name" : "MagDelegation",
|
||||||
|
"style" : {
|
||||||
|
"navigationBarTitleText" : "委托管理办理",
|
||||||
|
"enablePullDownRefresh" : false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path" : "pages/work/account",
|
||||||
|
"name" : "AccountWork",
|
||||||
|
"style" : {
|
||||||
|
"navigationBarTitleText" : "账户管理咨询类",
|
||||||
|
"enablePullDownRefresh" : false,
|
||||||
|
"navigationBarBackgroundColor": "#FFFFFF"
|
||||||
|
}
|
||||||
|
},{
|
||||||
|
"path" : "pages/work/delegation",
|
||||||
|
"name" : "DelegationWork",
|
||||||
|
"style" : {
|
||||||
|
"navigationBarTitleText" : "委托管理类",
|
||||||
|
"enablePullDownRefresh" : false,
|
||||||
|
"navigationBarBackgroundColor": "#FFFFFF"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"globalStyle": {
|
"globalStyle": {
|
||||||
|
|||||||
@@ -49,7 +49,7 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 新增改版 - 协商调解类 -->
|
<!-- 新增改版 - 协商调解类 -->
|
||||||
<view class="module">
|
<view class="module" style="display: none;">
|
||||||
<view class="module-title">
|
<view class="module-title">
|
||||||
协商调解类
|
协商调解类
|
||||||
</view>
|
</view>
|
||||||
@@ -76,13 +76,53 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- 账户管理咨询类 -->
|
||||||
|
<view class="module" v-if="accountData.length > 0" style="display: none;">
|
||||||
|
<view class="module-title">
|
||||||
|
账户管理咨询类
|
||||||
|
</view>
|
||||||
|
<scroll-view class="law" scroll-x="true" show-scrollbar="false">
|
||||||
|
<view class="law-label" v-for="(item, index) in accountData" :key="index" @click="onMagInfo('Account', item.id)">
|
||||||
|
<image class="law-label-img" :src="item.cover" mode="widthFix"></image>
|
||||||
|
<view class="law-label-cont">
|
||||||
|
<view class="nowrap law-label-name">
|
||||||
|
{{item.title}}
|
||||||
|
</view>
|
||||||
|
<view class="law-label-price">
|
||||||
|
¥{{item.price}}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</scroll-view>
|
||||||
|
</view>
|
||||||
|
<!-- 委托管理类 -->
|
||||||
|
<view class="module" v-if="delegation.length > 0" style="display: none;">
|
||||||
|
<view class="module-title">
|
||||||
|
委托管理类
|
||||||
|
</view>
|
||||||
|
<scroll-view class="law" scroll-x="true" show-scrollbar="false">
|
||||||
|
<view class="law-label" v-for="(item, index) in delegation" :key="index" @click="onMagInfo('Delegation', item.id)">
|
||||||
|
<image class="law-label-img" :src="item.cover" mode="widthFix"></image>
|
||||||
|
<view class="law-label-cont">
|
||||||
|
<view class="nowrap law-label-name">
|
||||||
|
{{item.title}}
|
||||||
|
</view>
|
||||||
|
<view class="law-label-price">
|
||||||
|
¥{{item.price}}
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</scroll-view>
|
||||||
|
</view>
|
||||||
|
|
||||||
<!-- 新增改版 - 法律资讯类 -->
|
<!-- 新增改版 - 法律资讯类 -->
|
||||||
<view class="module">
|
<view class="module">
|
||||||
<view class="module-title">
|
<view class="module-title">
|
||||||
法律咨询类
|
企业法律顾问
|
||||||
</view>
|
</view>
|
||||||
<scroll-view class="law" scroll-x="true" show-scrollbar="false">
|
<scroll-view class="law" scroll-x="true" show-scrollbar="false">
|
||||||
<view class="law-label" @click="clickBrief">
|
<!-- <view class="law-label" @click="clickBrief">
|
||||||
<image class="law-label-img" src="https://douhuo-storage.oss-cn-beijing.aliyuncs.com/images/2023/06/18/f3db072ac405edf2a3dc3fd6c3aae206.png" mode="widthFix"></image>
|
<image class="law-label-img" src="https://douhuo-storage.oss-cn-beijing.aliyuncs.com/images/2023/06/18/f3db072ac405edf2a3dc3fd6c3aae206.png" mode="widthFix"></image>
|
||||||
<view class="law-label-cont">
|
<view class="law-label-cont">
|
||||||
<view class="law-label-name">
|
<view class="law-label-name">
|
||||||
@@ -95,7 +135,7 @@
|
|||||||
¥365.00/年
|
¥365.00/年
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view> -->
|
||||||
<view class="law-label" @click="$Router.push({name: 'StandBrief', params: {type: 2}})">
|
<view class="law-label" @click="$Router.push({name: 'StandBrief', params: {type: 2}})">
|
||||||
<image class="law-label-img" src="https://douhuo-storage.oss-cn-beijing.aliyuncs.com/images/2023/06/18/d813f30a393e6d50df8cc59a36e557c8.png" mode="widthFix"></image>
|
<image class="law-label-img" src="https://douhuo-storage.oss-cn-beijing.aliyuncs.com/images/2023/06/18/d813f30a393e6d50df8cc59a36e557c8.png" mode="widthFix"></image>
|
||||||
<view class="law-label-cont">
|
<view class="law-label-cont">
|
||||||
@@ -158,7 +198,7 @@
|
|||||||
<!-- 新增改版 - 诉讼委托类 -->
|
<!-- 新增改版 - 诉讼委托类 -->
|
||||||
<view class="module">
|
<view class="module">
|
||||||
<view class="module-title">
|
<view class="module-title">
|
||||||
诉讼委托类
|
案件诉讼委托
|
||||||
</view>
|
</view>
|
||||||
<view class="topCont-tool">
|
<view class="topCont-tool">
|
||||||
<view class="topCont-tool-label redBlock" @click="$Router.push({name: 'EntrustBrief'})">
|
<view class="topCont-tool-label redBlock" @click="$Router.push({name: 'EntrustBrief'})">
|
||||||
@@ -187,7 +227,7 @@
|
|||||||
</view>
|
</view>
|
||||||
|
|
||||||
<!-- 新增改版 - 增收赋能类 -->
|
<!-- 新增改版 - 增收赋能类 -->
|
||||||
<view class="module">
|
<view class="module" style="display: none;">
|
||||||
<view class="module-title">
|
<view class="module-title">
|
||||||
增收赋能类
|
增收赋能类
|
||||||
</view>
|
</view>
|
||||||
@@ -349,7 +389,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { workIndex, home, articleSort, articleList } from '@/apis/interfaces/index'
|
import { workIndex, home, articleSort, articleList, accountManagement, delegation } from '@/apis/interfaces/index'
|
||||||
import { judgeReal, userIndex, authFollow } from '@/apis/interfaces/user'
|
import { judgeReal, userIndex, authFollow } from '@/apis/interfaces/user'
|
||||||
import { lists } from '@/apis/interfaces/empower.js'
|
import { lists } from '@/apis/interfaces/empower.js'
|
||||||
export default {
|
export default {
|
||||||
@@ -378,8 +418,13 @@
|
|||||||
layadState : '',
|
layadState : '',
|
||||||
layadImg : '',
|
layadImg : '',
|
||||||
haveimg : '',
|
haveimg : '',
|
||||||
|
|
||||||
// 增收赋能列表
|
// 增收赋能列表
|
||||||
empowerArr : []
|
empowerArr : [],
|
||||||
|
// 账户管理类
|
||||||
|
accountData : [],
|
||||||
|
// 委托管理类
|
||||||
|
delegation : []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onShow() {
|
onShow() {
|
||||||
@@ -403,7 +448,13 @@
|
|||||||
this.articleItem();
|
this.articleItem();
|
||||||
|
|
||||||
// 增收赋能
|
// 增收赋能
|
||||||
this.getEmpower()
|
this.getEmpower();
|
||||||
|
|
||||||
|
// 账户管理类
|
||||||
|
this.getManagement();
|
||||||
|
|
||||||
|
// 委托管理类
|
||||||
|
this.getDelegation();
|
||||||
|
|
||||||
if(this.$store.getters.getToken) {
|
if(this.$store.getters.getToken) {
|
||||||
userIndex().then(res => {
|
userIndex().then(res => {
|
||||||
@@ -418,6 +469,39 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
// 获取账户管理类
|
||||||
|
getManagement(){
|
||||||
|
accountManagement().then(res => {
|
||||||
|
let accountData = res
|
||||||
|
this.accountData = accountData
|
||||||
|
}).catch(err => {
|
||||||
|
uni.showToast({
|
||||||
|
title: err.message,
|
||||||
|
icon: "none"
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
},
|
||||||
|
// 获取委托管理类
|
||||||
|
getDelegation(){
|
||||||
|
delegation().then(res => {
|
||||||
|
let delegationData = res
|
||||||
|
this.delegation = delegationData
|
||||||
|
}).catch(err => {
|
||||||
|
uni.showToast({
|
||||||
|
title: err.message,
|
||||||
|
icon: "none"
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
},
|
||||||
|
// 查看管理类业务
|
||||||
|
onMagInfo(type, id){
|
||||||
|
this.$Router.push({
|
||||||
|
name : 'Mag' + type,
|
||||||
|
params : { id }
|
||||||
|
})
|
||||||
|
},
|
||||||
// 增收赋能接口
|
// 增收赋能接口
|
||||||
getEmpower(){
|
getEmpower(){
|
||||||
lists().then(res => {
|
lists().then(res => {
|
||||||
@@ -579,8 +663,8 @@
|
|||||||
officialGeneral(){
|
officialGeneral(){
|
||||||
// 获取微信授权信息
|
// 获取微信授权信息
|
||||||
authFollow({
|
authFollow({
|
||||||
// url: 'https://web.douhuofalv.com/webview/webCode'
|
url: 'https://web.douhuofalv.com/webview/webCode'
|
||||||
url: 'https://web.douhuotest.douhuofalv.com/webview/webCode'
|
// url: 'https://web.douhuotest.douhuofalv.com/webview/webCode'
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
window.location.href = res
|
window.location.href = res
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
|
|||||||
@@ -78,8 +78,8 @@
|
|||||||
judgeGeneral(){
|
judgeGeneral(){
|
||||||
// 获取微信授权信息
|
// 获取微信授权信息
|
||||||
authFollow({
|
authFollow({
|
||||||
// url: 'https://web.douhuofalv.com/webview/webCode'
|
url: 'https://web.douhuofalv.com/webview/webCode'
|
||||||
url: 'https://web.douhuotest.douhuofalv.com/webview/webCode'
|
// url: 'https://web.douhuotest.douhuofalv.com/webview/webCode'
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
window.location.href = res
|
window.location.href = res
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
|
|||||||
@@ -95,8 +95,8 @@
|
|||||||
judgeGeneral(){
|
judgeGeneral(){
|
||||||
// 获取微信授权信息
|
// 获取微信授权信息
|
||||||
authFollow({
|
authFollow({
|
||||||
url: 'https://web.douhuotest.douhuofalv.com/webview/webCode'
|
// url: 'https://web.douhuotest.douhuofalv.com/webview/webCode'
|
||||||
// url: 'https://web.douhuofalv.com/webview/webCode'
|
url: 'https://web.douhuofalv.com/webview/webCode'
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
window.location.href = res
|
window.location.href = res
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
用户登录
|
用户登录
|
||||||
</view>
|
</view>
|
||||||
<view class="title-tips">
|
<view class="title-tips">
|
||||||
密码登录仅适用于已注册用户
|
手机验证码登录
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="info">
|
<view class="info">
|
||||||
@@ -16,15 +16,23 @@
|
|||||||
<view class="inputs">
|
<view class="inputs">
|
||||||
<input type="number" placeholder="请输入手机号" maxlength="11" v-model="phone" />
|
<input type="number" placeholder="请输入手机号" maxlength="11" v-model="phone" />
|
||||||
</view>
|
</view>
|
||||||
<!-- 输入密码 -->
|
|
||||||
<view class="inputs">
|
<view class="captcha-inputs">
|
||||||
<input type="text" :password="passwordState" placeholder="请输入密码" v-model="password" />
|
<view class="captcha-campus-inputs campus-inputs">
|
||||||
<image class="inputs-see" @click="seeClick" :src="seeState ? '../../static/icon/see_active.png' : '../../static/icon/see.png'" mode="aspectFill"></image>
|
<input class="campus-form-input" type="text" placeholder="请输入图文验证码" v-model="newCaptcha" />
|
||||||
</view>
|
</view>
|
||||||
<button class="btn" type="default" @click="LoginSms" :disabled="phone == '' || password == ''">立即登录</button>
|
<image class="campus-form-graph" :src="captchaImg" mode="widthFix" @click="replaceClick"></image>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view class="inputs captcha-inputs">
|
||||||
|
<input class="campus-form-input" type="number" placeholder="请输入验证码" v-model="code" maxlength="4"></input>
|
||||||
|
<button @click="checkCaptcha" class="campus-form-code ":disabled="phone == ''" type="default" size="mini">{{getSms ? '重新发送' + smsTime + 's': '发送验证码'}}</button>
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<button class="btn" type="default" @click="LoginSms" :disabled="phone == '' || code == ''">立即登录</button>
|
||||||
<view class="forget">
|
<view class="forget">
|
||||||
<view class="forget-label" @click="$Router.push({name: 'Register'})">我要注册</view>
|
<view class="forget-label" @click="$Router.push({name: 'Register'})">我要注册</view>
|
||||||
<view class="forget-label forget-after" @click="$Router.push({name: 'Forget'})">忘记密码?</view>
|
<view class="forget-label forget-after" @click="$Router.push({name: 'PasswordLogin'})">密码登录</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
@@ -42,7 +50,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { Login } from '@/apis/interfaces/auth'
|
import { Login, Captcha, smsAuth, authSms } from '@/apis/interfaces/auth'
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@@ -51,23 +59,100 @@
|
|||||||
checked : false, // 勾选协议
|
checked : false, // 勾选协议
|
||||||
seeState : false, //小眼睛
|
seeState : false, //小眼睛
|
||||||
passwordState: true,
|
passwordState: true,
|
||||||
|
disabled : false,
|
||||||
|
code : '', // 短信验证码
|
||||||
|
getSms : '',
|
||||||
|
smsTime : 60,
|
||||||
|
newCaptcha : '', // 填写图形码
|
||||||
|
captcha : '', // 输入图形码
|
||||||
|
captchaImg : '', // 图形码
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// 生命周期函数--监听页面显示
|
||||||
|
onShow() {
|
||||||
|
// 获取图形码
|
||||||
|
this.captchaInfo()
|
||||||
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
// 用户登录
|
// 图形码
|
||||||
|
captchaInfo() {
|
||||||
|
Captcha().then(res=>{
|
||||||
|
console.log(res)
|
||||||
|
this.captchaImg = res.img
|
||||||
|
this.captchaKey = res.key
|
||||||
|
}).catch(err=>{
|
||||||
|
uni.showToast({
|
||||||
|
title: err.message,
|
||||||
|
icon : 'none'
|
||||||
|
})
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
// 看不清,换一张 - 图形码数据
|
||||||
|
replaceClick() {
|
||||||
|
this.captchaInfo();
|
||||||
|
|
||||||
|
// 清除图形码数据
|
||||||
|
this.newCaptcha = ''
|
||||||
|
},
|
||||||
|
|
||||||
|
// 需校验图形验证码
|
||||||
|
checkCaptcha() {
|
||||||
|
if(this.phone) {
|
||||||
|
let outTime
|
||||||
|
smsAuth({
|
||||||
|
mobileNo : this.phone,
|
||||||
|
captcha : this.newCaptcha,
|
||||||
|
captcha_key: this.captchaKey
|
||||||
|
}).then(res => {
|
||||||
|
uni.showToast({
|
||||||
|
title: res.message,
|
||||||
|
icon: "none"
|
||||||
|
})
|
||||||
|
|
||||||
|
this.getSms = true
|
||||||
|
outTime = setInterval(() => {
|
||||||
|
if (this.smsTime <= 1) {
|
||||||
|
this.getSms = false
|
||||||
|
this.smsTime = 60
|
||||||
|
clearInterval('outTime')
|
||||||
|
}
|
||||||
|
this.smsTime -= 1
|
||||||
|
}, 1000)
|
||||||
|
}).catch(err => {
|
||||||
|
uni.showToast({
|
||||||
|
title: err.message,
|
||||||
|
icon: "none"
|
||||||
|
})
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
uni.showToast({
|
||||||
|
title: '请输入手机号',
|
||||||
|
icon: "none"
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
// 勾选协议
|
||||||
|
radioChange() {
|
||||||
|
this.checked = !this.checked
|
||||||
|
},
|
||||||
|
|
||||||
|
// 验证码登录
|
||||||
LoginSms() {
|
LoginSms() {
|
||||||
if(this.checked) {
|
if(this.checked) {
|
||||||
Login({
|
authSms({
|
||||||
username : this.phone,
|
mobileNo : this.phone,
|
||||||
password : this.password
|
parent_id : '',
|
||||||
|
code : this.code
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
// 存储用户token
|
// 存储用户token
|
||||||
this.$store.commit('setToken', res.token_type + ' ' + res.access_token)
|
this.$store.commit('setToken', res.token_type + ' ' + res.access_token)
|
||||||
|
|
||||||
// 回到首页
|
// 回到首页
|
||||||
this.$Router.replaceAll({name: 'Index'})
|
this.$Router.replaceAll({name: 'Index'})
|
||||||
// this.$Router.back()
|
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
title: err.message,
|
title: err.message,
|
||||||
@@ -80,19 +165,7 @@
|
|||||||
icon: "none"
|
icon: "none"
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
|
|
||||||
// 勾选协议
|
|
||||||
radioChange() {
|
|
||||||
this.checked = !this.checked
|
|
||||||
},
|
|
||||||
|
|
||||||
// 查看密码
|
|
||||||
seeClick() {
|
|
||||||
this.seeState = !this.seeState
|
|
||||||
this.passwordState = !this.passwordState
|
|
||||||
},
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
@@ -199,7 +272,7 @@
|
|||||||
.forget-label {
|
.forget-label {
|
||||||
flex: 2;
|
flex: 2;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: #7f8391;
|
color: #000000;
|
||||||
}
|
}
|
||||||
.forget-after {
|
.forget-after {
|
||||||
position: relative;
|
position: relative;
|
||||||
@@ -215,4 +288,55 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.captcha-inputs {
|
||||||
|
height: 100rpx;
|
||||||
|
display: flex;
|
||||||
|
margin-top: $margin + 20;
|
||||||
|
.campus-form-graph {
|
||||||
|
width: 220rpx;
|
||||||
|
margin-top: 20rpx;
|
||||||
|
border-radius: 5rpx;
|
||||||
|
}
|
||||||
|
.captcha-campus-inputs{
|
||||||
|
flex: 1;
|
||||||
|
margin-right: 20rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.campus-inputs {
|
||||||
|
background-color: #f7f8fa;
|
||||||
|
height: 100rpx;
|
||||||
|
line-height: 100rpx;
|
||||||
|
box-sizing: border-box;
|
||||||
|
color: #868686;
|
||||||
|
font-size: $title-size-m;
|
||||||
|
padding: 0 $padding + 10;
|
||||||
|
border-radius: $radius-m;
|
||||||
|
box-sizing: border-box;
|
||||||
|
position: relative;
|
||||||
|
input {
|
||||||
|
font-weight: normal;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.campus-form-code{
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
right: 30rpx;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
background-color: transparent;
|
||||||
|
font-size: 30rpx;
|
||||||
|
height: 100rpx;
|
||||||
|
line-height: 100rpx;
|
||||||
|
color: #f25448;
|
||||||
|
&::after{
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
&[disabled]{
|
||||||
|
color: rgba($color: #f25448, $alpha: .5);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
220
pages/login/passwordLogin.vue
Normal file
220
pages/login/passwordLogin.vue
Normal file
@@ -0,0 +1,220 @@
|
|||||||
|
<template>
|
||||||
|
<view class="content">
|
||||||
|
<img class="loginBack" src="https://douhuo-storage.oss-cn-beijing.aliyuncs.com/images/2023/06/06/5682d339246af0f44b4984c849288aa5.png">
|
||||||
|
<img class="loginBottom" src="https://douhuo-storage.oss-cn-beijing.aliyuncs.com/images/2023/06/06/caa46039d88517ee8ba22b6c32dd47a1.png">
|
||||||
|
<view class="title">
|
||||||
|
<view class="title-name">
|
||||||
|
用户登录
|
||||||
|
</view>
|
||||||
|
<view class="title-tips">
|
||||||
|
密码登录仅适用于已注册用户
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="info">
|
||||||
|
<view class="info-cont">
|
||||||
|
<!-- 输入手机号相关 -->
|
||||||
|
<view class="inputs">
|
||||||
|
<input type="number" placeholder="请输入手机号" maxlength="11" v-model="phone" />
|
||||||
|
</view>
|
||||||
|
<!-- 输入密码 -->
|
||||||
|
<view class="inputs">
|
||||||
|
<input type="text" :password="passwordState" placeholder="请输入密码" v-model="password" />
|
||||||
|
<image class="inputs-see" @click="seeClick" :src="seeState ? '../../static/icon/see_active.png' : '../../static/icon/see.png'" mode="aspectFill"></image>
|
||||||
|
</view>
|
||||||
|
<button class="btn" type="default" @click="LoginSms" :disabled="phone == '' || password == ''">立即登录</button>
|
||||||
|
<view class="forget-label forget-after" style="width: 100%; text-align: center; padding-top: 15rpx; font-size: 28rpx; color: #7f8391;" @click="$Router.push({name: 'Forget'})">忘记密码?</view>
|
||||||
|
<view class="forget">
|
||||||
|
<view class="forget-label" @click="$Router.push({name: 'Register'})">我要注册</view>
|
||||||
|
<view class="forget-label forget-after" @click="$Router.push({name: 'Login'})">验证码登录</view>
|
||||||
|
|
||||||
|
</view>
|
||||||
|
|
||||||
|
</view>
|
||||||
|
<!-- 用户登录注册协议 -->
|
||||||
|
<view class="agreement">
|
||||||
|
<checkbox-group @change="radioChange">
|
||||||
|
<checkbox color="#da2b56" :checked="checked" style="transform: scale(.55)" class="radioGroup" />
|
||||||
|
</checkbox-group>
|
||||||
|
<view class="agreement-text">
|
||||||
|
我已阅读并同意抖火法律<view @click="$Router.push({name: 'Agreement', params: {page : 3}})">《隐私协议》</view>和<view @click="$Router.push({name: 'Agreement', params: {page : 4}})">《服务协议》</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { Login } from '@/apis/interfaces/auth'
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
phone : '', // 手机号码
|
||||||
|
password: '', // 登录密码
|
||||||
|
checked : false, // 勾选协议
|
||||||
|
seeState : false, //小眼睛
|
||||||
|
passwordState: true,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
// 用户登录
|
||||||
|
LoginSms() {
|
||||||
|
if(this.checked) {
|
||||||
|
Login({
|
||||||
|
username : this.phone,
|
||||||
|
password : this.password
|
||||||
|
}).then(res => {
|
||||||
|
// 存储用户token
|
||||||
|
this.$store.commit('setToken', res.token_type + ' ' + res.access_token)
|
||||||
|
|
||||||
|
// 回到首页
|
||||||
|
this.$Router.replaceAll({name: 'Index'})
|
||||||
|
// this.$Router.back()
|
||||||
|
}).catch(err => {
|
||||||
|
uni.showToast({
|
||||||
|
title: err.message,
|
||||||
|
icon: "none"
|
||||||
|
})
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
uni.showToast({
|
||||||
|
title: '请勾选用户隐私和服务协议',
|
||||||
|
icon: "none"
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// 勾选协议
|
||||||
|
radioChange() {
|
||||||
|
this.checked = !this.checked
|
||||||
|
},
|
||||||
|
|
||||||
|
// 查看密码
|
||||||
|
seeClick() {
|
||||||
|
this.seeState = !this.seeState
|
||||||
|
this.passwordState = !this.passwordState
|
||||||
|
},
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.loginBack {
|
||||||
|
width: 35%;
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
.loginBottom {
|
||||||
|
width: 60%;
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.agreement {
|
||||||
|
padding: $padding 0 $padding - 20 $padding - 10;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: flex;
|
||||||
|
font-size: $title-size-sm;
|
||||||
|
width: 100%;
|
||||||
|
line-height: 60rpx;
|
||||||
|
color: #979797;
|
||||||
|
.radioGroup {
|
||||||
|
font-size: $title-size-sm;
|
||||||
|
}
|
||||||
|
.agreement-text {
|
||||||
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
|
view {
|
||||||
|
color: $mian-color;
|
||||||
|
padding: 0 5rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
padding: $padding*4 $padding * 3 $padding*2;
|
||||||
|
box-sizing: border-box;
|
||||||
|
.title-name {
|
||||||
|
font-size: $title-size + 10;
|
||||||
|
margin-bottom: $margin - 10;
|
||||||
|
}
|
||||||
|
.title-tips {
|
||||||
|
color: #8e8e8e;
|
||||||
|
font-size: $title-size-m;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.info {
|
||||||
|
padding: $padding * 3 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 6;
|
||||||
|
width: 100%;
|
||||||
|
.info-cont {
|
||||||
|
padding: 0 $padding * 3;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
.inputs {
|
||||||
|
background-color: #f7f8fa;
|
||||||
|
height: 100rpx;
|
||||||
|
line-height: 100rpx;
|
||||||
|
margin-bottom: $margin + 20;
|
||||||
|
box-sizing: border-box;
|
||||||
|
color: #868686;
|
||||||
|
font-size: $title-size-m;
|
||||||
|
padding: 0 $padding + 10;
|
||||||
|
border-radius: $radius-m;
|
||||||
|
box-sizing: border-box;
|
||||||
|
position: relative;
|
||||||
|
.inputs-see {
|
||||||
|
position: absolute;
|
||||||
|
right: $padding;
|
||||||
|
top: $padding;
|
||||||
|
width: 38rpx;
|
||||||
|
height: 38rpx;
|
||||||
|
}
|
||||||
|
input {
|
||||||
|
font-weight: normal;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.btn {
|
||||||
|
background-image: linear-gradient(to right, #da2b56, #FBAF3B);
|
||||||
|
color: #ffffff;
|
||||||
|
border-radius: $radius-m;
|
||||||
|
font-size: $title-size;
|
||||||
|
height: 100rpx;
|
||||||
|
line-height: 100rpx;
|
||||||
|
padding: 0;
|
||||||
|
margin: $margin * 3 0 0;
|
||||||
|
&[disabled] {
|
||||||
|
background-image: linear-gradient(to right, #ff8da9, #ffd0a2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.forget {
|
||||||
|
display: flex;
|
||||||
|
line-height: 120rpx;
|
||||||
|
font-size: $title-size-m;
|
||||||
|
.forget-label {
|
||||||
|
flex: 2;
|
||||||
|
text-align: center;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
.forget-after {
|
||||||
|
position: relative;
|
||||||
|
&::after {
|
||||||
|
position: absolute;
|
||||||
|
content: '';
|
||||||
|
left: 0;
|
||||||
|
bottom: calc(50% - 15rpx);
|
||||||
|
width: 2rpx;
|
||||||
|
height: 30rpx;
|
||||||
|
background-color: #f6f6f6;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
135
pages/management/account.vue
Normal file
135
pages/management/account.vue
Normal file
@@ -0,0 +1,135 @@
|
|||||||
|
<template>
|
||||||
|
<view class="from-content">
|
||||||
|
<view class="from-block" v-if="pickerArr.length > 0" >
|
||||||
|
<view class="from-block-item">
|
||||||
|
<label>办理业务</label>
|
||||||
|
<picker class="from-block-val" :range="pickerArr" :value="pickerIndex" range-key="title" @change="pickerIndex = $event.detail.value">
|
||||||
|
<view class="from-block-picker nowrap">{{pickerArr[pickerIndex].title}}
|
||||||
|
<u-icon class="from-block-picker-icon" name="arrow-down" color="#555" size="15"></u-icon>
|
||||||
|
</view>
|
||||||
|
</picker>
|
||||||
|
</view>
|
||||||
|
<view class="from-block-item">
|
||||||
|
<label>业务价格</label>
|
||||||
|
<view class="from-block-val price">¥{{pickerArr[pickerIndex].price}}</view>
|
||||||
|
</view>
|
||||||
|
<view class="from-block-item">
|
||||||
|
<label>业务描述</label>
|
||||||
|
<view class="from-block-val">{{pickerArr[pickerIndex].subtitle}}</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="from-block">
|
||||||
|
<view class="from-block-item">
|
||||||
|
<label>客户姓名</label>
|
||||||
|
<input class="from-block-val from-block-input" placeholder="请输入客户姓名" v-model="name" />
|
||||||
|
</view>
|
||||||
|
<view class="from-block-item">
|
||||||
|
<label>手机号码</label>
|
||||||
|
<input class="from-block-val from-block-input" type="number" placeholder="请输入客户手机号码" maxlength="11" v-model="phone" />
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<button class="from-btn" @click="onSubmit">提交办理</button>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { accountManagement, accountFrom } from '@/apis/interfaces/index.js'
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
pickerArr : [],
|
||||||
|
pickerIndex : 0,
|
||||||
|
name : '',
|
||||||
|
phone : ''
|
||||||
|
};
|
||||||
|
},
|
||||||
|
onLoad() {
|
||||||
|
uni.showLoading({
|
||||||
|
title: '加载中...',
|
||||||
|
mask : true
|
||||||
|
})
|
||||||
|
accountManagement().then(res => {
|
||||||
|
uni.hideLoading()
|
||||||
|
this.pickerArr = res;
|
||||||
|
this.pickerIndex = res.findIndex(val => val.id == this.$Route.query.id)
|
||||||
|
}).catch(err => {
|
||||||
|
uni.showToast({
|
||||||
|
title: err.message,
|
||||||
|
icon : 'none'
|
||||||
|
})
|
||||||
|
})
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
// 提交表单
|
||||||
|
onSubmit(){
|
||||||
|
let { name, phone, pickerArr, pickerIndex } = this
|
||||||
|
|
||||||
|
console.log(pickerArr[pickerIndex])
|
||||||
|
|
||||||
|
if(name === ''){
|
||||||
|
uni.showToast({
|
||||||
|
title: '请输入客户姓名',
|
||||||
|
icon : 'none'
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if(phone === ''){
|
||||||
|
uni.showToast({
|
||||||
|
title: '请输入客户手机号码',
|
||||||
|
icon : 'none'
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
uni.showLoading({
|
||||||
|
title: "提交中...",
|
||||||
|
mask : true
|
||||||
|
})
|
||||||
|
accountFrom({
|
||||||
|
name : name,
|
||||||
|
mobile : phone
|
||||||
|
}, pickerArr[pickerIndex].id).then(res => {
|
||||||
|
let { order_type, order_id, order_no, total } = res;
|
||||||
|
this.$Router.replace({name: 'FeePay', params: {id: order_id, orderType: order_type, price: total, payForm: 'synthesize'}})
|
||||||
|
|
||||||
|
}).catch(err => {
|
||||||
|
uni.showToast({
|
||||||
|
title: err.message,
|
||||||
|
icon : 'none'
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.from-content{
|
||||||
|
min-height: 100vh;
|
||||||
|
padding: 30rpx;
|
||||||
|
background: #f7f8f9;
|
||||||
|
}
|
||||||
|
.from-block{
|
||||||
|
background: white;
|
||||||
|
border-radius: 20rpx;
|
||||||
|
margin-bottom: 30rpx;
|
||||||
|
padding: 0 30rpx;
|
||||||
|
}
|
||||||
|
.from-block-item{
|
||||||
|
min-height: 70rpx;
|
||||||
|
display: flex;
|
||||||
|
font-size: 32rpx;
|
||||||
|
border-bottom: solid 1rpx #f3f3f3;
|
||||||
|
padding: 15rpx 0;
|
||||||
|
|
||||||
|
}
|
||||||
|
.from-block-item:last-child{ border: none; }
|
||||||
|
label{ width: 200rpx; line-height: 70rpx; }
|
||||||
|
.from-block-val{ width: calc(100% - 200rpx); text-align: right; line-height: 70rpx;}
|
||||||
|
.from-block-val.price{ color: #446EFE; font-weight: bold; }
|
||||||
|
.from-block-input{ height: 70rpx; font-size: 32rpx; }
|
||||||
|
.from-block-picker{ padding-right: 50rpx; position: relative; }
|
||||||
|
.from-block-picker-icon{ position: absolute; right: 0; top: 50%; margin-top: -15rpx; }
|
||||||
|
.from-btn{ width: 100%; background-color: #446EFE; color: white; line-height: 95rpx; height: 95rpx; border-radius: 45rpx; font-size: 32rpx; font-weight: bold;
|
||||||
|
&::after{ display: none; }
|
||||||
|
}
|
||||||
|
</style>
|
||||||
139
pages/management/delegation.vue
Normal file
139
pages/management/delegation.vue
Normal file
@@ -0,0 +1,139 @@
|
|||||||
|
<template>
|
||||||
|
<view class="from-content">
|
||||||
|
<view class="from-block" v-if="pickerArr.length > 0" >
|
||||||
|
<view class="from-block-item">
|
||||||
|
<label>办理业务</label>
|
||||||
|
<picker class="from-block-val" :range="pickerArr" :value="pickerIndex" range-key="title" @change="pickerIndex = $event.detail.value">
|
||||||
|
<view class="from-block-picker nowrap">{{pickerArr[pickerIndex].title}}
|
||||||
|
<u-icon class="from-block-picker-icon" name="arrow-down" color="#555" size="15"></u-icon>
|
||||||
|
</view>
|
||||||
|
</picker>
|
||||||
|
</view>
|
||||||
|
<view class="from-block-item">
|
||||||
|
<label>业务价格</label>
|
||||||
|
<view class="from-block-val price">¥{{pickerArr[pickerIndex].price}}</view>
|
||||||
|
</view>
|
||||||
|
<view class="from-block-item">
|
||||||
|
<label>业务描述</label>
|
||||||
|
<view class="from-block-val">{{pickerArr[pickerIndex].subtitle}}</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="from-block">
|
||||||
|
<view class="from-block-item">
|
||||||
|
<label>客户姓名</label>
|
||||||
|
<input class="from-block-val from-block-input" placeholder="请输入客户姓名" v-model="name" />
|
||||||
|
</view>
|
||||||
|
<view class="from-block-item">
|
||||||
|
<label>手机号码</label>
|
||||||
|
<input class="from-block-val from-block-input" type="number" placeholder="请输入客户手机号码" maxlength="11" v-model="phone" />
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<button class="from-btn" @click="onSubmit">提交办理</button>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
import { delegation, delegationFrom } from '@/apis/interfaces/index.js'
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
pickerArr : [],
|
||||||
|
pickerIndex : 0,
|
||||||
|
name : '',
|
||||||
|
phone : ''
|
||||||
|
};
|
||||||
|
},
|
||||||
|
onLoad() {
|
||||||
|
uni.showLoading({
|
||||||
|
title: '加载中...',
|
||||||
|
mask : true
|
||||||
|
})
|
||||||
|
delegation().then(res => {
|
||||||
|
uni.hideLoading()
|
||||||
|
this.pickerArr = res;
|
||||||
|
this.pickerIndex = res.findIndex(val => val.id == this.$Route.query.id)
|
||||||
|
}).catch(err => {
|
||||||
|
uni.showToast({
|
||||||
|
title: err.message,
|
||||||
|
icon : 'none'
|
||||||
|
})
|
||||||
|
})
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
// 提交表单
|
||||||
|
onSubmit(){
|
||||||
|
let { name, phone, pickerArr, pickerIndex } = this
|
||||||
|
if(name === ''){
|
||||||
|
uni.showToast({
|
||||||
|
title: '请输入客户姓名',
|
||||||
|
icon : 'none'
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if(phone === ''){
|
||||||
|
uni.showToast({
|
||||||
|
title: '请输入客户手机号码',
|
||||||
|
icon : 'none'
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
uni.showLoading({
|
||||||
|
title: "提交中...",
|
||||||
|
mask : true
|
||||||
|
})
|
||||||
|
delegationFrom({
|
||||||
|
name : name,
|
||||||
|
mobile : phone
|
||||||
|
}, pickerArr[pickerIndex].id).then(res => {
|
||||||
|
let { order_type, order_id, order_no } = res;
|
||||||
|
this.$Router.replace({
|
||||||
|
name : 'Pay',
|
||||||
|
params : {
|
||||||
|
paytype : 'synthesize',
|
||||||
|
orderId : order_id,
|
||||||
|
orderType : order_type.replace(/\\/g, '-')
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}).catch(err => {
|
||||||
|
|
||||||
|
console.log(err)
|
||||||
|
|
||||||
|
uni.showToast({
|
||||||
|
title: err.message,
|
||||||
|
icon : 'none'
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<style lang="scss">
|
||||||
|
.from-content{
|
||||||
|
min-height: 100vh;
|
||||||
|
padding: 30rpx;
|
||||||
|
background: #f7f8f9;
|
||||||
|
}
|
||||||
|
.from-block{
|
||||||
|
background: white;
|
||||||
|
border-radius: 20rpx;
|
||||||
|
margin-bottom: 30rpx;
|
||||||
|
padding: 0 30rpx;
|
||||||
|
}
|
||||||
|
.from-block-item{
|
||||||
|
min-height: 70rpx;
|
||||||
|
display: flex;
|
||||||
|
font-size: 32rpx;
|
||||||
|
border-bottom: solid 1rpx #f3f3f3;
|
||||||
|
padding: 15rpx 0;
|
||||||
|
|
||||||
|
}
|
||||||
|
.from-block-item:last-child{ border: none; }
|
||||||
|
label{ width: 200rpx; line-height: 70rpx; }
|
||||||
|
.from-block-val{ width: calc(100% - 200rpx); text-align: right; line-height: 70rpx;}
|
||||||
|
.from-block-val.price{ color: #446EFE; font-weight: bold; }
|
||||||
|
.from-block-input{ height: 70rpx; font-size: 32rpx; }
|
||||||
|
.from-block-picker{ padding-right: 50rpx; position: relative; }
|
||||||
|
.from-block-picker-icon{ position: absolute; right: 0; top: 50%; margin-top: -15rpx; }
|
||||||
|
.from-btn{ width: 100%; background-color: #446EFE; color: white; line-height: 95rpx; height: 95rpx; border-radius: 45rpx; font-size: 32rpx; font-weight: bold;
|
||||||
|
&::after{ display: none; }
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -217,8 +217,9 @@
|
|||||||
}
|
}
|
||||||
// 获取微信授权信息-获取oppid
|
// 获取微信授权信息-获取oppid
|
||||||
authFollow({
|
authFollow({
|
||||||
// url: 'https://web.douhuofalv.com/webWechat/index'
|
url: 'https://web.douhuofalv.com/webWechat/index'
|
||||||
url: 'https://web.douhuotest.douhuofalv.com/webWechat/index'
|
// url: 'https://web.douhuotest.douhuofalv.com/webWechat/index',
|
||||||
|
// url: 'http://web.douhuo.demos.uzchain.tech/webWechat/index' 最新
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
window.location.href = res
|
window.location.href = res
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
|
|||||||
@@ -78,8 +78,8 @@
|
|||||||
judgeGeneral(){
|
judgeGeneral(){
|
||||||
// 获取微信授权信息
|
// 获取微信授权信息
|
||||||
authFollow({
|
authFollow({
|
||||||
// url: 'https://web.douhuofalv.com/webview/webCode',
|
url: 'https://web.douhuofalv.com/webview/webCode',
|
||||||
url: 'https://web.douhuotest.douhuofalv.com/webview/webCode'
|
// url: 'https://web.douhuotest.douhuofalv.com/webview/webCode'
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
window.location.href = res
|
window.location.href = res
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
<image class="create-type-icon" :src="item.cover" mode="aspectFill"></image>
|
<image class="create-type-icon" :src="item.cover" mode="aspectFill"></image>
|
||||||
<view class="create-type-text">
|
<view class="create-type-text">
|
||||||
<view class="title nowrap">{{item.title || '-'}}</view>
|
<view class="title nowrap">{{item.title || '-'}}</view>
|
||||||
<view class="submit nowrap">免费咨询一次</view>
|
<!-- <view class="submit nowrap">免费咨询一次</view> -->
|
||||||
</view>
|
</view>
|
||||||
<image class="create-type-check" :src="item.self_type + item.synthesis_id == businessName ? '/static/icon/Check_active.png' : '/static/icon/Check.png'" mode="aspectFill"></image>
|
<image class="create-type-check" :src="item.self_type + item.synthesis_id == businessName ? '/static/icon/Check_active.png' : '/static/icon/Check.png'" mode="aspectFill"></image>
|
||||||
</view>
|
</view>
|
||||||
@@ -162,7 +162,7 @@
|
|||||||
width: 38rpx;
|
width: 38rpx;
|
||||||
height: 38rpx;
|
height: 38rpx;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 44rpx;
|
top: 60rpx;
|
||||||
right: 30rpx;
|
right: 30rpx;
|
||||||
}
|
}
|
||||||
&.active{
|
&.active{
|
||||||
|
|||||||
@@ -94,8 +94,8 @@
|
|||||||
realName({
|
realName({
|
||||||
front_card: this.frontCard.path,
|
front_card: this.frontCard.path,
|
||||||
back_card : this.backCard.path,
|
back_card : this.backCard.path,
|
||||||
// redirect_url: "https://web.douhuofalv.com/sheet/authSuccess",
|
redirect_url: "https://web.douhuofalv.com/sheet/authSuccess",
|
||||||
redirect_url: "https://web.douhuotest.douhuofalv.com/sheet/authSuccess"
|
// redirect_url: "https://web.douhuotest.douhuofalv.com/sheet/authSuccess"
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
this.realData = res.certification
|
this.realData = res.certification
|
||||||
this.authShortUrl = res.sign.authShortUrl
|
this.authShortUrl = res.sign.authShortUrl
|
||||||
|
|||||||
@@ -558,8 +558,8 @@
|
|||||||
// 去签约
|
// 去签约
|
||||||
contractClick(id) {
|
contractClick(id) {
|
||||||
contractGo(id, {
|
contractGo(id, {
|
||||||
// redirect_url: "https://web.douhuofalv.com/user/index",
|
redirect_url: "https://web.douhuofalv.com/user/index",
|
||||||
redirect_url: "https://web.douhuotest.douhuofalv.com/user/index",
|
// redirect_url: "https://web.douhuotest.douhuofalv.com/user/index",
|
||||||
app_scheme : ''
|
app_scheme : ''
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
// let faceUrl = encodeURIComponent(res.sign_url)
|
// let faceUrl = encodeURIComponent(res.sign_url)
|
||||||
|
|||||||
@@ -81,8 +81,8 @@
|
|||||||
judgeGeneral(){
|
judgeGeneral(){
|
||||||
// 获取微信授权信息
|
// 获取微信授权信息
|
||||||
authFollow({
|
authFollow({
|
||||||
// url: 'https://web.douhuofalv.com/webview/webCode',
|
url: 'https://web.douhuofalv.com/webview/webCode',
|
||||||
url: 'https://web.douhuotest.douhuofalv.com/webview/webCode'
|
// url: 'https://web.douhuotest.douhuofalv.com/webview/webCode'
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
window.location.href = res
|
window.location.href = res
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
|
|||||||
@@ -289,8 +289,9 @@
|
|||||||
|
|
||||||
// 获取微信授权信息-获取oppid
|
// 获取微信授权信息-获取oppid
|
||||||
authFollow({
|
authFollow({
|
||||||
url: 'https://web.douhuotest.douhuofalv.com/webWechat/index?id=' + this.$Route.query.id + '&style=' + this.$Route.query.style + '&price=' + this.$Route.query.price
|
// url: 'https://web.douhuotest.douhuofalv.com/webWechat/index?id=' + this.$Route.query.id + '&style=' + this.$Route.query.style + '&price=' + this.$Route.query.price
|
||||||
// url: 'https://web.douhuofalv.com/webWechat/index?id=' + this.$Route.query.id + '&style=' + this.$Route.query.style + '&price=' + this.$Route.query.price
|
// url: 'http://web.douhuo.demos.uzchain.tech/webWechat/index?id=' + this.$Route.query.id + '&style=' + this.$Route.query.style + '&price=' + this.$Route.query.price 最新
|
||||||
|
url: 'https://web.douhuofalv.com/webWechat/index?id=' + this.$Route.query.id + '&style=' + this.$Route.query.style + '&price=' + this.$Route.query.price
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
window.location.href = res
|
window.location.href = res
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
|
|||||||
@@ -436,8 +436,8 @@
|
|||||||
// 去签约
|
// 去签约
|
||||||
contractClick() {
|
contractClick() {
|
||||||
contractGo(this.$Route.query.id, {
|
contractGo(this.$Route.query.id, {
|
||||||
// redirect_url: "https://web.douhuofalv.com/user/index",
|
redirect_url: "https://web.douhuofalv.com/user/index",
|
||||||
redirect_url: "https://web.douhuotest.douhuofalv.com/user/index",
|
// redirect_url: "https://web.douhuotest.douhuofalv.com/user/index",
|
||||||
app_scheme : ''
|
app_scheme : ''
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
// let faceUrl = encodeURIComponent(res.sign_url)
|
// let faceUrl = encodeURIComponent(res.sign_url)
|
||||||
|
|||||||
@@ -231,8 +231,8 @@
|
|||||||
judgeGeneral(){
|
judgeGeneral(){
|
||||||
// 获取微信授权信息
|
// 获取微信授权信息
|
||||||
authFollow({
|
authFollow({
|
||||||
// url: 'https://web.douhuofalv.com/webview/webCode'
|
url: 'https://web.douhuofalv.com/webview/webCode'
|
||||||
url: 'https://web.douhuotest.douhuofalv.com/webview/webCode'
|
// url: 'https://web.douhuotest.douhuofalv.com/webview/webCode'
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
window.location.href = res
|
window.location.href = res
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
|
|||||||
@@ -240,8 +240,8 @@
|
|||||||
esignUrl({
|
esignUrl({
|
||||||
order_id : id,
|
order_id : id,
|
||||||
order_type: type,
|
order_type: type,
|
||||||
// redirect_url: "https://web.douhuofalv.com/user/index",
|
redirect_url: "https://web.douhuofalv.com/user/index",
|
||||||
redirect_url: "https://web.douhuotest.douhuofalv.com/user/index",
|
// redirect_url: "https://web.douhuotest.douhuofalv.com/user/index",
|
||||||
channel : 'h5',
|
channel : 'h5',
|
||||||
app_scheme : ''
|
app_scheme : ''
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
|
|||||||
@@ -210,8 +210,8 @@
|
|||||||
judgeGeneral(){
|
judgeGeneral(){
|
||||||
// 获取微信授权信息
|
// 获取微信授权信息
|
||||||
authFollow({
|
authFollow({
|
||||||
// url: 'https://web.douhuofalv.com/webview/webCode'
|
url: 'https://web.douhuofalv.com/webview/webCode'
|
||||||
url: 'https://web.douhuotest.douhuofalv.com/webview/webCode'
|
// url: 'https://web.douhuotest.douhuofalv.com/webview/webCode'
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
window.location.href = res
|
window.location.href = res
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
|
|||||||
@@ -219,8 +219,8 @@
|
|||||||
esignUrl({
|
esignUrl({
|
||||||
order_id : id,
|
order_id : id,
|
||||||
order_type: type,
|
order_type: type,
|
||||||
// redirect_url: "https://web.douhuofalv.com/user/index",
|
redirect_url: "https://web.douhuofalv.com/user/index",
|
||||||
redirect_url: "https://web.douhuotest.douhuofalv.com/user/index",
|
// redirect_url: "https://web.douhuotest.douhuofalv.com/user/index",
|
||||||
channel : 'h5',
|
channel : 'h5',
|
||||||
app_scheme : ''
|
app_scheme : ''
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
|
|||||||
@@ -116,7 +116,7 @@
|
|||||||
const jweixin = require('jweixin-module');
|
const jweixin = require('jweixin-module');
|
||||||
import { Apply, Wechat, authFollow } from '@/apis/interfaces/index'
|
import { Apply, Wechat, authFollow } from '@/apis/interfaces/index'
|
||||||
import { ums, umsState } from '@/apis/interfaces/pay'
|
import { ums, umsState } from '@/apis/interfaces/pay'
|
||||||
import { servicePay, serviceUms, serviceDg, expandPay, expandUms, expandDg, entrustPay, entrustUms, entrustDg, synDiffPay, synDiffUms, synDiffDg } from '@/apis/interfaces/pay'
|
import { servicePay, serviceUms, serviceDg, expandPay, expandUms, expandDg, entrustPay, entrustUms, entrustDg, synDiffPay, synDiffUms, synDiffDg, payWechat, payUms, payDg } from '@/apis/interfaces/pay'
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
@@ -174,6 +174,8 @@
|
|||||||
apiUrl = expandDg
|
apiUrl = expandDg
|
||||||
} else if (this.payForm == 'entrust') {
|
} else if (this.payForm == 'entrust') {
|
||||||
apiUrl = entrustDg
|
apiUrl = entrustDg
|
||||||
|
} else if (this.payForm == 'synthesize') {
|
||||||
|
apiUrl = payDg
|
||||||
}
|
}
|
||||||
NewUrl = apiUrl
|
NewUrl = apiUrl
|
||||||
}
|
}
|
||||||
@@ -213,6 +215,8 @@
|
|||||||
apiUrl = serviceUms
|
apiUrl = serviceUms
|
||||||
} else if (this.payForm == 'expand') {
|
} else if (this.payForm == 'expand') {
|
||||||
apiUrl = expandUms
|
apiUrl = expandUms
|
||||||
|
} else if (this.payForm == 'synthesize') {
|
||||||
|
apiUrl = payUms
|
||||||
} else {
|
} else {
|
||||||
apiUrl = entrustUms
|
apiUrl = entrustUms
|
||||||
}
|
}
|
||||||
@@ -265,6 +269,8 @@
|
|||||||
apiUrl = servicePay
|
apiUrl = servicePay
|
||||||
} else if (this.payForm == 'expand') {
|
} else if (this.payForm == 'expand') {
|
||||||
apiUrl = expandPay
|
apiUrl = expandPay
|
||||||
|
} else if (this.payForm == 'synthesize') {
|
||||||
|
apiUrl = payWechat
|
||||||
} else {
|
} else {
|
||||||
apiUrl = entrustPay
|
apiUrl = entrustPay
|
||||||
}
|
}
|
||||||
@@ -307,6 +313,9 @@
|
|||||||
} else if (this.payForm == 'expand') {
|
} else if (this.payForm == 'expand') {
|
||||||
// 跳到拓展单
|
// 跳到拓展单
|
||||||
this.$Router.replace({name: 'ExpandOrder'})
|
this.$Router.replace({name: 'ExpandOrder'})
|
||||||
|
} else if (this.payForm == 'synthesize') {
|
||||||
|
// 个人中心
|
||||||
|
this.$Router.replace({name: 'User'})
|
||||||
} else {
|
} else {
|
||||||
// 跳到委托单
|
// 跳到委托单
|
||||||
this.$Router.replace({name: 'EntrustOrder'})
|
this.$Router.replace({name: 'EntrustOrder'})
|
||||||
@@ -329,6 +338,11 @@
|
|||||||
setTimeout(()=>{
|
setTimeout(()=>{
|
||||||
this.$Router.replace({name: 'ExpandOrder'})
|
this.$Router.replace({name: 'ExpandOrder'})
|
||||||
},1000)
|
},1000)
|
||||||
|
} else if (this.payForm == 'synthesize') {
|
||||||
|
// 个人中心
|
||||||
|
setTimeout(()=>{
|
||||||
|
this.$Router.replace({name: 'User'})
|
||||||
|
},1000)
|
||||||
} else {
|
} else {
|
||||||
// 跳到委托单
|
// 跳到委托单
|
||||||
setTimeout(()=>{
|
setTimeout(()=>{
|
||||||
@@ -349,8 +363,9 @@
|
|||||||
|
|
||||||
// 获取微信授权信息-获取oppid
|
// 获取微信授权信息-获取oppid
|
||||||
authFollow({
|
authFollow({
|
||||||
// url: 'https://web.douhuofalv.com/webWechat/index?id=' + this.$Route.query.id + '&style=' + this.$Route.query.style + '&price=' + this.$Route.query.price
|
url: 'https://web.douhuofalv.com/webWechat/index?id=' + this.$Route.query.id + '&style=' + this.$Route.query.style + '&price=' + this.$Route.query.price
|
||||||
url: 'https://web.douhuotest.douhuofalv.com/webWechat/index?id=' + this.orderId + '&style=' + this.$Route.query.style + '&price=' + this.$Route.query.price
|
// url: 'https://web.douhuotest.douhuofalv.com/webWechat/index?id=' + this.orderId + '&style=' + this.$Route.query.style + '&price=' + this.$Route.query.price
|
||||||
|
// url: 'http://web.douhuo.demos.uzchain.tech/webWechat/index?id=' + this.orderId + '&style=' + this.$Route.query.style + '&price=' + this.$Route.query.price 最新
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
window.location.href = res
|
window.location.href = res
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
@@ -370,6 +385,9 @@
|
|||||||
} else if (this.payForm == 'expand') {
|
} else if (this.payForm == 'expand') {
|
||||||
// 跳到拓展单
|
// 跳到拓展单
|
||||||
this.$Router.replace({name: 'ExpandOrder'})
|
this.$Router.replace({name: 'ExpandOrder'})
|
||||||
|
} else if (this.payForm == 'synthesize') {
|
||||||
|
// 个人中心
|
||||||
|
this.$Router.replace({name: 'User'})
|
||||||
} else {
|
} else {
|
||||||
// 跳到委托单
|
// 跳到委托单
|
||||||
this.$Router.replace({name: 'EntrustOrder'})
|
this.$Router.replace({name: 'EntrustOrder'})
|
||||||
|
|||||||
@@ -219,6 +219,15 @@
|
|||||||
title: '提交成功',
|
title: '提交成功',
|
||||||
icon: "none"
|
icon: "none"
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// 若价格大于0,要去支付
|
||||||
|
let number = Number(res.price)
|
||||||
|
if(number > 0) {
|
||||||
|
this.$Router.replace({name: 'Pay', params: {orderId: res.order_id, orderType: res.order_type}})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// 否则直接跳转详情
|
||||||
setTimeout(()=>{
|
setTimeout(()=>{
|
||||||
this.$Router.replace({name: 'FeeConfirm', params: {synthesisId: res.synthesis_order_id}})
|
this.$Router.replace({name: 'FeeConfirm', params: {synthesisId: res.synthesis_order_id}})
|
||||||
},3000)
|
},3000)
|
||||||
|
|||||||
@@ -243,8 +243,8 @@
|
|||||||
judgeGeneral(){
|
judgeGeneral(){
|
||||||
// 获取微信授权信息
|
// 获取微信授权信息
|
||||||
authFollow({
|
authFollow({
|
||||||
// url: 'https://web.douhuofalv.com/webview/webCode'
|
url: 'https://web.douhuofalv.com/webview/webCode'
|
||||||
url: 'https://web.douhuotest.douhuofalv.com/webview/webCode'
|
// url: 'https://web.douhuotest.douhuofalv.com/webview/webCode'
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
window.location.href = res
|
window.location.href = res
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
|
|||||||
@@ -44,7 +44,11 @@
|
|||||||
{{item.created_at}}
|
{{item.created_at}}
|
||||||
</view>
|
</view>
|
||||||
<view class="listItem-labor-btn">
|
<view class="listItem-labor-btn">
|
||||||
<view @click="$Router.push({name: 'FeeConfirm', params: {synthesisId: item.synthesis_order_id}})" class="listItem-labor-go yellow">
|
<view @click="$Router.push({name: 'Pay', params: {orderId: item.order_id, orderType: item.order_type}})" class="listItem-labor-go yellow" v-if="item.can.pay">
|
||||||
|
去支付
|
||||||
|
</view>
|
||||||
|
|
||||||
|
<view @click="$Router.push({name: 'FeeConfirm', params: {synthesisId: item.synthesis_order_id}})" class="listItem-labor-go yellow" v-if="item.can.look">
|
||||||
查看详情
|
查看详情
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@@ -78,9 +82,9 @@
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
// 咨询单-列表
|
// 咨询单-列表
|
||||||
|
// status : this.yearStatus,
|
||||||
yearServe(page){
|
yearServe(page){
|
||||||
seekOrder({
|
seekOrder({
|
||||||
status : this.yearStatus,
|
|
||||||
page : page || 1
|
page : page || 1
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
let esArr = res.data
|
let esArr = res.data
|
||||||
|
|||||||
@@ -268,8 +268,8 @@
|
|||||||
judgeGeneral(){
|
judgeGeneral(){
|
||||||
// 获取微信授权信息
|
// 获取微信授权信息
|
||||||
authFollow({
|
authFollow({
|
||||||
// url: 'https://web.douhuofalv.com/webview/webCode'
|
url: 'https://web.douhuofalv.com/webview/webCode'
|
||||||
url: 'https://web.douhuotest.douhuofalv.com/webview/webCode'
|
// url: 'https://web.douhuotest.douhuofalv.com/webview/webCode'
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
window.location.href = res
|
window.location.href = res
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
|
|||||||
@@ -218,8 +218,8 @@
|
|||||||
esignUrl({
|
esignUrl({
|
||||||
order_id : id,
|
order_id : id,
|
||||||
order_type: type,
|
order_type: type,
|
||||||
// redirect_url: "https://web.douhuofalv.com/user/index",
|
redirect_url: "https://web.douhuofalv.com/user/index",
|
||||||
redirect_url: "https://web.douhuotest.douhuofalv.com/user/index",
|
// redirect_url: "https://web.douhuotest.douhuofalv.com/user/index",
|
||||||
channel : 'h5',
|
channel : 'h5',
|
||||||
app_scheme : ''
|
app_scheme : ''
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
|
|||||||
@@ -30,7 +30,7 @@
|
|||||||
</view>
|
</view>
|
||||||
<!-- 临时 style="display: none;" -->
|
<!-- 临时 style="display: none;" -->
|
||||||
<view class="userTop-see" v-if="userLogin">
|
<view class="userTop-see" v-if="userLogin">
|
||||||
<view class="userTop-label" @click="$Router.push({name: 'sheetIndex'})">
|
<!-- <view class="userTop-label" @click="$Router.push({name: 'sheetIndex'})">
|
||||||
<view class="userSee-name">
|
<view class="userSee-name">
|
||||||
协商调解类
|
协商调解类
|
||||||
</view>
|
</view>
|
||||||
@@ -46,6 +46,31 @@
|
|||||||
</view>
|
</view>
|
||||||
</block>
|
</block>
|
||||||
<img class="userSee-icon" src="https://douhuo-storage.oss-cn-beijing.aliyuncs.com/images/2023/06/06/2823f7c9ed144df424ca8ee6c47b0ff6.png">
|
<img class="userSee-icon" src="https://douhuo-storage.oss-cn-beijing.aliyuncs.com/images/2023/06/06/2823f7c9ed144df424ca8ee6c47b0ff6.png">
|
||||||
|
</view> -->
|
||||||
|
|
||||||
|
<view class="userTop-label" @click="$Router.push({name: 'AccountWork'})" style="display: none;">
|
||||||
|
<view class="userSee-name">
|
||||||
|
账户管理资讯类
|
||||||
|
</view>
|
||||||
|
<view class="userSee-number">
|
||||||
|
<!-- {{ userData.business_orders_count.all ? userData.business_orders_count.all : '0'}}<text>单</text> -->
|
||||||
|
</view>
|
||||||
|
<view class="userSee-tips">
|
||||||
|
客户账户管理资讯类订单
|
||||||
|
</view>
|
||||||
|
<img class="userSee-icon" src="https://douhuo-storage.oss-cn-beijing.aliyuncs.com/images/2023/06/06/2823f7c9ed144df424ca8ee6c47b0ff6.png">
|
||||||
|
</view>
|
||||||
|
<view class="userTop-label" @click="$Router.push({name: 'DelegationWork'})" style="display: none;">
|
||||||
|
<view class="userSee-name">
|
||||||
|
委托管理类
|
||||||
|
</view>
|
||||||
|
<view class="userSee-number">
|
||||||
|
<!-- {{ userData.business_orders_count.all ? userData.business_orders_count.all : '0'}}<text>单</text> -->
|
||||||
|
</view>
|
||||||
|
<view class="userSee-tips">
|
||||||
|
客户委托管理类订单
|
||||||
|
</view>
|
||||||
|
<img class="userSee-icon" src="https://douhuo-storage.oss-cn-beijing.aliyuncs.com/images/2023/06/06/2823f7c9ed144df424ca8ee6c47b0ff6.png">
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="userTop-label" @click="$Router.push({name: 'synthesisOrder', params: {type: 'legal'}})">
|
<view class="userTop-label" @click="$Router.push({name: 'synthesisOrder', params: {type: 'legal'}})">
|
||||||
@@ -56,7 +81,8 @@
|
|||||||
{{synthesisAll.legal_consulting ? synthesisAll.legal_consulting : '0'}}<text>单</text>
|
{{synthesisAll.legal_consulting ? synthesisAll.legal_consulting : '0'}}<text>单</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="userSee-tips">
|
<view class="userSee-tips">
|
||||||
个人、企业法律
|
<!-- 个人、 -->
|
||||||
|
企业法律
|
||||||
</view>
|
</view>
|
||||||
<img class="userSee-icon" src="https://douhuo-storage.oss-cn-beijing.aliyuncs.com/images/2023/06/06/84e573c04d3dcb7fa1cccefbde9bf851.png">
|
<img class="userSee-icon" src="https://douhuo-storage.oss-cn-beijing.aliyuncs.com/images/2023/06/06/84e573c04d3dcb7fa1cccefbde9bf851.png">
|
||||||
</view>
|
</view>
|
||||||
@@ -72,7 +98,7 @@
|
|||||||
</view>
|
</view>
|
||||||
<img class="userSee-icon" src="https://douhuo-storage.oss-cn-beijing.aliyuncs.com/images/2023/06/19/08e5c39f136d84e9754d4ac4d16af181.png">
|
<img class="userSee-icon" src="https://douhuo-storage.oss-cn-beijing.aliyuncs.com/images/2023/06/19/08e5c39f136d84e9754d4ac4d16af181.png">
|
||||||
</view>
|
</view>
|
||||||
<view class="userTop-label" @click="$Router.push({name: 'EmpowerOrder'})">
|
<view class="userTop-label" @click="$Router.push({name: 'EmpowerOrder'})" style="display: none;">
|
||||||
<view class="userSee-name">
|
<view class="userSee-name">
|
||||||
增收赋能类
|
增收赋能类
|
||||||
</view>
|
</view>
|
||||||
@@ -88,7 +114,7 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<!-- 临时 style="display: none;" -->
|
<!-- 临时 style="display: none;" -->
|
||||||
<view class="board" v-if="userLogin">
|
<view class="board" v-if="userLogin" style="display: none;">
|
||||||
<view class="board-title">
|
<view class="board-title">
|
||||||
数据看板
|
数据看板
|
||||||
</view>
|
</view>
|
||||||
|
|||||||
@@ -273,8 +273,8 @@
|
|||||||
judgeGeneral(){
|
judgeGeneral(){
|
||||||
// 获取微信授权信息
|
// 获取微信授权信息
|
||||||
authFollow({
|
authFollow({
|
||||||
// url: 'https://web.douhuofalv.com/webview/webCode'
|
url: 'https://web.douhuofalv.com/webview/webCode'
|
||||||
url: 'https://web.douhuotest.douhuofalv.com/webview/webCode'
|
// url: 'https://web.douhuotest.douhuofalv.com/webview/webCode'
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
window.location.href = res
|
window.location.href = res
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
|
|||||||
319
pages/work/account.vue
Normal file
319
pages/work/account.vue
Normal file
@@ -0,0 +1,319 @@
|
|||||||
|
<template>
|
||||||
|
<view class="content">
|
||||||
|
<!-- tabs -->
|
||||||
|
<u-sticky bgColor="#FFF" zIndex="9" >
|
||||||
|
<u-tabs
|
||||||
|
:current="tabsCurrent"
|
||||||
|
:list="tabs"
|
||||||
|
keyName="value"
|
||||||
|
lineColor="#446EFE"
|
||||||
|
:scrollable="tabs.length > 5"
|
||||||
|
:activeStyle="{
|
||||||
|
color: '#111',
|
||||||
|
fontWeight: 'bold',
|
||||||
|
fontSize: '32rpx'
|
||||||
|
}"
|
||||||
|
:inactiveStyle="{
|
||||||
|
color: '#606266',
|
||||||
|
fontSize: '30rpx'
|
||||||
|
}"
|
||||||
|
@click="onTabs"
|
||||||
|
></u-tabs>
|
||||||
|
</u-sticky>
|
||||||
|
<!-- 订单列表 -->
|
||||||
|
<view class="orders" v-if="orders.length > 0">
|
||||||
|
<view class="orders-item" v-for="(item, index) in orders" :key="index">
|
||||||
|
<view class="orders-flex">
|
||||||
|
<view class="no nowrap" @click="copyNo(item.order_no)">
|
||||||
|
{{item.order_no}}
|
||||||
|
</view>
|
||||||
|
<view class="state">{{item.status.text}}</view>
|
||||||
|
</view>
|
||||||
|
<view class="orders-content">
|
||||||
|
<view class="orders-content-item">
|
||||||
|
<label>业务名称</label>
|
||||||
|
<view class="nowrap">{{item.item.title}}</view>
|
||||||
|
</view>
|
||||||
|
<view class="orders-content-item">
|
||||||
|
<label>客户姓名</label>
|
||||||
|
<view class="nowrap">{{item.name}}</view>
|
||||||
|
</view>
|
||||||
|
<view class="orders-content-item">
|
||||||
|
<label>手机号码</label>
|
||||||
|
<view class="nowrap">{{item.mobile}}</view>
|
||||||
|
</view>
|
||||||
|
<view class="orders-content-item">
|
||||||
|
<label>创建时间</label>
|
||||||
|
<view class="nowrap">{{item.created_at}}</view>
|
||||||
|
</view>
|
||||||
|
<view class="orders-content-item" v-if="item.paid_at != ''">
|
||||||
|
<label>支付时间</label>
|
||||||
|
<view class="nowrap">{{item.paid_at}}</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="orders-flex">
|
||||||
|
<view class="price">¥{{item.item.price}}</view>
|
||||||
|
<view class="btns">
|
||||||
|
<view class="btns-item border" v-if="item.can.cancel" @click="onCancel(item)">取消订单</view>
|
||||||
|
<view class="btns-item" v-if="item.can.pay" @click="onPay(item)">立即支付</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<!-- 分页 -->
|
||||||
|
<u-loadmore v-if="pagesShow" :status="status" />
|
||||||
|
</view>
|
||||||
|
<!-- 订单是空的 -->
|
||||||
|
<view class="order-null" v-else>
|
||||||
|
<u-empty
|
||||||
|
mode="order"
|
||||||
|
icon="http://cdn.uviewui.com/uview/empty/order.png"
|
||||||
|
text="暂无相关订单"
|
||||||
|
>
|
||||||
|
</u-empty>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
import { accountOrder, accountCancel } from '@/apis/interfaces/index.js'
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
tabs : [{ id: '', value: '全部' }],
|
||||||
|
tabsCurrent : 0,
|
||||||
|
tabsId : '',
|
||||||
|
orders : [],
|
||||||
|
pagesShow : false,
|
||||||
|
page : {
|
||||||
|
current : 1,
|
||||||
|
has_more: false,
|
||||||
|
},
|
||||||
|
status : ''
|
||||||
|
};
|
||||||
|
},
|
||||||
|
onShow() {
|
||||||
|
this.getOrder()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
// 筛选分类
|
||||||
|
onTabs(e){
|
||||||
|
let { id, index } = e;
|
||||||
|
this.tabsCurrent = index
|
||||||
|
this.tabsId = id
|
||||||
|
this.page = { current: 1, has_more: false }
|
||||||
|
this.getOrder()
|
||||||
|
},
|
||||||
|
// 获取订单列表
|
||||||
|
getOrder(){
|
||||||
|
let { tabsId, tabs, orders, page } = this
|
||||||
|
accountOrder({
|
||||||
|
manager: 1,
|
||||||
|
status : tabsId,
|
||||||
|
page : page.current
|
||||||
|
}).then(res => {
|
||||||
|
let { status, lists } = res;
|
||||||
|
this.tabs = [{ id: '', value: '全部' }].concat(status)
|
||||||
|
this.orders = lists.page.current == 1 ? lists.data : this.orders.concat(lists.data)
|
||||||
|
this.page = lists.page
|
||||||
|
this.pagesShow = false
|
||||||
|
}).catch(err => {
|
||||||
|
uni.showToast({
|
||||||
|
title: err.message,
|
||||||
|
icon : 'none'
|
||||||
|
})
|
||||||
|
})
|
||||||
|
},
|
||||||
|
// 取消订单
|
||||||
|
onCancel(e){
|
||||||
|
let { order_id } = e;
|
||||||
|
uni.showModal({
|
||||||
|
title : "提示",
|
||||||
|
content : "确认取消当前订单嘛?",
|
||||||
|
cancelText : "取消",
|
||||||
|
confirmColor: "#446EFE",
|
||||||
|
success : modalRes => {
|
||||||
|
if(modalRes.confirm){
|
||||||
|
uni.showLoading({
|
||||||
|
title: "加载中...",
|
||||||
|
mask : true
|
||||||
|
})
|
||||||
|
accountCancel(order_id).then(res => {
|
||||||
|
uni.showToast({
|
||||||
|
title: '订单已取消',
|
||||||
|
icon : 'none'
|
||||||
|
})
|
||||||
|
this.page = { current: 1, has_more: false }
|
||||||
|
this.getOrder()
|
||||||
|
}).catch(err => {
|
||||||
|
console.log(err)
|
||||||
|
uni.showToast({
|
||||||
|
title: err.message,
|
||||||
|
icon : 'none'
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
// 复制订单号码
|
||||||
|
copyNo(no){
|
||||||
|
uni.setClipboardData({
|
||||||
|
data : no,
|
||||||
|
success : res => {
|
||||||
|
uni.showToast({
|
||||||
|
title: '订单号已复制',
|
||||||
|
icon : 'none'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
// 去支付
|
||||||
|
onPay(obj){
|
||||||
|
let { order_id, order_type, paid_at } = obj
|
||||||
|
if(paid_at == ''){
|
||||||
|
this.$Router.replace({name: 'FeePay', params: {id: order_id, orderType: order_type, price: obj.item.price, payForm: 'synthesize'}})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onReachBottom() {
|
||||||
|
this.pagesShow = true;
|
||||||
|
if(this.page.has_more){
|
||||||
|
this.status = 'loading';
|
||||||
|
this.page.current++
|
||||||
|
this.getOrder()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.status = 'nomore';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<style lang="scss">
|
||||||
|
.content{ background: #f7f8f9; min-height: calc(100vh - 44px); }
|
||||||
|
// 订单列表
|
||||||
|
.orders{
|
||||||
|
padding: 30rpx 0 10rpx;
|
||||||
|
.orders-item{
|
||||||
|
margin: 0 30rpx 20rpx;
|
||||||
|
background-color: white;
|
||||||
|
border-radius: $radius;
|
||||||
|
}
|
||||||
|
.orders-content{
|
||||||
|
padding: 20rpx 30rpx;
|
||||||
|
.orders-content-item{
|
||||||
|
line-height: 70rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
font-size: 30rpx;
|
||||||
|
color: #111111;
|
||||||
|
label{
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
.orders-content-btn{
|
||||||
|
color: #446EFE;
|
||||||
|
}
|
||||||
|
.orders-content-bottom{
|
||||||
|
padding-right: 40rpx;
|
||||||
|
position: relative;
|
||||||
|
.orders-content-icon{
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.orders-content-type{
|
||||||
|
text{
|
||||||
|
margin-right: 30rpx;
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
&::after{
|
||||||
|
position: absolute;
|
||||||
|
content: "/";
|
||||||
|
width: 30rpx;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 30rpx;
|
||||||
|
top: 0;
|
||||||
|
right: -30rpx;
|
||||||
|
}
|
||||||
|
&:last-child{
|
||||||
|
margin-right: 0;
|
||||||
|
&::after{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.orders-content-block{
|
||||||
|
background: rgba(68, 110, 254, .03);
|
||||||
|
padding: 20rpx;
|
||||||
|
font-size: 28rpx;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
margin: 10rpx 0;
|
||||||
|
.item-flex{
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
line-height: 50rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.orders-flex{
|
||||||
|
border-bottom: solid 1rpx #F6F6F6;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
padding: 20rpx 30rpx;
|
||||||
|
&:last-child{
|
||||||
|
border-top: solid 1rpx #F6F6F6;
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
.no{
|
||||||
|
font-size: 30rpx;
|
||||||
|
color: #111;
|
||||||
|
line-height: 60rpx;
|
||||||
|
width: calc(100% - 150rpx);
|
||||||
|
}
|
||||||
|
.state{
|
||||||
|
color: #446EFE;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 30rpx;
|
||||||
|
line-height: 60rpx;
|
||||||
|
width: 150rpx;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.price{
|
||||||
|
font-weight: bold;
|
||||||
|
color: #446EFE;
|
||||||
|
}
|
||||||
|
.btns{
|
||||||
|
width: 400rpx;
|
||||||
|
text-align: right;
|
||||||
|
.btns-item{
|
||||||
|
display: inline-block;
|
||||||
|
height: 70rpx;
|
||||||
|
line-height: 70rpx;
|
||||||
|
background: #446EFE;
|
||||||
|
color: white;
|
||||||
|
border-radius: 35rpx;
|
||||||
|
padding: 0 30rpx;
|
||||||
|
font-size: 30rpx;
|
||||||
|
&.border{
|
||||||
|
border: solid 1rpx #446EFE;
|
||||||
|
color: #446EFE;
|
||||||
|
background: white;
|
||||||
|
height: 68rpx;
|
||||||
|
line-height: 68rpx;
|
||||||
|
&::after{ display: none;}
|
||||||
|
}
|
||||||
|
&:last-child{ margin-left: 30rpx; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 订单为空
|
||||||
|
.order-null{
|
||||||
|
height: 80vh;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
313
pages/work/delegation.vue
Normal file
313
pages/work/delegation.vue
Normal file
@@ -0,0 +1,313 @@
|
|||||||
|
<template>
|
||||||
|
<view class="content">
|
||||||
|
<!-- tabs -->
|
||||||
|
<u-sticky bgColor="#FFF" zIndex="9" >
|
||||||
|
<u-tabs
|
||||||
|
:current="tabsCurrent"
|
||||||
|
:list="tabs"
|
||||||
|
keyName="value"
|
||||||
|
lineColor="#446EFE"
|
||||||
|
:scrollable="tabs.length > 5"
|
||||||
|
:activeStyle="{
|
||||||
|
color: '#111',
|
||||||
|
fontWeight: 'bold',
|
||||||
|
fontSize: '32rpx'
|
||||||
|
}"
|
||||||
|
:inactiveStyle="{
|
||||||
|
color: '#606266',
|
||||||
|
fontSize: '30rpx'
|
||||||
|
}"
|
||||||
|
@click="onTabs"
|
||||||
|
></u-tabs>
|
||||||
|
</u-sticky>
|
||||||
|
<!-- 订单列表 -->
|
||||||
|
<view class="orders" v-if="orders.length > 0">
|
||||||
|
<view class="orders-item" v-for="(item, index) in orders" :key="index">
|
||||||
|
<view class="orders-flex">
|
||||||
|
<view class="no nowrap" @click="copyNo(item.order_no)">
|
||||||
|
{{item.order_no}}
|
||||||
|
</view>
|
||||||
|
<view class="state">{{item.status.text}}</view>
|
||||||
|
</view>
|
||||||
|
<view class="orders-content">
|
||||||
|
<view class="orders-content-item">
|
||||||
|
<label>业务名称</label>
|
||||||
|
<view class="nowrap">{{item.item.title}}</view>
|
||||||
|
</view>
|
||||||
|
<view class="orders-content-item">
|
||||||
|
<label>客户姓名</label>
|
||||||
|
<view class="nowrap">{{item.name}}</view>
|
||||||
|
</view>
|
||||||
|
<view class="orders-content-item">
|
||||||
|
<label>手机号码</label>
|
||||||
|
<view class="nowrap">{{item.mobile}}</view>
|
||||||
|
</view>
|
||||||
|
<view class="orders-content-item">
|
||||||
|
<label>创建时间</label>
|
||||||
|
<view class="nowrap">{{item.created_at}}</view>
|
||||||
|
</view>
|
||||||
|
<view class="orders-content-item" v-if="item.paid_at != ''">
|
||||||
|
<label>支付时间</label>
|
||||||
|
<view class="nowrap">{{item.paid_at}}</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="orders-flex">
|
||||||
|
<view class="price">¥{{item.item.price}}</view>
|
||||||
|
<view class="btns">
|
||||||
|
<view class="btns-item border" v-if="item.can.cancel" @click="onCancel(item)">取消订单</view>
|
||||||
|
<view class="btns-item" v-if="item.can.pay" @click="onPay(item)">立即支付</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<!-- 分页 -->
|
||||||
|
<u-loadmore v-if="pagesShow" :status="status" />
|
||||||
|
</view>
|
||||||
|
<!-- 订单是空的 -->
|
||||||
|
<view class="order-null" v-else>
|
||||||
|
<u-empty
|
||||||
|
mode="order"
|
||||||
|
icon="http://cdn.uviewui.com/uview/empty/order.png"
|
||||||
|
text="暂无相关订单"
|
||||||
|
>
|
||||||
|
</u-empty>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
import { delegationOrder, delegationCancel } from '@/apis/interfaces/index.js'
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
tabs : [{ id: '', value: '全部' }],
|
||||||
|
tabsCurrent : 0,
|
||||||
|
tabsId : '',
|
||||||
|
orders : [],
|
||||||
|
pagesShow : false,
|
||||||
|
page : {
|
||||||
|
current : 1,
|
||||||
|
has_more: false,
|
||||||
|
},
|
||||||
|
status : ''
|
||||||
|
};
|
||||||
|
},
|
||||||
|
onShow() {
|
||||||
|
this.getOrder()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
// 筛选分类
|
||||||
|
onTabs(e){
|
||||||
|
let { id, index } = e;
|
||||||
|
this.tabsCurrent = index
|
||||||
|
this.tabsId = id
|
||||||
|
this.page = { current: 1, has_more: false }
|
||||||
|
this.getOrder()
|
||||||
|
},
|
||||||
|
// 获取订单列表
|
||||||
|
getOrder(){
|
||||||
|
let { tabsId, tabs, orders, page } = this
|
||||||
|
delegationOrder({
|
||||||
|
manager: 1,
|
||||||
|
status : tabsId,
|
||||||
|
page : page.current
|
||||||
|
}).then(res => {
|
||||||
|
let { status, lists } = res;
|
||||||
|
this.tabs = [{ id: '', value: '全部' }].concat(status)
|
||||||
|
this.orders = lists.page.current == 1 ? lists.data : this.orders.concat(lists.data)
|
||||||
|
this.page = lists.page
|
||||||
|
this.pagesShow = false
|
||||||
|
}).catch(err => {
|
||||||
|
uni.showToast({
|
||||||
|
title: err.message,
|
||||||
|
icon : 'none'
|
||||||
|
})
|
||||||
|
})
|
||||||
|
},
|
||||||
|
// 取消订单
|
||||||
|
onCancel(e){
|
||||||
|
let { order_id } = e;
|
||||||
|
uni.showModal({
|
||||||
|
title : "提示",
|
||||||
|
content : "确认取消当前订单嘛?",
|
||||||
|
cancelText : "取消",
|
||||||
|
confirmColor: "#446EFE",
|
||||||
|
success : modalRes => {
|
||||||
|
if(modalRes.confirm){
|
||||||
|
uni.showLoading({
|
||||||
|
title: "加载中...",
|
||||||
|
mask : true
|
||||||
|
})
|
||||||
|
delegationCancel(order_id).then(res => {
|
||||||
|
uni.showToast({
|
||||||
|
title: '订单已取消',
|
||||||
|
icon : 'none'
|
||||||
|
})
|
||||||
|
this.page = { current: 1, has_more: false }
|
||||||
|
this.getOrder()
|
||||||
|
}).catch(err => {
|
||||||
|
console.log(err)
|
||||||
|
uni.showToast({
|
||||||
|
title: err.message,
|
||||||
|
icon : 'none'
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
// 复制订单号码
|
||||||
|
copyNo(no){
|
||||||
|
uni.setClipboardData({
|
||||||
|
data : no,
|
||||||
|
success : res => {
|
||||||
|
uni.showToast({
|
||||||
|
title: '订单号已复制',
|
||||||
|
icon : 'none'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
// 去支付
|
||||||
|
onPay(obj){
|
||||||
|
let { order_id, order_type, paid_at } = obj
|
||||||
|
if(paid_at == ''){
|
||||||
|
this.$Router.replace({name: 'FeePay', params: {id: order_id, orderType: order_type, price: obj.item.price, payForm: 'synthesize'}})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onReachBottom() {
|
||||||
|
this.pagesShow = true;
|
||||||
|
if(this.page.has_more){
|
||||||
|
this.status = 'loading';
|
||||||
|
this.page.current++
|
||||||
|
this.getOrder()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.status = 'nomore';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<style lang="scss">
|
||||||
|
.content{ background: #f7f8f9; min-height: calc(100vh - 44px); }
|
||||||
|
|
||||||
|
// 订单列表
|
||||||
|
.orders{
|
||||||
|
padding: 30rpx 0 10rpx;
|
||||||
|
.orders-item{
|
||||||
|
margin: 0 30rpx 20rpx;
|
||||||
|
background-color: white;
|
||||||
|
border-radius: $radius;
|
||||||
|
}
|
||||||
|
.orders-content{
|
||||||
|
padding: 20rpx 30rpx;
|
||||||
|
.orders-content-item{
|
||||||
|
line-height: 70rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
font-size: 30rpx;
|
||||||
|
color: #111111;
|
||||||
|
label{
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
.orders-content-btn{
|
||||||
|
color: #446EFE;
|
||||||
|
}
|
||||||
|
&.orders-content-bottom{
|
||||||
|
padding-right: 40rpx;
|
||||||
|
position: relative;
|
||||||
|
.orders-content-icon{
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.orders-content-type{
|
||||||
|
text{
|
||||||
|
margin-right: 30rpx;
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
&::after{
|
||||||
|
position: absolute;
|
||||||
|
content: "/";
|
||||||
|
width: 30rpx;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 30rpx;
|
||||||
|
top: 0;
|
||||||
|
right: -30rpx;
|
||||||
|
}
|
||||||
|
&:last-child{
|
||||||
|
margin-right: 0;
|
||||||
|
&::after{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.orders-content-block{
|
||||||
|
background: rgba(68, 110, 254, .03);
|
||||||
|
padding: 20rpx;
|
||||||
|
font-size: 28rpx;
|
||||||
|
border-radius: 10rpx;
|
||||||
|
margin: 10rpx 0;
|
||||||
|
.item-flex{
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
line-height: 50rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.orders-flex{
|
||||||
|
border-bottom: solid 1rpx #F6F6F6;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
padding: 20rpx $padding;
|
||||||
|
&:last-child{
|
||||||
|
border-top: solid 1rpx #F6F6F6;
|
||||||
|
border-bottom: none;
|
||||||
|
}
|
||||||
|
.no{
|
||||||
|
font-size: 30rpx;
|
||||||
|
color: #111;
|
||||||
|
line-height: 60rpx;
|
||||||
|
width: calc(100% - 150rpx);
|
||||||
|
}
|
||||||
|
.state{
|
||||||
|
color: #446EFE;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 30rpx;
|
||||||
|
line-height: 60rpx;
|
||||||
|
width: 150rpx;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.price{
|
||||||
|
font-weight: bold;
|
||||||
|
color: #446EFE;
|
||||||
|
}
|
||||||
|
.btns{
|
||||||
|
width: 400rpx;
|
||||||
|
text-align: right;
|
||||||
|
.btns-item{
|
||||||
|
display: inline-block;
|
||||||
|
height: 70rpx;
|
||||||
|
line-height: 70rpx;
|
||||||
|
background: #446EFE;
|
||||||
|
color: white;
|
||||||
|
border-radius: 35rpx;
|
||||||
|
padding: 0 30rpx;
|
||||||
|
font-size: 30rpx;
|
||||||
|
&.border{ border: solid 1rpx #446EFE; color: #446EFE; background: white; height: 68rpx; &::after{ display: none; } }
|
||||||
|
&:last-child{ margin-left: 30rpx; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 订单为空
|
||||||
|
.order-null{
|
||||||
|
height: 80vh;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -30,20 +30,21 @@ router.beforeEach((to, from, next) => {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
// 检查用户是否授权了微信
|
// 检查用户是否授权了微信
|
||||||
// if(to.name != 'webWechatIndex' && openId === ''){
|
if(to.name != 'webWechatIndex' && openId === ''){
|
||||||
// authFollow({
|
authFollow({
|
||||||
// url: 'https://web.douhuotest.douhuofalv.com/webWechat/index'
|
// url: 'https://web.douhuotest.douhuofalv.com/webWechat/index',
|
||||||
// // url: 'https://web.douhuofalv.com/webWechat/index'
|
// url: 'https://web.douhuo.demos.uzchain.tech/webWechat/index' 最新,
|
||||||
// }).then(res => {
|
url: 'https://web.douhuofalv.com/webWechat/index'
|
||||||
// window.location.href = res
|
}).then(res => {
|
||||||
// }).catch(err => {
|
window.location.href = res
|
||||||
// uni.showToast({
|
}).catch(err => {
|
||||||
// title: err.message,
|
uni.showToast({
|
||||||
// icon: "none"
|
title: err.message,
|
||||||
// })
|
icon: "none"
|
||||||
// })
|
})
|
||||||
// return
|
})
|
||||||
// }
|
return
|
||||||
|
}
|
||||||
|
|
||||||
// 检查是否需要登录
|
// 检查是否需要登录
|
||||||
if(to.auth && token === ''){
|
if(to.auth && token === ''){
|
||||||
|
|||||||
Reference in New Issue
Block a user