|
|
@@ -16,6 +16,7 @@
|
|
|
is-link
|
|
|
label-width="3em"
|
|
|
clearable
|
|
|
+ :disabled="showStatus"
|
|
|
label="状态"
|
|
|
placeholder=""
|
|
|
@click="showStatus = true"
|
|
|
@@ -39,6 +40,7 @@
|
|
|
label-width="3em"
|
|
|
label="月份"
|
|
|
placeholder=""
|
|
|
+ :disabled="showDate"
|
|
|
@click="showDate = true"
|
|
|
/>
|
|
|
<van-popup v-model="showDate" round position="bottom">
|
|
|
@@ -60,6 +62,7 @@
|
|
|
label-width="3em"
|
|
|
clearable
|
|
|
label="类型"
|
|
|
+ :disabled="typeStatus"
|
|
|
placeholder=""
|
|
|
@click="typeStatus = true"
|
|
|
/>
|
|
|
@@ -541,4 +544,14 @@ export default {
|
|
|
.topBox {
|
|
|
overflow: hidden;
|
|
|
}
|
|
|
+:deep.van-field--disabled{
|
|
|
+ color: #323233;
|
|
|
+}
|
|
|
+:deep.van-field--disabled .van-field__label{
|
|
|
+ color: #323233;
|
|
|
+}
|
|
|
+:deep .van-field__control[disabled]{
|
|
|
+ color: #323233;
|
|
|
+ -webkit-text-fill-color: #323233;
|
|
|
+ }
|
|
|
</style>
|