WXL (wul)
2 天以前 43017c316ab6a2e11305a7f016b12d13736e8cc1
测试完成
已修改4个文件
259 ■■■■ 文件已修改
src/components/CallButton/index.vue 35 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/followvisit/record/detailpage/index.vue 213 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/outsideChainwtnew.vue 7 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
vue.config.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/CallButton/index.vue
@@ -11,10 +11,17 @@
    <!-- 呼叫按钮 -->
    <button
      :class="['call-btn', { calling: isCalling }]"
      :class="[
        'call-btn',
        {
          calling: isCalling,
          registering: isRegistering,
        },
      ]"
      @click="startCall"
      :disabled="isCalling || sipStatus !== '已注册'"
      :disabled="isButtonDisabled"
    >
      <i v-if="isRegistering" class="el-icon-loading"></i>
      {{ callButtonText }}
    </button>
@@ -41,6 +48,7 @@
    const randomNum = Math.floor(Math.random() * 20) + 1000; // 定义随机分机号
    return {
      isCalling: false,
      isRegistering: true, // 初始为注册中状态
      randomNum: randomNum,
      randomID: null,
      callStatus: "idle", // idle, calling, connected, ended
@@ -74,11 +82,17 @@
      }
      return "";
    },
    callStatusClass() {
      return `status-${this.callStatus}`;
    isButtonDisabled() {
      return (
        this.isCalling || this.sipStatus !== "已注册" || this.isRegistering
      );
    },
    callButtonText() {
      if (this.isRegistering) return "注册中...";
      return this.isCalling ? "通话中..." : "一键呼叫";
    },
    callStatusClass() {
      return `status-${this.callStatus}`;
    },
  },
  created() {
@@ -87,11 +101,16 @@
  async mounted() {
    await this.CallgetList();
    this.isRegistering = true; // 开始注册
    sipService.init(this.sipConfig);
    // 设置状态回调
    sipService.onStatusChange = (status) => {
      this.sipStatus = status.text;
      this.sipStatusClass = `status-${status.type}`;
      // 注册成功或失败时取消加载状态
      if (status.type === "registered" || status.type === "failed") {
        this.isRegistering = false;
      }
      // 注册成功
      if (status.type === "registered") {
        this.startCallsetState();
@@ -99,6 +118,7 @@
      // 处理注册失败和断开连接情况
      if (status.type === "failed" || status.type === "disconnected") {
        this.overCallsetState(); // 释放分机号
        this.isRegistering = false;
      }
    };
@@ -110,6 +130,13 @@
      // 通知父组件通话状态变化
      this.$emit("call-status-change", status);
    };
    // 添加注册超时处理
    setTimeout(() => {
      if (this.isRegistering && this.sipStatus !== "已注册") {
        this.isRegistering = false;
        this.$message.warning("SIP注册超时,请检查网络连接");
      }
    }, 10000); // 10秒超时
  },
  methods: {
    async startCall() {
src/views/followvisit/record/detailpage/index.vue
@@ -628,8 +628,8 @@
                        icon="el-icon-phone"
                        @click="handleCall(userform.telcode, 'tel')"
                        :disabled="!isValidPhone(userform.telcode)"
                      ></el-button
                    ></el-input> </el-form-item
                      ></el-button>
                    </el-input> </el-form-item
                ></el-col>
              </el-row>
              <el-row>
@@ -664,22 +664,44 @@
                  style="display: none"
                />
                <div v-if="callStatus === 'connected'" class="hangup-btn">
                <!-- 挂断按钮样式优化 -->
                <div v-if="callStatus === 'connected'" class="hangup-container">
                  <el-button
                    type="danger"
                    icon="el-icon-phone"
                    @click="endCurrentCall"
                    :loading="isEndingCall"
                    class="hangup-btn"
                    size="medium"
                  >
                    挂断电话
                    {{ isEndingCall ? "挂断中..." : "挂断电话" }}
                  </el-button>
                  <!-- 通话计时显示 -->
                  <div class="call-timer" v-if="callStartTime">
                    通话时长: {{ formatCallTime }}
                </div>
                <div class="call-status" v-if="callStatus !== 'idle'">
                </div>
                <!-- 状态提示优化 -->
                <div class="call-status-container" v-if="callStatus !== 'idle'">
                  <el-alert
                    :title="callStatusText"
                    :type="callStatusType"
                    :closable="false"
                    show-icon
                    :class="['status-alert', `status-${callStatus}`]"
                  />
                </div>
                <!-- SIP注册状态提示 -->
                <div v-if="isSipRegistering&&orgname == '丽水市中医院'" class="sip-registering">
                  <el-alert
                    title="呼叫座机初始化中,请稍候..."
                    type="info"
                    :closable="false"
                    show-icon
                    class="registering-alert"
                  />
                </div>
              </div>
@@ -1133,6 +1155,7 @@
      userid: "",
      currentPhoneNumber: "",
      callType: "", // 用于区分是哪个电话
      isSipRegistering: true, // SIP注册状态
      // 已有数据...
      callStatus: "idle", // idle, calling, connected, ended, failed
      isEndingCall: false,
@@ -1405,7 +1428,22 @@
    this.getTaskservelist();
  },
mounted() {
    // 监听子组件的sipStatus属性变化
    if (this.$refs.callButton) {
      this.$watch(
        () => this.$refs.callButton.sipStatus,
        (newStatus) => {
          if (newStatus === '已注册') {
            this.isSipRegistering = false;
          } else if (newStatus === '注册失败' || newStatus === '未连接') {
            this.isSipRegistering = true;
          }
        },
        { immediate: true } // 立即执行一次以获取初始值
      );
    }
  },
  methods: {
    // 获取主题样式类
    getTopicClass(item) {
@@ -1763,6 +1801,8 @@
        this.$message.error("请输入正确的手机号码");
        return;
      }
      // 检查SIP是否已注册
      this.currentPhoneNumber = phone;
      // 是否景宁呼叫
      if (this.orgname == "景宁畲族自治县人民医院") {
@@ -1770,15 +1810,25 @@
        return;
      }
// 下方是中医院呼叫
      if (this.isSipRegistering) {
        this.$message.warning("系统正在初始化,请稍候...");
        return;
      }
      this.callType = type;
      this.callStatus = "calling";
      this.$nextTick(() => {
        this.$refs.callButton.startCall();
        // 监听通话状态变化
        this.$refs.callButton.$on("call-status-change", (status) => {
          this.handleCallStatusChange(status);
          // 监听注册状态变化
          if (status.type === "registered") {
            this.isSipRegistering = false;
          }
          if (status.type === "failed" || status.type === "disconnected") {
            this.isSipRegistering = true;
          }
        });
      });
    },
@@ -2427,15 +2477,18 @@
  .manual-action {
    flex: 1;
    min-width: 0;
    height: 100%; /* 确保高度继承 */
    height: 100%;
    /* 确保高度继承 */
  }
  .call-action {
    width: 60%;
    min-width: 0;
    height: 100%; /* 确保高度继承 */
    height: 100%;
    /* 确保高度继承 */
  }
}
.numeric-input {
  position: relative;
}
@@ -2452,6 +2505,7 @@
  padding: 2px 6px;
  border-radius: 4px;
}
.call-container {
  padding: 20px;
  background: #fff;
@@ -2481,11 +2535,13 @@
    margin-top: 20px;
  }
}
.merge-controls {
  background: #f5f7fa;
  border-radius: 4px;
  margin-left: 20px;
}
.Followuserinfo {
  margin: 10px 10px 0 10px;
  align-items: center;
@@ -2519,8 +2575,10 @@
  background: #ffff;
  border: 1px solid #dcdfe6;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12), 0 0 6px 0 rgba(0, 0, 0, 0.04);
  height: 100%; /* 确保高度继承 */
  min-height: 880px; /* 最小高度与随访内容一致 */
  height: 100%;
  /* 确保高度继承 */
  min-height: 880px;
  /* 最小高度与随访内容一致 */
  display: flex;
  flex-direction: column;
@@ -2540,11 +2598,15 @@
  .el-form {
    flex: 1;
    overflow-y: auto; /* 内容超过高度时显示滚动条 */
    max-height: calc(880px - 60px); /* 减去padding */
    padding-right: 10px; /* 防止滚动条遮挡内容 */
    overflow-y: auto;
    /* 内容超过高度时显示滚动条 */
    max-height: calc(880px - 60px);
    /* 减去padding */
    padding-right: 10px;
    /* 防止滚动条遮挡内容 */
  }
}
.append-input-container {
  margin-top: 15px;
  padding: 10px;
@@ -2552,6 +2614,7 @@
  border-radius: 4px;
  border: 1px solid #dcdfe6;
}
.borderdiv {
  min-height: 60vh;
  font-size: 20px;
@@ -2590,14 +2653,111 @@
    }
  }
}
.topic-dev[inert] {
  opacity: 0.5;
  pointer-events: none;
}
/* 挂断容器样式 */
.hangup-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}
.hangup-btn {
  width: 120px;
  height: 40px;
  font-size: 14px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
  transition: all 0.3s ease;
}
.hangup-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 67, 54, 0.4);
}
/* 通话计时器 */
.call-timer {
  font-size: 12px;
  color: #666;
  background: #f5f5f5;
  padding: 4px 12px;
  border-radius: 12px;
  font-family: "Courier New", monospace;
}
/* 状态提示容器 */
.call-status-container {
  margin: 10px 0;
}
.status-alert {
  border-radius: 8px;
  transition: all 0.3s ease;
}
.status-alert.status-calling {
  border-left: 4px solid #e6a23c;
}
.status-alert.status-connected {
  border-left: 4px solid #67c23a;
  animation: pulse 2s infinite;
}
.status-alert.status-ended {
  border-left: 4px solid #909399;
}
/* SIP注册提示 */
.sip-registering {
  margin: 10px 0;
}
.registering-alert {
  border-radius: 8px;
  background-color: #f4f4f5;
  border-left: 4px solid #909399;
}
/* 动画效果 */
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
/* 响应式设计 */
@media (max-width: 768px) {
  .hangup-container {
    margin: 10px 0;
  }
  .hangup-btn {
    width: 100%;
    max-width: 200px;
  }
  .status-alert {
    font-size: 12px;
  }
}
.CONTENT {
  padding: 10px;
  height: 100%;
  min-height: 738px; /* 设置最小高度 */
  min-height: 738px;
  /* 设置最小高度 */
  .title {
    font-size: 22px;
@@ -2612,8 +2772,10 @@
  padding: 30px;
  border: 1px solid #dcdfe6;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12), 0 0 6px 0 rgba(0, 0, 0, 0.04);
  max-height: 618px; /* 设置最大高度 */
  overflow-y: auto; /* 内容超过高度时显示滚动条 */
  max-height: 618px;
  /* 设置最大高度 */
  overflow-y: auto;
  /* 内容超过高度时显示滚动条 */
  .topic-dev {
    margin-bottom: 25px;
@@ -2669,7 +2831,8 @@
/* 新增:警告状态样式 - 黄色 */
.scriptTopic-warning {
  color: #d4be00; /* 您指定的黄色 */
  color: #d4be00;
  /* 您指定的黄色 */
}
/* 异常选项样式 - 红色星号 (保持不变) */
@@ -2697,7 +2860,8 @@
  ::v-deep.el-radio__label::after {
    content: "*";
    color: #ffe202; /* 黄色星号 */
    color: #ffe202;
    /* 黄色星号 */
    position: absolute;
    right: -5px;
    top: 0;
@@ -2723,6 +2887,7 @@
  right: -5px;
  top: 0;
}
.tag-selector-container {
  display: flex;
  align-items: center;
@@ -2759,9 +2924,11 @@
.tag-normal {
  background-color: #7ff5e1;
}
.tag-abnormal {
  background-color: #f75c5c;
}
.tag-warning {
  background-color: #fbfb4a;
}
@@ -2771,6 +2938,7 @@
  color: #909399;
  cursor: pointer;
}
::v-deep.offside-value .el-radio__label {
  color: #fff;
}
@@ -2820,6 +2988,7 @@
  color: #080808 !important;
  cursor: not-allowed;
}
/* 原有的样式保持不变,添加以下响应式代码 */
.Followupdetailspage {
@@ -2831,7 +3000,8 @@
.action-container {
  display: flex;
  flex-direction: row; /* 默认横向排列 */
  flex-direction: row;
  /* 默认横向排列 */
  gap: 20px;
  margin: 0 10px 20px 10px;
@@ -2974,7 +3144,8 @@
/* 确保内容在缩放时保持可读性 */
.headline {
  font-size: clamp(18px, 2vw, 24px); /* 使用clamp函数确保字体大小在合理范围内 */
  font-size: clamp(18px, 2vw, 24px);
  /* 使用clamp函数确保字体大小在合理范围内 */
}
/* 为移动设备优化滚动体验 */
src/views/outsideChainwtnew.vue
@@ -208,6 +208,9 @@
  computed: {
    // 计算属性:获取所有可见的题目
    visibleQuestions() {
      if (!Array.isArray(this.questionList)) {
        return [];
      }
      return this.questionList.filter((question) => !question.ishide);
    },
  },
@@ -259,7 +262,7 @@
      getCachequestionnaire({ param1: this.taskid, param2: this.patid }).then(
        (res) => {
          if (res.code == 200) {
            this.questionList = res.data;
            this.questionList = res.data.result;
            this.accomplish = res.data.submit;
            if (this.questionList[0]) {
              this.questionList.forEach((item) => {
@@ -471,6 +474,8 @@
        } else {
          // 正常跳转逻辑
          const nextQuestionIndex = selectedOptionObj.nextQuestion - 1;
          console.log(nextQuestionIndex, 4);
          console.log(selectedOptionObj);
          this.questionList = this.questionList.map((item, index) => {
            // 保留当前题目之前的隐藏状态
vue.config.js
@@ -36,8 +36,8 @@
      // detail: https://cli.vuejs.org/config/#devserver-proxy
      [process.env.VUE_APP_BASE_API]: {
        // target: `https://www.health-y.cn/lssf`,
        target: `http://192.168.100.10:8096`,
        // target: `http://192.168.100.10:8094`,//省立同德
        // target: `http://192.168.100.10:8096`,
        target: `http://192.168.100.10:8094`,//省立同德
        // target: `http://192.168.100.10:8095`,//新华
        // target:`http://localhost:8095`,
        // target:`http://35z1t16164.qicp.vip`,