| | |
| | | </el-col> |
| | | <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20"> |
| | | <el-form-item label="流程字类型" prop="posType"> |
| | | <el-input v-model="ruleForm.posType" placeholder="请输入流程字类型" maxlength="10" show-word-limit clearable /> |
| | | <el-select clearable v-model="ruleForm.posType" placeholder="请选择流程字类型"> |
| | | <el-option v-for="(item,index) in dl('PLCDataTypeEnum')" :key="index" :value="Number(item.value)" :label="`${item.name} (${item.code}) [${item.value}]`"></el-option> |
| | | |
| | | </el-select> |
| | | |
| | | </el-form-item> |
| | | |
| | |
| | | import type { FormRules } from "element-plus"; |
| | | import { addWcsStation, updateWcsStation, detailWcsStation } from "/@/api/wcs/wcsStation"; |
| | | import { getWcsDeviceDeviceIdDropdown } from '/@/api/wcs/wcsStation'; |
| | | |
| | | import { getDictDataItem as di, getDictDataList as dl } from '/@/utils/dict-utils'; |
| | | //父级传递来的参数 |
| | | var props = defineProps({ |
| | | title: { |