|
@@ -65,6 +65,7 @@
|
|
|
type="text"
|
|
|
size="small"
|
|
|
@click="goToFailedOrSuccessPage(scope.row, 'success')"
|
|
|
+ :disabled="runningStatusArr[scope.$index] === 1"
|
|
|
>{{ scope.row.ruleSuccessNum }}</el-button
|
|
|
>
|
|
|
</template>
|
|
@@ -75,6 +76,7 @@
|
|
|
type="text"
|
|
|
size="small"
|
|
|
@click="goToFailedOrSuccessPage(scope.row, 'failed')"
|
|
|
+ :disabled="runningStatusArr[scope.$index] === 1"
|
|
|
>{{ scope.row.ruleFailedNum }}</el-button
|
|
|
>
|
|
|
</template>
|
|
@@ -134,6 +136,7 @@ export default {
|
|
|
if (Object.keys(to.params).length === 0) return;
|
|
|
vm.getDataList(to.params.hospitalId);
|
|
|
// vm.hospitalId = to.params.hospitalId;
|
|
|
+ vm._getRunningStatus();
|
|
|
});
|
|
|
},
|
|
|
methods: {
|