天波h5前端应用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
1.8KB

  1. <!--
  2. * @Date: 2022-02-26 09:26:04
  3. * @LastEditors: JinxChen
  4. * @LastEditTime: 2022-03-04 11:40:00
  5. * @FilePath: \AntpayFrontEnd\src\components\Checkbox.vue
  6. * @description: 单选框组件
  7. -->
  8. <template>
  9. <div class="checkbox-container">
  10. <van-checkbox v-model="checked" shape="square" @change="onCheckChange">
  11. <strong >已阅读协议并确认</strong>
  12. </van-checkbox>
  13. </div>
  14. </template>
  15. <script>
  16. export default {
  17. name:'checkbox',
  18. mounted() {
  19. this.getDialogData();
  20. },
  21. data(){
  22. return {
  23. checked: false,
  24. }
  25. },
  26. methods: {
  27. // 获取从dialog组件传过来的参数
  28. getDialogData() {
  29. this.$bus.$on('getCheckStatus', (data) => {
  30. this.checked = data;
  31. })
  32. },
  33. // 单选框值发生变化时
  34. onCheckChange(value) {
  35. this.checked = value;
  36. this.$emit('SendCheckStatus', value);
  37. },
  38. }
  39. }
  40. </script>
  41. <style scoped lang="scss">
  42. .checkbox-container {
  43. margin: 5px 0;
  44. .agreement-container {
  45. .agreement-content {
  46. height: 500px;
  47. padding: 5px 10px;
  48. border-top: 0.5px soild;
  49. border-bottom: 0.5px soild;
  50. text-align: left;
  51. overflow: scroll;
  52. h5 {
  53. padding: 5px;
  54. }
  55. p {
  56. padding: 5px;
  57. font-size: 14px;
  58. line-height: 20px;
  59. }
  60. .agreement-button {
  61. padding: 10px;
  62. display: flex;
  63. justify-content: space-around;
  64. align-items: center;
  65. .van-button {
  66. height: 30px;
  67. width: 120px;
  68. border-radius: 10px;
  69. }
  70. }
  71. }
  72. }
  73. }
  74. </style>