|
@@ -183,6 +183,7 @@
|
|
|
</template>
|
|
</template>
|
|
|
</van-cell>
|
|
</van-cell>
|
|
|
<van-field
|
|
<van-field
|
|
|
|
|
+ class="sendCode"
|
|
|
v-model="item.answerValue"
|
|
v-model="item.answerValue"
|
|
|
:placeholder="item.text"
|
|
:placeholder="item.text"
|
|
|
type="tel"
|
|
type="tel"
|
|
@@ -190,7 +191,7 @@
|
|
|
<template #button>
|
|
<template #button>
|
|
|
<van-button
|
|
<van-button
|
|
|
size="small"
|
|
size="small"
|
|
|
- type="primary"
|
|
|
|
|
|
|
+ style="color: white; background: rgb(0, 87, 186); border-radius: 6px"
|
|
|
@click="sendCode(item, index)"
|
|
@click="sendCode(item, index)"
|
|
|
:disabled="time != null"
|
|
:disabled="time != null"
|
|
|
>发送验证码<span v-if="time">({{ timeNum }})</span>
|
|
>发送验证码<span v-if="time">({{ timeNum }})</span>
|
|
@@ -579,6 +580,7 @@
|
|
|
</template>
|
|
</template>
|
|
|
</van-cell>
|
|
</van-cell>
|
|
|
<van-field
|
|
<van-field
|
|
|
|
|
+ class="sendCode"
|
|
|
v-model="childitem.collectionOptionList[0].answerValue"
|
|
v-model="childitem.collectionOptionList[0].answerValue"
|
|
|
:placeholder="item.text"
|
|
:placeholder="item.text"
|
|
|
type="tel"
|
|
type="tel"
|
|
@@ -586,7 +588,7 @@
|
|
|
<template #button>
|
|
<template #button>
|
|
|
<van-button
|
|
<van-button
|
|
|
size="small"
|
|
size="small"
|
|
|
- type="primary"
|
|
|
|
|
|
|
+ style="color: white; background: rgb(0, 87, 186); border-radius: 6px"
|
|
|
@click="sendCode(childitem, index)"
|
|
@click="sendCode(childitem, index)"
|
|
|
:disabled="time != null"
|
|
:disabled="time != null"
|
|
|
>发送验证码<span v-if="time">({{ timeNum }})</span>
|
|
>发送验证码<span v-if="time">({{ timeNum }})</span>
|
|
@@ -5240,7 +5242,7 @@ export default {
|
|
|
font-size: 16px;
|
|
font-size: 16px;
|
|
|
}
|
|
}
|
|
|
</style>
|
|
</style>
|
|
|
-<style>
|
|
|
|
|
|
|
+<style lang="scss">
|
|
|
.table-headermd {
|
|
.table-headermd {
|
|
|
font-size: 12px;
|
|
font-size: 12px;
|
|
|
text-align: center;
|
|
text-align: center;
|
|
@@ -5326,4 +5328,13 @@ export default {
|
|
|
.addStoreVisit .van-dialog {
|
|
.addStoreVisit .van-dialog {
|
|
|
overflow: visible;
|
|
overflow: visible;
|
|
|
}
|
|
}
|
|
|
|
|
+.addStoreVisit {
|
|
|
|
|
+ .sendCode {
|
|
|
|
|
+ border: none !important;
|
|
|
|
|
+ input {
|
|
|
|
|
+ border: 1px solid #f1f1f1;
|
|
|
|
|
+ height:35px
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
</style>
|
|
</style>
|