廖井涛
9 小时以前 f7a2fcdda7f1120498c5c5f75c5a99955fc54b43
north-glass-erp/northglass-erp/src/components/sd/order/PrintFoot.vue
New file
@@ -0,0 +1,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>