From adf2ea85a9978c6ba960f4d722c7c6ac9e60d39d Mon Sep 17 00:00:00 2001 From: wangzeyan <258785420@qq.com> Date: Fri, 23 May 2025 09:12:34 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E6=A0=BC=E5=BC=8F=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- admin/components.d.ts | 4 - admin/src/app/api/communication_records.ts | 26 +- admin/src/app/api/order_table.ts | 42 +- admin/src/app/api/physical_test.ts | 39 +- admin/src/app/api/student_courses.ts | 32 +- admin/src/app/api/sys.ts | 3 - ...ication_records.communication_records.json | 40 +- ...rce_changes.customer_resource_changes.json | 3 - ...customer_resources.customer_resources.json | 210 +++-- .../exam_questions.exam_questions_edit.json | 28 +- .../lang/zh-cn/order_table.order_table.json | 40 +- .../zh-cn/physical_test.physical_test.json | 72 +- .../physical_test.physical_test_edit.json | 76 +- .../student_courses.student_courses.json | 36 +- .../zh-cn/tc_dialog.physical_test_edit.json | 72 +- .../campus_person_role/campus_person_role.vue | 2 +- .../communication_records.vue | 551 +++++++----- .../components/communication-records-edit.vue | 614 +++++++------ .../customer_resources/customer_resources.vue | 850 ++++++++++-------- .../components/order-table-edit.vue | 595 ++++++------ .../src/app/views/order_table/order_table.vue | 561 +++++++----- .../components/physical-test-edit.vue | 740 ++++++++------- .../app/views/physical_test/physical_test.vue | 472 +++++----- .../physical_test/physical_test_edit.vue | 764 +++++++++------- admin/src/app/views/setting/pay.vue | 331 ++++--- .../components/student-courses-edit.vue | 504 ++++++----- .../views/student_courses/student_courses.vue | 472 +++++----- admin/src/app/views/tc_dialog/tc_dialog.vue | 520 ++++++----- admin/src/app/views/timetables/timetables.vue | 25 +- admin/src/app/views/xsyj/xsyj.vue | 416 ++++----- 30 files changed, 4545 insertions(+), 3595 deletions(-) diff --git a/admin/components.d.ts b/admin/components.d.ts index e1d612fe..a24ce0e0 100644 --- a/admin/components.d.ts +++ b/admin/components.d.ts @@ -41,8 +41,6 @@ declare module '@vue/runtime-core' { ElOption: typeof import('element-plus/es')['ElOption'] ElPagination: typeof import('element-plus/es')['ElPagination'] ElPopover: typeof import('element-plus/es')['ElPopover'] - ElRadio: typeof import('element-plus/es')['ElRadio'] - ElRadioGroup: typeof import('element-plus/es')['ElRadioGroup'] ElRow: typeof import('element-plus/es')['ElRow'] ElScrollbar: typeof import('element-plus/es')['ElScrollbar'] ElSelect: typeof import('element-plus/es')['ElSelect'] @@ -52,9 +50,7 @@ declare module '@vue/runtime-core' { ElTableColumn: typeof import('element-plus/es')['ElTableColumn'] ElTabPane: typeof import('element-plus/es')['ElTabPane'] ElTabs: typeof import('element-plus/es')['ElTabs'] - ElTag: typeof import('element-plus/es')['ElTag'] ElTooltip: typeof import('element-plus/es')['ElTooltip'] - ElTreeSelect: typeof import('element-plus/es')['ElTreeSelect'] ElUpload: typeof import('element-plus/es')['ElUpload'] ExportSure: typeof import('./src/components/export-sure/index.vue')['default'] HeatMap: typeof import('./src/components/heat-map/index.vue')['default'] diff --git a/admin/src/app/api/communication_records.ts b/admin/src/app/api/communication_records.ts index 3118791c..313c2f1d 100644 --- a/admin/src/app/api/communication_records.ts +++ b/admin/src/app/api/communication_records.ts @@ -1,7 +1,5 @@ import request from '@/utils/request' - - // USER_CODE_BEGIN -- communication_records /** * 获取沟通记录列表 @@ -9,7 +7,7 @@ import request from '@/utils/request' * @returns */ export function getCommunicationRecordsList(params: Record) { - return request.get(`communication_records/communication_records`, {params}) + return request.get(`communication_records/communication_records`, { params }) } /** @@ -18,7 +16,7 @@ export function getCommunicationRecordsList(params: Record) { * @returns */ export function getCommunicationRecordsInfo(id: number) { - return request.get(`communication_records/communication_records/${id}`); + return request.get(`communication_records/communication_records/${id}`) } /** @@ -27,7 +25,10 @@ export function getCommunicationRecordsInfo(id: number) { * @returns */ export function addCommunicationRecords(params: Record) { - return request.post('communication_records/communication_records', params, { showErrorMessage: true, showSuccessMessage: true }) + return request.post('communication_records/communication_records', params, { + showErrorMessage: true, + showSuccessMessage: true, + }) } /** @@ -37,7 +38,11 @@ export function addCommunicationRecords(params: Record) { * @returns */ export function editCommunicationRecords(params: Record) { - return request.put(`communication_records/communication_records/${params.id}`, params, { showErrorMessage: true, showSuccessMessage: true }) + return request.put( + `communication_records/communication_records/${params.id}`, + params, + { showErrorMessage: true, showSuccessMessage: true } + ) } /** @@ -46,11 +51,14 @@ export function editCommunicationRecords(params: Record) { * @returns */ export function deleteCommunicationRecords(id: number) { - return request.delete(`communication_records/communication_records/${id}`, { showErrorMessage: true, showSuccessMessage: true }) + return request.delete(`communication_records/communication_records/${id}`, { + showErrorMessage: true, + showSuccessMessage: true, + }) } -export function getWithCustomerResourcesList(params: Record){ - return request.get('communication_records/customer_resources_all', {params}) +export function getWithCustomerResourcesList(params: Record) { + return request.get('communication_records/customer_resources_all', { params }) } // USER_CODE_END -- communication_records diff --git a/admin/src/app/api/order_table.ts b/admin/src/app/api/order_table.ts index 0b7a02fd..1f14815f 100644 --- a/admin/src/app/api/order_table.ts +++ b/admin/src/app/api/order_table.ts @@ -1,9 +1,5 @@ import request from '@/utils/request' - - - - // USER_CODE_BEGIN -- order_table /** * 获取订单列表 @@ -11,7 +7,7 @@ import request from '@/utils/request' * @returns */ export function getOrderTableList(params: Record) { - return request.get(`order_table/order_table`, {params}) + return request.get(`order_table/order_table`, { params }) } /** @@ -20,7 +16,7 @@ export function getOrderTableList(params: Record) { * @returns */ export function getOrderTableInfo(id: number) { - return request.get(`order_table/order_table/${id}`); + return request.get(`order_table/order_table/${id}`) } /** @@ -29,7 +25,10 @@ export function getOrderTableInfo(id: number) { * @returns */ export function addOrderTable(params: Record) { - return request.post('order_table/order_table', params, { showErrorMessage: true, showSuccessMessage: true }) + return request.post('order_table/order_table', params, { + showErrorMessage: true, + showSuccessMessage: true, + }) } /** @@ -39,7 +38,10 @@ export function addOrderTable(params: Record) { * @returns */ export function editOrderTable(params: Record) { - return request.put(`order_table/order_table/${params.id}`, params, { showErrorMessage: true, showSuccessMessage: true }) + return request.put(`order_table/order_table/${params.id}`, params, { + showErrorMessage: true, + showSuccessMessage: true, + }) } /** @@ -48,17 +50,23 @@ export function editOrderTable(params: Record) { * @returns */ export function deleteOrderTable(id: number) { - return request.delete(`order_table/order_table/${id}`, { showErrorMessage: true, showSuccessMessage: true }) + return request.delete(`order_table/order_table/${id}`, { + showErrorMessage: true, + showSuccessMessage: true, + }) } -export function getWithCustomerResourcesList(params: Record){ - return request.get('order_table/customer_resources_all', {params}) -}export function getWithCourseList(params: Record){ - return request.get('order_table/course_all', {params}) -}export function getWithClassGradeList(params: Record){ - return request.get('order_table/class_grade_all', {params}) -}export function getWithPersonnelList(params: Record){ - return request.get('order_table/personnel_all', {params}) +export function getWithCustomerResourcesList(params: Record) { + return request.get('order_table/customer_resources_all', { params }) +} +export function getWithCourseList(params: Record) { + return request.get('order_table/course_all', { params }) +} +export function getWithClassGradeList(params: Record) { + return request.get('order_table/class_grade_all', { params }) +} +export function getWithPersonnelList(params: Record) { + return request.get('order_table/personnel_all', { params }) } // USER_CODE_END -- order_table diff --git a/admin/src/app/api/physical_test.ts b/admin/src/app/api/physical_test.ts index c3b59a5d..7902a6bc 100644 --- a/admin/src/app/api/physical_test.ts +++ b/admin/src/app/api/physical_test.ts @@ -1,11 +1,5 @@ import request from '@/utils/request' - - - - - - // USER_CODE_BEGIN -- physical_test /** * 获取体测列表 @@ -13,7 +7,7 @@ import request from '@/utils/request' * @returns */ export function getPhysicalTestList(params: Record) { - return request.get(`physical_test/physical_test`, {params}) + return request.get(`physical_test/physical_test`, { params }) } /** @@ -22,7 +16,7 @@ export function getPhysicalTestList(params: Record) { * @returns */ export function getPhysicalTestInfo(id: number) { - return request.get(`physical_test/physical_test/${id}`); + return request.get(`physical_test/physical_test/${id}`) } /** @@ -31,7 +25,10 @@ export function getPhysicalTestInfo(id: number) { * @returns */ export function addPhysicalTest(params: Record) { - return request.post('physical_test/physical_test', params, { showErrorMessage: true, showSuccessMessage: true }) + return request.post('physical_test/physical_test', params, { + showErrorMessage: true, + showSuccessMessage: true, + }) } /** @@ -41,7 +38,10 @@ export function addPhysicalTest(params: Record) { * @returns */ export function editPhysicalTest(params: Record) { - return request.put(`physical_test/physical_test/${params.id}`, params, { showErrorMessage: true, showSuccessMessage: true }) + return request.put(`physical_test/physical_test/${params.id}`, params, { + showErrorMessage: true, + showSuccessMessage: true, + }) } /** @@ -50,15 +50,20 @@ export function editPhysicalTest(params: Record) { * @returns */ export function deletePhysicalTest(id: number) { - return request.delete(`physical_test/physical_test/${id}`, { showErrorMessage: true, showSuccessMessage: true }) + return request.delete(`physical_test/physical_test/${id}`, { + showErrorMessage: true, + showSuccessMessage: true, + }) } -export function getWithCustomerResourcesList(params: Record){ - return request.get('physical_test/customer_resources_all', {params}) -}export function getWithStudentList(params: Record){ - return request.get('physical_test/student_all', {params}) -}export function getWithPersonnelList(params: Record){ - return request.get('physical_test/personnel_all', {params}) +export function getWithCustomerResourcesList(params: Record) { + return request.get('physical_test/customer_resources_all', { params }) +} +export function getWithStudentList(params: Record) { + return request.get('physical_test/student_all', { params }) +} +export function getWithPersonnelList(params: Record) { + return request.get('physical_test/personnel_all', { params }) } // USER_CODE_END -- physical_test diff --git a/admin/src/app/api/student_courses.ts b/admin/src/app/api/student_courses.ts index 17c263cb..c05aae4d 100644 --- a/admin/src/app/api/student_courses.ts +++ b/admin/src/app/api/student_courses.ts @@ -1,9 +1,5 @@ import request from '@/utils/request' - - - - // USER_CODE_BEGIN -- student_courses /** * 获取学员课程列表 @@ -11,7 +7,7 @@ import request from '@/utils/request' * @returns */ export function getStudentCoursesList(params: Record) { - return request.get(`student_courses/student_courses`, {params}) + return request.get(`student_courses/student_courses`, { params }) } /** @@ -20,7 +16,7 @@ export function getStudentCoursesList(params: Record) { * @returns */ export function getStudentCoursesInfo(id: number) { - return request.get(`student_courses/student_courses/${id}`); + return request.get(`student_courses/student_courses/${id}`) } /** @@ -29,7 +25,10 @@ export function getStudentCoursesInfo(id: number) { * @returns */ export function addStudentCourses(params: Record) { - return request.post('student_courses/student_courses', params, { showErrorMessage: true, showSuccessMessage: true }) + return request.post('student_courses/student_courses', params, { + showErrorMessage: true, + showSuccessMessage: true, + }) } /** @@ -39,7 +38,10 @@ export function addStudentCourses(params: Record) { * @returns */ export function editStudentCourses(params: Record) { - return request.put(`student_courses/student_courses/${params.id}`, params, { showErrorMessage: true, showSuccessMessage: true }) + return request.put(`student_courses/student_courses/${params.id}`, params, { + showErrorMessage: true, + showSuccessMessage: true, + }) } /** @@ -48,13 +50,17 @@ export function editStudentCourses(params: Record) { * @returns */ export function deleteStudentCourses(id: number) { - return request.delete(`student_courses/student_courses/${id}`, { showErrorMessage: true, showSuccessMessage: true }) + return request.delete(`student_courses/student_courses/${id}`, { + showErrorMessage: true, + showSuccessMessage: true, + }) } -export function getWithStudentList(params: Record){ - return request.get('student_courses/student_all', {params}) -}export function getWithCourseList(params: Record){ - return request.get('student_courses/course_all', {params}) +export function getWithStudentList(params: Record) { + return request.get('student_courses/student_all', { params }) +} +export function getWithCourseList(params: Record) { + return request.get('student_courses/course_all', { params }) } // USER_CODE_END -- student_courses diff --git a/admin/src/app/api/sys.ts b/admin/src/app/api/sys.ts index 32f1dfa3..f10b827c 100644 --- a/admin/src/app/api/sys.ts +++ b/admin/src/app/api/sys.ts @@ -765,7 +765,6 @@ export function yjpzConfig(params: Record) { return request.post(`sys/yjpz_config`, params) } - export function xsyjConfig(params: Record) { return request.post(`sys/xsyj_config`, params) } @@ -773,5 +772,3 @@ export function xsyjConfig(params: Record) { export function getXsyjConfig() { return request.get('sys/get_xsyj_config') } - - diff --git a/admin/src/app/lang/zh-cn/communication_records.communication_records.json b/admin/src/app/lang/zh-cn/communication_records.communication_records.json index 32866c01..0432f749 100644 --- a/admin/src/app/lang/zh-cn/communication_records.communication_records.json +++ b/admin/src/app/lang/zh-cn/communication_records.communication_records.json @@ -1,21 +1,21 @@ { - "resourceId":"资源", - "resourceIdPlaceholder":"全部", - "resourceType":"资源类型", - "resourceTypePlaceholder":"请输入资源类型", - "communicationType":"沟通类型", - "communicationTypePlaceholder":"请输入沟通类型", - "communicationResult":"沟通结果", - "communicationResultPlaceholder":"请输入沟通结果", - "communicationTime":"沟通时间", - "communicationTimePlaceholder":"请输入沟通时间", - "remarks":"备注", - "remarksPlaceholder":"请输入备注", - "tag":"标签", - "tagPlaceholder":"请输入标签", - "addCommunicationRecords":"添加沟通记录", - "updateCommunicationRecords":"编辑沟通记录", - "communicationRecordsDeleteTips":"确定要删除该数据吗?", - "startDate":"请选择开始时间", - "endDate":"请选择结束时间" -} \ No newline at end of file + "resourceId": "资源", + "resourceIdPlaceholder": "全部", + "resourceType": "资源类型", + "resourceTypePlaceholder": "请输入资源类型", + "communicationType": "沟通类型", + "communicationTypePlaceholder": "请输入沟通类型", + "communicationResult": "沟通结果", + "communicationResultPlaceholder": "请输入沟通结果", + "communicationTime": "沟通时间", + "communicationTimePlaceholder": "请输入沟通时间", + "remarks": "备注", + "remarksPlaceholder": "请输入备注", + "tag": "标签", + "tagPlaceholder": "请输入标签", + "addCommunicationRecords": "添加沟通记录", + "updateCommunicationRecords": "编辑沟通记录", + "communicationRecordsDeleteTips": "确定要删除该数据吗?", + "startDate": "请选择开始时间", + "endDate": "请选择结束时间" +} diff --git a/admin/src/app/lang/zh-cn/customer_resource_changes.customer_resource_changes.json b/admin/src/app/lang/zh-cn/customer_resource_changes.customer_resource_changes.json index 514deb3e..cc01945e 100644 --- a/admin/src/app/lang/zh-cn/customer_resource_changes.customer_resource_changes.json +++ b/admin/src/app/lang/zh-cn/customer_resource_changes.customer_resource_changes.json @@ -18,7 +18,4 @@ "customerResourceChangesDeleteTips": "确定要删除该数据吗?", "startDate": "请选择开始时间", "endDate": "请选择结束时间" - - - } diff --git a/admin/src/app/lang/zh-cn/customer_resources.customer_resources.json b/admin/src/app/lang/zh-cn/customer_resources.customer_resources.json index 429f9055..b7b631c9 100644 --- a/admin/src/app/lang/zh-cn/customer_resources.customer_resources.json +++ b/admin/src/app/lang/zh-cn/customer_resources.customer_resources.json @@ -1,107 +1,105 @@ { - "source":"来源", - "sourcePlaceholder":"请输入来源", - "sourceChannel":"来源渠道", - "sourceChannelPlaceholder":"请输入来源渠道", - "consultant":"顾问", - "name":"姓名", - "namePlaceholder":"请输入姓名", - "age":"年龄", - "agePlaceholder":"请输入年龄", - "gender":"性别", - "genderPlaceholder":"请输入性别", - "phoneNumber":"联系电话", - "phoneNumberPlaceholder":"请输入联系电话", - "demand":"需求", - "demandPlaceholder":"请输入需求", - "purchasingPower":"购买力", - "purchasingPowerPlaceholder":"请输入购买力", - "cognitiveIdea":"认知理念", - "cognitiveIdeaPlaceholder":"请输入认知理念", - "optionalClassTime":"可选上课时间", - "optionalClassTimePlaceholder":"请输入可选上课时间", - "distance":"距离", - "distancePlaceholder":"请输入距离", - "decisionMaker":"决策人", - "decisionMakerPlaceholder":"请输入决策人", - "initialIntent":"客户初步意向度", - "initialIntentPlaceholder":"请输入客户初步意向度", - "campus":"所属校区", - "campusPlaceholder":"请输入所属校区", - "status":"客户状态", - "statusPlaceholder":"请输入客户状态", - "addCustomerResources":"添加客户资源", - "updateCustomerResources":"编辑客户资源", - "customerResourcesDeleteTips":"确定要删除该数据吗?", - "startDate":"请选择开始时间", - "endDate":"请选择结束时间", - - - "resourceId":"资源", - "resourceIdPlaceholder":"请输入资源", - "orderStatus":"订单状态", - "orderStatusPlaceholder":"请输入订单状态", - "paymentType":"付款类型", - "paymentTypePlaceholder":"请输入付款类型", - "orderAmount":"订单金额", - "orderAmountPlaceholder":"请输入订单金额", - "courseId":"课程", - "courseIdPlaceholder":"请输入课程", - "classId":"班级", - "classIdPlaceholder":"请输入班级", - "staffId":"人员", - "paymentTime":"支付时间", - "addOrderTable":"添加订单", - "updateOrderTable":"编辑订单", - - - "resourceId":"客户姓名", - "resourceIdPlaceholder":"全部", - "studentId":"学员姓名", - "studentIdPlaceholder":"全部", - "height":"身高", - "heightPlaceholder":"请输入身高", - "createdAt":"创建时间", - "updatedAt":"修改时间", - "addPhysicalTest":"添加体测", - "updatePhysicalTest":"编辑体测", - "physicalTestDeleteTips":"确定要删除该数据吗?", - "startDate":"请选择开始时间", - "endDate":"请选择结束时间", - - "resourceId":"客户姓名", - "resourceIdPlaceholder":"全部", - "studentId":"学员姓名", - "studentIdPlaceholder":"全部", - "height":"身高", - "heightPlaceholder":"请输入身高", - "weight":"体重", - "weightPlaceholder":"请输入体重", - "coachId":"教练", - "coachIdPlaceholder":"请输入教练", - "seatedForwardBend":"坐位体前屈", - "seatedForwardBendPlaceholder":"请输入坐位体前屈", - "sitUps":"仰卧卷腹", - "sitUpsPlaceholder":"请输入仰卧卷腹", - "pushUps":"九十度仰卧撑", - "pushUpsPlaceholder":"请输入九十度仰卧撑", - "flamingoBalance":"火烈鸟平衡测试", - "flamingoBalancePlaceholder":"请输入火烈鸟平衡测试", - "thirtySecJump":"三十秒双脚连续跳", - "thirtySecJumpPlaceholder":"请输入三十秒双脚连续跳", - "standingLongJump":"立定跳远", - "standingLongJumpPlaceholder":"请输入立定跳远", - "agilityRun":"4乘10m灵敏折返跑", - "agilityRunPlaceholder":"请输入4乘10m灵敏折返跑", - "balanceBeam":"走平衡木", - "balanceBeamPlaceholder":"请输入走平衡木", - "tennisThrow":"网球掷远", - "tennisThrowPlaceholder":"请输入网球掷远", - "tenMeterShuttleRun":"十米往返跑", - "tenMeterShuttleRunPlaceholder":"请输入十米往返跑", - "addPhysicalTest":"添加体测", - "updatePhysicalTest":"编辑体测", - "physicalTestDeleteTips":"确定要删除该数据吗?", - "startDate":"请选择开始时间", - "endDate":"请选择结束时间" -} \ No newline at end of file + "source": "来源", + "sourcePlaceholder": "请输入来源", + "sourceChannel": "来源渠道", + "sourceChannelPlaceholder": "请输入来源渠道", + "consultant": "顾问", + "name": "姓名", + "namePlaceholder": "请输入姓名", + "age": "年龄", + "agePlaceholder": "请输入年龄", + "gender": "性别", + "genderPlaceholder": "请输入性别", + "phoneNumber": "联系电话", + "phoneNumberPlaceholder": "请输入联系电话", + "demand": "需求", + "demandPlaceholder": "请输入需求", + "purchasingPower": "购买力", + "purchasingPowerPlaceholder": "请输入购买力", + "cognitiveIdea": "认知理念", + "cognitiveIdeaPlaceholder": "请输入认知理念", + "optionalClassTime": "可选上课时间", + "optionalClassTimePlaceholder": "请输入可选上课时间", + "distance": "距离", + "distancePlaceholder": "请输入距离", + "decisionMaker": "决策人", + "decisionMakerPlaceholder": "请输入决策人", + "initialIntent": "客户初步意向度", + "initialIntentPlaceholder": "请输入客户初步意向度", + "campus": "所属校区", + "campusPlaceholder": "请输入所属校区", + "status": "客户状态", + "statusPlaceholder": "请输入客户状态", + "addCustomerResources": "添加客户资源", + "updateCustomerResources": "编辑客户资源", + "customerResourcesDeleteTips": "确定要删除该数据吗?", + "startDate": "请选择开始时间", + "endDate": "请选择结束时间", + + "resourceId": "资源", + "resourceIdPlaceholder": "请输入资源", + "orderStatus": "订单状态", + "orderStatusPlaceholder": "请输入订单状态", + "paymentType": "付款类型", + "paymentTypePlaceholder": "请输入付款类型", + "orderAmount": "订单金额", + "orderAmountPlaceholder": "请输入订单金额", + "courseId": "课程", + "courseIdPlaceholder": "请输入课程", + "classId": "班级", + "classIdPlaceholder": "请输入班级", + "staffId": "人员", + "paymentTime": "支付时间", + "addOrderTable": "添加订单", + "updateOrderTable": "编辑订单", + + "resourceId": "客户姓名", + "resourceIdPlaceholder": "全部", + "studentId": "学员姓名", + "studentIdPlaceholder": "全部", + "height": "身高", + "heightPlaceholder": "请输入身高", + "createdAt": "创建时间", + "updatedAt": "修改时间", + "addPhysicalTest": "添加体测", + "updatePhysicalTest": "编辑体测", + "physicalTestDeleteTips": "确定要删除该数据吗?", + "startDate": "请选择开始时间", + "endDate": "请选择结束时间", + + "resourceId": "客户姓名", + "resourceIdPlaceholder": "全部", + "studentId": "学员姓名", + "studentIdPlaceholder": "全部", + "height": "身高", + "heightPlaceholder": "请输入身高", + "weight": "体重", + "weightPlaceholder": "请输入体重", + "coachId": "教练", + "coachIdPlaceholder": "请输入教练", + "seatedForwardBend": "坐位体前屈", + "seatedForwardBendPlaceholder": "请输入坐位体前屈", + "sitUps": "仰卧卷腹", + "sitUpsPlaceholder": "请输入仰卧卷腹", + "pushUps": "九十度仰卧撑", + "pushUpsPlaceholder": "请输入九十度仰卧撑", + "flamingoBalance": "火烈鸟平衡测试", + "flamingoBalancePlaceholder": "请输入火烈鸟平衡测试", + "thirtySecJump": "三十秒双脚连续跳", + "thirtySecJumpPlaceholder": "请输入三十秒双脚连续跳", + "standingLongJump": "立定跳远", + "standingLongJumpPlaceholder": "请输入立定跳远", + "agilityRun": "4乘10m灵敏折返跑", + "agilityRunPlaceholder": "请输入4乘10m灵敏折返跑", + "balanceBeam": "走平衡木", + "balanceBeamPlaceholder": "请输入走平衡木", + "tennisThrow": "网球掷远", + "tennisThrowPlaceholder": "请输入网球掷远", + "tenMeterShuttleRun": "十米往返跑", + "tenMeterShuttleRunPlaceholder": "请输入十米往返跑", + "addPhysicalTest": "添加体测", + "updatePhysicalTest": "编辑体测", + "physicalTestDeleteTips": "确定要删除该数据吗?", + "startDate": "请选择开始时间", + "endDate": "请选择结束时间" +} diff --git a/admin/src/app/lang/zh-cn/exam_questions.exam_questions_edit.json b/admin/src/app/lang/zh-cn/exam_questions.exam_questions_edit.json index 86133a58..b887fde9 100644 --- a/admin/src/app/lang/zh-cn/exam_questions.exam_questions_edit.json +++ b/admin/src/app/lang/zh-cn/exam_questions.exam_questions_edit.json @@ -1,15 +1,15 @@ { - "questionType":"题型", - "questionContentType":"题干", - "questionContent":"题干内容", - "optionAContentType":"选项类型", - "optionAContent":"选项内容", - "correctAnswer":"正确答案", - "questionTypePlaceholder":"请选择题型", - "questionContentTypePlaceholder":"请选择题干类型", - "questionContentPlaceholder":"请输入题干内容", - "correctAnswerPlaceholder":"请输入正确答案", - "addExamQuestions":"添加试题", - "updateExamQuestions":"编辑试题", - "examQuestionsDeleteTips":"确定要删除该试题吗?" -} \ No newline at end of file + "questionType": "题型", + "questionContentType": "题干", + "questionContent": "题干内容", + "optionAContentType": "选项类型", + "optionAContent": "选项内容", + "correctAnswer": "正确答案", + "questionTypePlaceholder": "请选择题型", + "questionContentTypePlaceholder": "请选择题干类型", + "questionContentPlaceholder": "请输入题干内容", + "correctAnswerPlaceholder": "请输入正确答案", + "addExamQuestions": "添加试题", + "updateExamQuestions": "编辑试题", + "examQuestionsDeleteTips": "确定要删除该试题吗?" +} diff --git a/admin/src/app/lang/zh-cn/order_table.order_table.json b/admin/src/app/lang/zh-cn/order_table.order_table.json index 70f0dc1f..4ad43da6 100644 --- a/admin/src/app/lang/zh-cn/order_table.order_table.json +++ b/admin/src/app/lang/zh-cn/order_table.order_table.json @@ -1,21 +1,21 @@ { - "resourceId":"资源", - "resourceIdPlaceholder":"请输入资源", - "orderStatus":"订单状态", - "orderStatusPlaceholder":"请输入订单状态", - "paymentType":"付款类型", - "paymentTypePlaceholder":"请输入付款类型", - "orderAmount":"订单金额", - "orderAmountPlaceholder":"请输入订单金额", - "courseId":"课程", - "courseIdPlaceholder":"请输入课程", - "classId":"班级", - "classIdPlaceholder":"请输入班级", - "staffId":"人员", - "paymentTime":"支付时间", - "addOrderTable":"添加订单", - "updateOrderTable":"编辑订单", - "orderTableDeleteTips":"确定要删除该数据吗?", - "startDate":"请选择开始时间", - "endDate":"请选择结束时间" -} \ No newline at end of file + "resourceId": "资源", + "resourceIdPlaceholder": "请输入资源", + "orderStatus": "订单状态", + "orderStatusPlaceholder": "请输入订单状态", + "paymentType": "付款类型", + "paymentTypePlaceholder": "请输入付款类型", + "orderAmount": "订单金额", + "orderAmountPlaceholder": "请输入订单金额", + "courseId": "课程", + "courseIdPlaceholder": "请输入课程", + "classId": "班级", + "classIdPlaceholder": "请输入班级", + "staffId": "人员", + "paymentTime": "支付时间", + "addOrderTable": "添加订单", + "updateOrderTable": "编辑订单", + "orderTableDeleteTips": "确定要删除该数据吗?", + "startDate": "请选择开始时间", + "endDate": "请选择结束时间" +} diff --git a/admin/src/app/lang/zh-cn/physical_test.physical_test.json b/admin/src/app/lang/zh-cn/physical_test.physical_test.json index 478af9c2..29e6d0af 100644 --- a/admin/src/app/lang/zh-cn/physical_test.physical_test.json +++ b/admin/src/app/lang/zh-cn/physical_test.physical_test.json @@ -1,37 +1,37 @@ { - "resourceId":"客户姓名", - "resourceIdPlaceholder":"全部", - "studentId":"学员姓名", - "studentIdPlaceholder":"全部", - "height":"身高", - "heightPlaceholder":"请输入身高", - "weight":"体重", - "weightPlaceholder":"请输入体重", - "coachId":"教练", - "coachIdPlaceholder":"请输入教练", - "seatedForwardBend":"坐位体前屈", - "seatedForwardBendPlaceholder":"请输入坐位体前屈", - "sitUps":"仰卧卷腹", - "sitUpsPlaceholder":"请输入仰卧卷腹", - "pushUps":"九十度仰卧撑", - "pushUpsPlaceholder":"请输入九十度仰卧撑", - "flamingoBalance":"火烈鸟平衡测试", - "flamingoBalancePlaceholder":"请输入火烈鸟平衡测试", - "thirtySecJump":"三十秒双脚连续跳", - "thirtySecJumpPlaceholder":"请输入三十秒双脚连续跳", - "standingLongJump":"立定跳远", - "standingLongJumpPlaceholder":"请输入立定跳远", - "agilityRun":"4乘10m灵敏折返跑", - "agilityRunPlaceholder":"请输入4乘10m灵敏折返跑", - "balanceBeam":"走平衡木", - "balanceBeamPlaceholder":"请输入走平衡木", - "tennisThrow":"网球掷远", - "tennisThrowPlaceholder":"请输入网球掷远", - "tenMeterShuttleRun":"十米往返跑", - "tenMeterShuttleRunPlaceholder":"请输入十米往返跑", - "addPhysicalTest":"添加体测", - "updatePhysicalTest":"编辑体测", - "physicalTestDeleteTips":"确定要删除该数据吗?", - "startDate":"请选择开始时间", - "endDate":"请选择结束时间" -} \ No newline at end of file + "resourceId": "客户姓名", + "resourceIdPlaceholder": "全部", + "studentId": "学员姓名", + "studentIdPlaceholder": "全部", + "height": "身高", + "heightPlaceholder": "请输入身高", + "weight": "体重", + "weightPlaceholder": "请输入体重", + "coachId": "教练", + "coachIdPlaceholder": "请输入教练", + "seatedForwardBend": "坐位体前屈", + "seatedForwardBendPlaceholder": "请输入坐位体前屈", + "sitUps": "仰卧卷腹", + "sitUpsPlaceholder": "请输入仰卧卷腹", + "pushUps": "九十度仰卧撑", + "pushUpsPlaceholder": "请输入九十度仰卧撑", + "flamingoBalance": "火烈鸟平衡测试", + "flamingoBalancePlaceholder": "请输入火烈鸟平衡测试", + "thirtySecJump": "三十秒双脚连续跳", + "thirtySecJumpPlaceholder": "请输入三十秒双脚连续跳", + "standingLongJump": "立定跳远", + "standingLongJumpPlaceholder": "请输入立定跳远", + "agilityRun": "4乘10m灵敏折返跑", + "agilityRunPlaceholder": "请输入4乘10m灵敏折返跑", + "balanceBeam": "走平衡木", + "balanceBeamPlaceholder": "请输入走平衡木", + "tennisThrow": "网球掷远", + "tennisThrowPlaceholder": "请输入网球掷远", + "tenMeterShuttleRun": "十米往返跑", + "tenMeterShuttleRunPlaceholder": "请输入十米往返跑", + "addPhysicalTest": "添加体测", + "updatePhysicalTest": "编辑体测", + "physicalTestDeleteTips": "确定要删除该数据吗?", + "startDate": "请选择开始时间", + "endDate": "请选择结束时间" +} diff --git a/admin/src/app/lang/zh-cn/physical_test.physical_test_edit.json b/admin/src/app/lang/zh-cn/physical_test.physical_test_edit.json index dc9a1bc5..57875c65 100644 --- a/admin/src/app/lang/zh-cn/physical_test.physical_test_edit.json +++ b/admin/src/app/lang/zh-cn/physical_test.physical_test_edit.json @@ -1,39 +1,39 @@ { - "resourceId":"客户姓名", - "studentId":"学员姓名", - "height":"身高", - "weight":"体重", - "coachId":"教练", - "createdAt":"创建时间", - "updatedAt":"修改时间", - "seatedForwardBend":"坐位体前屈", - "sitUps":"仰卧卷腹", - "pushUps":"九十度仰卧撑", - "flamingoBalance":"火烈鸟平衡测试", - "thirtySecJump":"三十秒双脚连续跳", - "standingLongJump":"立定跳远", - "agilityRun":"4乘10m灵敏折返跑", - "balanceBeam":"走平衡木", - "tennisThrow":"网球掷远", - "tenMeterShuttleRun":"十米往返跑", - "resourceIdPlaceholder":"请选择客户姓名", - "studentIdPlaceholder":"请选择学员姓名", - "heightPlaceholder":"请输入身高", - "weightPlaceholder":"请输入体重", - "coachIdPlaceholder":"请选择教练", - "createdAtPlaceholder":"请输入创建时间", - "updatedAtPlaceholder":"请输入修改时间", - "seatedForwardBendPlaceholder":"请输入坐位体前屈", - "sitUpsPlaceholder":"请输入仰卧卷腹", - "pushUpsPlaceholder":"请输入九十度仰卧撑", - "flamingoBalancePlaceholder":"请输入火烈鸟平衡测试", - "thirtySecJumpPlaceholder":"请输入三十秒双脚连续跳", - "standingLongJumpPlaceholder":"请输入立定跳远", - "agilityRunPlaceholder":"请输入4乘10m灵敏折返跑", - "balanceBeamPlaceholder":"请输入走平衡木", - "tennisThrowPlaceholder":"请输入网球掷远", - "tenMeterShuttleRunPlaceholder":"请输入十米往返跑", - "addPhysicalTest":"添加体测", - "updatePhysicalTest":"编辑体测", - "physicalTestDeleteTips":"确定要删除该体测吗?" -} \ No newline at end of file + "resourceId": "客户姓名", + "studentId": "学员姓名", + "height": "身高", + "weight": "体重", + "coachId": "教练", + "createdAt": "创建时间", + "updatedAt": "修改时间", + "seatedForwardBend": "坐位体前屈", + "sitUps": "仰卧卷腹", + "pushUps": "九十度仰卧撑", + "flamingoBalance": "火烈鸟平衡测试", + "thirtySecJump": "三十秒双脚连续跳", + "standingLongJump": "立定跳远", + "agilityRun": "4乘10m灵敏折返跑", + "balanceBeam": "走平衡木", + "tennisThrow": "网球掷远", + "tenMeterShuttleRun": "十米往返跑", + "resourceIdPlaceholder": "请选择客户姓名", + "studentIdPlaceholder": "请选择学员姓名", + "heightPlaceholder": "请输入身高", + "weightPlaceholder": "请输入体重", + "coachIdPlaceholder": "请选择教练", + "createdAtPlaceholder": "请输入创建时间", + "updatedAtPlaceholder": "请输入修改时间", + "seatedForwardBendPlaceholder": "请输入坐位体前屈", + "sitUpsPlaceholder": "请输入仰卧卷腹", + "pushUpsPlaceholder": "请输入九十度仰卧撑", + "flamingoBalancePlaceholder": "请输入火烈鸟平衡测试", + "thirtySecJumpPlaceholder": "请输入三十秒双脚连续跳", + "standingLongJumpPlaceholder": "请输入立定跳远", + "agilityRunPlaceholder": "请输入4乘10m灵敏折返跑", + "balanceBeamPlaceholder": "请输入走平衡木", + "tennisThrowPlaceholder": "请输入网球掷远", + "tenMeterShuttleRunPlaceholder": "请输入十米往返跑", + "addPhysicalTest": "添加体测", + "updatePhysicalTest": "编辑体测", + "physicalTestDeleteTips": "确定要删除该体测吗?" +} diff --git a/admin/src/app/lang/zh-cn/student_courses.student_courses.json b/admin/src/app/lang/zh-cn/student_courses.student_courses.json index e93df48d..78a472ea 100644 --- a/admin/src/app/lang/zh-cn/student_courses.student_courses.json +++ b/admin/src/app/lang/zh-cn/student_courses.student_courses.json @@ -1,19 +1,19 @@ { - "studentId":"学员", - "studentIdPlaceholder":"全部", - "courseId":"课程", - "courseIdPlaceholder":"全部", - "totalHours":"总正式课时数", - "totalHoursPlaceholder":"请输入总正式课时数", - "giftHours":"赠送课时数", - "giftHoursPlaceholder":"请输入赠送课时数", - "startDate":"课程开始日期", - "startDatePlaceholder":"请输入课程开始日期", - "endDate":"课程结束日期", - "endDatePlaceholder":"请输入课程结束日期", - "addStudentCourses":"添加学员课程", - "updateStudentCourses":"编辑学员课程", - "studentCoursesDeleteTips":"确定要删除该数据吗?", - "startDate":"请选择开始时间", - "endDate":"请选择结束时间" -} \ No newline at end of file + "studentId": "学员", + "studentIdPlaceholder": "全部", + "courseId": "课程", + "courseIdPlaceholder": "全部", + "totalHours": "总正式课时数", + "totalHoursPlaceholder": "请输入总正式课时数", + "giftHours": "赠送课时数", + "giftHoursPlaceholder": "请输入赠送课时数", + "startDate": "课程开始日期", + "startDatePlaceholder": "请输入课程开始日期", + "endDate": "课程结束日期", + "endDatePlaceholder": "请输入课程结束日期", + "addStudentCourses": "添加学员课程", + "updateStudentCourses": "编辑学员课程", + "studentCoursesDeleteTips": "确定要删除该数据吗?", + "startDate": "请选择开始时间", + "endDate": "请选择结束时间" +} diff --git a/admin/src/app/lang/zh-cn/tc_dialog.physical_test_edit.json b/admin/src/app/lang/zh-cn/tc_dialog.physical_test_edit.json index 478af9c2..29e6d0af 100644 --- a/admin/src/app/lang/zh-cn/tc_dialog.physical_test_edit.json +++ b/admin/src/app/lang/zh-cn/tc_dialog.physical_test_edit.json @@ -1,37 +1,37 @@ { - "resourceId":"客户姓名", - "resourceIdPlaceholder":"全部", - "studentId":"学员姓名", - "studentIdPlaceholder":"全部", - "height":"身高", - "heightPlaceholder":"请输入身高", - "weight":"体重", - "weightPlaceholder":"请输入体重", - "coachId":"教练", - "coachIdPlaceholder":"请输入教练", - "seatedForwardBend":"坐位体前屈", - "seatedForwardBendPlaceholder":"请输入坐位体前屈", - "sitUps":"仰卧卷腹", - "sitUpsPlaceholder":"请输入仰卧卷腹", - "pushUps":"九十度仰卧撑", - "pushUpsPlaceholder":"请输入九十度仰卧撑", - "flamingoBalance":"火烈鸟平衡测试", - "flamingoBalancePlaceholder":"请输入火烈鸟平衡测试", - "thirtySecJump":"三十秒双脚连续跳", - "thirtySecJumpPlaceholder":"请输入三十秒双脚连续跳", - "standingLongJump":"立定跳远", - "standingLongJumpPlaceholder":"请输入立定跳远", - "agilityRun":"4乘10m灵敏折返跑", - "agilityRunPlaceholder":"请输入4乘10m灵敏折返跑", - "balanceBeam":"走平衡木", - "balanceBeamPlaceholder":"请输入走平衡木", - "tennisThrow":"网球掷远", - "tennisThrowPlaceholder":"请输入网球掷远", - "tenMeterShuttleRun":"十米往返跑", - "tenMeterShuttleRunPlaceholder":"请输入十米往返跑", - "addPhysicalTest":"添加体测", - "updatePhysicalTest":"编辑体测", - "physicalTestDeleteTips":"确定要删除该数据吗?", - "startDate":"请选择开始时间", - "endDate":"请选择结束时间" -} \ No newline at end of file + "resourceId": "客户姓名", + "resourceIdPlaceholder": "全部", + "studentId": "学员姓名", + "studentIdPlaceholder": "全部", + "height": "身高", + "heightPlaceholder": "请输入身高", + "weight": "体重", + "weightPlaceholder": "请输入体重", + "coachId": "教练", + "coachIdPlaceholder": "请输入教练", + "seatedForwardBend": "坐位体前屈", + "seatedForwardBendPlaceholder": "请输入坐位体前屈", + "sitUps": "仰卧卷腹", + "sitUpsPlaceholder": "请输入仰卧卷腹", + "pushUps": "九十度仰卧撑", + "pushUpsPlaceholder": "请输入九十度仰卧撑", + "flamingoBalance": "火烈鸟平衡测试", + "flamingoBalancePlaceholder": "请输入火烈鸟平衡测试", + "thirtySecJump": "三十秒双脚连续跳", + "thirtySecJumpPlaceholder": "请输入三十秒双脚连续跳", + "standingLongJump": "立定跳远", + "standingLongJumpPlaceholder": "请输入立定跳远", + "agilityRun": "4乘10m灵敏折返跑", + "agilityRunPlaceholder": "请输入4乘10m灵敏折返跑", + "balanceBeam": "走平衡木", + "balanceBeamPlaceholder": "请输入走平衡木", + "tennisThrow": "网球掷远", + "tennisThrowPlaceholder": "请输入网球掷远", + "tenMeterShuttleRun": "十米往返跑", + "tenMeterShuttleRunPlaceholder": "请输入十米往返跑", + "addPhysicalTest": "添加体测", + "updatePhysicalTest": "编辑体测", + "physicalTestDeleteTips": "确定要删除该数据吗?", + "startDate": "请选择开始时间", + "endDate": "请选择结束时间" +} diff --git a/admin/src/app/views/campus_person_role/campus_person_role.vue b/admin/src/app/views/campus_person_role/campus_person_role.vue index 32add873..c4070ec1 100644 --- a/admin/src/app/views/campus_person_role/campus_person_role.vue +++ b/admin/src/app/views/campus_person_role/campus_person_role.vue @@ -186,7 +186,7 @@ const route = useRoute() const pageName = route.meta.title // ?dept_id=1 -const dept_id = pageName == '市场人员列表' ? 1 : 2; +const dept_id = pageName == '市场人员列表' ? 1 : 2 let campusPersonRoleTable = reactive({ page: 1, limit: 10, diff --git a/admin/src/app/views/communication_records/communication_records.vue b/admin/src/app/views/communication_records/communication_records.vue index 4c5b9abb..0cb86e4d 100644 --- a/admin/src/app/views/communication_records/communication_records.vue +++ b/admin/src/app/views/communication_records/communication_records.vue @@ -1,231 +1,320 @@ - - - - - + + + + + diff --git a/admin/src/app/views/communication_records/components/communication-records-edit.vue b/admin/src/app/views/communication_records/components/communication-records-edit.vue index 9529c239..85802d56 100644 --- a/admin/src/app/views/communication_records/components/communication-records-edit.vue +++ b/admin/src/app/views/communication_records/components/communication-records-edit.vue @@ -1,262 +1,352 @@ - - - - - - + + + + + + diff --git a/admin/src/app/views/customer_resources/customer_resources.vue b/admin/src/app/views/customer_resources/customer_resources.vue index ca1df18a..c01b8b3d 100644 --- a/admin/src/app/views/customer_resources/customer_resources.vue +++ b/admin/src/app/views/customer_resources/customer_resources.vue @@ -1,368 +1,496 @@ \ No newline at end of file +/* 多行超出隐藏 */ +.multi-hidden { + word-break: break-all; + text-overflow: ellipsis; + overflow: hidden; + display: -webkit-box; + -webkit-line-clamp: 2; + -webkit-box-orient: vertical; +} + diff --git a/admin/src/app/views/order_table/components/order-table-edit.vue b/admin/src/app/views/order_table/components/order-table-edit.vue index 91d48266..ad8e03bb 100644 --- a/admin/src/app/views/order_table/components/order-table-edit.vue +++ b/admin/src/app/views/order_table/components/order-table-edit.vue @@ -1,267 +1,328 @@ - - - - - - + + + + + + diff --git a/admin/src/app/views/order_table/order_table.vue b/admin/src/app/views/order_table/order_table.vue index 8129b146..2664fbad 100644 --- a/admin/src/app/views/order_table/order_table.vue +++ b/admin/src/app/views/order_table/order_table.vue @@ -1,238 +1,323 @@ - - - - - + + + + + diff --git a/admin/src/app/views/physical_test/components/physical-test-edit.vue b/admin/src/app/views/physical_test/components/physical-test-edit.vue index fc37d730..bffd277c 100644 --- a/admin/src/app/views/physical_test/components/physical-test-edit.vue +++ b/admin/src/app/views/physical_test/components/physical-test-edit.vue @@ -1,324 +1,416 @@ - - - - - - + + + + + + diff --git a/admin/src/app/views/physical_test/physical_test.vue b/admin/src/app/views/physical_test/physical_test.vue index f185c9bb..48f3fc37 100644 --- a/admin/src/app/views/physical_test/physical_test.vue +++ b/admin/src/app/views/physical_test/physical_test.vue @@ -1,204 +1,268 @@ - - - - - + + + + + diff --git a/admin/src/app/views/physical_test/physical_test_edit.vue b/admin/src/app/views/physical_test/physical_test_edit.vue index bf274a9d..826fe3b4 100644 --- a/admin/src/app/views/physical_test/physical_test_edit.vue +++ b/admin/src/app/views/physical_test/physical_test_edit.vue @@ -1,339 +1,425 @@ - - - - - + + + + + diff --git a/admin/src/app/views/setting/pay.vue b/admin/src/app/views/setting/pay.vue index 2d84acd4..d237d0e8 100644 --- a/admin/src/app/views/setting/pay.vue +++ b/admin/src/app/views/setting/pay.vue @@ -1,63 +1,116 @@ diff --git a/admin/src/app/views/student_courses/components/student-courses-edit.vue b/admin/src/app/views/student_courses/components/student-courses-edit.vue index 924f5eee..524ea2b4 100644 --- a/admin/src/app/views/student_courses/components/student-courses-edit.vue +++ b/admin/src/app/views/student_courses/components/student-courses-edit.vue @@ -1,231 +1,273 @@ - - - - - - + + + + + + diff --git a/admin/src/app/views/student_courses/student_courses.vue b/admin/src/app/views/student_courses/student_courses.vue index 5756e596..72e3a824 100644 --- a/admin/src/app/views/student_courses/student_courses.vue +++ b/admin/src/app/views/student_courses/student_courses.vue @@ -1,201 +1,271 @@ - - - - - + + + + + diff --git a/admin/src/app/views/tc_dialog/tc_dialog.vue b/admin/src/app/views/tc_dialog/tc_dialog.vue index 9a4e3fac..04954771 100644 --- a/admin/src/app/views/tc_dialog/tc_dialog.vue +++ b/admin/src/app/views/tc_dialog/tc_dialog.vue @@ -1,239 +1,281 @@ - - - - - + + + + + diff --git a/admin/src/app/views/timetables/timetables.vue b/admin/src/app/views/timetables/timetables.vue index 849836a4..746bec0c 100644 --- a/admin/src/app/views/timetables/timetables.vue +++ b/admin/src/app/views/timetables/timetables.vue @@ -26,7 +26,9 @@ value-format="YYYY-MM-DD" @change="handleDateRangeChange" /> - 查询 + 查询 添加课程 @@ -66,7 +68,9 @@ >