@@ -59,7 +59,7 @@ | |||
:initial-index=" | |||
changeAddress(srcList).indexOf(changeAddress(value.value)) | |||
" | |||
style="width: 50%; height: 200px" | |||
style="width: auto;height: 200px" | |||
></el-image> | |||
<span v-else>---</span> | |||
</el-descriptions-item> | |||
@@ -573,6 +573,8 @@ function init(data) { | |||
data?.carInfo?.vehNegImgUrl, | |||
data?.carInfo?.vehPosImgUrl, | |||
data?.carOwnerInfo?.ownerPosImgUrl, | |||
data?.customerInfo?.customerPositiveImageUrl, | |||
data?.customerInfo?.customerNegativeImageUrl, | |||
data?.carOwnerInfo?.ownerNegImgUrl, | |||
data?.carOwnerInfo?.proxyUrl, | |||
// data?.roadTransportPermitPicUrl, |
@@ -143,7 +143,7 @@ | |||
:min-scale="0.2" | |||
:preview-src-list="srcList" | |||
show-progress | |||
:initial-index="4" | |||
:initial-index="0" | |||
fit="cover" | |||
:src="changeAddress(lossDetail.baseInfo.vehPosImgUrl)"/> | |||
<span v-else>无</span> | |||
@@ -158,7 +158,7 @@ | |||
:min-scale="0.2" | |||
:preview-src-list="srcList" | |||
show-progress | |||
:initial-index="4" | |||
:initial-index="1" | |||
fit="cover" | |||
:src="changeAddress(lossDetail.baseInfo.vehNegImgUrl)"/> | |||
<span v-else>无</span> |
@@ -244,6 +244,7 @@ | |||
</el-button> | |||
<el-button | |||
style="margin: 10px 5px" | |||
v-show="false" | |||
v-if=" | |||
scope.row.orderStep == 'WAITING_ACTIVE' && | |||
scope.row.shippingStatus == 'RECEIVED' && | |||
@@ -259,6 +260,7 @@ | |||
</el-button> | |||
<el-button | |||
style="margin: 10px 5px" | |||
v-show="false" | |||
v-if=" | |||
(scope.row.orderStep == 'WAITING_ACTIVE' || | |||
scope.row.shippingStatus == 'RECEIVED') && | |||
@@ -1353,6 +1355,10 @@ const vehicleTypes = computed(() => { | |||
const PATTERN_TYPE = computed(() => { | |||
return $storeinitData.state.dictData["PATTERN_TYPE"] || []; | |||
}); | |||
//卡类型 | |||
const CARD_TYPE = computed(() => { | |||
return $storeinitData.state.dictData["CARD_TYPE"] || []; | |||
}); | |||
//订单状态 | |||
const ORDER_STATUS = computed(() => { | |||
@@ -2263,13 +2269,9 @@ let field = ref({ | |||
listData: PATTERN_TYPE, | |||
}, | |||
{ | |||
prop: "isValueCard", | |||
prop: "cardType", | |||
label: "卡类型", | |||
funRuleStarts: true, | |||
funRule: (money: any) => { | |||
//1-储值卡 2-记账卡 | |||
return money == "1" ? "储值卡" : "记账卡"; | |||
}, | |||
listData: CARD_TYPE, | |||
}, | |||
{ | |||
prop: "vanType", |
@@ -193,6 +193,11 @@ | |||
return $storeinitData.state.dictData['PATTERN_TYPE'] || [] | |||
}) | |||
//卡类型 | |||
const CARD_TYPE = computed(() => { | |||
return $storeinitData.state.dictData["CARD_TYPE"] || []; | |||
}); | |||
//订单状态 | |||
const ORDER_STATUS = computed(() => { | |||
return $storeinitData.state.dictData['ISSUE_ORDER_STATUS'] || [] | |||
@@ -294,13 +299,9 @@ | |||
listData: PATTERN_TYPE | |||
}, | |||
{ | |||
prop: 'isValueCard', | |||
label: '卡类型', | |||
funRuleStarts: true, | |||
funRule: (money: any) => { | |||
//1-储值卡 2-记账卡 | |||
return money == '1' ? '储值卡' : '记账卡' | |||
}, | |||
prop: "cardType", | |||
label: "卡类型", | |||
listData: CARD_TYPE, | |||
}, | |||
{ | |||
prop: 'vehicleType', |
@@ -25,7 +25,7 @@ | |||
<el-image v-if="value.value" :preview-src-list="changeAddress(srcList)" | |||
:src="changeAddress(value.value)" | |||
:initial-index="changeAddress(srcList).indexOf(changeAddress(value.value))" | |||
style="width: 50%;height: 200px"></el-image> | |||
style="width: auto;height: 200px"></el-image> | |||
<span v-else>---</span> | |||
</el-descriptions-item> | |||
</template> |
@@ -11,7 +11,7 @@ | |||
<el-descriptions-item :label="value.label" width="33%" | |||
v-else-if="value.type == 'img' && !value.visible" :span="1"> | |||
<el-image :preview-src-list="[changeAddress(value.value)]" :src="changeAddress(value.value)" | |||
:initial-index="value.index" style="width: 50%;height: 200px"></el-image> | |||
:initial-index="value.index" style="width: auto;height: 200px"></el-image> | |||
</el-descriptions-item> | |||
</template> | |||
<el-descriptions-item label="审核" :span="1"> |