1234567891011121314151617181920212223242526272829303132 |
- export default {
- data() {
- return {
- user:{},
- }
- },
- methods: {
- gotoUrl(){
- uni.redirectTo({
- url: '/pages/my/user/updatephone/verification'
- })
- },
- showphone(phone){
- if(!phone){
- return "";
- }
- if(phone.length!=11){
- return "";
- }
- return phone.substring(0,3)+'****'+phone.substring(8);
- },
- },
- onLoad() {
-
- },onReady(){
- this.user=this.carhelp.getPersonInfo();
-
- }
- }
|