|
@@ -204,6 +204,15 @@
|
|
|
必须大于60天
|
|
|
</p>
|
|
|
</div>
|
|
|
+ <div style="margin-top: 28px;display: flex;">
|
|
|
+ <van-checkbox v-model="isAgreeService"></van-checkbox>
|
|
|
+ <div style="flex: 1;margin-left: 12px;font-size: 14px;color: #646a73;">
|
|
|
+ 点击提交,代表你已阅读并同意
|
|
|
+ <a style="color: #3370ff" href="https://www.tuanfengkeji.cn/TFShop_Uni_H5/#/pages/service-agreement/service-agreement" target="_blank">《用户服务协议》</a>
|
|
|
+ 和
|
|
|
+ <a style="color: #3370ff" href="https://www.tuanfengkeji.cn/TFShop_Uni_H5/#/pages/service-agreement/privacy-policy" target="_blank">《隐私政策》</a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<!-- 身份证认证模块砍掉 -->
|
|
|
<!-- <div class="subjectInfo" v-show="active === 3">
|
|
@@ -311,7 +320,7 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import { Area, Popup, DatetimePicker, Uploader, Toast, Picker, Cascader, RadioGroup, Radio, Button, Loading } from 'vant'
|
|
|
+import { Area, Popup, DatetimePicker, Uploader, Toast, Picker, Cascader, RadioGroup, Radio, Button, Loading, Checkbox } from 'vant'
|
|
|
import api from '@/api'
|
|
|
import { listSearchMixin } from '@/config/mixin'
|
|
|
import AreaList from '../../util/area'
|
|
@@ -333,6 +342,7 @@ export default {
|
|
|
[Radio.name]: Radio,
|
|
|
[Button.name]: Button,
|
|
|
[Loading.name]: Loading,
|
|
|
+ [Checkbox.name]: Checkbox,
|
|
|
PageLoading
|
|
|
},
|
|
|
data() {
|
|
@@ -422,7 +432,8 @@ export default {
|
|
|
value: 'id',
|
|
|
children: 'items',
|
|
|
},
|
|
|
- isQueryShopCategory: false
|
|
|
+ isQueryShopCategory: false,
|
|
|
+ isAgreeService: false
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
@@ -792,6 +803,12 @@ export default {
|
|
|
// Toast.fail('请上传身份证背面照')
|
|
|
// return false
|
|
|
// }
|
|
|
+
|
|
|
+ if (!this.isAgreeService) {
|
|
|
+ Toast.fail('请先同意《用户服务协议》和《隐私政策》')
|
|
|
+ return false
|
|
|
+ }
|
|
|
+
|
|
|
let params = {
|
|
|
url: api.enterpriseCheck,
|
|
|
method: 'POST',
|