mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-11 03:46:45 +08:00
讲师管理修改
This commit is contained in:
@@ -125,7 +125,7 @@
|
||||
</template>
|
||||
<script lang="jsx">
|
||||
import { reactive, toRefs, ref, watch } from "vue";
|
||||
import { useRouter,useRoute } from "vue-router";
|
||||
import {useRouter, useRoute} from "vue-router";
|
||||
import {
|
||||
UploadOutlined,
|
||||
} from '@ant-design/icons-vue';
|
||||
@@ -144,6 +144,7 @@ export default {
|
||||
},
|
||||
setup() {
|
||||
const router=useRouter();
|
||||
const route = useRoute();
|
||||
const { query: { id }} = useRoute();
|
||||
const state = reactive({
|
||||
opendrawer:false,
|
||||
@@ -168,9 +169,9 @@ export default {
|
||||
payrollPlaceId: null,
|
||||
departId: null,
|
||||
summaryDate:null,
|
||||
id: '5',
|
||||
name: '李玉冰',
|
||||
trainOrgId: '1820781519658237968',
|
||||
id: route.query.id,
|
||||
name: '',
|
||||
trainOrgId: '',
|
||||
},
|
||||
teacherNo:null,
|
||||
drawer: {
|
||||
@@ -185,16 +186,16 @@ export default {
|
||||
const columns = ref([
|
||||
{
|
||||
title: '讲师姓名 ',
|
||||
dataIndex: 'teacherName',
|
||||
key: 'teacherName',
|
||||
dataIndex: 'name',
|
||||
key: 'name',
|
||||
elipsis: true,
|
||||
align: "center",
|
||||
width: 200,
|
||||
},
|
||||
{
|
||||
title: '讲师工号',
|
||||
dataIndex: 'teacherNo',
|
||||
key: 'teacherNo',
|
||||
dataIndex: 'userNo',
|
||||
key: 'userNo',
|
||||
align: "center",
|
||||
elipsis: true,
|
||||
width: 200,
|
||||
|
||||
Reference in New Issue
Block a user