yuanshun 1 year ago
parent
commit
6177dc9a23
  1. 2
      src/components/list/ContractList.vue
  2. 2
      src/components/list/TalentList.vue
  3. 2
      src/components/list/message.vue
  4. 2
      src/view/task/components/CitySwitch.vue
  5. 4
      src/view/task/components/Screen.vue

2
src/components/list/ContractList.vue

@ -2,7 +2,7 @@
import { useRouter } from "vue-router";
const props=defineProps({
contractList:{
type:Array,
type:Array<any>,
default:()=>[]
}
})

2
src/components/list/TalentList.vue

@ -2,7 +2,7 @@
import { useRouter } from "vue-router";
const props=defineProps({
talentList:{
type:Array,
type:Array<any>,
default:()=>[]
}
})

2
src/components/list/message.vue

@ -2,7 +2,7 @@
import { useRouter } from "vue-router";
const props=defineProps({
messageList:{
type:Array,
type:Array<any>,
default:()=>[]
}
})

2
src/view/task/components/CitySwitch.vue

@ -5,7 +5,7 @@ import { taskStore } from "../../../store/task";
import { showToast } from 'vant'
const { closeCitySwitch }:any = inject('popup',)
const store=taskStore()
const store:any=taskStore()
const leftBack = ()=>{
closeCitySwitch()
}

4
src/view/task/components/Screen.vue

@ -3,12 +3,12 @@
import { screenList } from "../../../api/task";
import { taskStore } from "../../../store/task";
import { showToast } from 'vant'
const state=reactive({
const state:any=reactive({
mode:'',
cycle:'',
})
const { closeScreenBool }:any = inject('popup')
const store=taskStore()
const store:any=taskStore()
const leftBack = ()=>{
closeScreenBool()
}

Loading…
Cancel
Save