haoxuan
2023-10-24 c25c96c5dd793c999b2796c0d00f662ce98317f3
src/views/sales/refundForm/index.vue
@@ -185,7 +185,7 @@
      let params = {}
      if (this.addConfig.id) {
        params = {
          sourceID: this.addConfig.id,
          sourceId: this.addConfig.id,
          page: this.pagerOptions.currPage,
          pageSize: this.pagerOptions.pageSize
        }
@@ -235,16 +235,15 @@
    },
    // 新建
    addBtnClick() {
      this.editConfig.visible = true
      this.editConfig.title = "新建"
      this.editConfig.infomation = { currency: "人民币" }
      this.editConfig.infomation = { currency: "人民币", ...this.addConfig }
      this.editConfig.visible = true
    },
    // 编辑
    handleClick(row) {
      console.log(row)
      this.editConfig.visible = true
      this.editConfig.title = "编辑"
      this.editConfig.infomation = { ...row, currency: "人民币", sale_return_nunber: row.Source.number }
      this.editConfig.infomation = { ...row, currency: "人民币", sale_return_nunber: row.salesReturn.number }
      this.editConfig.visible = true
    },
    // 删除
    delClick(rowID) {