|                                                                                                               |  | <template>  <view>		<uv-popup ref="popup" :round="24">      <view class="popup__view">        <view class="header">          用户隐私保护提示        </view>        <view class="content">          在你使用 鸿宇研学生服务之前,请仔细阅读          <text class="highlight" @click="$refs.modal.open('service_agreement', '用户服务协议')">《用户服务协议》</text>          和          <text class="highlight" @click="$refs.modal.open('privacy_policy', '隐私政策')">《隐私政策》</text>          如你同意该指引,请点击“同意“开始使用本小程序。        </view>        <view class="footer">          <button class="btn" @click="onConfirm(false)">拒绝</button>          <button class="btn btn-confirm" @click="onConfirm(true)">同意</button>        </view>      </view>		</uv-popup>
		<agreementModal ref="modal" @confirm="onConfirmSingle"></agreementModal>
  </view></template>
<script>import agreementModal from '@/pages_order/components/agreementModal.vue'
export default {  name: 'agreementModal',	components: {		agreementModal,	},  data() {    return {      confirmSet: new Set(),    }  },  methods: {    open() {      this.$refs.popup.open('bottom');    },    onConfirm(confirm) {      this.$emit('confirm', confirm)      this.$refs.popup.close();    },    onConfirmSingle(confirm, key) {      if (!this.confirmSet.has(key) && confirm) {        this.confirmSet.add(key)      } else if (this.confirmSet.has(key) && !confirm) {        this.confirmSet.delete(key)      }      if (this.confirmSet.size === 2) {        this.onConfirm(true)      }    }  },}</script>
<style lang="scss" scoped>.popup__view {  display: flex;  flex-direction: column;  padding: 44rpx 46rpx 128rpx 46rpx;}
.header {  font-size: 32rpx;  font-family: PingFang SC;  font-weight: 600;  line-height: 1.5;  color: #000000;}
.content {  margin-top: 30rpx;  font-size: 32rpx;  font-family: PingFang SC;  font-weight: 400;  line-height: 1.5;  text-align: left;  color: #000000;    .highlight {    color: #4C6EAE;  }}
.footer {  margin-top: 122rpx;  text-align: center;  .btn {    display: inline-flex;    align-items: center;    justify-content: center;    border-radius: 8rpx;    width: 232rpx;    padding: 18rpx 84rpx;    font-size: 32rpx;    font-family: PingFang SC;    font-weight: 500;    background: #F5F5F5;    color: #07C160;    &-confirm {      background: #07C160;      color: #FFFFFF;    }  }  .btn + .btn {    margin-left: 30rpx;  }}</style>
 |