|
@@ -78,7 +78,10 @@
|
|
|
<TextUI v-model="item.passwordConfirm" :item="{...passwordConfirmObj}"></TextUI>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <v-btn class="mb-5 mt-3" style="width: 100%; text-align: center;" color="primary" prepend-icon="mdi-plus-box" @click="addMore">继续添加</v-btn>
|
|
|
+ <div class="d-flex flex-column align-center">
|
|
|
+ <v-btn class="my-3" color="warning" variant="text" prepend-icon="mdi-plus-box" @click="addMore">继续添加联系人</v-btn>
|
|
|
+ <span style="font-size: 13px; color: #999;">提示:信息确认无误后请点击下方提交按钮</span>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</CtDialog>
|
|
|
</div>
|
|
@@ -326,9 +329,10 @@ const contactSubmit = () => {
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
- if (e.password && e.passwordConfirm && e.password !== e.passwordConfirm)
|
|
|
- falseValueIndex = index
|
|
|
- falseKey = 'compareFalse'
|
|
|
+ if (e.password && e.passwordConfirm && e.password !== e.passwordConfirm) {
|
|
|
+ falseValueIndex = index
|
|
|
+ falseKey = 'compareFalse'
|
|
|
+ }
|
|
|
})
|
|
|
const textList = {
|
|
|
contactName: '姓名',
|