jwyu 3 years ago
parent
commit
aa10233efd

+ 2 - 2
pages-approve/seal/addSeal.vue

@@ -104,7 +104,7 @@
 		</van-popup>
 		<!-- 何种印章 -->
 		<van-popup :show="showType" @close="showType=false" position="bottom">
-			<view class="type-popup-wrap" catchtap="preventdefault">
+			<view class="type-popup-wrap">
 				<view class="flex top-title">
 					<text style="color:#969799" @click="showType=false">取消</text>
 					<text style="font-size:16px">选择何种印章</text>
@@ -473,7 +473,7 @@
 
 	.type-popup-wrap{
 		padding: 20rpx 32rpx;
-		height: 250px;
+		height: 280px;
 		.top-title{
 			justify-content: space-between;
 			margin-bottom: 124rpx;

+ 3 - 2
pages-approve/seal/detail.vue

@@ -109,7 +109,7 @@
 		</van-popup>
 		<!-- 何种印章 -->
 		<van-popup :show="showType" @close="showType=false" position="bottom">
-			<view class="type-popup-wrap" catchtap="preventdefault">
+			<view class="type-popup-wrap">
 				<view class="flex top-title">
 					<text style="color:#969799" @click="showType=false">取消</text>
 					<text style="font-size:16px">选择何种印章</text>
@@ -718,6 +718,7 @@
 
 			//合同章5  公章、法人章 6
 			async getProcessData(){
+				if(this.newSealType.length===0) return
 				let id=0
 				if (this.newSealType.includes("公章") || this.newSealType.includes("法人章")) {
 					id = 6;
@@ -975,7 +976,7 @@
 
 	.type-popup-wrap{
 		padding: 20rpx 32rpx;
-		height: 250px;
+		height: 280px;
 		.top-title{
 			justify-content: space-between;
 			margin-bottom: 124rpx;

+ 2 - 2
pages-approve/seal/edit.vue

@@ -99,7 +99,7 @@
 		</van-popup>
 		<!-- 何种印章 -->
 		<van-popup :show="showType" @close="showType=false" position="bottom">
-			<view class="type-popup-wrap" catchtap="preventdefault">
+			<view class="type-popup-wrap">
 				<view class="flex top-title">
 					<text style="color:#969799" @click="showType=false">取消</text>
 					<text style="font-size:16px">选择何种印章</text>
@@ -505,7 +505,7 @@
 
 	.type-popup-wrap{
 		padding: 20rpx 32rpx;
-		height: 250px;
+		height: 280px;
 		.top-title{
 			justify-content: space-between;
 			margin-bottom: 124rpx;

+ 1 - 0
pages-approve/seal/mixin.js

@@ -181,6 +181,7 @@ export const sealMixin = {
 
         //合同章5  公章、法人章 6
         async getProcessData() {
+            if(this.type.length===0) return
             let id = 0;
             if (this.type.includes("公章") || this.type.includes("法人章")) {
                 id = 6;