终端培训更新

This commit is contained in:
Yuanjianghong 2021-11-05 09:14:01 +08:00
parent 4660e88510
commit 612846b052
5 changed files with 208 additions and 30 deletions

View File

@ -0,0 +1,15 @@
import request from '@/utils/request'
const terminalTrainSignApi = {
list: 'project/terminalTrain/list',
}
export function terminalTrainSignList(params) {
console.log("terminalTrainList------------{}", params)
return request({
url: terminalTrainSignApi.list,
method: 'get',
params: params
})
}

View File

@ -16,8 +16,8 @@
</a-descriptions> </a-descriptions>
<br /> <br />
<div style="width: 100%; height: 32px; margin-bottom: 8px"> <div style="width: 100%; height: 32px; margin-bottom: 8px">
<a-button type="primary"> </a-button> <a-button v-if="hasPerm('terminal:train:edit')" type="primary" @click="editInfo()"> </a-button>
<a-button type="primary">会议签到信息</a-button> <a-button v-if="hasPerm('terminal:train:list')" type="primary" @click="signInfo()">会议签到信息</a-button>
</div> </div>
</a-card> </a-card>
</template> </template>
@ -54,6 +54,23 @@ export default {
}, },
}) })
}, },
editInfo(){ //
this.$router.push({
path: '/project/terminalTrain/form',
query: {
id: this.detailData.id,
}
})
},
signInfo(){ //
this.$router.push({
path: '/project/terminalTrain/signList',
query: {
id: this.detailData.id,
}
})
}
}, },
} }
</script> </script>

View File

@ -1,6 +1,6 @@
<template> <template>
<a-card :bordered="false" :title="titleName"> <a-card :bordered="false" :title="titleName">
<a-form-model @submit="handleSubmit" :model="form"> <a-form-model @submit="handleSubmit" :model="form" :layout="layout" :labelCol="{span: 2}" :wrapperCol="{span: 10}">
<a-form-model-item label="培训名称"> <a-form-model-item label="培训名称">
<a-input v-model="form.trainName" /> <a-input v-model="form.trainName" />
</a-form-model-item> </a-form-model-item>
@ -31,8 +31,10 @@
<a-form-model-item label="备注"> <a-form-model-item label="备注">
<a-input v-model="form.remark" type="textarea" /> <a-input v-model="form.remark" type="textarea" />
</a-form-model-item> </a-form-model-item>
<a-button htmlType="submit" type="primary" > 保存 </a-button> <a-form-model-item>
<a-button htmlType="submit" type="primary" @click="() => { this.form.status = 2 }"> 保存并发布 </a-button> <a-button htmlType="submit" type="primary" @click="() => { this.form.status = 1}" style="border-left: 200px;"> 保存 </a-button>
<a-button htmlType="submit" type="primary" @click="() => { this.form.status = 2}"> 保存并发布 </a-button>
</a-form-model-item>
</a-form-model> </a-form-model>
</a-card> </a-card>
</template> </template>
@ -66,7 +68,8 @@ export default {
remark: '', remark: '',
status: 1, status: 1,
}, },
titleName: '新增终端培训', titleName: '终端培训表单',
layout: 'horizontal'
} }
}, },
// data // data

View File

@ -78,40 +78,20 @@ export default {
endDate: this.$route.query.terminalTrainEndDate || null, endDate: this.$route.query.terminalTrainEndDate || null,
}, },
columns: [ columns: [
{ { title: '序号', width: 'auto', align: 'center', dataIndex: 'id', key: 'id', scopedSlots: { customRender: 'serial' }, },
title: '序号',
width: 'auto',
align: 'center',
dataIndex: 'id',
key: 'id',
scopedSlots: { customRender: 'serial' },
},
{ title: '项目名称', width: 'auto', align: 'center', dataIndex: 'projectName', key: 'projectName' }, { title: '项目名称', width: 'auto', align: 'center', dataIndex: 'projectName', key: 'projectName' },
{ { title: '时间', dataIndex: 'date', key: 'date',
title: '时间',
dataIndex: 'date',
key: 'date',
customRender: (text, record, index) => { customRender: (text, record, index) => {
return record.startDate + ' - ' + record.endDate return record.startDate + ' - ' + record.endDate
}, },
}, },
{ { title: '人数', width: 'auto', align: 'center', dataIndex: 'num', key: 'num',
title: '人数',
width: 'auto',
align: 'center',
dataIndex: 'num',
key: 'num',
customRender: (text, record, index) => { customRender: (text, record, index) => {
return record.signNum + ' / ' + record.personNum return record.signNum + ' / ' + record.personNum
}, },
}, },
{ title: '培训类型', width: 'auto', align: 'center', dataIndex: 'projectType', key: 'projectType' }, { title: '培训类型', width: 'auto', align: 'center', dataIndex: 'projectType', key: 'projectType' },
{ { title: '项目状态', width: 'auto', align: 'center', dataIndex: 'status', key: 'status',
title: '项目状态',
width: 'auto',
align: 'center',
dataIndex: 'status',
key: 'status',
customRender: (text, record, index) => { customRender: (text, record, index) => {
if (text == '1') return '未发布' if (text == '1') return '未发布'
else if (text == '2') return '未开始' else if (text == '2') return '未开始'

View File

@ -0,0 +1,163 @@
<template>
<a-card :bordered="false" title="会议签到">
<template slot="extra">
<a-button size="small" @click="close">返回</a-button>
</template>
<a-tabs :animated="false" :default-active-key="1" @change="changeTab" :headStyle="{ paddingTop: '300px' }">
<a-tab-pane key="1" :tab="list1.title">
<a-list item-layout="horizontal" :data-source="list1.data">
<a-list-item slot="renderItem" slot-scope="item">
<a-list-item-meta :description="headerListData(item)">
<p slot="title">{{ item.name }}</p>
<a-avatar slot="avatar" src="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png" />
</a-list-item-meta>
<div class="list-content">
<div class="list-content-item">
<span>签到状态</span>
<p v-if="item.signStatus == 1" :style="{ color: 'turquoise' }">正常</p>
<p v-if="item.signStatus == 2" :style="{ color: 'red' }">迟到</p>
</div>
<div class="list-content-item">
<span>签到时间</span>
<p>{{ item.signTime }}</p>
</div>
</div>
</a-list-item>
</a-list>
</a-tab-pane>
<a-tab-pane key="2" :tab="list2.title" force-render>
<a-list item-layout="horizontal" :data-source="list2.data">
<a-list-item slot="renderItem" slot-scope="item">
<a-list-item-meta :description="headerListData(item)">
<p slot="title">{{ item.name }}</p>
<a-avatar slot="avatar" src="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png" />
</a-list-item-meta>
</a-list-item>
</a-list>
</a-tab-pane>
</a-tabs>
</a-card>
</template>
<script>
// jsjsjson
// import from ''
import { terminalTrainSignList } from '@/api/project/terminalTrainSign'
export default {
// import使
components: {
terminalTrainSignList,
},
props: {},
data() {
//
return {
list1: {
title: '',
params: {
id: this.$route.query.id || '',
type: 1,
},
data: [],
},
list2: {
title: '',
params: {
id: this.$route.query.id || '',
type: 2,
},
data: [],
},
}
},
// data
computed: {},
// data
watch: {},
//
methods: {
changeTab(key) {
if (key === '1') {
this.queryList(this.list1.params)
} else {
this.queryList(this.list2.params)
}
},
//
close() {
this.$router.push({
path: '/project/terminalTrain/detail',
query: {
terminalTrainId: this.list1.params.id,
},
})
},
//
headerListData(item) {
return item.department + '-' + item.position
},
//
queryList(params) {
terminalTrainSignList(params).then((res) => {
console.log(res)
if (params.type === 1) {
this.list1.data = res.data
this.list1.title = '已签到人员 (' + res.signNum + ')'
this.list2.title = '未签到人员 (' + res.enrollNum + ')'
} else {
this.list2.data = res.data
this.list1.title = '已签到人员 (' + res.signNum + ')'
this.list2.title = '未签到人员 (' + res.enrollNum + ')'
}
})
},
},
// - 访this
created() {
this.changeTab('1')
},
// - 访DOM
mounted() {},
// -
beforeCreate() {},
// -
beforeMount() {},
// -
beforeUpdate() {},
// -
updated() {},
// -
beforeDestroy() {},
// -
destroyed() {},
// keep-alive
activated() {},
}
</script>
<style lang="less" scoped>
.ant-avatar-lg {
width: 48px;
height: 48px;
line-height: 48px;
}
.list-content-item {
color: rgba(0, 0, 0, 0.45);
display: inline-block;
vertical-align: middle;
font-size: 14px;
margin-left: 300px;
span {
line-height: 20px;
}
p {
margin-top: 4px;
margin-bottom: 0;
line-height: 22px;
}
}
</style>