Commit e6b4a02d by pangchong

fix: 修复问题

parent 84b63b9e
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
<up-checkbox-group v-model="checkboxValue" :placement="placement" @change="checkboxChange" :disabled="disabled" :borderBottom="borderBottom"> <up-checkbox-group v-model="checkboxValue" :placement="placement" @change="checkboxChange" :disabled="disabled" :borderBottom="borderBottom">
<up-checkbox <up-checkbox
:customStyle="getCustomStyle" :customStyle="getCustomStyle"
0
v-for="(item, index) in getColumns" v-for="(item, index) in getColumns"
:key="index" :key="index"
:label="item.label" :label="item.label"
......
...@@ -3,7 +3,7 @@ import { ref } from 'vue' ...@@ -3,7 +3,7 @@ import { ref } from 'vue'
export const formRef = ref() export const formRef = ref()
// 表单数据 // 表单数据
export const formData = ref({ export const formData = ref({
status: null, status: 1,
valid: null, valid: null,
department: '', department: '',
appraisee: '', appraisee: '',
...@@ -16,4 +16,3 @@ export const formData = ref({ ...@@ -16,4 +16,3 @@ export const formData = ref({
examineType: '', examineType: '',
appealInfo: null appealInfo: null
}) })
export const status = ref([])
...@@ -3,7 +3,7 @@ import { formData, formRef } from './search.compositions' ...@@ -3,7 +3,7 @@ import { formData, formRef } from './search.compositions'
export const handleReset = () => { export const handleReset = () => {
formData.value = { formData.value = {
status: null, status: 1,
valid: null, valid: null,
department: '', department: '',
appraisee: '', appraisee: '',
......
...@@ -54,7 +54,9 @@ const handleRightClick = () => { ...@@ -54,7 +54,9 @@ const handleRightClick = () => {
uni.$mocpJump.navigateTo('/panel/appraisal-record/search') uni.$mocpJump.navigateTo('/panel/appraisal-record/search')
} }
//刷新 //刷新
const searchParams = ref() const searchParams = ref({
status: 1
})
const paging = ref() const paging = ref()
uni.$on('appraisalRecordReload', ({ params }) => { uni.$on('appraisalRecordReload', ({ params }) => {
if (params) { if (params) {
......
...@@ -12,4 +12,3 @@ export const formData = ref({ ...@@ -12,4 +12,3 @@ export const formData = ref({
startTimeS: null, startTimeS: null,
startTimeE: null startTimeE: null
}) })
export const status = ref([])
...@@ -10,4 +10,3 @@ export const formData = ref({ ...@@ -10,4 +10,3 @@ export const formData = ref({
startDateTime: null, startDateTime: null,
endDateTime: null endDateTime: null
}) })
export const status = ref([])
...@@ -10,4 +10,3 @@ export const formData = ref({ ...@@ -10,4 +10,3 @@ export const formData = ref({
startDateTime: null, startDateTime: null,
endDateTime: 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