|
@ -9,7 +9,7 @@ |
|
|
刷新 |
|
|
刷新 |
|
|
</ButtonGradient> |
|
|
</ButtonGradient> |
|
|
|
|
|
|
|
|
<InputSearch style="width: 402px;" /> |
|
|
<InputSearch style="width: 402px;" :formConfigOptions="{ labelWidth: '82px' }" :formList="searchFormList" @handleSearch="handleSearch" /> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<!-- 内容 --> |
|
|
<!-- 内容 --> |
|
@ -30,6 +30,8 @@ import InputSearch from '@screen/components/InputSearch/index.vue'; |
|
|
import Card from './components/Card/index.vue'; |
|
|
import Card from './components/Card/index.vue'; |
|
|
import ButtonGradient from '@screen/components/Buttons/ButtonGradient.vue'; |
|
|
import ButtonGradient from '@screen/components/Buttons/ButtonGradient.vue'; |
|
|
|
|
|
|
|
|
|
|
|
import { searchFormList } from "./data"; |
|
|
|
|
|
|
|
|
export default { |
|
|
export default { |
|
|
name: 'CoordinateSchedulingRecords', |
|
|
name: 'CoordinateSchedulingRecords', |
|
|
components: { |
|
|
components: { |
|
@ -40,6 +42,7 @@ export default { |
|
|
}, |
|
|
}, |
|
|
data() { |
|
|
data() { |
|
|
return { |
|
|
return { |
|
|
|
|
|
searchFormList, |
|
|
eventDetailDialogVisible: false |
|
|
eventDetailDialogVisible: false |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|