v
This commit is contained in:
35
components/umaskes/umaskes.vue
Normal file
35
components/umaskes/umaskes.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
<template>
|
||||
<view>
|
||||
<u-mask :show="show" @click="show = false">
|
||||
<view class="warp">
|
||||
<view class="rect" @tap.stop>{{type_login}}</view>
|
||||
</view>
|
||||
</u-mask>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
show: true
|
||||
};
|
||||
},
|
||||
props: ["type_login"],
|
||||
|
||||
mounted(){
|
||||
console.log(this.type_login)
|
||||
this.type_logines()
|
||||
},
|
||||
methods: {
|
||||
type_logines(){
|
||||
console.log("2345")
|
||||
this.show = this.type_login
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user