Commit b40b91e4 authored by Mac's avatar Mac
parents e8f5ddfa f970d333
...@@ -175,7 +175,7 @@ ...@@ -175,7 +175,7 @@
<td> {{ moneyFormat(StartMoney) }} </td> <td> {{ moneyFormat(StartMoney) }} </td>
</tr> </tr>
<tr v-for=" ( item , index ) in DataList "> <tr v-for=" ( item , index ) in DataList ">
<td> <td style="width:50px;">
<input type="checkbox" :disabled="item.disabled" v-model="item.check" @change="addCheckbox(item,index)"> <input type="checkbox" :disabled="item.disabled" v-model="item.check" @change="addCheckbox(item,index)">
</td> </td>
<td> {{ item.BName }} </td> <td> {{ item.BName }} </td>
......
...@@ -385,7 +385,7 @@ ...@@ -385,7 +385,7 @@
<template v-for="(file,fIndex) in saveMsg"> <template v-for="(file,fIndex) in saveMsg">
<div v-if="file.Type==3"> <div v-if="file.Type==3">
<div style="width:100%;height:100%;overflow: hidden;"> <div style="width:100%;height:100%;overflow: hidden;">
<img :src="file.Url?file.Url:file.Content" @click="showUpLoadFile(file)"> <img style="width:100%;" :src="file.Url?file.Url:file.Content" @click="showUpLoadFile(file)">
</div> </div>
<span class="iconfont icon-guanbi1" @click="deleteUploadFile(fIndex)"></span> <span class="iconfont icon-guanbi1" @click="deleteUploadFile(fIndex)"></span>
</div> </div>
...@@ -978,9 +978,10 @@ ...@@ -978,9 +978,10 @@
x.check=false; x.check=false;
}) })
} }
this.checkList=[];
this.DataList.forEach((x,index)=>{ this.DataList.forEach((x,index)=>{
if(x.check&&x.ClientID>0){ if(x.check){
this.checkList[index] = { let obj = {
FinanceId:x.FinanceId, FinanceId:x.FinanceId,
Type:x.Type, Type:x.Type,
ClientID:x.ClientID, ClientID:x.ClientID,
...@@ -988,6 +989,7 @@ ...@@ -988,6 +989,7 @@
OriginalMoney:x.OriginalMoney, OriginalMoney:x.OriginalMoney,
Money:x.Money, Money:x.Money,
} }
this.checkList.push(obj);
} }
}) })
}, },
......
...@@ -157,7 +157,7 @@ ...@@ -157,7 +157,7 @@
<td>{{moneyFormat(StartMoney)}}</td> <td>{{moneyFormat(StartMoney)}}</td>
</tr> </tr>
<tr v-for=" ( item , index ) in DataList "> <tr v-for=" ( item , index ) in DataList ">
<td> <td style="width:50px;">
<input type="checkbox" :disabled="item.disabled" v-model="item.check" @change="addCheckbox(item,index)"> <input type="checkbox" :disabled="item.disabled" v-model="item.check" @change="addCheckbox(item,index)">
</td> </td>
<td>{{ item.BName }}</td> <td>{{ item.BName }}</td>
......
...@@ -391,7 +391,7 @@ ...@@ -391,7 +391,7 @@
<div class="approval_person_content"> <div class="approval_person_content">
<span class="approval_span_type">{{$t('fnc.mrspliucheng')}}</span> <span class="approval_span_type">{{$t('fnc.mrspliucheng')}}</span>
<span style="float:right"> <span style="float:right">
<el-button @click="Auditshow=true,EditAudit()" style="padding:4px" type="primary" icon="el-icon-edit" <el-button @click="Auditshow=true" style="padding:4px" type="primary" icon="el-icon-edit"
circle></el-button> circle></el-button>
</span> </span>
<div class="approval_person_list fl"> <div class="approval_person_list fl">
...@@ -517,7 +517,7 @@ ...@@ -517,7 +517,7 @@
</ul> </ul>
</div> </div>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
<el-button size="mini" @click="dialogVisible = false">取 消</el-button> <el-button size="mini" @click="Auditshow = false">取 消</el-button>
<el-button size="mini" type="danger" @click="AuditSort">确 定</el-button> <el-button size="mini" type="danger" @click="AuditSort">确 定</el-button>
</span> </span>
</el-dialog> </el-dialog>
...@@ -884,8 +884,6 @@ ...@@ -884,8 +884,6 @@
this.addMsg.ShowDepartmentList = data.ShowDepartmentList; this.addMsg.ShowDepartmentList = data.ShowDepartmentList;
this.addMsg.PropertyType = data.PropertyType; this.addMsg.PropertyType = data.PropertyType;
console.log(res,'数据回来了');
if (data.list && data.list[0] !== -1) { if (data.list && data.list[0] !== -1) {
this.accListMsg = data.list; this.accListMsg = data.list;
} }
......
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