Your ROOT_URL in app.ini is http://git.zky.com/ but you are visiting http://61.178.84.89:8998/luoluo/ry_zhky/commit/3a0ca6a79f6e78bf33b8e2677ceab71815ef471f?style=split&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
24 additions and
19 deletions
@ -6,31 +6,36 @@
< / head >
< / head >
< body class = "white-bg" >
< body class = "white-bg" >
< div class = "wrapper wrapper-content animated fadeInRight ibox-content" id = "app" >
< div class = "wrapper wrapper-content animated fadeInRight ibox-content" id = "app" >
< el-card v-for = "item in paperList" style = "margin-bottom: 10px; line-height: 30px;" >
< div v-if = "paperList.length > 0" >
< el-card v-for = "item in paperList" style = "margin-bottom: 10px; line-height: 30px;" >
< el-row :gutter = "20" >
< el-row :gutter = "20" >
< el-col :span = "12" >
< el-col :span = "12" >
考试时间:{{ formatDate(item.createTime) }}
考试时间:{{ formatDate(item.createTime) }}
< / el-col >
< / el-col >
< el-col :span = "12" >
< el-col :span = "12" >
考试用时:{{ item.userTime }}分钟
考试用时:{{ item.userTime }}分钟
< / el-col >
< / el-col >
< el-col :span = "12" >
< el-col :span = "12" >
考试得分:{{ item.userScore }}
考试得分:{{ item.userScore }}
< / el-col >
< / el-col >
< el-col :span = "12" >
< el-col :span = "12" >
是否合格:{{ item.userScore > item.qualifyScore ?'是':'否' }}
是否合格:{{ item.userScore > item.qualifyScore ?'是':'否' }}
< / el-col >
< / el-col >
< el-col :span = "12" >
< el-col :span = "12" >
考试状态:{{ item.stateName}}
考试状态:{{ item.stateName}}
< / el-col >
< / el-col >
< / el-row >
< / el-row >
< el-empty v-else description = "暂无数据" > < / el-empty >
< / el-card >
< / div >
< el-card v-else class = "left-card" >
< el-empty description = "暂无数据" > < / el-empty >
< / el-card >
< / el-card >
< / div >
< / div >
< / div >
< / div >