|
@@ -38,6 +38,7 @@
|
|
|
<script setup>
|
|
|
import { ref, getCurrentInstance } from "vue";
|
|
|
import commonList from "@/components/common-list.vue";
|
|
|
+import { showSuccessToast, showFailToast } from "vant";
|
|
|
|
|
|
const proxy = getCurrentInstance().proxy;
|
|
|
const onClickLeft = () => proxy.$router.push("/main/working");
|
|
@@ -146,6 +147,7 @@ const listConfig = ref([
|
|
|
let ids = [];
|
|
|
let selectData = ref([]);
|
|
|
const handleSelectData = (row) => {
|
|
|
+ ids = [];
|
|
|
selectData.value = row;
|
|
|
row.map((i) => {
|
|
|
ids.push(i.id);
|