diff --git a/src/views/drivingSchool/BusinessRecord/api/index.js b/src/views/drivingSchool/BusinessRecord/api/index.js
new file mode 100644
index 0000000..4ec5431
--- /dev/null
+++ b/src/views/drivingSchool/BusinessRecord/api/index.js
@@ -0,0 +1,12 @@
+import request from '@/utils/request'
+
+
+// 获得业务经理招生信息分页
+export function getBusinessManager(params) {
+ return request({
+ url: '/base/dl-drive-school-coach/getBusinessManager',
+ method: 'get',
+ params
+ })
+}
+
diff --git a/src/views/drivingSchool/BusinessRecord/index.vue b/src/views/drivingSchool/BusinessRecord/index.vue
new file mode 100644
index 0000000..ae6c4df
--- /dev/null
+++ b/src/views/drivingSchool/BusinessRecord/index.vue
@@ -0,0 +1,192 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/drivingSchool/DriveSchoolPay/form/SchoolCourseOrderForm.vue b/src/views/drivingSchool/DriveSchoolPay/form/SchoolCourseOrderForm.vue
index 54079cf..ea895a9 100644
--- a/src/views/drivingSchool/DriveSchoolPay/form/SchoolCourseOrderForm.vue
+++ b/src/views/drivingSchool/DriveSchoolPay/form/SchoolCourseOrderForm.vue
@@ -18,7 +18,8 @@
{{ dict.label }}
+ :key="dict.value" :label="dict.value"
+ >{{ dict.label }}
@@ -34,10 +35,21 @@
+
+
+
+
+
+
{{ item.label }}
+ :key="item.value" :label="item.value"
+ >{{ item.label }}
@@ -46,7 +58,8 @@
+ placeholder="选择终止时间"
+ />
@@ -56,12 +69,13 @@
-
-
-
+
+
+
{{ dict.label }}
+ :key="dict.value" :label="dict.value"
+ >{{ dict.label }}
@@ -85,15 +99,15 @@
diff --git a/src/views/drivingSchool/StudentScoreInput/form/scoreInputForm.vue b/src/views/drivingSchool/StudentScoreInput/form/scoreInputForm.vue
index e714977..f7b8739 100644
--- a/src/views/drivingSchool/StudentScoreInput/form/scoreInputForm.vue
+++ b/src/views/drivingSchool/StudentScoreInput/form/scoreInputForm.vue
@@ -128,7 +128,7 @@
-
+
@@ -308,6 +308,9 @@ export default {
await this.$refs["formRef"].validate();
this.formLoading = true;
try {
+ this.formData.startTime = this.formData.examTime + 10 * 1000;
+ this.formData.endTime = this.formData.examTime + ((23 * 3600 + 59 * 60 + 59) * 1000);
+ this.formData.examTime = this.formData.examTime + 10;
const data = this.formData;
// 根据操作类型调用不同接口
if (this.operationType === 'input') {
diff --git a/src/views/drivingSchool/schoolCoach/form/DlDriveSchoolCoachForm.vue b/src/views/drivingSchool/schoolCoach/form/DlDriveSchoolCoachForm.vue
index 86ed21b..f629d31 100644
--- a/src/views/drivingSchool/schoolCoach/form/DlDriveSchoolCoachForm.vue
+++ b/src/views/drivingSchool/schoolCoach/form/DlDriveSchoolCoachForm.vue
@@ -46,12 +46,6 @@
:key="dict.value" :label="dict.label" :value="dict.value"/>
-
-
-
-
-
-
@@ -111,8 +105,6 @@ export default {
lifePhoto: undefined,
drivePhoto: undefined,
otherPhoto: undefined,
- commission: undefined,
- bankCardId: undefined,
},
// 表单校验
formRules: {
diff --git a/src/views/drivingSchool/schoolCoach/index.vue b/src/views/drivingSchool/schoolCoach/index.vue
index a5bc8f0..7d931e5 100644
--- a/src/views/drivingSchool/schoolCoach/index.vue
+++ b/src/views/drivingSchool/schoolCoach/index.vue
@@ -36,18 +36,10 @@
-
+
+
+
-
-
- 提成:{{ scope.row.commission }}
-
-
-
-
- 银行卡号:{{ scope.row.bankCardId }}
-
-
修改
@@ -66,6 +58,7 @@