|
@ -92,6 +92,8 @@ |
|
|
<real-name-repeat v-if="realNameRepeatVisible" |
|
|
<real-name-repeat v-if="realNameRepeatVisible" |
|
|
@secondDialogCallBack="secondDialogCallBack" |
|
|
@secondDialogCallBack="secondDialogCallBack" |
|
|
ref="realNameRepeat"></real-name-repeat> |
|
|
ref="realNameRepeat"></real-name-repeat> |
|
|
|
|
|
<authenticate-history v-if="authenticateHistoryVisible" |
|
|
|
|
|
ref="authenticateHistory"></authenticate-history> |
|
|
</el-dialog> |
|
|
</el-dialog> |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
@ -99,6 +101,7 @@ |
|
|
import debounce from 'lodash/debounce' |
|
|
import debounce from 'lodash/debounce' |
|
|
import IdentitynoRepeat from './identityno-repeat' |
|
|
import IdentitynoRepeat from './identityno-repeat' |
|
|
import RealNameRepeat from './real-name-repeat' |
|
|
import RealNameRepeat from './real-name-repeat' |
|
|
|
|
|
import AuthenticateHistory from './authenticate-history' |
|
|
|
|
|
|
|
|
export default { |
|
|
export default { |
|
|
data () { |
|
|
data () { |
|
@ -280,7 +283,8 @@ export default { |
|
|
}, |
|
|
}, |
|
|
components: { |
|
|
components: { |
|
|
IdentitynoRepeat, |
|
|
IdentitynoRepeat, |
|
|
RealNameRepeat |
|
|
RealNameRepeat, |
|
|
|
|
|
AuthenticateHistory |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
</script> |
|
|
</script> |
|
|