|
@@ -1,4 +1,4 @@
|
|
|
-import { computed, defineComponent, onBeforeUnmount, onMounted, reactive, ref, watch } from "vue";
|
|
|
+import { Transition, computed, defineComponent, onBeforeUnmount, onMounted, reactive, ref, watch } from "vue";
|
|
|
import styles from "./index.module.less";
|
|
|
import store from "store";
|
|
|
|
|
@@ -20,6 +20,7 @@ import { handle_stopFollow } from "../follow-model";
|
|
|
import Camera from "./camera";
|
|
|
import iconCamera from "./image/icon-camera-off.png";
|
|
|
import iconCameraOn from "./image/icon-camera-on.png";
|
|
|
+import iconEvaluat from '../evaluat-model/icons/evaluating.json'
|
|
|
|
|
|
export const headData = reactive({
|
|
|
speedShow: false,
|
|
@@ -402,6 +403,14 @@ export default defineComponent({
|
|
|
<Popup v-model:show={headData.modeMode} teleport="body" class="popup-custom" position="bottom" closeOnClickOverlay={false} overlay={false}>
|
|
|
<ModeTypeMode onClose={(value) => handleChangeModeType(value)} />
|
|
|
</Popup>
|
|
|
+
|
|
|
+ <Transition name="pop-center">
|
|
|
+ {evaluatingData.websocketState && evaluatingData.startBegin && (
|
|
|
+ <div class={styles.endBtn} onClick={() => handleEndBegin()}>
|
|
|
+ <img src={iconEvaluat.evaluatingEnd} />
|
|
|
+ </div>
|
|
|
+ )}
|
|
|
+ </Transition>
|
|
|
</div>
|
|
|
);
|
|
|
},
|