detailsPageEdit.vue 783 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <div>
  3. <div class="customer-head">
  4. <div class="customer-back">
  5. <el-button
  6. type="danger"
  7. style="border: none;background: none;color: red"
  8. icon="el-icon-arrow-left"
  9. @click="backToList"
  10. >返回列表
  11. </el-button>
  12. </div>
  13. <div>
  14. <div class="el-button&#45;&#45;small-yh add-customer-btn">
  15. <el-button type="primary" size="small">保存</el-button>
  16. </div>
  17. </div>
  18. </div>
  19. <trade-card title="基础资料" style="margin-top: 50px">
  20. 1
  21. </trade-card>
  22. </div>
  23. </template>
  24. <script>
  25. export default {
  26. name: "detailsPageEdit",
  27. methods:{
  28. backToList(){
  29. this.$emit('backToList', false)
  30. }
  31. }
  32. }
  33. </script>
  34. <style scoped>
  35. </style>