2024-12-24 11:28:23 +08:00
|
|
|
|
<script setup>
|
|
|
|
|
import { ref, reactive, computed, onMounted, onUnmounted } from "vue";
|
2024-12-28 00:05:20 +08:00
|
|
|
|
import { aesEncrypt } from "@/utils/crypto";
|
2024-12-24 11:28:23 +08:00
|
|
|
|
import { useRoute } from "vue-router";
|
|
|
|
|
import { useWebView } from "@/composables/useWebView";
|
|
|
|
|
import Authorization from "@/components/Authorization.vue";
|
|
|
|
|
import Payment from "@/components/Payment.vue";
|
2024-12-28 00:05:20 +08:00
|
|
|
|
import CarNumberInput from "@/components/CarNumberInput.vue";
|
2024-12-24 11:28:23 +08:00
|
|
|
|
|
|
|
|
|
const route = useRoute();
|
2024-12-28 00:05:20 +08:00
|
|
|
|
useWebView();
|
2024-12-24 11:28:23 +08:00
|
|
|
|
|
2024-12-28 00:05:20 +08:00
|
|
|
|
const showAuthorizationPopup = ref(false);
|
|
|
|
|
const authorization = ref(false);
|
|
|
|
|
const showPayment = ref(false);
|
|
|
|
|
const queryId = ref(null);
|
2024-12-24 11:28:23 +08:00
|
|
|
|
const name = ref("");
|
2024-12-28 00:05:20 +08:00
|
|
|
|
const nameMan = ref("");
|
|
|
|
|
const nameWoman = ref("");
|
2024-12-24 11:28:23 +08:00
|
|
|
|
const idCard = ref("");
|
2024-12-28 00:05:20 +08:00
|
|
|
|
const idCardMan = ref("");
|
|
|
|
|
const idCardWoman = ref("");
|
2024-12-24 11:28:23 +08:00
|
|
|
|
const mobile = ref("");
|
2024-12-28 00:05:20 +08:00
|
|
|
|
const bankCard = ref("");
|
|
|
|
|
const startDate = ref([])
|
|
|
|
|
const dateVal = ref("")
|
|
|
|
|
const showDatePicker = ref(false)
|
|
|
|
|
// 当前日期
|
|
|
|
|
const today = new Date();
|
|
|
|
|
const maxDate = today; // 最大日期为当前日期
|
|
|
|
|
// 最小日期为2000年1月1日
|
|
|
|
|
const minDate = new Date('2000-01-01');
|
2024-12-24 11:28:23 +08:00
|
|
|
|
const entName = ref("");
|
|
|
|
|
const entCode = ref("");
|
|
|
|
|
const verificationCode = ref("");
|
|
|
|
|
const agreeToTerms = ref(false);
|
|
|
|
|
const isCountingDown = ref(false);
|
|
|
|
|
const countdown = ref(60);
|
|
|
|
|
const feature = ref(route.params.feature);
|
|
|
|
|
const featureData = ref({});
|
2024-12-28 00:05:20 +08:00
|
|
|
|
const carLicense = ref("");
|
|
|
|
|
const carType = ref("小型汽车");
|
|
|
|
|
const carPickerVal = ref([{ value: "02", text: "小型汽车" }]);
|
|
|
|
|
const showCarTypePicker = ref(false);
|
|
|
|
|
const carTypeColumns = [
|
|
|
|
|
{ value: "01", text: "大型汽车" },
|
|
|
|
|
{ value: "02", text: "小型汽车" },
|
|
|
|
|
{ value: "03", text: "使馆汽车" },
|
|
|
|
|
{ value: "04", text: "领馆汽车" },
|
|
|
|
|
{ value: "05", text: "境外汽车" },
|
|
|
|
|
{ value: "06", text: "外籍汽车" },
|
|
|
|
|
{ value: "07", text: "普通摩托车" },
|
|
|
|
|
{ value: "08", text: "轻便摩托车" },
|
|
|
|
|
{ value: "09", text: "使馆摩托车" },
|
|
|
|
|
{ value: "10", text: "领馆摩托车" },
|
|
|
|
|
{ value: "11", text: "境外摩托车" },
|
|
|
|
|
{ value: "12", text: "外籍摩托车" },
|
|
|
|
|
{ value: "13", text: "低速车" },
|
|
|
|
|
{ value: "14", text: "拖拉机" },
|
|
|
|
|
{ value: "15", text: "挂车" },
|
|
|
|
|
{ value: "16", text: "教练汽车" },
|
|
|
|
|
{ value: "17", text: "教练摩托车" },
|
|
|
|
|
{ value: "20", text: "临时入境汽车" },
|
|
|
|
|
{ value: "21", text: "临时入境摩托车" },
|
|
|
|
|
{ value: "22", text: "临时行驶车" },
|
|
|
|
|
{ value: "23", text: "警用汽车" },
|
|
|
|
|
{ value: "24", text: "警用摩托车" },
|
|
|
|
|
{ value: "51", text: "新能源大型车" },
|
|
|
|
|
{ value: "52", text: "新能源小型车" },
|
|
|
|
|
];
|
|
|
|
|
const formatterDate = (type, option) => {
|
|
|
|
|
if (type === 'year') {
|
|
|
|
|
option.text += '年';
|
|
|
|
|
}
|
|
|
|
|
if (type === 'month') {
|
|
|
|
|
option.text += '月';
|
|
|
|
|
}
|
|
|
|
|
if (type === 'day') {
|
|
|
|
|
option.text += '日';
|
|
|
|
|
}
|
|
|
|
|
return option;
|
|
|
|
|
};
|
|
|
|
|
const onConfirmDate = ({ selectedValues, selectedOptions }) => {
|
|
|
|
|
console.log("selectedValues", selectedValues)
|
|
|
|
|
console.log("startDate", startDate.value)
|
|
|
|
|
dateVal.value = selectedOptions.map(item => item.text).join('');
|
|
|
|
|
showDatePicker.value = false
|
|
|
|
|
}
|
|
|
|
|
const carLicenseChange = (e) => {
|
|
|
|
|
console.log("carLicenseChange", e);
|
|
|
|
|
carLicense.value = e;
|
|
|
|
|
};
|
|
|
|
|
const onConfirmCarType = ({ selectedValues, selectedOptions }) => {
|
|
|
|
|
console.log(
|
|
|
|
|
"selectedValues, selectedOptions",
|
|
|
|
|
selectedValues,
|
|
|
|
|
selectedOptions
|
|
|
|
|
);
|
|
|
|
|
showCarTypePicker.value = false;
|
|
|
|
|
carPickerVal.value = selectedValues;
|
|
|
|
|
carType.value = selectedOptions[0].text;
|
|
|
|
|
};
|
2024-12-24 11:28:23 +08:00
|
|
|
|
onMounted(() => {
|
2024-12-28 00:05:20 +08:00
|
|
|
|
getProduct();
|
|
|
|
|
initAuthorization();
|
2024-12-24 11:28:23 +08:00
|
|
|
|
});
|
|
|
|
|
async function getProduct() {
|
|
|
|
|
const { data, error } = await useApiFetch(`/product/en/${feature.value}`)
|
|
|
|
|
.get()
|
|
|
|
|
.json();
|
|
|
|
|
|
|
|
|
|
if (data.value) {
|
|
|
|
|
featureData.value = data.value.data;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
function initAuthorization() {
|
|
|
|
|
if (noAuthorization.includes(feature.value)) {
|
2024-12-28 00:05:20 +08:00
|
|
|
|
authorization.value = true;
|
2024-12-24 11:28:23 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
const isPhoneNumberValid = computed(() => {
|
|
|
|
|
return /^1[3-9]\d{9}$/.test(mobile.value);
|
|
|
|
|
});
|
|
|
|
|
const isIdCardValid = computed(() => /^\d{17}[\dX]$/i.test(idCard.value));
|
2024-12-28 00:05:20 +08:00
|
|
|
|
const isIdCardManValid = computed(() => /^\d{17}[\dX]$/i.test(idCardMan.value));
|
|
|
|
|
const isIdCardWomanValid = computed(() =>
|
|
|
|
|
/^\d{17}[\dX]$/i.test(idCardWoman.value)
|
|
|
|
|
);
|
2024-12-24 11:28:23 +08:00
|
|
|
|
const isCreditCodeValid = computed(() => /^.{18}$/.test(entCode.value));
|
2024-12-28 00:05:20 +08:00
|
|
|
|
const isCarLicense = computed(() => carLicense.value.trim().length > 6);
|
|
|
|
|
const isBankCardValid = computed(() => {
|
|
|
|
|
const card = bankCard.value.replace(/\D/g, ""); // 移除所有非数字字符
|
|
|
|
|
if (card.length < 13 || card.length > 19) {
|
|
|
|
|
return false; // 校验长度
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let sum = 0;
|
|
|
|
|
let shouldDouble = false;
|
2024-12-24 11:28:23 +08:00
|
|
|
|
|
2024-12-28 00:05:20 +08:00
|
|
|
|
// 从卡号的右边开始遍历
|
|
|
|
|
for (let i = card.length - 1; i >= 0; i--) {
|
|
|
|
|
let digit = parseInt(card.charAt(i));
|
|
|
|
|
|
|
|
|
|
if (shouldDouble) {
|
|
|
|
|
digit *= 2;
|
|
|
|
|
if (digit > 9) {
|
|
|
|
|
digit -= 9;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sum += digit;
|
|
|
|
|
shouldDouble = !shouldDouble; // 反转是否乘 2
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return sum % 10 === 0; // 如果最终和能被 10 整除,则银行卡号有效
|
|
|
|
|
});
|
2024-12-24 11:28:23 +08:00
|
|
|
|
|
|
|
|
|
function handleSubmit() {
|
|
|
|
|
if (!agreeToTerms.value) {
|
|
|
|
|
showToast({ message: "请阅读并同意用户协议和隐私政策" });
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (
|
2024-12-28 00:05:20 +08:00
|
|
|
|
!validateField("name", name.value, (v) => v, "请输入姓名") ||
|
|
|
|
|
!validateField("nameMan", nameMan.value, (v) => v, "请输入男方姓名") ||
|
|
|
|
|
!validateField(
|
|
|
|
|
"nameWoman",
|
|
|
|
|
nameWoman.value,
|
|
|
|
|
(v) => v,
|
|
|
|
|
"请输入女方姓名"
|
|
|
|
|
) ||
|
|
|
|
|
!validateField(
|
|
|
|
|
"mobile",
|
|
|
|
|
mobile.value,
|
|
|
|
|
(v) => isPhoneNumberValid.value,
|
|
|
|
|
"请输入有效的手机号"
|
|
|
|
|
) ||
|
|
|
|
|
!validateField(
|
|
|
|
|
"idCard",
|
|
|
|
|
idCard.value,
|
|
|
|
|
(v) => isIdCardValid.value,
|
|
|
|
|
"请输入有效的身份证号码"
|
|
|
|
|
) ||
|
|
|
|
|
!validateField(
|
|
|
|
|
"idCardMan",
|
|
|
|
|
idCardMan.value,
|
|
|
|
|
(v) => isIdCardManValid.value,
|
|
|
|
|
"请输入有效的男方身份证号码"
|
|
|
|
|
) ||
|
|
|
|
|
!validateField(
|
|
|
|
|
"idCardWoman",
|
|
|
|
|
idCardWoman.value,
|
|
|
|
|
(v) => isIdCardWomanValid.value,
|
|
|
|
|
"请输入有效的女方身份证号码"
|
|
|
|
|
) ||
|
|
|
|
|
!validateField(
|
|
|
|
|
"bankCard",
|
|
|
|
|
bankCard.value,
|
|
|
|
|
(v) => isBankCardValid.value,
|
|
|
|
|
"请输入有效的银行卡号码"
|
|
|
|
|
) ||
|
|
|
|
|
!validateField(
|
|
|
|
|
"verificationCode",
|
|
|
|
|
verificationCode.value,
|
|
|
|
|
(v) => v,
|
|
|
|
|
"请输入验证码"
|
|
|
|
|
) ||
|
|
|
|
|
!validateField(
|
|
|
|
|
"carPickerVal",
|
|
|
|
|
carPickerVal.value,
|
|
|
|
|
(v) => v,
|
|
|
|
|
"请选择车辆类型"
|
|
|
|
|
) ||
|
|
|
|
|
!validateField(
|
|
|
|
|
"carLicense",
|
|
|
|
|
carLicense.value,
|
|
|
|
|
(v) => isCarLicense.value,
|
|
|
|
|
"请输入正确的车牌号"
|
|
|
|
|
) ||
|
|
|
|
|
!validateField("entName", entName.value, (v) => v, "请输入企业名称") ||
|
|
|
|
|
!validateField(
|
|
|
|
|
"entCode",
|
|
|
|
|
entCode.value,
|
|
|
|
|
(v) => isCreditCodeValid.value,
|
|
|
|
|
"请输入统一社会信用代码"
|
|
|
|
|
) ||
|
|
|
|
|
!validateField(
|
|
|
|
|
"date",
|
|
|
|
|
dateVal.value,
|
|
|
|
|
(v) => v,
|
|
|
|
|
"请选择日期"
|
|
|
|
|
)
|
|
|
|
|
|
2024-12-24 11:28:23 +08:00
|
|
|
|
) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2024-12-28 00:05:20 +08:00
|
|
|
|
submitRequest();
|
2024-12-24 11:28:23 +08:00
|
|
|
|
}
|
|
|
|
|
const validateField = (field, value, validationFn, errorMessage) => {
|
|
|
|
|
if (isHasInput(field) && !validationFn(value)) {
|
|
|
|
|
showToast({ message: errorMessage });
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
2024-12-28 00:05:20 +08:00
|
|
|
|
};
|
2024-12-24 11:28:23 +08:00
|
|
|
|
|
2024-12-28 00:05:20 +08:00
|
|
|
|
const defaultInput = ["name", "idCard", "mobile", "verificationCode"];
|
2024-12-24 11:28:23 +08:00
|
|
|
|
const specialProduct = {
|
2024-12-28 00:05:20 +08:00
|
|
|
|
toc_EnterpriseLawsuit: ["entName", "entCode", "mobile", "verificationCode"],
|
|
|
|
|
toc_PhoneThreeElements: ["name", "idCard", "mobile"],
|
|
|
|
|
toc_IDCardTwoElements: ["name", "idCard"],
|
|
|
|
|
toc_PhoneTwoElements: ["name", "mobile"],
|
|
|
|
|
toc_PersonVehicleVerification: ["name", "carType", "carLicense"],
|
|
|
|
|
toc_VehiclesUnderName: ["name", "idCard"],
|
|
|
|
|
toc_DualMarriage: ["nameMan", "idCardMan", "nameWoman", "idCardWoman"],
|
|
|
|
|
toc_BankCardBlacklist: ["name", "idCard", "mobile", "bankCard"],
|
|
|
|
|
toc_BankCardFourElements: ["name", "idCard", "mobile", "bankCard"],
|
|
|
|
|
toc_NaturalLifeStatus: ["name", "idCard"],
|
|
|
|
|
toc_NetworkDuration: ["mobile"],
|
|
|
|
|
toc_PhoneSecondaryCard: ["mobile", "date"],
|
|
|
|
|
toc_PhoneNumberRisk: ["mobile"],
|
|
|
|
|
};
|
|
|
|
|
const noAuthorization = [
|
|
|
|
|
"toc_EnterpriseLawsuit",
|
|
|
|
|
"toc_PhoneThreeElements",
|
|
|
|
|
"toc_IDCardTwoElements",
|
|
|
|
|
"toc_PhoneTwoElements",
|
|
|
|
|
"toc_PersonVehicleVerification",
|
|
|
|
|
"toc_VehiclesUnderName",
|
|
|
|
|
"toc_DualMarriage",
|
|
|
|
|
"toc_BankCardBlacklist",
|
|
|
|
|
"toc_NaturalLifeStatus",
|
|
|
|
|
"toc_NetworkDuration",
|
|
|
|
|
"toc_PhoneSecondaryCard",
|
|
|
|
|
"toc_PhoneNumberRisk",
|
|
|
|
|
"toc_BankCardFourElements",
|
|
|
|
|
];
|
2024-12-24 11:28:23 +08:00
|
|
|
|
const isHasInput = (input) => {
|
|
|
|
|
if (specialProduct[feature.value]) {
|
2024-12-28 00:05:20 +08:00
|
|
|
|
return specialProduct[feature.value].includes(input);
|
2024-12-24 11:28:23 +08:00
|
|
|
|
} else {
|
2024-12-28 00:05:20 +08:00
|
|
|
|
return defaultInput.includes(input);
|
2024-12-24 11:28:23 +08:00
|
|
|
|
}
|
2024-12-28 00:05:20 +08:00
|
|
|
|
};
|
2024-12-24 11:28:23 +08:00
|
|
|
|
async function submitRequest() {
|
2024-12-28 00:05:20 +08:00
|
|
|
|
const req = {};
|
|
|
|
|
if (isHasInput("name")) {
|
|
|
|
|
req.name = name.value;
|
|
|
|
|
}
|
|
|
|
|
if (isHasInput("idCard")) {
|
|
|
|
|
req.id_card = idCard.value;
|
|
|
|
|
}
|
|
|
|
|
if (isHasInput("nameMan")) {
|
|
|
|
|
req.name_man = nameMan.value;
|
2024-12-24 11:28:23 +08:00
|
|
|
|
}
|
2024-12-28 00:05:20 +08:00
|
|
|
|
if (isHasInput("idCardMan")) {
|
|
|
|
|
req.id_card_man = idCardMan.value;
|
2024-12-24 11:28:23 +08:00
|
|
|
|
}
|
2024-12-28 00:05:20 +08:00
|
|
|
|
if (isHasInput("nameWoman")) {
|
|
|
|
|
req.name_woman = nameWoman.value;
|
2024-12-24 11:28:23 +08:00
|
|
|
|
}
|
2024-12-28 00:05:20 +08:00
|
|
|
|
if (isHasInput("idCardWoman")) {
|
|
|
|
|
req.id_card_woman = idCardWoman.value;
|
2024-12-24 11:28:23 +08:00
|
|
|
|
}
|
2024-12-28 00:05:20 +08:00
|
|
|
|
if (isHasInput("bankCard")) {
|
|
|
|
|
req.bank_card = bankCard.value.replace(/\D/g, "");
|
2024-12-24 11:28:23 +08:00
|
|
|
|
}
|
2024-12-28 00:05:20 +08:00
|
|
|
|
if (isHasInput("mobile")) {
|
|
|
|
|
req.mobile = mobile.value;
|
2024-12-24 11:28:23 +08:00
|
|
|
|
}
|
2024-12-28 00:05:20 +08:00
|
|
|
|
if (isHasInput("verificationCode")) {
|
|
|
|
|
req.code = verificationCode.value;
|
|
|
|
|
}
|
|
|
|
|
if (isHasInput("carType")) {
|
|
|
|
|
req.car_type = carPickerVal.value[0].value;
|
|
|
|
|
}
|
|
|
|
|
if (isHasInput("carLicense")) {
|
|
|
|
|
req.car_license = carLicense.value.trim();
|
|
|
|
|
}
|
|
|
|
|
if (isHasInput("date")) {
|
|
|
|
|
req.start_date = startDate.value.map(item => item).join('')
|
|
|
|
|
}
|
|
|
|
|
if (isHasInput("entName")) {
|
|
|
|
|
req.ent_name = entName.value;
|
|
|
|
|
}
|
|
|
|
|
if (isHasInput("entCode")) {
|
|
|
|
|
req.ent_code = entCode.value;
|
|
|
|
|
}
|
|
|
|
|
console.log("req", req);
|
|
|
|
|
const reqStr = JSON.stringify(req);
|
|
|
|
|
const encodeData = aesEncrypt(reqStr, "ff83609b2b24fc73196aac3d3dfb874f");
|
2024-12-24 11:28:23 +08:00
|
|
|
|
const { data, error } = await useApiFetch(`/query/service/${feature.value}`)
|
|
|
|
|
.post({ data: encodeData })
|
|
|
|
|
.json();
|
|
|
|
|
if (data.value.code === 200) {
|
2024-12-28 00:05:20 +08:00
|
|
|
|
queryId.value = data.value.data.id;
|
2024-12-24 11:28:23 +08:00
|
|
|
|
if (authorization.value) {
|
2024-12-28 00:05:20 +08:00
|
|
|
|
showPayment.value = true;
|
2024-12-24 11:28:23 +08:00
|
|
|
|
} else {
|
2024-12-28 00:05:20 +08:00
|
|
|
|
showAuthorizationPopup.value = true;
|
2024-12-24 11:28:23 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async function sendVerificationCode() {
|
2024-12-28 00:05:20 +08:00
|
|
|
|
if (isCountingDown.value || !isPhoneNumberValid.value) return;
|
2024-12-24 11:28:23 +08:00
|
|
|
|
if (!isPhoneNumberValid.value) {
|
|
|
|
|
showToast({ message: "请输入有效的手机号" });
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const { data, error } = await useApiFetch("/auth/sendSms")
|
|
|
|
|
.post({ mobile: mobile.value, actionType: "query" })
|
|
|
|
|
.json();
|
|
|
|
|
|
|
|
|
|
if (!error.value && data.value.code === 200) {
|
|
|
|
|
showToast({ message: "验证码发送成功", type: "success" });
|
|
|
|
|
startCountdown();
|
|
|
|
|
} else {
|
|
|
|
|
showToast({ message: "验证码发送失败,请重试" });
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
let timer = null;
|
|
|
|
|
|
|
|
|
|
function startCountdown() {
|
|
|
|
|
isCountingDown.value = true;
|
|
|
|
|
countdown.value = 60;
|
|
|
|
|
timer = setInterval(() => {
|
|
|
|
|
if (countdown.value > 0) {
|
|
|
|
|
countdown.value--;
|
|
|
|
|
} else {
|
|
|
|
|
clearInterval(timer);
|
|
|
|
|
isCountingDown.value = false;
|
|
|
|
|
}
|
|
|
|
|
}, 1000);
|
|
|
|
|
}
|
|
|
|
|
function toUserAgreement() {
|
|
|
|
|
uni.navigateTo({
|
2024-12-28 00:05:20 +08:00
|
|
|
|
url: "/pages/userAgreement",
|
|
|
|
|
});
|
2024-12-24 11:28:23 +08:00
|
|
|
|
}
|
|
|
|
|
function toPrivacyPolicy() {
|
|
|
|
|
uni.navigateTo({
|
2024-12-28 00:05:20 +08:00
|
|
|
|
url: "/pages/privacyPolicy",
|
|
|
|
|
});
|
2024-12-24 11:28:23 +08:00
|
|
|
|
}
|
|
|
|
|
// 用户同意
|
|
|
|
|
const agreed = () => {
|
2024-12-28 00:05:20 +08:00
|
|
|
|
showAuthorizationPopup.value = false;
|
|
|
|
|
authorization.value = true;
|
|
|
|
|
showPayment.value = true;
|
2024-12-24 11:28:23 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 用户取消
|
|
|
|
|
const cancel = () => {
|
2024-12-28 00:05:20 +08:00
|
|
|
|
showAuthorizationPopup.value = false;
|
2024-12-24 11:28:23 +08:00
|
|
|
|
};
|
|
|
|
|
const toExample = () => {
|
|
|
|
|
uni.navigateTo({
|
2024-12-28 00:05:20 +08:00
|
|
|
|
url: "/pages/example",
|
|
|
|
|
});
|
2024-12-24 11:28:23 +08:00
|
|
|
|
};
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
|
if (timer) {
|
|
|
|
|
clearInterval(timer);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<div class="inquire-bg min-h-screen p-6">
|
|
|
|
|
<div class="mb-6 text-center text-3xl font-bold text-blue-700">
|
|
|
|
|
{{ featureData.product_name }}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card">
|
|
|
|
|
<div class="mb-4 text-lg font-semibold text-gray-800">基本信息</div>
|
|
|
|
|
<div class="mb-4 flex items-center" v-if="isHasInput('name')">
|
|
|
|
|
<label for="name" class="form-label">姓名</label>
|
|
|
|
|
<input v-model="name" id="name" type="text" placeholder="请输入姓名" class="form-input" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-4 flex items-center" v-if="isHasInput('idCard')">
|
|
|
|
|
<label for="idCard" class="form-label">身份证号</label>
|
|
|
|
|
<input v-model="idCard" id="idCard" type="text" placeholder="请输入身份证号" class="form-input" />
|
|
|
|
|
</div>
|
2024-12-28 00:05:20 +08:00
|
|
|
|
<!-- 双人婚姻 -->
|
|
|
|
|
<div class="mb-4 flex items-center" v-if="isHasInput('nameMan')">
|
|
|
|
|
<label for="nameMan" class="form-label">男方姓名</label>
|
|
|
|
|
<input v-model="nameMan" id="nameMan" type="text" placeholder="请输入男方姓名" class="form-input" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-4 flex items-center" v-if="isHasInput('idCardMan')">
|
|
|
|
|
<label for="idCardMan" class="form-label">男方身份证号</label>
|
|
|
|
|
<input v-model="idCardMan" id="idCardMan" type="text" placeholder="请输入男方身份证号" class="form-input" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-4 flex items-center" v-if="isHasInput('nameWoman')">
|
|
|
|
|
<label for="nameWoman" class="form-label">女方姓名</label>
|
|
|
|
|
<input v-model="nameWoman" id="nameWoman" type="text" placeholder="请输入女方姓名" class="form-input" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-4 flex items-center" v-if="isHasInput('idCardWoman')">
|
|
|
|
|
<label for="idCardWoman" class="form-label">女方身份证号</label>
|
|
|
|
|
<input v-model="idCardWoman" id="idCardWoman" type="text" placeholder="请输入女方身份证号" class="form-input" />
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 双人婚姻 -->
|
|
|
|
|
|
2024-12-24 11:28:23 +08:00
|
|
|
|
<div class="mb-4 flex items-center" v-if="isHasInput('entName')">
|
|
|
|
|
<label for="entName" class="form-label">企业名称</label>
|
|
|
|
|
<input v-model="entName" id="entName" type="text" placeholder="请输入企业名称" class="form-input" />
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-4 flex items-center" v-if="isHasInput('entCode')">
|
|
|
|
|
<label for="entCode" class="form-label">统一社会信用代码</label>
|
|
|
|
|
<input v-model="entCode" id="entCode" type="text" placeholder="请输入统一社会信用代码" class="form-input" />
|
|
|
|
|
</div>
|
2024-12-28 00:05:20 +08:00
|
|
|
|
<div class="mb-4 flex items-center" v-if="isHasInput('carType')">
|
|
|
|
|
<label for="carType" class="form-label">汽车类型</label>
|
|
|
|
|
<van-field id="carType" v-model="carType" is-link readonly placeholder="点击选择汽车类型"
|
|
|
|
|
@click="showCarTypePicker = true" class="form-input" />
|
|
|
|
|
<van-popup v-model:show="showCarTypePicker" destroy-on-close round position="bottom">
|
|
|
|
|
<van-picker :model-value="carPickerVal" :columns="carTypeColumns"
|
|
|
|
|
@cancel="showCarTypePicker = false" @confirm="onConfirmCarType" />
|
|
|
|
|
</van-popup>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="mb-4 flex items-center" v-if="isHasInput('carLicense')">
|
|
|
|
|
<!-- <label for="entCode" class="form-label">车牌号</label> -->
|
|
|
|
|
<CarNumberInput class="form-input" @number-input-result="carLicenseChange" :default-str="carLicense">
|
|
|
|
|
</CarNumberInput>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-4 flex items-center" v-if="isHasInput('bankCard')">
|
|
|
|
|
<label for="bankCard" class="form-label">银行卡号</label>
|
|
|
|
|
<input v-model="bankCard" id="bankCard" type="tel" placeholder="请输入银行卡号" class="form-input" />
|
|
|
|
|
</div>
|
2024-12-24 11:28:23 +08:00
|
|
|
|
<div class="mb-4 flex items-center" v-if="isHasInput('mobile')">
|
|
|
|
|
<label for="mobile" class="form-label">手机号</label>
|
|
|
|
|
<input v-model="mobile" id="mobile" type="tel" placeholder="请输入手机号" class="form-input" />
|
|
|
|
|
</div>
|
2024-12-28 00:05:20 +08:00
|
|
|
|
<div class="mb-4 flex items-center" v-if="isHasInput('date')">
|
|
|
|
|
<label for="date" class="form-label">业务日期</label>
|
|
|
|
|
<van-field id="date" v-model="dateVal" is-link readonly placeholder="点击选择日期"
|
|
|
|
|
@click="showDatePicker = true" class="form-input" />
|
|
|
|
|
<van-popup v-model:show="showDatePicker" destroy-on-close round position="bottom">
|
|
|
|
|
<van-date-picker v-model="startDate" :formatter="formatterDate" :min-date="minDate"
|
|
|
|
|
:max-date="maxDate" title="选择日期" @confirm="onConfirmDate" @cancel="showDatePicker = false" />
|
|
|
|
|
</van-popup>
|
|
|
|
|
</div>
|
2024-12-24 11:28:23 +08:00
|
|
|
|
<div class="mb-4 flex items-center" v-if="isHasInput('verificationCode')">
|
|
|
|
|
<label for="verificationCode" class="form-label">验证码</label>
|
|
|
|
|
<div class="flex-1 flex items-center">
|
|
|
|
|
<input v-model="verificationCode" id="verificationCode" type="text" placeholder="请输入验证码"
|
|
|
|
|
class="form-input flex-1" />
|
|
|
|
|
<button class="ml-2 px-4 py-2 text-sm text-blue-500 disabled:text-gray-400"
|
|
|
|
|
:disabled="isCountingDown || !isPhoneNumberValid" @click="sendVerificationCode">
|
2024-12-28 00:05:20 +08:00
|
|
|
|
{{
|
|
|
|
|
isCountingDown
|
|
|
|
|
? `${countdown}s重新获取`
|
|
|
|
|
: "获取验证码"
|
|
|
|
|
}}
|
2024-12-24 11:28:23 +08:00
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="mb-4 flex items-center">
|
|
|
|
|
<input type="checkbox" v-model="agreeToTerms" />
|
|
|
|
|
<span class="ml-2 text-xs text-gray-400">
|
|
|
|
|
我已阅读并同意
|
|
|
|
|
<span @click="toUserAgreement" class="text-blue-500 underline">用户协议</span>和
|
|
|
|
|
<span @click="toPrivacyPolicy" class="text-blue-500 underline">隐私政策</span>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="flex items-center">
|
|
|
|
|
<button class="w-24 rounded-l-xl bg-blue-400 py-2 text-white" @click="toExample">
|
|
|
|
|
示例报告
|
|
|
|
|
</button>
|
|
|
|
|
<button class="flex-1 rounded-r-xl bg-blue-500 py-2 text-white" @click="handleSubmit">
|
|
|
|
|
立即查询
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card mt-4">
|
|
|
|
|
<div class="mb-6 text-xl text-gray-800 font-bold">
|
|
|
|
|
{{ featureData.product_name }}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="mb-4 text-gray-600 leading-relaxed">
|
|
|
|
|
{{ featureData.description }}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="mb-6 flex items-center justify-between">
|
2024-12-28 00:05:20 +08:00
|
|
|
|
<div class="text-lg text-gray-500">价格:</div>
|
2024-12-24 11:28:23 +08:00
|
|
|
|
<div class="text-lg text-blue-600 font-semibold">
|
|
|
|
|
¥{{ featureData.sell_price }}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-12-28 00:05:20 +08:00
|
|
|
|
<template v-if="featureData.features && featureData.features.length > 1">
|
|
|
|
|
<div class="mb-4 text-lg text-gray-800 font-semibold">
|
|
|
|
|
报告包含内容
|
2024-12-24 11:28:23 +08:00
|
|
|
|
</div>
|
2024-12-28 00:05:20 +08:00
|
|
|
|
<div class="grid grid-cols-2 gap-4">
|
|
|
|
|
<div v-for="(feature, index) in featureData.features" :key="feature.id"
|
|
|
|
|
class="rounded-lg py-2 text-center text-sm text-gray-700 font-medium" :class="[
|
|
|
|
|
(Math.floor(index / 2) + (index % 2)) % 2 === 0
|
|
|
|
|
? 'bg-gradient-to-r from-blue-200 via-blue-200 to-blue-100'
|
|
|
|
|
: 'bg-gradient-to-r from-sky-200 via-sky-200 to-sky-100',
|
|
|
|
|
]">
|
|
|
|
|
{{ feature.name }}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
2024-12-24 11:28:23 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 底部弹出 -->
|
|
|
|
|
<van-popup v-model:show="showAuthorizationPopup" position="bottom" :style="{ height: '80%' }">
|
|
|
|
|
<Authorization :style="{ height: '100%' }" :name="name" :id-card="idCard" :mobile="mobile" @agreed="agreed"
|
|
|
|
|
@cancel="cancel" />
|
|
|
|
|
</van-popup>
|
|
|
|
|
<Payment v-model="showPayment" :data="featureData" :id="queryId" @close="showPayment = false" />
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
.form-label {
|
|
|
|
|
@apply w-20 text-sm font-medium text-gray-700 flex-shrink-0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-28 00:05:20 +08:00
|
|
|
|
.form-input::placeholder {
|
|
|
|
|
color: var(--van-text-color-3);
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-24 11:28:23 +08:00
|
|
|
|
.form-input {
|
|
|
|
|
@apply w-full border-b border-gray-200 px-2 py-2 focus:outline-none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.inquire-bg {
|
|
|
|
|
background: url("@/assets/images/inquire_banner_2.png") no-repeat;
|
|
|
|
|
background-position: center;
|
|
|
|
|
background-size: cover;
|
|
|
|
|
}
|
|
|
|
|
</style>
|