修改车辆管理,接口字段还没有对完

This commit is contained in:
moleier 2024-04-23 18:23:05 +08:00
parent d85e0e77c6
commit 570432c388
2 changed files with 17 additions and 1 deletions

View File

@ -539,7 +539,9 @@ export default {
var that = this
console.log(e)
var params = e.detail.value
params.projectSn = this.projectDetail.projectSn
params.projectSn = this.projectDetail.projectSn;
params.entryAndExitPermit = this.form.entryAndExitPermit;
if (this.selectIndex == null) {
uni.showToast({

View File

@ -110,6 +110,10 @@
<text class="label">固定/临时车辆</text>
<text class="value">{{ item.carModuleType == "1" ? "固定" : "临时" }}</text>
</view>
<view class="alarmItem" v-if="type !== 'supplier'" style="width: 100%;">
<text class="label">企业名称</text>
<text class="value">{{ item.enterpriseName }}</text>
</view>
<view class="alarmItem">
<text class="label">车辆图片</text>
<text class="value">
@ -407,11 +411,21 @@ export default {
position: relative;
padding: 15rpx 0;
width: 50%;
overflow: hidden;
display: flex;
.label {
opacity: 0.6;
display: inline-block;
vertical-align: top;
white-space: nowrap;
}
.value {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}