Browse Source

完成发票申请、申请开票页面设计

LinWuTai 2 months ago
parent
commit
ce54fb79ba

+ 23 - 1
pages.json

@@ -180,7 +180,29 @@
 			"path" : "pages/InvoiceApplication/InvoiceApplication",
 			"style" : 
 			{
-				"navigationBarTitleText" : "申请发票",
+				"navigationBarTitleText" : "发票申请",
+				"enablePullDownRefresh": false,
+				"app-plus": {
+					"titleNView": false
+				}
+			}
+		},
+		{
+			"path" : "pages/applyForBilling/applyForBilling",
+			"style" : 
+			{
+				"navigationBarTitleText" : "申请开票",
+				"enablePullDownRefresh": false,
+				"app-plus": {
+					"titleNView": false
+				}
+			}
+		},
+		{
+			"path" : "pages/invoiceResult/invoiceResult",
+			"style" : 
+			{
+				"navigationBarTitleText" : "已提交开票申请",
 				"enablePullDownRefresh": false,
 				"app-plus": {
 					"titleNView": false

+ 14 - 2
pages/InvoiceApplication/InvoiceApplication.vue

@@ -162,7 +162,7 @@
 					</view>
 				</view>
 				<view class="button-box">
-					<u-button :disabled="priceInfo.count === 0" class="button" type="error" shape="circle" size="mini" :custom-style="customButtonStyle">申请开票</u-button>
+					<u-button :disabled="priceInfo.count === 0" class="button" type="error" shape="circle" size="mini" :custom-style="customButtonStyle" @click="onApplyForBilling()">申请开票</u-button>
 				</view>
 			</view>
 			<view class="menu-box">
@@ -218,6 +218,7 @@
 		keyword: '',
 		type: 0
 	})
+	function onSearchTypeChange(val) {}
 	// 点击选中
 	function onListItemClick(val, index) {
 		list.value[index].checked = !list.value[index].checked
@@ -231,14 +232,22 @@
 			item.checked = val.value
 		})
 	}
+	// 申请开票
+	function onApplyForBilling() {
+		uni.navigateTo({
+			url: `/pages/applyForBilling/applyForBilling?ids=${priceInfo.value.ids}&price=${priceInfo.value.price}`
+		})
+	}
 	const priceInfo = computed(() => {
 		const selectList = list.value.filter(item => item.checked)
 		const sum = selectList.reduce((total, currentValue) => {
 			return total + Number(currentValue.price);
 		}, 0)
+		const selectIds = selectList.map(item => item.id)
 		return {
 			count: selectList.length,
-			price: sum.toFixed(2)
+			price: sum.toFixed(2),
+			ids: selectIds
 		}
 	})
 	
@@ -455,6 +464,9 @@
 				background-color: #F2F2F2;
 				border-radius: $uni-card-border-radius;
 				margin-bottom: 50rpx;
+				&:active {
+					background-color: #dddddd;
+				}
 				.main-box {
 					display: flex;
 					.info-box {

+ 343 - 0
pages/applyForBilling/applyForBilling.vue

@@ -0,0 +1,343 @@
+<template>
+	<view class="container">
+		<view class="card-box">
+			<view class="card-item-box">
+				<view class="required"></view>
+				<view class="label">
+					开票金额
+				</view>
+				<view class="text">
+					¥{{ formData.form.price }}元
+				</view>
+			</view>
+		</view>
+		<u-form :model="formData.form" ref="formRef">
+			<view class="card-box">
+				<view class="card-item-box">
+					<view class="required">*</view>
+					<view class="label">
+						发票类型
+					</view>
+					<view class="text">
+						<u-form-item prop="type">
+							<u-radio-group v-model="formData.form.type">
+								<u-radio
+									@change="onTypeChange" 
+									v-for="(item, index) in typeList" :key="index" 
+									:name="item.name"
+									icon-size="26"
+									label-size="26"
+								>
+									{{item.name}}
+								</u-radio>
+							</u-radio-group>
+						</u-form-item>
+					</view>
+				</view>
+				<view class="card-item-box">
+					<view class="required">*</view>
+					<view class="label">
+						抬头类型
+					</view>
+					<view class="text">
+						<u-form-item prop="titleType">
+							<u-radio-group v-model="formData.form.titleType">
+								<u-radio
+									@change="onTitleTypeChange" 
+									v-for="(item, index) in titleTypeList" :key="index" 
+									:name="item.name"
+									icon-size="26"
+									label-size="26"
+								>
+									{{item.name}}
+								</u-radio>
+							</u-radio-group>
+						</u-form-item>
+					</view>
+				</view>
+				<view class="card-item-box">
+					<view class="required">*</view>
+					<view class="label">
+						抬头名称
+					</view>
+					<view class="text">
+						<u-form-item prop="titleName">
+							<u-input v-model="formData.form.titleName" type="text" :border="false" placeholder=""/>
+						</u-form-item>
+					</view>
+				</view>
+				<view class="card-item-box">
+					<view class="required">{{formData.form.titleType === '企业单位' ? '*' : ''}}</view>
+					<view class="label">
+						纳税人识别号
+					</view>
+					<view class="text">
+						<u-form-item prop="number">
+							<u-input v-model="formData.form.number" type="text" :border="false" placeholder=""/>
+						</u-form-item>
+					</view>
+				</view>
+				<view class="card-item-box">
+					<view class="required">*</view>
+					<view class="label">
+						收票人邮箱
+					</view>
+					<view class="text">
+						<u-form-item prop="email">
+							<u-input v-model="formData.form.email" type="text" :border="false" placeholder=""/>
+						</u-form-item>
+					</view>
+				</view>
+				<view class="card-item-box">
+					<view class="required">*</view>
+					<view class="label">
+						手机号码
+					</view>
+					<view class="text">
+						<u-form-item prop="tel">
+							<u-input v-model="formData.form.tel" type="text" :border="false" placeholder=""/>
+						</u-form-item>
+					</view>
+				</view>
+				<view class="card-item-box" v-if="showMore">
+					<view class="required"></view>
+					<view class="label">
+						地址
+					</view>
+					<view class="text">
+						<u-form-item prop="address">
+							<u-input v-model="formData.form.address" type="text" :border="false" placeholder=""/>
+						</u-form-item>
+					</view>
+				</view>
+				<view class="card-item-box" v-if="showMore">
+					<view class="required"></view>
+					<view class="label">
+						开户银行
+					</view>
+					<view class="text">
+						<u-form-item prop="bank">
+							<u-input v-model="formData.form.bank" type="text" :border="false" placeholder=""/>
+						</u-form-item>
+					</view>
+				</view>
+				<view class="card-item-box" v-if="showMore">
+					<view class="required"></view>
+					<view class="label">
+						银行账号
+					</view>
+					<view class="text">
+						<u-form-item prop="bankAccount">
+							<u-input v-model="formData.form.bankAccount" type="text" :border="false" placeholder=""/>
+						</u-form-item>
+					</view>
+				</view>
+				<view class="card-item-box" v-if="showMore">
+					<view class="required"></view>
+					<view class="label">
+						备注说明
+					</view>
+					<view class="text">
+						<u-form-item prop="remark">
+							<u-input v-model="formData.form.remark" type="text" :border="false" placeholder=""/>
+						</u-form-item>
+					</view>
+				</view>
+				<view class="card-item-box func" @click="showMore = !showMore">
+					<view class="text">
+						{{ showMore ? '收起' : '展开' }}选项信息 <span class="iconfont icon-chevron-up" :class="{'reversal': !showMore}"></span>
+					</view>
+				</view>
+			</view>
+			<view class="bottom-box">
+				<u-button type="error" shape="circle" @click="onSubmit">提交申请</u-button>
+			</view>
+		</u-form>
+	</view>
+</template>
+
+<script setup>
+	import { ref, reactive } from 'vue'
+	import { onReady, onLoad } from '@dcloudio/uni-app'
+	
+	const showMore = ref(false)
+	
+	const formRef = ref()
+	const formData = reactive({
+		form: {
+			orderIds: null, // 订单Id
+			price: '0.00', // 开票金额
+			type: '全电专票', // 发票类型
+			titleType: '企业单位', // 抬头类型
+			titleName: null, // 抬头名称
+			number: null, // 纳税人识别号
+			email: null, // 收票人邮箱
+			tel: null, // 手机号码
+			address: null, // 地址
+			bank: null, // 开户银行
+			bankAccount: null, // 银行账号
+			remark: null // 备注说明
+		},
+		rules: {
+			type: [
+				{ 
+					required: true, 
+					message: '请选择发票类型', 
+					// 可以单个或者同时写两个触发验证方式 
+					trigger: ['change','blur'],
+				}
+			],
+			titleType: [
+				{ 
+					required: true, 
+					message: '请选择抬头类型', 
+					// 可以单个或者同时写两个触发验证方式 
+					trigger: ['change','blur'],
+				}
+			],
+			titleName: [
+				{ 
+					required: true, 
+					message: '请输入抬头名称', 
+					// 可以单个或者同时写两个触发验证方式 
+					trigger: 'blur',
+				}
+			],
+			number: [
+				{ 
+					required: true, 
+					message: '请输入纳税人识别号', 
+					// 可以单个或者同时写两个触发验证方式 
+					trigger: 'blur',
+				}
+			],
+			email: [
+				{ 
+					required: true, 
+					message: '请输入收票人邮箱', 
+					// 可以单个或者同时写两个触发验证方式 
+					trigger: 'blur',
+				}
+			],
+			tel: [
+				{ 
+					required: true, 
+					message: '请输入手机号码', 
+					// 可以单个或者同时写两个触发验证方式 
+					trigger: 'blur',
+				}
+			],
+		}
+	})
+	const typeList = ref([
+		{
+			name: '全电专票'
+		},
+		{
+			name: '全店普票'
+		}
+	])
+	const titleTypeList = ref([
+		{
+			name: '企业单位'
+		},
+		{
+			name: '个人/非企业单位'
+		}
+	])
+	function onTypeChange(val) {}
+	function onTitleTypeChange(val) {
+		if (val !== '企业单位') {
+			formData.rules.number[0].required = false
+		} else {
+			formData.rules.number[0].required = true
+		}
+	}
+	function onSubmit() {
+		formRef.value.validate((valid) => {
+			if (valid) {
+				uni.redirectTo({
+					url: '/pages/invoiceResult/invoiceResult'
+				})
+			}
+		})
+	}
+	
+	onReady(() => {
+		formRef.value.setRules(formData.rules)
+	})
+	onLoad((load) => {
+		formData.form.orderIds = load.ids
+		formData.form.price = load.price
+		
+		console.log('form', formData.form)
+	})
+</script>
+
+<style lang="scss" scoped>
+	.container {
+		height: 100vh;
+		width: 100vw;
+		background-color: $uni-bg-color;
+		padding: 0 20rpx;
+		position: relative;
+		
+		.card-box {
+			padding: 0 20rpx;
+			background-color: $uni-text-color-inverse;
+			border-radius: $uni-card-border-radius;
+			margin-bottom: 20rpx;
+			// &:first-child {
+			// 	.card-item-box {
+			// 		padding: 0;
+			// 	}
+			// }
+			.card-item-box {
+				display: flex;
+				align-items: center;
+				// padding: 20rpx 0;
+				font-size: $uni-title-font-size-2;
+				border-bottom: 1rpx solid #E6E6E6;
+				height: 82rpx;
+				&:last-child {
+					border-bottom: none;
+				}
+				.required {
+					width: 3%;
+					color: $uni-color-error;
+					font-weight: bold;
+				}
+				.label {
+					width: 27%;
+					font-weight: bold;
+				}
+				.text {
+					width: 70%;
+					::v-deep .u-form-item {
+						padding: 0 !important;
+						line-height: 0;
+						font-size: $uni-title-font-size-2;
+					}
+				}
+			}
+			.func {
+				justify-content: center;
+				text-align: center;
+				color: $uni-text-color-grey;
+				
+				.reversal {
+					display: inline-block;
+					transform: rotate(180deg);
+				}
+			}
+		}
+	
+		.bottom-box {
+			padding: 20rpx;
+			
+			position: absolute;
+			bottom: 50rpx;
+			width: 95%;
+		}
+	}
+</style>

+ 23 - 0
pages/invoiceResult/invoiceResult.vue

@@ -0,0 +1,23 @@
+<template>
+	<view class="container">
+		模板
+	</view>
+</template>
+
+<script setup>
+	import { ref } from 'vue'
+	import { onLoad } from '@dcloudio/uni-app'
+	
+	onLoad(() => {
+		console.log('onLoad')
+	})
+</script>
+
+<style lang="scss" scoped>
+	.container {
+		height: 100vh;
+		width: 100vw;
+		background-color: $uni-bg-color;
+		padding: 0 20rpx;
+	}
+</style>

+ 7 - 3
static/fonts/iconfont.css

@@ -1,8 +1,8 @@
 @font-face {
   font-family: "iconfont"; /* Project id 4808041 */
-  src: url('./static/fonts/iconfont.woff2?t=1736842223255') format('woff2'),
-       url('./static/fonts/iconfont.woff?t=1736842223255') format('woff'),
-       url('./static/fonts/iconfont.ttf?t=1736842223255') format('truetype');
+  src: url('./static/fonts/iconfont.woff2?t=1736919796435') format('woff2'),
+       url('./static/fonts/iconfont.woff?t=1736919796435') format('woff'),
+       url('./static/fonts/iconfont.ttf?t=1736919796435') format('truetype');
 }
 
 .iconfont {
@@ -13,6 +13,10 @@
   -moz-osx-font-smoothing: grayscale;
 }
 
+.icon-chevron-up:before {
+  content: "\e7f0";
+}
+
 .icon-kaipiao:before {
   content: "\e637";
 }

File diff suppressed because it is too large
+ 0 - 0
static/fonts/iconfont.js


+ 7 - 0
static/fonts/iconfont.json

@@ -6,6 +6,13 @@
   "description": "",
   "glyphs": [
     {
+      "icon_id": "42800185",
+      "name": "chevron-up",
+      "font_class": "chevron-up",
+      "unicode": "e7f0",
+      "unicode_decimal": 59376
+    },
+    {
       "icon_id": "35742739",
       "name": "开票",
       "font_class": "kaipiao",

BIN
static/fonts/iconfont.ttf


BIN
static/fonts/iconfont.woff


BIN
static/fonts/iconfont.woff2


Some files were not shown because too many files changed in this diff