| | |
| | | <el-table-column label="操作" width="100"> |
| | | <template slot-scope="scope"> |
| | | <el-button @click="handleClick(scope.row)" type="text" size="small">编辑</el-button> |
| | | <el-button @click="delClick(scope.row.id)" type="text" size="small">删除</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | </template> |
| | |
| | | |
| | | <script> |
| | | import AddRefundFormDialog from "@/views/sales/refundForm/AddRefundFormDialog" |
| | | import { getSalesRefundList } from "@/api/sales/refundForm" |
| | | import { getSalesRefundList, getDelSalesRefund } from "@/api/sales/refundForm" |
| | | |
| | | export default { |
| | | name: "RefundForm", |
| | |
| | | tableColumn: [ |
| | | { label: "退款单编号", prop: "number" }, |
| | | { label: "客户名称", prop: "clientId", min: 120 }, |
| | | { label: "退款日期", prop: "refundDate", min: 90 }, |
| | | { label: "退款日期", prop: "refundDate", isTime: true, min: 130 }, |
| | | { label: "账户", prop: "accountId" }, |
| | | { label: "是否开票", prop: "isInvoice", min: 100 }, |
| | | { label: "付款方式", prop: "refundMethod" }, |
| | |
| | | this.editConfig.visible = true |
| | | this.editConfig.title = "编辑" |
| | | this.editConfig.infomation = { ...row } |
| | | }, |
| | | // 删除 |
| | | delClick(id) { |
| | | this.$confirm("是否确认删除?", "警告", { |
| | | confirmButtonText: "确定", |
| | | cancelButtonText: "取消", |
| | | type: "warning" |
| | | }) |
| | | .then(function () { |
| | | return getDelSalesRefund({ id: id }) |
| | | }) |
| | | .then((response) => { |
| | | if (response.code === 200) { |
| | | this.$message.success("删除成功") |
| | | this.getUserList() |
| | | } else { |
| | | this.$message.warning("删除失败") |
| | | } |
| | | }) |
| | | .catch(function () {}) |
| | | }, |
| | | getSelectArray(val) { |
| | | console.log(val) |
| | | } |
| | | } |
| | | } |