auxiliarySalesOrderDetail.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <div class="s-page">
  3. <el-page-header @back="goBack" :content="title"></el-page-header>
  4. <el-divider></el-divider>
  5. <div class="mymain-container">
  6. <el-form ref="formData" :model="formData" label-width="110px" size="small" label-position="left">
  7. <el-row :gutter="20" justify="start">
  8. <el-col :span="6">
  9. <el-form-item label="广佛信息编号">
  10. <el-input type="text" value="" readonly="readonly"></el-input>
  11. </el-form-item>
  12. </el-col>
  13. </el-row>
  14. </el-form>
  15. </div>
  16. <el-row :gutter="20" justify="end" type="flex">
  17. <el-button v-if="true" type="primary" @click="confirm()">提交</el-button>
  18. <el-button v-if="true" size="small" type="danger">确认收货</el-button>
  19. <el-button size="small" type="info" @click="goBack">返回</el-button>
  20. </el-row>
  21. </div>
  22. </template>
  23. <script>
  24. export default {
  25. props: ['id','title'],
  26. data() {
  27. return {
  28. };
  29. },
  30. computed: {},
  31. created() {
  32. },
  33. methods: {
  34. // 返回
  35. goBack() {
  36. this.$emit('back');
  37. }
  38. }
  39. };
  40. </script>
  41. <style scoped="scoped" lang="scss">
  42. .s-page {
  43. padding: 20px;
  44. background-color: #ffffff;
  45. }
  46. </style>