|
@@ -42,8 +42,14 @@ const carTypeList = ref([
|
|
|
icon: "jiaoche",
|
|
|
query: { liceCar: 1 },
|
|
|
sujectList: [
|
|
|
- { name: "科目一", query: { subject1: 1 } },
|
|
|
- { name: "科目四", query: { subject4: 1 } },
|
|
|
+ {
|
|
|
+ name: "科目一",
|
|
|
+ query: { name: "科目一", cert: "轿车C1/C2/C3", subject1: 1 },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "科目四",
|
|
|
+ query: { name: "科目四", cert: "轿车C1/C2/C3", subject4: 1 },
|
|
|
+ },
|
|
|
],
|
|
|
},
|
|
|
{
|
|
@@ -52,8 +58,14 @@ const carTypeList = ref([
|
|
|
icon: "keche",
|
|
|
query: { liceBus: 1 },
|
|
|
sujectList: [
|
|
|
- { name: "科目一", query: { subject1: 1 } },
|
|
|
- { name: "科目四", query: { subject4: 1 } },
|
|
|
+ {
|
|
|
+ name: "科目一",
|
|
|
+ query: { name: "科目一", cert: "客车A1/A3/B1", subject1: 1 },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "科目四",
|
|
|
+ query: { name: "科目四", cert: "客车A1/A3/B1", subject4: 1 },
|
|
|
+ },
|
|
|
],
|
|
|
},
|
|
|
{
|
|
@@ -62,8 +74,14 @@ const carTypeList = ref([
|
|
|
icon: "huoche",
|
|
|
query: { liceTruck: 1 },
|
|
|
sujectList: [
|
|
|
- { name: "科目一", query: { subject1: 1 } },
|
|
|
- { name: "科目四", query: { subject4: 1 } },
|
|
|
+ {
|
|
|
+ name: "科目一",
|
|
|
+ query: { name: "科目一", cert: "货车A2/B2", subject1: 1 },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "科目四",
|
|
|
+ query: { name: "科目四", cert: "货车A2/B2", subject4: 1 },
|
|
|
+ },
|
|
|
],
|
|
|
},
|
|
|
{
|
|
@@ -72,8 +90,14 @@ const carTypeList = ref([
|
|
|
icon: "motuoche",
|
|
|
query: { liceMoto: 1 },
|
|
|
sujectList: [
|
|
|
- { name: "科目一", query: { subject1: 1 } },
|
|
|
- { name: "科目四", query: { subject4: 1 } },
|
|
|
+ {
|
|
|
+ name: "科目一",
|
|
|
+ query: { name: "科目一", cert: "摩托车D/E/F", subject1: 1 },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: "科目四",
|
|
|
+ query: { name: "科目四", cert: "摩托车D/E/F", subject4: 1 },
|
|
|
+ },
|
|
|
],
|
|
|
},
|
|
|
]);
|