|  |  |  | 
|---|
|  |  |  | <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> | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | methods: { | 
|---|
|  |  |  | jumpService(flag) { | 
|---|
|  |  |  | uni.navigateTo({ | 
|---|
|  |  |  | url: '/pages/withdrawal/withdrawal' | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | agreeDo(){ | 
|---|
|  |  |  | this.agree = !this.agree | 
|---|
|  |  |  | }, | 
|---|