diff --git a/src/assets/js/utils/request.js b/src/assets/js/utils/request.js index e40136ac9..bda4b3f47 100644 --- a/src/assets/js/utils/request.js +++ b/src/assets/js/utils/request.js @@ -133,6 +133,10 @@ service.interceptors.request.use( message: '加载中……' }) } + let obj = Object.assign({},config.data) + console.log('请求入参') + console.log(obj) + console.log(config) /** * 请求拦截处理(待添加 判断走统一网关处理) */ @@ -188,6 +192,9 @@ service.interceptors.response.use( res = JSON.parse(AESTools.AESDecrypt(res.response, configApp.REQ_PWD)) } } + console.log('请求结果') + console.log(response) + console.log(res) Toast.clear() if (res.code != 0) { if (res.code == 10001 || res.code == 10002) { diff --git a/src/router/ebiz/cardList.js b/src/router/ebiz/cardList.js index 66a345730..d5981432b 100644 --- a/src/router/ebiz/cardList.js +++ b/src/router/ebiz/cardList.js @@ -7,6 +7,9 @@ const payResult = () => import('@/views/ebiz/cardList/PayResult') const paySuccess = () => import('@/views/ebiz/cardList/PaySuccess') const payLoser = () => import('@/views/ebiz/cardList/PayLoser') const ShowPDF = () => import('@/views/ebiz/cardList/ShowPDF') +const phoneCode = () => import('@/views/ebiz/cardList/phoneCode') +const cardDetail = () => import('@/views/ebiz/cardList/cardDetail') +const SignatureConfirmation = () => import('@/views/ebiz/cardList/SignatureConfirmation') export default [ { @@ -80,6 +83,33 @@ export default [ title: '', index: 7 } - } + }, + { + path: '/cardList/phoneCode', + name: 'phoneCode', + component: phoneCode, + meta: { + title: '短信验证', + index: 8 + } + }, + { + path: '/cardList/cardDetail', + name: 'cardDetail', + component: cardDetail, + meta: { + title: '核对投被保人信息', + index: 9 + } + }, + { + path: '/cardList/SignatureConfirmation', + name: 'SignatureConfirmation', + component: SignatureConfirmation, + meta: { + title: '阅读确认', + index: 10 + } + }, ] diff --git a/src/store/index.js b/src/store/index.js index 4cfef017e..bb373c12b 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -19,9 +19,14 @@ export default new Vuex.Store({ eodrApplyNo: '', //保全-保全受理号 agentGrade: '', //用户的agentGrade,判断用户权限 secondManageCode: '', //内勤所需参数 - thirdManageCode: '' //内勤所需参数 + thirdManageCode: '' ,//内勤所需参数 + orderDetail:{},//无优卡分享微信端订单信息 }, mutations: { + setOrderDetail(state,data){ + console.log('更新订单信息') + state.orderDetail = data; + }, setThirdManageCode(state, code) { state.thirdManageCode = code }, diff --git a/src/views/ebiz/cardList/Pay.vue b/src/views/ebiz/cardList/Pay.vue index d6f0cfa47..9f47d98ef 100644 --- a/src/views/ebiz/cardList/Pay.vue +++ b/src/views/ebiz/cardList/Pay.vue @@ -2,7 +2,10 @@
- + + + + @@ -15,27 +18,29 @@
--> - - - - - - - - - - - - - - - - - +
+ + + + + + + + + + + + + + + + + +
-