Commit d27b222f authored by zhengke's avatar zhengke

修改

parent 6cf1c872
......@@ -74,7 +74,7 @@
<span style="color:red;">{{getNum(item)}}</span>
</td>
<td>
<el-input type='text' class="w80" v-if="item.DealStatus==2" v-model="item.Unit_Money" @keyup.native="checkInteger(item,'Unit_Money')" />
<el-input type='text' class="w80" v-if="item.DealStatus==2" size="small" v-model="item.Unit_Money" @keyup.native="checkInteger(item,'Unit_Money')" />
<span v-else>{{item.Unit_Money}}</span>
</td>
<td style="width:300px;">{{item.Remark}}</td>
......
......@@ -23,7 +23,7 @@
<tbody>
<tr v-for="(item,index) in tableData" :key="index">
<td>
<input class="color-input-red" type="checkbox" :disabled="item.DealStatus!=2" v-model="checkList" :value="item" @change="selectionChange">
<input class="color-input-red" type="checkbox" v-if="item.DealStatus!=1" v-model="checkList" :value="item" @change="selectionChange">
</td>
<td>
<span class="ColorSpan huangSpan" v-if="item.CheckStatus == 1"></span>
......@@ -43,7 +43,7 @@
<td>
<span style="color:green;">{{getNum(item)}}</span>
</td>
<td><el-input type='text' class="w80" v-model="item.Unit_Money" @keyup.native="checkInteger(item,'Unit_Money')" /></td>
<td><el-input type='text' class="w80" v-model="item.Unit_Money" size="small" @keyup.native="checkInteger(item,'Unit_Money')" /></td>
<td style="width:300px;">{{item.Remark}}</td>
<td>
<div>{{item.CheckEmpName}}</div>
......
......@@ -97,7 +97,6 @@ export default {
},
created(){
this.menuheight=document.body.clientHeight-220;
console.log("this.menuheight",this.menuheight)
if(!this.getLocalStorage()){
this.$router.push({path: 'login'})
return;
......@@ -112,6 +111,11 @@ export default {
this.defaulActive=this.$route.path
},
},
mounted() {
window.addEventListener('resize',()=>{
this.menuheight=document.body.clientHeight-220;
})
},
methods:{
LoginOut(){
localStorage.removeItem("zcuserInfo");
......
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