稽核数据新增处理结果维护页面

master
白美平 5 months ago
parent 891540f501
commit 76816da7a1

@ -4,8 +4,8 @@ import {ElMessage} from "element-plus";
// axios.defaults.staticBaseURL = '../' // axios.defaults.staticBaseURL = '../'
//axios.defaults.baseURL = 'http://' + window.location.host //正式 axios.defaults.baseURL = 'http://' + window.location.host //正式
axios.defaults.baseURL = 'http://' + window.location.hostname + ':9004' //测试 //axios.defaults.baseURL = 'http://' + window.location.hostname + ':9004' //测试
//post请求头 //post请求头
//axios.defaults.headers.post["Content-Type"] = "application/x-www-form-urlencoded;charset=UTF-8"; //axios.defaults.headers.post["Content-Type"] = "application/x-www-form-urlencoded;charset=UTF-8";

@ -289,10 +289,18 @@ export default {
this.paramsUpdate.passid=row.id; this.paramsUpdate.passid=row.id;
this.isShowSolve=true; this.isShowSolve=true;
},saveMain(){ },saveMain(){
if(localStorage.mannoDe ===undefined || localStorage.mannoDe===""){
alert("您账号已登录过期,请重新登陆之后在此操作");
return false;
}else{
this.paramsUpdate.solvemano=localStorage.mannoDe;
this.paramsUpdate.solvemaname=localStorage.man;
}
this.paramsUpdate.solvestatus=this.solvestatus; this.paramsUpdate.solvestatus=this.solvestatus;
this.paramsUpdate.solveremark=this.solveremark; this.paramsUpdate.solveremark=this.solveremark;
this.paramsUpdate.solvemano="0101001"; /* this.paramsUpdate.solvemano="0101001";
this.paramsUpdate.solvemaname="测试人员"; this.paramsUpdate.solvemaname="测试人员";*/
updateMatchData(this.paramsUpdate).then(res=>{ updateMatchData(this.paramsUpdate).then(res=>{
if(res.code<=0){ if(res.code<=0){
alert("处理失败"); alert("处理失败");

@ -66,10 +66,10 @@
<div id="feePie" style="width: 700px;height:290px" v-loading="loading" ></div> <div id="feePie" style="width: 700px;height:290px" v-loading="loading" ></div>
<div id="feeBar" style="width: 700px;height:290px" v-loading="loading" ></div> <div id="feeBar" style="width: 700px;height:290px" v-loading="loading" ></div>
</div> </div>
<div class="everydata_div" style="width:100%;height: 500px;border-bottom: #6b778c 1px solid;position:relative"> <div style="width:100%;height: 95%" v-show="hbShow">
<div style="width:100%;padding-bottom: 20px;height: 100%" v-show="hbShow"> <hbData ref="hbData" ></hbData>
<hbData ref="hbData" ></hbData> </div>
</div> <div class="everydata_div" v-show="showHZDIV" style="width:100%;height: 500px;border-bottom: #6b778c 1px solid;position:relative">
<div class="grid_main" style="width:100%;height: 100%" v-show="showHZ"> <div class="grid_main" style="width:100%;height: 100%" v-show="showHZ">
<everyDayData ref="everyDayData" ></everyDayData> <everyDayData ref="everyDayData" ></everyDayData>
</div> </div>
@ -129,6 +129,7 @@ data() {
radio:6, radio:6,
showHZ:true, showHZ:true,
showHZMF:false, showHZMF:false,
showHZDIV:true,
loading:false, loading:false,
showDiv:true, showDiv:true,
rpTime:"", rpTime:"",
@ -167,6 +168,7 @@ methods: {
if(value===3){ if(value===3){
this.showExportButton=false; this.showExportButton=false;
this.hbShow=true; this.hbShow=true;
this.showHZDIV=false;
this.showHZ=false; this.showHZ=false;
this.showHZMF=false; this.showHZMF=false;
this.showClass=false; this.showClass=false;
@ -182,6 +184,7 @@ methods: {
this.showHZ=false; this.showHZ=false;
this.showHZMF=false; this.showHZMF=false;
this.showClass=true; this.showClass=true;
this.showHZDIV=true;
this.showDiv=false; this.showDiv=false;
this.$refs["everyDayDataJM"].refreshData(this.begindate,this.enddate,this.subcomno,this.roadno,this.stano,this.radio) this.$refs["everyDayDataJM"].refreshData(this.begindate,this.enddate,this.subcomno,this.roadno,this.stano,this.radio)
}else if(value===6 ){ }else if(value===6 ){
@ -194,6 +197,7 @@ methods: {
this.showHZ=true; this.showHZ=true;
this.showHZMF=false; this.showHZMF=false;
this.showClass=false; this.showClass=false;
this.showHZDIV=true;
if(!this.begindate){ if(!this.begindate){
var data=[]; var data=[];
data.push({ data.push({

@ -190,7 +190,7 @@ body{
.top_div_rank{ .top_div_rank{
height: 5%; height: 5%;
width: 100%; width: 100%;
//border-bottom: 0.1px #c9c6c6 ; /*border-bottom: 0.1px #c9c6c6 ;*/
top: 0; top: 0;
/*z-index: 1000; /* 确保它在其他内容之上 */ /*z-index: 1000; /* 确保它在其他内容之上 */
} }
@ -209,12 +209,12 @@ body{
height: 100%; height: 100%;
width: 100%; width: 100%;
display: flex; display: flex;
//border-top: #c9c6c6 solid; /*border-top: #c9c6c6 solid;*/
} }
.middle-div-left_rank{ .middle-div-left_rank{
height: 100%; height: 100%;
width: 30%; width: 30%;
//border-right: #c9c6c6 solid; /* border-right: #c9c6c6 solid;*/
} }
.middle-div-right_rank{ .middle-div-right_rank{
height: 100%; height: 100%;

Loading…
Cancel
Save