This commit is contained in:
2020-12-15 11:03:22 +08:00
parent 78c95363c0
commit 4fa63f7b06
7 changed files with 17 additions and 7 deletions

View File

@@ -118,7 +118,7 @@
</template>
<script lang="ts">
import { computed, defineComponent, onMounted, reactive, ref } from "vue";
import { computed, defineComponent, onMounted, reactive, ref, watch } from "vue";
import LoginTab from "@/components/login/LoginTab.vue";
import NavTop from "@/components/NavTop.vue"
import { authLogin, checksmscode, checkuser, getquhaolist, getwebvideolist, loginpass, sendsms } from '@/api';
@@ -161,6 +161,9 @@ export default defineComponent({
}
])
const myquhao=ref(mrqh.value.code)
watch(mrqh,()=>{
myquhao.value = mrqh.value.code
})
const videolist=ref<any>([])
onMounted(async ()=>{