feat: 地理定位

This commit is contained in:
eric
2022-11-20 20:42:55 +08:00
parent a4d4569c51
commit 9045642740
4 changed files with 24 additions and 7 deletions

View File

@@ -89,7 +89,7 @@ const Certified = () => {
<View className="checkItem">
<Checkbox value={value} onChange={(e: any) => setValue(e.detail)}>
{`已阅读并同意<<腾讯云E证通服务使用协议>>和<<eID数字身份小程序服务协议>>`}
{`已阅读并同意<腾讯云E证通服务使用协议>和<eID数字身份小程序服务协议>`}
</Checkbox>
</View>
</Form>

View File

@@ -1,3 +1,5 @@
.CheckIn{
padding: 20px;
padding-bottom: 200px;
// margin-bottom: 100px;
}

View File

@@ -8,6 +8,8 @@ import {
FormItem,
Icon,
Toast,
Cell,
Tag,
} from "@antmjs/vantui";
import { Input, View } from "@tarojs/components";
import Taro from "@tarojs/taro";
@@ -102,7 +104,7 @@ const CheckIn = () => {
>
{/* 图片 */}
<View>
<Image width="100%" height="500px" fit="cover" src={fileID} />
<Image width="100%" height="300px" fit="cover" src={fileID} />
</View>
{/* 留言 */}
@@ -121,6 +123,19 @@ const CheckIn = () => {
/>
</FormItem>
<View>
<Cell
value=""
icon="location"
isLink
renderTitle={
<View>
<View className="title"></View>
</View>
}
/>
</View>
{/* 文件上传 */}
{/* <Uploader
fileList={value}
@@ -157,7 +172,7 @@ const CheckIn = () => {
// 返回首页 [上一页]
Taro.navigateBack({
// url: "/pages/home/index",
delta: 1
delta: 1,
});
}, 2000);
});