1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <div>
- <div class="customer-head">
- <div class="customer-back">
- <el-button
- type="danger"
- style="border: none;background: none;color: red"
- icon="el-icon-arrow-left"
- @click="backToList"
- >返回列表
- </el-button>
- </div>
- <div>
- <div class="el-button--small-yh add-customer-btn">
- <el-button type="primary" size="small">保存</el-button>
- </div>
- </div>
- </div>
- <trade-card title="基础资料" style="margin-top: 50px">
- 1
- </trade-card>
- </div>
- </template>
- <script>
- export default {
- name: "detailsPageEdit",
- methods:{
- backToList(){
- this.$emit('backToList', false)
- }
- }
- }
- </script>
- <style scoped>
- </style>
|