|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div class="bg-box" style="overflow: hidden; position: relative" :class="{ has_control: controlData.bSwitch }">
|
|
|
+ <div class="bg-box" style="position: relative" :class="{ has_control: controlData.bSwitch }">
|
|
|
<div class="bg-card">
|
|
|
<div>
|
|
|
<el-button type="primary" class="export-btn" size="small" @click="onReset">重新质控</el-button>
|
|
@@ -1059,7 +1059,9 @@ export default {
|
|
|
this.controlData.rule_id = this.$route.query.rule_id;
|
|
|
this.controlData.bSwitch = true;
|
|
|
},
|
|
|
-
|
|
|
+ mounted() {
|
|
|
+ this.getData();
|
|
|
+ },
|
|
|
methods: {
|
|
|
//重新质控
|
|
|
onReset(){
|