提交 9d671fa9 authored 作者: 黎九's avatar 黎九

迭代内容

上级 6c56e7b5
...@@ -83,8 +83,8 @@ ...@@ -83,8 +83,8 @@
"sdkConfigs" : { "sdkConfigs" : {
"maps" : { "maps" : {
"amap" : { "amap" : {
"key" : "9679b40f9fc0f84cd358ef24b0e54631", "key" : "8b8fb3d3301c5b625441178cdf23318f",
"securityJsCode" : "d71836d53875dab5611a30587b2db1c0", "securityJsCode" : "45882b25dcfbe17d0563ffa223fd1d92",
"serviceHost" : "" "serviceHost" : ""
} }
} }
......
...@@ -107,7 +107,9 @@ ...@@ -107,7 +107,9 @@
uni.hideLoading() uni.hideLoading()
return uni.$u.toast('实名认证完成'); return uni.$u.toast('实名认证完成');
setTimeout(function() { setTimeout(function() {
uni.navigateBack() uni.navigateTo({
url:'../index/index'
})
}, 2000) }, 2000)
// this.logNice = true // this.logNice = true
}, },
...@@ -124,6 +126,6 @@ ...@@ -124,6 +126,6 @@
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
@import 'Authentication.scss'; @import './Authentication.scss';
// @import 'index.scss'; // @import 'index.scss';
</style> </style>
\ No newline at end of file
...@@ -490,7 +490,8 @@ const numberPlateMap = new Map([ ...@@ -490,7 +490,8 @@ const numberPlateMap = new Map([
['3', '大型新能源汽车(黄绿双拼色底黑字)'], ['3', '大型新能源汽车(黄绿双拼色底黑字)'],
['4', '小型新能源汽车(渐变绿底黑字)'], ['4', '小型新能源汽车(渐变绿底黑字)'],
['5', '轻便摩托车(蓝底白字)'], ['5', '轻便摩托车(蓝底白字)'],
['6', '普通摩托车(黄底黑字)'] ['6', '普通摩托车(黄底黑字)'],
['7', "电动自行车(绿牌白字)"],
]) ])
const uploadSourceTypeMap = { const uploadSourceTypeMap = {
...@@ -649,6 +650,7 @@ export default { ...@@ -649,6 +650,7 @@ export default {
}, },
numberPlateText() { numberPlateText() {
const name = this.numberPlateMap.get(this.IllegalForm.number_plate) const name = this.numberPlateMap.get(this.IllegalForm.number_plate)
console.log(name);
return name && name.slice(0, name.indexOf('(')) || '请选择' return name && name.slice(0, name.indexOf('(')) || '请选择'
} }
}, },
...@@ -714,6 +716,7 @@ export default { ...@@ -714,6 +716,7 @@ export default {
}, },
onSelectNumberPlate({ value }) { onSelectNumberPlate({ value }) {
console.log(value);
this.IllegalForm.number_plate = value this.IllegalForm.number_plate = value
}, },
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论