|
@@ -139,9 +139,6 @@ const permissionList = [
|
|
|
const isFile = () => {
|
|
|
return from.file && from.file.length;
|
|
|
};
|
|
|
-const isString = v => {
|
|
|
- return !!v && typeof v == 'string' && isNaN(v);
|
|
|
-};
|
|
|
const topWidth = ref(window.$originData.orginParames.availWidth);
|
|
|
const from = reactive({
|
|
|
name: '',
|
|
@@ -226,8 +223,7 @@ const onSubmit = () => {
|
|
|
overflow-x: hidden;
|
|
|
width: 100vw;
|
|
|
min-height: 100vh;
|
|
|
- background-color: #0927A1;
|
|
|
- background-size: 100% 100%;
|
|
|
+ background: linear-gradient(270deg, #1C4DD6 0%, #1D18BC 100%);
|
|
|
font-weight: 400;
|
|
|
padding-bottom: 20px;
|
|
|
|
|
@@ -284,6 +280,17 @@ const onSubmit = () => {
|
|
|
background-color: rgb(0, 0, 0, 0);
|
|
|
color: #FFFFFF;
|
|
|
}
|
|
|
+
|
|
|
+ .van-field__body input {
|
|
|
+ &::placeholder,
|
|
|
+ &::-webkit-input-placeholder,
|
|
|
+ &:-moz-placeholder,
|
|
|
+ &::-moz-placeholder,
|
|
|
+ &:-ms-input-placeholder {
|
|
|
+ color: rgba(255, 255, 255, 0.6);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</style>
|