第三部完成不能手动点击

master
pikachu 2021-06-20 10:32:35 +08:00
parent 861c7f905a
commit 85bfb48c0c
1 changed files with 9 additions and 5 deletions

View File

@ -44,7 +44,7 @@ import JsonExcel from "vue-json-excel";
import { downLoadDeliverExcel, uploadDeliverExcel } from "@/api/order.js";
import { baseUrl } from "@/libs/axios.js";
export default {
components: {
components: {
"download-excel": JsonExcel,
},
data() {
@ -79,10 +79,14 @@ export default {
methods: {
//
handleCheckStep(val) {
this.stepList.map((item) => {
item.checked = false;
});
val.checked = true;
if(val.title.search('3') == -1){
console.warn(val)
this.stepList.map((item) => {
item.checked = false;
});
val.checked = true;
}
},