7 changed files with 207 additions and 6 deletions
-
6src/pages.json
-
2src/subpackage/account/components/fixed_modal.vue
-
10src/subpackage/account/pages/manage/apply.vue
-
95src/subpackage/account/pages/manage/check.vue
-
45src/subpackage/account/pages/manage/modules/apply/info_modal.vue
-
13src/subpackage/account/pages/manage/modules/apply/success_modal.vue
-
42src/subpackage/account/pages/manage/modules/apply/tip_modal.vue
@ -0,0 +1,45 @@ |
|||
<template> |
|||
<fixed-modal close title="申请详情"> |
|||
<view class="info-modal"> |
|||
<view class="im-line">状态:<text class="il-txt">待审核</text></view> |
|||
<view class="im-line">账号:yaiogjl</view> |
|||
<view class="im-line">密码:******</view> |
|||
<view class="im-line">姓名:张晓钰</view> |
|||
<view class="im-line">手机号码:15816542312</view> |
|||
</view> |
|||
</fixed-modal> |
|||
</template> |
|||
|
|||
<script> |
|||
import fixedModal from "../../../../components/fixed_modal.vue"; |
|||
import modalButton from "../../../../components/modal_button.vue"; |
|||
export default { |
|||
components: { |
|||
'fixed-modal': fixedModal, |
|||
'modal-button': modalButton |
|||
}, |
|||
data(){ |
|||
return { |
|||
|
|||
} |
|||
}, |
|||
onLoad(){ |
|||
|
|||
}, |
|||
methods: { |
|||
|
|||
} |
|||
} |
|||
</script> |
|||
|
|||
<style lang="scss"> |
|||
.info-modal{ |
|||
padding: 42upx 66upx 0; |
|||
.im-line{ |
|||
@include flcw(28upx, 58upx, #1A1A1A); |
|||
.il-txt{ |
|||
color: #EA5061; |
|||
} |
|||
} |
|||
} |
|||
</style> |
@ -0,0 +1,42 @@ |
|||
<template> |
|||
<fixed-modal> |
|||
<view class="tip-modal"> |
|||
<view class="tm-txt">您已绑定账号,无需重复绑定</view> |
|||
<view class="tm-btn"> |
|||
<modal-button green>知道了</modal-button> |
|||
</view> |
|||
</view> |
|||
</fixed-modal> |
|||
</template> |
|||
|
|||
<script> |
|||
import fixedModal from "../../../../components/fixed_modal.vue"; |
|||
import modalButton from "../../../../components/modal_button.vue"; |
|||
export default { |
|||
components: { |
|||
'fixed-modal': fixedModal, |
|||
'modal-button': modalButton |
|||
}, |
|||
data(){ |
|||
return { |
|||
|
|||
} |
|||
}, |
|||
onLoad(){ |
|||
|
|||
}, |
|||
methods: { |
|||
|
|||
} |
|||
} |
|||
</script> |
|||
|
|||
<style lang="scss"> |
|||
.tm-txt{ |
|||
text-align: center; |
|||
@include flcw(28upx, 58upx, #1A1A1A); |
|||
} |
|||
.tm-btn{ |
|||
margin-top: 60upx; |
|||
} |
|||
</style> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue