优化见习教师评选

This commit is contained in:
sk1551 2020-08-20 17:29:09 +08:00
parent 6256be501a
commit 2e8f2ae9fa
3 changed files with 40 additions and 5 deletions

View File

@ -28,6 +28,12 @@ public class TsbzJxzxpxfa extends BaseEntity {
@Excel(name = "方案名称") @Excel(name = "方案名称")
private String name; private String name;
/**
* 方案内容
*/
@Excel(name = "方案名称")
private String fanr;
/** /**
* 方案文件 * 方案文件
*/ */
@ -177,6 +183,7 @@ public class TsbzJxzxpxfa extends BaseEntity {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE) return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId()) .append("id", getId())
.append("name", getName()) .append("name", getName())
.append("fanr", getFanr())
.append("fawj", getFawj()) .append("fawj", getFawj())
.append("fazt", getFazt()) .append("fazt", getFazt())
.append("fayxkssj", getFayxkssj()) .append("fayxkssj", getFayxkssj())
@ -189,4 +196,12 @@ public class TsbzJxzxpxfa extends BaseEntity {
.append("wjmc", getWjmc()) .append("wjmc", getWjmc())
.toString(); .toString();
} }
public String getFanr() {
return fanr;
}
public void setFanr(String fanr) {
this.fanr = fanr;
}
} }

View File

@ -7,6 +7,7 @@
<resultMap type="TsbzJxzxpxfa" id="TsbzJxzxpxfaResult"> <resultMap type="TsbzJxzxpxfa" id="TsbzJxzxpxfaResult">
<result property="id" column="id"/> <result property="id" column="id"/>
<result property="name" column="name"/> <result property="name" column="name"/>
<result property="fanr" column="fanr" />
<result property="fawj" column="fawj"/> <result property="fawj" column="fawj"/>
<result property="fazt" column="fazt"/> <result property="fazt" column="fazt"/>
<result property="fayxkssj" column="fayxkssj"/> <result property="fayxkssj" column="fayxkssj"/>
@ -20,13 +21,14 @@
</resultMap> </resultMap>
<sql id="selectTsbzJxzxpxfaVo"> <sql id="selectTsbzJxzxpxfaVo">
select id, name, fawj, fazt, fayxkssj, fayxjssj, nf, pxxd, pxxk, createuserid, create_time, wjmc from tsbz_jxzxpxfa select id, name, fanr, fawj, fazt, fayxkssj, fayxjssj, nf, pxxd, pxxk, createuserid, create_time, wjmc from tsbz_jxzxpxfa
</sql> </sql>
<select id="selectTsbzJxzxpxfaList" parameterType="TsbzJxzxpxfa" resultMap="TsbzJxzxpxfaResult"> <select id="selectTsbzJxzxpxfaList" parameterType="TsbzJxzxpxfa" resultMap="TsbzJxzxpxfaResult">
<include refid="selectTsbzJxzxpxfaVo"/> <include refid="selectTsbzJxzxpxfaVo"/>
<where> <where>
<if test="name != null and name != ''">and name like concat('%', #{name}, '%')</if> <if test="name != null and name != ''">and name like concat('%', #{name}, '%')</if>
<if test="fanr != null and fanr != ''"> and fanr = #{fanr}</if>
<if test="fawj != null and fawj != ''">and fawj = #{fawj}</if> <if test="fawj != null and fawj != ''">and fawj = #{fawj}</if>
<if test="fazt != null and fazt != ''">and fazt = #{fazt}</if> <if test="fazt != null and fazt != ''">and fazt = #{fazt}</if>
<if test="fayxkssj != null ">and fayxkssj = #{fayxkssj}</if> <if test="fayxkssj != null ">and fayxkssj = #{fayxkssj}</if>
@ -48,6 +50,7 @@
insert into tsbz_jxzxpxfa insert into tsbz_jxzxpxfa
<trim prefix="(" suffix=")" suffixOverrides=","> <trim prefix="(" suffix=")" suffixOverrides=",">
<if test="name != null">name,</if> <if test="name != null">name,</if>
<if test="fanr != null">fanr,</if>
<if test="fawj != null">fawj,</if> <if test="fawj != null">fawj,</if>
<if test="fazt != null">fazt,</if> <if test="fazt != null">fazt,</if>
<if test="fayxkssj != null">fayxkssj,</if> <if test="fayxkssj != null">fayxkssj,</if>
@ -61,6 +64,7 @@
</trim> </trim>
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="name != null">#{name},</if> <if test="name != null">#{name},</if>
<if test="fanr != null">#{fanr},</if>
<if test="fawj != null">#{fawj},</if> <if test="fawj != null">#{fawj},</if>
<if test="fazt != null">#{fazt},</if> <if test="fazt != null">#{fazt},</if>
<if test="fayxkssj != null">#{fayxkssj},</if> <if test="fayxkssj != null">#{fayxkssj},</if>
@ -78,6 +82,7 @@
update tsbz_jxzxpxfa update tsbz_jxzxpxfa
<trim prefix="SET" suffixOverrides=","> <trim prefix="SET" suffixOverrides=",">
<if test="name != null">name = #{name},</if> <if test="name != null">name = #{name},</if>
<if test="fanr != null">fanr = #{fanr},</if>
<if test="fawj != null">fawj = #{fawj},</if> <if test="fawj != null">fawj = #{fawj},</if>
<if test="fazt != null">fazt = #{fazt},</if> <if test="fazt != null">fazt = #{fazt},</if>
<if test="fayxkssj != null">fayxkssj = #{fayxkssj},</if> <if test="fayxkssj != null">fayxkssj = #{fayxkssj},</if>

View File

@ -120,8 +120,8 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="所属年份" align="center" prop="nf" /> <el-table-column label="所属年份" align="center" prop="nf" />
<el-table-column label="评选学段" align="center" prop="pxxd" /> <el-table-column label="评选学段" align="center" prop="pxxd" :formatter="pxxdFormat" />
<el-table-column label="评选学科" align="center" prop="pxxk" /> <el-table-column label="评选学科" align="center" prop="pxxk" :formatter="pxxkFormat" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
@ -151,12 +151,15 @@
/> />
<!-- 添加或修改见习之星评选方案对话框 --> <!-- 添加或修改见习之星评选方案对话框 -->
<el-dialog :title="title" :visible.sync="open" width="600px" append-to-body> <el-dialog :title="title" :visible.sync="open" width="1024px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="110px"> <el-form ref="form" :model="form" :rules="rules" label-width="110px">
<el-form-item label="方案名称" prop="name"> <el-form-item label="方案名称" prop="name">
<el-input v-model="form.name" placeholder="请输入方案名称" /> <el-input v-model="form.name" placeholder="请输入方案名称" />
</el-form-item> </el-form-item>
<el-form-item label="方案文件" prop="fawj"> <el-form-item label="方案内容" prop="fanr">
<Editor v-model="form.fanr" placeholder="请输入方案内容" />
</el-form-item>
<el-form-item label="方案文件" prop="fawj" >
<el-input v-model="form.fawj" v-if="false" /> <el-input v-model="form.fawj" v-if="false" />
<el-upload <el-upload
class="upload-demo" class="upload-demo"
@ -241,9 +244,13 @@ import {
} from "@/api/jxjs/jxzxpxfa"; } from "@/api/jxjs/jxzxpxfa";
import { getToken } from "@/utils/auth"; import { getToken } from "@/utils/auth";
import Editor from "@/components/Editor";
export default { export default {
name: "Jxzxpxfa", name: "Jxzxpxfa",
components: {
Editor
},
data() { data() {
return { return {
// //
@ -358,6 +365,14 @@ export default {
beforeRemove(file, fileList) { beforeRemove(file, fileList) {
return this.$confirm(`确定移除 ${file.name}`); return this.$confirm(`确定移除 ${file.name}`);
}, },
//
pxxdFormat(row, column) {
return this.selectDictLabel(this.pxxdOptions, row.pxxd);
},
//
pxxkFormat(row, column) {
return this.selectDictLabel(this.pxxkOptions, row.pxxk);
},
/** 查询见习之星评选方案列表 */ /** 查询见习之星评选方案列表 */
getList() { getList() {
this.loading = true; this.loading = true;