Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
d10acd386e
|
@ -15,15 +15,15 @@
|
||||||
</view>
|
</view>
|
||||||
<view class="itemSchool">
|
<view class="itemSchool">
|
||||||
<text>服务项目</text>
|
<text>服务项目</text>
|
||||||
<text> 13123 </text>
|
<text> 1 </text>
|
||||||
</view>
|
</view>
|
||||||
<view class="itemSchool">
|
<view class="itemSchool">
|
||||||
<text>有保安证人员</text>
|
<text>有保安证人员</text>
|
||||||
<text> 1000</text>
|
<text> 6</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="itemSchool">
|
<view class="itemSchool">
|
||||||
<text>无保安证人员</text>
|
<text>无保安证人员</text>
|
||||||
<text> 140</text>
|
<text> 3</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="swiperDemoItem">
|
<view class="swiperDemoItem">
|
||||||
|
|
|
@ -28,7 +28,6 @@
|
||||||
|
|
||||||
.projectDetailsTableDrop {
|
.projectDetailsTableDrop {
|
||||||
height: 80%;
|
height: 80%;
|
||||||
|
|
||||||
.projectDetailsTable {
|
.projectDetailsTable {
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
|
@ -58,7 +57,13 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.placeholder{
|
||||||
|
height: 180px;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
//.projectDetailsTable:last-child {
|
||||||
|
// padding-bottom: 180px;
|
||||||
|
//}
|
||||||
|
|
||||||
.projectDetailsButton {
|
.projectDetailsButton {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
|
|
|
@ -77,8 +77,8 @@
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
|
<view class="placeholder"></view>
|
||||||
</scroll-view>
|
</scroll-view>
|
||||||
</view>
|
</view>
|
||||||
<view class="projectDetailsButton">
|
<view class="projectDetailsButton">
|
||||||
|
|
|
@ -167,12 +167,12 @@ useLoad((options) => {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
const form = JSON.parse(options.securityUser)
|
const form = JSON.parse(options.securityUser)
|
||||||
educationLevelValue.value = form.educationLevel.label
|
educationLevelValue.value = form.educationLevel?.label
|
||||||
formData.value = Object.assign({}, form, {
|
formData.value = Object.assign({}, form, {
|
||||||
idCard: form.idCard.originalValue,
|
idCard: form.idCard.originalValue,
|
||||||
telephone: form.telephone.originalValue,
|
telephone: form.telephone.originalValue,
|
||||||
photo: form.photo,
|
photo: form.photo,
|
||||||
educationLevel: form.educationLevel.value
|
educationLevel: form.educationLevel?.value
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
@ -218,7 +218,6 @@ const clearForm = () => {
|
||||||
_formParams.homeAddress = ''
|
_formParams.homeAddress = ''
|
||||||
_formParams.remark = ''
|
_formParams.remark = ''
|
||||||
_formParams.educationLevel = ''
|
_formParams.educationLevel = ''
|
||||||
|
|
||||||
}
|
}
|
||||||
export const showEnterprisesUnit = (record_) => {
|
export const showEnterprisesUnit = (record_) => {
|
||||||
// console.log('🚀 ~ showEnterprisesUnit ~ record_:', record_)
|
// console.log('🚀 ~ showEnterprisesUnit ~ record_:', record_)
|
||||||
|
@ -346,20 +345,6 @@ export const showEnterprisesUnit = (record_) => {
|
||||||
size='small'
|
size='small'
|
||||||
columns={_columns}
|
columns={_columns}
|
||||||
requestApi={_reqApi}
|
requestApi={_reqApi}
|
||||||
// searchFormOptions={{
|
|
||||||
// name: {
|
|
||||||
// type: 'input',
|
|
||||||
// label: '姓名',
|
|
||||||
// },
|
|
||||||
// securityNumber: {
|
|
||||||
// type: 'input',
|
|
||||||
// label: '保安证号',
|
|
||||||
// },
|
|
||||||
// telephone: {
|
|
||||||
// type: 'input',
|
|
||||||
// label: '手机号',
|
|
||||||
// },
|
|
||||||
// }}
|
|
||||||
v-slots={
|
v-slots={
|
||||||
{
|
{
|
||||||
tableHeader: (_) => {
|
tableHeader: (_) => {
|
||||||
|
|
Loading…
Reference in New Issue