Browse Source

修改empty 样式

wangqin
Joe 1 year ago
parent
commit
9c22efade7
  1. 3
      ruoyi-ui/src/views/JiHeExpressway/components/InputSearch/index.vue
  2. 3
      ruoyi-ui/src/views/JiHeExpressway/pages/control/event/businessDataManagement/views/dutyOfficer/index.vue
  3. 3
      ruoyi-ui/src/views/JiHeExpressway/pages/control/event/businessDataManagement/views/emergencyAgencies/index.vue
  4. 3
      ruoyi-ui/src/views/JiHeExpressway/pages/control/event/businessDataManagement/views/jurisdictionalManagement/index.vue
  5. 2
      ruoyi-ui/src/views/JiHeExpressway/pages/control/event/commandDispatch/Cards/DisposalProcess/index.vue

3
ruoyi-ui/src/views/JiHeExpressway/components/InputSearch/index.vue

@ -10,7 +10,8 @@
<slot> <slot>
<Form v-if="formList && formList.length" class="form" ref="FormConfigRef" :formList="formList" <Form v-if="formList && formList.length" class="form" ref="FormConfigRef" :formList="formList"
v-bind="getFormConfigOptions" /> v-bind="getFormConfigOptions" />
<ElEmpty v-else description="暂无搜索内容"></ElEmpty> <!-- <ElEmpty v-else description="暂无搜索内容"></ElEmpty> -->
<div v-else class="no-data">暂无数据</div>
</slot> </slot>
<div class="footer"> <div class="footer">

3
ruoyi-ui/src/views/JiHeExpressway/pages/control/event/businessDataManagement/views/dutyOfficer/index.vue

@ -37,7 +37,8 @@
<InputSearch style="width: 402px;" :formList="searchFormList" :formConfigOptions="{ labelWidth: '72px' }" <InputSearch style="width: 402px;" :formList="searchFormList" :formConfigOptions="{ labelWidth: '72px' }"
@handleSearch="handleSearch" /> @handleSearch="handleSearch" />
</div> </div>
<ElEmpty v-if="!data.length && !isFirst" description="暂无数据" style="width: 100%;height: 100%;position: absolute;" /> <!-- <ElEmpty v-if="!data.length && !isFirst" description="暂无数据" style="width: 100%;height: 100%;position: absolute;" /> -->
<div v-if="!data.length && !isFirst" class="no-data" style="position: absolute">暂无数据</div>
<SpecialTable v-else :columns="columns" :data="data" class="body"> <SpecialTable v-else :columns="columns" :data="data" class="body">
<template #title-DateDuty> <template #title-DateDuty>

3
ruoyi-ui/src/views/JiHeExpressway/pages/control/event/businessDataManagement/views/emergencyAgencies/index.vue

@ -27,7 +27,8 @@
</div> </div>
<div class='body'> <div class='body'>
<ElEmpty v-if="!data.length && !isFirst" description="暂无数据" style="width: 100%;height: 100%;position: absolute;" /> <!-- <ElEmpty v-if="!data.length && !isFirst" description="暂无数据" style="width: 100%;height: 100%;position: absolute;" /> -->
<div v-if="!data.length && !isFirst" class="no-data" style="position: absolute">暂无数据</div>
<template v-else> <template v-else>
<Card v-for="(item, index) in data" :keyMap="keyMap" :cardData="item" :key="index"> <Card v-for="(item, index) in data" :keyMap="keyMap" :cardData="item" :key="index">

3
ruoyi-ui/src/views/JiHeExpressway/pages/control/event/businessDataManagement/views/jurisdictionalManagement/index.vue

@ -28,7 +28,8 @@
<div class="body"> <div class="body">
<ElEmpty v-if="!data.length && !isFirst" description="暂无数据" style="width: 100%;height: 100%;position: absolute;" /> <!-- <ElEmpty v-if="!data.length && !isFirst" description="暂无数据" style="width: 100%;height: 100%;position: absolute;" /> -->
<div v-if="!data.length && !isFirst" class="no-data" style="position: absolute">暂无数据</div>
<template v-else> <template v-else>
<Card v-for="(item, index) in data" :buttonIcon="null" :keyMap="keyMap" :cardData="item" :key="index" <Card v-for="(item, index) in data" :buttonIcon="null" :keyMap="keyMap" :cardData="item" :key="index"

2
ruoyi-ui/src/views/JiHeExpressway/pages/control/event/commandDispatch/Cards/DisposalProcess/index.vue

@ -26,7 +26,7 @@
<TimeLine1 :data="timeLine1List" :filterDistance="filterDistance" /> <TimeLine1 :data="timeLine1List" :filterDistance="filterDistance" />
<TimeLine2 :data="timeLine2List" style="flex: 1;" /> <TimeLine2 :data="timeLine2List" style="flex: 1;" />
<ElEmpty v-if="!timeLine2List.length" description="暂无数据" /> <div v-if="!timeLine2List.length" class="no-data">暂无数据</div>
<div class="bottom"> <div class="bottom">
<ElSelect value="" placeholder="请选择关键点" /> <ElSelect value="" placeholder="请选择关键点" />
<RadioGroup :options="[{ key: 'input', label: '输入' }, { key: 'upload', label: '上传' }]" v-model="testRadio" <RadioGroup :options="[{ key: 'input', label: '输入' }, { key: 'upload', label: '上传' }]" v-model="testRadio"

Loading…
Cancel
Save