|
@@ -9,7 +9,10 @@
|
|
|
</view>
|
|
|
<!-- 定位 -->
|
|
|
<view class="module-con">
|
|
|
- <text class="info-tit">当前位置:</text>
|
|
|
+ <view class="info-tit">
|
|
|
+ <text class="require-tip"></text>
|
|
|
+ 当前位置:
|
|
|
+ </view>
|
|
|
<view class="info-main" @click="getLocation">
|
|
|
<text class="location-addr">{{ location }}</text>
|
|
|
<u-icon name="map" color="#2979ff" size="34" class="location-icon"></u-icon>
|
|
@@ -17,7 +20,10 @@
|
|
|
</view>
|
|
|
<!-- 拍照签到 -->
|
|
|
<view class="module-con">
|
|
|
- <text class="info-tit">拍照签到:</text>
|
|
|
+ <view class="info-tit">
|
|
|
+ <text class="require-tip"></text>
|
|
|
+ 拍照签到:
|
|
|
+ </view>
|
|
|
<view class="info-main">
|
|
|
<view class="photograph-con" @click="photograph ? null : goPhotograph()">
|
|
|
<u-icon v-show="photograph" name="close-circle-fill" color="#fa3534" size="50" class="close-circle-icon" @click="cancelPhotograph"></u-icon>
|
|
@@ -179,6 +185,16 @@ page {
|
|
|
background-color: #f8f8f8;
|
|
|
.module-con {
|
|
|
padding: 0 30upx 20upx;
|
|
|
+ .info-tit{
|
|
|
+ .require-tip::before{
|
|
|
+ content: '*';
|
|
|
+ color: #F56C6C;
|
|
|
+ width: 30upx;
|
|
|
+ height: 30upx;
|
|
|
+ display: inline-block;
|
|
|
+ vertical-align: middle;
|
|
|
+ }
|
|
|
+ }
|
|
|
.info-main {
|
|
|
margin-top: 14upx;
|
|
|
padding: 20upx;
|
|
@@ -186,7 +202,7 @@ page {
|
|
|
background-color: #fff;
|
|
|
.location-icon {
|
|
|
padding-left: 10upx;
|
|
|
- vertical-align: bottom;
|
|
|
+ vertical-align: sub;
|
|
|
}
|
|
|
.photograph-con {
|
|
|
border: 2upx dashed #bfbfbf;
|