255 lines
5.6 KiB
Vue
255 lines
5.6 KiB
Vue
![]() |
<template>
|
||
|
<uni-card
|
||
|
:shadow="'0rpx 0rpx 10rpx 0rpx rgba(5,68,37,0.12)'"
|
||
|
:padding="'0px'"
|
||
|
:margin="'20px'"
|
||
|
:border="false"
|
||
|
>
|
||
|
<view class="title">车辆信息</view>
|
||
|
<u-form
|
||
|
labelPosition="left"
|
||
|
:model="model1"
|
||
|
:rules="rules"
|
||
|
ref="form"
|
||
|
:labelWidth="80"
|
||
|
:labelStyle="{ padding: '0rpx 10rpx' }"
|
||
|
:errorType="'border-bottom'"
|
||
|
>
|
||
|
<u-form-item
|
||
|
:prop="`formData.${item.key}`"
|
||
|
:label="item.name"
|
||
|
:required="item.required"
|
||
|
v-for="(item, index) in formAttrList"
|
||
|
:key="index"
|
||
|
@click="item.fn"
|
||
|
>
|
||
|
<u-input
|
||
|
v-if="item.type === 'input'"
|
||
|
v-model="(model1.formData as any)[item.key]"
|
||
|
:placeholder="`请输入${item.name}`"
|
||
|
clearable
|
||
|
:customStyle="{}"
|
||
|
border="none"
|
||
|
:disabled="item.disabled"
|
||
|
>
|
||
|
<template #suffix>
|
||
|
<text v-if="item.unit">
|
||
|
{{ item.unit }}
|
||
|
</text>
|
||
|
</template>
|
||
|
</u-input>
|
||
|
<u-input
|
||
|
v-if="item.type === 'select'"
|
||
|
:disabled="true"
|
||
|
:disabledColor="'#ffffff'"
|
||
|
v-model="(model1.formData as any)[item.key]"
|
||
|
:placeholder="`请选择${item.name}`"
|
||
|
clearable
|
||
|
:customStyle="{}"
|
||
|
border="none"
|
||
|
>
|
||
|
<template #suffix>
|
||
|
<text v-if="item.unit">
|
||
|
{{ item.unit }}
|
||
|
</text>
|
||
|
</template>
|
||
|
</u-input>
|
||
|
<template #right v-if="item.type === 'select'">
|
||
|
<u-icon name="arrow-right" @click="item.fn"></u-icon>
|
||
|
</template>
|
||
|
</u-form-item>
|
||
|
</u-form>
|
||
|
</uni-card>
|
||
|
|
||
|
<view class="btn-box-fix-btn">
|
||
|
<view
|
||
|
><u-button type="primary" shape="circle" @click="save"
|
||
|
>提交登记</u-button
|
||
|
></view
|
||
|
>
|
||
|
</view>
|
||
|
|
||
|
<block v-for="(item, index) in formAttrList" :key="index">
|
||
|
<u-action-sheet
|
||
|
v-if="item.type === 'select' && item.childKey"
|
||
|
:actions="contrlModalParams[item.childKey].list"
|
||
|
:title="contrlModalParams[item.childKey].title"
|
||
|
:show="contrlModalParams[item.childKey].isShow"
|
||
|
@select="(v: any) => handleSelect(item.childKey, v)"
|
||
|
@close="contrlModalParams[item.childKey].isShow = false"
|
||
|
:closeOnClickAction="true"
|
||
|
></u-action-sheet>
|
||
|
</block>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
import { VehicleApi, UserApi } from "@/services";
|
||
|
import pinia from "@/store";
|
||
|
import { useMemberStore } from "@/store/index";
|
||
|
const store = useMemberStore(pinia);
|
||
|
const model1 = reactive<any>({
|
||
|
formData: {},
|
||
|
});
|
||
|
const formAttrList = reactive<any>([
|
||
|
{
|
||
|
name: "车辆所属",
|
||
|
key: "ownerType",
|
||
|
type: "select",
|
||
|
childKey: "ownerType",
|
||
|
required: true,
|
||
|
unit: "",
|
||
|
fn: () => {
|
||
|
contrlModalParams["ownerType"].isShow = true;
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
name: "联系方式",
|
||
|
key: "contactInfo",
|
||
|
type: "input",
|
||
|
required: true,
|
||
|
unit: "",
|
||
|
},
|
||
|
{
|
||
|
name: "车牌号",
|
||
|
key: "licensePlate",
|
||
|
type: "input",
|
||
|
required: true,
|
||
|
unit: "",
|
||
|
},
|
||
|
{
|
||
|
name: "所在地",
|
||
|
key: "location",
|
||
|
type: "input",
|
||
|
required: true,
|
||
|
unit: "",
|
||
|
},
|
||
|
]);
|
||
|
const rules = reactive({
|
||
|
"formData.ownerType": {
|
||
|
type: "string",
|
||
|
required: true,
|
||
|
message: "请选择车辆所属",
|
||
|
trigger: ["blur", "change"],
|
||
|
},
|
||
|
"formData.contactInfo": {
|
||
|
type: "string",
|
||
|
required: true,
|
||
|
message: "请输入联系方式",
|
||
|
trigger: ["blur", "change"],
|
||
|
},
|
||
|
"formData.licensePlate": {
|
||
|
type: "string",
|
||
|
required: true,
|
||
|
message: "请输入车牌号",
|
||
|
trigger: ["blur", "change"],
|
||
|
},
|
||
|
"formData.location": {
|
||
|
type: "string",
|
||
|
required: true,
|
||
|
message: "请输入所在地",
|
||
|
trigger: ["blur", "change"],
|
||
|
},
|
||
|
});
|
||
|
|
||
|
const contrlModalParams = reactive<any>({
|
||
|
ownerType: {
|
||
|
isShow: false,
|
||
|
title: "车辆所属",
|
||
|
list: [{ name: "个人" }, { name: "单位" }],
|
||
|
},
|
||
|
});
|
||
|
|
||
|
const handleSelect = (key: string, v: any) => {
|
||
|
contrlModalParams[key].isShow = false;
|
||
|
if (key === "ownerType") {
|
||
|
model1.formData.ownerType = v.name;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* 校验
|
||
|
*/
|
||
|
const form = ref();
|
||
|
const check = () => {
|
||
|
return new Promise((resolve) => {
|
||
|
form.value
|
||
|
.validate()
|
||
|
.then((res: boolean) => {
|
||
|
resolve(res);
|
||
|
})
|
||
|
.catch((errors: any) => {
|
||
|
resolve(false);
|
||
|
uni.showToast({
|
||
|
icon: "none",
|
||
|
title: errors[0].message || "校验失败",
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
};
|
||
|
|
||
|
const save = () => {
|
||
|
check().then((res) => {
|
||
|
if (res) {
|
||
|
startSave();
|
||
|
}
|
||
|
});
|
||
|
// if (store.profile?.token) {
|
||
|
// check().then((res) => {
|
||
|
// if (res) {
|
||
|
// startSave();
|
||
|
// }
|
||
|
// });
|
||
|
// } else {
|
||
|
// uni.login({
|
||
|
// provider: "toutiao",
|
||
|
// success: function (loginRes) {
|
||
|
// UserApi.login({ code: loginRes.code }).then((res) => {
|
||
|
|
||
|
// });
|
||
|
// },
|
||
|
// });
|
||
|
// }
|
||
|
};
|
||
|
|
||
|
const startSave = () => {
|
||
|
VehicleApi.addRegis({
|
||
|
...model1.formData,
|
||
|
ownerType: model1.formData.ownerType === "个人" ? 0 : 1,
|
||
|
}).then((res) => {
|
||
|
if (res.code === 200) {
|
||
|
uni.showToast({
|
||
|
title: "提交成功",
|
||
|
});
|
||
|
uni.navigateBack();
|
||
|
}
|
||
|
});
|
||
|
};
|
||
|
</script>
|
||
|
<style lang="scss" scoped>
|
||
|
::v-deep .uni-card__content {
|
||
|
padding: 20rpx !important;
|
||
|
height: calc(100vh - 200px);
|
||
|
overflow: auto;
|
||
|
}
|
||
|
::v-deep .uni-card--shadow {
|
||
|
padding: 0px !important;
|
||
|
}
|
||
|
::v-deep .u-form-item {
|
||
|
height: auto;
|
||
|
border-bottom: 1rpx solid rgba(233, 233, 233, 0.76);
|
||
|
margin: 0px 20rpx;
|
||
|
padding: 0px 20rpx;
|
||
|
}
|
||
|
.title {
|
||
|
font-weight: 500;
|
||
|
font-size: 32rpx;
|
||
|
color: #000000;
|
||
|
}
|
||
|
.btn-box-fix-btn {
|
||
|
justify-content: center;
|
||
|
view {
|
||
|
width: 70%;
|
||
|
}
|
||
|
}
|
||
|
</style>
|