Commit 2adb727f authored by youjie's avatar youjie

no message

parent 90b4d185
...@@ -1222,6 +1222,7 @@ input[type="number"] { ...@@ -1222,6 +1222,7 @@ input[type="number"] {
<th>冲抵金额</th> <th>冲抵金额</th>
<th>状态</th> <th>状态</th>
<th>付款对象</th> <th>付款对象</th>
<th>操作</th>
</tr> </tr>
<tr v-for="(item,index) in czList" :key="index"> <tr v-for="(item,index) in czList" :key="index">
<td><input type="checkbox" :value="item" v-model="yfcheckList" @change="ckeckOne"></td> <td><input type="checkbox" :value="item" v-model="yfcheckList" @change="ckeckOne"></td>
...@@ -1238,9 +1239,16 @@ input[type="number"] { ...@@ -1238,9 +1239,16 @@ input[type="number"] {
<div style="width:250px;overflow:hidden">{{item.ClientTypeName}}:{{item.RemitterName}}</div> <div style="width:250px;overflow:hidden">{{item.ClientTypeName}}:{{item.RemitterName}}</div>
</el-tooltip> </el-tooltip>
</td> </td>
<td>
<el-tooltip class="item" effect="dark" content="预付款退款" placement="top-start">
<button class="normalBtn" @click="goUrlZD(item)">
<i class="el-icon-right"></i>
</button>
</el-tooltip>
</td>
</tr> </tr>
<tr v-if="czList.length==0"> <tr v-if="czList.length==0">
<td colspan="12">暂无数据</td> <td colspan="13">暂无数据</td>
</tr> </tr>
</table> </table>
<el-pagination background @current-change="handleCurrentChange2" <el-pagination background @current-change="handleCurrentChange2"
...@@ -1597,10 +1605,17 @@ export default { ...@@ -1597,10 +1605,17 @@ export default {
this.yfcdState = true; this.yfcdState = true;
this.yfcheckList = []; this.yfcheckList = [];
}, },
goUrlZD() { goUrlZD(item) {
let that = this; let that = this;
let yfcheckList = JSON.parse(JSON.stringify(this.yfcheckList)); let yfcheckList
if(item){
this.yfcheckList = []
this.yfcheckList.push(item)
that.yfHandmsg.OtherType = 65
}else{
that.yfHandmsg.OtherType = 7
}
yfcheckList = JSON.parse(JSON.stringify(this.yfcheckList));
if (this.yfcheckList.length > 1) { if (this.yfcheckList.length > 1) {
this.Error("只能选择一项!"); this.Error("只能选择一项!");
return; return;
......
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