123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701 |
- <template>
- <div class="ev-scoring dark-iview-table">
- <vuescroll ref="score-main-warp">
- <SimpleAnalysis :examInfo="examInfo" v-show="!showTest" :overviewInfo="overviewInfo"></SimpleAnalysis>
- <div class="ev-target-box dark-iview-select">
- <span class="filter-label" v-if="examInfo.grades && examInfo.grades.length > 0">{{$t('learnActivity.score.gradeLabel')}}</span>
- <Select filterable v-model="chooseGrade" class="filter-select" size="small" v-if="examInfo.grades && examInfo.grades.length > 0" style="margin-right:5px" transfer>
- <Option v-for="(item,index) in examInfo.grades" :value="item.id" :key="index">{{ item.name }}</Option>
- </Select>
- <span>{{$t('learnActivity.score.classLabel')}}</span>
- <Select filterable v-model="chooseClass" class="filter-select" style="width:140px;" @on-change="getClassStudent" size="small" transfer>
- <Option v-for="(item,index) in classList" :value="item.id" :key="index">{{ item.name }}</Option>
- </Select>
- <span class="filter-label" v-show="examInfo.code == 'Exam-'+$store.state.userInfo.schoolCode">{{$t('learnActivity.score.subjectLabel')}}</span>
- <Select filterable v-model="chooseSubject" class="filter-select" size="small" @on-change="getCurPaper" v-show="examInfo.code == 'Exam-'+$store.state.userInfo.schoolCode" transfer>
- <Option v-for="(item,index) in examInfo.subjects" :value="item.id" :key="index">{{ item.name }}</Option>
- </Select>
- <span style="margin-left:5px" v-show="showTest">{{$t('learnActivity.score.stuLabel')}}</span>
- <Select filterable v-model="chooseStudent.id" label-in-value class="filter-select" style="width:140px;" size="small" clearable @on-change="setStuInfo" v-show="showTest" transfer>
- <Option v-for="(item,index) in students" :value="item.id" :key="index">
- <span class="select-status-tag" :style="{'background':item.status == 1 ? '#ed4014' : item.status == 2 ? '#ff9900' : '#19be6b'}"></span>
- {{ item.name }}
- </Option>
- </Select>
- <span v-show="showTest" class="common-icon-text" style=" float: right; margin-right: 25px;" @click="toggleScoreStatus" icon="md-apps">
- <Icon :custom="showTest ? 'iconfont icon-table':'iconfont icon-scoring'" style="margin-right:5px;" />
- {{showTest ? $t('learnActivity.score.scoreView'):$t('learnActivity.score.scoring')}}
- </span>
- </div>
- <div class="scoring-main-wrap">
- <Table v-show="!showTest" class="score-box" border :columns="tableColumn" :data="tableData" :loading="tableLoading" @on-sort-change="onSortChange" :no-data-text="$t('learnActivity.score.classNoStu')">
- <template slot-scope="{ row,index }" :slot="'qu'+qIndex" v-for="(item,qIndex) in quCount">
- <div :key="'qu'+qIndex" @click="getStuScore(row,qIndex)" style="cursor:pointer;">
- <span @click="noAnswer" v-if="row.data[qIndex] == -1 && row.status == 1">- -</span>
- <Icon size="20" type="ios-create-outline" color="#2db7f5" v-else-if="row.data[qIndex] == -1 && row.status !== 1" />
- <span style="color:#2db7f5;" v-else>{{row.data[qIndex]}}</span>
- </div>
- </template>
- <!-- <template slot-scope="{ row,index }" slot="total">
- <strong>{{getcount(studentScore[row._index].data)}}</strong>
- </template> -->
- <!-- 1: 未作答 2:未评分 3:已评分 -->
- <template slot-scope="{ row,index }" slot="status">
- <span class="stu-status-tag" @click="getStuScore(row,0)" :style="{'background':row.status == 1 ? '#c5c8ce' : row.status == 2 ? '#ff9900' : '#19be6b', 'cursor':row.status == 1 ? 'text':'pointer'}">
- {{row.status == 1 ? $t('learnActivity.score.status1') : row.status == 2 ? $t('learnActivity.score.status2') : $t('learnActivity.score.status3')}}
- </span>
- </template>
- <Loading slot="loading" :top="-50"></Loading>
- </Table>
- <!-- 分页 -->
- <div class="page-wrap dark-ivew-select" v-show="!showTest">
- <Page show-total size="small" :current="currentPage" :total="studentScore.length" :page-size="pageSize" :page-size-opts="pageSizeOpts" @on-change="pageChange" @on-page-size-change="pageSizeChange" show-sizer />
- </div>
- <div class="dark-iview-table scoring-handle-box" v-show="showTest">
- <PaperScore ref="paperScore" :defaultIndex="defaultIndex" :examId="examInfo.id" :examScope="examInfo.scope" :paper="paperInfo" :studentAnswer="chooseStudent" :subjectId="chooseSubject" @nextStu="getNextStu" style="color:#515a6e;"></PaperScore>
- <Loading :top="200" type="1" style="text-align:center" v-show="dataLoading"></Loading>
- </div>
- </div>
- </vuescroll>
- <!-- <div class="mark-viewer">
- <MarkView></MarkView>
- </div> -->
- </div>
- </template>
- <script>
- import PaperScore from "./PaperScore.vue";
- import MarkView from "./markpaper/MarkView.vue";
- import SimpleAnalysis from "./SimpleAnalysis.vue";
- export default {
- props: {
- examInfo: {
- type: Object,
- default: () => {
- return {}
- }
- }
- },
- components: {
- PaperScore, SimpleAnalysis, MarkView
- },
- data() {
- return {
- schoolClassList: [],
- originData: [],
- studentScore: [],
- tableData: [],
- currentPage: 1,
- pageSize: 10,
- pageSizeOpts: [5, 10, 20, 30, 40],
- overviewInfo: {
- total: 0,
- answered: 0,
- noAnswer: 0,
- scored: 0,
- noScore: 0
- },
- defaultIndex: 0,
- tableLoading: false,
- showTest: false, //是否评分
- studentData: [],
- dataLoading: false,
- chooseGrade: "",
- chooseClass: "",
- chooseSubject: "",
- chooseStudent: {
- id: "",
- name: "",
- scores: [],
- answers: []
- },
- scoreList: [
- {
- title: this.$t('learnActivity.score.column1'),
- key: "name",
- fixed: "left",
- align: "center",
- width: 150,
- },
- {
- title: this.$t('learnActivity.score.column2'),
- key: "total",
- align: "center",
- sortable: true,
- fixed: "right",
- width: 100
- },
- {
- title: this.$t('learnActivity.score.column3'),
- slot: "status",
- align: "center",
- fixed: "right",
- width: 130,
- }
- ],
- tableColumn: [],
- quCount: [],
- paperInfo: {},
- students: [],
- privStuList: undefined,
- routerScope: ''
- }
- },
- methods: {
- // 排序操作
- onSortChange(data) {
- let order = data.order // 当前排序方式 升序、降序、正常
- let key = data.key // 当前排序依据
- switch (order) {
- case 'asc':
- this.studentScore = this.originData.sort((a, b) => { return Number(a[key]) - Number(b[key]) })
- break
- case 'desc':
- this.studentScore = this.originData.sort((a, b) => { return Number(b[key]) - Number(a[key]) })
- break
- case 'normal':
- this.studentScore = this.students
- break
- default:
- break
- }
- this.pageChange(1)
- },
- // 页面size变化
- pageSizeChange(val) {
- this.pageSize = val
- this.pageChange(1)
- },
- // 分页页面变化
- pageChange(page) {
- let start = this.pageSize * (page - 1)
- let end = this.pageSize * page
- this.currentPage = page
- this.tableData = this.studentScore.slice(start, end)
- },
- toggleScoreStatus() {
- this.$refs['paperScore'].isComplete = false
- this.showTest = !this.showTest
- },
- getNextStu() {
- let flag = false
- for (let index in this.paperInfo[this.chooseClass].studentAns.studentScores) {
- if (this.paperInfo[this.chooseClass].studentAns.studentScores[index].indexOf(-1) >= 0) {
- if (this.paperInfo[this.chooseClass].studentAns.studentAnswers[index].length) {
- flag = true
- this.chooseStudent.id = this.paperInfo[this.chooseClass].studentAns.studentIds[index]
- let curStu = this.students.find(item => {
- return item.id == this.chooseStudent.id
- })
- if (curStu) this.chooseStudent.name = curStu.name
- this.chooseStudent.answers = this.paperInfo[this.chooseClass].studentAns.studentAnswers[index]
- this.chooseStudent.scores = this.paperInfo[this.chooseClass].studentAns.studentScores[index]
- this.chooseStudent.classId = this.chooseClass
- this.chooseStudent.status = false
- this.$refs['paperScore'].isComplete = false
- break
- }
- }
- }
- if (!flag) {
- this.showTest = false
- this.$Message.warning(this.$t('learnActivity.score.finishScore'))
- }
- },
- //学生未作答提示
- noAnswer() {
- this.$Message.warning(this.$t('learnActivity.score.unableScore'))
- },
- //获取当前学科的试卷信息
- getCurPaper() {
- let paperInfo = this.examInfo.papers.find((item) => {
- return item.subjectId == this.chooseSubject;
- })
- this.paperInfo = this._.cloneDeep(paperInfo)
- this.getClassStudent()
- },
- //点击学生题号前往评分页面
- getStuScore(data, qIndex) {
- if (data.status == 2 || data.status == 3) {
- this.$refs['paperScore'].isComplete = false
- this.showTest = true
- this.defaultIndex = qIndex
- this.chooseStudent.id = data.id
- this.chooseStudent.name = data.name
- this.chooseStudent.classId = this.chooseClass
- let answerIndex = this.paperInfo[this.chooseClass].studentAns.studentIds.indexOf(data.id)
- if (answerIndex >= 0) {
- this.chooseStudent["scores"] = this.paperInfo[this.chooseClass].studentAns.studentScores[answerIndex]
- this.chooseStudent["answers"] = this.paperInfo[this.chooseClass].studentAns.studentAnswers[answerIndex]
- this.chooseStudent["mark"] = this.paperInfo[this.chooseClass].studentAns.mark[answerIndex] || '' //批注
- this.chooseStudent["status"] = false
- }
- }
- },
- //获取当前学生信息
- setStuInfo(data) {
- if (data) {
- this.chooseStudent.name = data.label;
- this.chooseStudent.classId = this.chooseClass
- let answerIndex = this.paperInfo[this.chooseClass].studentAns.studentIds.indexOf(data.value);
- if (answerIndex >= 0) {
- this.chooseStudent["scores"] = this.paperInfo[this.chooseClass].studentAns.studentScores[answerIndex];
- this.chooseStudent["answers"] = this.paperInfo[this.chooseClass].studentAns.studentAnswers[answerIndex];
- this.chooseStudent["mark"] = this.paperInfo[this.chooseClass].studentAns.mark[answerIndex];
- this.chooseStudent["status"] = false;
- }
- }
- },
- //分数求和
- getcount(arr) {
- return arr.reduce((total, item) => {
- if (item !== -1) {
- return total + item;
- } else {
- return total;
- }
- }, 0);
- },
- // 获取班级名单
- getClassStudent() {
- this.tableData = []
- if (!this.chooseClass) return
- this.showTest = false
- this.tableLoading = true
- let requestData = {
- ids: [this.chooseClass],
- scope: this.examInfo.scope == 'private' ? 'private' : 'school',
- // school_code: this.examInfo.scope == 'private' ? this.$store.state.userInfo.TEAMModelId : this.$store.state.userInfo.schoolCode,
- school_code: this.$store.state.userInfo.schoolCode
- };
- this.$api.schoolSetting.getClassroomStudent(requestData).then((res) => {
- if (!res.error) {
- if (!this.paperInfo[this.chooseClass]) {
- this.paperInfo[this.chooseClass] = {}
- }
- let classStu = {
- students: res.stus.length ? res.stus[0] : [],
- id: this.chooseClass
- }
- this.$set(this.paperInfo[this.chooseClass], "students", classStu)
- this.students = []
- this.studentScore = []
- this.tableColumn = [...this.scoreList]
- let defSocre = []
- if (this.examInfo.progress == 'pending') {//如果评测未发布,没有学生数据,则直接渲染表格
- this.quCount = this.paperInfo.item ? this.paperInfo.item.length : 0
- for (let i = 0; i < this.quCount; i++) {
- let data = {
- title: "Q" + (i + 1),
- slot: "qu" + i,
- align: "center",
- minWidth: 65,
- }
- this.tableColumn.push(data)
- defSocre.push(-1)
- }
- let classStu = this.paperInfo[this.chooseClass].students.students
- for (let k = 0; k < classStu.length; k++) {
- let score = {}
- score.name = classStu[k].name
- score.id = classStu[k].id
- score.data = defSocre
- score.total = 0
- score.status = 1
- this.studentScore.push(score)
- }
- this.pageChange(1)
- this.tableLoading = false
- } else {//如果获取进行中或已结束则需要拉取学生数据
- this.getStudentAnswer()
- }
- } else {
- this.$Message.error("API ERROR!");
- }
- })
- },
- //计算总览数据
- calcOverView(data) {
- //计算已作答未作答
- this.overviewInfo.noAnswer = 0
- data.studentAnswers.forEach(item => {
- if (item.length == 0) {
- this.overviewInfo.noAnswer++
- }
- })
- this.overviewInfo.answered = data.studentAnswers.length - this.overviewInfo.noAnswer
- // 计算已评分未评分
- this.overviewInfo.noScore = 0
- data.studentScores.forEach(item => {
- let flag = item.find(item => {
- return item == -1
- })
- if (flag) {
- this.overviewInfo.noScore++
- }
- })
- this.overviewInfo.scored = data.studentScores.length - this.overviewInfo.noScore
- // 班级总人数
- this.overviewInfo.total = data.studentIds.length
- },
- getStudentAnswer() {
- this.dataLoading = true
- let requestData = {
- id: this.examInfo.id,
- code: this.examInfo.scope == 'school' ? this.$store.state.user.schoolCode : this.$store.state.userInfo.TEAMModelId,
- subjectId: this.chooseSubject,
- classId: this.chooseClass,
- };
- this.$api.learnActivity.FindAllStudent(requestData).then(
- (res) => {
- if (res.examClassResults) {
- this.paperInfo[this.chooseClass]["studentAns"] = res.examClassResults[0];
- this.setTableData();
- if (res.examClassResults[0]) {
- this.calcOverView(res.examClassResults[0])
- }
- }
- },
- (err) => {
- this.$Message.error("API ERROR!");
- }
- ).finally(() => {
- setTimeout(() => {
- this.dataLoading = false
- this.tableLoading = false
- }, 500);
- });
- },
- //初始化表单数据
- setTableData() {
- if (this.paperInfo[this.chooseClass] && this.paperInfo[this.chooseClass]["students"] && this.paperInfo[this.chooseClass]["studentAns"]) {
- let studentData = this.paperInfo[this.chooseClass]["students"]
- let studentAns = this.paperInfo[this.chooseClass]["studentAns"]
- this.studentScore = []
- this.tableColumn = [...this.scoreList]
- this.quCount = studentAns.studentScores[0] ? studentAns.studentScores[0].length : 0
- // this.quCount = this.paperInfo.item ? this.paperInfo.item.length : 0 //不用试卷信息计算题目
- for (let i = 0; i < this.quCount; i++) {
- let data = {
- title: "Q" + (i + 1),
- slot: "qu" + i,
- align: "center",
- minWidth: 65,
- }
- this.tableColumn.push(data);
- }
- let ans = []
- for (let i = 0; i < studentAns.studentIds.length; i++) {
- for (let k = 0; k < studentData.students.length; k++) {
- let score = {}
- if (studentAns.studentIds[i] == studentData.students[k].id) {
- score.name = studentData.students[k].name
- score.id = studentAns.studentIds[i]
- score.data = studentAns.studentScores[i]
- score.total = this.getcount(score.data)
- if (studentAns.studentAnswers[i].length == 0) {//学生未作答
- score.status = 1
- } else if (studentAns.studentScores[i].indexOf(-1) >= 0) {//已作答,未评分
- score.status = 2
- } else {//已批改
- score.status = 3
- }
- this.studentScore.push(score)
- }
- }
- }
- this.originData = this._.cloneDeep(this.studentScore)
- this.students = this._.cloneDeep(this.studentScore)
- this.pageChange(1)
- if (ans.length) {
- for (let k = 0; k < this.paperInfo.papers.item.length; k++) {
- this.$set(
- this.paperInfo.papers.item[k],
- "answerData",
- ans[k]
- );
- this.$set(
- this.paperInfo.papers.item[k],
- "stuScore",
- score[k]
- );
- }
- }
- }
- },
- getBack(data) {
- if (data == "1") {
- this.getClassStudent();
- }
- this.showTest = false;
- },
- //获取单个学生作答数据
- getStudentInfo(data, index) {
- this.dataLoading = true;
- if (this.studentInfo !== undefined) {
- let filData = "";
- filData = this.studentInfo.id;
- let ans = [];
- let score = [];
- for (let i = 0; i < this.classDatas.studentIds.length; i++) {
- if (this.classDatas.studentIds[i] == filData) {
- ans = this.classDatas.studentAnswers[i];
- score = this.classDatas.studentScores[i];
- }
- }
- if (ans.length) {
- for (let k = 0; k < this.paperInfo.papers.item.length; k++) {
- this.$set(this.paperInfo.papers.item[k], "answerData", ans[k]);
- this.$set(this.paperInfo.papers.item[k], "stuScore", score[k]);
- }
- }
- this.dataLoading = false;
- } else {
- this.dataLoading = false;
- this.$Message.warning(this.$t('learnActivity.score.stStuWarning'));
- }
- this.selectIndex = index;
- },
- getAnswer(data) {
- //处理学生作答信息
- let listArr = [];
- data.forEach(function (el, index) {
- for (var i = 0; i < listArr.length; i++) {
- if (listArr[i].group == el.group) {
- listArr[i].listInfo.push(el);
- return;
- }
- }
- listArr.push({
- group: el.group,
- listInfo: [el],
- });
- });
- return listArr;
- },
- },
- watch: {
- examInfo: {
- handler(n, o) {
- this.privStuList = undefined
- if (n.subjects && n.subjects.length) {
- this.chooseSubject = n.subjects[0].id;
- }
- if (n.grades && n.grades.length) {
- this.chooseGrade = n.grades[0].id;
- }
- if (n.papers && n.papers.length) {
- if (n.code == 'Exam' + this.$store.state.userInfo.schoolCode) { //**现在不能通过scope判断是校本还是个人发布的评测
- let res = n.papers.find((item) => {
- return item.subjectId == this.chooseSubject;
- });
- this.paperInfo = res ? this._.cloneDeep(res) : {};
- } else {
- this.paperInfo = n.papers[0]
- }
- } else {
- this.paperInfo = {};
- }
- },
- deep: true,
- },
- classList: {
- handler(n, o) {
- if (n && n.length) {
- this.chooseClass = n[0].id;
- this.getClassStudent();
- } else {
- this.chooseClass = undefined
- }
- },
- deep: true,
- },
- chooseStudent: {
- handler(n, o) {
- if (n.id) {
- let curStu = this.studentScore.find(item => {
- return item.id == n.id
- })
- if (curStu.status == 2) {
- let flag = n.scores.find(item => {
- return item == -1
- })
- if (!flag) {
- curStu.status = 3
- this.overviewInfo.noScore--
- this.overviewInfo.scored++
- }
- }
- }
- },
- deep: true
- }
- },
- computed: {
- classList() {
- if (this.examInfo && this.examInfo.classes) {
- //发布对象为校本名单
- if (this.examInfo.scope == 'school') {
- this.showTest = false
- let classes = this.schoolClassList.filter(item => {
- return this.examInfo.classes.indexOf(item.id) >= 0 && (item.gradeId == this.chooseGrade || !this.chooseGrade)
- })
- return classes
- }
- // 发布对象为个人创建的自定义名单
- else {
- //根据classes查询班级信息
- if (!this.privStuList) {
- // this.$api.schoolSetting.getClassByIds({
- // code: this.$store.state.userInfo.TEAMModelId,
- // ids: this.examInfo.classes
- // }).then(
- // res => {
- // if (res.className && res.className.length) this.chooseClass = res.className[0].id
- // this.privStuList = res.className
- // },
- // err => {
- // console.log(err)
- // }
- // )
- //查询当前老师所有stulist
- let params = {
- code: this.$store.state.userInfo.TEAMModelId,
- scope: 'private'
- }
- this.$api.courseMgmt.findStulist(params).then(
- res => {
- this.privStuList = res.stuList
- },
- err => {
- this.$Message.error('API error')
- }
- )
- return this.privStuList
- } else {
- //过滤当前评测对象
- let list = this.privStuList.filter(item => {
- return this.examInfo.classes.indexOf(item.id) >= 0
- })
- return list
- }
- }
- } else {
- return []
- }
- },
- },
- mounted() {
- },
- created() {
- this.$store.dispatch('user/getSchoolProfile').then(
- res => {
- this.schoolBase = res.school_base
- this.schoolClassList = res.school_classes
- }
- )
- if (this.$route.name == 'privateEvaluation') {
- this.routerScope = 'private'
- } else {
- this.routerScope = 'school'
- }
- }
- };
- </script>
- <style scoped lang="less">
- @import "./Scoring.less";
- </style>
- <style lang="less">
- .scoring-main-wrap .ivu-table-fixed-body {
- background: #353535;
- // background: #2b2b2e;
- // max-height: 653px;
- }
- .scoring-main-wrap .ivu-table-tip {
- position: relative;
- z-index: 9999;
- }
- .scoring-main-wrap .ivu-table-fixed-right::before,
- .scoring-main-wrap .ivu-table-fixed::before {
- display: none;
- }
- .scoring-main-wrap .ivu-table-fixed-header thead tr th {
- background: #353535;
- // background: #2b2b2e;
- border-color: #606060;
- color: white;
- }
- .scoring-main-wrap {
- .ivu-table-header thead tr th {
- // background: #353535;
- background: rgba(53, 53, 53, 0.5);
- }
- .ivu-table td {
- // background: #353535;
- background: rgba(53, 53, 53, 0.5);
- }
- }
- .page-wrap .ivu-page-item {
- background: rgba(40, 40, 40, 0.5);
- }
- .page-wrap .ivu-page-item:hover {
- border-color: #e4eadb;
- }
- .page-wrap .ivu-page-item-active {
- background: #bfbfb9;
- }
- .page-wrap .ivu-page-item a {
- color: #f1f1f1;
- }
- .page-wrap .ivu-page-next,
- .page-wrap .ivu-page-prev {
- background: rgba(0, 0, 0, 0);
- }
- .page-wrap .ivu-page-next a,
- .page-wrap .ivu-page-prev a {
- color: #e4eadb;
- }
- .page-wrap .ivu-page-next:hover,
- .page-wrap .ivu-page-prev:hover {
- border-color: #e4eadb;
- }
- .page-wrap .ivu-page-item-active,
- .page-wrap .ivu-page-item:hover a {
- border-color: #e4eadb;
- }
- .page-wrap .ivu-page-item-active a {
- color: #595959;
- }
- .page-wrap
- .ivu-select-small.ivu-select-single
- .ivu-select-selection
- .ivu-select-selected-value {
- height: 27px;
- line-height: 27px;
- font-size: 12px;
- }
- .page-wrap .ivu-select-single .ivu-select-selection {
- height: 30px;
- background: transparent;
- border: 1px solid #595959;
- box-shadow: none;
- color: #cecece;
- }
- .page-wrap .ivu-select-single .ivu-select-placeholder {
- height: 30px;
- line-height: 30px;
- font-size: 16px;
- }
- </style>
|