更新
This commit is contained in:
@ -69,7 +69,7 @@
|
|||||||
<div class="flex align-center">
|
<div class="flex align-center">
|
||||||
<img class="mr10" src="@/assets/images/icon_046.png" alt="" />
|
<img class="mr10" src="@/assets/images/icon_046.png" alt="" />
|
||||||
<div class="f14">
|
<div class="f14">
|
||||||
<div style="color:#0BB7FF">张某某</div><div>安全管理科</div>
|
<div style="color:#0BB7FF">{{ userName }}</div><div>{{ dept }}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<el-popover popper-class="zdy-meuns-popover" placement="bottom" width="400" :append-to-body="true" v-model:visible="showMore" trigger="click">
|
<el-popover popper-class="zdy-meuns-popover" placement="bottom" width="400" :append-to-body="true" v-model:visible="showMore" trigger="click">
|
||||||
@ -88,6 +88,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
|
import { getItem } from "@/utils/storage";
|
||||||
import { qcckGet, qcckPost } from "@/api/qcckApi.js";
|
import { qcckGet, qcckPost } from "@/api/qcckApi.js";
|
||||||
import emitter from "@/utils/eventBus.js";
|
import emitter from "@/utils/eventBus.js";
|
||||||
import { timeValidate, weekValidate } from "@/utils/tools.js";
|
import { timeValidate, weekValidate } from "@/utils/tools.js";
|
||||||
@ -104,6 +105,8 @@ const icon6 = require("@/assets/images/icon_054.png"); //雷阵雨
|
|||||||
const icon7 = require("@/assets/images/icon_055.png"); //多云转晴 - 阴天
|
const icon7 = require("@/assets/images/icon_055.png"); //多云转晴 - 阴天
|
||||||
const icon8 = require("@/assets/images/icon_056.png"); //多云
|
const icon8 = require("@/assets/images/icon_056.png"); //多云
|
||||||
import { ref, onMounted, defineEmits, defineProps,onUnmounted, reactive, watch } from "vue";
|
import { ref, onMounted, defineEmits, defineProps,onUnmounted, reactive, watch } from "vue";
|
||||||
|
const userName = getItem("USERNAME");
|
||||||
|
const dept = getItem("deptId") ? getItem("deptId")[0].deptName : '';
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
title: {
|
title: {
|
||||||
type: String,
|
type: String,
|
||||||
|
Reference in New Issue
Block a user