jiangping
2025-07-17 6b96f204e4083d32996c2943a25e36c15d668bd1
small-program/pages/login/login.vue
@@ -9,7 +9,7 @@
      <view class="box-footer">
         <image src="/static/icon/ic_notagree@2x.png" mode="widthFix" v-if="!agree" @click="agreeDo"></image>
         <image src="/static/icon/ic_agree@2x.png" mode="widthFix" v-if="agree" @click="agreeDo"></image> 
         <text @click="agreeDo">我已阅读并同意《用户协议》,《隐私协议政策》</text>
         <text @click="agreeDo">我已阅读并同意<text @click="jumpService(4)">《用户协议》</text>,<text @click="jumpService(5)"> 《隐私协议政策》</text></text>
      </view>
   </view>
</template>
@@ -25,6 +25,11 @@
         }
      },
      methods: {
         jumpService(flag) {
            uni.navigateTo({
               url: '/pages/withdrawal/withdrawal'
            })
         },
         agreeDo(){
            this.agree = !this.agree
         },