Browse Source

全民分享申请

gcz 1 year ago
parent
commit
f1ecd4683f
5 changed files with 290 additions and 7 deletions
  1. 200 0
      center/applyshare.vue
  2. 63 0
      center/applysharesuccess.vue
  3. 8 7
      center/center.vue
  4. 5 0
      common/apiurl.js
  5. 14 0
      pages.json

+ 200 - 0
center/applyshare.vue

@@ -0,0 +1,200 @@
+<template>
+	<view class="pages">
+		<u-navbar
+			title="全民分享"
+			:placeholder="true"
+			:autoBack="true"
+			 :safeAreaInsetTop="true"
+			 bgColor="#ED0000"
+			 :titleStyle="{color:'#fff'}"
+			 leftIconColor="#fff"
+		>
+		</u-navbar>
+		<view class="title">
+			请填写您的报名信息
+		</view>
+		<view class="form-wrap">
+			<u--form labelPosition="left" labelAlign="right" labelWidth="70px" :model="form"  :rules="rules" ref="uForm" >
+				<u-form-item label="姓名" prop="name" required ref="name" >
+					<u--input
+						v-model="form.name"
+						border="none"
+						placeholder="请输入您的真实姓名"
+						:customStyle="inputCustomStyle"
+					></u--input>
+				</u-form-item>
+				<u-form-item label="联系电话" prop="mobile" required ref="mobile" >
+					<u--input
+						v-model="form.mobile"
+						border="none"
+						placeholder="请输入您的联系电话"
+						:customStyle="inputCustomStyle"
+					></u--input>
+				</u-form-item>
+				<u-form-item label="职业" prop="careerName" required ref="careerName" >
+					<u--input
+						v-model="form.careerName"
+						border="none"
+						placeholder="请输入您的职业"
+						:customStyle="inputCustomStyle"
+					></u--input>
+				</u-form-item>
+				<u-form-item label="销售路径 /渠道" prop="saleChannel" required ref="saleChannel" >
+					<u--textarea
+						count 
+						maxlength="200"
+						v-model="form.saleChannel"
+						border="none"
+						placeholder="请描述您的销售剧目的渠道或路径"
+					></u--textarea>
+				</u-form-item>
+			</u--form>
+		</view>
+		<u-button
+			@click="submit"
+			text="确定" 
+			type="primary" 
+			shape="circle" 
+			:customStyle="{'margin':'60rpx 32rpx',height:'98rpx','box-sizing':'border-box',width:'auto'}"
+			color="linear-gradient(90deg, #FF7979 0%, #ED0000 100%)">
+		</u-button>
+	</view>
+</template>
+
+<script>
+	export default {
+		
+		data() {
+			return {
+				backUrl:'',
+				form:{
+					name:'',
+					mobile:'',
+					careerName:'',
+					saleChannel:''
+				},
+				
+				rules: {
+					name: {
+						type: 'string',
+						required: true,
+						message: '请输入姓名',
+						trigger: ['blur', 'change']
+					},
+					mobile: [
+						{
+							type: 'string',
+							required: true,
+							message: '请输入联系电话',
+							trigger: ['blur', 'change']
+						},
+						{
+							// 自定义验证函数,见上说明
+							validator: (rule, value, callback) => {
+								// 上面有说,返回true表示校验通过,返回false表示不通过
+								// uni.$u.test.mobile()就是返回true或者false的
+								return uni.$u.test.mobile(value);
+							},
+							message: '手机号码不正确',
+							// 触发器可以同时用blur和change
+							trigger: ['change','blur'],
+						}
+					],
+					careerName: [
+						{
+							type: 'string',
+							required: true,
+							message: '请输入您的职业',
+							trigger: ['blur', 'change']
+						}
+					],
+					saleChannel: [
+						{
+							type: 'string',
+							required: true,
+							message: '请描述您的销售剧目的渠道或路径',
+							trigger: ['blur', 'change']
+						}
+					],
+				},
+				inputCustomStyle:{
+					background:'#fff',
+					'padding-left':'30rpx',
+					'box-sizing':'border-box',
+				}
+			}
+		},
+		onShow() {
+		},
+		onReady() {
+			this.$refs.uForm.setRules(this.rules)
+		},
+		onLoad(page) {
+			this.backUrl =  decodeURIComponent(page.backUrl)||'/center/center';
+		},
+		methods: {
+			leftClick(){
+				let pages = getCurrentPages();
+				if(pages.length==1){
+					uni.$u.route('/pages/index/index')
+				}else{
+					uni.navigateBack()
+				};
+			},
+			chekPass(){
+				console.log('chekPass---',this.form);
+				return new Promise((resolve, reject)=>{
+					if(!password){
+						 reject('needAuth');
+					}
+				})
+			},
+			async submit(){
+				let that = this;
+				// console.log('form',this.form);
+				this.$refs.uForm.validate().then(res => {
+					// let chekPassResult = await this.chekPass();
+					// return
+					// uni.$u.toast('校验通过')
+					this.$u.api.applyshare(this.form).then(res=>{
+						// console.log('res',res.data);
+						uni.showToast({
+							title:res.msg,
+							icon:'success'
+						})
+						setTimeout(()=>{
+							uni.$u.route('/center/applysharesuccess')
+							// that.leftClick();
+						},2000)
+						// uni.reLaunch({url: this.backUrl});
+					}).catch(err=>{
+						console.log('login',err);
+					})
+				}).catch(errors => {
+					uni.$u.toast('请正确填写表单')
+				})
+			},
+		}
+	}
+</script>
+<style>
+page{
+	background-color: #F4F5F7;
+}
+</style>
+<style lang="scss" scoped>
+.title{
+	font-size: 28rpx;
+	font-weight: 400;
+	color: #363636;
+	line-height: 42rpx;
+	margin: 44rpx 32rpx 0;
+}
+.form-wrap{
+	margin: 30rpx 32rpx 40rpx;
+	padding: 0 40rpx 20rpx;
+	/deep/ .u-input__content__field-wrapper__field{
+		height: 68rpx;
+	}
+}
+</style>

+ 63 - 0
center/applysharesuccess.vue

@@ -0,0 +1,63 @@
+<template>
+	<view class="pages">
+		<view class="icon-wrap u-flex u-row-center">
+			<u-icon name="checkmark" color="#fff" size="80"></u-icon>
+		</view>
+		<view class="title">{{title}}</view>
+		<view class="full-btn" @click="btnClick">完成</view>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				fromPage:'',
+				title:'提交成功,请耐心等待审核'
+			}
+		},
+		onShow() {		
+		},
+		onLoad(page) {
+			this.fromPage = page.fromPage;
+			if(this.fromPage=='nocash'){
+				this.title = '兑换成功'
+			}
+		},
+		methods: {
+			btnClick(){
+				uni.reLaunch({url: '/center/center'});
+			}
+		}
+	}
+</script>
+<style>
+	page{
+		background-color: #F5F5F5;
+		padding-top: 10vh;
+	}
+</style>
+<style lang="scss" scoped>
+.pages{
+	text-align: center;
+}
+
+.icon-wrap{
+	width: 180rpx;
+	height: 180rpx;
+	margin: 120rpx auto 20rpx;
+	padding: 20rpx;
+	background-color: #F01414;
+	border-radius: 50%;
+}
+.title{
+	font-size: 32rpx;
+	font-weight: 600;
+	color: #333333;
+	line-height: 40rpx;
+	margin-bottom: 120rpx;
+}
+.full-btn{
+	margin: 20rpx 10%;
+}
+</style>

+ 8 - 7
center/center.vue

@@ -80,6 +80,7 @@
 					// {name:'开具发票',url:'center/invoice',ico:this.$commonConfig.staticUrl+'/img/center-ticket.png',checkauth:true},
 					{name:'我的订单',url:'center/order',ico:this.$commonConfig.staticUrl+'/img/center-order.png',checkauth:true},
 					{name:'客服热线',url:'',ico:this.$commonConfig.staticUrl+'/img/center-call.png',checkauth:true,phone:''},
+					{name:'全民分享',url:'/center/applyshare',ico:this.$commonConfig.staticUrl+'/img/center-share.png',checkauth:true},
 					// {name:'在线客服',chat:'1',ico:this.$commonConfig.staticUrl+'/img/center-call.png'},
 				]
 			}
@@ -119,13 +120,13 @@
 				let that = this;
 				console.log('item',item);
 				
-				if(item.name!=='在线客服'&&item.name!=='客服热线'&&item.name!=='实名认证'&&item.name!=='我的订单'){
-					uni.showToast({
-						title:'开发中',
-						icon:"none"
-					})
-					return
-				}
+				// if(item.name!=='在线客服'&&item.name!=='客服热线'&&item.name!=='实名认证'&&item.name!=='我的订单'){
+				// 	uni.showToast({
+				// 		title:'开发中',
+				// 		icon:"none"
+				// 	})
+				// 	return
+				// }
 				
 				if ('phone' in item) {
 					if(!item.phone){

+ 5 - 0
common/apiurl.js

@@ -182,6 +182,11 @@ const apiurl = {
 		url: '/system/wxTemplateInfo/templateList',
 		type: 'get'
 	},
+	// 申请分销
+	applyshare: {
+		url: '/member/marketPersons/apply',
+		type: 'post'
+	},
 	
 	
 	/**

+ 14 - 0
pages.json

@@ -172,6 +172,20 @@
 						"navigationBarTitleText": "查看退款",
 						"navigationStyle": "custom"
 					}
+				},
+				{
+					"path": "applyshare",
+					"style": {
+						"navigationBarTitleText": "全民分享",
+						"navigationStyle": "custom"
+					}
+				},
+				{
+					"path": "applysharesuccess",
+					"style": {
+						"navigationBarTitleText": "全民分享",
+						"navigationStyle": "custom"
+					}
 				}
 			]
 		}