| | |
| | | v-hasPermi="['system:donorcharge:edit']">修改</el-button> |
| | | <el-button size="mini" type="text" icon="el-icon-edit" @click="handleDetail(scope.row)" |
| | | v-hasPermi="['system:donorcharge:edit']">详情</el-button> |
| | | <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" |
| | | v-hasPermi="['system:donorcharge:remove']">删除</el-button> |
| | | <el-button size="mini" type="text" @click="handleDelete(scope.row)" |
| | | v-hasPermi="['system:donorcharge:remove']"><span class="button-delete" |
| | | ><i class="el-icon-delete"></i>删除</span |
| | | ></el-button> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | |
| | | curdonorinfo = item; |
| | | } |
| | | }); |
| | | console.log(curdonorinfo,'curdonorinfo'); |
| | | this.showSelectionDialog = false; |
| | | this.$router.push({ |
| | | path: "/finance/donorchargedetail/", |
| | |
| | | else { |
| | | this.loading = true; |
| | | listDonatebaseinfo(this.donorParams).then(res => { |
| | | this.donorinfolist = res.rows; |
| | | res.rows.map(item => { |
| | | if (item.workflow == 6) { |
| | | // this.donorinfolist = res.rows; |
| | | res.rows.forEach(item => { |
| | | if (item.workflow >= 6) { |
| | | this.donorinfolist.push(item); |
| | | } |
| | | }); |
| | |
| | | donorname: item1.name |
| | | }); |
| | | }); |
| | | console.log(this.donorinfolist,' this.donorinfolist'); |
| | | this.loading = false; |
| | | }); |
| | | } |
| | |
| | | } |
| | | }; |
| | | </script> |
| | | <style scoped> |
| | | /* @import url(); 引入公共css类 */ |
| | | .button-delete{ |
| | | color: rgb(236, 69, 69); |
| | | } |
| | | </style> |