1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| <template>
| <CompPreCheck @pre-check="autoEvaluate"></CompPreCheck>
| </template>
|
| <script>
| import CompPreCheck from './components/CompPreCheck.vue';
|
| export default {
| name: 'ResultManage',
| components: { CompPreCheck },
| data() {
| return {};
| },
| methods:{
| /**
| * 通过自评预检后,执行自动评估
| * @param {*} options 查询参数
| */
| autoEvaluate(options){
|
| }
| }
| };
| </script>
|
|