| | |
| | | </el-form> |
| | | <template #footer> |
| | | <span class="dialog-footer"> |
| | | <el-button type="primary" @click="handleSubmit">确定</el-button> |
| | | <el-button @click="dialogVisible = false">取消</el-button> |
| | | <el-button type="primary" |
| | | @click="handleSubmit">确定</el-button> |
| | | </span> |
| | | </template> |
| | | </el-dialog> |
| | |
| | | import { deptTreeSelect } from "@/api/system/user.js"; |
| | | import PIMTable from "@/components/PIMTable/PIMTable.vue"; |
| | | import { ElMessage, ElMessageBox } from "element-plus"; |
| | | import { parseTime } from "@/utils/ruoyi"; |
| | | |
| | | const tableColumn = ref([ |
| | | { |
| | |
| | | { |
| | | label: "创建时间", |
| | | prop: "createTime", |
| | | formatData: val => { |
| | | if (!val) return ""; |
| | | return parseTime(val, "{y}-{m}-{d} {h}:{i}:{s}"); |
| | | }, |
| | | }, |
| | | { |
| | | label: "操作", |