mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-11 15:36:43 +08:00
安全性问题处理:添加页面访问校验初版代码 --提交人:阳华祥
This commit is contained in:
@@ -80,3 +80,13 @@ export function getAuthCode(data) {
|
|||||||
data
|
data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 获取代理人信息
|
||||||
|
export function getCheckModelAgentInfo(data) {
|
||||||
|
return request({
|
||||||
|
// url: getUrl('/agent/agent/info', 0),
|
||||||
|
url: getUrl('/customer/agent/info', 1),
|
||||||
|
method: 'post',
|
||||||
|
data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|||||||
@@ -86,7 +86,14 @@
|
|||||||
</van-popup>
|
</van-popup>
|
||||||
|
|
||||||
<!-- 短信验证 -->
|
<!-- 短信验证 -->
|
||||||
<van-dialog v-model="checkModel.show" title="提示" show-cancel-button @confirm="checkModelConfirm" @cancel="checkModelCancel">
|
<van-dialog
|
||||||
|
v-model="checkModel.show"
|
||||||
|
title="提示"
|
||||||
|
show-cancel-button
|
||||||
|
@confirm="checkModelConfirm"
|
||||||
|
@cancel="checkModelCancel"
|
||||||
|
:before-close="checkModelBeforeClose"
|
||||||
|
>
|
||||||
<p class="p10 fs14">为确保是您本人操作,短信验证码已发送至您手机号{{ checkModel.mobile | encryCheckModelMobile }},请您输入验证码以完成后续操作。</p>
|
<p class="p10 fs14">为确保是您本人操作,短信验证码已发送至您手机号{{ checkModel.mobile | encryCheckModelMobile }},请您输入验证码以完成后续操作。</p>
|
||||||
<van-cell-group class="flex align-items-c pr5 mb15">
|
<van-cell-group class="flex align-items-c pr5 mb15">
|
||||||
<van-field maxlength="6" placeholder="请输入短信验证码" v-model="checkModel.authCode" clearable label-width="0" />
|
<van-field maxlength="6" placeholder="请输入短信验证码" v-model="checkModel.authCode" clearable label-width="0" />
|
||||||
@@ -101,7 +108,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { Search, Cell, IndexBar, IndexAnchor, Popup, Button, Tag, Dialog, Field } from 'vant'
|
import { Search, Cell, IndexBar, IndexAnchor, Popup, Button, Tag, Dialog, Field } from 'vant'
|
||||||
import { getCustomersList } from '@/api/ebiz/customer/customer'
|
import { getCustomersList } from '@/api/ebiz/customer/customer'
|
||||||
import { checkEnterPower, getAuthCode } from '@/api/ebiz/common/common'
|
import { checkEnterPower, getAuthCode, getCheckModelAgentInfo} from '@/api/ebiz/common/common'
|
||||||
export default {
|
export default {
|
||||||
name: 'login',
|
name: 'login',
|
||||||
components: {
|
components: {
|
||||||
@@ -121,7 +128,7 @@ export default {
|
|||||||
show: false,
|
show: false,
|
||||||
authCode: '',
|
authCode: '',
|
||||||
smsId: '',
|
smsId: '',
|
||||||
mobile: localStorage.mobile,
|
mobile: '',
|
||||||
timeId: null, // 计时器ID
|
timeId: null, // 计时器ID
|
||||||
countDown: 60, // 倒计时
|
countDown: 60, // 倒计时
|
||||||
codeDisabled: false // 获取验证码按钮是否禁用
|
codeDisabled: false // 获取验证码按钮是否禁用
|
||||||
@@ -198,12 +205,32 @@ export default {
|
|||||||
if (checkModelResult.enterFlag == '0') {
|
if (checkModelResult.enterFlag == '0') {
|
||||||
this.getCustomerList() //客户列表查询
|
this.getCustomerList() //客户列表查询
|
||||||
} else {
|
} else {
|
||||||
this.checkModel.show = true
|
this.checkModelFilter()
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.$toast(checkModelResult.resultMessage)
|
this.$toast(checkModelResult.resultMessage)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
checkModelBeforeClose(action, done) {
|
||||||
|
if (action === 'confirm' && !this.checkModel.show) {
|
||||||
|
setTimeout(done, 1000)
|
||||||
|
} else {
|
||||||
|
done(false)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async checkModelFilter() {
|
||||||
|
const agentInfoRes = await getCheckModelAgentInfo({})
|
||||||
|
if (agentInfoRes.result == 0) {
|
||||||
|
if (/^N{1}/.test(agentInfoRes.branchType)) {
|
||||||
|
this.checkModel.mobile = agentInfoRes.phoneNo
|
||||||
|
this.checkModel.show = true
|
||||||
|
} else {
|
||||||
|
this.getCustomerList() //客户列表查询
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.$toast(agentInfoRes.resultMessage)
|
||||||
|
}
|
||||||
|
},
|
||||||
async checkModelConfirm() {
|
async checkModelConfirm() {
|
||||||
if (!this.checkModel.codeDisabled) {
|
if (!this.checkModel.codeDisabled) {
|
||||||
this.checkModel.show = true
|
this.checkModel.show = true
|
||||||
|
|||||||
@@ -5,7 +5,14 @@
|
|||||||
<NavItem v-for="(item, index) of navList" :key="index" :config="item" />
|
<NavItem v-for="(item, index) of navList" :key="index" :config="item" />
|
||||||
</van-cell-group>
|
</van-cell-group>
|
||||||
<!-- 短信验证 -->
|
<!-- 短信验证 -->
|
||||||
<van-dialog v-model="checkModel.show" title="提示" show-cancel-button @confirm="checkModelConfirm" @cancel="checkModelCancel">
|
<van-dialog
|
||||||
|
v-model="checkModel.show"
|
||||||
|
title="提示"
|
||||||
|
show-cancel-button
|
||||||
|
@confirm="checkModelConfirm"
|
||||||
|
@cancel="checkModelCancel"
|
||||||
|
:before-close="checkModelBeforeClose"
|
||||||
|
>
|
||||||
<p class="p10 fs14">为确保是您本人操作,短信验证码已发送至您手机号{{ checkModel.mobile | encryCheckModelMobile }},请您输入验证码以完成后续操作。</p>
|
<p class="p10 fs14">为确保是您本人操作,短信验证码已发送至您手机号{{ checkModel.mobile | encryCheckModelMobile }},请您输入验证码以完成后续操作。</p>
|
||||||
<van-cell-group class="flex align-items-c pr5 mb15">
|
<van-cell-group class="flex align-items-c pr5 mb15">
|
||||||
<van-field maxlength="6" placeholder="请输入短信验证码" v-model="checkModel.authCode" clearable label-width="0" />
|
<van-field maxlength="6" placeholder="请输入短信验证码" v-model="checkModel.authCode" clearable label-width="0" />
|
||||||
@@ -21,7 +28,7 @@
|
|||||||
import UserInfoHeader from '@/components/ebiz/manpower/UserInfoHeader'
|
import UserInfoHeader from '@/components/ebiz/manpower/UserInfoHeader'
|
||||||
import NavItem from '@/components/ebiz/manpower/NavItem'
|
import NavItem from '@/components/ebiz/manpower/NavItem'
|
||||||
import { CellGroup, Cell, Button, Dialog, Field } from 'vant'
|
import { CellGroup, Cell, Button, Dialog, Field } from 'vant'
|
||||||
import { checkEnterPower, getAuthCode } from '@/api/ebiz/common/common'
|
import { checkEnterPower, getAuthCode, getCheckModelAgentInfo } from '@/api/ebiz/common/common'
|
||||||
export default {
|
export default {
|
||||||
name: 'Navigation',
|
name: 'Navigation',
|
||||||
components: {
|
components: {
|
||||||
@@ -39,7 +46,7 @@ export default {
|
|||||||
show: false,
|
show: false,
|
||||||
authCode: '',
|
authCode: '',
|
||||||
smsId: '',
|
smsId: '',
|
||||||
mobile: localStorage.mobile,
|
mobile: '',
|
||||||
timeId: null, // 计时器ID
|
timeId: null, // 计时器ID
|
||||||
countDown: 60, // 倒计时
|
countDown: 60, // 倒计时
|
||||||
codeDisabled: false // 获取验证码按钮是否禁用
|
codeDisabled: false // 获取验证码按钮是否禁用
|
||||||
@@ -84,12 +91,32 @@ export default {
|
|||||||
if (checkModelResult.enterFlag == '0') {
|
if (checkModelResult.enterFlag == '0') {
|
||||||
this.checkModel.show = false
|
this.checkModel.show = false
|
||||||
} else {
|
} else {
|
||||||
this.checkModel.show = true
|
this.checkModelFilter()
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.$toast(checkModelResult.resultMessage)
|
this.$toast(checkModelResult.resultMessage)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
checkModelBeforeClose(action, done) {
|
||||||
|
if (action === 'confirm' && !this.checkModel.show) {
|
||||||
|
setTimeout(done, 1000)
|
||||||
|
} else {
|
||||||
|
done(false)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async checkModelFilter() {
|
||||||
|
const agentInfoRes = await getCheckModelAgentInfo({})
|
||||||
|
if (agentInfoRes.result == 0) {
|
||||||
|
if (/^N{1}/.test(agentInfoRes.branchType)) {
|
||||||
|
this.checkModel.mobile = agentInfoRes.phoneNo
|
||||||
|
this.checkModel.show = true
|
||||||
|
} else {
|
||||||
|
this.checkModel.show = false
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.$toast(agentInfoRes.resultMessage)
|
||||||
|
}
|
||||||
|
},
|
||||||
async checkModelConfirm() {
|
async checkModelConfirm() {
|
||||||
if (!this.checkModel.codeDisabled) {
|
if (!this.checkModel.codeDisabled) {
|
||||||
this.checkModel.show = true
|
this.checkModel.show = true
|
||||||
|
|||||||
@@ -6,7 +6,14 @@
|
|||||||
</van-cell-group>
|
</van-cell-group>
|
||||||
|
|
||||||
<!-- 短信验证 -->
|
<!-- 短信验证 -->
|
||||||
<van-dialog v-model="checkModel.show" title="提示" show-cancel-button @confirm="checkModelConfirm" @cancel="checkModelCancel">
|
<van-dialog
|
||||||
|
v-model="checkModel.show"
|
||||||
|
title="提示"
|
||||||
|
show-cancel-button
|
||||||
|
@confirm="checkModelConfirm"
|
||||||
|
@cancel="checkModelCancel"
|
||||||
|
:before-close="checkModelBeforeClose"
|
||||||
|
>
|
||||||
<p class="p10 fs14">为确保是您本人操作,短信验证码已发送至您手机号{{ checkModel.mobile | encryCheckModelMobile }},请您输入验证码以完成后续操作。</p>
|
<p class="p10 fs14">为确保是您本人操作,短信验证码已发送至您手机号{{ checkModel.mobile | encryCheckModelMobile }},请您输入验证码以完成后续操作。</p>
|
||||||
<van-cell-group class="flex align-items-c pr5 mb15">
|
<van-cell-group class="flex align-items-c pr5 mb15">
|
||||||
<van-field maxlength="6" placeholder="请输入短信验证码" v-model="checkModel.authCode" clearable label-width="0" />
|
<van-field maxlength="6" placeholder="请输入短信验证码" v-model="checkModel.authCode" clearable label-width="0" />
|
||||||
@@ -24,7 +31,7 @@ import NavItem from '@/components/ebiz/manpower/NavItem'
|
|||||||
import record from '@/assets/images/u73803.png'
|
import record from '@/assets/images/u73803.png'
|
||||||
import { CellGroup, Cell, Button, Dialog, Field } from 'vant'
|
import { CellGroup, Cell, Button, Dialog, Field } from 'vant'
|
||||||
import { getTokenForUserModel } from '@/api/ebiz/manpower/manpower'
|
import { getTokenForUserModel } from '@/api/ebiz/manpower/manpower'
|
||||||
import { checkEnterPower, getAuthCode } from '@/api/ebiz/common/common'
|
import { checkEnterPower, getAuthCode, getCheckModelAgentInfo } from '@/api/ebiz/common/common'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Navigation',
|
name: 'Navigation',
|
||||||
@@ -43,7 +50,7 @@ export default {
|
|||||||
show: false,
|
show: false,
|
||||||
authCode: '',
|
authCode: '',
|
||||||
smsId: '',
|
smsId: '',
|
||||||
mobile: localStorage.mobile,
|
mobile: '',
|
||||||
timeId: null, // 计时器ID
|
timeId: null, // 计时器ID
|
||||||
countDown: 60, // 倒计时
|
countDown: 60, // 倒计时
|
||||||
codeDisabled: false // 获取验证码按钮是否禁用
|
codeDisabled: false // 获取验证码按钮是否禁用
|
||||||
@@ -85,12 +92,32 @@ export default {
|
|||||||
if (checkModelResult.enterFlag == '0') {
|
if (checkModelResult.enterFlag == '0') {
|
||||||
this.getInfo()
|
this.getInfo()
|
||||||
} else {
|
} else {
|
||||||
this.checkModel.show = true
|
this.checkModelFilter()
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.$toast(checkModelResult.resultMessage)
|
this.$toast(checkModelResult.resultMessage)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
checkModelBeforeClose(action, done) {
|
||||||
|
if (action === 'confirm' && !this.checkModel.show) {
|
||||||
|
setTimeout(done, 1000)
|
||||||
|
} else {
|
||||||
|
done(false)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async checkModelFilter() {
|
||||||
|
const agentInfoRes = await getCheckModelAgentInfo({})
|
||||||
|
if (agentInfoRes.result == 0) {
|
||||||
|
if (/^N{1}/.test(agentInfoRes.branchType)) {
|
||||||
|
this.checkModel.mobile = agentInfoRes.phoneNo
|
||||||
|
this.checkModel.show = true
|
||||||
|
} else {
|
||||||
|
this.getInfo()
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.$toast(agentInfoRes.resultMessage)
|
||||||
|
}
|
||||||
|
},
|
||||||
async checkModelConfirm() {
|
async checkModelConfirm() {
|
||||||
if (!this.checkModel.codeDisabled) {
|
if (!this.checkModel.codeDisabled) {
|
||||||
this.checkModel.show = true
|
this.checkModel.show = true
|
||||||
|
|||||||
@@ -144,7 +144,14 @@
|
|||||||
<van-button type="danger" class="bottom-btn" @click="add" v-no-more-click="1000">点我新增</van-button>
|
<van-button type="danger" class="bottom-btn" @click="add" v-no-more-click="1000">点我新增</van-button>
|
||||||
|
|
||||||
<!-- 短信验证 -->
|
<!-- 短信验证 -->
|
||||||
<van-dialog v-model="checkModel.show" title="提示" show-cancel-button @confirm="checkModelConfirm" @cancel="checkModelCancel">
|
<van-dialog
|
||||||
|
v-model="checkModel.show"
|
||||||
|
title="提示"
|
||||||
|
show-cancel-button
|
||||||
|
@confirm="checkModelConfirm"
|
||||||
|
@cancel="checkModelCancel"
|
||||||
|
:before-close="checkModelBeforeClose"
|
||||||
|
>
|
||||||
<p class="p10 fs14">为确保是您本人操作,短信验证码已发送至您手机号{{ checkModel.mobile | encryCheckModelMobile }},请您输入验证码以完成后续操作。</p>
|
<p class="p10 fs14">为确保是您本人操作,短信验证码已发送至您手机号{{ checkModel.mobile | encryCheckModelMobile }},请您输入验证码以完成后续操作。</p>
|
||||||
<van-cell-group class="flex align-items-c pr5 mb15">
|
<van-cell-group class="flex align-items-c pr5 mb15">
|
||||||
<van-field maxlength="6" placeholder="请输入短信验证码" v-model="checkModel.authCode" clearable label-width="0" />
|
<van-field maxlength="6" placeholder="请输入短信验证码" v-model="checkModel.authCode" clearable label-width="0" />
|
||||||
@@ -160,7 +167,7 @@
|
|||||||
import { Search, Tabs, Tab, List, Tag, Sticky, Toast, Dialog, Field } from 'vant'
|
import { Search, Tabs, Tab, List, Tag, Sticky, Toast, Dialog, Field } from 'vant'
|
||||||
import { orderList, deleteOrderInfo, revokeOrder } from '@/api/ebiz/sale/sale'
|
import { orderList, deleteOrderInfo, revokeOrder } from '@/api/ebiz/sale/sale'
|
||||||
import { formatRiskList } from '@/assets/js/utils/formatRiskList.js'
|
import { formatRiskList } from '@/assets/js/utils/formatRiskList.js'
|
||||||
import { getAuthCode, checkEnterPower } from '@/api/ebiz/common/common'
|
import { getAuthCode, checkEnterPower, getCheckModelAgentInfo} from '@/api/ebiz/common/common'
|
||||||
import dataDictionary from '@/assets/js/utils/data-dictionary' //根据数据字典找到用户等级
|
import dataDictionary from '@/assets/js/utils/data-dictionary' //根据数据字典找到用户等级
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@@ -181,7 +188,7 @@ export default {
|
|||||||
show: false,
|
show: false,
|
||||||
authCode: '',
|
authCode: '',
|
||||||
smsId: '',
|
smsId: '',
|
||||||
mobile: localStorage.mobile,
|
mobile: '',
|
||||||
timeId: null, // 计时器ID
|
timeId: null, // 计时器ID
|
||||||
countDown: 60, // 倒计时
|
countDown: 60, // 倒计时
|
||||||
codeDisabled: false // 获取验证码按钮是否禁用
|
codeDisabled: false // 获取验证码按钮是否禁用
|
||||||
@@ -228,12 +235,32 @@ export default {
|
|||||||
if (checkModelResult.enterFlag == '0') {
|
if (checkModelResult.enterFlag == '0') {
|
||||||
this.loadMore()
|
this.loadMore()
|
||||||
} else {
|
} else {
|
||||||
this.checkModel.show = true
|
this.checkModelFilter()
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.$toast(checkModelResult.resultMessage)
|
this.$toast(checkModelResult.resultMessage)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
checkModelBeforeClose(action, done) {
|
||||||
|
if (action === 'confirm' && !this.checkModel.show) {
|
||||||
|
setTimeout(done, 1000)
|
||||||
|
} else {
|
||||||
|
done(false)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
async checkModelFilter() {
|
||||||
|
const agentInfoRes = await getCheckModelAgentInfo({})
|
||||||
|
if (agentInfoRes.result == 0) {
|
||||||
|
if (!/^N{1}/.test(agentInfoRes.branchType)) {
|
||||||
|
this.checkModel.mobile = agentInfoRes.phoneNo
|
||||||
|
this.checkModel.show = true
|
||||||
|
} else {
|
||||||
|
this.loadMore()
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.$toast(agentInfoRes.resultMessage)
|
||||||
|
}
|
||||||
|
},
|
||||||
async checkModelConfirm() {
|
async checkModelConfirm() {
|
||||||
if (!this.checkModel.codeDisabled) {
|
if (!this.checkModel.codeDisabled) {
|
||||||
this.checkModel.show = true
|
this.checkModel.show = true
|
||||||
|
|||||||
Reference in New Issue
Block a user