|
|
|
@ -112,7 +112,7 @@ |
|
|
|
<view class="flex-col group_11"> |
|
|
|
<view class="justify-between group_12"> |
|
|
|
<view class="flex-row"> |
|
|
|
<checkbox-group @change="e => isConsentAgreement = !isConsentAgreement"> |
|
|
|
<checkbox-group @change="onAgreementCheck()"> |
|
|
|
<checkbox color="#e6a33c" :checked="isConsentAgreement"></checkbox> |
|
|
|
</checkbox-group> |
|
|
|
<view class="group_14"> |
|
|
|
@ -120,7 +120,7 @@ |
|
|
|
<text class="text_23" @click="$url('/packages/article/article?type=grade_agreement')">《服务协议》</text> |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
<text class="text_24">45元/张</text> |
|
|
|
<!-- <text class="text_24">45元/张</text> --> |
|
|
|
</view> |
|
|
|
<view class="flex-col items-center button" @click="nextToGrading"> |
|
|
|
<text>下一步</text> |
|
|
|
@ -184,6 +184,11 @@ |
|
|
|
} |
|
|
|
}, |
|
|
|
async onLoad(query){ |
|
|
|
//如果看过协议,默认协议勾选住 |
|
|
|
if(uni.getStorageSync('AgreementChecked')){ |
|
|
|
this.isConsentAgreement = true |
|
|
|
} |
|
|
|
|
|
|
|
this.getSysInfo(); |
|
|
|
|
|
|
|
if(query && query.q){ |
|
|
|
@ -211,6 +216,9 @@ |
|
|
|
} |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
onAgreementCheck(e){ |
|
|
|
this.isConsentAgreement = !this.isConsentAgreement |
|
|
|
}, |
|
|
|
tipsDetail(index){ |
|
|
|
console.log("tipsDetail",index) |
|
|
|
console.log("tipsDetail id",this.tipsDatas[index].id) |
|
|
|
|