|
|
|
@ -11,17 +11,17 @@
|
|
|
|
|
</template>
|
|
|
|
|
</el-input>
|
|
|
|
|
</div>
|
|
|
|
|
<div>品牌:{{ tireInfo.brand }} 规格:{{ tireInfo.size }} 花纹:{{ tireInfo.pattern }}</div>
|
|
|
|
|
<div>{{ t('web.brand') }}:{{ tireInfo.brand }} {{ t('web.specification') }}:{{ tireInfo.size }} {{ t('web.pattern') }}:{{ tireInfo.pattern }}</div>
|
|
|
|
|
<div>
|
|
|
|
|
<span class="yellow">使用时间 </span>
|
|
|
|
|
<span class="yellow">{{ t('web.serviceTime') }} </span>
|
|
|
|
|
<span>{{ tireInfo.userTime }} </span>
|
|
|
|
|
<!-- <span class="yellow">最长连续报警时间 </span>-->
|
|
|
|
|
<!-- <span>{{ tireInfo.warringTime }} </span>-->
|
|
|
|
|
<span class="yellow">历史最高胎压 </span>
|
|
|
|
|
<span class="yellow">{{ t('web.AllTimeHighTirePressure') }} </span>
|
|
|
|
|
<span>{{ tireInfo.highPressHis }} </span>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<span class="yellow">预计剩余里程 </span>
|
|
|
|
|
<span class="yellow">{{ t('web.EstimatedRemainingMileage') }} </span>
|
|
|
|
|
<span>{{ tireInfo.surplusMileage }}km </span>
|
|
|
|
|
<!-- <span class="yellow">最长连续工作时间 </span>-->
|
|
|
|
|
<!-- <span>{{ tireInfo.longestWorkTime }} </span>-->
|
|
|
|
@ -81,7 +81,12 @@ import AMapLoader from '@amap/amap-jsapi-loader';
|
|
|
|
|
import {getTyreLife,} from '@/api/tireManagement/lifecycle'
|
|
|
|
|
import {parseTime} from "@/utils/ruoyi";
|
|
|
|
|
import {Search} from '@element-plus/icons-vue'
|
|
|
|
|
import {useI18n} from "vue-i18n";
|
|
|
|
|
import Cookies from "js-cookie";
|
|
|
|
|
|
|
|
|
|
const {t} = useI18n();
|
|
|
|
|
|
|
|
|
|
const locale = (Cookies.get('language') || 'zhCn') === 'zhCn'
|
|
|
|
|
const {proxy} = getCurrentInstance();
|
|
|
|
|
const way = ref()
|
|
|
|
|
const list = ref([])
|
|
|
|
|