Browse Source

2024.04.06
- 增加隐私协议政策提示语和跳转链接;

zweiqin 1 year ago
parent
commit
90c38e776a

+ 1 - 0
.eslintignore

@@ -1,4 +1,5 @@
 /build/
 /config/
 /dist/
+/src/views/
 /*.js

+ 2 - 2
src/api/index.js

@@ -10,8 +10,8 @@
 import home from './home'
 
 // 获取当前环境变量 true => 生产环境 false => 开发环境
-// const BASEURL = (process.env.NODE_ENV === 'production') ? 'https://nsappapi.tuanfengkeji.cn' : '/api'
-const BASEURL = (process.env.NODE_ENV === 'production') ? 'https://nsappapitest.tuanfengkeji.cn' : '/api' // 测试环境
+const BASEURL = (process.env.NODE_ENV === 'production') ? 'https://nsappapi.tuanfengkeji.cn' : '/api'
+// const BASEURL = (process.env.NODE_ENV === 'production') ? 'https://nsappapitest.tuanfengkeji.cn' : '/api' // 测试环境
 
 // 识别证件号的根路径
 const CARDURL = `https://www.zhult.com/samrtWorker/api`

+ 12 - 1
src/views/SettleIn/enterprisesApply.vue

@@ -233,6 +233,15 @@
               </el-form-item>
             </el-form>
           </div>
+					<div style="margin-top: 28px;display: flex;justify-content: center;align-items: center;text-align: center;">
+						<el-checkbox v-model="isAgreeService"></el-checkbox>
+						<div style="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>
           <el-button @click="submitForm('ruleForm')" class="submitBtn" type="primary">提交</el-button>
         </div>
       </div>
@@ -374,7 +383,8 @@ export default {
       imageUrl: '',
       action: api.upload,
       idTypeList: [],
-      myHeaders: {}
+      myHeaders: {},
+			isAgreeService: false
     }
   },
   created () {
@@ -468,6 +478,7 @@ export default {
     submitForm (formName) {
       this.$refs[formName].validate(valid => {
         if (valid) {
+					if(!this.isAgreeService) return this.$message({ message: '请先同意《用户服务协议》和《隐私政策》', type: 'warning' })
           this.personalForm.shopAdress = `${this.personalForm.shopAdress},${this.personalForm.storeAddressDetail}`
           // alert('submit!')
           let params = {

+ 15 - 2
src/views/SettleIn/individualBusiness.vue

@@ -233,6 +233,15 @@
               </el-form-item>
             </el-form>
           </div>
+					<div style="margin-top: 28px;display: flex;justify-content: center;align-items: center;text-align: center;">
+						<el-checkbox v-model="isAgreeService"></el-checkbox>
+						<div style="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>
           <el-button @click="submitForm('ruleForm')" class="submitBtn" type="primary">提交</el-button>
         </div>
       </div>
@@ -375,7 +384,8 @@ export default {
       dialogVisible: false,
       imageUrl: '',
       action: api.upload,
-      myHeaders: {}
+      myHeaders: {},
+			isAgreeService: false
     }
   },
   created () {
@@ -477,8 +487,8 @@ export default {
     submitForm (formName) {
       this.$refs[formName].validate(valid => {
         if (valid) {
+					if(!this.isAgreeService) return this.$message({ message: '请先同意《用户服务协议》和《隐私政策》', type: 'warning' })
           this.personalForm.shopAdress = `${this.personalForm.shopAdress},${this.personalForm.storeAddressDetail}`
-          // alert('submit!')
           let params = {
             url: api.individualCheck,
             method: 'POST',
@@ -528,6 +538,9 @@ export default {
 
 <style lang="less" scoped>
 .statusBox {
+	/deep/ .el-checkbox__input.is-checked .el-checkbox__inner {
+		background-color: #0059ff;
+	}
   .infoBox {
     width: 100%;
     height: 700px;

+ 19 - 2
src/views/moblie/mEnterprise.vue

@@ -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',

+ 19 - 2
src/views/moblie/mUinitBusiness.vue

@@ -229,6 +229,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>
 
         <!--  身份证认证模块砍掉 -->
@@ -340,7 +349,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'
@@ -362,6 +371,7 @@ export default {
     [Radio.name]: Radio,
     [Button.name]: Button,
     [Loading.name]: Loading,
+    [Checkbox.name]: Checkbox,
     PageLoading
   },
   data() {
@@ -452,7 +462,8 @@ export default {
         value: 'id',
         children: 'items',
       },
-      isQueryShopCategory: false
+      isQueryShopCategory: false,
+      isAgreeService: false
     }
   },
   mounted() {
@@ -854,6 +865,12 @@ export default {
       //   Toast.fail('请上传身份证背面照')
       //   return false
       // }
+
+      if (!this.isAgreeService) {
+        Toast.fail('请先同意《用户服务协议》和《隐私政策》')
+        return false
+      }
+
       let params = {
         url: api.individualCheck,
         method: 'POST',