@@ -137,6 +144,7 @@ import { ref, reactive, onMounted, defineExpose } from 'vue';
import { list, queryById, deleteOne } from '../DirectivePackage.api'
import { getFileAccessHttpUrl } from '/@/utils/common/compUtils';
import { filterDictTextByCache } from '/@/utils/dict/JDictSelectUtil';
+import dayjs from "dayjs";
const selectedDirective = ref({ id: '' })
const registerModal = ref();
@@ -163,6 +171,13 @@ function searchQuery() {
queryList({})
}
+function getHHMM(value){
+ if(value){
+return dayjs(value).format('HH:mm')
+ }else{
+ return '未配置'
+ }
+}
/**
* 重置
*/
@@ -319,10 +334,12 @@ defineExpose({
}
.selected {
- background: url("@/assets/icons/success.svg") no-repeat;
- background-position: calc(100% - 5px) calc(100% - 5px);
- background-size: auto 60%;
- transition: none !important;
+ // background: url("@/assets/icons/success.svg") no-repeat;
+ // background-position: calc(100% - 5px) calc(100% - 5px);
+ // background-size: auto 30%;
+ // transition: none !important;
+ background: #edf8ff !important;
+ border: 1px solid #7cc3f0;
}
.selected-dire {
@@ -377,6 +394,12 @@ defineExpose({
padding-right: 8px;
/* 防止滚动条遮挡内容 */
}
+
+.titleOne {
+ text-align: center;
+ font-size: 16px;
+ font-weight: 600;
+}
.cardDivClass{
transition: all 0.3s ease;
position: relative;