liudong
2024-08-13 9cf32f84934cf13dba77e20fdddf8703e11b0c62
src/views/sessionManager/index.vue
@@ -252,7 +252,7 @@
      </a-col>
      <a-col :span="18"  v-show="agentType == '2'">
        <a-card class="center">
          <agentSession ></agentSession>
          <agentSession :modalObj="agentObj"></agentSession>
        </a-card>
      </a-col>
@@ -363,6 +363,7 @@
const fieldNames = { value: 'id', label: 'name' };
const dialogs = ref([]);
const dialogObj = reactive({});
const agentObj = reactive({});
const agentList = ref([]);
const selectValue = ref('');
const sectionList = ref({});
@@ -534,7 +535,8 @@
};
const queryAgentSessionDetail = async (id) => {
  const { code, data } = await getAgentSessionDetailsApi(id);
  if (code === 200) {
  if (code == 0) {
      Object.assign(agentObj, data)
    // sessionDetailList.value = data.message;
    // refreshScroll(); //刷新滚动条位置
  }