|
@@ -14,7 +14,6 @@
|
|
|
@input="form.name = $event.detail"
|
|
@input="form.name = $event.detail"
|
|
|
placeholder="请填写您的姓名"
|
|
placeholder="请填写您的姓名"
|
|
|
:border="false"
|
|
:border="false"
|
|
|
- custom-style="padding-top:23px;height:83px;"
|
|
|
|
|
label="联系人"
|
|
label="联系人"
|
|
|
/>
|
|
/>
|
|
|
<van-field
|
|
<van-field
|
|
@@ -23,7 +22,6 @@
|
|
|
@input="form.phone = $event.detail"
|
|
@input="form.phone = $event.detail"
|
|
|
placeholder="请填写您的手机号码"
|
|
placeholder="请填写您的手机号码"
|
|
|
:border="false"
|
|
:border="false"
|
|
|
- custom-style="height:70px;"
|
|
|
|
|
label="手机号"
|
|
label="手机号"
|
|
|
/>
|
|
/>
|
|
|
<van-field
|
|
<van-field
|
|
@@ -33,7 +31,6 @@
|
|
|
is-link
|
|
is-link
|
|
|
placeholder="请选择省市区"
|
|
placeholder="请选择省市区"
|
|
|
:border="false"
|
|
:border="false"
|
|
|
- custom-style="height:70px;"
|
|
|
|
|
label="地区"
|
|
label="地区"
|
|
|
/>
|
|
/>
|
|
|
<van-field
|
|
<van-field
|
|
@@ -42,7 +39,6 @@
|
|
|
placeholder="请填写您的详细地址"
|
|
placeholder="请填写您的详细地址"
|
|
|
:border="false"
|
|
:border="false"
|
|
|
label="详细地址"
|
|
label="详细地址"
|
|
|
- custom-style="height:70px;"
|
|
|
|
|
type="textarea"
|
|
type="textarea"
|
|
|
/>
|
|
/>
|
|
|
</van-cell-group>
|
|
</van-cell-group>
|
|
@@ -182,6 +178,28 @@ export default {
|
|
|
};
|
|
};
|
|
|
</script>
|
|
</script>
|
|
|
<style lang="less" scoped>
|
|
<style lang="less" scoped>
|
|
|
|
|
+/deep/ .van-cell {
|
|
|
|
|
+ --cell-vertical-padding: 23px;
|
|
|
|
|
+ --cell-horizontal-padding: 20px;
|
|
|
|
|
+ --field-label-color: #000000;
|
|
|
|
|
+ --cell-text-color: #000;
|
|
|
|
|
+ .van-field__label,
|
|
|
|
|
+ .van-cell__title {
|
|
|
|
|
+ font-weight: bold;
|
|
|
|
|
+ width: 70px;
|
|
|
|
|
+ max-width: 70px !important;
|
|
|
|
|
+ min-width: 70px !important;
|
|
|
|
|
+ flex-shrink: 0;
|
|
|
|
|
+ margin-right: 10px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+ .van-cell__value {
|
|
|
|
|
+ text-align: left;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ &::after {
|
|
|
|
|
+ left: 100px !important;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
.container {
|
|
.container {
|
|
|
.box-but {
|
|
.box-but {
|
|
|
background: #f5f7fa;
|
|
background: #f5f7fa;
|