Commit d27b222f authored by zhengke's avatar zhengke

修改

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