12345678910111213141516171819202122 |
- <template>
- <div>
- <div>
- <el-button icon="el-icon-back" size="small" type="primary" @click="$router.back()">返回</el-button>
- <el-button icon="el-icon-refresh" size="small" type="primary">重新诊断</el-button>
- <el-button icon="el-icon-document" size="small" type="primary">诊断结果</el-button>
- </div>
-
- </div>
- </template>
- <script>
- export default {
- name: 'faultDetail',
- data() {
- return {
- }
- }
- };
- </script>
- <style scoped lang="scss">
- </style>
|