|
@@ -250,10 +250,7 @@
|
|
|
</el-table>
|
|
|
<div class="tab-btn">
|
|
|
<el-button
|
|
|
- @click="
|
|
|
- step--;
|
|
|
- checkedSomeSelection();
|
|
|
- "
|
|
|
+ @click="handleLastStep"
|
|
|
class="width"
|
|
|
style="margin-right: 80px"
|
|
|
>{{ $t("Dialog.prev_step") }}</el-button
|
|
@@ -362,6 +359,12 @@ export default {
|
|
|
this.getTableData("init");
|
|
|
},
|
|
|
methods: {
|
|
|
+ handleLastStep(){
|
|
|
+ this.step--;
|
|
|
+ this.$nextTick(()=>{
|
|
|
+ this.checkedSomeSelection();
|
|
|
+ })
|
|
|
+ },
|
|
|
/* 下一步 */
|
|
|
handleNextStep() {
|
|
|
if (
|