26 lines
646 B
Vue
26 lines
646 B
Vue
<template>
|
|
<view class="default-box-padding bg-fff border-r-12 u-m-t-20">
|
|
<up-steps :dot="true" current="0" direction="column">
|
|
<up-steps-item title="2024-09-02 09:19" :itemStyle="itemStyle" desc="[东风(id:124413)]使用代客下单提交。(未打印预结单)">
|
|
</up-steps-item>
|
|
<up-steps-item title="2024-09-02 09:19" desc="[东风(id:124413)]使用代客下单提交。(未打印预结单)">
|
|
</up-steps-item>
|
|
</up-steps>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
<script setup>
|
|
import {
|
|
reactive
|
|
} from 'vue';
|
|
import color from '@/commons/color.js'
|
|
const itemStyle = reactive({
|
|
color: 'rgb(255,0,0)'
|
|
})
|
|
|
|
</script>
|
|
|
|
<style>
|
|
</style> |