+
emits('mapListScreenChange',value.target.value,'mapNo')"
/>
-
@@ -537,25 +538,73 @@ const closeMolder = () => {
padding: 10px;
}
.screen-div{
- padding: 10px;
+ padding: 10px 12px 20px 13px;
display: flex;
width:590px;
flex-wrap: wrap;
.screen-item{
- width: 33.3%;
+ // width: 33.3%;
display: flex;
- margin-bottom: 12px;
- font-family: Alibaba PuHuiTi;
- font-weight: 500;
- font-size: 17px;
- color: #000000;
+ height: 39px;
+ // margin-bottom: 12px;
+ // font-family: Alibaba PuHuiTi;
+ // font-weight: 500;
+ // font-size: 17px;
+ // color: #000000;
.screen-item-label{
- width: 53px;
- padding-left: 10px;
+ font-family: Alibaba PuHuiTi;
+ font-weight: 500;
+ font-size: 17px;
+ color: #000000;
+ line-height: 30px;
+ // width: 53px;
+ // padding-left: 10px;
display: flex;
align-items: center;
+ margin-right: 9px;
// font-size: 15px;
}
+ :deep(.ant-select-selector){
+ display: flex;
+ align-items: center;
+ font-family: HarmonyOS Sans;
+ font-weight: 500;
+ font-size: 19px;
+ color: #000000;
+ line-height: 30px;
+ height: 39px;
+ box-shadow: 2px 3px 3px 1px rgba(13,13,13,0.05);
+ }
+ .item-input{
+ width:223px;
+ font-family: Alibaba PuHuiTi;
+ font-weight: 500;
+ font-size: 17px;
+ color: #000000;
+ line-height: 30px;
+ box-shadow: 2px 3px 3px 1px rgba(13,13,13,0.05);
+ }
+ .item-time-select{
+ box-shadow: 2px 3px 3px 1px rgba(13,13,13,0.05);
+ :deep(input){
+ font-family: HarmonyOS Sans;
+ font-weight: 500;
+ font-size: 15px;
+ color: #000000;
+ line-height: 30px;
+ }
+ }
+ .item-button{
+ font-family: Alibaba PuHuiTi;
+ font-weight: 400;
+ font-size: 19px;
+ color: #FFFFFF;
+ line-height: 30px;
+ height:39px;
+ width: 97px;
+ background: #086DEC;
+ // margin-left:12px;
+ }
}
.screen-button-div{
display: flex;
@@ -568,16 +617,25 @@ const closeMolder = () => {
}
.top-radio-button-div{
width:100%;
- padding:33px 10px 8px 10px;
+ padding: 33px 12px 8px 13px;
+ :deep(.ant-radio-button-wrapper-checked){
+ font-family: Alibaba PuHuiTi;
+ font-weight: 500 !important;
+ font-size: 20px;
+ color: #FFFFFF !important;
+ line-height: 40px;
+ background: #086DEC;
+ }
.radio-item{
width:50%;
text-align: center;
+ height: 40px;
+ user-select: none;
font-family: Alibaba PuHuiTi;
font-weight: 400;
font-size: 20px;
- height: 40px;
+ color: #000000;
line-height: 40px;
- user-select: none;
}
}
.sift-div{
@@ -693,7 +751,8 @@ const closeMolder = () => {
.data-list-info-div{
display: flex;
justify-content: space-between;
- padding-top: 10px;
+ margin-top: 10px;
+ height: 40px;
.info-layout-div{
display:flex;
align-items: center;
@@ -712,7 +771,7 @@ const closeMolder = () => {
width: 80px;
border-radius: 7px;
margin-right: 8px;
- height: 30px;
+ height: 33px;
justify-content: center;
.info-label{
font-family: Alibaba PuHuiTi;
diff --git a/src/views/subject/index.vue b/src/views/subject/index.vue
index 4561615a..3d8dc042 100644
--- a/src/views/subject/index.vue
+++ b/src/views/subject/index.vue
@@ -126,10 +126,6 @@
});
}
- onMounted(() => {
- getData();
- });
-
// 按键控制滚动条
const scrollToElement = async (type) => {
if (contentArea.value) {
@@ -143,14 +139,14 @@
};
// 跳转
async function getHome(item) {
- if (!item.linkOrApi) {
+ if (!item.isDevelop) {
message.warn('暂未开放!');
return;
}
if (item.isExternal) {
window.location.href = item.linkOrApi;
} else {
- userStore.setSubject(item.id, item.linkOrApi);
+ userStore.setSubject(item.id, item.logoTitle, item.linkOrApi);
}
}
// 获取图片地址
@@ -173,6 +169,10 @@
function handleLoginOut() {
userStore.confirmLoginOut();
}
+
+ onMounted(() => {
+ getData();
+ });