| | |
| | | <div> |
| | | <a-row> |
| | | <a-col :span="1"></a-col> |
| | | <a-col :span="11">我的项目呼号</a-col> |
| | | <a-col :span="11" align="right" style="font-weight: 700">{{ username }}</a-col> |
| | | <a-col :span="11">项目名称</a-col> |
| | | <a-col :span="11" align="right" style="font-weight: 700">{{ projectName }}</a-col> |
| | | <a-col :span="1"></a-col> |
| | | </a-row> |
| | | </div> |
| | |
| | | |
| | | const deviceInfo = computed(() => store.state.deviceState.deviceInfo) |
| | | const dockInfo = computed(() => store.state.deviceState.dockInfo) |
| | | const projectName = computed(() => store.state.common.projectName) |
| | | const workSpaceId = computed(() => store.state.common.projectId) |
| | | const hmsInfo = computed({ |
| | | get: () => store.state.hmsInfo, |