| | |
| | | <el-dialog :visible.sync="dialogAddVisible" :close-on-click-modal="false" title="新增配置"> |
| | | <el-form :model="prodForm" :rules="rules" ref="addDialog"> |
| | | <el-form-item prop="staffName" label="用户名称:" label-width="90px"> |
| | | <el-select style="width:100%" v-model="prodForm.staffName"> |
| | | <el-select style="width:100%" v-model="prodForm.staffName" filterable placeholder="请选择"> |
| | | <el-option v-for="(item,index) in staffNamesOptions" :key="index" :value="item.id" :label="item.staffName"/> |
| | | </el-select> |
| | | </el-form-item> |
| | |
| | | </el-dialog> |
| | | </div> |
| | | </template> |
| | | |
| | | |
| | | <script> |
| | | import { tableOption } from '@/const/crud/admin/productType' |
| | | import { getList,addObj,delObj,chooseStaff } from '@/api/admin/productType' |
| | | import { mapGetters } from 'vuex' |
| | | |
| | | |
| | | export default { |
| | | name: 'TableProduct', |
| | | data() { |
| | |
| | | } |
| | | } |
| | | </script> |
| | | |
| | | |
| | | <style lang="scss" scoped> |
| | | .el-dialog__wrapper { |
| | | .el-dialog { |
| | |
| | | } |
| | | } |
| | | </style> |
| | | |