doum
2025-09-04 9d901b4215323c97a00a068cd962f5c9c04dadfa
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 @click="jumpService(4)">《用户协议》</text>,<text @click="jumpService(5)"> 《隐私协议政策》</text></text>
         <text @click="agreeDo">我已阅读并同意<text class="bluetxt" @click="jumpService(4)">《用户协议》</text>,<text class="bluetxt" @click="jumpService(5)"> 《隐私协议政策》</text></text>
      </view>
   </view>
</template>
@@ -27,7 +27,7 @@
      methods: {
         jumpService(flag) {
            uni.navigateTo({
               url: '/pages/withdrawal/withdrawal'
               url: '/pages/rich-text-page/rich-text-page?flag='+flag
            })
         },
         agreeDo(){
@@ -53,6 +53,7 @@
               if (result.code === 200) {
                  that.$store.commit('setUserInfo', result.data.member)
                  that.$store.commit('setToken', result.data.token)
                  uni.$emit('refresh')
                  uni.navigateBack({ delta: 1 });
               }
            })
@@ -113,4 +114,7 @@
         }
      }
   }
   .bluetxt{
      color: royalblue !important;
   }
</style>