|
@@ -8,7 +8,8 @@
|
|
icon="el-icon-plus"
|
|
icon="el-icon-plus"
|
|
size="mini"
|
|
size="mini"
|
|
@click="handleAdd"
|
|
@click="handleAdd"
|
|
- >新增</el-button>
|
|
|
|
|
|
+ >新增</el-button
|
|
|
|
+ >
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
<el-button
|
|
@@ -18,7 +19,8 @@
|
|
size="mini"
|
|
size="mini"
|
|
:disabled="single"
|
|
:disabled="single"
|
|
@click="handleUpdate"
|
|
@click="handleUpdate"
|
|
- >修改</el-button>
|
|
|
|
|
|
+ >修改</el-button
|
|
|
|
+ >
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
<el-button
|
|
@@ -28,46 +30,77 @@
|
|
size="mini"
|
|
size="mini"
|
|
:disabled="multiple"
|
|
:disabled="multiple"
|
|
@click="handleDelete"
|
|
@click="handleDelete"
|
|
- >删除</el-button>
|
|
|
|
|
|
+ >删除</el-button
|
|
|
|
+ >
|
|
</el-col>
|
|
</el-col>
|
|
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
|
|
+ <right-toolbar
|
|
|
|
+ :showSearch.sync="showSearch"
|
|
|
|
+ @queryTable="getList"
|
|
|
|
+ ></right-toolbar>
|
|
</el-row>
|
|
</el-row>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="pojpsnList" @selection-change="handleSelectionChange">
|
|
|
|
|
|
+ <el-table
|
|
|
|
+ v-loading="loading"
|
|
|
|
+ :data="pojpsnList"
|
|
|
|
+ @selection-change="handleSelectionChange"
|
|
|
|
+ >
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<!-- <el-table-column label="主键" align="center" prop="id" /> -->
|
|
<!-- <el-table-column label="主键" align="center" prop="id" /> -->
|
|
- <el-table-column label="商机名称" align="center" prop="boName" v-if="source == 'Pojpsn'"/>
|
|
|
|
|
|
+ <el-table-column
|
|
|
|
+ label="商机名称"
|
|
|
|
+ align="center"
|
|
|
|
+ prop="boName"
|
|
|
|
+ v-if="source == 'Pojpsn'"
|
|
|
|
+ />
|
|
<el-table-column label="员工名称" align="center" prop="staffName" />
|
|
<el-table-column label="员工名称" align="center" prop="staffName" />
|
|
- <el-table-column label="项目岗位" align="center" prop="post" >
|
|
|
|
|
|
+ <el-table-column label="项目岗位" align="center" prop="post">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <dict-tag :options="dict.type.mk_bo_pojpsn_post" :value="scope.row.post"/>
|
|
|
|
|
|
+ <dict-tag
|
|
|
|
+ :options="dict.type.mk_bo_pojpsn_post"
|
|
|
|
+ :value="scope.row.post"
|
|
|
|
+ />
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="职责" align="center" prop="job" >
|
|
|
|
|
|
+ <el-table-column label="职责" align="center" prop="jobs" width="400">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <dict-tag :options="dict.type.mk_bo_pojpsn_job" :value="scope.row.job"/>
|
|
|
|
|
|
+ <el-select v-model="scope.row.jobs" multiple disabled size="medium">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="dict in dict.type.mk_bo_pojpsn_job"
|
|
|
|
+ :key="dict.value"
|
|
|
|
+ :label="dict.label"
|
|
|
|
+ :value="dict.value"
|
|
|
|
+ >
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="操作" fixed="right" align="center" class-name="small-padding fixed-width">
|
|
|
|
|
|
+ <el-table-column
|
|
|
|
+ label="操作"
|
|
|
|
+ fixed="right"
|
|
|
|
+ align="center"
|
|
|
|
+ class-name="small-padding fixed-width"
|
|
|
|
+ >
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
<el-button
|
|
size="mini"
|
|
size="mini"
|
|
type="text"
|
|
type="text"
|
|
icon="el-icon-edit"
|
|
icon="el-icon-edit"
|
|
@click="handleUpdate(scope.row)"
|
|
@click="handleUpdate(scope.row)"
|
|
- >修改</el-button>
|
|
|
|
|
|
+ >修改</el-button
|
|
|
|
+ >
|
|
<el-button
|
|
<el-button
|
|
size="mini"
|
|
size="mini"
|
|
type="text"
|
|
type="text"
|
|
icon="el-icon-delete"
|
|
icon="el-icon-delete"
|
|
@click="handleDelete(scope.row)"
|
|
@click="handleDelete(scope.row)"
|
|
- >删除</el-button>
|
|
|
|
|
|
+ >删除</el-button
|
|
|
|
+ >
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
|
|
|
|
<pagination
|
|
<pagination
|
|
- v-show="total>0"
|
|
|
|
|
|
+ v-show="total > 0"
|
|
:total="total"
|
|
:total="total"
|
|
:page.sync="queryParams.pageNum"
|
|
:page.sync="queryParams.pageNum"
|
|
:limit.sync="queryParams.pageSize"
|
|
:limit.sync="queryParams.pageSize"
|
|
@@ -81,8 +114,16 @@
|
|
<el-input v-model="form.boName" placeholder="商机名称" />
|
|
<el-input v-model="form.boName" placeholder="商机名称" />
|
|
</el-form-item> -->
|
|
</el-form-item> -->
|
|
<el-form-item label="员工" prop="staffName">
|
|
<el-form-item label="员工" prop="staffName">
|
|
- <el-input v-model="form.staffName" :disabled="this.operatingState != 'Insert'">
|
|
|
|
- <el-button slot="append" icon="el-icon-more" @click="refereStaff" :disabled="this.operatingState != 'Insert'"></el-button>
|
|
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="form.staffName"
|
|
|
|
+ :disabled="this.operatingState != 'Insert'"
|
|
|
|
+ >
|
|
|
|
+ <el-button
|
|
|
|
+ slot="append"
|
|
|
|
+ icon="el-icon-more"
|
|
|
|
+ @click="refereStaff"
|
|
|
|
+ :disabled="this.operatingState != 'Insert'"
|
|
|
|
+ ></el-button>
|
|
</el-input>
|
|
</el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item label="项目岗位" prop="post">
|
|
<el-form-item label="项目岗位" prop="post">
|
|
@@ -101,7 +142,8 @@
|
|
v-for="dict in dict.type.mk_bo_pojpsn_job"
|
|
v-for="dict in dict.type.mk_bo_pojpsn_job"
|
|
:key="dict.value"
|
|
:key="dict.value"
|
|
:label="dict.label"
|
|
:label="dict.label"
|
|
- :value="dict.value">
|
|
|
|
|
|
+ :value="dict.value"
|
|
|
|
+ >
|
|
</el-option>
|
|
</el-option>
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
@@ -121,14 +163,20 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
-import { listPojpsn, getPojpsn, delPojpsn, addPojpsn, updatePojpsn } from "@/api/business/spd/bo/pojpsn";
|
|
|
|
-import StaffRef from '@/views/business/spd/bo/refer/staff/index.vue';
|
|
|
|
|
|
+import {
|
|
|
|
+ listPojpsn,
|
|
|
|
+ getPojpsn,
|
|
|
|
+ delPojpsn,
|
|
|
|
+ addPojpsn,
|
|
|
|
+ updatePojpsn,
|
|
|
|
+} from "@/api/business/spd/bo/pojpsn";
|
|
|
|
+import StaffRef from "@/views/business/spd/bo/refer/staff/index.vue";
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: "pojpsnList",
|
|
name: "pojpsnList",
|
|
- props:["source","bo"],
|
|
|
|
- dicts: ['mk_bo_pojpsn_post','mk_bo_pojpsn_job'],
|
|
|
|
- components: {StaffRef},
|
|
|
|
|
|
+ props: ["source", "bo"],
|
|
|
|
+ dicts: ["mk_bo_pojpsn_post", "mk_bo_pojpsn_job"],
|
|
|
|
+ components: { StaffRef },
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
// 遮罩层
|
|
// 遮罩层
|
|
@@ -164,33 +212,30 @@ export default {
|
|
// 表单校验
|
|
// 表单校验
|
|
rules: {
|
|
rules: {
|
|
staffName: [
|
|
staffName: [
|
|
- { required: true, message: "员工不能为空", trigger: "blur" }
|
|
|
|
- ],
|
|
|
|
- post: [
|
|
|
|
- { required: true, message: "岗位不能为空", trigger: "blur" }
|
|
|
|
- ],
|
|
|
|
- jobs: [
|
|
|
|
- { required: true, message: "职责不能为空", trigger: "blur" }
|
|
|
|
|
|
+ { required: true, message: "员工不能为空", trigger: "blur" },
|
|
],
|
|
],
|
|
|
|
+ post: [{ required: true, message: "岗位不能为空", trigger: "blur" }],
|
|
|
|
+ jobs: [{ required: true, message: "职责不能为空", trigger: "blur" }],
|
|
},
|
|
},
|
|
//当前操作状态
|
|
//当前操作状态
|
|
- operatingState: '',
|
|
|
|
|
|
+ operatingState: "",
|
|
};
|
|
};
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
- if(this.source == 'Pojpsn'){
|
|
|
|
|
|
+ if (this.source == "Pojpsn") {
|
|
this.queryParams = this.bo;
|
|
this.queryParams = this.bo;
|
|
}
|
|
}
|
|
- if(this.source == 'BoDetails'){
|
|
|
|
|
|
+ if (this.source == "BoDetails") {
|
|
this.queryParams.bo = this.bo.id;
|
|
this.queryParams.bo = this.bo.id;
|
|
}
|
|
}
|
|
this.getList();
|
|
this.getList();
|
|
|
|
+ console.log("dict.type.mk_bo_pojpsn_job", this.dict.type.mk_bo_pojpsn_job);
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
/** 查询项目成员列表 */
|
|
/** 查询项目成员列表 */
|
|
getList() {
|
|
getList() {
|
|
this.loading = true;
|
|
this.loading = true;
|
|
- listPojpsn(this.queryParams).then(response => {
|
|
|
|
|
|
+ listPojpsn(this.queryParams).then((response) => {
|
|
this.pojpsnList = response.rows;
|
|
this.pojpsnList = response.rows;
|
|
this.total = response.total;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
this.loading = false;
|
|
@@ -218,7 +263,7 @@ export default {
|
|
createTime: null,
|
|
createTime: null,
|
|
updateBy: null,
|
|
updateBy: null,
|
|
updateTime: null,
|
|
updateTime: null,
|
|
- delFlag: null
|
|
|
|
|
|
+ delFlag: null,
|
|
};
|
|
};
|
|
this.resetForm("form");
|
|
this.resetForm("form");
|
|
},
|
|
},
|
|
@@ -234,15 +279,15 @@ export default {
|
|
},
|
|
},
|
|
// 多选框选中数据
|
|
// 多选框选中数据
|
|
handleSelectionChange(selection) {
|
|
handleSelectionChange(selection) {
|
|
- this.ids = selection.map(item => item.id)
|
|
|
|
- this.single = selection.length!==1
|
|
|
|
- this.multiple = !selection.length
|
|
|
|
|
|
+ this.ids = selection.map((item) => item.id);
|
|
|
|
+ this.single = selection.length !== 1;
|
|
|
|
+ this.multiple = !selection.length;
|
|
},
|
|
},
|
|
/** 新增按钮操作 */
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
handleAdd() {
|
|
this.operatingState = "Insert";
|
|
this.operatingState = "Insert";
|
|
this.reset();
|
|
this.reset();
|
|
- if(this.source == 'BoDetails'){
|
|
|
|
|
|
+ if (this.source == "BoDetails") {
|
|
this.form.bo = this.bo.id;
|
|
this.form.bo = this.bo.id;
|
|
this.form.boName = this.bo.boName;
|
|
this.form.boName = this.bo.boName;
|
|
}
|
|
}
|
|
@@ -253,8 +298,8 @@ export default {
|
|
handleUpdate(row) {
|
|
handleUpdate(row) {
|
|
this.operatingState = "Update";
|
|
this.operatingState = "Update";
|
|
this.reset();
|
|
this.reset();
|
|
- const id = row.id || this.ids
|
|
|
|
- getPojpsn(id).then(response => {
|
|
|
|
|
|
+ const id = row.id || this.ids;
|
|
|
|
+ getPojpsn(id).then((response) => {
|
|
this.form = response.data;
|
|
this.form = response.data;
|
|
this.open = true;
|
|
this.open = true;
|
|
this.title = "修改项目成员";
|
|
this.title = "修改项目成员";
|
|
@@ -262,16 +307,16 @@ export default {
|
|
},
|
|
},
|
|
/** 提交按钮 */
|
|
/** 提交按钮 */
|
|
submitForm() {
|
|
submitForm() {
|
|
- this.$refs["form"].validate(valid => {
|
|
|
|
|
|
+ this.$refs["form"].validate((valid) => {
|
|
if (valid) {
|
|
if (valid) {
|
|
if (this.form.id != null) {
|
|
if (this.form.id != null) {
|
|
- updatePojpsn(this.form).then(response => {
|
|
|
|
|
|
+ updatePojpsn(this.form).then((response) => {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.open = false;
|
|
this.open = false;
|
|
this.getList();
|
|
this.getList();
|
|
});
|
|
});
|
|
} else {
|
|
} else {
|
|
- addPojpsn(this.form).then(response => {
|
|
|
|
|
|
+ addPojpsn(this.form).then((response) => {
|
|
this.$modal.msgSuccess("新增成功");
|
|
this.$modal.msgSuccess("新增成功");
|
|
this.open = false;
|
|
this.open = false;
|
|
this.getList();
|
|
this.getList();
|
|
@@ -283,29 +328,37 @@ export default {
|
|
/** 删除按钮操作 */
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
handleDelete(row) {
|
|
const ids = row.id || this.ids;
|
|
const ids = row.id || this.ids;
|
|
- this.$modal.confirm('是否确认删除项目成员编号为"' + ids + '"的数据项?').then(function() {
|
|
|
|
- return delPojpsn(ids);
|
|
|
|
- }).then(() => {
|
|
|
|
- this.getList();
|
|
|
|
- this.$modal.msgSuccess("删除成功");
|
|
|
|
- }).catch(() => {});
|
|
|
|
|
|
+ this.$modal
|
|
|
|
+ .confirm('是否确认删除项目成员编号为"' + ids + '"的数据项?')
|
|
|
|
+ .then(function () {
|
|
|
|
+ return delPojpsn(ids);
|
|
|
|
+ })
|
|
|
|
+ .then(() => {
|
|
|
|
+ this.getList();
|
|
|
|
+ this.$modal.msgSuccess("删除成功");
|
|
|
|
+ })
|
|
|
|
+ .catch(() => {});
|
|
},
|
|
},
|
|
/** 导出按钮操作 */
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
handleExport() {
|
|
- this.download('system/pojpsn/export', {
|
|
|
|
- ...this.queryParams
|
|
|
|
- }, `pojpsn_${new Date().getTime()}.xlsx`)
|
|
|
|
|
|
+ this.download(
|
|
|
|
+ "system/pojpsn/export",
|
|
|
|
+ {
|
|
|
|
+ ...this.queryParams,
|
|
|
|
+ },
|
|
|
|
+ `pojpsn_${new Date().getTime()}.xlsx`
|
|
|
|
+ );
|
|
},
|
|
},
|
|
// 触发员工参照列表
|
|
// 触发员工参照列表
|
|
refereStaff() {
|
|
refereStaff() {
|
|
- console.log('测试点击')
|
|
|
|
- this.$refs.contractSelect.init()
|
|
|
|
|
|
+ console.log("测试点击");
|
|
|
|
+ this.$refs.contractSelect.init();
|
|
},
|
|
},
|
|
//员工参照列表选择后
|
|
//员工参照列表选择后
|
|
- selectionsToInput (selections) {
|
|
|
|
|
|
+ selectionsToInput(selections) {
|
|
this.form.staff = selections[0].userId;
|
|
this.form.staff = selections[0].userId;
|
|
this.form.staffName = selections[0].nickName;
|
|
this.form.staffName = selections[0].nickName;
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+ },
|
|
|
|
+ },
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|