| | |
| | | </a-col> |
| | | <a-col :span="18" v-show="agentType == '2'"> |
| | | <a-card class="center"> |
| | | <agentSession ></agentSession> |
| | | <agentSession :modalObj="agentObj"></agentSession> |
| | | </a-card> |
| | | </a-col> |
| | | |
| | |
| | | const fieldNames = { value: 'id', label: 'name' }; |
| | | const dialogs = ref([]); |
| | | const dialogObj = reactive({}); |
| | | const agentObj = reactive({}); |
| | | const agentList = ref([]); |
| | | const selectValue = ref(''); |
| | | const sectionList = ref({}); |
| | |
| | | }; |
| | | 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(); //刷新滚动条位置 |
| | | } |