Merge branch 'main' of http://175.6.124.250:3100/luozhun/policeSecurity
This commit is contained in:
commit
76b1105337
|
@ -15,15 +15,15 @@
|
|||
</view>
|
||||
<view class="itemSchool">
|
||||
<text>服务项目</text>
|
||||
<text> 13123 </text>
|
||||
<text> 1 </text>
|
||||
</view>
|
||||
<view class="itemSchool">
|
||||
<text>有保安证人员</text>
|
||||
<text> 1000</text>
|
||||
<text> 6</text>
|
||||
</view>
|
||||
<view class="itemSchool">
|
||||
<text>无保安证人员</text>
|
||||
<text> 140</text>
|
||||
<text> 3</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="swiperDemoItem">
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
|
||||
.projectDetailsTableDrop {
|
||||
height: 80%;
|
||||
|
||||
.projectDetailsTable {
|
||||
margin: 20px;
|
||||
border-radius: 10px;
|
||||
|
@ -58,7 +57,13 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
.placeholder{
|
||||
height: 180px;
|
||||
}
|
||||
}
|
||||
//.projectDetailsTable:last-child {
|
||||
// padding-bottom: 180px;
|
||||
//}
|
||||
|
||||
.projectDetailsButton {
|
||||
position: fixed;
|
||||
|
|
|
@ -77,8 +77,8 @@
|
|||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<view class="placeholder"></view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
<view class="projectDetailsButton">
|
||||
|
|
|
@ -167,12 +167,12 @@ useLoad((options) => {
|
|||
}
|
||||
} else {
|
||||
const form = JSON.parse(options.securityUser)
|
||||
educationLevelValue.value = form.educationLevel.label
|
||||
educationLevelValue.value = form.educationLevel?.label
|
||||
formData.value = Object.assign({}, form, {
|
||||
idCard: form.idCard.originalValue,
|
||||
telephone: form.telephone.originalValue,
|
||||
photo: form.photo,
|
||||
educationLevel: form.educationLevel.value
|
||||
educationLevel: form.educationLevel?.value
|
||||
})
|
||||
}
|
||||
})
|
||||
|
|
|
@ -25,7 +25,8 @@ public class MinioPrefixSerializer implements ObjectWriter<String> {
|
|||
public void write(JSONWriter jsonWriter, Object object, Object fieldName, Type fieldType, long features) {
|
||||
if (object instanceof String path && StrUtil.isNotEmpty(path)) {
|
||||
jsonWriter.writeString(minioPrefix + object);
|
||||
} else {
|
||||
jsonWriter.writeString("");
|
||||
}
|
||||
jsonWriter.writeNull();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue