Commit e6b4a02d by pangchong

fix: 修复问题

parent 84b63b9e
......@@ -4,7 +4,6 @@
<up-checkbox-group v-model="checkboxValue" :placement="placement" @change="checkboxChange" :disabled="disabled" :borderBottom="borderBottom">
<up-checkbox
:customStyle="getCustomStyle"
0
v-for="(item, index) in getColumns"
:key="index"
:label="item.label"
......
......@@ -3,7 +3,7 @@ import { ref } from 'vue'
export const formRef = ref()
// 表单数据
export const formData = ref({
status: null,
status: 1,
valid: null,
department: '',
appraisee: '',
......@@ -16,4 +16,3 @@ export const formData = ref({
examineType: '',
appealInfo: null
})
export const status = ref([])
......@@ -3,7 +3,7 @@ import { formData, formRef } from './search.compositions'
export const handleReset = () => {
formData.value = {
status: null,
status: 1,
valid: null,
department: '',
appraisee: '',
......
......@@ -54,7 +54,9 @@ const handleRightClick = () => {
uni.$mocpJump.navigateTo('/panel/appraisal-record/search')
}
//刷新
const searchParams = ref()
const searchParams = ref({
status: 1
})
const paging = ref()
uni.$on('appraisalRecordReload', ({ params }) => {
if (params) {
......
......@@ -12,4 +12,3 @@ export const formData = ref({
startTimeS: null,
startTimeE: null
})
export const status = ref([])
......@@ -10,4 +10,3 @@ export const formData = ref({
startDateTime: null,
endDateTime: null
})
export const status = ref([])
......@@ -10,4 +10,3 @@ export const formData = ref({
startDateTime: null,
endDateTime: null
})
export const status = ref([])
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment