Commit e514220f by hd

feat: 积分管理

parent 702e11ad
......@@ -9,8 +9,8 @@ let base = {
// ztptURL: "http://26.120.5.129:8006", //通辽
ztptURL: "http://26.3.13.120:8088",
codeUrl: "",
BaseURL: "/apiAjzbGaw", //基础查询页得ip
rzURL: "/apiXzxtGaw", //刑专二期得(日志)ip
BaseURL: "/apiXzxt", //基础查询页得ip
rzURL: "/apiXzxt", //刑专二期得(日志)ip
//BaseURL: "/apiAjzb", //基础查询页得ip
//rzURL: "/apiXzxt", //刑专二期得(日志)ip
// bigwfwurl: "",
......
......@@ -705,4 +705,13 @@ export default[
},
component: () => import("@/views/ypbg/index.vue")
},
{
path: "/jf",
name: "jf",
meta: {
title: '积分管理',
auth: 5
},
component: () => import("@/views/jf/index.vue")
},
]
......@@ -23,7 +23,7 @@ service.interceptors.response.use(
if(relUrlIp=='133.8.5.67'||relUrlIp=='26.3.13.120'){
window.open(url.eqMhUrl,'_self');
}else{
window.open(url.eqMhUrl,'_self');
// window.open(url.eqMhUrl,'_self');
}
}
......
<template>
<div class="jf-box">
<div class="title-top">
<div class="img"></div>
</div>
<div class="container">
<div class="tablist">
<div class="list" v-for="(item,index) in tab" :key="index" :style="`background: url(${item.img}) no-repeat;background-size: 100% 100%;`">
{{item.name}}
</div>
</div>
<el-row :gutter="20">
<el-col :span="14">
<div class="cont">
<div class="cont-bg">
<span>内蒙古自治区公安机关刑事侦查办案积分评价办法(试行)</span>
</div>
<div class="cont-nr">
<p class="textindex">第一条 为进一步提升全区公安机关打击犯罪能力,激发广大民辅警参与刑事案件侦破的积极性,形成全警参与、上下一体、警种融合作战的大刑侦体系,更快地破大案、更多地破小案、更准地办好案、更好地控发案,全面提升打击刑事犯罪工作质效,结合我区工作实际,制定本办法。</p>
<p class="textindex">第二条 坚持以习近平新时代中国特色社会主义法治思想为 激发广大民辅警参与刑事案件侦破的积极性,形成全警参与、上下一体、警种融合作战的大刑侦体系,更快地破大案、更多地破小案、更准地办好案、更好地控发案,全面提升打击刑事犯罪工作质效,结合我区工作实际,制定本办法。 第二条 坚持以习近平新时代中国特色社会主义法治思想为 激发广大民辅警参与刑事案件侦破的积极性,形成全警参与、上下一体、警种融合作战的大刑侦体系,更快地破大案、更多地破小案、更准地办好案、更好地控发案,全面提升打击刑事犯罪工作质效,结合我区工作实际,制定本办法。</p>
</div>
</div>
</el-col>
<el-col :span="10">
<div class="cont">
<div class="cont-bg" style="background: #8EB2DF">
<span>2022年积分通报</span>
</div>
<div class="cont-nr">
<div v-for="(item,index) in list" :key="index">
<img :src="imgurl" alt="" style="width: 30px;margin-right: 10px;">
<span>{{item.mbmc}}</span>
</div>
</div>
</div>
</el-col>
</el-row>
</div>
<div class="footer">
<span>内蒙古自治区公安厅刑侦总队</span>
</div>
</div>
</template>
<script>
import Http from "@/utils/axiosHttp.js";
import qs from "qs";
import url from "@/api/base";
export default {
data() {
return {
tab: [
{
img: require('../../assets/img/jfgl/1.png'),
name: '积分考评'
},
{
img: require('../../assets/img/jfgl/2.png'),
name: '积分考评'
},
{
img: require('../../assets/img/jfgl/3.png'),
name: '积分考评'
},
{
img: require('../../assets/img/jfgl/4.png'),
name: '积分考评'
},
{
img: require('../../assets/img/jfgl/5.png'),
name: '积分考评'
}
],
imgurl: require('../../assets/img/jfgl/tz.png'),
list: []
}
},
mounted() {
this.getQxpm()
},
methods: {
doQueryRequest(relurl,form) {
/*post方法*/
return Http({
url: url.rzURL + relurl,
data: qs.stringify(form),
method: "post",
headers: {
"blade-auth": sessionStorage.getItem("token"),
"Content-Type": "application/x-www-form-urlencoded",
},
});
},
getQxpm() {
this.doQueryRequest('/jfmb/getJfmbList')
.then((res) => {
if (res.success) {
this.list = res.data.year
}
})
.catch((err) => {});
},
}
}
</script>
<style lang="scss" scoped>
body{
background: #fff;
}
.jf-box{
display: flex;
flex-direction: column;
flex: 1 0 100%;
justify-content: space-between;
.title-top{
display: flex;
height: 120px;
width: 100%;
background: url('../../assets/img/jfgl/titleBg.png') no-repeat center;
background-size: 100% 100%;
justify-content: center;
align-items: center;
.img{
width: 624px;
height: 64px;
background: url('../../assets/img/jfgl/title.png') no-repeat center;
background-size: 100% 100%;
}
}
.container{
flex: 1;
max-width: 1360px;
width: 100%;
margin: 0 auto;
padding: 0 15px;
box-sizing: border-box;
}
.tablist{
display: flex;
margin-top: 30px;
margin-bottom: 25px;
.list{
width: 400px;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
font-size: 28px;
color: #fff;
}
}
}
.cont{
.cont-bg{
height: 80px;
width: 100%;
background: #4C87BC;
font-size: 24px;
display: flex;
justify-content: center;
align-items: center;
color: #fff
}
.cont-nr{
background: #D5E0EF;
height: 400px;
padding: 22px;
box-sizing: border-box;
font-size: 16px;
.textindex{
text-indent: 2em;
}
}
}
.footer{
display: flex;
justify-content: center;
align-items: center;
background: #104C88;
font-size: 18px;
color: #fff;
height: 80px;
margin-top: 56px;
}
</style>
\ No newline at end of file
......@@ -69,7 +69,7 @@ module.exports = {
}
},
"/apiXzxt": {
target: "http://localhost:8501/", //统一的请求头部每次修改都要重启才会生效
target: "http://192.168.1.107:8501/", //统一的请求头部每次修改都要重启才会生效
ws: true,
changeOrigin: true,
pathRewrite: {
......
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