廖井涛
2025-11-24 46964bace341e98f238a0a3fd29f6adc643312c7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<script setup>
let props = defineProps({
  order:null
})
</script>
 
<template>
  <div>
    <el-row style="text-align: left ">
      <el-col :span="4">下单员:{{props.order.creator}}</el-col>
      <el-col :span="4">审核人:{{props.order.verifier}}</el-col>
      <el-col :span="4">校对:</el-col>
    </el-row>
<!--    <el-row style="text-align: left ">-->
<!--      <el-col :span="4">创建时间:{{props.order.createTime}}</el-col>-->
<!--      <el-col :span="4">审核时间:{{props.order.updateTime}}</el-col>-->
<!--      <el-col :span="4">打印时间:</el-col>-->
<!--    </el-row>-->
  </div>
</template>
 
<style scoped>
 
</style>