yangfeng
2023-10-17 6ab7d9bee6290c963726cb1545505e3398bff9ab
Merge branch 'zhengwenfeng/modify-style' into dev
3个文件已修改
16 ■■■■ 已修改文件
src/views/other/payment/receipt/addReceipt.vue 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/other/payment/receipt/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/sales/salesDetails/DetailSpecification.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/other/payment/receipt/addReceipt.vue
@@ -409,8 +409,8 @@
      await getPaymentTypeList().then((res) => {
        console.log("支付方式")
        console.log(res.data)
        if (res.data.code === 200) {
          this.paymentTypeListOptions = res.data.data.data
        if (res.code === 200) {
          this.paymentTypeListOptions = res.data.data
        }
      })
    },
@@ -418,8 +418,8 @@
      await getBankAccountList().then((res) => {
        console.log("账户")
        console.log(res.data)
        if (res.data.code === 200) {
          this.bankAccountOptions = res.data.data.data
        if (res.code === 200) {
          this.bankAccountOptions = res.data.data
        }
      })
    },
@@ -527,7 +527,7 @@
        this.editConfig.infomation.serviceContract_Number = row.number
        this.serviceContractId = row.id
      } else if (value === "contract") {
        this.editConfig.infomation.number = row.number
        this.editConfig.infomation.saleDetailNumber = row.number
        this.SalesDetailsId = row.id
      }
    },
@@ -540,7 +540,7 @@
        this.editConfig.infomation.serviceContract_Number = ""
        this.serviceContractId = 0
      } else if (value === "contract") {
        this.editConfig.infomation.number = ""
        this.editConfig.infomation.saleDetailNumber = ""
        this.SalesDetailsId = 0
      }
    },
src/views/other/payment/receipt/index.vue
@@ -247,7 +247,7 @@
      this.editConfig.visible = true
      this.editConfig.title = "新建"
      this.editConfig.sourceType = this.sourceType
      this.editConfig.infomation = { ...this.addConfig, number: "" }
      this.editConfig.infomation = { ...this.addConfig, saleDetailNumber: "" }
    }
  }
}
src/views/sales/salesDetails/DetailSpecification.vue
@@ -9,7 +9,7 @@
    >
      <template slot="title">
        <div class="header">
          <span class="header-label">订单编号</span>
          <span class="header-label">销售明细单</span>
          <span class="header-title">{{ detailConfig.infomation.number }}</span>
        </div>
      </template>