wwl
9 小时以前 1d7a460b0fbc460ffcf3dd94864f2f3adf4369b2
富文本
3个文件已修改
22 ■■■■■ 已修改文件
src/views/hosp/hosp/index.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/charge/index.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/refund/index.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/hosp/hosp/index.vue
@@ -192,7 +192,7 @@
      orgList: [],
      title: "",
      open: false,
      apiKey: '3ceaxd5ckw4te35xj38vj3p5rmmeyv0x8pq2yrr92rwdiqzp', // 替换为您的 TinyMCE API 密钥
      apiKey: '3ceaxd5ckw4te35xj38vj3p5rmmeyv0x8pq2yrr92rwdiqzp',
      editorInit: {
        height: 200,
        menubar: false,
@@ -237,7 +237,7 @@
        orderNum: null,
      },
      form: {
        introduction: '<p>请输入医院简介...</p>', // 默认值
        introduction: '', // 默认值
      },
      rules: {
        hospAreaName: [
@@ -367,7 +367,7 @@
        updateByName: null,
        imgbase64: null,
        deleted: null,
        introduction: '<p>请输入医院简介...</p>', // 重置时恢复默认值
        introduction: '', // 重置时恢复默认值
      };
      this.resetForm("form");
    },
src/views/system/charge/index.vue
@@ -294,7 +294,8 @@
    },
    submitFormchanck() {
      this.loading = true;
      getfindTj(this.form).then((response) => {
  getfindTj(this.form)
    .then((response) => {
        if (response.data != []) {
          this.tableData = response.data;
          this.tableData.forEach((item1) => {
@@ -333,7 +334,10 @@
          this.tableData = [];
          this.disabled = 1;
        }
      this.loading = false;
    })
    .catch((error) => {
      console.error("Error:", error);
        this.loading = false;
      });
    },
src/views/system/refund/index.vue
@@ -209,7 +209,8 @@
    /** 搜索操作 */
    handle() {
      this.loading = true;
      getTjRefundList2(this.form).then((response) => {
  getTjRefundList2(this.form)
    .then((response) => {
        if( response.data){
          this.customerList = response.data;
        this.customerList.forEach((item1) => {
@@ -240,7 +241,10 @@
        this.total = response.total;
        this.loading = false;
        }
    })
    .catch((error) => {
      console.error("错误:", error);
      this.loading = false;
      });
    },