Compare commits

..

No commits in common. "62bb4c05e852bd132f525b03752db2280432ea08" and "792496f6853eaf4c88a75ebc06b3db1be3bfc6b8" have entirely different histories.

View File

@ -1,19 +1,19 @@
<template> <template>
<div class="state-box"> <div class="state-box">
<span v-if="this.injectData.status === 1"> <span v-if="this.injectData.status === 1">
<svg-icon icon-class="yellow_dot" class="tip"/> <svg-icon icon-class="yellow_dot" style="font-size: 14px; position: relative; top: .08em" />
在途 在途
</span> </span>
<span v-if="this.injectData.status === 2"> <span v-if="this.injectData.status === 2">
<svg-icon icon-class="blue_dot" class="tip"/> <svg-icon icon-class="blue_dot" style="font-size: 14px; position: relative; top: .08em" />
已下发 已下发
</span> </span>
<span v-if="this.injectData.status === 3"> <span v-if="this.injectData.status === 3">
<svg-icon icon-class="green_dot" class="tip" /> <svg-icon icon-class="green_dot" style="font-size: 14px; position: relative; top: .08em" />
已完成 已完成
</span> </span>
<span v-if="this.injectData.status === 4"> <span v-if="this.injectData.status === 4">
<svg-icon icon-class="orange_dot" class="tip" /> <svg-icon icon-class="orange_dot" style="font-size: 14px; position: relative; top: .08em" />
待下发 待下发
</span> </span>
</div> </div>
@ -44,11 +44,9 @@ export default {
} }
} }
</script> </script>
<style lang="scss" scoped> <style scoped>
.state-box { .state-box {
.tip { height: 18px;
font-size: calc(14px * var(--beilv)); line-height: 18px;
vertical-align: middle;
}
} }
</style> </style>