Commit 62106ddb by Cat

zd 级部教师电子档案

parent 7032986b
......@@ -10,12 +10,7 @@
<el-form-item label="姓名">
<el-input v-model="form.name"></el-input>
</el-form-item>
<el-form-item label="任务名称">
<el-select v-model="form.region" placeholder="请选择活动区域">
<el-option label="区域一" value="shanghai"></el-option>
<el-option label="区域二" value="beijing"></el-option>
</el-select>
</el-form-item>
<el-form-item label="任务名称"> </el-form-item>
<el-form-item>
<el-button
size="mini"
......@@ -31,14 +26,18 @@
>提交</el-button
>
</el-form-item>
<el-row>
<el-col>
<h4>总计:</h4>
<span>120</span>
<h4>已填写:</h4>
<span>60</span>
<h4>已确认:</h4>
<span>60</span>
<el-row :gutter="10">
<el-col :span="1.5">
<span>总计:</span>
<span style="font-size: 14px">120</span>
</el-col>
<el-col :span="1.5">
<span>已填写:</span>
<span style="font-size: 14px">60</span>
</el-col>
<el-col :span="1.5">
<span>已确认:</span>
<span style="font-size: 14px">60</span>
</el-col>
</el-row>
</el-form>
......@@ -383,6 +382,26 @@
</template>
<script>
import {
addTeacherNotice, //添加任务
listTeacherNotice, // 任务列表
infoTeaNotice, //任务详情
updateTask, //添加修改
infoTeacherNotice, //发布任务
taskRetracted, //任务撤回
taskCompleted, //任务完成
delTaskInfo, //任务删除
getteacherNotice, // 通知下档案查看|数据维护
getNoticeInfo, //老师查看档案详情
getDepInfo, //级部查看档案详情
getFileTnfo, //查看档案详情
syncNotice, //同步档案
updateInfo, //教师档案修改
delInfo, //教师档案删除
fileSubReview, //教师档案提交审核
fileSubApproved, //教师档案提交通过
fileSubRejected, //教师档案提交驳回
} from "@/api/smartSchool/teacherFiles/teacherElectronicFile";
export default {
name: "gradeElectronicRecord",
data() {
......@@ -396,42 +415,11 @@ export default {
name: "",
region: "",
},
tableData: [
{
id: 1,
schoolYear: "未填写",
level: "2022级部",
name: "张三",
IDNum: "121212121212121212",
schedule: "未填写",
},
{
id: 2,
schoolYear: "已填写,未确认",
level: "2022级部",
name: "张三",
IDNum: "121212121212121212",
schedule: "未填写",
},
{
id: 3,
schoolYear: "已确认",
level: "2022级部",
name: "张三",
IDNum: "121212121212121212",
schedule: "未填写",
},
],
tableData: [],
dialogVisible: false,
form: {},
status: this.$route.query.status,
dialogTableData: [
{
level: "2022",
name: "李四",
ID: "12121212121212",
},
],
dialogTableData: [],
check: false,
//弹窗表单
dialogForm: {},
......@@ -450,13 +438,21 @@ export default {
};
},
mounted() {
console.log("id", this.$route.query.id);
console.log("status", this.status);
// console.log("id", this.$route.query.id);
// console.log("status", this.status);
this.getList();
},
methods: {
/** 查询信息列表 */
getList() {
this.loading = true;
const params = {
pageNum: this.queryForm.pageNum,
pageSize: this.queryForm.pageSize,
gradeId: this.$store.state.user.userId,
// noticeId:
};
// getDepInfo().then((res) => {});
//接口
// listUser(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
// this.userList = response.rows;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment