flat: 暂存

This commit is contained in:
Apcallover
2024-03-09 15:59:45 +08:00
parent a1a5a00480
commit 102e69567b
3 changed files with 24 additions and 4 deletions

View File

@@ -59,6 +59,7 @@
'9': "驳回",
};
let pickerColumns = [Object.values(reviewStatus)]
import { mapState } from 'vuex'
export default {
components: {CustomTabbar, CustomNavbar, userrecruitList},
data() {
@@ -76,7 +77,7 @@
}
},
onLoad({type}) {
if(type === 'enterprise'){
if(this.enterprise){
this.pageType = 'enterprise'
this.currentArrTitleID = 0
}
@@ -85,6 +86,9 @@
onReachBottom() {
this.getList('add')
},
computed: {
...mapState({enterprise: (state) => state.user.seeEnterprise}),
},
methods: {
changeReviewStatus({value, index, values}) {
const val = Object.keys(reviewStatus).filter((item) => reviewStatus[item] === value[0])[0]