Fly 19 horas atrás
pai
commit
bd8c23d399
1 arquivos alterados com 22 adições e 0 exclusões
  1. 22 0
      pages/map/matterDetails.vue

+ 22 - 0
pages/map/matterDetails.vue

@@ -22,6 +22,9 @@
 				<view class="matter-val">{{info.processingDays}}天(工作日)</view>
 			</view>
 		</template>
+		<view class="distance-btn" @click.stop="goTransact()">
+			<text>去办理</text>
+		</view>
 	</view>
 </template>
 
@@ -62,6 +65,11 @@
 					title: data.name
 				});
 			})
+		},
+		methods:{
+			goTransact(){
+				window.location = 'https://wsgaj.chutianyun.gov.cn/weixin/#/'
+			}
 		}
 	}
 </script>
@@ -113,4 +121,18 @@
 	::v-deep audio {
 		max-width: 100%;
 	}
+
+	.distance-btn {
+		margin: 50rpx auto 0;
+		width: 150rpx;
+		height: 60rpx;
+		border-radius: 10rpx;
+		background-color: #61A8FF;
+		display: flex;
+		justify-content: center;
+		align-items: center; 
+		font-size: 22rpx;
+		font-weight: 700;
+		color: #ffffff;
+	}
 </style>