123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371 |
- <template>
- <div class="mainContentBox">
- <avue-form
- ref="formRef"
- v-model:search="search"
- v-model="form"
- :data="data"
- :option="option2"
- v-model:page="page"
- @row-save="createRow"
- @row-update="updateRow"
- @row-del="deleteRow"
- @search-change="searchChange"
- @size-change="dataList"
- @current-change="dataList"
- @selection-change="selectionChange"
- />
- <avue-crud
- ref="crudRef"
- v-model="form"
- :data="data"
- :option="option"
- v-model:page="page"
- @row-save="createRow"
- @row-update="updateRow"
- @row-del="deleteRow"
- >
- <template #skillDictValue="{ row, index, type }">
- <el-select
- v-model="row.skillValue"
- placeholder="请选择技能"
- @click="getPostSkills()"
- @change="skillChange(row)"
- >
- <el-option
- v-for="item in optionSkill"
- :key="item.value"
- :label="item.skillDictLabel"
- :value="item.skillDictValue"
- />
- </el-select>
- </template>
- <template #menu-left="{ size }">
- <el-button type="primary" icon="el-icon-plus" circle @click="addSkill"
- /></template>
- </avue-crud>
- <CommonTable
- ref="ctableRef"
- tableTitle="员工选择"
- tableType="USERS"
- @selected-sure="onSelectedFinish"
- />
- <div class="detail-footer">
- <el-button type="primary" @click="onHandle"> 确定 </el-button>
- <el-button @click="cancelWindow">取消</el-button>
- </div>
- </div>
- </template>
- <script setup>
- import { ref, getCurrentInstance } from "vue";
- import { useCrud } from "@/hooks/userCrud";
- import ButtonPermKeys from "@/common/configs/buttonPermission";
- import { useCommonStoreHook, useDictionaryStore } from "@/store";
- import dictDataUtil from "@/common/configs/dictDataUtil";
- import SingleUpload from "@/components/Upload/SingleUpload.vue";
- const { isShowTable, tableType } = toRefs(useCommonStoreHook());
- import { getPostSkill, addEmployeeSkill } from "@/api/system/skill";
- // 数据字典相关
- const { dicts } = useDictionaryStore();
- const test = () => {
- isShowTable.value = true;
- tableType.value = tableType.value == 1 ? 2 : 1;
- };
- const data2 = ref(null);
- // 传入一个url,后面不带/
- const { form, data, option, search, page, toDeleteIds, Methords, Utils } =
- useCrud({
- src: "/api/v1/sys/skillScore",
- dataListUrl: "/api/v1/sys/skillScore/list",
- });
- const { dataList, createRow, updateRow, deleteRow, searchChange } = Methords; //增删改查
- const { selectionChange, multipleDelete } = Methords; //选中和批量删除事件
- const { checkBtnPerm, downloadTemplate, exportData } = Utils; //按钮权限等工具
- // checkBtnPerm(ButtonPermKeys.PLAN.BTNS.order_add) :permission="permission"
- // const permission = reactive({
- // delBtn: checkPerm(buttonPermission.PLAN.BTNS.order_del),
- // addBtn: checkPerm(buttonPermission.PLAN.BTNS.order_add),
- // editBtn: checkPerm(buttonPermission.PLAN.BTNS.order_edit),
- // menu: true,
- // });
- const option2 = ref(null);
- const ctableRef = ref(null); //crudRef.value 获取avue-crud对象
- const router = useRouter();
- onMounted(() => {
- // console.log("crudRef", crudRef)
- //dataNoPageList();
- });
- const skillChange = (row) => {
- data.value.forEach((item, index) => {
- if (item.skillDictValue == row.skillValue) {
- row.skillValue = "";
- ElMessage({
- message: item.$skillDictValue + " 打分项重复",
- type: "error",
- });
- return false;
- }
- });
- if (
- row.skillValue !== undefined &&
- row.skillValue !== null &&
- row.skillValue !== ""
- ) {
- data.value[row.$index].skillDictValue = row.skillValue;
- }
- console.log(data.value);
- };
- const cancelWindow = () => {
- props.dialog.visible = false;
- };
- const addSkill = () => {
- const bom = ref({
- $cellEdit: true,
- });
- data.value.push(bom.value);
- };
- const employeeSkill = ref({});
- const onHandle = () => {
- console.info(form.value);
- if (
- form.value.userId === null ||
- form.value.userId === undefined ||
- form.value.userId === ""
- ) {
- ElMessage({
- message: "未选择打分用户",
- type: "error",
- });
- return false;
- }
- if (
- form.value.postId === null ||
- form.value.postId === undefined ||
- form.value.postId === ""
- ) {
- ElMessage({
- message: "未选择岗位",
- type: "error",
- });
- return false;
- }
- console.info("data", data.value);
- if (data.value.length === 0) {
- ElMessage({
- message: "没有要保存的打分项",
- type: "error",
- });
- return false;
- }
- if (data.value.length > 0) {
- for (let i = 0; i < data.value.length; i++) {
- if (
- data.value[i].skillDictValue === undefined ||
- data.value[i].skillDictValue === null ||
- data.value[i].skillDictValue === ""
- ) {
- ElMessage({
- message: "第" + (i + 1) + "项没有选择技能",
- type: "error",
- });
- return false;
- }
- if (
- data.value[i].score === undefined ||
- data.value[i].score === null ||
- data.value[i].score === ""
- ) {
- ElMessage({
- message: "第" + (i + 1) + "项没有打分",
- type: "error",
- });
- return false;
- }
- }
- }
- employeeSkill.value.userId = form.value.userId;
- employeeSkill.value.postId = form.value.postId;
- employeeSkill.value.skillList = Array.from(data.value);
- console.info("11", employeeSkill.value);
- addEmployeeSkill(employeeSkill.value).then((data) => {
- if (data.code === "200") {
- ElMessage({
- message: data.msg,
- type: "success",
- });
- props.dialog.visible = false;
- } else {
- ElMessage({
- message: data.msg,
- type: "error",
- });
- }
- });
- };
- const postIdValue = ref(null);
- // 设置表格列或者其他自定义的option
- option2.value = {
- selection: true,
- submitBtn: false,
- clearAbleBtn: false,
- emptyBtn: false,
- column: [
- {
- label: "用户id",
- prop: "userId",
- width: 130,
- overHidden: true,
- search: true,
- filterable: true,
- disabled: true,
- display: false,
- },
- {
- label: "用户名",
- prop: "userName",
- width: 140,
- overHidden: true,
- search: true,
- rules: [
- {
- required: true,
- search: true,
- message: "请选择员工姓名",
- trigger: "blur",
- },
- ],
- click: ({ value, column }) => {
- ctableRef.value.startSelect();
- },
- },
- /*{
- label: "所属机构",
- prop: "institution",
- width: 130,
- overHidden: true,
- search: true,
- filterable: true,
- disabled: true,
- },*/
- {
- label: "员工编号",
- prop: "employeeCode",
- search: true,
- disabled: true,
- },
- {
- label: "岗位",
- prop: "postId",
- search: true,
- filterable: true,
- type: "select",
- overHidden: true,
- dicUrl: dictDataUtil.post_list_url,
- dicMethod: "post",
- change: ({ value, column }) => {
- if (value !== undefined) {
- postIdValue.value = value;
- data.value = [];
- optionSkill.value = null;
- }
- },
- props: { label: "postName", value: "id" },
- },
- { label: "部门", prop: "deptName", overHidden: true, disabled: true },
- ],
- };
- const props = defineProps({
- dialog: {
- type: Object,
- default: () => {
- return {};
- },
- },
- });
- // 设置表格列或者其他自定义的option
- option.value = Object.assign(option.value, {
- searchEnter: true,
- selection: false,
- addBtn: false,
- viewBtn: false,
- editBtn: false,
- saveBtn: false,
- cellBtn: true,
- column: [
- {
- label: "技能",
- prop: "skillDictValue",
- align: "center",
- headerAlign: "center",
- span: 24,
- type: "select",
- dicData: dicts.skill_type,
- props: { label: "dictLabel", value: "dictValue" },
- },
- {
- label: "分数",
- prop: "score",
- align: "center",
- headerAlign: "center",
- cell: true,
- type: "number",
- precision: 2,
- max: 100,
- min: 0,
- span: 24,
- },
- ],
- });
- const onSelectedFinish = (selectedValue) => {
- form.value.userId = selectedValue.id;
- form.value.userName = selectedValue.userName;
- form.value.deptName = selectedValue.deptName;
- form.value.employeeCode = selectedValue.employeeCode;
- //form.value.institution = selectedValue.institution;
- };
- const optionSkill = ref([]);
- const getPostSkills = () => {
- if (
- postIdValue.value === undefined ||
- postIdValue.value === null ||
- postIdValue.value === ""
- ) {
- ElMessage({
- message: "未选择岗位",
- type: "error",
- });
- return false;
- }
- getPostSkill(postIdValue.value).then((data) => {
- optionSkill.value = Array.from(data.data);
- });
- };
- </script>
- <style type="text/css">
- .title-detail {
- width: 30%;
- height: 50px;
- line-height: 50px;
- margin: 25px 20px 25px 0;
- float: left;
- }
- .detail {
- margin: 0 auto;
- width: 100%;
- }
- .avue-crud {
- float: left;
- }
- .detail-footer {
- float: right;
- margin-top: 15px;
- }
- .el-select__selection {
- width: 150px;
- }
- </style>
|