|
@@ -1,6 +1,6 @@
|
|
<template>
|
|
<template>
|
|
<view class="orderDetail-digitalShel flex flex_column">
|
|
<view class="orderDetail-digitalShel flex flex_column">
|
|
- <view class="contHead" :style="{background:state== 0?'#1283d4':'#06ab50',color:'#fff'}">
|
|
|
|
|
|
+ <view class="contHead" :style="{background:state== 0?'#066cff':'#06ab50',color:'#fff'}">
|
|
<view class="statusH">
|
|
<view class="statusH">
|
|
<view class="flex flex_column align_center">
|
|
<view class="flex flex_column align_center">
|
|
<view class="status-row">
|
|
<view class="status-row">
|
|
@@ -16,7 +16,7 @@
|
|
<!-- 头部车辆信息 -->
|
|
<!-- 头部车辆信息 -->
|
|
<div class="flex align-center cpb_header" v-if="info">
|
|
<div class="flex align-center cpb_header" v-if="info">
|
|
<div>
|
|
<div>
|
|
- <u-image :src="info.vehicleLogo" border-radius="30" width="100" height="100" bg-color="#EBEBEB" ></u-image>
|
|
|
|
|
|
+ <u-image :src="info.vehicleLogo?info.vehicleLogo:'/static/def_imgs.png'" border-radius="30" width="100" height="100" bg-color="#EBEBEB" ></u-image>
|
|
</div>
|
|
</div>
|
|
<div class="flex flex_column justify_center align_start">
|
|
<div class="flex flex_column justify_center align_start">
|
|
<view class="carModel flex align-center" v-if="info.vehicleNumber" >
|
|
<view class="carModel flex align-center" v-if="info.vehicleNumber" >
|
|
@@ -41,7 +41,7 @@
|
|
</view>
|
|
</view>
|
|
<view v-for="item in partList" :key="item.productSn" class="flex align-center item-list">
|
|
<view v-for="item in partList" :key="item.productSn" class="flex align-center item-list">
|
|
<view>
|
|
<view>
|
|
- <u-image :src="item.images" border-radius="16" width="130" height="130" bg-color="#EBEBEB" ></u-image>
|
|
|
|
|
|
+ <u-image :src="item.images?item.images:'/static/def_imgs.png'" border-radius="16" width="130" height="130" bg-color="#EBEBEB" ></u-image>
|
|
</view>
|
|
</view>
|
|
<view>
|
|
<view>
|
|
<view class="item-name">
|
|
<view class="item-name">
|
|
@@ -112,7 +112,7 @@
|
|
// 更改标题栏背景色
|
|
// 更改标题栏背景色
|
|
uni.setNavigationBarColor({
|
|
uni.setNavigationBarColor({
|
|
frontColor: '#ffffff',
|
|
frontColor: '#ffffff',
|
|
- backgroundColor: option.state== 0 ? '#1283d4':'#06ab50',
|
|
|
|
|
|
+ backgroundColor: option.state== 0 ? '#066cff':'#06ab50',
|
|
})
|
|
})
|
|
},
|
|
},
|
|
onShow() {
|
|
onShow() {
|