mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-16 14:26:45 +08:00
讲师管理bug
This commit is contained in:
@@ -16,6 +16,12 @@
|
|||||||
</a-input>
|
</a-input>
|
||||||
</div>
|
</div>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
|
<a-form-item class="select">
|
||||||
|
<a-input v-model:value="searchParam.courseName" style="width: 230px; height: 40px; border-radius: 8px"
|
||||||
|
placeholder="请输入课程名称进行检索" allowClear showSearch
|
||||||
|
v-on:keydown.enter="enterPressHadlerSearch">
|
||||||
|
</a-input>
|
||||||
|
</a-form-item>
|
||||||
<a-form-item class="select">
|
<a-form-item class="select">
|
||||||
<a-select style="width: 235px ;margin-bottom:20px" v-model:value="searchParam.trainOrgId" placeholder="请选择培训发生组织" allowClear
|
<a-select style="width: 235px ;margin-bottom:20px" v-model:value="searchParam.trainOrgId" placeholder="请选择培训发生组织" allowClear
|
||||||
:options="orgListSearch"
|
:options="orgListSearch"
|
||||||
@@ -42,7 +48,7 @@
|
|||||||
v-on:keydown.enter="enterPressHadlerSearch">
|
v-on:keydown.enter="enterPressHadlerSearch">
|
||||||
</a-select>
|
</a-select>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
<a-form-item class="select" >
|
<a-form-item class="select" v-if="moreid==2">
|
||||||
<a-select style="width: 200px ;margin-bottom:20px" v-model:value="searchParam.status" placeholder="请选择状态" allowClear
|
<a-select style="width: 200px ;margin-bottom:20px" v-model:value="searchParam.status" placeholder="请选择状态" allowClear
|
||||||
:options="AuthenticationStatusList"
|
:options="AuthenticationStatusList"
|
||||||
v-on:keydown.enter="enterPressHadlerSearch">
|
v-on:keydown.enter="enterPressHadlerSearch">
|
||||||
@@ -662,6 +668,7 @@
|
|||||||
name:null,
|
name:null,
|
||||||
trainOrgId:null,
|
trainOrgId:null,
|
||||||
tSystemId:null,
|
tSystemId:null,
|
||||||
|
courseName: null,
|
||||||
tLevelName:null,
|
tLevelName:null,
|
||||||
courseType:null,
|
courseType:null,
|
||||||
certStatus:null,
|
certStatus:null,
|
||||||
@@ -841,7 +848,7 @@ getAllLevelList().then((res) => {
|
|||||||
state.moreid=1
|
state.moreid=1
|
||||||
// state.searchParam.certStatus=null
|
// state.searchParam.certStatus=null
|
||||||
// state.searchParam.salaryName=null
|
// state.searchParam.salaryName=null
|
||||||
// state.searchParam.status=null
|
state.searchParam.status=null
|
||||||
state.searchParam.tSystemId = null
|
state.searchParam.tSystemId = null
|
||||||
state.searchParam.tLevelName = null
|
state.searchParam.tLevelName = null
|
||||||
}
|
}
|
||||||
@@ -1126,6 +1133,7 @@ getAllLevelList().then((res) => {
|
|||||||
beginTime:null,
|
beginTime:null,
|
||||||
userNo:null,
|
userNo:null,
|
||||||
tSystemId:null,
|
tSystemId:null,
|
||||||
|
courseName: null,
|
||||||
tLevelName:null,
|
tLevelName:null,
|
||||||
courseType:null,
|
courseType:null,
|
||||||
certStatus:null,
|
certStatus:null,
|
||||||
@@ -1821,7 +1829,7 @@ const column = ref([
|
|||||||
const handleExport = ()=>{
|
const handleExport = ()=>{
|
||||||
window.open (
|
window.open (
|
||||||
`${process.env.VUE_APP_BASE_API}/admin/export/exportTeacherExpense?name=${state.searchParam.name || ""
|
`${process.env.VUE_APP_BASE_API}/admin/export/exportTeacherExpense?name=${state.searchParam.name || ""
|
||||||
}&status=${ state.searchParam.status || ""}&trainOrgId=${ state.searchParam.trainOrgId || ""}&type=${state.searchParam.type || ""}&tSystemId=${ state.searchParam.tSystemId || ""}&tLevelName=${ state.searchParam.tLevelName || ""}&beginTime=${state.searchParam.beginTime || ""}&endTime=${state.searchParam.endTime || ""}`
|
}&status=${ state.searchParam.status || ""}&trainOrgId=${ state.searchParam.trainOrgId || ""}&type=${state.searchParam.type || ""}&courseName=${ state.searchParam.courseName || ""}&tSystemId=${ state.searchParam.tSystemId || ""}&tLevelName=${ state.searchParam.tLevelName || ""}&beginTime=${state.searchParam.beginTime || ""}&endTime=${state.searchParam.endTime || ""}`
|
||||||
);
|
);
|
||||||
// this.download('lesson_records/export', {
|
// this.download('lesson_records/export', {
|
||||||
// ...state.searchParam
|
// ...state.searchParam
|
||||||
|
|||||||
@@ -69,6 +69,9 @@
|
|||||||
</a-button>
|
</a-button>
|
||||||
</div> -->
|
</div> -->
|
||||||
<!-- 表格 -->
|
<!-- 表格 -->
|
||||||
|
<div style="margin-bottom: 4px;color: #aaaaaa;">
|
||||||
|
注:下表为按讲师汇总的费用
|
||||||
|
</div>
|
||||||
<div style="padding: 10px 0">
|
<div style="padding: 10px 0">
|
||||||
<a-table :header-cell-style="{ 'text-align': 'center' }" style="border: 1px solid #f2f6fe" :columns="columns"
|
<a-table :header-cell-style="{ 'text-align': 'center' }" style="border: 1px solid #f2f6fe" :columns="columns"
|
||||||
:data-source="tableData" :loading="tableLoading" :scroll="{ x: 600}" :pagination="pagination">
|
:data-source="tableData" :loading="tableLoading" :scroll="{ x: 600}" :pagination="pagination">
|
||||||
@@ -105,7 +108,7 @@
|
|||||||
</div> -->
|
</div> -->
|
||||||
<!-- 抽屉 -->
|
<!-- 抽屉 -->
|
||||||
<a-drawer class="largeDrawerInside" v-model:visible="opendrawer" placement="right"
|
<a-drawer class="largeDrawerInside" v-model:visible="opendrawer" placement="right"
|
||||||
@closa="cancelTeachingDialog" :maskClosable="true" width="60%" :title="false">
|
@closa="cancelTeachingDialog" :maskClosable="true" width="80%" :title="false">
|
||||||
<div style="padding:24px;">
|
<div style="padding:24px;">
|
||||||
<div class="headers" style="margin-top:-24px;">
|
<div class="headers" style="margin-top:-24px;">
|
||||||
<div class="headerTitle">查看详情</div>
|
<div class="headerTitle">查看详情</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user