| | |
| | | </el-col> |
| | | <el-col :span="12"> |
| | | <div class="label">机构状态</div> |
| | | <div class="val">{{ formData.status === 1 ? '启用' : '禁用' }}</div> |
| | | <div class="val"> {{ getDictLabel(formData.status, dictObj.institutionStatus) }}</div> |
| | | </el-col> |
| | | <el-col :span="24"> |
| | | <el-col :span="12"> |
| | | <div class="label">机构描述</div> |
| | | <div class="val">{{ formData.remark }}</div> |
| | | </el-col> |
| | |
| | | </template> |
| | | |
| | | <script setup> |
| | | import { getDictLabel } from '@ztzf/utils' |
| | | import { computed, ref, inject, nextTick } from 'vue' |
| | | import { ElMessage } from 'element-plus' |
| | | import { fieldRules } from '@ztzf/utils' |