31 lines
1017 B
Vue
31 lines
1017 B
Vue
<template>
|
|
<view class="default-box-padding bg-fff border-r-12 u-m-t-20">
|
|
<my-step :list="recoders.list"></my-step>
|
|
<!-- <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';
|
|
const itemStyle = reactive({
|
|
color: 'rgb(255,0,0)'
|
|
})
|
|
const recoders = reactive({
|
|
list:[
|
|
{title:'2024-09-15',content:'[东风(id:124413)]使用代客下单提交。(未打印预结单)'},
|
|
{title:'2024-09-15',content:'[东风(id:124413)]使用代客下单提交。(未打印预结单)'},
|
|
{title:'2024-09-15',content:'[东风(id:124413)]使用代客下单提交。(未打印预结单)'}
|
|
],
|
|
active:0
|
|
})
|
|
</script>
|
|
|
|
<style>
|
|
</style> |