Commit 37f4ef41 authored by xinzhedeai's avatar xinzhedeai

fix: 应急演练页面显示优化

parent 5b6b566c
...@@ -314,7 +314,7 @@ body { ...@@ -314,7 +314,7 @@ body {
transform: translateY(-50%); transform: translateY(-50%);
} }
.title_requirediv::before { .title_requirediv::before {
left: 3px left: 1px
} }
...@@ -328,7 +328,7 @@ body { ...@@ -328,7 +328,7 @@ body {
input:disabled { input:disabled {
background-color: #fff; background-color: #fff;
color: #9b9fab; color: #737373;
} }
select:disabled { select:disabled {
...@@ -343,6 +343,7 @@ select:disabled { ...@@ -343,6 +343,7 @@ select:disabled {
/* 可选:统一背景色 */ /* 可选:统一背景色 */
background-color: white; background-color: white;
opacity: 1;
} }
.form-label-div { .form-label-div {
...@@ -361,3 +362,8 @@ select:disabled { ...@@ -361,3 +362,8 @@ select:disabled {
margin-bottom: 0.15rem; margin-bottom: 0.15rem;
flex-wrap: wrap; flex-wrap: wrap;
} }
/* 日期禁用文字颜色调整 */
.van-field__control:disabled {
-webkit-text-fill-color: #737373;
}
\ No newline at end of file
...@@ -327,7 +327,7 @@ body { ...@@ -327,7 +327,7 @@ body {
input:disabled { input:disabled {
background-color: #fff; background-color: #fff;
color: #9b9fab; color: #737373;
} }
select:disabled { select:disabled {
...@@ -342,6 +342,7 @@ select:disabled { ...@@ -342,6 +342,7 @@ select:disabled {
/* 可选:统一背景色 */ /* 可选:统一背景色 */
background-color: white; background-color: white;
opacity: 1;
} }
.form-label-div { .form-label-div {
...@@ -360,3 +361,7 @@ select:disabled { ...@@ -360,3 +361,7 @@ select:disabled {
margin-bottom: 0.15rem; margin-bottom: 0.15rem;
flex-wrap: wrap; flex-wrap: wrap;
} }
/* 日期禁用文字颜色调整 */
.van-field__control:disabled {
-webkit-text-fill-color: #737373;
}
\ No newline at end of file
...@@ -36,11 +36,17 @@ window.addEventListener("load", function() { ...@@ -36,11 +36,17 @@ window.addEventListener("load", function() {
interfacePublicKey: API_KEY_MAP['submit']['publicKey'], interfacePublicKey: API_KEY_MAP['submit']['publicKey'],
interfacePrivateKey: API_KEY_MAP['submit']['privateKey'], interfacePrivateKey: API_KEY_MAP['submit']['privateKey'],
reqParams: { reqParams: {
sign: 25, // post 设置已读 sign: 36, // post 设置已读
merId: this.merId,
}, },
}, },
(res) => { (res) => {
if (!res) {
// 中台返回为undefined 重新请求
setTimeout(() => {
this.markAllAsRead()
}, 0)
return
}
var result = JSON.parse(res) var result = JSON.parse(res)
if (result && result.code == 200) { if (result && result.code == 200) {
vant.Toast({ vant.Toast({
......
...@@ -328,7 +328,7 @@ body { ...@@ -328,7 +328,7 @@ body {
input:disabled { input:disabled {
background-color: #fff; background-color: #fff;
color: #9b9fab; color: #737373;
} }
select:disabled { select:disabled {
...@@ -343,6 +343,8 @@ select:disabled { ...@@ -343,6 +343,8 @@ select:disabled {
/* 可选:统一背景色 */ /* 可选:统一背景色 */
background-color: white; background-color: white;
opacity: 1;
} }
.form-label-div { .form-label-div {
...@@ -366,3 +368,8 @@ iframe{ ...@@ -366,3 +368,8 @@ iframe{
height: 58vh; height: 58vh;
border: none; border: none;
} }
/* 日期禁用文字颜色调整 */
.van-field__control:disabled {
-webkit-text-fill-color: #737373;
}
\ No newline at end of file
...@@ -20,21 +20,21 @@ ...@@ -20,21 +20,21 @@
<div class="form-item"> <div class="form-item">
<span class="form-label title_require">单位名称</span> <span class="form-label title_require">单位名称</span>
<div class="form-input-wrap" style="font-size: 15px;color: #9b9fab;"> <div class="form-input-wrap" style="font-size: 15px;color: #737373;">
{{ formData.merName }} {{ formData.merName }}
</div> </div>
</div> </div>
<div class="form-item"> <div class="form-item">
<span class="form-label title_require">联系人</span> <span class="form-label title_require">联系人</span>
<div class="form-input-wrap" style="font-size: 15px;color: #9b9fab;"> <div class="form-input-wrap" style="font-size: 15px;color: #737373;">
{{ formData.merchantName }} {{ formData.merchantName }}
</div> </div>
</div> </div>
<div class="form-item"> <div class="form-item">
<span class="form-label title_require">电话</span> <span class="form-label title_require">电话</span>
<div class="form-input-wrap" style="font-size: 15px;color: #9b9fab;"> <div class="form-input-wrap" style="font-size: 15px;color: #737373;">
{{ formData.merchantPhone }} {{ formData.merchantPhone }}
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment