|
@@ -16,9 +16,9 @@
|
|
|
<td>{{ group.title }}</td>
|
|
|
<td>{{ progress(group.totalCount, group.markedCount) }}%</td>
|
|
|
<td class="tw-text-right">
|
|
|
- <QmButton type="primary" @click="chooseGroup(group.markerId)"
|
|
|
- >选择</QmButton
|
|
|
- >
|
|
|
+ <qm-button type="primary" @click="chooseGroup(group.markerId)">
|
|
|
+ 选择
|
|
|
+ </qm-button>
|
|
|
</td>
|
|
|
</tr>
|
|
|
</table>
|
|
@@ -29,13 +29,11 @@
|
|
|
</template>
|
|
|
<script lang="ts">
|
|
|
import { doSwitchGroup, getGroups } from "@/api/markPage";
|
|
|
-import QmButton from "@/components/QmButton.vue";
|
|
|
import { message } from "ant-design-vue";
|
|
|
import { ref, defineComponent, onUpdated } from "vue";
|
|
|
import { store } from "./store";
|
|
|
|
|
|
export default defineComponent({
|
|
|
- components: { QmButton },
|
|
|
name: "MarkSwitchGroupDialog",
|
|
|
setup() {
|
|
|
const visible = ref<boolean>(false);
|