dmAgreement.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <template>
  2. <dm-pop-view ref='popView' title="入驻协议" :isShowConfirm="false" :maskTapHide='maskTapHide'>
  3. <view class="content">
  4. <text class="txt">
  5. 用户绑定微信登陆并与单一一个商户主体进行绑定,提交身份资料进行审核。\n 用户绑定微信、淘房客并提交身份申请,收到待审核条目及相关信息, 操作人员点击通过后,推送推广开通成功消息 \n1、用户点击着陆页,唤起授权。 \n2、用户填写表单并提交 \n3、elab后台审核用户资质,并通过 \n4、用户获得主播身份 1、审核状态:待审核、已通过 \n5、短信模版:【淘房客】您的主播资质已认证通过!请在电脑上登陆“淘房客”并使用直播功能。 用户绑定微信登陆并与单一一个商户主体进行绑定,提交身份资料进行审核。 用户绑定微信、淘房客并提交身份申请,收到待审核条目及相关信息, 操作人员点击通过后,推送推广开通成功消息 1、用户点击着陆页,唤起授权。 \n6、用户填写表单并提交 \n7、elab后台审核用户资质,并通过 \n8、用户获得主播身份
  6. </text>
  7. <view class="xieyi" @click="agreeXieyi">
  8. <image class="icon_selected" v-if="agree" src="../../static/icons/icon_yezhu_selected.png" mode=""></image>
  9. <image class="icon_selected" v-else src="../../static/icons/icon_yezhu_unselected.png" mode=""></image>
  10. <text class="tongyi" >我已阅读并同意</text>
  11. <text class="xieyi_text">《入驻协议》</text>
  12. </view>
  13. </view>
  14. </dm-pop-view>
  15. </template>
  16. <script>
  17. import dmPopView from './dmPopView.vue'
  18. export default {
  19. props: {
  20. maskTapHide: {
  21. type: Boolean,
  22. default: true
  23. },
  24. confirmStr: {
  25. type: String,
  26. default: '确认'
  27. },
  28. cancelStr: {
  29. type: String,
  30. default: '取消'
  31. },
  32. info:Object,
  33. mobile:String
  34. },
  35. data() {
  36. return {
  37. agree:false
  38. }
  39. },
  40. mounted() {
  41. },
  42. methods: {
  43. show() {
  44. this.$refs.popView.show()
  45. },
  46. knowAction(){
  47. this.$refs.popView.hide()
  48. },
  49. confirmAction() {
  50. this.$refs.popView.hide()
  51. },
  52. agreeXieyi(){
  53. this.agree = true;
  54. this.$emit('agree',true)
  55. this.$refs.popView.hide()
  56. }
  57. },
  58. components: {
  59. dmPopView
  60. }
  61. }
  62. </script>
  63. <style scoped lang="scss">
  64. .content {
  65. width: 100%;
  66. margin-top: 40rpx;
  67. .txt{
  68. width: 100%;
  69. display: block;
  70. box-sizing: border-box;
  71. padding-left: 44rpx;
  72. padding-right: 44rpx;
  73. font-family: Verdana;
  74. font-size: 24rpx;
  75. font-family: Verdana, Verdana-Regular;
  76. font-weight: 400;
  77. text-align: left;
  78. color: #262626;
  79. line-height: 50rpx;
  80. }
  81. .xieyi{
  82. display: flex;
  83. width: 100%;
  84. justify-content: center;
  85. align-items: center;
  86. margin-top: 40rpx;
  87. margin-bottom: 40rpx;
  88. .icon_selected{
  89. width: 24rpx;
  90. height: 24rpx;
  91. margin-right: 20rpx;
  92. }
  93. .tongyi{
  94. font-size: 24rpx;
  95. font-family: Verdana, Verdana-Regular;
  96. font-weight: 400;
  97. color: #999999;
  98. display: inline-block;
  99. }
  100. .xieyi_text{
  101. font-size: 24rpx;
  102. font-family: Verdana, Verdana-Regular;
  103. font-weight: 400;
  104. color: #f07423;
  105. display: inline-block;
  106. }
  107. }
  108. }
  109. </style>