代码优化
This commit is contained in:
parent
1fecf2d98e
commit
895fb62b6c
|
|
@ -44,6 +44,7 @@ declare module 'vue' {
|
|||
ElSteps: typeof import('element-plus/es')['ElSteps']
|
||||
ElTable: typeof import('element-plus/es')['ElTable']
|
||||
ElTableColumn: typeof import('element-plus/es')['ElTableColumn']
|
||||
ElTag: typeof import('element-plus/es')['ElTag']
|
||||
ElUpload: typeof import('element-plus/es')['ElUpload']
|
||||
EquipCard: typeof import('./src/components/equipCard.vue')['default']
|
||||
EquipCardHall: typeof import('./src/components/equipCardHall/index.vue')['default']
|
||||
|
|
|
|||
|
|
@ -33,21 +33,42 @@
|
|||
</div>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row class="item">
|
||||
<!-- <el-row class="item">
|
||||
<el-col :span="5">
|
||||
<div class="label">需求清单:</div>
|
||||
</el-col>
|
||||
<el-col :span="18">
|
||||
<div class="img-list">
|
||||
<div v-for="item in leaseDetails.fileInfoList" :key="item.id">
|
||||
<img :src="item.fileUrl" alt="" />
|
||||
|
||||
<el-image
|
||||
style="width: 100%; height: 240px"
|
||||
:src="item.fileUrl"
|
||||
fit="cover"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</el-col>
|
||||
</el-row> -->
|
||||
|
||||
<div class="label" style="padding: 10px 0; font-size: 16px">需求清单:</div>
|
||||
<el-row>
|
||||
<el-col
|
||||
:span="12"
|
||||
v-for="item in leaseDetails.fileInfoList"
|
||||
:key="item.id"
|
||||
>
|
||||
<!-- <img :src="img.fileUrl" alt="" style="width: 98%; height: 120px" /> -->
|
||||
<el-image
|
||||
style="width: 98%; height: 240px"
|
||||
:src="item.fileUrl"
|
||||
fit="cover"
|
||||
/>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</div>
|
||||
|
||||
<el-row style="padding: 8px 0; font-size: 16px"> 装备需求信息 </el-row>
|
||||
<el-row style="padding: 8px 0; font-size: 16px"> 装备需求信息: </el-row>
|
||||
<div
|
||||
class="demand-info-list"
|
||||
v-for="item in leaseDetails.detailsList"
|
||||
|
|
@ -71,7 +92,12 @@
|
|||
<div class="label" style="padding: 10px 0">参考图片/样式:</div>
|
||||
<el-row>
|
||||
<el-col :span="12" v-for="img in item.fileInfoList" :key="img.id">
|
||||
<img :src="img.fileUrl" alt="" style="width: 98%; height: 120px" />
|
||||
<!-- <img :src="img.fileUrl" alt="" style="width: 98%; height: 120px" /> -->
|
||||
<el-image
|
||||
style="width: 98%; height: 240px"
|
||||
:src="img.fileUrl"
|
||||
fit="cover"
|
||||
/>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</div>
|
||||
|
|
@ -596,17 +622,17 @@ onMounted(() => {
|
|||
flex-wrap: wrap;
|
||||
div {
|
||||
width: calc((100% - 15px) / 2);
|
||||
height: 120px;
|
||||
height: 240px;
|
||||
margin: 0 15px 15px 0;
|
||||
|
||||
&:nth-child(2n) {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
// img {
|
||||
// width: 100%;
|
||||
// height: 100%;
|
||||
// }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -188,7 +188,11 @@
|
|||
:disabled="
|
||||
userId == item.publishUser || companyId == item.publishCompany
|
||||
"
|
||||
:style="userId == item.publishUser ? 'opacity:0.5;color:#fff' : ''"
|
||||
:style="
|
||||
userId == item.publishUser || companyId == item.publishCompany
|
||||
? 'opacity:0.5;color:#fff'
|
||||
: ''
|
||||
"
|
||||
@click="onAcceptOrders(item.id)"
|
||||
>
|
||||
接单
|
||||
|
|
|
|||
Loading…
Reference in New Issue