Browse Source

修复信件查询刷新后el-table样式丢失的bug

master
21819 2 years ago
parent
commit
900dafad17
  1. 2
      src/views/work/Query.vue
  2. 2
      src/views/work/components/MailCheck.vue

2
src/views/work/Query.vue

@ -174,7 +174,7 @@
</div> </div>
<MailDialog v-model:show="showModel" :mail-id="activeMailId" @update="getList" /> <MailDialog v-model:show="showModel" :mail-id="activeMailId" @update="getList" />
<MailLabel v-model:show="showLabel" :mail-id="activeMailId" @close="showLabel = false" @update="getList" /> <MailLabel v-model:show="showLabel" :mail-id="activeMailId" @close="showLabel = false" @update="getList" />
<MailCheck v-model:show="showCheck" :mails="solveCheckBox" @close="showCheck = false" /> <MailCheck v-model:show="showCheck" @close="showCheck = false" />
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
import MailDialog from "./components/MailDialog.vue"; import MailDialog from "./components/MailDialog.vue";

2
src/views/work/components/MailCheck.vue

@ -104,7 +104,7 @@ import { ref, defineProps } from 'vue'
import { watch } from 'vue' import { watch } from 'vue'
import { formatTimeText, getDictLable, getFlowTagType } from "@/utils/util"; import { formatTimeText, getDictLable, getFlowTagType } from "@/utils/util";
import { useDictData } from "@/hooks/useDictOptions"; import { useDictData } from "@/hooks/useDictOptions";
import { ElMessage, ElTable } from "element-plus"; import { ElMessage } from "element-plus";
import { genFileId } from 'element-plus' import { genFileId } from 'element-plus'
import type { UploadInstance, UploadProps, UploadRawFile } from 'element-plus' import type { UploadInstance, UploadProps, UploadRawFile } from 'element-plus'
import axios from 'axios'; import axios from 'axios';

Loading…
Cancel
Save