index.vue 19.4 KB
Newer Older
huyf's avatar
huyf committed
1 2 3 4 5
<template>
  <div class="app-container">

    <!-- 搜索工作栏 -->
    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
huyufeng's avatar
huyufeng committed
6
      <el-form-item label="部门" prop="deptId">
huyf's avatar
huyf committed
7 8 9 10 11
        <el-select v-model="queryParams.deptId" style="width: 300px;" placeholder="请选择部门">
          <el-option v-for="item in this.deptData" :key="item.id" :label="item.name" :value="item.id"/>
        </el-select>
      </el-form-item>
      <el-form-item label="目标类型" prop="targetType">
huyf's avatar
huyf committed
12
        <dict-selector :type="DICT_TYPE.TARGET_TYPE" v-model="queryParams.targetType" formatter="number"/>
huyf's avatar
huyf committed
13 14
      </el-form-item>
      <el-form-item label="运输方式" prop="transportType">
huyf's avatar
huyf committed
15
        <dict-selector :type="DICT_TYPE.ECW_TRANSPORT_TYPE" v-model="queryParams.transportType" formatter="number"/>
huyf's avatar
huyf committed
16 17 18
      </el-form-item>
      <el-form-item label="出货渠道" prop="shippingChannel">
        <el-select v-model="queryParams.shippingChannel" placeholder="请选择出货渠道">
huyf's avatar
huyf committed
19 20
          <el-option v-for="item in channelList" :label="item.nameZh" :value="item.channelId"
                     :key="item.channelId"></el-option>
huyf's avatar
huyf committed
21 22 23 24 25 26 27 28 29 30 31 32
        </el-select>
      </el-form-item>
      <el-form-item>
        <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
        <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
      </el-form-item>
    </el-form>

    <!-- 操作工具栏 -->
    <el-row :gutter="10" class="mb8">
      <el-col :span="1.5">
        <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
huyf's avatar
huyf committed
33 34
                   v-hasPermi="['ecw:dept-target:create']">目标设置
        </el-button>
huyf's avatar
huyf committed
35 36 37 38 39 40
      </el-col>
      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
    </el-row>

    <!-- 列表 -->
    <el-table v-loading="loading" :data="list">
huyufeng's avatar
huyufeng committed
41
      <el-table-column label="目标名称" align="center" width="180">
huyf's avatar
huyf committed
42
        <template slot-scope="scope">
huyufeng's avatar
huyufeng committed
43
          <span>{{scope.row.deptName}}{{scope.row.targetPeriodName}}目标</span>
huyf's avatar
huyf committed
44 45
        </template>
      </el-table-column>
huyf's avatar
huyf committed
46
      <el-table-column label="部门" align="center" prop="deptName"/>
huyufeng's avatar
huyufeng committed
47
      <el-table-column label="目标类型" align="center" prop="targetType">
huyf's avatar
huyf committed
48
        <template slot-scope="scope">
huyufeng's avatar
huyufeng committed
49
          <dict-tag :type="DICT_TYPE.TARGET_TYPE" :value="scope.row.targetType"/>
huyf's avatar
huyf committed
50 51
        </template>
      </el-table-column>
huyufeng's avatar
huyufeng committed
52
      <el-table-column label="时间范围" align="center" prop="targetPeriodName">
huyf's avatar
huyf committed
53
        <template slot-scope="scope">
huyf's avatar
huyf committed
54
          <span>{{dateFormat(scope.row.startTime)}}~{{dateFormat(scope.row.endTime)}}</span>
huyufeng's avatar
huyufeng committed
55 56 57
        </template>
      </el-table-column>
      <el-table-column label="部门人数" align="center" prop="deptEmpCount"/>
huyf's avatar
huyf committed
58
      <el-table-column label="目标方数" align="center" prop="cubeNum"/>
huyufeng's avatar
huyufeng committed
59 60 61 62 63 64 65 66 67 68
      <el-table-column label="运输方式" align="center" prop="transportType">
        <template slot-scope="scope">
          <dict-tag :type="DICT_TYPE.TRANSPORT_TYPE" :value="scope.row.transportType"/>
        </template>
      </el-table-column>
      <el-table-column label="出货渠道" align="center" prop="shippingChannel">
        <template slot-scope="scope">
          <span>{{ getShipChannelName(scope.row.shippingChannel) }}</span>
        </template>
      </el-table-column>
huyf's avatar
huyf committed
69
      <el-table-column label="已完成方数" align="center" prop="completeCubeNum"/>
huyufeng's avatar
huyufeng committed
70 71 72
      <el-table-column label="完成比例" align="center">
        <template slot-scope="scope">
          <span>{{ (scope.row.completeCubeNum/scope.row.cubeNum*100).toFixed(2)+'%' }}</span>
huyf's avatar
huyf committed
73 74 75 76 77
        </template>
      </el-table-column>
      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
        <template slot-scope="scope">
          <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
huyf's avatar
huyf committed
78 79
                     v-hasPermi="['ecw:dept-target:update']">修改
          </el-button>
huyf's avatar
huyf committed
80
          <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
huyf's avatar
huyf committed
81 82 83 84
                     v-hasPermi="['ecw:dept-target:delete']">删除
          </el-button>
          <el-button size="mini" type="text" icon="el-icon-search" @click="handleView(scope.row)"
                     v-hasPermi="['ecw:dept-target:create']"></el-button>
huyf's avatar
huyf committed
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
        </template>
      </el-table-column>
    </el-table>
    <!-- 分页组件 -->
    <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
                @pagination="getList"/>

    <!-- 对话框(添加 / 修改) -->
    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
        <el-form-item label="部门" prop="deptId">
          <el-select v-model="form.deptId" style="width: 300px;" placeholder="请选择部门">
            <el-option v-for="item in this.deptData" :key="item.id" :label="item.name" :value="item.id"/>
          </el-select>
        </el-form-item>
        <el-form-item label="目标类型" prop="targetType">
          <el-select v-model="form.targetType" placeholder="请选择运输方式" @change="changeList">
            <el-option v-for="dict in getDictDatas(DICT_TYPE.TARGET_TYPE)"
huyf's avatar
huyf committed
103
                       :key="dict.value" :label="dict.label" :value="parseInt(dict.value)"/>
huyf's avatar
huyf committed
104 105 106 107 108 109 110 111
          </el-select>
        </el-form-item>
        <el-form-item label="计算周期" prop="targetPeriodName">
          <el-select v-model="form.targetPeriodName" placeholder="请选择计算周期" @change="setTime">
            <el-option v-for="item in targetPeriod" :label="item.name" :value="item.name" :key="item.name"></el-option>
          </el-select>
        </el-form-item>
        <el-form-item label="运输方式" prop="transportType">
huyf's avatar
huyf committed
112
          <dict-selector :type="DICT_TYPE.ECW_TRANSPORT_TYPE" v-model="form.transportType" formatter="number"/>
huyf's avatar
huyf committed
113 114 115
        </el-form-item>
        <el-form-item label="出货渠道" prop="shippingChannel">
          <el-select v-model="form.shippingChannel" placeholder="请选择出货渠道">
huyf's avatar
huyf committed
116 117
            <el-option v-for="item in channelList" :label="item.nameZh" :value="item.channelId"
                       :key="item.channelId"></el-option>
huyf's avatar
huyf committed
118 119 120
          </el-select>
        </el-form-item>
        <el-form-item label="立方数" prop="cubeNum">
huyf's avatar
huyf committed
121
          <el-input v-model="form.cubeNum" placeholder="请输入立方数"/>
huyf's avatar
huyf committed
122 123 124 125 126 127 128
        </el-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button type="primary" @click="submitForm">确 定</el-button>
        <el-button @click="cancel">取 消</el-button>
      </div>
    </el-dialog>
huyf's avatar
huyf committed
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172

    <!--人员目标进度-->
    <el-dialog title="人员目标进度" :visible.sync="tableOpen" width="1000px" append-to-body>
      <div><span><b>{{detail.deptName}}-{{getDictDataLabel(DICT_TYPE.TARGET_TYPE,detail.targetType)}}</b></span></div>
      <div>
        <span>运输方式:</span><span>{{getDictDataLabel(DICT_TYPE.TRANSPORT_TYPE,detail.transportType)}}</span>
        <span>出货渠道:</span><span>{{ getShipChannelName(detail.shippingChannel) }}</span>
        <span>部门目标:</span><span>{{detail.cubeNum}}</span>
      </div>
      <el-table v-loading="loading" :data="tableList">
        <el-table-column label="员工名称" align="center" width="180">
          <template slot-scope="scope">
            <span>{{scope.row.userName}}</span>
          </template>
        </el-table-column>
        <el-table-column label="部门" align="center">
          <template>
            <span>{{detail.deptName}}</span>
          </template>
        </el-table-column>
        <el-table-column label="目标类型" align="center" prop="targetType">
          <template slot-scope="scope">
            <dict-tag :type="DICT_TYPE.TARGET_TYPE" :value="scope.row.targetType"/>
          </template>
        </el-table-column>
        <el-table-column label="时间范围" align="center" prop="targetPeriodName">
          <template slot-scope="scope">
            <span>{{dateFormat(scope.row.startTime)}}~{{dateFormat(scope.row.endTime)}}</span>
          </template>
        </el-table-column>
        <el-table-column label="个人目标方数" align="center" prop="personalCubeNum"/>
        <el-table-column label="已完成方数" align="center" prop="personalCompleteCubeNum"/>
        <el-table-column label="完成比例" align="center">
          <template slot-scope="scope">
            <span>{{ (scope.row.personalCompleteCubeNum/scope.row.personalCubeNum*100).toFixed(2)+'%' }}</span>
          </template>
        </el-table-column>
      </el-table>
      <!-- 分页组件 -->
      <pagination v-show="tableTotal > 0" :total="tableTotal" :page.sync="tableQueryParams.pageNo"
                  :limit.sync="tableQueryParams.pageSize"
                  @pagination="getTableList"/>
    </el-dialog>

huyf's avatar
huyf committed
173 174 175 176
  </div>
</template>

<script>
huyf's avatar
huyf committed
177 178 179 180 181 182 183 184 185 186 187 188 189
    import {
        createDeptTarget,
        updateDeptTarget,
        deleteDeptTarget,
        getDeptTarget,
        getDeptTargetPage,
        exportDeptTargetExcel,
        getCreateInitData,
        getPersonTargetPage
    } from "@/api/ecw/deptTarget";
    import {listSimpleDepts} from "@/api/system/dept";
    import {getChannelList} from '@/api/ecw/channel';
    import dayjs from "dayjs";
huyf's avatar
huyf committed
190

huyf's avatar
huyf committed
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
    export default {
        name: "DeptTarget",
        components: {},
        data() {
            return {
                // 遮罩层
                loading: true,
                // 导出遮罩层
                exportLoading: false,
                // 显示搜索条件
                showSearch: true,
                // 总条数
                total: 0,
                tableTotal: 0,
                // 部门业绩目标设置列表
                list: [],
                tableList: [],
                // 弹出层标题
                title: "",
                detail: {
                    deptName: null,
                    targetType: null,
                    cubeNum: null,
                    shippingChannel: null,
                    transportType: null,
                },
                // 是否显示弹出层
                open: false,
                tableOpen: false,
                dateRangeCreateTime: [],
                dateRangeStartTime: [],
                dateRangeEndTime: [],
                deptData: [],
                deptArr: [],
                channelList: [],
                monthList: [],
                quarterList: [],
                yearList: [],
                targetPeriod: [],
                // 查询参数
                queryParams: {
                    pageNo: 1,
                    pageSize: 10,
                    deptId: null,
                    targetType: null,
                    targetPeriodName: null,
                    transportType: null,
                    shippingChannel: null,
                    cubeNum: null,
                },
                tableQueryParams: {
                    pageNo: 1,
                    pageSize: 10,
                    id: null,
                },
                // 表单参数
                form: {},
                // 表单校验
                rules: {
                    deptId: [{required: true, message: "部门ID不能为空", trigger: "blur"}],
                    targetType: [{required: true, message: "目标类型不能为空", trigger: "change"}],
                    cubeNum: [{required: true, message: "立方数不能为空", trigger: "blur"}],
                }
            };
        },
        computed: {
            getShipChannelName() {
                return shippingChannelId => {
                    for (let index in this.channelList) {
                        let channelItem = this.channelList[index];
                        if (channelItem.channelId == shippingChannelId) {
                            return channelItem.nameZh;
                        }
                    }
                    return '/'
                }
            }
        },
        created() {
            listSimpleDepts().then(res => {
                res.data.forEach((item) => {
                    if (item.parentId == 0) {
huyf's avatar
huyf committed
273

huyf's avatar
huyf committed
274
                        this.deptArr.push(item)
huyf's avatar
huyf committed
275

huyf's avatar
huyf committed
276 277 278 279 280 281 282 283 284
                    } else {
                        this.deptData.push(item)
                    }
                })
                this.deptData.forEach((value) => {
                    var dept = this.deptArr.filter(itt => itt.id == value.parentId)
                    if (dept.length > 0) {
                        value.name = dept[0].name + ' | ' + value.name
                    }
huyf's avatar
huyf committed
285

huyf's avatar
huyf committed
286 287 288 289 290 291 292 293
                })
            });
            getCreateInitData().then(res => {
                this.monthList = res.data.month;
                this.quarterList = res.data.quarter;
                this.yearList = res.data.year;
            });
            this.getChannelList();
huyf's avatar
huyf committed
294
            this.getList();
huyf's avatar
huyf committed
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
        },
        methods: {
            getChannelList() {
                getChannelList().then(res => this.channelList = res.data)
            },
            dateFormat(val) {
                return dayjs(val).format("YYYY-MM-DD");
            },
            changeList(val) {
                if (val === 1) {
                    this.form.targetPeriodName = undefined;
                    this.targetPeriod = this.monthList;
                } else if (val === 2) {
                    this.form.targetPeriodName = undefined;
                    this.targetPeriod = this.quarterList;
                } else {
                    this.form.targetPeriodName = undefined;
                    this.targetPeriod = this.yearList;
                }
            },
            setTime(item) {
                this.targetPeriod.forEach((i, index) => {
                    if (i.name === item) {
                        this.form.startTime = i.startDate;
                        this.form.endTime = i.endDate;
                    }
                })
            },
            /** 查询列表 */
            getList() {
                this.loading = true;
                // 处理查询参数
                let params = {...this.queryParams};
                this.addBeginAndEndTime(params, this.dateRangeCreateTime, 'createTime');
                this.addBeginAndEndTime(params, this.dateRangeStartTime, 'startTime');
                this.addBeginAndEndTime(params, this.dateRangeEndTime, 'endTime');
                // 执行查询
                getDeptTargetPage(params).then(response => {
                    this.list = response.data.list;
                    this.total = response.data.total;
                    this.loading = false;
                });
            },
            /** 取消按钮 */
            cancel() {
                this.open = false;
                this.reset();
            },
            /** 表单重置 */
            reset() {
                this.form = {
                    id: undefined,
                    deptId: undefined,
                    targetType: undefined,
                    targetPeriodName: undefined,
                    startTime: undefined,
                    endTime: undefined,
                    transportType: undefined,
                    shippingChannel: undefined,
                    cubeNum: undefined,
                };
                this.resetForm("form");
            },
            /** 搜索按钮操作 */
            handleQuery() {
                this.queryParams.pageNo = 1;
                this.getList();
            },
            /** 重置按钮操作 */
            resetQuery() {
                this.dateRangeCreateTime = [];
                this.dateRangeStartTime = [];
                this.dateRangeEndTime = [];
                this.resetForm("queryForm");
                this.handleQuery();
            },
            /** 新增按钮操作 */
            handleAdd() {
                this.targetPeriod = this.monthList;
                this.reset();
                this.open = true;
                this.title = "添加部门业绩目标设置";
            },
            /** 查看人员目标情况 */
            handleView(row) {
                this.detail = row;
                this.tableQueryParams.id = row.id;
                this.getTableList();
                this.tableOpen = true;
            },
            getTableList() {
                getPersonTargetPage(this.tableQueryParams).then(res => {
                    this.tableList = res.data.list;
                    this.tableTotal = res.data.total;
                });
            },
            /** 修改按钮操作 */
            handleUpdate(row) {
                this.reset();
                const id = row.id;
                getDeptTarget(id).then(response => {
                    this.form = response.data;
                    if (response.data.targetType === 1) {
                        this.targetPeriod = this.monthList;
                    } else if (response.data.targetType === 2) {
                        this.targetPeriod = this.quarterList;
                    } else {
                        this.targetPeriod = this.yearList;
                    }
                    this.open = true;
                    this.title = "修改部门业绩目标设置";
                });
            },
            /** 提交按钮 */
            submitForm() {
                this.$refs["form"].validate(valid => {
                    if (!valid) {
                        return;
                    }
                    // 修改的提交
                    if (this.form.id != null) {
                        updateDeptTarget(this.form).then(response => {
                            this.$modal.msgSuccess("修改成功");
                            this.open = false;
                            this.getList();
                        });
                        return;
                    }
                    // 添加的提交
                    createDeptTarget(this.form).then(response => {
                        this.$modal.msgSuccess("新增成功");
                        this.open = false;
                        this.getList();
                    });
                });
            },
            /** 删除按钮操作 */
            handleDelete(row) {
                const id = row.id;
                this.$modal.confirm('是否确认删除部门业绩目标设置编号为"' + id + '"的数据项?').then(function () {
                    return deleteDeptTarget(id);
                }).then(() => {
                    this.getList();
                    this.$modal.msgSuccess("删除成功");
                }).catch(() => {
                });
            },
            /** 导出按钮操作 */
            handleExport() {
                // 处理查询参数
                let params = {...this.queryParams};
                params.pageNo = undefined;
                params.pageSize = undefined;
                this.addBeginAndEndTime(params, this.dateRangeCreateTime, 'createTime');
                this.addBeginAndEndTime(params, this.dateRangeStartTime, 'startTime');
                this.addBeginAndEndTime(params, this.dateRangeEndTime, 'endTime');
                // 执行导出
                this.$modal.confirm('是否确认导出所有部门业绩目标设置数据项?').then(() => {
                    this.exportLoading = true;
                    return exportDeptTargetExcel(params);
                }).then(response => {
                    this.$download.excel(response, '${table.classComment}.xls');
                    this.exportLoading = false;
                }).catch(() => {
                });
            }
huyf's avatar
huyf committed
461
        }
huyf's avatar
huyf committed
462
    };
huyf's avatar
huyf committed
463
</script>