1
lkk
2025-01-04 fc33ca37c3f01081147679345af12d76240d30bc
1
2个文件已修改
35 ■■■■ 已修改文件
src/api/hosp/customer.js 27 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/refund/index.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/api/hosp/customer.js
@@ -18,6 +18,15 @@
  })
}
//体检(退费)页面查询接口
export function getTjRefundList2(form) {
  return request({
    url: '/hosp/water/findTjRefundListByNameAndTjNumAndPhone2',
    method: 'get',
    params: form
  })
}
// 体检退费项目详情查询接口
export function getTjList(data) {
@@ -28,6 +37,15 @@
  })
}
// 体检退费项目详情查询接口
export function getTjList2(data) {
  return request({
    url: '/hosp/water/getTjRefundProInfoVoList2',
    method: 'get',
    params: data
  })
}
// 体检退费按钮接口
export function getTjRefund(data) {
  return request({
@@ -37,6 +55,15 @@
  })
}
// 体检退费按钮接口
export function getTjRefund2(data) {
  return request({
    url: '/hosp/water/tjRefund2',
    method: 'post',
    data: data
  })
}
// 体检(收费)页面查询接口
export function getfindTj(form) {
  return request({
src/views/system/refund/index.vue
@@ -120,7 +120,7 @@
</template>
<script>
import { getTjRefundList, getTjList, getTjRefund } from "@/api/hosp/customer";
import { getTjRefundList, getTjList, getTjRefund,getTjRefundList2,getTjList2,getTjRefund2 } from "@/api/hosp/customer";
export default {
  dicts: [
@@ -209,7 +209,7 @@
    /** 搜索操作 */
    handle() {
      this.loading = true;
      getTjRefundList(this.form).then((response) => {
      getTjRefundList2(this.form).then((response) => {
        if( response.data){
          this.customerList = response.data;
        this.customerList.forEach((item1) => {
@@ -265,7 +265,7 @@
      let data = {
        orderId: this.tjOrderId,
      };
      getTjList(data).then((res) => {
      getTjList2(data).then((res) => {
        this.numberList = res.data;
        this.loading = false;
      });
@@ -326,7 +326,7 @@
        });
        return;
      }
      getTjRefund(data).then((res) => {
      getTjRefund2(data).then((res) => {
        this.tjnumber = res.data.waterId;
        this.mobanId = res.data.mobanId;
        if (res.code === 200) {